cinnamon-control-center-6.2.0/0000775000175000017500000000000014632072346015210 5ustar fabiofabiocinnamon-control-center-6.2.0/debian/0000775000175000017500000000000014632072346016432 5ustar fabiofabiocinnamon-control-center-6.2.0/meson.build0000664000175000017500000001437114632072346017360 0ustar fabiofabioproject('cinnamon-control-center', 'c', version : '6.2.0', meson_version : '>=0.56.0') i18n = import('i18n') pkgconfig = import('pkgconfig') gnome = import('gnome') cc = meson.get_compiler('c') config = configuration_data() ############################################################################### # Project conf lib_ver = '1.0.0' gettext_package = meson.project_name() config.set_quoted('PACKAGE', meson.project_name()) config.set_quoted('VERSION', meson.project_version()) config.set_quoted('GETTEXT_PACKAGE', gettext_package) ############################################################################### # Dependencies math = cc.find_library('m') cinn_desktop= dependency('cinnamon-desktop', version: '>=4.6.0') cinn_menu = dependency('libcinnamon-menu-3.0') gtk = dependency('gtk+-3.0', version: '>=3.16.0') glib = dependency('glib-2.0', version: '>=2.44.0') gio_unix = dependency('gio-unix-2.0', version: '>=2.44.0') gudev_dep = dependency('gudev-1.0', version: '>= 232') libgnomekbd = dependency('libgnomekbd', version: '>=3.0.0') libgnomekbdui=dependency('libgnomekbdui', version: '>=3.0.0') libnotify = dependency('libnotify', version: '>=0.7.3') libx11 = dependency('x11') polkit_gobj = dependency('polkit-gobject-1',version: '>=0.103') libxklavier = dependency('libxklavier', version: '>=5.1') upower_glib_dep = dependency('upower-glib', version: '>= 0.99.8') config.set('HAVE_X11_EXTENSIONS_XKB_H', cc.has_header('X11/extensions/XKB.h')) ############################################################################### # This is a hard-dependency for the region and user-accounts panels isocodes = dependency('iso-codes') config.set_quoted('ISO_CODES_PREFIX', isocodes.get_variable(pkgconfig: 'prefix')) ############################################################################### # Network Manager stuff if get_option('networkmanager') libnm = dependency('libnm', version: '>=1.2.0') libnma = dependency('libnma',version: '>=1.2.0') else libnm = dependency('', required: false) libnma= dependency('', required: false) endif if get_option('modemmanager') if not get_option('networkmanager') error('*** NetworkManager is required by ModemManager ***') endif modemmanager = dependency('mm-glib', version: '>=0.7') else modemmanager = dependency('', required: false) endif config.set('BUILD_MODEM', modemmanager.found()) ############################################################################### # Color Management if get_option('color') colord = dependency('colord', version: '>=0.1.14') else colord = dependency('', required: false) endif ############################################################################### # Wacom Management if get_option('wacom') libwacom = dependency('libwacom', version: '>=0.7') libxi = dependency('xi', version: '>=1.2') else libwacom = dependency('', required: false) endif config.set('HAVE_WACOM_3D_STYLUS', libwacom.version().version_compare('>=0.27')) ############################################################################### # Directories # Relative paths panels_dir = get_option('libdir') / 'cinnamon-control-center-1' / 'panels' ui_dir = get_option('datadir') / meson.project_name() / 'ui' um_pix_dir = get_option('datadir') / meson.project_name() / 'pixmaps' menu_dir = get_option('sysconfdir') / 'xdg' / 'menus' panel_def_dir = get_option('datadir') / meson.project_name() / 'panels' desktop_dir = get_option('datadir') / 'applications' prefix = get_option('prefix') config.set_quoted('BINDIR', prefix / get_option('bindir')) config.set_quoted('SBINDIR', prefix / get_option('sbindir')) config.set_quoted('LIBLOCALEDIR', prefix / get_option('libdir') / 'locale') config.set_quoted('LOCALE_DIR', prefix / get_option('localedir')) config.set_quoted('CINNAMONLOCALEDIR', prefix / get_option('localedir')) config.set_quoted('DATADIR', prefix / get_option('datadir')) config.set_quoted('CINNAMONCC_DATA_DIR', prefix / get_option('datadir')) config.set_quoted('CINNAMONCC_UI_DIR', prefix / ui_dir) config.set_quoted('PANELS_DIR', prefix / panels_dir) config.set_quoted('MENUDIR', '/' / menu_dir) config.set_quoted('UIDIR', prefix / ui_dir) config.set_quoted('UM_PIXMAP_DIR', prefix / um_pix_dir) config.set_quoted('PANEL_DEF_DIR', prefix / panel_def_dir) ############################################################################### # Build options more_cflags = [ '-Wno-strict-aliasing', '-Wno-sign-compare', ] if get_option('warning_level').to_int() >=2 more_cflags += [ '-Wall', '-Wclobbered', '-Wempty-body', '-Wignored-qualifiers', '-Wmissing-field-initializers', '-Wmissing-parameter-type', '-Wold-style-declaration', '-Woverride-init', '-Wtype-limits', '-Wuninitialized', '-Wchar-subscripts', '-Wmissing-declarations', '-Wmissing-prototypes', '-Wnested-externs', '-Wpointer-arith', '-Wcast-align', '-Wsign-compare', ] endif if get_option('buildtype').contains('rel') more_cflags += '-Wp,-D_FORTIFY_SOURCE=2' endif if not get_option('deprecated_warnings') add_global_arguments([ '-Wno-deprecated-declarations', '-Wno-deprecated', '-Wno-declaration-after-statement', '-DGLIB_DISABLE_DEPRECATION_WARNINGS', ], language: 'c', ) endif meson.add_install_script('meson_install_schemas.py') add_project_arguments(cc.get_supported_arguments(more_cflags), language: 'c') configure_file( output: 'config.h', configuration: config, ) rootInclude = include_directories('.') subdir('po') subdir('shell') subdir('panels') subdir('install-scripts') final_message = [ '', '', '** NetworkManager (Network panel) : @0@'.format(libnm.found()), '** ModemManager support : @0@'.format(modemmanager.found()), '** Colord support (Color management panel) : @0@'.format(colord.found()), '** Wacom support (Wacom panel) : @0@'.format(libwacom.found()), '** Wayland support : @0@'.format(cc.has_header('gdk/gdkwayland.h', dependencies: gtk)), '', ] message('\n'.join(final_message)) cinnamon-control-center-6.2.0/generate_additional_files.py0000775000175000017500000000506614632072346022740 0ustar fabiofabio#!/usr/bin/python3 DOMAIN = "cinnamon-control-center" PATH = "/usr/share/locale" import os, gettext, sys from mintcommon import additionalfiles os.environ['LANGUAGE'] = "en_US.UTF-8" gettext.install(DOMAIN, PATH) prefix = """[Desktop Entry] Exec=cinnamon-settings color Icon=cs-color Terminal=false Type=Application StartupNotify=true Categories=GTK;Settings;X-Cinnamon-Settings-Panel;HardwareSettings OnlyShowIn=X-Cinnamon; X-Cinnamon-Settings-Panel=color """ additionalfiles.generate(DOMAIN, PATH, "./panels/color/cinnamon-color-panel.desktop", prefix, _("Color"), _("Color management settings"), "", keywords=_("Color, ICC, Profile, Calibrate, Printer, Display")) prefix = """[Desktop Entry] Exec=cinnamon-settings region Icon=cs-language Terminal=false Type=Application StartupNotify=true Categories=GTK;Settings;DesktopSettings;X-Cinnamon-Settings-Panel;X-Cinnamon-PersonalSettings OnlyShowIn=X-Cinnamon; X-Cinnamon-Settings-Panel=region NoDisplay=true """ additionalfiles.generate(DOMAIN, PATH, "./panels/region/cinnamon-region-panel.desktop", prefix, _("Region & Language"), _("Change your region and language settings"), "") prefix = """[Desktop Entry] Exec=cinnamon-settings display Icon=cs-display Terminal=false Type=Application StartupNotify=true Categories=GTK;Settings;HardwareSettings;X-Cinnamon-Settings-Panel; OnlyShowIn=X-Cinnamon; X-Cinnamon-Settings-Panel=display """ additionalfiles.generate(DOMAIN, PATH, "./panels/display/cinnamon-display-panel.desktop", prefix, _("Display"), _("Change resolution and position of monitors and projectors"), "", keywords=_("Panel, Projector, xrandr, Screen, Resolution, Refresh")) prefix = """[Desktop Entry] Exec=cinnamon-settings network Icon=cs-network Terminal=false Type=Application StartupNotify=true Categories=GTK;Settings;HardwareSettings;X-Cinnamon-Settings-Panel; OnlyShowIn=X-Cinnamon; X-Cinnamon-Settings-Panel=network """ additionalfiles.generate(DOMAIN, PATH, "./panels/network/cinnamon-network-panel.desktop", prefix, _("Network"), _("Network settings"), "", keywords=_("Network, Wireless, IP, LAN, Proxy, Internet, WiFi")) prefix = """[Desktop Entry] Exec=cinnamon-settings wacom Icon=cs-tablet Terminal=false Type=Application StartupNotify=true Categories=GNOME;GTK;Settings;HardwareSettings;X-Cinnamon-Settings-Panel; X-Cinnamon-Settings-Panel=wacom OnlyShowIn=X-Cinnamon; """ additionalfiles.generate(DOMAIN, PATH, "./panels/wacom/cinnamon-wacom-panel.desktop", prefix, _("Graphics Tablet"), _("Set button mappings and adjust stylus sensitivity for graphics tablets"), "", keywords=_("Tablet, Wacom, Stylus, Eraser, Mouse")) cinnamon-control-center-6.2.0/TODO0000664000175000017500000000000014632072346015666 0ustar fabiofabiocinnamon-control-center-6.2.0/.gitignore0000664000175000017500000000134214632072346017200 0ustar fabiofabiodebian/.debhelper debian/cinnamon-control-center-data.debhelper.log debian/cinnamon-control-center-data.substvars debian/cinnamon-control-center-data debian/cinnamon-control-center-dbg.debhelper.log debian/cinnamon-control-center-dbg.substvars debian/cinnamon-control-center-dbg debian/cinnamon-control-center.debhelper.log debian/cinnamon-control-center.substvars debian/cinnamon-control-center debian/debhelper-build-stamp debian/files debian/libcinnamon-control-center-dev.debhelper.log debian/libcinnamon-control-center-dev.substvars debian/libcinnamon-control-center-dev debian/libcinnamon-control-center1.debhelper.log debian/libcinnamon-control-center1.substvars debian/libcinnamon-control-center1 debian/tmp obj-x86_64-linux-gnu cinnamon-control-center-6.2.0/README0000664000175000017500000000242614632072346016074 0ustar fabiofabioCinnamon Control Center ==================== In the report please include the following information - Operating system and version For Linux, version of the C library How to reproduce the bug if possible If the bug was a crash, include the exact text that was printed out A stacktrace where possible [see below] How to get a stack trace - If the crash is reproducible, it is possible to get a stack trace and attach it to the bug report. The following steps are used to obtain a stack trace - Run the program in gdb [the GNU debugger] or any other debugger ie. gdb gnome-keyboard-properties Start the program ie. (gdb) run Reproduce the crash and the program will exit to the gdb prompt Get the back trace ie. (gdb) bt full Once you have the backtrace, copy and paste this either into the 'Comments' field or attach a file with it included. Patches - Patches should be submitted to bugzilla.gnome.org or emailed to the gnomecc-list@gnome.org list. If using bugzilla, attach the patch to a new bug report [or preferably, check to see if there is already a bug report that corresponds to your patch]. Bug reports containing patches should include the 'PATCH' keyword. Patches should be created using the unified diff form. ie. svn diff file-to-be-patched.c > patch.diff cinnamon-control-center-6.2.0/AUTHORS0000664000175000017500000000004414632072346016256 0ustar fabiofabioJonathan Blandford cinnamon-control-center-6.2.0/meson_install_schemas.py0000775000175000017500000000042614632072346022141 0ustar fabiofabio#!/usr/bin/python3 import os import subprocess schemadir = os.path.join(os.environ['MESON_INSTALL_PREFIX'], 'share', 'glib-2.0', 'schemas') if not os.environ.get('DESTDIR'): print('Compiling gsettings schemas...') subprocess.call(['glib-compile-schemas', schemadir]) cinnamon-control-center-6.2.0/COPYING0000664000175000017500000004325514632072346016254 0ustar fabiofabio GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. cinnamon-control-center-6.2.0/.github/0000775000175000017500000000000014632072346016550 5ustar fabiofabiocinnamon-control-center-6.2.0/.github/ISSUE_TEMPLATE.md0000664000175000017500000000036314632072346021257 0ustar fabiofabio ``` * cinnamon-control-center version * Distribution - (Mint 17.2, Arch, Fedora 25, etc...) * Graphics hardware *and* driver used * 32 or 64 bit ``` **Issue** **Steps to reproduce** **Expected behaviour** **Other information** cinnamon-control-center-6.2.0/.github/workflows/0000775000175000017500000000000014632072346020605 5ustar fabiofabiocinnamon-control-center-6.2.0/.github/workflows/build.yml0000664000175000017500000000115514632072346022431 0ustar fabiofabioname: Build on: push: branches: - master pull_request: branches: - master workflow_dispatch: inputs: debug_enabled: type: boolean description: 'Start an SSH server on failure.' required: false default: false jobs: build: uses: linuxmint/github-actions/.github/workflows/do-builds.yml@master with: commit_id: master ############################## Comma separated list - like 'linuxmint/xapp, linuxmint/cinnamon-desktop' dependencies: linuxmint/cinnamon-desktop, linuxmint/cinnamon-menus ############################## cinnamon-control-center-6.2.0/MAINTAINERS0000664000175000017500000000000014632072346016673 0ustar fabiofabiocinnamon-control-center-6.2.0/makepot0000775000175000017500000000072514632072346016602 0ustar fabiofabio#!/bin/bash for ui in $(find panels -name *.ui) do intltool-extract --type=gettext/glade $ui done xgettext --add-comments --language=C --from-code=UTF-8 \ --keyword=_ --keyword=C_:1c,2 --keyword=N_ --keyword=NC_:1c,2 \ --output=cinnamon-control-center.pot \ panels/*/*.c panels/*/*/*.c \ shell/*.c \ panels/*/*.ui.h panels/*/*/*.ui.h \ generate_additional_files.py rm -f panels/*/*.ui.h rm -f panels/*/*/*.ui.h cinnamon-control-center-6.2.0/install-scripts/0000775000175000017500000000000014632072346020343 5ustar fabiofabiocinnamon-control-center-6.2.0/install-scripts/meson.build0000664000175000017500000000100214632072346022476 0ustar fabiofabiolinks = [ 'cinnamon-display-panel.desktop', ] if colord.found() links += ['cinnamon-color-panel.desktop'] endif if libnm.found() links += ['cinnamon-network-panel.desktop'] endif if libwacom.found() links += ['cinnamon-wacom-panel.desktop'] endif if meson.version().version_compare('>=0.61.0') foreach link: links install_symlink(link, install_dir: panel_def_dir, pointing_to: '../../applications' / link ) endforeach else meson.add_install_script('desktop-file-links.py') endif cinnamon-control-center-6.2.0/install-scripts/desktop-file-links.py0000775000175000017500000000160614632072346024427 0ustar fabiofabio#!/usr/bin/python3 import os import subprocess # Symlinks desktop files to c-c-c's panel dir so the cinnamon-control-center binary can find the plugins. destdir_prefix = os.environ.get('MESON_INSTALL_DESTDIR_PREFIX') prefix = os.environ.get('MESON_INSTALL_PREFIX') source_location = os.path.join(prefix, "share", "applications") target_location = os.path.join(destdir_prefix, "share", "cinnamon-control-center", "panels") links = [ "cinnamon-color-panel.desktop", "cinnamon-display-panel.desktop", "cinnamon-network-panel.desktop", "cinnamon-wacom-panel.desktop" ] for link in links: orig_path = os.path.join(source_location, link) link_path = os.path.join(target_location, link) if os.path.lexists(link_path): print('%s already exists, skipping symlink creation' % link_path) continue subprocess.call(['ln', '-s', orig_path, link_path]) exit(0) cinnamon-control-center-6.2.0/README.md0000664000175000017500000000111614632072346016466 0ustar fabiofabioSettings need to be unified and consistent. At the moment configuration is split between an incomplete Cinnamon Settings and a heavily patched Gnome Control Center. One of these two tools need to be removed from the default installation and discontinued in the scope of the Cinnamon project. The other one needs to be able to load all modules, whether they're GNOME modules or Cinnamon settings modules. This git repository attempts to use Gnome Control Center as the start point for a unified control center. Similar efforts might take place with Cinnamon Settings as a starting point. cinnamon-control-center-6.2.0/cinnamon-control-center.pot0000664000175000017500000017210614632072346022501 0ustar fabiofabio# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-03-27 13:58+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #. TRANSLATORS: this is where the user can click and import a profile #: panels/color/cc-color-panel.c:108 msgid "Other profile…" msgstr "" #. TRANSLATORS: this is a profile prefix to signify the #. * profile has been auto-generated for this hardware #: panels/color/cc-color-panel.c:121 msgid "Default: " msgstr "" #. TRANSLATORS: this is a profile prefix to signify the #. * profile his a standard space like AdobeRGB #: panels/color/cc-color-panel.c:127 msgid "Colorspace: " msgstr "" #. TRANSLATORS: this is a profile prefix to signify the #. * profile is a test profile #: panels/color/cc-color-panel.c:133 msgid "Test profile: " msgstr "" #. TRANSLATORS: this is when the profile should be set for all users #: panels/color/cc-color-panel.c:185 panels/color/color.ui.h:9 msgid "Set for all users" msgstr "" #. TRANSLATORS: this is when the profile should be set for all users #: panels/color/cc-color-panel.c:192 msgid "Create virtual device" msgstr "" #. TRANSLATORS: an ICC profile is a file containing colorspace data #: panels/color/cc-color-panel.c:227 msgid "Select ICC Profile File" msgstr "" #: panels/color/cc-color-panel.c:230 msgid "_Import" msgstr "" #. TRANSLATORS: filter name on the file->open dialog #: panels/color/cc-color-panel.c:241 msgid "Supported ICC profiles" msgstr "" #. TRANSLATORS: filter name on the file->open dialog #: panels/color/cc-color-panel.c:248 #: panels/network/wireless-security/eap-method-fast.c:417 msgid "All files" msgstr "" #. TRANSLATORS: this is the dialog title in the 'Add profile' UI #: panels/color/cc-color-panel.c:564 msgid "Available Profiles for Displays" msgstr "" #. TRANSLATORS: this is the dialog title in the 'Add profile' UI #: panels/color/cc-color-panel.c:568 msgid "Available Profiles for Scanners" msgstr "" #. TRANSLATORS: this is the dialog title in the 'Add profile' UI #: panels/color/cc-color-panel.c:572 msgid "Available Profiles for Printers" msgstr "" #. TRANSLATORS: this is the dialog title in the 'Add profile' UI #: panels/color/cc-color-panel.c:576 msgid "Available Profiles for Cameras" msgstr "" #. TRANSLATORS: this is the dialog title in the 'Add profile' UI #: panels/color/cc-color-panel.c:580 msgid "Available Profiles for Webcams" msgstr "" #. TRANSLATORS: this is the dialog title in the 'Add profile' UI #. * where the device type is not recognised #. Profiles that can be added to the device #: panels/color/cc-color-panel.c:585 panels/color/color.ui.h:2 msgid "Available Profiles" msgstr "" #. TRANSLATORS: column for device list #: panels/color/cc-color-panel.c:861 msgid "Device" msgstr "" #. TRANSLATORS: column for device list #: panels/color/cc-color-panel.c:896 msgid "Calibration" msgstr "" #. TRANSLATORS: this is when an auto-added profile cannot be removed #: panels/color/cc-color-panel.c:977 msgid "Cannot remove automatically added profile" msgstr "" #. TRANSLATORS: this is when there is no profile for the device #: panels/color/cc-color-panel.c:1307 msgid "No profile" msgstr "" #: panels/color/cc-color-panel.c:1336 #, c-format msgid "%i year" msgid_plural "%i years" msgstr[0] "" msgstr[1] "" #: panels/color/cc-color-panel.c:1347 #, c-format msgid "%i month" msgid_plural "%i months" msgstr[0] "" msgstr[1] "" #: panels/color/cc-color-panel.c:1358 #, c-format msgid "%i week" msgid_plural "%i weeks" msgstr[0] "" msgstr[1] "" #. fallback #: panels/color/cc-color-panel.c:1365 msgid "Less than 1 week" msgstr "" #: panels/color/cc-color-panel.c:1427 msgctxt "Colorspace fallback" msgid "Default RGB" msgstr "" #: panels/color/cc-color-panel.c:1432 msgctxt "Colorspace fallback" msgid "Default CMYK" msgstr "" #: panels/color/cc-color-panel.c:1437 msgctxt "Colorspace fallback" msgid "Default Gray" msgstr "" #: panels/color/cc-color-panel.c:1555 panels/color/cc-color-panel.c:1594 #: panels/color/cc-color-panel.c:1605 panels/color/cc-color-panel.c:1616 msgid "Uncalibrated" msgstr "" #: panels/color/cc-color-panel.c:1558 msgid "This device is not color managed." msgstr "" #: panels/color/cc-color-panel.c:1597 msgid "This device is using manufacturing calibrated data." msgstr "" #: panels/color/cc-color-panel.c:1608 msgid "" "This device does not have a profile suitable for whole-screen color " "correction." msgstr "" #: panels/color/cc-color-panel.c:1641 msgid "This device has an old profile that may no longer be accurate." msgstr "" #. TRANSLATORS: this is when the calibration profile age is not #. * specified as it has been autogenerated from the hardware #: panels/color/cc-color-panel.c:1669 msgid "Not specified" msgstr "" #. add the 'No devices detected' entry #: panels/color/cc-color-panel.c:1854 msgid "No devices supporting color management detected" msgstr "" #: panels/color/cc-color-panel.c:2083 msgctxt "Device kind" msgid "Display" msgstr "" #: panels/color/cc-color-panel.c:2085 msgctxt "Device kind" msgid "Scanner" msgstr "" #: panels/color/cc-color-panel.c:2087 msgctxt "Device kind" msgid "Printer" msgstr "" #: panels/color/cc-color-panel.c:2089 msgctxt "Device kind" msgid "Camera" msgstr "" #: panels/color/cc-color-panel.c:2091 msgctxt "Device kind" msgid "Webcam" msgstr "" #. Add some common languages first #: panels/common/cc-common-language.c:533 msgid "English" msgstr "" #: panels/common/cc-common-language.c:535 msgid "British English" msgstr "" #: panels/common/cc-common-language.c:538 msgid "German" msgstr "" #: panels/common/cc-common-language.c:541 msgid "French" msgstr "" #: panels/common/cc-common-language.c:544 msgid "Spanish" msgstr "" #: panels/common/cc-common-language.c:546 msgid "Chinese (simplified)" msgstr "" #: panels/common/cc-common-language.c:549 msgid "Russian" msgstr "" #: panels/common/cc-common-language.c:552 msgid "Arabic" msgstr "" #. Add some common regions #: panels/common/cc-common-language.c:580 msgid "United States" msgstr "" #: panels/common/cc-common-language.c:581 msgid "Germany" msgstr "" #: panels/common/cc-common-language.c:582 msgid "France" msgstr "" #: panels/common/cc-common-language.c:583 msgid "Spain" msgstr "" #: panels/common/cc-common-language.c:584 msgid "China" msgstr "" #: panels/common/cc-language-chooser.c:303 msgid "Select a region" msgstr "" #: panels/common/gdm-languages.c:781 msgid "Unspecified" msgstr "" #. Translators: this is the feature where what you see on your #. * laptop's screen is the same as your external projector. #. * Here, "Mirrored" is being used as an adjective. For example, #. * the Spanish translation could be "Pantallas en Espejo". #. #: panels/display/cc-display-labeler.c:369 #: panels/display/cc-display-panel.c:748 msgid "Mirrored Displays" msgstr "" #: panels/display/cc-display-panel.c:1150 msgid "Confirm reset to defaults" msgstr "" #: panels/display/cc-display-panel.c:1152 msgid "Cancel" msgstr "" #: panels/display/cc-display-panel.c:1152 msgid "Continue" msgstr "" #: panels/display/cc-display-panel.c:1165 msgid "" "This will remove all existing display configurations and reset the current " "layout." msgstr "" #: panels/display/cc-display-settings.c:107 msgctxt "Display rotation" msgid "Landscape" msgstr "" #: panels/display/cc-display-settings.c:110 msgctxt "Display rotation" msgid "Portrait Right" msgstr "" #: panels/display/cc-display-settings.c:113 msgctxt "Display rotation" msgid "Portrait Left" msgstr "" #: panels/display/cc-display-settings.c:116 msgctxt "Display rotation" msgid "Landscape (flipped)" msgstr "" #: panels/display/cc-display-settings.c:190 #, c-format msgid "%.2lf Hz" msgstr "" #: panels/display/cc-display-settings.c:471 msgid "Monitor scale" msgstr "" #: panels/display/cc-display-settings.c:475 #: panels/display/cc-display-settings.ui.h:4 msgid "User interface scale" msgstr "" #: panels/network/cc-network-panel.c:906 msgid "Network proxy" msgstr "" #. Translators: this is the title of the connection details #. * window for vpn connections, it is also used to display #. * vpn connections in the device list. #. #: panels/network/cc-network-panel.c:1085 panels/network/net-vpn.c:287 #: panels/network/net-vpn.c:444 #, c-format msgid "%s VPN" msgstr "" #: panels/network/cc-network-panel.c:1152 msgid "Oops, something has gone wrong. Please contact your software vendor." msgstr "" #: panels/network/cc-network-panel.c:1158 msgid "NetworkManager needs to be running." msgstr "" #. Translators: network device speed #: panels/network/net-device-ethernet.c:50 panels/network/net-device-wifi.c:549 #: panels/network/connection-editor/ce-page-details.c:153 #, c-format msgid "%d Mb/s" msgstr "" #: panels/network/net-device-ethernet.c:107 #: panels/network/net-device-wifi.c:477 msgid "never" msgstr "" #: panels/network/net-device-ethernet.c:117 #: panels/network/net-device-wifi.c:487 msgid "today" msgstr "" #: panels/network/net-device-ethernet.c:119 #: panels/network/net-device-wifi.c:489 msgid "yesterday" msgstr "" #: panels/network/net-device-ethernet.c:121 #: panels/network/net-device-wifi.c:491 #: panels/network/connection-editor/ce-page-details.c:104 #, c-format msgid "%i day ago" msgid_plural "%i days ago" msgstr[0] "" msgstr[1] "" #: panels/network/net-device-ethernet.c:158 panels/network/panel-common.c:679 #: panels/network/network-simple.ui.h:3 panels/network/network-wifi.ui.h:7 #: panels/network/connection-editor/details-page.ui.h:4 msgid "IPv4 Address" msgstr "" #: panels/network/net-device-ethernet.c:159 panels/network/panel-common.c:680 #: panels/network/network-mobile.ui.h:4 panels/network/network-simple.ui.h:4 #: panels/network/network-wifi.ui.h:8 #: panels/network/connection-editor/details-page.ui.h:5 msgid "IPv6 Address" msgstr "" #: panels/network/net-device-ethernet.c:161 #: panels/network/net-device-ethernet.c:163 panels/network/panel-common.c:682 #: panels/network/panel-common.c:684 panels/network/network-mobile.ui.h:3 msgid "IP Address" msgstr "" #: panels/network/net-device-ethernet.c:166 #: panels/network/network-simple.ui.h:2 panels/network/network-wifi.ui.h:9 #: panels/network/connection-editor/details-page.ui.h:6 msgid "Hardware Address" msgstr "" #: panels/network/net-device-ethernet.c:171 #: panels/network/net-device-ethernet.c:173 #: panels/network/net-device-ethernet.c:175 #: panels/network/network-mobile.ui.h:5 panels/network/network-simple.ui.h:5 #: panels/network/network-wifi.ui.h:10 #: panels/network/connection-editor/details-page.ui.h:7 msgid "Default Route" msgstr "" #: panels/network/net-device-ethernet.c:179 panels/network/panel-common.c:688 #: panels/network/network-mobile.ui.h:6 panels/network/network-simple.ui.h:6 #: panels/network/network-wifi.ui.h:11 #: panels/network/connection-editor/details-page.ui.h:8 msgid "DNS4" msgstr "" #: panels/network/net-device-ethernet.c:180 panels/network/panel-common.c:689 #: panels/network/network-mobile.ui.h:7 panels/network/network-simple.ui.h:7 #: panels/network/network-wifi.ui.h:12 #: panels/network/connection-editor/details-page.ui.h:9 msgid "DNS6" msgstr "" #: panels/network/net-device-ethernet.c:182 #: panels/network/net-device-ethernet.c:184 panels/network/panel-common.c:691 #: panels/network/panel-common.c:693 #: panels/network/connection-editor/ip4-page.ui.h:3 #: panels/network/connection-editor/ip6-page.ui.h:3 msgid "DNS" msgstr "" #: panels/network/net-device-ethernet.c:190 panels/network/network-wifi.ui.h:13 msgid "Last used" msgstr "" #. Translators: This is used as the title of the connection #. * details window for ethernet, if there is only a single #. * profile. It is also used to display ethernet in the #. * device list. #. #: panels/network/net-device-ethernet.c:292 #: panels/network/network-ethernet.ui.h:1 panels/network/network-simple.ui.h:1 msgid "Wired" msgstr "" #: panels/network/net-device-ethernet.c:360 #: panels/network/net-device-wifi.c:1751 panels/network/network-ethernet.ui.h:3 #: panels/network/network-mobile.ui.h:9 panels/network/network-simple.ui.h:9 #: panels/network/network-vpn.ui.h:7 msgid "Options…" msgstr "" #: panels/network/net-device-mobile.c:238 msgid "Add new connection" msgstr "" #. TRANSLATORS: this WEP WiFi security #: panels/network/net-device-wifi.c:215 panels/network/net-device-wifi.c:393 #: panels/network/connection-editor/ce-page-details.c:50 msgid "WEP" msgstr "" #. TRANSLATORS: this WPA WiFi security #: panels/network/net-device-wifi.c:219 panels/network/net-device-wifi.c:398 #: panels/network/connection-editor/ce-page-details.c:54 #: panels/network/network-wifi.ui.h:20 msgid "WPA" msgstr "" #. TRANSLATORS: this WPA WiFi security #: panels/network/net-device-wifi.c:223 #: panels/network/connection-editor/ce-page-details.c:58 msgid "WPA2" msgstr "" #. TRANSLATORS: this Enterprise WiFi security #: panels/network/net-device-wifi.c:228 #: panels/network/connection-editor/ce-page-details.c:63 msgid "Enterprise" msgstr "" #: panels/network/net-device-wifi.c:233 panels/network/net-device-wifi.c:383 #: panels/network/connection-editor/ce-page-details.c:68 msgctxt "Wifi security" msgid "None" msgstr "" #: panels/network/net-device-wifi.c:578 #: panels/network/connection-editor/ce-page-details.c:179 msgctxt "Signal strength" msgid "None" msgstr "" #: panels/network/net-device-wifi.c:580 #: panels/network/connection-editor/ce-page-details.c:181 msgctxt "Signal strength" msgid "Weak" msgstr "" #: panels/network/net-device-wifi.c:582 #: panels/network/connection-editor/ce-page-details.c:183 msgctxt "Signal strength" msgid "Ok" msgstr "" #: panels/network/net-device-wifi.c:584 #: panels/network/connection-editor/ce-page-details.c:185 msgctxt "Signal strength" msgid "Good" msgstr "" #: panels/network/net-device-wifi.c:586 #: panels/network/connection-editor/ce-page-details.c:187 msgctxt "Signal strength" msgid "Excellent" msgstr "" #: panels/network/net-device-wifi.c:1260 msgid "" "If you have a connection to the Internet other than wireless, you can set up " "a wireless hotspot to share the connection with others." msgstr "" #: panels/network/net-device-wifi.c:1264 #, c-format msgid "Switching on the wireless hotspot will disconnect you from %s." msgstr "" #: panels/network/net-device-wifi.c:1268 msgid "" "It is not possible to access the Internet through your wireless while the " "hotspot is active." msgstr "" #: panels/network/net-device-wifi.c:1350 msgid "Stop hotspot and disconnect any users?" msgstr "" #: panels/network/net-device-wifi.c:1352 panels/network/net-device-wifi.c:1592 #: panels/network/connection-editor/vpn-helpers.c:181 #: panels/network/connection-editor/vpn-helpers.c:310 #: panels/common/language-chooser.ui.h:2 panels/network/network-wifi.ui.h:1 #: panels/network/connection-editor/connection-editor.ui.h:1 msgid "_Cancel" msgstr "" #: panels/network/net-device-wifi.c:1353 msgid "_Stop Hotspot" msgstr "" #: panels/network/net-device-wifi.c:1454 msgid "System policy prohibits use as a Hotspot" msgstr "" #: panels/network/net-device-wifi.c:1457 msgid "Wireless device does not support Hotspot mode" msgstr "" #: panels/network/net-device-wifi.c:1589 msgid "" "Network details for the selected networks, including passwords and any " "custom configuration will be lost." msgstr "" #: panels/network/net-device-wifi.c:1593 panels/network/network-wifi.ui.h:43 #: panels/network/connection-editor/reset-page.ui.h:2 msgid "_Forget" msgstr "" #: panels/network/net-device-wifi.c:1899 msgid "History" msgstr "" #: panels/network/net-device-wifi.c:1903 panels/wacom/cc-wacom-page.c:468 #: panels/wacom/button-mapping.ui.h:2 msgid "_Close" msgstr "" #. translators: This is the label for the "Forget wireless network" functionality #: panels/network/net-device-wifi.c:1911 msgctxt "Wi-Fi Network" msgid "_Forget" msgstr "" #. TRANSLATORS: this is when the use leaves the PAC textbox blank #: panels/network/net-proxy.c:67 msgid "" "Web Proxy Autodiscovery is used when a Configuration URL is not provided." msgstr "" #. TRANSLATORS: WPAD is bad: if you enable it on an untrusted #. * network, then anyone else on that network can tell your #. * machine that it should proxy all of your web traffic #. * through them. #: panels/network/net-proxy.c:75 msgid "This is not recommended for untrusted public networks." msgstr "" #: panels/network/net-proxy.c:410 msgid "Proxy" msgstr "" #. TRANSLATORS: AP type #: panels/network/panel-common.c:123 msgid "Unknown" msgstr "" #. TRANSLATORS: AP type #: panels/network/panel-common.c:127 msgid "Ad-hoc" msgstr "" #. TRANSLATORS: AP type #: panels/network/panel-common.c:131 msgid "Infrastructure" msgstr "" #. TRANSLATORS: device status #. TRANSLATORS: VPN status #: panels/network/panel-common.c:147 panels/network/panel-common.c:201 msgid "Status unknown" msgstr "" #. TRANSLATORS: device status #: panels/network/panel-common.c:151 msgid "Unmanaged" msgstr "" #. TRANSLATORS: device status #: panels/network/panel-common.c:155 msgid "Unavailable" msgstr "" #. TRANSLATORS: device status #. TRANSLATORS: VPN status #: panels/network/panel-common.c:165 panels/network/panel-common.c:207 msgid "Connecting" msgstr "" #. TRANSLATORS: device status #. TRANSLATORS: VPN status #: panels/network/panel-common.c:169 panels/network/panel-common.c:211 msgid "Authentication required" msgstr "" #. TRANSLATORS: device status #. TRANSLATORS: VPN status #: panels/network/panel-common.c:173 panels/network/panel-common.c:215 msgid "Connected" msgstr "" #. TRANSLATORS: device status #: panels/network/panel-common.c:177 msgid "Disconnecting" msgstr "" #. TRANSLATORS: device status #. TRANSLATORS: VPN status #: panels/network/panel-common.c:181 panels/network/panel-common.c:219 msgid "Connection failed" msgstr "" #. TRANSLATORS: device status #. TRANSLATORS: VPN status #: panels/network/panel-common.c:185 panels/network/panel-common.c:227 msgid "Status unknown (missing)" msgstr "" #. TRANSLATORS: VPN status #: panels/network/panel-common.c:223 msgid "Not connected" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:248 msgid "Configuration failed" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:252 msgid "IP configuration failed" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:256 msgid "IP configuration expired" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:260 msgid "Secrets were required, but not provided" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:264 msgid "802.1x supplicant disconnected" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:268 msgid "802.1x supplicant configuration failed" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:272 msgid "802.1x supplicant failed" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:276 msgid "802.1x supplicant took too long to authenticate" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:280 msgid "PPP service failed to start" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:284 msgid "PPP service disconnected" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:288 msgid "PPP failed" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:292 msgid "DHCP client failed to start" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:296 msgid "DHCP client error" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:300 msgid "DHCP client failed" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:304 msgid "Shared connection service failed to start" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:308 msgid "Shared connection service failed" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:312 msgid "AutoIP service failed to start" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:316 msgid "AutoIP service error" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:320 msgid "AutoIP service failed" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:324 msgid "Line busy" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:328 msgid "No dial tone" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:332 msgid "No carrier could be established" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:336 msgid "Dialing request timed out" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:340 msgid "Dialing attempt failed" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:344 msgid "Modem initialization failed" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:348 msgid "Failed to select the specified APN" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:352 msgid "Not searching for networks" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:356 msgid "Network registration denied" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:360 msgid "Network registration timed out" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:364 msgid "Failed to register with the requested network" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:368 msgid "PIN check failed" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:372 msgid "Firmware for the device may be missing" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:376 msgid "Connection disappeared" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:380 msgid "Existing connection was assumed" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:384 msgid "Modem not found" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:388 msgid "Bluetooth connection failed" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:392 msgid "SIM Card not inserted" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:396 msgid "SIM Pin required" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:400 msgid "SIM Puk required" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:404 msgid "SIM wrong" msgstr "" #. TRANSLATORS: device status reason #: panels/network/panel-common.c:408 msgid "Connection dependency failed" msgstr "" #. TRANSLATORS: device status #: panels/network/panel-common.c:433 msgid "Firmware missing" msgstr "" #. TRANSLATORS: device status #: panels/network/panel-common.c:437 msgid "Cable unplugged" msgstr "" #: panels/region/cinnamon-region-panel-xkblt.c:208 msgid "Layout" msgstr "" #: panels/region/cinnamon-region-panel-xkbot.c:227 #: panels/wacom/wacom-stylus-page.ui.h:1 msgid "Default" msgstr "" #: panels/wacom/cc-wacom-button-row.c:248 #, c-format msgid "Button %d" msgstr "" #: panels/wacom/cc-wacom-mapping-panel.c:232 msgid "Output:" msgstr "" #. Keep ratio switch #: panels/wacom/cc-wacom-mapping-panel.c:244 msgid "Keep aspect ratio (letterbox):" msgstr "" #. Whole-desktop checkbox #: panels/wacom/cc-wacom-mapping-panel.c:255 msgid "Map to single monitor" msgstr "" #: panels/wacom/cc-wacom-nav-button.c:84 #, c-format msgid "%d of %d" msgstr "" #: panels/wacom/cc-wacom-page.c:465 msgid "Display Mapping" msgstr "" #: panels/wacom/cc-wacom-panel.c:666 panels/wacom/wacom-stylus-page.ui.h:9 msgid "Stylus" msgstr "" #: panels/wacom/cc-wacom-panel.c:669 msgid "Tablet" msgstr "" #: panels/wacom/cc-wacom-stylus-page.c:362 msgid "Button" msgstr "" #: panels/wacom/csd-wacom-key-shortcut-button.c:217 msgid "New shortcut…" msgstr "" #: panels/network/connection-editor/ce-page-8021x-security.c:101 #: panels/network/connection-editor/ce-page-security.c:459 #: panels/network/network-wifi.ui.h:6 #: panels/network/connection-editor/details-page.ui.h:3 msgid "Security" msgstr "" #: panels/network/connection-editor/ce-page.c:481 msgid "automatic" msgstr "" #: panels/network/connection-editor/ce-page.c:521 #, c-format msgid "Profile %d" msgstr "" #: panels/network/connection-editor/ce-page-details.c:89 msgid "Never" msgstr "" #: panels/network/connection-editor/ce-page-details.c:100 msgid "Today" msgstr "" #: panels/network/connection-editor/ce-page-details.c:102 msgid "Yesterday" msgstr "" #: panels/network/connection-editor/ce-page-details.c:225 #: panels/network/network-wifi.ui.h:47 msgid "Details" msgstr "" #: panels/network/connection-editor/ce-page-ethernet.c:215 #: panels/network/connection-editor/ce-page-vpn.c:221 #: panels/network/connection-editor/ce-page-wifi.c:227 #: panels/network/network-wifi.ui.h:48 msgid "Identity" msgstr "" #: panels/network/connection-editor/ce-page-ip4.c:202 #: panels/network/connection-editor/ce-page-ip4.c:461 #: panels/network/connection-editor/ce-page-ip6.c:180 #: panels/network/connection-editor/ce-page-ip6.c:427 msgid "Address" msgstr "" #: panels/network/connection-editor/ce-page-ip4.c:215 #: panels/network/connection-editor/ce-page-ip4.c:474 msgid "Netmask" msgstr "" #: panels/network/connection-editor/ce-page-ip4.c:229 #: panels/network/connection-editor/ce-page-ip4.c:487 #: panels/network/connection-editor/ce-page-ip6.c:206 #: panels/network/connection-editor/ce-page-ip6.c:453 #: panels/network/network-vpn.ui.h:2 msgid "Gateway" msgstr "" #: panels/network/connection-editor/ce-page-ip4.c:250 #: panels/network/connection-editor/ce-page-ip6.c:223 msgid "Delete Address" msgstr "" #: panels/network/connection-editor/ce-page-ip4.c:305 #: panels/network/connection-editor/ce-page-ip6.c:277 msgid "Add" msgstr "" #: panels/network/connection-editor/ce-page-ip4.c:368 #: panels/network/connection-editor/ce-page-ip6.c:334 msgid "Server" msgstr "" #: panels/network/connection-editor/ce-page-ip4.c:385 #: panels/network/connection-editor/ce-page-ip6.c:351 msgid "Delete DNS Server" msgstr "" #. Translators: Please see https://en.wikipedia.org/wiki/Metrics_(networking) #: panels/network/connection-editor/ce-page-ip4.c:501 #: panels/network/connection-editor/ce-page-ip6.c:467 msgctxt "network parameters" msgid "Metric" msgstr "" #: panels/network/connection-editor/ce-page-ip4.c:522 #: panels/network/connection-editor/ce-page-ip6.c:484 msgid "Delete Route" msgstr "" #: panels/network/connection-editor/ce-page-ip4.c:626 #: panels/network/network-wifi.ui.h:28 msgid "Automatic (DHCP)" msgstr "" #: panels/network/connection-editor/ce-page-ip4.c:630 #: panels/network/connection-editor/ce-page-ip6.c:592 #: panels/network/network-wifi.ui.h:27 msgid "Manual" msgstr "" #: panels/network/connection-editor/ce-page-ip4.c:634 #: panels/network/connection-editor/ce-page-ip6.c:596 msgid "Link-Local Only" msgstr "" #: panels/network/connection-editor/ce-page-ip4.c:980 #: panels/network/network-wifi.ui.h:49 msgid "IPv4" msgstr "" #: panels/network/connection-editor/ce-page-ip6.c:193 #: panels/network/connection-editor/ce-page-ip6.c:440 msgid "Prefix" msgstr "" #: panels/network/connection-editor/ce-page-ip6.c:584 #: panels/network/connection-editor/ethernet-page.ui.h:1 #: panels/network/connection-editor/ip4-page.ui.h:4 #: panels/network/connection-editor/ip6-page.ui.h:4 #: panels/network/wireless-security/eap-method-peap.ui.h:2 msgid "Automatic" msgstr "" #: panels/network/connection-editor/ce-page-ip6.c:588 msgid "Automatic, DHCP only" msgstr "" #: panels/network/connection-editor/ce-page-ip6.c:898 #: panels/network/network-wifi.ui.h:50 msgid "IPv6" msgstr "" #: panels/network/connection-editor/ce-page-reset.c:78 msgid "Reset" msgstr "" #: panels/network/connection-editor/ce-page-security.c:248 msgctxt "Wi-Fi/Ethernet security" msgid "None" msgstr "" #: panels/network/connection-editor/ce-page-security.c:271 msgid "WEP 40/128-bit Key (Hex or ASCII)" msgstr "" #: panels/network/connection-editor/ce-page-security.c:281 msgid "WEP 128-bit Passphrase" msgstr "" #: panels/network/connection-editor/ce-page-security.c:294 #: panels/network/wireless-security/wireless-security.c:463 msgid "LEAP" msgstr "" #: panels/network/connection-editor/ce-page-security.c:307 msgid "Dynamic WEP (802.1x)" msgstr "" #: panels/network/connection-editor/ce-page-security.c:321 msgid "WPA & WPA2 Personal" msgstr "" #: panels/network/connection-editor/ce-page-security.c:335 msgid "WPA & WPA2 Enterprise" msgstr "" #: panels/network/connection-editor/firewall-helpers.c:49 #: panels/network/connection-editor/firewall-helpers.c:118 msgctxt "Firewall zone" msgid "Default" msgstr "" #: panels/network/connection-editor/firewall-helpers.c:50 msgid "The zone defines the trust level of the connection" msgstr "" #: panels/network/connection-editor/net-connection-editor.c:295 msgid "Unable to open connection editor" msgstr "" #: panels/network/connection-editor/net-connection-editor.c:313 msgid "New Profile" msgstr "" #: panels/network/connection-editor/net-connection-editor.c:545 msgid "_Add" msgstr "" #: panels/network/connection-editor/net-connection-editor.c:634 msgid "VPN" msgstr "" #: panels/network/connection-editor/net-connection-editor.c:782 msgid "Import from file…" msgstr "" #: panels/network/connection-editor/net-connection-editor.c:816 msgid "Add VPN" msgstr "" #: panels/network/connection-editor/vpn-helpers.c:141 msgid "Cannot import VPN connection" msgstr "" #: panels/network/connection-editor/vpn-helpers.c:143 #, c-format msgid "" "The file ā€œ%sā€ could not be read or does not contain recognized VPN " "connection information\n" "\n" "Error: %s." msgstr "" #: panels/network/connection-editor/vpn-helpers.c:178 msgid "Select file to import" msgstr "" #: panels/network/connection-editor/vpn-helpers.c:182 msgid "_Open" msgstr "" #: panels/network/connection-editor/vpn-helpers.c:230 #, c-format msgid "A file named ā€œ%sā€ already exists." msgstr "" #: panels/network/connection-editor/vpn-helpers.c:232 msgid "_Replace" msgstr "" #: panels/network/connection-editor/vpn-helpers.c:234 #, c-format msgid "Do you want to replace %s with the VPN connection you are saving?" msgstr "" #: panels/network/connection-editor/vpn-helpers.c:270 msgid "Cannot export VPN connection" msgstr "" #: panels/network/connection-editor/vpn-helpers.c:272 #, c-format msgid "" "The VPN connection ā€œ%sā€ could not be exported to %s.\n" "\n" "Error: %s." msgstr "" #: panels/network/connection-editor/vpn-helpers.c:307 msgid "Export VPN connection" msgstr "" #: panels/network/connection-editor/vpn-helpers.c:311 msgid "_Save" msgstr "" #: panels/network/wireless-security/eap-method.c:69 msgid "undefined error in 802.1x security (wpa-eap)" msgstr "" #: panels/network/wireless-security/eap-method.c:245 msgid "no file selected" msgstr "" #: panels/network/wireless-security/eap-method.c:276 msgid "unspecified error validating eap-method file" msgstr "" #: panels/network/wireless-security/eap-method.c:321 msgid "DER, PEM, or PKCS#12 private keys (*.der, *.pem, *.p12, *.key)" msgstr "" #: panels/network/wireless-security/eap-method.c:324 msgid "DER or PEM certificates (*.der, *.pem, *.crt, *.cer)" msgstr "" #: panels/network/wireless-security/eap-method-fast.c:72 msgid "missing EAP-FAST PAC file" msgstr "" #: panels/network/wireless-security/eap-method-fast.c:268 #: panels/network/wireless-security/eap-method-peap.c:302 #: panels/network/wireless-security/eap-method-ttls.c:333 msgid "GTC" msgstr "" #: panels/network/wireless-security/eap-method-fast.c:283 #: panels/network/wireless-security/eap-method-peap.c:272 #: panels/network/wireless-security/eap-method-ttls.c:288 msgid "MSCHAPv2" msgstr "" #: panels/network/wireless-security/eap-method-fast.c:406 msgid "Choose a PAC file" msgstr "" #: panels/network/wireless-security/eap-method-fast.c:413 msgid "PAC files (*.pac)" msgstr "" #: panels/network/wireless-security/eap-method-leap.c:65 msgid "missing EAP-LEAP username" msgstr "" #: panels/network/wireless-security/eap-method-leap.c:74 msgid "missing EAP-LEAP password" msgstr "" #: panels/network/wireless-security/eap-method-peap.c:63 #, c-format msgid "invalid EAP-PEAP CA certificate: %s" msgstr "" #: panels/network/wireless-security/eap-method-peap.c:68 msgid "invalid EAP-PEAP CA certificate: no certificate specified" msgstr "" #: panels/network/wireless-security/eap-method-peap.c:287 #: panels/network/wireless-security/eap-method-ttls.c:318 #: panels/network/wireless-security/wireless-security.c:439 msgid "MD5" msgstr "" #: panels/network/wireless-security/eap-method-peap.c:381 #: panels/network/wireless-security/eap-method-tls.c:501 #: panels/network/wireless-security/eap-method-ttls.c:412 msgid "Choose a Certificate Authority certificate" msgstr "" #: panels/network/wireless-security/eap-method-simple.c:74 msgid "missing EAP username" msgstr "" #: panels/network/wireless-security/eap-method-simple.c:87 msgid "missing EAP password" msgstr "" #: panels/network/wireless-security/eap-method-tls.c:68 msgid "missing EAP-TLS identity" msgstr "" #: panels/network/wireless-security/eap-method-tls.c:77 #, c-format msgid "invalid EAP-TLS CA certificate: %s" msgstr "" #: panels/network/wireless-security/eap-method-tls.c:84 msgid "invalid EAP-TLS CA certificate: no certificate specified" msgstr "" #: panels/network/wireless-security/eap-method-tls.c:95 msgid "invalid EAP-TLS password: missing" msgstr "" #: panels/network/wireless-security/eap-method-tls.c:109 #, c-format msgid "invalid EAP-TLS private-key: %s" msgstr "" #: panels/network/wireless-security/eap-method-tls.c:119 #, c-format msgid "invalid EAP-TLS user-certificate: %s" msgstr "" #: panels/network/wireless-security/eap-method-tls.c:316 msgid "Unencrypted private keys are insecure" msgstr "" #: panels/network/wireless-security/eap-method-tls.c:319 msgid "" "The selected private key does not appear to be protected by a password. " "This could allow your security credentials to be compromised. Please select " "a password-protected private key.\n" "\n" "(You can password-protect your private key with openssl)" msgstr "" #: panels/network/wireless-security/eap-method-tls.c:495 msgid "Choose your personal certificate" msgstr "" #: panels/network/wireless-security/eap-method-tls.c:507 msgid "Choose your private key" msgstr "" #: panels/network/wireless-security/eap-method-ttls.c:63 #, c-format msgid "invalid EAP-TTLS CA certificate: %s" msgstr "" #: panels/network/wireless-security/eap-method-ttls.c:68 msgid "invalid EAP-TTLS CA certificate: no certificate specified" msgstr "" #: panels/network/wireless-security/eap-method-ttls.c:258 msgid "PAP" msgstr "" #: panels/network/wireless-security/eap-method-ttls.c:273 msgid "MSCHAP" msgstr "" #: panels/network/wireless-security/eap-method-ttls.c:303 msgid "CHAP" msgstr "" #: panels/network/wireless-security/wireless-security.c:87 msgid "Unknown error validating 802.1x security" msgstr "" #: panels/network/wireless-security/wireless-security.c:451 msgid "TLS" msgstr "" #: panels/network/wireless-security/wireless-security.c:475 msgid "PWD" msgstr "" #: panels/network/wireless-security/wireless-security.c:486 msgid "FAST" msgstr "" #: panels/network/wireless-security/wireless-security.c:497 msgid "Tunneled TLS" msgstr "" #: panels/network/wireless-security/wireless-security.c:508 msgid "Protected EAP (PEAP)" msgstr "" #: panels/network/wireless-security/ws-leap.c:63 msgid "missing leap-username" msgstr "" #: panels/network/wireless-security/ws-leap.c:74 msgid "missing leap-password" msgstr "" #: panels/network/wireless-security/ws-wep-key.c:107 msgid "missing wep-key" msgstr "" #: panels/network/wireless-security/ws-wep-key.c:116 #, c-format msgid "invalid wep-key: key with a length of %zu must contain only hex-digits" msgstr "" #: panels/network/wireless-security/ws-wep-key.c:124 #, c-format msgid "" "invalid wep-key: key with a length of %zu must contain only ascii characters" msgstr "" #: panels/network/wireless-security/ws-wep-key.c:130 #, c-format msgid "" "invalid wep-key: wrong key length %zu. A key must be either of length 5/13 " "(ascii) or 10/26 (hex)" msgstr "" #: panels/network/wireless-security/ws-wep-key.c:137 msgid "invalid wep-key: passphrase must be non-empty" msgstr "" #: panels/network/wireless-security/ws-wep-key.c:139 msgid "invalid wep-key: passphrase must be shorter than 64 characters" msgstr "" #: panels/network/wireless-security/ws-wpa-psk.c:70 #, c-format msgid "" "invalid wpa-psk: invalid key-length %zu. Must be [8,63] bytes or 64 hex " "digits" msgstr "" #: panels/network/wireless-security/ws-wpa-psk.c:79 msgid "invalid wpa-psk: cannot interpret key with 64 bytes as hex" msgstr "" #: shell/cc-shell-nav-bar.c:117 msgid "_All Settings" msgstr "" #: shell/control-center.c:58 msgid "Enable verbose mode" msgstr "" #: shell/control-center.c:59 msgid "Show the overview" msgstr "" #: shell/control-center.c:60 shell/control-center.c:61 #: shell/control-center.c:62 msgid "Show help options" msgstr "" #: shell/control-center.c:63 msgid "Panel to display" msgstr "" #: shell/control-center.c:85 msgid "- System Settings" msgstr "" #: shell/control-center.c:93 #, c-format msgid "" "%s\n" "Run '%s --help' to see a full list of available command line options.\n" msgstr "" #: shell/control-center.c:222 msgid "Help" msgstr "" #: shell/control-center.c:223 msgid "Quit" msgstr "" #. translators: This is the default hotspot name, need to be less than 32-bytes #: shell/hostname-helper.c:189 msgctxt "hotspot" msgid "Hotspot" msgstr "" #: panels/color/color.ui.h:3 generate_additional_files.py:23 msgid "Color" msgstr "" #: panels/color/color.ui.h:4 msgid "Each device needs an up to date color profile to be color managed." msgstr "" #: panels/color/color.ui.h:5 msgid "Add device" msgstr "" #: panels/color/color.ui.h:6 msgid "Add a virtual device" msgstr "" #: panels/color/color.ui.h:7 msgid "Delete device" msgstr "" #: panels/color/color.ui.h:8 msgid "Remove a device" msgstr "" #: panels/color/color.ui.h:10 msgid "Set this profile for all users on this computer" msgstr "" #: panels/color/color.ui.h:11 msgid "Add profile" msgstr "" #: panels/color/color.ui.h:12 msgid "Remove profile" msgstr "" #: panels/color/color.ui.h:13 msgid "View details" msgstr "" #: panels/color/color.ui.h:14 msgid "Device type:" msgstr "" #: panels/color/color.ui.h:15 msgid "Manufacturer:" msgstr "" #: panels/color/color.ui.h:16 msgid "Model:" msgstr "" #: panels/color/color.ui.h:17 msgid "" "Image files can be dragged on this window to auto-complete the above fields." msgstr "" #: panels/common/language-chooser.ui.h:1 msgid "Select a language" msgstr "" #: panels/common/language-chooser.ui.h:3 msgid "_Select" msgstr "" #: panels/datetime/datetime.ui.h:1 msgid "_Region:" msgstr "" #: panels/datetime/datetime.ui.h:2 msgid "_City:" msgstr "" #: panels/datetime/datetime.ui.h:3 msgid "_Network Time" msgstr "" #. Translator: this is the separator between hours and minutes, like in HH:MM #: panels/datetime/datetime.ui.h:5 msgid ":" msgstr "" #: panels/datetime/datetime.ui.h:6 msgid "Set the time one hour ahead." msgstr "" #: panels/datetime/datetime.ui.h:7 msgid "Set the time one hour back." msgstr "" #: panels/datetime/datetime.ui.h:8 msgid "Set the time one minute ahead." msgstr "" #: panels/datetime/datetime.ui.h:9 msgid "Set the time one minute back." msgstr "" #: panels/datetime/datetime.ui.h:10 msgid "Month" msgstr "" #: panels/datetime/datetime.ui.h:11 msgid "Day" msgstr "" #: panels/datetime/datetime.ui.h:12 msgid "Year" msgstr "" #: panels/datetime/datetime.ui.h:13 msgid "January" msgstr "" #: panels/datetime/datetime.ui.h:14 msgid "February" msgstr "" #: panels/datetime/datetime.ui.h:15 msgid "March" msgstr "" #: panels/datetime/datetime.ui.h:16 msgid "April" msgstr "" #: panels/datetime/datetime.ui.h:17 msgid "May" msgstr "" #: panels/datetime/datetime.ui.h:18 msgid "June" msgstr "" #: panels/datetime/datetime.ui.h:19 msgid "July" msgstr "" #: panels/datetime/datetime.ui.h:20 msgid "August" msgstr "" #: panels/datetime/datetime.ui.h:21 msgid "September" msgstr "" #: panels/datetime/datetime.ui.h:22 msgid "October" msgstr "" #: panels/datetime/datetime.ui.h:23 msgid "November" msgstr "" #: panels/datetime/datetime.ui.h:24 msgid "December" msgstr "" #: panels/display/cc-display-panel.ui.h:1 msgid "Display Arrangement" msgstr "" #: panels/display/cc-display-panel.ui.h:2 msgid "Set as Primary" msgstr "" #: panels/display/cc-display-panel.ui.h:3 msgid "Display Configuration" msgstr "" #: panels/display/cc-display-panel.ui.h:4 msgid "Join Displays" msgstr "" #: panels/display/cc-display-panel.ui.h:5 msgid "Mirror" msgstr "" #: panels/display/cc-display-panel.ui.h:6 msgid "Displays" msgstr "" #: panels/display/cc-display-panel.ui.h:7 msgid "Reset to Defaults" msgstr "" #: panels/display/cc-display-panel.ui.h:8 msgid "Cancel changes" msgstr "" #: panels/display/cc-display-panel.ui.h:9 msgid "Apply" msgstr "" #: panels/display/cc-display-settings.ui.h:1 msgid "Resolution" msgstr "" #: panels/display/cc-display-settings.ui.h:2 msgid "Refresh Rate" msgstr "" #: panels/display/cc-display-settings.ui.h:3 msgid "Rotation" msgstr "" #: panels/display/cc-display-settings.ui.h:5 msgid "Adjust for TV" msgstr "" #: panels/network/network-ethernet.ui.h:2 msgid "_Add Profile…" msgstr "" #: panels/network/network-mobile.ui.h:1 msgid "IMEI" msgstr "" #: panels/network/network-mobile.ui.h:2 msgid "Provider" msgstr "" #: panels/network/network-mobile.ui.h:8 generate_additional_files.py:63 msgid "Network" msgstr "" #: panels/network/network-proxy.ui.h:1 msgctxt "proxy method" msgid "None" msgstr "" #: panels/network/network-proxy.ui.h:2 msgctxt "proxy method" msgid "Manual" msgstr "" #: panels/network/network-proxy.ui.h:3 msgctxt "proxy method" msgid "Automatic" msgstr "" #: panels/network/network-proxy.ui.h:4 msgid "_Method" msgstr "" #: panels/network/network-proxy.ui.h:5 msgid "_Configuration URL" msgstr "" #: panels/network/network-proxy.ui.h:6 msgid "_HTTP Proxy" msgstr "" #: panels/network/network-proxy.ui.h:7 msgid "H_TTPS Proxy" msgstr "" #: panels/network/network-proxy.ui.h:8 msgid "_FTP Proxy" msgstr "" #: panels/network/network-proxy.ui.h:9 msgid "_Socks Host" msgstr "" #: panels/network/network-proxy.ui.h:10 msgid "_Ignore Hosts" msgstr "" #: panels/network/network-proxy.ui.h:11 msgid "HTTP proxy port" msgstr "" #: panels/network/network-proxy.ui.h:12 msgid "HTTPS proxy port" msgstr "" #: panels/network/network-proxy.ui.h:13 msgid "FTP proxy port" msgstr "" #: panels/network/network-proxy.ui.h:14 msgid "Socks proxy port" msgstr "" #: panels/network/network-simple.ui.h:8 msgid "Turn device off" msgstr "" #: panels/network/network.ui.h:1 msgid "Add Device" msgstr "" #: panels/network/network.ui.h:2 msgid "Remove Device" msgstr "" #: panels/network/network-vpn.ui.h:1 msgid "VPN Type" msgstr "" #: panels/network/network-vpn.ui.h:3 msgid "Group Name" msgstr "" #: panels/network/network-vpn.ui.h:4 msgid "Group Password" msgstr "" #: panels/network/network-vpn.ui.h:5 msgid "Username" msgstr "" #: panels/network/network-vpn.ui.h:6 msgid "Turn VPN connection off" msgstr "" #: panels/network/network-wifi.ui.h:2 #: panels/network/connection-editor/connection-editor.ui.h:2 msgid "_Apply" msgstr "" #: panels/network/network-wifi.ui.h:3 msgid "Automatic _Connect" msgstr "" #: panels/network/network-wifi.ui.h:4 #: panels/network/connection-editor/details-page.ui.h:1 msgid "Signal Strength" msgstr "" #: panels/network/network-wifi.ui.h:5 #: panels/network/connection-editor/details-page.ui.h:2 msgid "Link speed" msgstr "" #: panels/network/network-wifi.ui.h:14 msgid "details" msgstr "" #: panels/network/network-wifi.ui.h:15 #: panels/network/connection-editor/wifi-page.ui.h:1 msgid "_SSID" msgstr "" #: panels/network/network-wifi.ui.h:16 #: panels/network/connection-editor/wifi-page.ui.h:2 msgid "_BSSID" msgstr "" #: panels/network/network-wifi.ui.h:17 #: panels/network/connection-editor/security-page.ui.h:1 msgid "S_ecurity" msgstr "" #: panels/network/network-wifi.ui.h:18 #: panels/network/wireless-security/eap-method-leap.ui.h:2 #: panels/network/wireless-security/eap-method-simple.ui.h:2 #: panels/network/wireless-security/ws-leap.ui.h:2 #: panels/network/wireless-security/ws-wpa-psk.ui.h:1 msgid "_Password" msgstr "" #: panels/network/network-wifi.ui.h:19 #: panels/network/connection-editor/wifi-page.ui.h:3 msgid "My Home Network" msgstr "" #: panels/network/network-wifi.ui.h:21 msgid "None" msgstr "" #: panels/network/network-wifi.ui.h:22 msgid "Show P_assword" msgstr "" #: panels/network/network-wifi.ui.h:23 msgid "Make available to other users" msgstr "" #: panels/network/network-wifi.ui.h:24 msgid "identity" msgstr "" #: panels/network/network-wifi.ui.h:25 #: panels/network/connection-editor/ip4-page.ui.h:1 msgid "IPv_4" msgstr "" #: panels/network/network-wifi.ui.h:26 #: panels/network/connection-editor/ip4-page.ui.h:2 #: panels/network/connection-editor/ip6-page.ui.h:2 msgid "_Addresses" msgstr "" #: panels/network/network-wifi.ui.h:29 msgid "Automatic (DHCP) addresses only" msgstr "" #: panels/network/network-wifi.ui.h:30 msgid "Link-local only" msgstr "" #: panels/network/network-wifi.ui.h:31 msgid "Shared with other computers" msgstr "" #: panels/network/network-wifi.ui.h:32 panels/wacom/wacom-stylus-page.ui.h:6 msgid "Disabled" msgstr "" #: panels/network/network-wifi.ui.h:33 #: panels/network/connection-editor/ip4-page.ui.h:6 #: panels/network/connection-editor/ip6-page.ui.h:6 msgid "Routes" msgstr "" #: panels/network/network-wifi.ui.h:34 msgid "_Ignore automatically obtained routes" msgstr "" #: panels/network/network-wifi.ui.h:35 #: panels/network/connection-editor/ip4-page.ui.h:8 #: panels/network/connection-editor/ip6-page.ui.h:8 msgid "Use this connection _only for resources on its network" msgstr "" #: panels/network/network-wifi.ui.h:36 msgid "ipv4" msgstr "" #: panels/network/network-wifi.ui.h:37 #: panels/network/connection-editor/ip6-page.ui.h:1 msgid "IPv_6" msgstr "" #: panels/network/network-wifi.ui.h:38 msgid "ipv6" msgstr "" #: panels/network/network-wifi.ui.h:39 #: panels/network/connection-editor/ethernet-page.ui.h:11 #: panels/network/connection-editor/wifi-page.ui.h:4 msgid "_MAC Address" msgstr "" #: panels/network/network-wifi.ui.h:40 msgid "_Cloned MAC Address" msgstr "" #: panels/network/network-wifi.ui.h:41 msgid "hardware" msgstr "" #: panels/network/network-wifi.ui.h:42 #: panels/network/connection-editor/reset-page.ui.h:1 msgid "_Reset" msgstr "" #: panels/network/network-wifi.ui.h:44 msgid "" "Reset the settings for this connection to their defaults, but remember as a " "preferred connection." msgstr "" #: panels/network/network-wifi.ui.h:45 msgid "" "Remove all details relating to this network and do not try to automatically " "connect to it." msgstr "" #: panels/network/network-wifi.ui.h:46 msgid "reset" msgstr "" #: panels/network/network-wifi.ui.h:51 msgid "Hardware" msgstr "" #: panels/network/network-wifi.ui.h:52 msgctxt "tab" msgid "Reset" msgstr "" #: panels/network/network-wifi.ui.h:53 msgid "Wi-Fi Hotspot" msgstr "" #: panels/network/network-wifi.ui.h:54 msgid "_Turn On" msgstr "" #: panels/network/network-wifi.ui.h:55 msgid "Wi-Fi" msgstr "" #: panels/network/network-wifi.ui.h:56 msgid "Turn Wi-Fi off" msgstr "" #: panels/network/network-wifi.ui.h:57 msgid "_Use as Hotspot…" msgstr "" #: panels/network/network-wifi.ui.h:58 msgid "_Connect to Hidden Network…" msgstr "" #: panels/network/network-wifi.ui.h:59 msgid "_History" msgstr "" #: panels/network/network-wifi.ui.h:60 msgid "Switch off to connect to a Wi-Fi network" msgstr "" #: panels/network/network-wifi.ui.h:61 msgid "Network Name" msgstr "" #: panels/network/network-wifi.ui.h:62 msgid "Connected Devices" msgstr "" #: panels/network/network-wifi.ui.h:63 msgid "Security type" msgstr "" #: panels/network/network-wifi.ui.h:64 msgid "Password" msgstr "" #: panels/region/cinnamon-region-panel-layout-chooser.ui.h:1 msgid "Choose a Layout" msgstr "" #: panels/region/cinnamon-region-panel-layout-chooser.ui.h:2 msgid "Preview" msgstr "" #: panels/region/cinnamon-region-panel-layout-chooser.ui.h:3 msgid "Select an input source to add" msgstr "" #: panels/region/cinnamon-region-panel-options-dialog.ui.h:1 msgid "Keyboard Layout Options" msgstr "" #: panels/region/cinnamon-region-panel.ui.h:1 msgid "Region and Language" msgstr "" #: panels/region/cinnamon-region-panel.ui.h:2 msgid "Add Layout" msgstr "" #: panels/region/cinnamon-region-panel.ui.h:3 msgid "Remove Layout" msgstr "" #: panels/region/cinnamon-region-panel.ui.h:4 msgid "Move Up" msgstr "" #: panels/region/cinnamon-region-panel.ui.h:5 msgid "Move Down" msgstr "" #: panels/region/cinnamon-region-panel.ui.h:6 msgid "Preview Layout" msgstr "" #: panels/region/cinnamon-region-panel.ui.h:7 msgid "Include less-common layouts in the selection list" msgstr "" #: panels/region/cinnamon-region-panel.ui.h:8 msgid "Use the same layout for all windows" msgstr "" #: panels/region/cinnamon-region-panel.ui.h:9 msgid "Allow different layouts for individual windows" msgstr "" #: panels/region/cinnamon-region-panel.ui.h:10 msgid "New windows use the default layout" msgstr "" #: panels/region/cinnamon-region-panel.ui.h:11 msgid "New windows use the previous window's layout" msgstr "" #: panels/region/cinnamon-region-panel.ui.h:12 msgid "Display options" msgstr "" #: panels/region/cinnamon-region-panel.ui.h:13 msgid "Use a country flag, if available, to represent keyboard layouts" msgstr "" #: panels/region/cinnamon-region-panel.ui.h:14 msgid "" "Show the layout name instead of the group name when using text to represent " "a layout" msgstr "" #: panels/region/cinnamon-region-panel.ui.h:15 msgid "Prefer upper-case when using text to represent a layout" msgstr "" #: panels/region/cinnamon-region-panel.ui.h:16 msgid "_Options..." msgstr "" #: panels/region/cinnamon-region-panel.ui.h:17 msgid "View and edit keyboard layout options" msgstr "" #: panels/region/cinnamon-region-panel.ui.h:18 msgid "Reset to De_faults" msgstr "" #: panels/region/cinnamon-region-panel.ui.h:19 msgid "" "Replace the current keyboard layout settings with the\n" "default settings" msgstr "" #: panels/wacom/button-mapping.ui.h:1 msgid "Map Buttons" msgstr "" #: panels/wacom/button-mapping.ui.h:3 msgid "Map buttons to functions" msgstr "" #: panels/wacom/button-mapping.ui.h:4 msgid "" "To edit a shortcut, choose the ā€œSend Keystrokeā€ action, press the keyboard " "shortcut button and hold down the new keys or press Backspace to clear." msgstr "" #: panels/wacom/cinnamon-wacom-properties.ui.h:1 msgid "No tablet detected" msgstr "" #: panels/wacom/cinnamon-wacom-properties.ui.h:2 msgid "Please plug in or turn on your Wacom tablet" msgstr "" #: panels/wacom/cinnamon-wacom-properties.ui.h:3 msgid "Bluetooth Settings" msgstr "" #: panels/wacom/cinnamon-wacom-properties.ui.h:4 msgid "Wacom Tablet" msgstr "" #: panels/wacom/cinnamon-wacom-properties.ui.h:5 msgid "Tracking Mode" msgstr "" #: panels/wacom/cinnamon-wacom-properties.ui.h:6 msgid "Left-Handed Orientation" msgstr "" #: panels/wacom/cinnamon-wacom-properties.ui.h:7 msgid "Map to Monitor…" msgstr "" #: panels/wacom/cinnamon-wacom-properties.ui.h:8 msgid "Map Buttons…" msgstr "" #: panels/wacom/cinnamon-wacom-properties.ui.h:9 msgid "Calibrate…" msgstr "" #: panels/wacom/cinnamon-wacom-properties.ui.h:10 msgid "Adjust mouse settings" msgstr "" #: panels/wacom/cinnamon-wacom-properties.ui.h:11 msgid "Adjust display resolution" msgstr "" #: panels/wacom/cinnamon-wacom-properties.ui.h:12 msgid "Decouple Display" msgstr "" #: panels/wacom/cinnamon-wacom-properties.ui.h:13 msgid "Tablet (absolute)" msgstr "" #: panels/wacom/cinnamon-wacom-properties.ui.h:14 msgid "Touchpad (relative)" msgstr "" #: panels/wacom/wacom-stylus-page.ui.h:2 msgid "Middle Mouse Button Click" msgstr "" #: panels/wacom/wacom-stylus-page.ui.h:3 msgid "Right Mouse Button Click" msgstr "" #: panels/wacom/wacom-stylus-page.ui.h:4 msgid "Back" msgstr "" #: panels/wacom/wacom-stylus-page.ui.h:5 msgid "Forward" msgstr "" #: panels/wacom/wacom-stylus-page.ui.h:7 msgid "No stylus found" msgstr "" #: panels/wacom/wacom-stylus-page.ui.h:8 msgid "Please move your stylus to the proximity of the tablet to configure it" msgstr "" #: panels/wacom/wacom-stylus-page.ui.h:10 msgid "Eraser Pressure Feel" msgstr "" #: panels/wacom/wacom-stylus-page.ui.h:11 msgid "Soft" msgstr "" #: panels/wacom/wacom-stylus-page.ui.h:12 msgid "Firm" msgstr "" #: panels/wacom/wacom-stylus-page.ui.h:13 msgid "Top Button" msgstr "" #: panels/wacom/wacom-stylus-page.ui.h:14 msgid "Lower Button" msgstr "" #: panels/wacom/wacom-stylus-page.ui.h:15 msgid "Lowest Button" msgstr "" #: panels/wacom/wacom-stylus-page.ui.h:16 msgid "Tip Pressure Feel" msgstr "" #: panels/wacom/wacom-stylus-page.ui.h:17 msgid "Test Your _Settings" msgstr "" #: panels/network/connection-editor/8021x-security-page.ui.h:1 msgid "802.1x _Security" msgstr "" #: panels/network/connection-editor/8021x-security-page.ui.h:2 #: panels/network/connection-editor/security-page.ui.h:3 msgid "page 1" msgstr "" #: panels/network/connection-editor/8021x-security-page.ui.h:3 #: panels/network/connection-editor/security-page.ui.h:4 #: panels/network/wireless-security/eap-method-fast.ui.h:5 #: panels/network/wireless-security/eap-method-peap.ui.h:5 #: panels/network/wireless-security/eap-method-ttls.ui.h:2 msgid "Anony_mous identity" msgstr "" #: panels/network/connection-editor/8021x-security-page.ui.h:4 #: panels/network/connection-editor/security-page.ui.h:5 msgid "Inner _authentication" msgstr "" #: panels/network/connection-editor/8021x-security-page.ui.h:5 #: panels/network/connection-editor/security-page.ui.h:6 msgid "page 2" msgstr "" #: panels/network/connection-editor/details-page.ui.h:10 msgid "Last Used" msgstr "" #: panels/network/connection-editor/ethernet-page.ui.h:2 msgid "Twisted Pair (TP)" msgstr "" #: panels/network/connection-editor/ethernet-page.ui.h:3 msgid "Attachment Unit Interface (AUI)" msgstr "" #: panels/network/connection-editor/ethernet-page.ui.h:4 msgid "BNC" msgstr "" #: panels/network/connection-editor/ethernet-page.ui.h:5 msgid "Media Independent Interface (MII)" msgstr "" #: panels/network/connection-editor/ethernet-page.ui.h:6 msgid "10 Mb/s" msgstr "" #: panels/network/connection-editor/ethernet-page.ui.h:7 msgid "100 Mb/s" msgstr "" #: panels/network/connection-editor/ethernet-page.ui.h:8 msgid "1 Gb/s" msgstr "" #: panels/network/connection-editor/ethernet-page.ui.h:9 msgid "10 Gb/s" msgstr "" #: panels/network/connection-editor/ethernet-page.ui.h:10 #: panels/network/connection-editor/vpn-page.ui.h:1 msgid "_Name" msgstr "" #: panels/network/connection-editor/ethernet-page.ui.h:12 msgid "M_TU" msgstr "" #: panels/network/connection-editor/ethernet-page.ui.h:13 #: panels/network/connection-editor/wifi-page.ui.h:5 msgid "_Cloned Address" msgstr "" #: panels/network/connection-editor/ethernet-page.ui.h:14 msgid "bytes" msgstr "" #: panels/network/connection-editor/ethernet-page.ui.h:15 #: panels/network/connection-editor/vpn-page.ui.h:3 msgid "Make available to other _users" msgstr "" #: panels/network/connection-editor/ethernet-page.ui.h:16 #: panels/network/connection-editor/wifi-page.ui.h:7 msgid "Connect _automatically" msgstr "" #: panels/network/connection-editor/ethernet-page.ui.h:17 #: panels/network/connection-editor/security-page.ui.h:2 #: panels/network/connection-editor/vpn-page.ui.h:2 msgid "Firewall _Zone" msgstr "" #: panels/network/connection-editor/ip4-page.ui.h:5 #: panels/network/connection-editor/ip6-page.ui.h:5 msgid "Automatic DNS" msgstr "" #: panels/network/connection-editor/ip4-page.ui.h:7 #: panels/network/connection-editor/ip6-page.ui.h:7 msgid "Automatic Routes" msgstr "" #: panels/network/connection-editor/reset-page.ui.h:3 msgid "" "Reset the settings for this network, including passwords, but remember it as " "a preferred network" msgstr "" #: panels/network/connection-editor/reset-page.ui.h:4 msgid "" "Remove all details relating to this network and do not try to automatically " "connect" msgstr "" #: panels/network/connection-editor/vpn-page.ui.h:4 msgid "(Error: unable to load VPN connection editor)" msgstr "" #: panels/network/connection-editor/wifi-page.ui.h:6 msgid "Make available to _other users" msgstr "" #: panels/network/wireless-security/eap-method-fast.ui.h:1 #: panels/network/wireless-security/eap-method-peap.ui.h:1 #: panels/network/wireless-security/eap-method-ttls.ui.h:1 #: panels/network/wireless-security/ws-dynamic-wep.ui.h:1 #: panels/network/wireless-security/ws-wpa-eap.ui.h:1 msgid " " msgstr "" #: panels/network/wireless-security/eap-method-fast.ui.h:2 msgid "Anonymous" msgstr "" #: panels/network/wireless-security/eap-method-fast.ui.h:3 msgid "Authenticated" msgstr "" #: panels/network/wireless-security/eap-method-fast.ui.h:4 msgid "Both" msgstr "" #: panels/network/wireless-security/eap-method-fast.ui.h:6 msgid "PAC _file" msgstr "" #: panels/network/wireless-security/eap-method-fast.ui.h:7 #: panels/network/wireless-security/eap-method-peap.ui.h:8 #: panels/network/wireless-security/eap-method-ttls.ui.h:5 msgid "_Inner authentication" msgstr "" #: panels/network/wireless-security/eap-method-fast.ui.h:8 msgid "Allow automatic PAC pro_visioning" msgstr "" #: panels/network/wireless-security/eap-method-leap.ui.h:1 #: panels/network/wireless-security/eap-method-simple.ui.h:1 #: panels/network/wireless-security/ws-leap.ui.h:1 msgid "_Username" msgstr "" #: panels/network/wireless-security/eap-method-leap.ui.h:3 #: panels/network/wireless-security/eap-method-simple.ui.h:3 #: panels/network/wireless-security/eap-method-tls.ui.h:7 #: panels/network/wireless-security/ws-leap.ui.h:3 #: panels/network/wireless-security/ws-wpa-psk.ui.h:3 msgid "Sho_w password" msgstr "" #: panels/network/wireless-security/eap-method-peap.ui.h:3 msgid "Version 0" msgstr "" #: panels/network/wireless-security/eap-method-peap.ui.h:4 msgid "Version 1" msgstr "" #: panels/network/wireless-security/eap-method-peap.ui.h:6 #: panels/network/wireless-security/eap-method-tls.ui.h:3 #: panels/network/wireless-security/eap-method-ttls.ui.h:3 msgid "C_A certificate" msgstr "" #: panels/network/wireless-security/eap-method-peap.ui.h:7 #: panels/network/wireless-security/eap-method-tls.ui.h:4 #: panels/network/wireless-security/eap-method-ttls.ui.h:4 msgid "No CA certificate is _required" msgstr "" #: panels/network/wireless-security/eap-method-peap.ui.h:9 msgid "PEAP _version" msgstr "" #: panels/network/wireless-security/eap-method-tls.ui.h:1 msgid "I_dentity" msgstr "" #: panels/network/wireless-security/eap-method-tls.ui.h:2 msgid "_User certificate" msgstr "" #: panels/network/wireless-security/eap-method-tls.ui.h:5 msgid "Private _key" msgstr "" #: panels/network/wireless-security/eap-method-tls.ui.h:6 msgid "_Private key password" msgstr "" #: panels/network/wireless-security/ws-dynamic-wep.ui.h:2 #: panels/network/wireless-security/ws-wep-key.ui.h:9 #: panels/network/wireless-security/ws-wpa-eap.ui.h:2 msgid "Au_thentication" msgstr "" #: panels/network/wireless-security/ws-wep-key.ui.h:1 msgid "1 (Default)" msgstr "" #: panels/network/wireless-security/ws-wep-key.ui.h:2 msgid "2" msgstr "" #: panels/network/wireless-security/ws-wep-key.ui.h:3 msgid "3" msgstr "" #: panels/network/wireless-security/ws-wep-key.ui.h:4 msgid "4" msgstr "" #: panels/network/wireless-security/ws-wep-key.ui.h:5 msgid "Open System" msgstr "" #: panels/network/wireless-security/ws-wep-key.ui.h:6 msgid "Shared Key" msgstr "" #: panels/network/wireless-security/ws-wep-key.ui.h:7 msgid "_Key" msgstr "" #: panels/network/wireless-security/ws-wep-key.ui.h:8 msgid "Sho_w key" msgstr "" #: panels/network/wireless-security/ws-wep-key.ui.h:10 msgid "WEP inde_x" msgstr "" #: panels/network/wireless-security/ws-wpa-psk.ui.h:2 msgid "_Type" msgstr "" #: panels/wacom/calibrator/calibrator.ui.h:1 msgid "Screen Calibration" msgstr "" #: panels/wacom/calibrator/calibrator.ui.h:2 msgid "" "Please tap the target markers as they appear on screen to calibrate the " "tablet." msgstr "" #: panels/wacom/calibrator/calibrator.ui.h:3 msgid "Mis-click detected, restarting…" msgstr "" #: generate_additional_files.py:23 msgid "Color management settings" msgstr "" #: generate_additional_files.py:23 msgid "Color, ICC, Profile, Calibrate, Printer, Display" msgstr "" #: generate_additional_files.py:37 msgid "Region & Language" msgstr "" #: generate_additional_files.py:37 msgid "Change your region and language settings" msgstr "" #: generate_additional_files.py:50 msgid "Display" msgstr "" #: generate_additional_files.py:50 msgid "Change resolution and position of monitors and projectors" msgstr "" #: generate_additional_files.py:50 msgid "Panel, Projector, xrandr, Screen, Resolution, Refresh" msgstr "" #: generate_additional_files.py:63 msgid "Network settings" msgstr "" #: generate_additional_files.py:63 msgid "Network, Wireless, IP, LAN, Proxy, Internet, WiFi" msgstr "" #: generate_additional_files.py:76 msgid "Graphics Tablet" msgstr "" #: generate_additional_files.py:76 msgid "Set button mappings and adjust stylus sensitivity for graphics tablets" msgstr "" #: generate_additional_files.py:76 msgid "Tablet, Wacom, Stylus, Eraser, Mouse" msgstr "" cinnamon-control-center-6.2.0/panels/0000775000175000017500000000000014632072346016472 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/meson.build0000664000175000017500000000027314632072346020636 0ustar fabiofabio if colord.found() subdir('color') endif subdir('common') subdir('display') if libnm.found() subdir('network') endif subdir('region') if libwacom.found() subdir('wacom') endif cinnamon-control-center-6.2.0/panels/datetime/0000775000175000017500000000000014632072346020266 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/datetime/meson.build0000664000175000017500000000413614632072346022434 0ustar fabiofabio subdir('icons') subdir('po-timezones') # Datetime data install_subdir('data', install_dir: get_option('datadir') / meson.project_name() / 'ui' / 'datetime', strip_directory: true, ) install_data('datetime.ui', install_dir: get_option('datadir') / meson.project_name() / 'ui' / 'datetime', ) install_data('backward', install_dir: get_option('datadir') / meson.project_name() / 'datetime', ) i18n.merge_file( input : 'org.cinnamon.controlcenter.datetime.policy.in', output: 'org.cinnamon.controlcenter.datetime.policy', po_dir: po_dir, install: true, install_dir: get_option('datadir') / 'polkit-1' / 'actions', ) datetime_codegen = [ gnome.gdbus_codegen('cc-dtm-proxy', 'timedated1-interface.xml', annotations: [ 'org.freedesktop.timedate1', 'org.gtk.GDBus.C.Name', 'Dtm' ], namespace: 'CC' ), gnome.gdbus_codegen('cc-csddtm-proxy', 'csd-dtm-interface.xml', annotations: [ 'org.cinnamon.SettingsDaemon.DateTimeMechanism', 'org.gtk.GDBus.C.Name', 'Csddtm' ], namespace: 'CC' ), ] panel_datetime = shared_library('date_time', 'cc-datetime-panel.c', 'cc-timezone-map.c', 'date-endian.c', 'datetime-module.c', 'tz.c', datetime_codegen, include_directories: rootInclude, link_with: [ libcinnamon_control_center, ], dependencies: [ glib, gtk, cinn_desktop, polkit_gobj, math, ], install: true, install_dir: panels_dir ) test('timezone-gfx', executable('test-timezone-gfx', 'test-timezone-gfx.c', 'cc-timezone-map.c', 'tz.c', include_directories: rootInclude, link_with: panel_datetime, dependencies: [ gtk, math, ], ) ) test('endianess', executable('test-endianess', 'test-endianess.c', 'tz.c', include_directories: rootInclude, link_with: panel_datetime, dependencies: [ glib, math, ], ) ) test('timezone', executable('test-timezone', 'test-timezone.c', 'date-endian.c', include_directories: rootInclude, link_with: panel_datetime, dependencies: [ glib, gtk, ], ) ) cinnamon-control-center-6.2.0/panels/datetime/cc-datetime-panel.c0000664000175000017500000010523114632072346023710 0ustar fabiofabio/* * Copyright (C) 2010 Intel, Inc * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA 02110-1335, USA. * * Author: Thomas Wood * */ #include "config.h" #include "cc-datetime-panel.h" #include #include "cc-timezone-map.h" #include "cc-dtm-proxy.h" #include "cc-csddtm-proxy.h" #include "date-endian.h" #define GNOME_DESKTOP_USE_UNSTABLE_API #include #include #include #include #include #include /* FIXME: This should be "Etc/GMT" instead */ #define DEFAULT_TZ "Europe/London" #define GETTEXT_PACKAGE_TIMEZONES GETTEXT_PACKAGE "-timezones" CC_PANEL_REGISTER (CcDateTimePanel, cc_date_time_panel) #define DATE_TIME_PANEL_PRIVATE(o) \ (G_TYPE_INSTANCE_GET_PRIVATE ((o), CC_TYPE_DATE_TIME_PANEL, CcDateTimePanelPrivate)) enum { CITY_COL_CITY, CITY_COL_REGION, CITY_COL_CITY_TRANSLATED, CITY_COL_REGION_TRANSLATED, CITY_COL_ZONE, CITY_NUM_COLS }; enum { REGION_COL_REGION, REGION_COL_REGION_TRANSLATED, REGION_NUM_COLS }; #define W(x) (GtkWidget*) gtk_builder_get_object (priv->builder, x) #define CLOCK_SCHEMA "org.cinnamon.desktop.interface" #define CLOCK_USE_24H "clock-use-24h" struct _CcDateTimePanelPrivate { GtkBuilder *builder; GtkWidget *map; GtkWidget *lock_button; TzLocation *current_location; GtkTreeModel *locations; GtkTreeModelFilter *city_filter; GDateTime *date; gboolean clock_blocked; GSettings *settings; gboolean clock_use_24h; GnomeWallClock *clock_tracker; CCDtm *dtm; CCCsddtm *csddtm; gboolean use_systemd; GCancellable *cancellable; GPermission *permission; guint set_date_time_delay_id; }; static void update_time (CcDateTimePanel *self); static void on_clock_changed (GnomeWallClock *clock, GParamSpec *pspec, CcDateTimePanel *panel); static void cc_date_time_panel_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) { switch (property_id) { default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } } static void cc_date_time_panel_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) { switch (property_id) { default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } } static void cc_date_time_panel_dispose (GObject *object) { CcDateTimePanelPrivate *priv = CC_DATE_TIME_PANEL (object)->priv; if (priv->clock_tracker != NULL) { g_object_unref (priv->clock_tracker); priv->clock_tracker = NULL; } if (priv->builder) { g_object_unref (priv->builder); priv->builder = NULL; } if (priv->settings) { g_object_unref (priv->settings); priv->settings = NULL; } if (priv->date) { g_date_time_unref (priv->date); priv->date = NULL; } if (priv->cancellable) { g_cancellable_cancel (priv->cancellable); g_object_unref (priv->cancellable); priv->cancellable = NULL; } if (priv->dtm) { g_object_unref (priv->dtm); priv->dtm = NULL; } if (priv->permission) { g_object_unref (priv->permission); priv->permission = NULL; } G_OBJECT_CLASS (cc_date_time_panel_parent_class)->dispose (object); } static GPermission * cc_date_time_panel_get_permission (CcPanel *panel) { CcDateTimePanelPrivate *priv = CC_DATE_TIME_PANEL (panel)->priv; return priv->permission; } static const char * cc_date_time_panel_get_help_uri (CcPanel *panel) { if (!g_strcmp0(g_getenv("XDG_CURRENT_DESKTOP"), "Unity")) return "help:ubuntu-help/clock"; else return "help:gnome-help/clock"; } static void cc_date_time_panel_class_init (CcDateTimePanelClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); CcPanelClass *panel_class = CC_PANEL_CLASS (klass); g_type_class_add_private (klass, sizeof (CcDateTimePanelPrivate)); object_class->get_property = cc_date_time_panel_get_property; object_class->set_property = cc_date_time_panel_set_property; object_class->dispose = cc_date_time_panel_dispose; panel_class->get_permission = cc_date_time_panel_get_permission; panel_class->get_help_uri = cc_date_time_panel_get_help_uri; } static void clock_settings_changed_cb (GSettings *settings, gchar *key, CcDateTimePanel *panel); static void clock_settings_changed_cb (GSettings *settings, gchar *key, CcDateTimePanel *panel) { CcDateTimePanelPrivate *priv = panel->priv; gboolean value; value = g_settings_get_boolean (settings, CLOCK_USE_24H); priv->clock_use_24h = value; g_signal_handlers_block_by_func (settings, clock_settings_changed_cb, panel); update_time (panel); g_signal_handlers_unblock_by_func (settings, clock_settings_changed_cb, panel); } static void update_time (CcDateTimePanel *self) { CcDateTimePanelPrivate *priv = self->priv; char *label; if (priv->clock_use_24h) { /* Update the hours label */ label = g_date_time_format (priv->date, "%H"); gtk_label_set_text (GTK_LABEL (W("hours_label")), label); g_free (label); } else { /* Update the hours label */ label = g_date_time_format (priv->date, "%I"); gtk_label_set_text (GTK_LABEL (W("hours_label")), label); g_free (label); } /* Update the minutes label */ label = g_date_time_format (priv->date, "%M"); gtk_label_set_text (GTK_LABEL (W("minutes_label")), label); g_free (label); } static void set_time_cb (GObject *source, GAsyncResult *res, gpointer user_data) { CcDateTimePanel *self = user_data; GError *error; gboolean success; error = NULL; if (self->priv->use_systemd) { success = cc_dtm_call_set_time_finish (self->priv->dtm, res, &error); } else { success = cc_csddtm_call_set_time_finish (self->priv->csddtm, res, &error); } if (success) { update_time (self); } else { /* TODO: display any error in a user friendly way */ g_warning ("Could not set system time: %s", error->message); g_error_free (error); } } static void set_timezone_cb (GObject *source, GAsyncResult *res, gpointer user_data) { CcDateTimePanel *self = user_data; GError *error; gboolean success; error = NULL; if (self->priv->use_systemd) { success = cc_dtm_call_set_timezone_finish (self->priv->dtm, res, &error); } else { success = cc_csddtm_call_set_timezone_finish (self->priv->csddtm, res, &error); } if (!success) { /* TODO: display any error in a user friendly way */ g_warning ("Could not set system timezone: %s", error->message); g_error_free (error); } } static void set_using_ntp_cb (GObject *source, GAsyncResult *res, gpointer user_data) { CcDateTimePanel *self = user_data; GError *error; gboolean success; error = NULL; if (self->priv->use_systemd) { success = cc_dtm_call_set_ntp_finish (self->priv->dtm, res, &error); } else { success = cc_csddtm_call_set_using_ntp_finish (self->priv->csddtm, res, &error); } if (!success) { /* TODO: display any error in a user friendly way */ g_warning ("Could not set system to use NTP: %s", error->message); g_error_free (error); } } static gboolean set_date_time_cb (CcDateTimePanel *panel) { gint64 unixtime; CcDateTimePanelPrivate *priv = panel->priv; unixtime = g_date_time_to_unix (priv->date); if (priv->use_systemd) { cc_dtm_call_set_time (priv->dtm, unixtime * 1000000, FALSE, TRUE, priv->cancellable, set_time_cb, panel); } else { cc_csddtm_call_set_time (priv->csddtm, unixtime, priv->cancellable, set_time_cb, panel); } if (priv->clock_blocked) { g_signal_handlers_unblock_by_func (priv->clock_tracker, on_clock_changed, panel); priv->clock_blocked = FALSE; } priv->set_date_time_delay_id = 0; return FALSE; } static void queue_set_datetime (CcDateTimePanel *self) { CcDateTimePanelPrivate *priv = self->priv; if (priv->set_date_time_delay_id > 0) { g_source_remove (priv->set_date_time_delay_id); priv->set_date_time_delay_id = 0; } if (!priv->clock_blocked) { g_signal_handlers_block_by_func (priv->clock_tracker, on_clock_changed, self); priv->clock_blocked = TRUE; } priv->set_date_time_delay_id = g_timeout_add (1000, (GSourceFunc)set_date_time_cb, self); } static void queue_set_ntp (CcDateTimePanel *self) { CcDateTimePanelPrivate *priv = self->priv; gboolean using_ntp; /* for now just do it */ using_ntp = gtk_switch_get_active (GTK_SWITCH (W("network_time_switch"))); if (self->priv->use_systemd) { cc_dtm_call_set_ntp (self->priv->dtm, using_ntp, TRUE, self->priv->cancellable, set_using_ntp_cb, self); } else { cc_csddtm_call_set_using_ntp (self->priv->csddtm, using_ntp, self->priv->cancellable, set_using_ntp_cb, self); } } static void queue_set_timezone (CcDateTimePanel *self) { /* for now just do it */ if (self->priv->current_location) { if (self->priv->use_systemd) { cc_dtm_call_set_timezone (self->priv->dtm, self->priv->current_location->zone, TRUE, self->priv->cancellable, set_timezone_cb, self); } else { cc_csddtm_call_set_timezone (self->priv->csddtm, self->priv->current_location->zone, self->priv->cancellable, set_timezone_cb, self); } } } static void change_date (CcDateTimePanel *self) { CcDateTimePanelPrivate *priv = self->priv; guint mon, y, d; GDateTime *old_date; old_date = priv->date; mon = 1 + gtk_combo_box_get_active (GTK_COMBO_BOX (W ("month-combobox"))); y = gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON (W ("year-spinbutton"))); d = gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON (W ("day-spinbutton"))); priv->date = g_date_time_new_local (y, mon, d, g_date_time_get_hour (old_date), g_date_time_get_minute (old_date), g_date_time_get_second (old_date)); g_date_time_unref (old_date); queue_set_datetime (self); } static void region_changed_cb (GtkComboBox *box, CcDateTimePanel *self) { GtkTreeModelFilter *modelfilter; modelfilter = GTK_TREE_MODEL_FILTER (gtk_builder_get_object (self->priv->builder, "city-modelfilter")); gtk_tree_model_filter_refilter (modelfilter); } static void city_changed_cb (GtkComboBox *box, CcDateTimePanel *self) { static gboolean inside = FALSE; GtkTreeIter iter; gchar *zone; /* prevent re-entry from location changed callback */ if (inside) return; inside = TRUE; if (gtk_combo_box_get_active_iter (box, &iter)) { gtk_tree_model_get (gtk_combo_box_get_model (box), &iter, CITY_COL_ZONE, &zone, -1); cc_timezone_map_set_timezone (CC_TIMEZONE_MAP (self->priv->map), zone); g_free (zone); } inside = FALSE; } static void update_timezone (CcDateTimePanel *self) { CcDateTimePanelPrivate *priv = self->priv; GtkWidget *widget; gchar **split; GtkTreeIter iter; GtkTreeModel *model; /* tz.c updates the local timezone, which means the spin buttons can be * updated with the current time of the new location */ split = g_strsplit (priv->current_location->zone, "/", 2); /* remove underscores */ g_strdelimit (split[1], "_", ' '); /* update region combo */ widget = (GtkWidget *) gtk_builder_get_object (priv->builder, "region_combobox"); model = gtk_combo_box_get_model (GTK_COMBO_BOX (widget)); gtk_tree_model_get_iter_first (model, &iter); do { gchar *string; gtk_tree_model_get (model, &iter, CITY_COL_CITY, &string, -1); if (!g_strcmp0 (string, split[0])) { g_free (string); gtk_combo_box_set_active_iter (GTK_COMBO_BOX (widget), &iter); break; } g_free (string); } while (gtk_tree_model_iter_next (model, &iter)); /* update city combo */ widget = (GtkWidget *) gtk_builder_get_object (priv->builder, "city_combobox"); model = gtk_combo_box_get_model (GTK_COMBO_BOX (widget)); gtk_tree_model_filter_refilter ((GtkTreeModelFilter *) gtk_builder_get_object (priv->builder, "city-modelfilter")); gtk_tree_model_get_iter_first (model, &iter); do { gchar *string; gtk_tree_model_get (model, &iter, CITY_COL_CITY, &string, -1); if (!g_strcmp0 (string, split[1])) { g_free (string); gtk_combo_box_set_active_iter (GTK_COMBO_BOX (widget), &iter); break; } g_free (string); } while (gtk_tree_model_iter_next (model, &iter)); g_strfreev (split); } static void location_changed_cb (CcTimezoneMap *map, TzLocation *location, CcDateTimePanel *self) { CcDateTimePanelPrivate *priv = self->priv; GtkWidget *region_combo, *city_combo; g_debug ("location changed to %s/%s", location->country, location->zone); self->priv->current_location = location; /* Update the combo boxes */ region_combo = W("region_combobox"); city_combo = W("city_combobox"); g_signal_handlers_block_by_func (region_combo, region_changed_cb, self); g_signal_handlers_block_by_func (city_combo, city_changed_cb, self); update_timezone (self); g_signal_handlers_unblock_by_func (region_combo, region_changed_cb, self); g_signal_handlers_unblock_by_func (city_combo, city_changed_cb, self); queue_set_timezone (self); } static void get_timezone (CcDateTimePanel *self) { GtkWidget *widget; gchar *timezone; GError *error; error = NULL; if (self->priv->use_systemd) { timezone = cc_dtm_dup_timezone (self->priv->dtm); } else { cc_csddtm_call_get_timezone_sync (self->priv->csddtm, &timezone, NULL, &error); } if (error != NULL || timezone == NULL || !cc_timezone_map_set_timezone (CC_TIMEZONE_MAP (self->priv->map), timezone)) { if (error) { g_warning ("Problem getting the current timezone: %s", error->message); g_error_free (error); } g_warning ("Timezone '%s' is unhandled, setting %s as default", timezone, DEFAULT_TZ); cc_timezone_map_set_timezone (CC_TIMEZONE_MAP (self->priv->map), DEFAULT_TZ); } self->priv->current_location = cc_timezone_map_get_location (CC_TIMEZONE_MAP (self->priv->map)); update_timezone (self); /* now that the initial state is loaded set connect the signals */ widget = (GtkWidget*) gtk_builder_get_object (self->priv->builder, "region_combobox"); g_signal_connect (widget, "changed", G_CALLBACK (region_changed_cb), self); widget = (GtkWidget*) gtk_builder_get_object (self->priv->builder, "city_combobox"); g_signal_connect (widget, "changed", G_CALLBACK (city_changed_cb), self); g_signal_connect (self->priv->map, "location-changed", G_CALLBACK (location_changed_cb), self); g_free (timezone); } /* load region and city tree models */ struct get_region_data { GtkListStore *region_store; GtkListStore *city_store; GHashTable *table; }; /* Slash look-alikes that might be used in translations */ #define TRANSLATION_SPLIT \ "\342\201\204" /* FRACTION SLASH */ \ "\342\210\225" /* DIVISION SLASH */ \ "\342\247\270" /* BIG SOLIDUS */ \ "\357\274\217" /* FULLWIDTH SOLIDUS */ \ "/" static void get_regions (TzLocation *loc, struct get_region_data *data) { gchar *zone; gchar **split; gchar **split_translated; gchar *translated_city; zone = g_strdup (loc->zone); g_strdelimit (zone, "_", ' '); split = g_strsplit (zone, "/", 2); g_free (zone); /* Load the translation for it */ zone = g_strdup (dgettext (GETTEXT_PACKAGE_TIMEZONES, loc->zone)); g_strdelimit (zone, "_", ' '); split_translated = g_regex_split_simple ("[\\x{2044}\\x{2215}\\x{29f8}\\x{ff0f}/]", zone, 0, 0); g_free (zone); if (!g_hash_table_lookup_extended (data->table, split[0], NULL, NULL)) { g_hash_table_insert (data->table, g_strdup (split[0]), GINT_TO_POINTER (1)); gtk_list_store_insert_with_values (data->region_store, NULL, 0, REGION_COL_REGION, split[0], REGION_COL_REGION_TRANSLATED, split_translated[0], -1); } /* g_regex_split_simple() splits too much for us, and would break * America/Argentina/Buenos_Aires into 3 strings, so rejoin the city part */ translated_city = g_strjoinv ("/", split_translated + 1); gtk_list_store_insert_with_values (data->city_store, NULL, 0, CITY_COL_CITY, split[1], CITY_COL_CITY_TRANSLATED, translated_city, CITY_COL_REGION, split[0], CITY_COL_REGION_TRANSLATED, split_translated[0], CITY_COL_ZONE, loc->zone, -1); g_free (translated_city); g_strfreev (split); g_strfreev (split_translated); } static gboolean city_model_filter_func (GtkTreeModel *model, GtkTreeIter *iter, GtkComboBox *combo) { GtkTreeModel *combo_model; GtkTreeIter combo_iter; gchar *active_region = NULL; gchar *city_region = NULL; gboolean result; if (gtk_combo_box_get_active_iter (combo, &combo_iter) == FALSE) return FALSE; combo_model = gtk_combo_box_get_model (combo); gtk_tree_model_get (combo_model, &combo_iter, CITY_COL_CITY, &active_region, -1); gtk_tree_model_get (model, iter, CITY_COL_REGION, &city_region, -1); if (g_strcmp0 (active_region, city_region) == 0) result = TRUE; else result = FALSE; g_free (city_region); g_free (active_region); return result; } static void load_regions_model (GtkListStore *regions, GtkListStore *cities) { struct get_region_data data; TzDB *db; GHashTable *table; db = tz_load_db (); table = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL); data.table = table; data.region_store = regions; data.city_store = cities; g_ptr_array_foreach (db->locations, (GFunc) get_regions, &data); g_hash_table_destroy (table); tz_db_free (db); /* sort the models */ gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (regions), REGION_COL_REGION_TRANSLATED, GTK_SORT_ASCENDING); } static void update_widget_state_for_ntp (CcDateTimePanel *panel, gboolean using_ntp) { CcDateTimePanelPrivate *priv = panel->priv; gtk_widget_set_sensitive (W("table1"), !using_ntp); gtk_widget_set_sensitive (W("table2"), !using_ntp); } static void day_changed (GtkWidget *widget, CcDateTimePanel *panel) { change_date (panel); } static void month_year_changed (GtkWidget *widget, CcDateTimePanel *panel) { CcDateTimePanelPrivate *priv = panel->priv; guint mon, y; guint num_days; GtkAdjustment *adj; GtkSpinButton *day_spin; mon = 1 + gtk_combo_box_get_active (GTK_COMBO_BOX (W ("month-combobox"))); y = gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON (W ("year-spinbutton"))); /* Check the number of days in that month */ num_days = g_date_get_days_in_month (mon, y); day_spin = GTK_SPIN_BUTTON (W("day-spinbutton")); adj = GTK_ADJUSTMENT (gtk_spin_button_get_adjustment (day_spin)); gtk_adjustment_set_upper (adj, num_days + 1); if (gtk_spin_button_get_value_as_int (day_spin) > num_days) gtk_spin_button_set_value (day_spin, num_days); change_date (panel); } static void on_clock_changed (GnomeWallClock *clock, GParamSpec *pspec, CcDateTimePanel *panel) { CcDateTimePanelPrivate *priv = panel->priv; g_date_time_unref (priv->date); priv->date = g_date_time_new_now_local (); update_time (panel); } static void change_time (GtkButton *button, CcDateTimePanel *panel) { CcDateTimePanelPrivate *priv = panel->priv; const gchar *widget_name; gint direction; GDateTime *old_date; old_date = priv->date; widget_name = gtk_buildable_get_name (GTK_BUILDABLE (button)); if (strstr (widget_name, "up")) direction = 1; else direction = -1; if (widget_name[0] == 'h') { priv->date = g_date_time_add_hours (old_date, direction); } else if (widget_name[0] == 'm') { priv->date = g_date_time_add_minutes (old_date, direction); } else { int hour; hour = g_date_time_get_hour (old_date); if (hour >= 12) priv->date = g_date_time_add_hours (old_date, -12); else priv->date = g_date_time_add_hours (old_date, 12); } g_date_time_unref (old_date); update_time (panel); queue_set_datetime (panel); } static void change_ntp (GObject *gobject, GParamSpec *pspec, CcDateTimePanel *self) { update_widget_state_for_ntp (self, gtk_switch_get_active (GTK_SWITCH (gobject))); queue_set_ntp (self); } static void on_permission_changed (GPermission *permission, GParamSpec *pspec, gpointer data) { CcDateTimePanelPrivate *priv = CC_DATE_TIME_PANEL (data)->priv; gboolean allowed, using_ntp; allowed = g_permission_get_allowed (permission); using_ntp = gtk_switch_get_active (GTK_SWITCH (W("network_time_switch"))); /* All the widgets but the lock button and the 24h setting */ gtk_widget_set_sensitive (W("map-vbox"), allowed); gtk_widget_set_sensitive (W("hbox2"), allowed); gtk_widget_set_sensitive (W("alignment2"), allowed); gtk_widget_set_sensitive (W("table1"), allowed && !using_ntp); } static void reorder_date_widget (DateEndianess endianess, CcDateTimePanelPrivate *priv) { GtkWidget *month, *day, *year; GtkBox *box; if (endianess == DATE_ENDIANESS_MIDDLE) return; month = W ("month-combobox"); day = W ("day-spinbutton"); year = W("year-spinbutton"); box = GTK_BOX (W("table1")); switch (endianess) { case DATE_ENDIANESS_LITTLE: gtk_box_reorder_child (box, month, 0); gtk_box_reorder_child (box, day, 0); gtk_box_reorder_child (box, year, -1); break; case DATE_ENDIANESS_BIG: gtk_box_reorder_child (box, month, 0); gtk_box_reorder_child (box, year, 0); gtk_box_reorder_child (box, day, -1); break; case DATE_ENDIANESS_MIDDLE: /* Let's please GCC */ g_assert_not_reached (); break; } } static void cc_date_time_panel_init (CcDateTimePanel *self) { CcDateTimePanelPrivate *priv; gchar *objects[] = { "datetime-panel", "region-liststore", "city-liststore", "month-liststore", "city-modelfilter", "city-modelsort", NULL }; char *buttons[] = { "hour_up_button", "hour_down_button", "min_up_button", "min_down_button"}; GtkWidget *widget; GtkAdjustment *adjustment; GError *err = NULL; GtkTreeModelFilter *city_modelfilter; GtkTreeModelSort *city_modelsort; guint i, num_days; gboolean using_ntp; gboolean can_use_ntp; int ret; DateEndianess endianess; GError *error; gboolean have_ntpd; priv = self->priv = DATE_TIME_PANEL_PRIVATE (self); priv->set_date_time_delay_id = 0; priv->clock_blocked = FALSE; priv->cancellable = g_cancellable_new (); error = NULL; have_ntpd = g_file_test ("/usr/sbin/ntpd", G_FILE_TEST_EXISTS); if (!have_ntpd) { priv->dtm = cc_dtm_proxy_new_for_bus_sync (G_BUS_TYPE_SYSTEM, G_DBUS_PROXY_FLAGS_NONE, "org.freedesktop.timedate1", "/org/freedesktop/timedate1", priv->cancellable, &error); priv->use_systemd = TRUE; } if (have_ntpd || priv->dtm == NULL) { if (error) { g_warning ("could not get proxy for systemd timedate1 service: %s", error->message); g_clear_error (&error); g_warning ("trying to use csd DateTimeMechanism instead, though network time may be unavailable"); } priv->csddtm = cc_csddtm_proxy_new_for_bus_sync (G_BUS_TYPE_SYSTEM, G_DBUS_PROXY_FLAGS_NONE, "org.cinnamon.SettingsDaemon.DateTimeMechanism", "/", priv->cancellable, &error); if (priv->csddtm == NULL) { g_warning ("could not get proxy for csd DateTimeMechanism: %s", error->message); g_error_free (error); } priv->use_systemd = FALSE; } priv->builder = gtk_builder_new (); ret = gtk_builder_add_objects_from_file (priv->builder, DATADIR"/datetime.ui", objects, &err); if (ret == 0) { g_warning ("Could not load ui: %s", err ? err->message : "No reason"); if (err) g_error_free (err); return; } error = NULL; using_ntp = can_use_ntp = FALSE; if (priv->use_systemd) { using_ntp = cc_dtm_get_ntp (priv->dtm); } else { if (!cc_csddtm_call_get_using_ntp_sync (priv->csddtm, &can_use_ntp, &using_ntp, priv->cancellable, &error)) { g_warning ("Failed to get using ntp: %s", error->message); g_error_free (error); } } gtk_switch_set_active (GTK_SWITCH (W("network_time_switch")), using_ntp); update_widget_state_for_ntp (self, using_ntp); g_signal_connect (W("network_time_switch"), "notify::active", G_CALLBACK (change_ntp), self); /* set up time editing widgets */ for (i = 0; i < G_N_ELEMENTS (buttons); i++) { g_signal_connect (W(buttons[i]), "clicked", G_CALLBACK (change_time), self); } /* set up date editing widgets */ priv->date = g_date_time_new_now_local (); endianess = date_endian_get_default (FALSE); reorder_date_widget (endianess, priv); /* Force the direction for the time, so that the time * is presented correctly for RTL languages */ gtk_widget_set_direction (W("table2"), GTK_TEXT_DIR_LTR); gtk_combo_box_set_active (GTK_COMBO_BOX (W ("month-combobox")), g_date_time_get_month (priv->date) - 1); g_signal_connect (G_OBJECT (W("month-combobox")), "changed", G_CALLBACK (month_year_changed), self); num_days = g_date_get_days_in_month (g_date_time_get_month (priv->date), g_date_time_get_year (priv->date)); adjustment = (GtkAdjustment*) gtk_adjustment_new (g_date_time_get_day_of_month (priv->date), 1, num_days + 1, 1, 10, 1); gtk_spin_button_set_adjustment (GTK_SPIN_BUTTON (W ("day-spinbutton")), adjustment); g_signal_connect (G_OBJECT (W("day-spinbutton")), "value-changed", G_CALLBACK (day_changed), self); adjustment = (GtkAdjustment*) gtk_adjustment_new (g_date_time_get_year (priv->date), G_MINDOUBLE, G_MAXDOUBLE, 1, 10, 1); gtk_spin_button_set_adjustment (GTK_SPIN_BUTTON (W ("year-spinbutton")), adjustment); g_signal_connect (G_OBJECT (W("year-spinbutton")), "value-changed", G_CALLBACK (month_year_changed), self); /* set up timezone map */ priv->map = widget = (GtkWidget *) cc_timezone_map_new (); gtk_widget_show (widget); gtk_container_add (GTK_CONTAINER (gtk_builder_get_object (priv->builder, "aspectmap")), widget); gtk_container_add (GTK_CONTAINER (self), GTK_WIDGET (gtk_builder_get_object (priv->builder, "datetime-panel"))); /* setup the time itself */ priv->clock_tracker = g_object_new (GNOME_TYPE_WALL_CLOCK, NULL); g_signal_connect (priv->clock_tracker, "notify::clock", G_CALLBACK (on_clock_changed), self); priv->settings = g_settings_new (CLOCK_SCHEMA); g_signal_connect (priv->settings, "changed::" CLOCK_USE_24H, G_CALLBACK (clock_settings_changed_cb), self); clock_settings_changed_cb (priv->settings, CLOCK_USE_24H, self); priv->locations = (GtkTreeModel*) gtk_builder_get_object (priv->builder, "region-liststore"); load_regions_model (GTK_LIST_STORE (priv->locations), GTK_LIST_STORE (gtk_builder_get_object (priv->builder, "city-liststore"))); city_modelfilter = GTK_TREE_MODEL_FILTER (gtk_builder_get_object (priv->builder, "city-modelfilter")); widget = (GtkWidget*) gtk_builder_get_object (priv->builder, "region_combobox"); city_modelsort = GTK_TREE_MODEL_SORT (gtk_builder_get_object (priv->builder, "city-modelsort")); gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (city_modelsort), CITY_COL_CITY_TRANSLATED, GTK_SORT_ASCENDING); gtk_tree_model_filter_set_visible_func (city_modelfilter, (GtkTreeModelFilterVisibleFunc) city_model_filter_func, widget, NULL); /* After the initial setup, so we can be sure that * the model is filled up */ get_timezone (self); /* add the lock button */ if (priv->use_systemd) { priv->permission = polkit_permission_new_sync ("org.cinnamon.controlcenter.datetime.configure", NULL, NULL, NULL); } else { priv->permission = polkit_permission_new_sync ("org.cinnamon.settingsdaemon.datetimemechanism.configure", NULL, NULL, NULL); } if (priv->permission == NULL) { g_warning ("Your system does not have the '%s' PolicyKit files installed. Please check your installation", "org.cinnamon.settingsdaemon.datetimemechanism.configure"); return; } if (priv->dtm == NULL && priv->csddtm == NULL) { g_warning ("No mechanism available for setting time or NTP state. Either install ntpd/ntpdate (if using" "consolekit) or make sure the systemd-timedated1 and systemd-timesync services are enabled."); return; } priv->lock_button = widget = (GtkWidget *) W("lock_button"); gtk_lock_button_set_permission ( GTK_LOCK_BUTTON (priv->lock_button), priv->permission ); gtk_widget_show (widget); g_signal_connect (priv->permission, "notify", G_CALLBACK (on_permission_changed), self); on_permission_changed (priv->permission, NULL, self); } void cc_date_time_panel_register (GIOModule *module) { textdomain (GETTEXT_PACKAGE); bindtextdomain (GETTEXT_PACKAGE, LOCALE_DIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); cc_date_time_panel_register_type (G_TYPE_MODULE (module)); g_io_extension_point_implement (CC_SHELL_PANEL_EXTENSION_POINT, CC_TYPE_DATE_TIME_PANEL, "datetime", 0); } cinnamon-control-center-6.2.0/panels/datetime/timedated1-interface.xml0000664000175000017500000000213414632072346024767 0ustar fabiofabio cinnamon-control-center-6.2.0/panels/datetime/icons/0000775000175000017500000000000014632072346021401 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/datetime/icons/scalable/0000775000175000017500000000000014632072346023147 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/datetime/icons/scalable/cinnamon-preferences-system-time.svg0000664000175000017500000010334714632072346032257 0ustar fabiofabio image/svg+xml 12 12 6 6 3 3 9 9 cinnamon-control-center-6.2.0/panels/datetime/icons/meson.build0000664000175000017500000000036514632072346023547 0ustar fabiofabio sizes = [ '16x16', '22x22', '32x32', '48x48', '256x256', 'scalable', ] foreach size : sizes install_subdir(size, strip_directory: true, install_dir: get_option('datadir') /'icons' /'hicolor' /size /'apps', ) endforeach cinnamon-control-center-6.2.0/panels/datetime/icons/48x48/0000775000175000017500000000000014632072346022200 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/datetime/icons/48x48/cinnamon-preferences-system-time.png0000664000175000017500000001106014632072346031263 0ustar fabiofabio‰PNG  IHDR00Wł‡sBIT|dˆ pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›ī<tEXtTitleKeyboardŁō5EtEXtAuthorLapo Calamandreiߑ*pIDAThÕ™yÕyĄŻ=3Żsķ;{ŚÕJ\BČ sl(—‰C*•Љć²Ė1åTłĄ±‰,‡¤ā¤l'eģ8) vl,ä#Į‰°Aā$!tkW+iwfW{ĶĪĢĪLŸļåéŁ=ĄIp’Jo}Ū×{oæßū®÷z)%’Ÿõ’Zwz~ƒ<łä“Z8¼ŽSÄķĀ«„šŗ„':=!:…ēyžps®'³Rø9ĻCīæ}ü>õ*šŽĶƼR¶ļśŁ*|H ļT%6¢D£qbŃ(Mń©T !łü 3³3 E¦g&™šžĀ²­œpÅæJO<ń©OżŃī’U€Ÿžģ§7†üe Ø_™L¤YŻ?@¦93’¾>fż¬(Ź¢³ēyœęš±Ćä²ē°Mk— Ÿ’ģ§?{šą'?łįÅŖ¦ż• ¼æ³½‡+.ßøHQ˲˜˜8Ļ\yŽR©D„RFJI,#‹Óo¢­­EQ°mĻó°,‹ē_|žįįAéøĪ?+ĀłĀē>·yōWšĆmßæ[SµĒŪŚ:¢×\}-@)%Õj•ĮĮS āĢŁaŖ¦E„RĮ4MŖUEU1tƒp8D4!‰°Ŗ·žžÕtwõ „Äår™ŻĻļęüxvĀs¼ßųā7æš«P¾æõ{ h›ßµįJeķĄ¤”X–Åėū_ćõżÆ219E>_¤·Æ—ž>āń(†®£4¤”8®‹mŚä ‡Ī0–ĖŅ’IÓŚŚŹ†K7Š×·O<ĻćČŃ79tčķŗö'7?ų•GŽ1Ąwæ’č攐ń»7½ēVZ[Zš<'óÜīgÉęP•kÆ»šT2‰ačŗŽŅfƆĖ8qā•J…5 P­V1­*–i311ɋ/ķ%ŅŽŽĘļŚH*Ęõ¹l–½ū^¶¬‡¾ņå‡üo<śų#”ŠWŽĒˆD"(ŠĀó/ģę„—_b:_䦛~öÖVš tŻ@…‚D#1²£YzWõbŪĆƧéļļ§87‹mŪX¶…išTꬌŒŽņĀKÆŠÓŁĪeė7ŠÕՃćøK%öģł¦YżšŸ?ōÕļž—yäļīÖBm7^’^„„„Oøģܵƒ7!kā†ėÆ%™L --mDĀQ‚PÓ“ŠujµB0ĒBH‰ćŲT*e¦¦'QP(–Jģzꔿ}}¬YsBH&&'yżµ½–ķY7~õ”ÆķżO|ē¾s©ŠÜ»ażс5؊ĀΧ·³’ĄAÖoXĻŗ‹/"“É6"„:įHPęū“Žc£Ŗ*®ė"¤D…0­*BH¤!˜-Ģ‚"©š ³³ģ{õ “ć\xįÅō­źĒóC§‡8uņčy[õ.’Ɵ}cl©®+/%\ēÆ3™öhWW7–e±÷•—9rģ6l`Ć„—ŅŃŽI<'mB7t„įĶ‹ė:(Š‚”USŃTŪ±‘RR’hjJĘ‰„£¤š›y÷Õiniåģ™aĘĘrŲ¶MwW7©t¦Mu•?]IÕe?ü7›P՛×_z–e1|zˆ÷“J¦Xwń…“µµ ©V-×EH!¤"p<Ēu°DZq\׫YB ”µŚ!„@a#B0$™Lņī+7bŚĆƃ”ēJT«UV\€ æw’gīæäm¶lŁ¢ŗx_ķģčĮuœZŖ<ų…b™®æŽ¶Ž4M#›Ķ±ļÕ}ģ{e/ŽķŌ |B }ŚżXķY BHRśEPŌA©›n}/ٱ FFĻĢ·kiķŠ!žāmšš¢ ō ½=}X–ÅɓĒȍsĖ-7Ņ’iE騊Jŗ9mZ ³k×Ә–‰Ø++”—r\°öLÖ,ā·SU EQŠõń¦8×\}%łŁYŠÅÕJ…ī®ļŗ’žO\õ–Ž=ĶĶLĖ¢jV:=H8”­­×óŸ@Q"‘—o܈å8œ8qœ'ø³j֔œR¹ČBČŚ;ļŪՕĒW…\6‡ŖhōõÆb¶0G~z OŹ•ŖŅœnĘܳ"Ą–-[ !Ħöö.lÓd,—er:Ļ ×_G&ŻB:¦³£¶ŽQÖL†›n¼Ūv8tčßžÖ·)W*HĂĻK]Yįǁ\|ķ÷Q…īīnbńńXŒkƽйr Ū21M“t¦‰ųĄŠA#x³®ė±€¦a»“Ó“T+U’‰±XMÓPUEQQ@ŽĪvī¾ūƒ8ŽĖ¾W÷±eóęęę|ב¾›ą+X÷ŁøREAUTTµ&‘X„ĪŽvĘĻOašlŪ&Ž¢iښżįĒÖ-w!įŽ‘H¤ØV«X–Ea6ĻE^H,ŽTTQjŹ« źüņX„§·‡ŽwBöģŁĆ'>žIŠÅĀ"kg| :Ģāåvmb”yŃŌ†¦­½ Ū6q]—r¹B2•FŲāŽež«£ŃÓō—ĀUÖ¬&Æųź÷McĶŚÕ|é‹_" ņܳĻń›ś-JÅŅüÜ( EnéDŌĒRĘVż± Ć`õź~<ĻC"˜››#‰ƒ«ėćĶo)…š:uŻĄ²,ŖÕ2åŠI,A× TE/> ż†@ ČE—\ÄĆß|˜{ļ½—7¾ĮGļ»~B!Ūn»«®ŗ UUēGX8ī@.ÜCARÉ$C§N @]×ٹĢBˆĪ°Į²,,Ū¦jV †‚x®äģŁshZ`±%ŌŖ¬»ō{ģ1~ķŹō÷ÆāĪ»ī⢋.ąÉ'ŸäĄĮ~ Õgy”ļRK„ĆQf¦f‰1ĀŖi!„‹ķ8FOxó?…$2 éx®‹m™! ‚ģ~ž9Ņ©4ŗ¢££cEKŌ§/ ²nż:Ö^°†[o½…÷¾ēf^?øƒoā[ß|˜W^yT*I*™$™J‘J%éčhē/<°Č¶åą8GæI¬)FÕ4‰D¢xž$Ž „ҵ̅<ÆlžēÕņ7µ »lżeŒåŠŚüžv©é”y°` VQOž? ®<½ ĄńäöģŲ(ŃH„`0„pģųqJ„BmŽ~Iź[Zą®—ŽæUŪÅ÷R *Õ*ćccTŖ&Ńh„¦DœńńŽām_ęB„ŁŅĻäȘag†b¶P¤T*‹Õ+rC¬P„T……mōwź›˜šė!A‘ žSsIį·-Ļ•?žŽöJs&ÉD„bÓ4·=±ķČ2 <öŲc¦'ܝ££ēH4%ź:‰¦»w?OnŸg|||EKŌ`ZC”ņešŗčŻ‚hhš†¦jž»…¾£ŁQęŹeffó¼šĀ^Āį(•t:ĶŁ³§QPž„q ļĄ’cŁW‰æ’ŪGw–ēŖ?ÉĖ/æB>?M:fbbšžžnfóS ÷‚rÅo¤+<ņČć‡]WÜūĢ3;e*™’m­-”*Uŗŗ:9sö,»žy–§Ž153E(d„Æ{RJŽŸ8ĘL~¦aCS·Pķ: 11yžÓ§OńŌSŪ±m‹¾Użœ9—„µµĆńā‹ĻŪRįī}÷G˾ʭ ųĒć=žćjµśŠŽO)½ŻŻ²5ÓŹää,ńxįP<±7b${ŽBqv„ćŲhšŹōĢT}Üyż…LĻN1š=ƁƒłŽ¶±Ŗ·›d2ĶÉSƤSi:ŪŪå®]Ūqm÷“ŪžŲ¶·®×2}ö„žVÅSĄo’Ī=&“©{næżN™Ÿ-(#££¤qš›ÓdsY*U“믫}čM$’4ÅŗA0drā<žšhoėIJk_ŠÅÅR‘É©)žŻ½‡Ī¶VVõö19=ĆČHŽ®īN"”;vż;•Jåk?ŽöÓ,, ¤ōWüĻŠk¾©Ujż¼ė3‰DāÓ·Żö>%Ņ„2W¦³«T2Į¹ģ(Ł‘½½«ø`ķŃX]¢i®ćbŁ6ÅR‰“ĒO1’ͱf žž^ę꬜&Š×ŪĖģģ4{ö<ēäó…/ķܾóqĄńÅõEŌa¤”ré¬k¾ŅA ¾čæ~ƵļėźźśņWl4ÖÆæ\NLN*¹ÜŠ ­™ --Ķ€d6Ÿ§X,Rœ›£P,  oj"éK*FӂŒOL06>mYtt“Ӓi‘ƾ¶W9yüx~hpųóū÷ļß TĖ»dŽ"3ÆūЇ«VuÆ»dŻŗ7gš/½źŖw³z`-SSSLĻä) uƒt*®ż—&6€Y51M Ó“Čf©TLāń™ęf2ĶiŽ=̇ʩ©é}o¼qčŸ&Ę'†’/¤źC4ZbE 4Ī~ˆ d€Lßź¾Ė.¾ų¢›ŪŪŪZÖ®½µk/$R,ØTĶŚ·%ŪĘq’`(D0$DH$”ēJ bpš$ēĒĻ~óč3¹\ī80LūRęźī4ļF+ŀźC,÷Z|i2ż—tvu dZZŚM‰`Oo©T3ŃXŒx4NS"”’b±@©T¤\.395ÉčČ9ŠÅ’59996z.{jddä$0 Lų2Ģś(7øPŻ}ęyŃhVę€o ˆś I¦Õ‡ÉØŖšģģźģoooėŠDŒØ®FH×uĆŠCRJiY¶mš¦e[–Y.Węrٱ‘ńńń3@ŽWv²aÖėŠW–(¾(xēu^©½UJm°ŒĪBl4ž£¾Õtæę霦7})ū2ē+Zf!`³Īül/UümV€”h„”[ ,yVļ+żŁsĪõkÅy^Ōū¬¤šŅć?1ƒ‰åØrIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/icons/16x16/0000775000175000017500000000000014632072346022166 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/datetime/icons/16x16/cinnamon-preferences-system-time.png0000664000175000017500000000174714632072346031264 0ustar fabiofabio‰PNG  IHDRó’asBIT|dˆ pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›ī<tEXtTitleKeyboardŁō5EtEXtAuthorLapo Calamandreiߑ*'IDAT8“ĖK‡æŻ™ŁĒĢŗ«DWėŗn5ŅƒŌÕöP“HčEL4$xm)½B½ūō,H)>‚„BIBÓX‰ėĘŲčŻŌ“®Ęēffwgܙé”mC/żąwżų]>—ć8üé¾ė󈞮ÓŅiB×õØeYŪ…|!©æÖ§nŽüā6’Āu&˜˜‰ČžąØ¢ØmõuõŠŖ–š8>9fļÕ.ĖĖĖŚńńqJĖ准†²’ŒŒ|‘|jśĀ;”x¬AZßH³æ’ ]×ńłü”——ÓŌŌĢ/++ęĀā#ķõIžŻįįį,€ äˆ£±ŗ˜‡„Ÿf~Äv,ϟ§µµ•ĘĘ·±‹3÷©E„––Eō £g„`8Šē÷ū?Æ<ńݹ{‡Ī÷;Ø}+Š×ėEdƗP(„ ²¾¶Ź„K­Bz-]991öģņ叟øĒémlhTvvž`qa‰kWƳ“ø„(Šˆ¢ˆ üµp(D¤ŗ†§O7øųŽEÅ% ½¢yZJØĮ ¹“·¾ŗÅƒū3|śÉgt~Ё,KtuwŃŻÕķrQ]UÅj:M4űģ€;ÆiŃ@ĄOŃ0ˆEė¹qć:÷īŻEÜ“'ژž~ššH-µ51ŖŠQ4Ŗ*z^ø‡ķĆĆ#ž¦QDUTāń8===Ģ'StŌĶśFšµõǜ&>Ÿ—ƒƒÜn÷6€X4 Éģn6^YQÉīŽįņ \n7ż×øz„Ū¶±, Ū¶ųõłsŹŹB¼üż%¦i&ÜzNŸZH=ŅŹ*ŹČlm‘Ė嚈<¢É#!I2²,S(ɼČP9ĒĻ3³šQ0¦„ÅÅå'“·'>“-«¶¹¹IX[]Ų-dŁ‹$ÉhŗĘo/2<^]”®.ŹĆ䜹¹¹9÷ķ7c_ˆÅüŃąÜĆłt©tŖ$:;¤żƒ}2™- …²,£*ā qfggĶł¹”V2ķĮ7Zčļļx}žQEUŪŚŪ[•Ŗźįpˆ£Ć#vv²Ģ'Sš¦k)³PϾ!8c`ąJŸ$˽.·+aFT–åmĒv’¦aLMžw’—?¾÷bŻj5ĆēIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/icons/32x32/0000775000175000017500000000000014632072346022162 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/datetime/icons/32x32/cinnamon-preferences-system-time.png0000664000175000017500000000466114632072346031256 0ustar fabiofabio‰PNG  IHDR szzōsBIT|dˆ pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›ī<tEXtTitleKeyboardŁō5EtEXtAuthorLapo Calamandreiߑ*ńIDATX…Å—kl“×ĒļĶŽoń% %‰ ”F)…¶ ömjWŠÖ±–mš6Öi|č>tҦi0•µB“*¶ĮŌJÓ$ZŃvŖzLm‘ ÕĘŗŽPq ¤“@h ‰c‡\œ‹/±żŚļ9gād†0‰jšöJł}ōŚēł’óŸójJ)žŸ—łE¾|čČĮÕJj›„#6!¢Žć4;eĒq’eĒI”ē˜,•ßyź©§»nuLķVx÷żƒėMŻÜgšf‡eŗiØæH8L0B7tR©©ń}}W¦X,^*‰Ņöō/:’+€żū÷×ŌF¼»,ÓśIScL_µr5©ŌĆ#Ć _挚5”’,\ŲHćm44܆ßļēt×)Īuwɒmļ± ā—;wī,~a€×_uaÆx=ŽŽu|™ńŌG>xŸB”€]*191ÅÄT„ Ŗ%SSć²,Ö?š ”P„žv˜©É‰K²ģ|oēĪ]'oą„W_Zć2õc--ķ֚{ī烿ęāÅ \é‹ÓÖÖB4„„%†Ū2qŹÅĄĄ ‰WÆōѱd±X wß}ē»Ļq¹÷R¹T“7ģŚõü<ˆyū÷﯑”Ī65Ē:–ŽŃĮ”Cļ02:F&[`ócąóūńūŌ‡ėÉd³čŗ†i˜Le&Čęr‹yžĀ0f–čt>G6—ejjŠ7Ž>ˆĻ㢩q!O-ŁĢ8ć©ńžb”ōŒ¦iZµŚ 2󔍭­DÆXq—ÕŌ#>Ų®)ść Z¢­““ʈ65Ž„PJ‘ÉäL$ˆĒéļ룽-F¹,iXŠČŌDгēΔӓٯ9räąP€Ņ*e0*nø+ņÜ·ö¾5m­-ĻG"‘¶uk7Īd™ĪM¢:BJ¦¦ŅLLL”4Hؖp(ˆa!±,įp˜Ó§O06:Ś?OžüŌ©S'`WäĀØp „†CŚÕ+}§=žšŚäP¢½®.¢-YŗGHŠÅ2†a ÖÖbY.Š üž Ńh+éō$©ž£?śßĒćń±ŖJĖ*Ķ9`V¼@-P41 )kžŅŹU+æā÷ūk›ššhimĒļńįńł(äóä‹yā$“ƒd³ŁL÷Łī“€$0\ʁ,J€scż«]Øš€6 Xø`AC[s“¹¹¾¾.āv»]ī· Ą.Ś%Ū¶K©ŌųD2‘LŒŽŽ TʁžŖä™Jʳ}0w(Õ4m¤Ś‘Ąų+Ī„€ ®ÄīJ3•€40UQŗ’lv¶ÅŁĻZ?»nśbRSķĪͤU~¢*3ŗ™Ō¬ŌM’ŻŅĖé’ņśÉž¤ŗÖņś£IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/icons/22x22/0000775000175000017500000000000014632072346022160 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/datetime/icons/22x22/cinnamon-preferences-system-time.png0000664000175000017500000000314114632072346031244 0ustar fabiofabio‰PNG  IHDRÄ“l;sBIT|dˆ pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›ī<tEXtTitleKeyboardŁō5EtEXtAuthorLapo Calamandreiߑ*”IDAT8}•[l”džŸ’“»Ž³½»^šį84Į›68 •–’Ņ‹TUÆ{”^qŃT*i•HĶE‘*Uu+„­TjŚ)(qćŲ@ !Įµ Ę6>ļz÷ߣĶz÷Ÿ™^ŲFi…:Ņ«¹}ϼójō}šRŠG­ /ģ7tõ“²»R.w;ŽÓŗ^.ĻT*•åõõNٹņŅK?ūų‘Å€öæą³ĻVū”ūwž*ߏƁU^/Už*tŻ@‡\>G"™`~v–Ājž¬(k'N:•łæą·ĪżõY˰žTWW߯­ć‹[£¬$WX\^&“Ķi¬Æ'‹²³c'cćcLOŻ[,•K?łå/~żī#Įo¼ńĒļx¼žv?ŁÅņņCĆĆ4·“ŠŌXOø:Œ¦iH„°ķ4³³ ,Ģ/p ·—ŪĶÕ«—Y-æśźo’ ÜßßĀ_īéģnśźĪ8cćw8üŻo­‰‰ÄšūƒHGĪ¤°3i²Ł,ļ½’!O좦:ŹČå”9Mžxķµ?ät€reķLuu¤)›Ķ061Į±cG° Ū[Ū‚ø]nüžn‡p8LKs+ĶM;ĻGæD”ØÆolZ/»Īl96|>W§»Źóūßą_ƒƒ>ü šŅų˟ߤ¶6Fmm-•J™R¹D„¼ŽT„$¦i!‘ŌÕÅøöÉuŗŗörö~ēĄŪē/?”PˆHm ¶"ūōJEģõśüŲ¶MsÓ6b±(.·›ĪŻ»9ńÓ9ńā .½s !”TŽ„B¦iiii”Ļ …‘RģŠĒéöz½,%ŌT׹÷1t·ĒCoļ~Μł-żżżœŠĖČČ0={÷ŃÓż-¾Łó–åĀŌM„¤Ó6æ!D€Yqœ±B±Ų‹Fp¹\Äb1tĆ@“šŅšx<’žü€¾¾£œ>ż JI¤Üų’JSxŽ|ļČP)””³Īę2Ģ/ĢĒIŪ)!>ۈb}żF*µ‚ĻēgāĪ]‰ŗ®oÄa˜˜†‰a˜X–…iZX¦…aZ˜†‰²Ł ’æƒĒSEr%‰BŽŠK¢rezśž¬G(äs$W’$W†±)ÓÜøĄ27ą.ÓĀ“,ņ¹+))üž š™ž’ć €qóӛéóoųKkk½»vībphˆÖÖf@Ćėõ”ė:š¦”i;H!XN,‘J§ųĒ?/ŠÕ¹‡ėׯiétźõæŸų€ ąs'^¾;)śZ·ļŲµg÷“¼łÖ9Ž=‚m§‰Ecx½^ęęęhhhdm­H2$‘HņĪ„÷ŲׯE.Ÿgzfj¬˜_{łaŚŅńŽw‡Į+‡=c&¾šĄ4]tt“ÓŲŲ€’…ĘŅā"·oƒ&y¬­Œį£į+¹Œ}čāÅ÷? “M×nĄ»ļ©}½Ū¶5¾Ž¶£mǁÉēó”¬bg2$’)bŃ¢‘nO_‘«#LMNĪLĻÜ’łčĶŃO€° ”Ķēü ó ņŽäŌm!Dln~¶¹ōąfšńxķķķø,7iŪfzjŠÆ]U·Fæżhhd`qa1<J@p¶¢Š7]€8šX“6Ś‹DŗĮą¶`0Pćół¼Åb±”Ėå ł\~%™Z¹›µ³·€1`XŽt\äĆ ¢iŚÖ%[}zKÖę‹ĢĶ3g³øČÆI©ÆĶ¹’R ”ŁŠŸ(IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/icons/256x256/0000775000175000017500000000000014632072346022342 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/datetime/icons/256x256/cinnamon-preferences-system-time.png0000664000175000017500000012066014632072346031434 0ustar fabiofabio‰PNG  IHDR\rØfsBIT|dˆ pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›ī<tEXtTitleKeyboardŁō5EtEXtAuthorLapo Calamandreiߑ* IDATxœģ½y”eGy'ų‹»ßū¶Ü·Ŗ¬Ģ¬][-’,±H AĀĀ[ĘĆbÓ£ńx¼ąįōĘĘa°1‹1īī9§gwŃõÓ`Pä ‚ Ö<ĻC0€;Ąõ\ø®ēĮ`Šh6ųĄƒ¾’O¾š…ÆŒ}/ąE ėÆæŽxĖ[ŽņĻ=śńr¹<«ėzĢšłd|)ķ·ņąĆL,4#‰2Ņ`æĖIqI1ÓKp!©EA6§@^; r;­D”‚¦ į Éļyƒƒ\×EŠē`ąŗš|­VėÉļ?ōŠÆ}į _ųKĘXō"¼®«šĘp immĶz×ĻüĢ/¹žś–J„‰4ćŪ¶ ˲āļyiŸWļa‰+X=f,€Q ŹhÅ#J…(£ æ(KĀ{‰lg) ƒ3¾¢(Pˆ¢؊ E嚈ŖØPUDQ `PRłņ“kp°‰h%ĪCé Œ}ž‡Aæ×uŃėõŠ āļ¾ļ£Óķž}ų‡?üõĻ~ö³_dŒ/Õ;}¹Ó.8pĄ|ē;ßłžnøįC¶m;’ń-ˊ_2æ”ų£BvyI axʆ(Ņ4‹—6žDœé"Qʁ20ŹA!}-…(!P¾­ØT-É/Šuz* ļ·5i-!gdüQˆ(LBˆžļĆs] \ż^½~ż~ƒ~a6ōzŻõG}ģCŸżĆ?ü#ĘXxyŽųĖ‡Ęšé—ł—ß|Ūm·}®R©ĢJ{^2}^ź§Õ|ł†ķv¤Õēˆ"Ф Ā|ų~€ šįy<¬Ł|’©!ŠhĢųęK™ņś Bņ.Żå¶¢J©ŸĻGą€`č C‡a˜üÆn@ÓFä#(„Q*Ł(¢¢0ńųĻ„B#čśč÷č÷z øž‡V«õų·æõ­włĖ_žīåxļ/Ąó¤7¾ńKo}ė[æ°{÷ī; ƈ>żÉŪųEŅž’ĖĘÖż@ØČ‚Ń}Ÿ3…ēzš|®ė 憢0ä Į(ņÆt”’`:žÄę@:’”k:,Ė„i˜0-–iB` kTĶP( 4=ņ„X“‰Bų7 ƒīż~½^½nż~}A8uņä’łµÆ}ķW|šĮĘ {£W'ą9ŅĶ7߬ß}÷Żæ~ģŲ±†”š¦ Ēqą8NĢų–emĖų’dN}Ec5ŲĆĄåŽ°ų#k<ĻC †Ģ#Ļ©’Ķ ŌT¢@S¢’Žp‚PēCQ0”ŖÓˆß# #™˜›Ŗ¦Aדō¬“³Ó2aLƄ¦kŠ4ŠŖBAŅ”qEģ0ęē{šżī`€ž`€^Ƈ^Ƈn·‹^·+ĄaŠų‘GžÅ’ū’‡cGįs£1<ś¹Ÿū¹;_óŚ×~arbbIŖśŽć T*ĮqœXŻO;÷ņ±z)ķ„j!<_zù¼ß“ĪåŅ?b†c…K`#ćH”’Y‡¦ŖĀŃ Œ(‚ĄG„ˆĀ0'‚ !$¶ķu]ƒŖé‚I5hŠŻ4”Ŗj :Iś/Ķų"ᣈAų 8‰Y$4%Ʀ‚’˜ Œ¦B‰4B„\#šƒÄ?Šļ£Ūķ¢Óé ŪķʑƒF£ńƒüīwßł·ū·]ę”rÅŠ.‚n»ķ¶Ź=oū×VV~TŖūiĘw'–|ł¾d Źøó-¢”ŪėĀóŻļóXÆßCæ×GoŠ‡ēŗšü vüĮP’įMӀ®éŠ ŠBŠļŠķ“ŃjwˆĀ=ńŗ¦A78ØŖĘ„®ĘĻ„**T…‡ņ(Ą"ī` i„0¢œŁĆļ!Œ(@¹Ÿ@7LŌjUTŖUŲ¦…FHy"³O‚æ @UU†žŪ¶a[×tš®‹># I걈d¤Ć‡®ėbąŠķö8t:\3č÷į{ž>yņ’śWæś/üqļņŽœOcŲ†Žżīw{ó›ßü•jµ:›füR©”±õ„g?ʋ_äŹ{¾ĻmXĮģNƒ·q}ßGE€`z]×”›&L]‡”ė0L` ›››ŲÜÜß18„lĒ‚m[±cŲŠŒ¤6Į¢Č0:¹įQŠĮĄÅ Ē„.(ŠŽŁ™LNMƒ2k.AĀuīŸ „@Ó4˜†Ė2aŁ6J67œ’ SēŽDESA@%69(eˆDd#Š~ėt»čv:čH³`0@«Ż~ģļæń7}ūŪß~śŅ†—`BČ>ųĮ÷ßró͟6M“Ų¶R©„r¹:Śķvģp]§NŸžģßżėæ86 †i 9z÷»ß}ģ®»īśJ­V›MKżJ„;ś¤ŌO«ū—RŅ›/UNķg~!•F¢@7tŲ¶Ūävq£QĒŁ³ĻBÓ ęę§aY6$ FaJTM…i(WĖØ”+9F÷6¤ŗ§Zäff’ˆ][“ń=¾ļ£Żé ×ķĮü4UķuūŲŲØLĮ®]K(•K܌ø śšƒŒŖŖĄ4Laf9¼Ļm¦eĀŠ ”e!ŹxĘc fŗ"ØŪė”Żj”ŻnóhAæV³õŲWæśww=šĄOm9®2€ BłĄ>šž›o¾łÓ–e)õ+•Jģģ“*ŽÖ—)øAĀó\ōśÜ¶oµ[h·ŚčözqųN!¦e±8„ßĆ©S'…!¦¦'01Q‹3tĆ0`˜&Źå2ŖÕ ĆČÜ÷¶ĢžB€ ą Q@ ·<ĻćZN·ß÷E’› @}³f³]³°ŗ²eč÷ūp]®YD”AUUaŁ(WJØĶĖ4LčšE)Ē"ZF”Šø‚8lŚķvŃn·ŃjµŠi·y‘ėś<ōŠĻžßõWVŌ+W#|ÖŽ§~÷w’ųĄžż?mYJ„*•J¬öKG_ŚĆŸW÷]—Ouķt:hµŚh¶Zčt:)‰OĄĻķĄqJš\O?ó4ĒÄüü,ˆ°«y.Ė“19=j„z‰óGŸ’üē~žjOŗŖąšįƕ÷¾÷½ß\ZZ:"„~­V²÷„Ō—$ ^š8~­V Ķf ĶV Żnžļƒ1Ė4yȰ\F»ŁĄ™sg059é™)1;Ž”\)cnnŗ®'7ĒF²ߛ’ŗ„hŖ&&ćØbź.gš^·‹§Ÿį&ÜxӍ±ó-Mz§NFÆ×C†°m““Ų½¼ŖŖr3‡Fb^’;$Fh ā”<ĻĆśśB@ōģŁóh·{X޽ Ć“ŠėwŃėöįł>!0 NÉAµRE¹R†cŪ°-;N(¢©a†©\‹>ŚZ­÷ t:čw»8澞7_’źW﹚×9øjąÕÆ~õÜ{ŽóžļLOOÆrūŗŠZ­†jµ3ŚĖĻA$¤ž`ĄÕżf³…F£V»;@QčŗŽ’Č‚O=łff¦09=ÉC„Qʀj­†¹ŁŁ87Zā'mifēłõźPX(e8}ś4NŸ>3*!wŽy'\w¹Ś³ēĪįĉ'ł¾Ōx`Œ”ä”pōŲawg…<ĻŻ‰?’Äææ ĆėÖŃķõx’’šš=ūģ:šĶ6öķŪJĻöėE!EM©j­ŹĆ‡NIųŌX« ©Ü ßó„_†GšĶ&Śm®„Õ77æó„æų‹7¬ÆÆw¶5/?ŗ*Wzӛޓvļ½÷~·611-™_~¤ŚÆĒ™i sÉĮŌķõŠj·ŃØ×Qo4ŃķuįūBP.•Pēxā‰Ēa˜Ž€3 Amb³³³qā dˆBųŒ;ĶŁ|«¹åpƒ1ŠGyƒĮå²€ ųz®ˆYˆą’ņܹs±ƒsee¶mćŌ©“Ø×7Ń››uĢĶ́'%—Ō4 šŖĀ4ä>į Bų¾?šcÄH*ˆo„’~qiQįĀś::.TUÅĀāęęgpśŌiD°¶ŗ Ó²ŠķšÜ’NÆ+ЉųšŖ|®@Éq`™&T]‹ĶUF"ƒ%‰ø»Fé­÷üŌŪæ{ąĄŪüńõķĘĪĖ®:xėOżŌńw¼ó’„\*•Ź„*BņW $?€Ų>„­ßévŃl¶°YßD³Łä’‰Rš+óó­Ÿ?gžy{V—”kØpPĶĪĪ`zj:®¦“‹9D®ó”†nOÜÉs|–»`čcŲ½k7VWךčc ŻngJ{Éz^]7 k {ö¬`ee5–ü’ßżG0Ęø7_!#B›Ģµ TO ² ”1ųĻwų~|x|Āæ©ŖŠÅ…ĢĶRlll ÕjCÕTģYY†ėŗxä‘G0?æ€É©I=½^¾ j·āy~µŠr¹$LM7ƒ¢čŗ–-‘Ä cģŠŽųĘļ]{ķµÆśįųĢÖ#čåEW• š?ń7żųŪŽvæcYZ„RĮÄÄD”äO;ūäŌ\©ņoÖėØ7hµŚš<$öR3ʹďciiŽ*•*–v-Ńś€A×t˜÷;H)]HŪųt݀纨Vk ”ā±ĒE·Ū¹į-˜1Ą4 ”JjÕ*ž©ičFlŗQŹs(d*ö@L&j·y“¦Õl 3£ßüś×¾vģj«Føó®»öæū§ŽžŸmÓŌ¤Ś_̟ĢNÓ/?xHĪöc³ÕB}³ŽĶFNQAÓ4TŹT«<łŌS ˆpčŠ~€pĘ×4 kkk°m;>gNŌCSx a˜…¶|!q6l2<]·R©Ę¶¾,DšžH4 ?šc•9ŒIĮ…õ <ē€1LLLšÜüT@)ńås$÷ĘR÷QzLQTŲ¶ŪvE<߅ėųD¤ģCAUUģŁ³Œ^Ƈsēž0;;ƒ©éI<}ā$ ĆĀÜĀ͘«ÜŠ¢rĶĀ4³€…aqüBŠQĪ|œ™™E·×Z‰Ō‚YHźŁx‹ļ‹Å6wüiĖ\]wŻn?®q?c(•JŲ·o/Ö×7Šj¶ ź*öXC½^Ē=Ž}ū÷CSUžņėłč„ŻørRśØ”+0M‘AØØ ŒAUčŗ.ķ~MQW‘×f`KÆyĶk¾9;;{óÕą|ŁĄĶ7ß\ū™ŸżŁ(WŹSŽĆUõj„‚r„Ā|Ri½ \€…ńu»]Ōė lln ŽhĀu]•jµj nƋGž<ƒ‡÷CÓ4DQ„’ć`ii)ń!HK7 lŪi¾)'ąØČŌõ} —qIAĪōÄ$M× ‡ŗ`Ä\1˜;9šµš<”)‹–./ļįμųR$Ćü¤ „—Bރ4 $Ä9¶]‚eŚø})g"‚¹¹YLMMāĢ™³‚SSSؔĖxųįG±²ghw»čwūčõūqJ)Oä²,(*x”¢Vc ¦™ĢÖd²”9E…ßü£?śwkkkÆ}¹‡_Ö°¼¼l’ļ{ß’;91±\r”+T„½ļŲ6 QģBŖŽŒRa§³Ö lln¢ŁjĀu=hš†j„‚Z­Š§žzšŖąš5Ę!199‘±ƒ„ӋŪr`[N"ń3\YšM“Š£…Ć "$³ŖŖŠt->ˆ$,§Œ¢ÕjĮõÜxrŅĀĀ"!ø}éŒCńDfņļL ‚dzi)H"ßŪR™P8v–e£?čĮuCĄ©iVVöš©ŠõtĆĄŃ£×ā‰OAStLĻĪASTtz]ø®Ē§G|ž@T©ĄŠƒ bV¤®s•”åZ4£ō–¹å–/B~ģå\|ōe „ż·>ö±ÆĢĢĢ\gŪ6Źå2jU7v‡W½IÅųeJwą¢Żé Žh`ssĶV AĀŠuŌj5Ų–…ļ?ō ö¬ģ†SrĄ(…BTģßæ Ć0’/¤!Ą`[6lĖa㓳g¤æ¤·rœļ’ŽøŌœ~Ā@E=Kn¤ĢʀN»‹ „’ ‚驱Āļ {Æ$Ÿv,ąDsŠB°oßõž>ń$Öö®<ŪsyZuDA#†J™Āq,ØŗUQĄ"EįS£™eÅ€,ŖJ#Й陻~ā'ņßBī}¹.Nņ²Bˆņ÷Ż÷gK ·Y–Åóś+”D.¹O1UāBAĀs9óonnbc³Žv§ƒ ąŲ6jµtMÅų¾f?EAE(—ĖŲ½kw,!Óv¾ŖŖ(—+Š-Žéł~\ßūT”č¦(#·X€ĖĆu†!ŠšØ(—*0 Ż^;ńˆ°, k««8sś4‚ ÄäŌ$Ź•2~šŠ#Ų·o?:Ż|?@»ÓFDCŃēlŪ†¦éPT„(¢Ņ’iš\śĖŖŹ"Ūqfvö=o¾ūī ~õāŸšŹ!õ£żč徇KN66>|襁_rœ’°×«ØU«(‰Āŗaš A f‘5Ū-lnÖqac¶`~ĒĮD­xņÄ ŗf?EEQ,Ģ/`~a^xמ¤¦n R®BQŌų¾Q÷>Ī[5ł¤æ ”b@A>E¹ ZģšćSviāζPš¤GQ„^ÆgV*U1EׄɹMß#Ė`Ė]š$]‘QäBĪŻŸŖ×Ošćk"µ)F—Ģ.ī3 ŒŹŌčģse d’pœŹ„ æd=#N©„ŻĖĖšƒDŽ»ėėēų>*• ÓDńä”f‹×hč÷šEįUˆ7؈Jʖe”\’U *pJLÓ4Ž?ž7„adæ‚éeć „(üŠ}Y.óp_©,jĢ9 Óä“MT D8|¼ ˆ³ū666Ńnµ¹]_*a¢VĆł ē”i««Ė`”AQUģŪ»Ŗœ“’ŹŖŖĆ±S޾“D•®,BR3ń8g–¶Å<’ēF’UMĆĀüā¶ĒGQ„ɉ)LNLm{¬ē{…’žż2äČ$~¦aĄuŻxc¼āQbU¤žg ŗn R©”×ķ ¢QF)²l k{Wqņ™“Pąŗėā±ĒN@Ó ŌŖU0Źął|TpĄq`AU6Š4 T×aZJrEćĄfDtų®7ßżæų…m;ģ ”— šs?÷óæzōŲ‘O—ĖeLNL`jj µZ-.č‘^ ƒŠüvē_ßXG³ÕF†(9&åC] IDAT'&pžŁgį8fēg@i]7±¶¶šóäóĮ®k:l+]¤3h‹G)·7łÄ!_TČÕQ©”!ė\å“üų\ĻÅĆĘhŖVqČq&eLLÅŻž¬Ü;ęx}ŲüRõs×LC„ Fa€Į±”+eÄĻ̲æIĢŠn·‹( RēåEN>ó žž|źPJą8%ž¾ķ{PU•rÕZ\eIÕT bþēóZŽ.:õš-ž õčcżäw¾õ­/mŪmW½,ąo¼ūŲ›ßü†’ź”2!˜bb‘ģcč:TMŽąĪ·n·‡F«‰ ėhµZš}Žć`r¢†V£ F",--‚R Ūq°²gY0jöŚŖHqĶOŲŁŠ(„[¤ż&–’°}®ļjėŅ_ŧĪ[ŲÅ׎ÄžŒÜĻ;ćĆ8ć„ēJ°pdü Šė€F4sļß“Ļœ„!¢ąŃGŸąaXMG»Õ†ųŠEw­VA¹\i™Pˆƶ|!’^€v»…f³‰z½Ī„zŻĮ?Ü’į'NœźČ+Œ®xĄįƇ+Æ}ķ«’“ačDÖėwvŖ˜Q@Äśƒ @·ßG£ÕÄśĘZĶ&|߇arUqŠļĆ  óŪVWVųŅZ”“”Ē˜gō!™m–·Ł >²‚pń'±å‘’š+eömuä°ü}!s.„Ÿk‹Æƒūe īI¾$yM¤¼É €'č łņ$ē"ŒN»Äg)’“GP+«{ j€C‡ö£ŁnŒ”R©@W5ųA€v·ƒv›kõ\GGFEQ é|ĶCĒįՊ˄ldži˜ö ĒŽż5!$[ ń ¤+ī¾ūī/”JμeŪĀQÄ@fłÉ’[²bļ`0@»ÕB½QG«Õ‚ēūŠu •*¢(Ąęę:ÖÖVĘ`VVöä®ČW®QógŖ)†)’Ö#{)&d[“³"Fʟ3÷Ū“r Š Dńyä  ¹“!`J?{äiY¼/ł­ÕüÓ%Š %1½HB°¼¼_’ȑkqįü9ؚ‚J„ MÕų:Ż.Ś^4Ō“įRQ§AV76MNÉA©\Žk=”lēȝÆĆĒžĻ˜ŻItEĄ’äO¾naqńĒMÓā5ćJŸÜ#ŖĒ¦«ö†÷uŗŌė 4-ø®UUP©V@§NŸÄ”Ć…Š®bmļ^QżwųچiÅ*k‘ŌEށņmEų0,Y·‚#f™®č·qīܹŅ̶%Œ(©©Œ¹Ģ}$ϳx2÷-ŸÜ³Ģ”c>„¢©Š‚ÕÕQ48~ÓQœ:ł t]G¹\Qx¾N»‹N·ƒ~€ x– ‘Q%^ćPVrQĢĪN’źįƇ½€!|ŁéЀ믿޸éŲńĻėšŪ±a;Ž˜dcń‚“Š—˜b”Ās½ø„W³ÕB0P.•a&ž<ń8nøī:®žūöļKŁé$“,¢ėTEµńQ2ŠÓvŒœŲH śf.ü—ØÉČ’®5!ņēŹKö¼ž‘¹‹kē%zĢŠ}÷W Šī;żL€XMI׳9©‰?++{xVBpÓMĒpņ™§aŪc®ēņ%Śś= <A€2ž8„Øj<ƒŠ²­xY8˶ i:9xčšēȖÅv6]±7~Ė+^ńėŽmķ²l‹#³ćĄ²SvæšnSĘązƒ>Zmžćßéõ@iĒ)”Z­ąńĒƑc׃‰ŠŠ¾żū ²óøņĻĖ`i’1ßg„& ™ ¹O^ŗ±įC2Ŗ|–į² : ™1ÜVēJ>ó[y<ŅĒg%:ŁC}VP@Ü'ń·ŒFĄŠM(Š:<æJ¬±ø¼gaČ«æńNŸ>ɧƒ›¼rQ0ąÅBūų¾(ŒāēS5kbz“ķšŅī¶eĮvģ[o¹å–w¼Ąį|ŁčŠ€[n¹ey’¾}1äŻ%ŽķdŠz°Tŗ­ēŗčtŚh4›č“;ƒ¶e£R)ćŌÉgpšą~^ł6¤Ųæ?t] 'Ćŗæ¦&•{匢ķNžļŌRSČŚĀɧX"śW ©GA”60āY`I ¹såö£ąłk#u_E@0ܖīGšaö4¤ĶC7 “²²@Ąż5»vķB0-k{W±±¹ DZ”kĀ0Œ—ė÷¢”F „O“NAŻ02G×tģ^ŽóæMNNN\ŅAžŃ—D!’Óūß’y]ÓÓ²ąŲ6,Ū†af—ėbŒĒ„=ĻC·ÓA³ŃāNæ€;ż*åŗż.Źeår ab×ī]Ł•wäŌY15Uł;|@SJńßżG<žųć0L<õUÆz,ӊ§ŹXq[ŚZČ~)¤įĆYq›ÜƆö\ōõŅŅ8Ł7ś7ł¶āgū OĆrÄ2’gN_p kŹd«L™8„&'¦Šl60;7ƒĶĶĄœ’ƒ0Œął>”~O¬·Ø¦UE¦ČØaÜąŲ l .‚0¬Żō#?ņ)æ8²sv(]qĄ[ļ¹ē-ÓSSwf‚ÄvŖ–_Z2A€~€f»ƒf»…ĖķžR©USŃÜÜÄīåŻ ”bbb““(šˆCˆXW.€Éeø’ŪßĘ÷ś>ff§Q)Wųšwżžś’śktŗ²˜LŽ–M©æER@~oZ:¢@ņ ©Ę ų 1ć Iä“Ōf£™s"¹ćÓū3Ϙ>NJ÷Ś@"łÓĻ•ė˜FĄ7(4‘ß/Ž\üæÜ537Ć“@)Ć”Ćūqįü®ŹŪ6<×G·ŪćkŠåŚåsĖEP ]ƒ\4Öql†Ž‰‰‰_8xšśc/pxæätEĄ®]»œ#×^ū‡š¦Ć2-Ų¶Óā³ūŅ…<)ćŁ\ī`€v·‹v§…nƇˆRX6WżŸ|ņ®¹öcŠu»vķŠóā ”Čxym€µ^æ‡oū~ĢĢĶņ4Q¹Ä6(tCĆü«æF»ŻNóZƒg÷©Į^“+§žA“g®9ŠÉQ`.ä͆ §>™ß&7™yĘ<Å*ž÷Åšk—ZIØņv>ć/y…É»”ļo×ī%00…ąųń£8}ņ$÷ģ[&Æ įŠōįcŅ4Z#nKįžTS`@SUģŚµ„0aŲ&öī_C³QGÉv i*Ā0Bæļ¢ēr‡`FńtdUåZ Z°›ūxŅŠ 7ßzė».ĮPÉ芀ƇW–÷ģł5M×`Y|I(˲ FRŅ‹ń”a²^_§Ļ󠀡)ŁšżvÉB¹RFEŲ½k7Lƒ;†Ō"ÉÉ0Y0ŌG}³ŽP” —“Fų'@D)4]ßžŁŸ”Õlęu–ŁņR?ÆØ§5…¬$ÖR¢5³/ķĄK? rLCÉd*Ķģy H”ƒįß&ļ)ż4ī“bDźÜĆĮ  ¹ųIęę6ŪĘää$hD17?UpģĄų\‘~o€žĄEųˆH‡ ŖŖ0LCh¢6 ƄŖjXœ›’$!$µĘŪΦ+n¹åæ¢iše&,ˊC~zćĻu]ōŗ|Nwæ×CD™˜āYʙӧ°wuŒÕj “ £a’Ėź9 „°Kz½Īž=›b~®Čæ”qMą‹ś§h·ŚĆĢžaƒ4³ēŚŅR/ĆčiÄČ1­‚Šē•xhEQńł/|ĶV3'Ć–|(`ō“zcöm #˜=uķį6VŠvq@€Œ¶0 ńÓēĪ·¤$ŗüмŌĻ“KåG0”S,--! čŗ†•Õ=č÷ŗ°LŠ¢!Œ"ō]ƒĖk„a X<* ĄŠ ˜–%Övą³ —>y„ų®øćŽ×ż¼¦keŻąv_ĒN‡¦‰%øŖ«ļčõŗ|-ųĮ”R8Ž Ó4ął.&§&†! ©ź°ŌĻ’_ņ›³ŖŖĄ±m,//cnnO>ł$źõ:|?1|ß×Ŗ¢ QńŁ?śœ00ō‘ƒ:Ū€˜Ł‡ż95{H“HoĖü†“„µ³'×Ļ^;±4Ļ“å€BrŅä2ą”dp2†¤\yŽėó»tCG­6JöģŁV³ G”‹§,‚ļ{pŻ<ĻE J©ÉśŠŖŖĘ `Y|\źÜAø÷ųńćwæš‘’āӎ€µµ5kĻźžßŅT ¦arĻ\Ė_€¬˜šśƒćō{£†Å—č~ꉸöŚC` 0M Ó3ÓyžGFlˆJŹ9(:!„r ‹‹K8pąfffqāÄ Ō76ć'Ģų|‘Ž(Šų·’öß”Õla˜Ł„v‘—†±¬äm„%ŽÆø-ĻŠĆŒ˜aö"M„X?Ǽš éoY B2zžŁåõ„ÅwQ¤³%ŗłäūČŖżRõOõYīY (‚¹ł90Ęßė‘#×įĢéÓ°mšŖ‰ŹČ܁‡Šē¾ NķȾm…Ģ/. TjT*%1ɈƬ<šDD ų‹Hƒ¢šĀ.ŗĮ‚ŗnĄŠu¦qĶuG¾į…žŸv4BŒ={ö|LS5nk& Ż€®éI%Ęā=øēæAæF)xøŠĮŁ3g°¶w ”F˜š˜‚eš9 ?ūgk³€ļP¾(č®]KŲ»o ĄüüN¬)°”>“^ĀAŅķ… ¦ųóO¼ÄŁ( (<%Iś¹Ą,E`TUÅī•%ųĆ0A/‰ęłĀ0äåŌDńT4 ƒkØŗ.Vz6Ž]sĶ5·>Ą” ĖĖ{žgUUaź ²źšœØ“Øž~Ä«ųŗb”IĖ4`;ZĶ&ęęē…!ęDĪA¾Š Ą— ~蔹‘GÅɓ'ĮXjł’ ŠZś{VöąĄøį†ė±¶¶Šgž~z‘Č Ća" B1Ż”!B„ł{’ ›››‰śO³ń‰8Ś,ĄÅ™±’ £ §ž©P’ķ ³eŪ²ą9ņ Cmȶm d{ (n„ž9y=ö8~ų“Z-Œ2 4MGµZþ½«ŲÜX‡nčŠ5#®#é 3 „Ć(„ ąMÓ8ĀLU,,-żrįļڱšŹW¾rÕv죺¦sĘ7„źÆ*±śĻ@ā2_żĮ——zVD‘ˆN«…å•ŻxÜvzzjä >wö,Īž9Ė—w=4Mœ{ö? [jMUQ©T±²ŗŠƒāŲ±£Ų·wN9…f³•”?L”£Vį3Ÿł}4źŌi·Ō£„Ū([wŲūŽ>|Ōl (heJ<ÄÅA±Č^łHŠ™3ēŠmwˆhĢ©“§±¹¹‰”»杝A$QYX˜‹"¾“:€0Œx>ü D$B‚Š¢ÄZ€¦éń¢Ŗrõ©R©tĻōōtµš¦wķXŲ»w’ĻŹ•m5Ń”Ŗ¦ŠZöDH6Ź+żx.ƒƒ"Ź ė,ŪBc³ŽÅÅPF137gō źnÆ;tė6@½ØA­©*Ŗ•J ĒÅįqęĢ“Ū,³&£ !eų½ßū 6772×5ØGAń Ī·ea³Ē@ö¤ĻŅm™£rݓߺ( Č’&séb€€NŃäyŚ­VöŠėõ³'”żBUSQ*•Ą(Ćžż{qžü³0t šĪ'šł!Oś Åņn²ˆ(! Ÿ'`P%č:EŃö¬­½„ąfwķH „(ó óæ¤ ēŸ®q›JÓ“ŒÓ(¢T$žųb}» Ė4Ńļõ±ky)Īā›™™ŁrP~ˆ<·©š*BĆƒzh€ŠĮS­T°ŗŗŠƒįȑ°ļ^œ9}­f›ŹāæR# „Ą"|ę÷~õFY*X×/Ż–pKfzP灠@AõTČ£ĢP”)¤śl”>‘n/jŪZĄ-Iō !ŠįŒ\.ɃĀ>“śÅÜĀ"AÕ4Ģ/Ģ M_Ś÷|^&=äeŅå°RWŅ4TUӓ“æRx£;€v$ÜqĒ7†¾ØétĆąI?ŗÆZpĖ5 xęėŗxĀ(‰.\8ååeDÅōōt&ž_4Øgēf“6ql¹Tŗé–=—Ŗ©ØT*X]]ĮĮƒ‡pÓM7įŚĆ‡qöÜY“;!żYī/@ą!>ż©O£^ß,č•ŃNÆ­Ķ‚ŃNÆŃ@0J(dUÉ©mßFĄĻEĮh’€ŖØ°ģį…|fff¶ģ3=^®įą”ż8wö 4C‡¢© ”ūr?S…yĶ>»PUUčŖ Ż4xé8U…mۯܵk×rįM^fŚ‘°ŗ¶öß+D”IÕ_‡ŖØbAG”Pkw€Ą÷†Ļu±{×B<.ēēl=Øēēę03=Ćąµåffg°ŗ¶:ü»‹ŌŖ¦¢Rå pčąA9r×<„³ŅČh‰&Bą>ż»ŸA£Ž,ģ›—Ę?0‚Uć>Ė?»ų¶ä€sčģ|-xˆ­Ś€‘ž}ūö”6Q>6ęęęP‹½Žī3‚łłyDa]Ó07?0Ę5P„Aˆ0ø W.÷Ąó4”čŠ4DQ°kył§‡nnŠŽ«tąĄó­o}Ū{TM…fŠu šŖņÕ|„ōg ć?\Ÿ‡×"J”‹ΧNÄķ·æ4¢˜˜œ„¢*±³›»å’Ļ–——ćógun&Bu©ß€ĒҐk  rXY[‰ĻBĮ÷ųĢĶĶ£\)‹°ĖżśžO}ņSųõ~SSS©(2ēJ’&Õ"‰É4‚x?’_ų’Iq[Ņ'ņ ¢>ßCęšø_²m™£r}–?*{X¦¦O¦!óq{ŗ‚ĄēlģŁ³2ÓÉøgī‡,Ó'²hŲ·/¾õ­ļbffāƒ1Š ”…”Ø©ˆŁ‡”’U؊ M×āB5““ļ%„üKʆßŲ大ģ?|ųõŖŖŚš¦A×øgż éOy’Ń(ā³š\K*‹7j(—؊ Ź(ęēsBm”t#ńĄ–aʄ’6¤“[¹sru°Rį pčÜpŻõxöŁgŃéŒŅx(Æēyųä§>ĶĶĶ‹vz µeo6sĻĆŚ@ņ›œ‚0ŌgÉįĆŗQ¦ķ…śŠÆšR6FiŅ’H|/£ślX˜E†ńŖŅ†”Aa£ Dņœˆł ²’0Ÿ# ĘÅD…?`muuõčŠĶ^fŚq°kaįPT…‡ż ®BÅĖy3Ävs†qü?0B`š&676āÅ<,ˁ®óĻgPóĒÅ j¤ĪĄó*XYå pōč\Ķ58īY“;ķbŸåNĪNæO~źwQÆ7..)¦øåҘ)4nŪ®ĻPŠ–ź³LŪ0šÜQÜž¼Ć†²_Š[@`;v¼p讯‹ø.4±xiH)Ā  £8'@Ŗ\R`iŖ‡‰¢`q×®W,dG!D«T*wń˜ŖĘćžb®??€æšH¦ž\¾š eŠڶ;mĢĪĶ CLĒėĢ_ŽA-“…$Üxó8~ō(6.¬£Ū銨ĶF DO»×Ē'>ń lllČ>=ØG:ĞCŲp; %³ć>Ń//™`čŃ_€EP.—DÕØel^Ų€”iPTŒQ„aˆ ŠĄ¢ˆ3æH2#HźjŗĶąf@©Tŗ§čJ—“vÜzėķ×*ŠbŖŖ—łRīXqF‰ĀP”ß“3®k „arbLOMm=ąå®—`P§“…<ˆŽŽ€#×]‡ ėēŃķt2Œ9ĄZķ>łÉßÅęf=uéQƒZAaĖɗcŸ}–}ŠQ}F†ś,s®K”?0Ėq[qæ$TAŪ@033F)4MC„Vęö½GSJF¢(āė Šš“\PDj¼xˆ]×÷ĪĶĶ- _åņю€={īT…'üh_Ń7FUž‚x§ó™žHČ `0 Ļ>{{÷­ŹN%Y(ā¢%ߋ;Ø5é pü¦ćøéč1¬ÆÆsHE2`†F«ƒüŲÜHB„[™ŪJ·B^6”mypĢ˜=|D_Ę7Ž‚¶lŸ<ĆP²mĆTdJɬ>‚µµ“[-ØŖ…š,Ō(¢#>E˜Š¼l Ŗ"@ U³raaį…æL“£ 61õćrAFŽœ*÷ŖˆĪ>€0Dčó²[Œ±ŲOĄ¢åra&qżm5Ņ»^‚AĪ‰śfŁKŽ…ļ\’٦ĻPŠF†vÜQīō£€`;S*ł^­M ¢ęŠķt i  x. Āų)JR„Gƒ$(ŠŠZ­öĘĀ‹^&Ś1°¶¶f•ĖĪkdNµŖ©ā%ņČDÅEĀ~Äķ/ŽÉ`SÓÓ t‡ĻŅsLŠIm\źA­Ŗ2cp‡ĀŃcĒpÓ±cŲŲŲČiŁŌaJ6Müöļ|œ/j‘ĀŪ?0Ŗ 郶ź³żRŲgYąDž7Ļā¶”Gæ(’ĄÄD-ŽONÕ@Ą„;Ÿ‰ŹŌīŌ»"♉ŖBU¹6«(v©ü֝4ExĒĄņņņ¢ńš‰Źc’Š"Ō)9/;Ć0ˆ3±@]×°¾¾ÅEn^ŁNéā„[j±ä{ƒ:Ֆ9Šd3¹9p#^qóĶŲ¬o¢ßėe"éæeŲŲlāc’lnd5äŅ£õ°tĖö )쯘} AbK‘ļ³ŌŇz#wćmY y†TūŠĘmÅż²Y iTGēŃļõy^ xĪ(hHšä8Čė(„ÄćYUUhŖ²“øø˜_sž²ŃŽ€łłÅF;Õx¼U! E„<ćš1®rĘ/TEEÆŪÅää$Ā(ÄĄ\¦-5ØG0ūVƒz+ HßbPo6Ģg Žpō~äĘćŲÜÜ@ÆŪMĢ–żKŅ uüöĒGĢ"|nƒ:-Ż Zž£ @öꜬ8 Y/(lˆä‚7cĢ–fĮˆ>+Ł(£X\\@£Łąy)DT¢¦(‹@eŻ$ˋ˼™B0;;ūŖĀ‹\Ś1P›¬ż8GHįTįL*Wš@„HŌ`ŒA>ƒRɁ\øZĶĪ¾Ģ Ü‚–Qƒ…» †Ż ŌŖŖe@ছnĀ«o½ś&śż^a¢iŠē/lā#æõŪØon>ÆAż’ųRßgdĖ>Kļ(<IVš¹żµ‰¢O 6t Ŗ¢‚€€ūk¢(Šż7qµ*r– ¢jÜyØ(ØT«w ]ō2ю€………’cŁ·ņŵ8„"Y_z[£(Š €P±¤Ŗjšƒ“S\꛺Įk½Ńvƒś¹ųF ÜxPcøm‹AƒĄŚ <ˆ#Gą•·Ü’TD õ7Š(Ī_ĒG~ūcŲlŌ/™Ókū>Ėõˈ¶ģƒ¾€>KµeŽŹń|~뢀 ’›Ģ„“ßŲ¶g£Ö&Ŗ @\’>żNd4€Q;›Į` IDAT?¶¢*ŠÄTvEQ`;Ī[vŠ`GĄŚŚŚ6QU*‘”?g’ɼ÷( x]½T%–õ XZZc Žćx>ƒZ¶m=سcyŌ øŪ j™,“ŗ¶‚ƒ‡āųĒńŖ[oE»QGæ×O% ±Ģ_JĪ»€ä#żöƒzčŁ/± K‘ļ³äš”^ʶmaJ ćAīf2 Q[§ģ3Ą“LĄŅā":ķ6…@aHŽEDć'—uœ8¾I3@ŒoE™ŖT*ÓC» “# Z­ī’x3•Ó&Qø†<3 Į(åĒ+ īµ¢0ÄääTźĢŪÄĀłŸŃ¬°ķÅŌŖHZ]]AąÕÆ~:­żA*"M)ʳėųĶüVœ'š|cį[õŁ„÷>’åC“„ Ӗ:*±-”K%ЈbqaõfCōIłh’ŽøTø#0Ū Ÿ8455æ#;J•Źa9×_U•d€§Är@„@ä_óĢKždQ­”ĀU²JeøśRlėn7p·j{‰µLā pĒŽÅ+_q+:­&śż~®“Xā#Š“gĪįĆł(źõtʹփz¤Y ū¬øåłFōKÜgnKjD Śž#Œh«T« ŒBÓu”K6ŸžN€ œļåx“Ū|† "œ‡@©jļĖ÷Žå ŽćÜ@Dī“¢šO\–Rīe„!e 4DÄų²ŃŠŖ ¢!*å2ĄŠ  —|P擞-•'pš/*ņšŪoCæÓ†ėŗń\—¾ˆāäésøļ¾d2·² ¼’@Ņ'[“mŁgdØĻ†jØ-ĆįmƇ ĮņP'Ó4cĘ.9AvaZa®­ć@HŃRD]‹’e]ƒ@;lÓs÷}ų7…&°½tĖöŁvŌsé³\ælՆōA[õ†Ū’‡цLŪŠQ†XN|b²†~·Ē‰9=åIĢ@Ģjå~B4M;H)ŠWæ¤tŁ`qqq·„HJ«É…$*®Čų TTŗa@9¶mo/Ż.Ł –m/ž VµT²Š”C8~ü(īøżvō{]øī °˜ŸØĀpāéSųūīC£^ßVŗ<ś”ģ³Ā–¤Ļņ',Ī\[¦}TŸ‘”>zØ”¶ ‡DĮał£ģ’ƒˆF(—JšĆ@h«  ,®ęDY’wö\݊„„„Å|½ŌtŁ \«ptT•¤Ņ*x§‚,Š1€1*"ü„Ų¶ €× 0MaÄļō ~¾ž-na[ŃXĪźŌÅ3{Ņmų”ccs³pPĖ]—:lˆ-ó„ņ  mäĪ0ŌX–cŽm Ÿ.“Ą?r‰4"kˆp Ē:޳VŌk/%]v(YÖjģ%”H}!ÉwR±!7ųRß -.ß$i+m`ké6zP?ß°! w%ą‘m+’¼ŠØL:„cGąõw¼Ž ‡Ą÷ žƒSD)N<} ŗļ7QoŌ·š[Į(-I<ż‹6L6.¶ĻRUܖū3t† HīgXkŪ„¬"Ā(ƒˆĪaÅX\RU†ŗĀ'–uŁK…_öŖĄDU'łūć=™.±L£ć+xø‹ē[3ʽ«½ž“5€pی`Ø~müņĄrfćėšƒŠ$ؔųĆm’Ńó•wSm²ŹlÜ.‡ĖīJm Nā:sØT±ŗ¶QUUń•Æ~nCĻpMąÄÓ§šė¼ųĄūQ«Ōb_Š¢ØŠ –eĆ0ō‹č3" %ŖVü\ś,×/d›¶ģʈ>Ū¢ZńP…gÉ裪§v‚k©RŠŲŽ—g  `PĄ@ÄOŒŪ*qG )Śe_2ģ²€¦Ŗ5łr¤ e”ޱ„‰Ŗæœk­”ļĮ©æŠ¬æĒĢHŗƒś¹”ą–m/Ī N' IbŒįoæöuŲÖ7ų£Ļ~×^sƒ~AĮ0LTŹe¾ęZ,.Ģ£Z«ņp—č3Ęr})n„ [‚;Ó¼MŸ1’/ĻōK8e[źŽč³äš8“_gn<ӟf(…Ł3žŪĻ(…mYhuŗ‰@¢ P)X¬!Å QÉTU­Åj§|ŸD,ÉM)!PĄC,Ņ(Ā(‚iņĮ®UüVü‘žXĆżßł¾ł_ž3Ī={„(XYك׽īõøöšk“›‘÷QŅ7°Ķ ę‡$'Äöƒ £õ®ÅüŻ×æĘ 3pķįżxÅ­7”R.CÓuT*%øNϜz>ōŽæ·Žś ŌjU±:ŽÜĻCƒ’}VT‹Ÿ“~ĮTÜg§A„ū3ŠB|‡ļ~÷qžü€1ĢĢĪą†nĄ«o{U¬ŖēĻ (澀z£- ŅšŪf+Q+¹„øłŒŁ©)Źˆ¢LÄėpc|å\”‚* Q*,ȵ€ šyÉe@,’Ej©¹}öóŸĆ·ļ’Vęŗ?ųįšš#ć’Ķ»pūm·ånj+é¶Ķ –÷9 źŃŅmėAd ®ĘWRT_ł»ÆÄ „ąŽŪ_kÆ9ˆÉ©)T*ečŗJ)śż>ģ¦EU@£ßüę7ńģ¹óxĖż‚RÉIõ ¶Ö P¤ś'ąžÜM©¼–”tа)µ•m£ŒįĻ’Ć—š½ļżSęŽĪœ9ƒ3gĪą‰'Nąæ½÷=±f˜>»BDˆ é‚0ä„Ā… 'Å@ ž;]ݚ(| )cP ™RDjf‰śHń’³÷¦Q’םß/Ž’[eÖŅÕŻÕŠ Dc!b!ø )ĶP"µqģ!%y$Łcɒ¬3cĖž0öĻńńČö9²Ēšń¢£Ńp4’F¤s%ŽÄ$EŠ;ĘF  ōVUŻ]Uٵäžöš‡ˆ÷ņåĖ—YU½Vӌ>ՙ/^¼xq’qļ÷J1+1}•ÄÆQą{¶m#„Ķrt^}õU^|ńJÅūöķć§?ų3aČ'>ł1666ųÜēžš·æķI½bę¬n2‰—3XvՓZe^ŸI-SĘBG’»„aĄWžöė 'šę»pĻ=w±kv³³»©Uk Ā0¤[ī`š&AāōŚķ6ƟxĆ‡ļäŃG„ £3„as øn¢Tf\D~Ł8± oĢNŸ:͉ÆQ*¹ćŽ;łŃyŽćš„/=ÅźŚ*‹‹óœyć,÷¼ł†"@éU¼hˆ(¦Ź@†ZØē²" ż–h …Ą0D£ģ–„[†iN£µ£ZpJ'R)Ō€Ę/ZĘ[,Ača Ź1ˆ„D€ģė?sęäē/żā/säšŠÅæ÷ū’€ē_xžw½ė]ł“z¬Xp5“:.»śõ+Ž@tב#I¹iZ|ńĖ_„V«ņš[īc¢R”V«Q«Õ˜™ŚE¹\Ę|,Ė":ķår™R©D†|ū;ßęSń—xžÆ¶°ŒXv5’--”óŅŽo-÷ĄļTyŅ–1xmn[ĘŠµŁ†Je‚}ssüÄOż¤ŚŽ¢(µ±Ń`÷ī=tŗžŃö‹ÜyĒŠk²m>ń©ŖNś½Ä@hń HōS¾ģG 2Qõ…Cė ӈ]WݲtėĄ0§®=AČžÖĬ'€²Æ` ˆ‚m©Ą v!MżjĄ… ŃhPŅņšĮp=$Üs÷=IžåĖ—tŲ4ī\>Œ bbĻ×l®·ŗ„'u(<ßgccƒf«©\[ll»@±P¤R™`v×,N×u±m…ɶ“7&¦–i1沄:Ļ® YLCYkö?M]ēeėč߆Ą45įkwŁJ£®ŪŪHŚ2‡ī’ΦF³Įļüöæęæło’kJ„Ҧ¢”mŪ|čü4ü?@\^^ÓÓ3ɼ˜™žVŽ}düĘcĄU}° aź³)żņŲj5Š¢ÄiH¼ś's\€a?ąLӘ‰ßޤĻBʈšl³DQ_”)¾ēaŪ6A$‘[©…LĻLS,)[f³Eµ6<ĻKņ{®ƒ! ¦{wœ~`S±ą*ōŪQz™–•ųh6[¬]Yeįā|rV@JåJ,ŗ½.žļ铖Q¼½Ŗ­ŁŌŲMĀ…ų=H źk»õ{q^ņü}O8ż:ŗ<õDŌ’Åy™:D™6śæ †ĮīŻ»ųųĒ?Å/žā?JŚ%JI±¶±šų“h·Zt:mÖÖÖyęŲ1J„år™ĒÖCŚq’Hģ‚ wŖT…”*u]’KĢ5‚i˜3ÜātK@ażņÆžŖ•ś(ś’>dÅHIˆ”ļµxĒĄ2ĶŌŖ˜‡ŽĮ©S'ųī3ßę}?ścHńķļ|+AzĻuÖ°ß¹ĶdŻøl”XpkōŹŃč$ū÷ļ§~Ē ‹—š\Ēqču{ōŹš–…ė:A@[›;N×u(„‘Šh[©&½‹÷µG{BŲ 8dź$ćå{?/UghčæśŃ¢ādZ&gß8‹ļūbåēż€r-×MĘģ7Īš­o}Plż“o{;ļ~÷{4'$RņØśj[6Q$)ŲE?Hņ„ęĆ(Tƒbē2~V9 ĀCü@ļ)25Č1›Ÿڤ²?šƒsqµ:Ē{‚_zžn·ĖÉS'XX˜!čv;LT'‚€R¹¬9ŽŅOģcłx2_~ Očé‡LĮ±ˆćŠ1·o®ėŠéthµZ¬—Ė˜–©8&½ ŠėuY__§ŁhŅī“évŗ‹E {Płz[+īcž ō4³j­üÉų䀿÷8ĢUđŠ©S«Õ¢ēōT$­ØĶAõǬ\.'z"€µõUĪ;Ǿżs©×³2ęą§”z‰0)ōNÖ`Jي¦:skÓ-)eš+æś«”‘æ”Q(Nƒ‡\@„h‰‚PĖū‚0ŌZ֌˜išüÜĻž_ž›/RæR'Š" v÷½÷ż¼|üe fg“{6AJC@pbAĢŽnŖŲ7?ŁęśÓ4©T*ŌŖ“4MŠÅ"†aķj;Łģõz4MÖÖÖil4hµZLMMR*•ØēIDä¹É]”‡D<6?MģY@4htyzkME‰Ļõ5Ł%GqPɘIyų­Üwļ}“Ś-žįYęęłĪÓßāńĒēĪ;ļĢ æĄ÷}„a>Ā2’Å&Ńöė™ģN^Q¼•FŃĘŠßätĖ9€0 בģ‘ČĮAKÆž Äd”t†mįū>†!V,V"Ę …”ņų’“_Ąqzt»]¦¦¦1 ƒ^zžb©ČōĢt× ß'ž–”Įx±`ܔmCŻ7PūĪÅBņņĖ/)āÕV_¹RƲ,¢(Āu\Śķ6¬®®Q.—©T&ØT*,¾ü:Łėeś,śØ:y@ˆāqŹ¢ ˆdøƒ! ŃŗÓTł„/}™Ÿ’ł_HĘLō‡"Ż‘į1“‚0Tī¾ēöĪń?öžōc% C.]ŗÄ‘#GŌó¦†? ĄxžeZńŗÆ I*J(#ķÜ6u”$9€†Ć{“Ó­€(ڐROb3Ź4ƒ$µö?¦kµ (±LårI”1)€¢TĀ d£±B§Óf’¾ƒLOĻ eĄ˱,å©õŠĮCÉnĶRØV€`”X¹@pŻõ)Ö “Zµ,p÷›īāĀ…ó4 \ׄŻīP*1- ExžG§Ó„ŁlR.—™œ¬Q«Ui¶:¼žŚėųž7ō ń3ŠŌv_z[pp{/³Ż'Ņ[Šq]cųŚ”¶ŒÜ-Å^Ļ! ~ģĒßĻÜÜ^ŠÅ"åU:ƒ2M‹_xŽV» ŽóīJŽ™WJeŠ…‚Ņą‚b±DĻé p–”ևų®? ŒOŖ†!ˆH",A‹Pqǵ£ØĮ-N·‚`=ö{Æ7ų“„ŸąTIÓ5 X@ß÷©LT” ¾oA}µĪÓĻ(+Ą;ļ8̃÷?„综|ü%ŠÅÅb‘»ŽÜT @0Z?0ĪVžjõ×jVļéļŁ3Ē÷ßϩӧčv{Ōėuå|Uū]ō}Ÿb±Čää$ŹVĄ4-ę/œįG~ų=T&*LLT“­Į9&? H<[¼&®=āhs^²,‹r¹Ģū9pč€ö Ńg?ņ8Ør©ÄŌō Ķv $œ;Žöćūóóó‰厽ūśžˆ"“Ņõ< T*^EK¦€ŚYIFLoOs‡~ (Ōūüa” ƖMślu¼ŖjĶæeāłB‚ŠŅHąąĮCģŁ½‡V»ÉJ}‰•śRrļr¹Ä#=JBģżyśžŠ?˜7s+̊KååJ™‰‰ ī¹ē^ŗŻ«kkø®§ĀŖi6Ž4- …„R‰J„Œėłœ=Žū÷S«N0Q­jOKŁ4Ųēq$;6”óń@ †A©Xdf×.:ČÜŽ¹ä4ć8Źõ<zšaÖ×W Ā€z}™z}9©]*)}Ƀ¼…Ą÷śĶÅ"ž®ēy.¦eźwéJQ2wć÷”ˆ®±H«·ZĆ hށŸn=ĮF÷n€F$©•­U•œ©EA›*Ō ‚w¾ćݼ~ā8õ++ɤšØLpļ›ļgļž9<ß#-ü; vķśnąé¦&§š<ß÷yšĮ‡YX\`õJ?šõ½TĄŠBĮFKĖu*„ ļ‡~˜©©I¦¦§˜U¶īćˆ=·lŌ9D`I>ĮēqPń¦A±X¤R©P(ś«’³ā š°Ŗ“üŠ{ŽĖé7N°ŗv„?€™é]¼łž£T*ŌÆ,§®Žē¢!pż@{°VėN$Hģ)Ņ»ŹĘĄū‘‰Å`E?€Ą÷7¤„( µ‚DłTKō'z°ū†Šųd¤Ü‚{Ž’QcEM©Ńķģ>ņQā8…bQ)o¤Ä÷½„kȲƒk*™·Ć±ćR©ÄŌädFͲ,¢PņÅ/’ {vļb’}ōŗ=č8Ų…o}ųuxr’©©)vķŚEEŸT7µ–gŕ-Ē”%Ķ1e1øfrū¢Tf¼Ķ5¦'wńČC(×jRR.)"ŒBV×ė)m¢ŗæŅØ=ĒĮ2āAW( cnV¦Ü%§ŻHˆ_" }’EQ3ŅD/I‰…ĄP"‰’UR"±m›NÆ ˆTX&}IņChOĀ”ŠĖV.II‰ińąuC¾ øžśx»llϬxrr eŹkR(xń„—9qź4Ā8Ź~ź€Ä²,lŪ¦\©$gŅǁ‡Wü­Į8n`œX0–#Œ„r€3Š$k«:Ųg˲±ōe!é8Żt#ś µUjÆē L+ÖOkāWkź¼€ž'Db‰ĻoåéJž‚ ZGś·efaA Aó±¼­OŗÅ06Z—5;kz(ėė’ę“o AžXŠ/»śķ›×j“ź@±Čüü¶]ąmO<ξ}ŹŠÅ4 ģBR©H©\frrRYÓé~ ć¾ń8fĘl[TŖõ­pPäĮՈRžēįiwjIvõ »Ć"#ˆĀĆ2hµZXvI=–Ō§¶°āĆi}6@3 ©]€pŠėu.„Qł7е£Šµ’j ™Ģ–A@§ēqŒv/0×V†õٲĶ&5#&ī5‹qŁõ™Ōy@P*©“§Ļ`Ł?üCļaļ\ l›R©˜8VMsPĆ\ŅĄCåŁ¶8Ø«³ė)Jeˆ=»zč2 øž›ģŠ“ŚmffJ赟Ų%;ōżŃIʼnĘќ\×]źüMN·Śķö)¤w­¦Č(BJS+õ•ü¤lĄ¢D¦RĒ$ķv@ Øć(a9r›śĘ€~`6™Ō)6ąZÛ}ģ8~ī³gγŃh07·—Ē}4©<øņåŒĖH.)õP[ä ś­§8(¹ĆcÉøš×ÓSżŸ/f $žė&y­V‡é™Yew ū¬j2 ķįZöˆ†al%(i4ē²=»Łé–{¾råŹ|$Õ`…D” ü™f•āŁk[IŹ#zN¢ĮķözÄ WĪ—Ō·ųGņ«Ÿ’Ź” “j(·õTµĢ]ūĶēܵė“Ķų`įXܹ·ė[ ?÷Ā <ńŲc©'ĖŽÉšSõ›1–q™Č+˳”Dö®™² s^b8?yśÜ1‹åó¼&SwŹLšn§‡i*öß“¬ž}õ¼ Cež®‚€jŹF Š·ŗĆ¤”—r;}Ó-€óēĻ×e$ż0 ˆ‚PŸ¤ŅDOlń„0F©uG Łå2fÓ4é“;\Õ¤ĪøqYźēĄ·¼Iiż&u ¹>žŌł%żĒĶ”=ū¼€·=ńŲŠ ƒcæ‘|ąÜ|ĢFĮ@Y>pęä¦@0 8·0f9Ą™®ē!„ĮŚź:•r…8ˆm¤ZG±[ŗ]o Q×÷żSRŹ|3Ė›˜n9H)C×s_Ć“ Jļœ»gLNY郕J…ÕÕU„!pßųۜԺ½ü²dÖå—„fģ™ŌqŁpķ§xRū¾Ļ÷^~€',$FŒŁ(K€€į²ĶĘlxxČĖĢéQ¦łķ'Äc–[ҳlƒ©;”@½~…R¹ ©(VÉNT҇~ŠõaF!®ć¾’ŪĮ›œn9øŽó½(Q†}Ļ?)v?ż>„VFŖ\©«ˆ7ļ]§I}5@@NŁõŌだ·$™ŌĒ_{×qyÓ]w1»k6éEöpųKfĢÄ =ŌPŁ*ędŖZNGuŁą ›ˆR¹—©± <¬ÆÆS,”o ”Ō«æn[ś“¢ž§T”“eŹqÅźź: š|ŸTšŌys9wŚå®n…ŪŠdk]ˤށąj&õsĻ?hö?}ĶX Ȃć`ÅĮꣀ“M€3oĢ2-ˆģ]3e[‚į“]±Ąu]eą¬o4”¢PčS€Z¾ļ×oWĶÖ0Š‚ž×ėuNävź&§ķfē¤L8€€0ź‹żÕ_iĪeo¹ · %õ+W„€i6[äÆn973©ó'īę“z Ķ̤žšżÆ7sR{N+,§ÉQ@3.™/ĆÕG=UņPłe™”†Ę38ĒŽŁfŌę@Šl60 Ļói4šśqHI õVńH²p”Źc Ņ»žēÉķĢMN;šĶõ3*®}@ØQR)ü“ė')1 iˆ¾÷`“‹0a™WVÆ`Ykk«ŗÕė4©įŚ'õ(bæI“ŗÕjsņä),Ėā±G!ou‹o8€‰ϲ±€8‡ŹFŽŁ0bn>f9!ā[ēŒKœćĘ,· Õé`š ‹Ōj5b’WĘ?*n…‘¼u+#Łāü€ ‘d}}żBn'nrŚPÆ×/H©‚¤0Š@UÄonŌ¤¾¼“Ģāā%&&&xąž£ż²Üł¾Ł˜ `bz˶4fŁgO=TŖl ÖH Č«–óIó9Ÿg>@v{]LĆąģły¦j“€Pj¢P9§Eū7L3_²ž ż š5wQÆ×æ“s“[’v ¼üņĖ/Ea¾‚žqŻ8ŌԐ(€RĀ„aČ®™YΟU¦Õńł•nͤhkۆ〠K.Ió9w³āķæ'{4Pc“½šÜŪ‰Mʆ°t詜Õs!±_–»ū’?fCW7?8c č§0 OŒ(’DØĀ=Ēem}˲XNéśiü¤Ī‰mNjøöI=ŠŲ·9©„”<§ķ’Ÿ|ā‰TŁpŹ*½2%7I”bø¬’P#ŹČ)5f91„‚õ ,Ėā̹y :¾‚ĄP«{‘ø/7”ćāö¤$ _@„“[­/gGńV¦ĖĖĖßĆ?Pz?šuXpµ’'‘bŠ“*S…öģŽĆ÷^z!ķNK±f·|RēĮ&“:óqµ“śōé34šMöĶĶqĒ”ƒ©²Ķ•^9%›ŒŁ`÷ÓĄĖ±c&†€`蔆ʆP1 SÕ²#ž4ŸsWĻóń|å8ÓÓ3zŅ!Ąd„”BĻKÕ®)„‘²iń=ŸĄ÷‰¢F£ń]vPŚQpāĉWĀ0ōbz„JfB¢B0™zĄ0āÉØ•ƒŚĮ„U(pęĢYµõF¬®*£ ¦ōhėźžyī9 f’‡o \~ 8!ŻĆĮ®ę’źądą³”Dö®™21ŖõśŠr?ļł,,^Rѐ…II‚0DŹxžBļR: wµ<ßSJ@Ļ;·ŗŗzĖ€¤ÓŽ)„×ķtŸņż×óš<0 śĒ€ć +H-@lA 7.Ģ/`Ł+õ•Tė[œŌ™üq~ą’­Lź±ślĖ©šC“:ÓśˆIżĀ /bYļ|ņ r9…ųŚŚļMł”‡Ģ)Ė PNVNĻć£H5”Ōü2ņŹņ3ēM A³ÕBƾö:S3Ó¦ŚŚ‹ĀHGSīoEYŚ?€0 d”r9¦]±·»Ż’3˜·4ķ(XŖÆüQųxž‡ćŗŹ&@oŠŌn€‘”Hā³K)ٽ{/½¢NZv»|ßh’ęČŗż/¹Ä~U“ŗŸ¹•Iķł'Nœ¤P(šÄćē¬nƒŠ0F”#@ā:pP¤+‚ćrõ=§Gƽv‚ZµšD%‚)Caš˜:?ʈ ōń<Ook_YYłxv”nuŚqšü±c_ ĆŠń5 ĀUÄN”„s%wE©C°°x‘ 0 ƒĖ—/ēŽg;gé˶0©‡æŒ˜ŌŪ‚ĢÄĶ)‹ĮMĮ«Æ¾J„ä¾£G™ššP¢Iˆ-’ F—ÅZīLXÆŲa‹”`Ņ!½b@Ī­Yæz.$ŽŁPŁb귐Ŗ–®¼“t˲hµš¬­m`šB갚V>K5å0M39µ*#åüĆs=rŻóšü`~yyłYvXŚq „ģn4Zģy>®ćą9®² Jœ-*9ĖŌ[1e€ūY3LĻĢrü•ćśØš`ЇlJėxõÕWyńÅY\¼;%=qsĖņęņØI͈‰«ŠŒŒwIśŌ ß{łlĖęm?–÷zĀ碜¾õˆ2¶!J BP ¹ć’³­'¹ĄE.ĢóņĖÆpāäI–WVFĮņVxžO·ÓCĮsϽČī½{ŚŽ"ŽVÅJiĆĄ“Ģ„S’Rmŗ®‹ėŗųĻĘĘśļɼ˜į·8ķ8X¼|ń#Aąy.Žėāzžv鯏ø* a mlūųHž}įEķ4$Éō“ ^ƳR_Įq¢(byy™³gĻ2NÖĶ_Ż6›Ō#&tΘŲBż›]_yõU …=öÖń~ Ä+žˆ]»(%Œ>@ ±&½~9= ©qŽ8}šõ ķ4ÖeéņeĶFęŗT śėŅå%LSż=žŚ JŦč;÷”‘²ž†”õ$āAEøžZż]Ē% –/_Žqģ?ģP8ńŹ+ĒüĄæģy®ėąk1 ҾLÓŌ+Š™DŸŚ\X"1 ƒR¹Āń㊠X©÷C‚J—/_šŌ}‹Āė©1q&uj[)KģŁė2™h·Z,.^db¢Āƒ÷ߗ™‡‚Į?!Ō¾w^yL¼ƒe[³L3eLCŸ[ ¶«5fłćIIOŸąKßce¹žGóÉ’¾ļÓj7†ąégޱkvV)ų ‘ģżG:Šu¼-m–^ż#”ĖÅs]<ĻÅuœļnllœĶŽĀNH;¤”įśźź‡}ßĒu\ĒĮ÷āØĮ1 j˜"€č;–žœšāŲ±ēZˈ•••1wDĀŠ) ⠚żt#ōbšŸf“Ē®n-gj åžĖ2-|ą …bæ\‰ś×'źō½ūFWƒø“čņōÄeżzżF’ŒüŪß—ĢC?•ęś`#ŅŒŠxž×ļd*Ł;5&C–––1 Ļóyłåć”J%„0 Ź­·öżg¦iŖ?ż|2’ųšżw\‡ X__’wģŠ“#`aaįćAj$UģTąZćŸ^yH^`ģ%H…̦eqāäI Ć`yyi,P«Õ29‚¹¹¹„½Ė–žø›ėRUSģ}暜խ’cŅ¾zā¶móևĪĄKš˜ćū„©8īÓdeivX?jXdŚ|ȐSĻ¢ĮēŹ®ĖŁūpI"!äĮkŹ:6bĢŌ×Zµ:4fqF†“šM ĆąŲ³ĻS›šĘ2- CJeųÉHÉ’ÄĻa$ś ćUĻu Ć0¬×ėÅM;Μ9sŚu=×£ēōš<„LQŹ@ÅęĒ Åz©7Ø|ŖĒšŚµ‹ļ>} ß÷ø¢]‡å„C‡qčŠ! CE›™™įŠ”CÉŹ8HŠ_¹É-Ė ‘ŗ.³ŠeW½$;wļ—ehąŌÉS 6oy˃›ūØÖó€ {ėė”ż¶Œ„‹Hs F’ŗ”Jõ\ƒAŸ;ģßūšį;™¬U)Ų6¦arųČavļŁóÄj0–——†Zé_|ń%*å ¦i"€ŲqmĢ ÓĄ²-U.T|ŹĄó׌sp]V»żFc-w v@ŗå‘Ę„•åå’§T*}ŌuœžC¹\”`;yцi`Ji‚Œ$”]™:2˩ӧ¹÷ĶoęāÅEfgg3§āśinnŽ9.+›āU궄šNÕé€<żJÕć ?6š‘ŹØ×ėl4LOOsųĪ;2=Ķi=™.Ķ(Ū”|Ž äŹ~q0—tMĘ,īLŅ”#&)]źNÜįĢSÅ’é5Møūī»3=‹ŪŒfäūkė똦Į±ēže¢6I”`cšQ+’Ō}ūoiGŸ ŒeæāōpœAą³ZÆļXöv0pģŲ±Ozž·ģ8.½^—^Ƈś)]@ģxAm ĘÓJķ ØĻ`×ģn¾ńoiķmČāāµYb^«Yqv}`ž’Ć@d™×AžäÉSģoyąL#į·Źm}€Ćr}¶_1;/†śƒĻšżė³žƒćÕ‰.$ś1tķąSÅ_„‘VRfoÓē°8æ€0¾ļóܱ˜¬Ö0M3ńD†šõ7 ÓT¢©Ł’Hų>=Ē”×ė)@Æ÷Ņ„K—¾’ ;)ķhR:+ĖĖ’³ļ{ōzŽ£Ö×NCö—S“!Ž&†Tę™V”ȱcĻb˜&õ+j«ļŚŅ(±@—©ÜI=Ŗ=œø#'5¤&īp{§ĻœÅ¶mø’¾Ģu) OŃüą ³„>Jw0H8ƒåƒ&õD˜ŹKĆ AŖ,›Ż×›$¦F™1NC¤ˆĆćŁl7évŪ˜Āą+_łS33Ų¶­Ų{)Ö_)¢µįA„7Ɖž^·‡ēy,Õė’|'żĶK;ž~śé?ö=Żqz Y—0šS/ĀP¾“•šJ1 ©˜ĘÉ©Iž9öNĆ08{öśxdŽTÖU_·ÜŁÉ9ł˜’V JqžĀylŪāžūŽę¬ų©_b ±‹Įæ<–Ge§ˆ=»R3œHŁ@Ż $Ų2xa.Ā•īSņk ›”’Å…‹˜¶ĶŹ•^;q’r¹ŒeŪDØX‘Œ“Å£©Ų’Ųõ—”A€ć8ōŗ]\×ĮuŻ—>·ÉKæåiĒ€”²»“²üæzžOÆŪ£×ėāŗAØ 1„"|„ˆQ; '”eĢķ›ć O}Ć0čöŗc‚ŪMWgV_›-CĐV‹©ü‹/ūęö133ƅ‘!†¶‡ļ?”³±ē4“{ŚP¤ŹD6Æ’tĘ@×ćöYł$Ģ×8 @°²“¬CĪ žźÆ¾Ąž}ū)‹T•BPÅŖPĒ˕ٯ>ū$ˆB”žJĶOĻ󨯬üORŹpx`vVŚńpęōé?ō}Æs½žR°DQ¤å“ŲDX%©ŠĘ× P,²“\ēÜłóŲ¶ĶāÅEm]xżŅVõ¹:€Ķ€` ˆÄéĢłóŲ–ĶŃ£÷“pнś—Yń“U?Cš9¤Ōo>‹ ·ÕłQ*i¢æā¶*Ü6ĢŽ©qĪ‚~uMju}Ū“ųŽ÷^Ā÷}Š„2¶„¶ždŠż7P>’lĖĘ0Lå«2Œ|Ēqčv»8Žƒėøgēēē?“ū’vXŗ- ^Æ·ź++’»ēyōŗ½D Ü1E†e˜˜†„m²Ń®Äˆ9Ćd’ž9>’ŌõNÉĀĀĀ čķfś|BHÖŃ\ Čp#šøpa»`óę{īĪÆ:DņWżģ·41걉AVNyŸ‡Ab¤(·™:¤8YE`’¾iP‚Į»/^ZÄ4-Ļćė_’&»vĶbۊ½"’hU€öJm’œHEč@ŸŽRRw{x®ĒŹŹņoH)ƒ¼‘Ži鶀×_żĆ¾ļ÷§G·ÓÅé9ŹĻz!„ÄŠŗõg …ņ¤tŹ”Ō4-Źå*ßśĪw1M“FcƒŅßŃśMÆŹ‚An n;mDų>KKKl›»`)†WüįU?”˜ĢŠ?DģŻĮš#¤eģį„}4H0^”й«\  ŁūŃĻVŸ}n`õŹ<ĒĮ0O=õ%¦¦g(–KɾųzõG(…²m™‰0”žÆ¶żŗnlÆrq~~ž“yow'¦ŪÖ××7®ŌWĖÕ¬V·ŪĮq‚Ą×Ū¹B+c!„Š!(ÓReS“5ž}ž–—–1-“ÅŅ!Ÿ×3žŌcÆźOš--į‚łÅ‹¦É”C‡(ĒŃҳ?ēšģ:ŸKģé¾ä\>¤@Ģ-Ļ>F$ņś3øm8xÓ¬„aŗ‡B·=õ)m+gĻŻō°Šµ¦Ńś‘WeeDŽŋ±,‹7Żu$¹:ÓŌŲūŒ¬šź@ößšYN%ż_&_gr>ѧ¤4Ėėä‰q›arńā"–mŅlµųĢgžš}ūöc[6–e!e„(o¾q„jŪ¶•ØiZ Š\×”ŪķŠītčv{8=ē• .üńØ‘Ž‰é¶€z½Ž:æ0’O<Ļ£ÓéŠé(.Ą÷cŖęÜ;½ŗ‹”„śpēĆ|FücP4č×č·Ļ Œ b ČÜĮŋµßHɟżŁĒٳ„R™‚]Ą0 Ā ĀOq–1įĒ1’¤”ų¾Zż;ķ6ŻvĻs¹téāÆI)o;yŅmĒ_zé/Ū­ÖW§G»Ż¦Ū騸ķZ£ŪX–„¢ ė·j‡!–]Ąå2WÖÖyęŲ³Ć`}c-'–ĄI×W? āÖ5šMŹ„ūöĶ1X)OžÖ Pźf+~¦_ylv^ǻ O³ ū¢Ab$¤n—ęgĘ øre§ŪCƒ/~éĖ„TŹж…aš„aˆēū:BµrIoY¶ö†¤¶żĀ0ÄqŚķ6ķv[’ĘĘæ_ZZz:;:;=Żv „”'NœųĒžē…½^—v§Óėįz^rHĆ4•¢'fł±)§DH‰eۘ–ĶžŻ³|ķėßdeyÓPśĻ»yāŪöÅH³Ņń¤¾xé–eqĒ”ƒXZüĒ-¤ŪŚ·Š‘ģŠ?ÜBZŽ™«5 +Ó “×¹Į?Ū²@åźźLÓäŌéÓ¼ōŹ«LĶLQ,“яŌ1)¼žžæeiŽŅ$>ļļ¹.½nG-@Ż.®ė6ž‡įNķütŪĄĀĀĀ+ĖĖæŁėõčtŌ‹pŗ]ßļ»·LÅņĒ…"Ć=Œ"µ-h™Xfżņgūžļ! Įٳg‚›¹ƒs-bŗöņ’Љxčą!ŅŖŗ…ö²ßĘ]›^•óŲ’Lķˆ”—?,¤ÆILΘ‰xTāļż×ńX\\HäžOś3ĢķŪG¹T¦XTJÓ8"U¤=wY–EAėā…Ä÷½śwččÅgeełŸ¶Z­ī{»é¶€gžyę·\×½ŲėthwŚt{]å3 B…g2“Ŗ0 åbFJĢ1”X¦‰U°)Ų6“SS|䏒Do÷Ą¹sgĒś¼) ¶ĶE=xą@ŅŚ§ŠĻۃ¬Č0T4ņš<ÖóU?Īϲ,Y< āo9¢Tŗ-żų> ¦‰ėxüĮž³{öP.—) jK/ńżŲĀT4³LK»ž30„¾ÓėŃi·é“Zt»]z½Žó.\ųHŽčÜé¶)eēĀłóæęŗ.v‡V«M·ŪĮó<¢(¦¶ PŪ7&A(!’!‰m[ŲvŹÄ^ń±O|!TlĮsēĪŻt€“:.K+½tj4›x®ĖD„ĀĢĢŌPk¹@°¾¤Į`,Ä}¾’ą3 ēfõūœ¾h6+ūP…ó &„AČüĮQ(•©V«TJ%,ŪRrą”F«ä~åķĒĀ@¹žGÆŪ„ŁlŅī“ń\ÅÅÅ_»L~G„Ū^żõ/4[­Ļöz]Śķ–VČØ­A™¼H3Q ŖˆB’( k P°(ŠLON±ŗŗĪ_žåg0 ƒ šXX˜æįۃ£RV?Š…¾Ž€„„% Ó䥁żŒ!ČYd’R+ō"ÆģßCõutŁąõ9«žH¤Z,‚ā›fū'£ˆÅ…yu0TJ>śĒJ #&§¦Ø”ĖŲv(Œštģ¾Aƒ KüD(÷bŻN‡f«I»Ż¢×ķ±¾¾ö;õzż…¼Ńø]Ņm RJłĀóĻ’NĻYév: ™Ūmm h”f²5(„ŅØ°ĪŚ·›Ų›B”ĄōĢ §Ļœćo¾ņU=Ēįāŋ·š ūDš[†b’ !Ų·oß5Ż'—GĮøņlrĖS÷Ē)$ü@1 —Ē@%„äā„‹ųa€! >õ©æ`}£ĮŌō • v”H$ń{žKØEÜ2-u 8ŁJ† P.źŪ­ĶF“N»C·×}õŌ©S’,惷Oŗ­ Łl^yćÓtµ'Ūl6é“ŪøŽCĘ `(榩„„:ÄJ\Š…"Åb‘Ż{÷ņ̱ēxęŲ1 C]¼øx]9ėu)Š$++u‚}{÷^‡ū:Nd؄ˬ5T.rŹdž˜$+žˆŽŽ‰(ŠXX\Äó\ ĆąsŸ’gĻ]`fv–‰ŹÅbxž×ß=’Ó“’†i‚!Cµßßjµh¶štŚ-\×uĪž9ó3RŹĪˆ®Ż6é¶€7Žxć;+ĖĖ’cÆ×S(ŻjŅķtš\W0Dbd¦eƒa(Īa@†Åbr©ÄžxźĖ_į•—_Į4L:ķ6óóó׬RråŹ™ŸŸgeeswåćŅ•ÕUü `²V£R©lÉbpó”įFto]¼ “d$Y^^faq‘K—.ŅŲŲČæß8֟Ań$ Cęē/ąū.†0ųŚ×æ©{ģ„6Q„T.:źÆėų>RJLĖĘ“”°©€FQˆėøt:mšĶ­f‹^ĻįŅ„‹æÖl6OŒyŚŪ&}_ĄsĻ=÷“šķÆĘ¢@³ŁT¦Ā^jOדōŸ:/ µ’( C¢0Ā4Ģ:ħ’Ć_óō±cCąyē/œæ&XYY”ÓQ‹†”Ēqh4WŻŽåĖ—‰¢ˆ¹¹xõϳ~»Ś$M"ē[6CnŗųÆ­Æį¹žņ÷'”Łl²¾¾6ŗė äׂ€ óŠ >÷…§ųŚ×¾Éžƒ™¬V)WJ|ĻĒõ\ü о#Ō)RĖ4° Sū’÷\-÷7š“šjQYol|tqqńOFuńvK;Ś)čv’”2¬Õj?’Īw½ėø0Ģ=¶eiūm„ȱõveYH_b™E”ÖśŲp±T!8tč_śņWh5[¼ļG„ 8wž‡ļ<ŒemčŅ`§N§ĆōōōU=óÅK—‘QÄÜŽAG¦ŠH“#Ņ"n46ø¼“D»Õ"Š"Ź• d×®H_2āś~”ŖŻ’6ŗę ßO‰Œ$ŻNwØ®ēłŠŠœ”źÖS¾Bū„2]ĻeAūō“>ń‰OrśĢ9<ČädJYłöw=Ēw•±O! KkūÓĮ?<ߣ×ķŠj5i4Śč§sņŌ‰æ>jDnĒō}­VkåMozÓϽᆵ·ZŚk«>!(… `Ū”‡DbJŽŁPż Ķ!‹E‚żņģó/Šl5łé~0 9ž‡ĮÖ.£¶’¤–s„”Ś«Ģö“ļūJhģ›Ė“’cƒ˜AĻ»ĖĖ˜:}r@ōp\‡õõuīæļ~öģŁCāyW53ā Ŗ¶€×0 Ł_B€i™Én śŚ0 ³N‰Ó­ßZ ×aaaĆ4 ‚€|ä£,ÕWŁ·o“µIJåRręĆq]|×KœÉX¦I” Ī˜¦ņ#į>N§K«Õ¢ŃhŠn¶pzŽ·°°šÓRŹ6ßGéūFˆÓٳgæQ_Ył §×£ÕlŅŲhŠnµpž²ŌJĮ8¢‹m[€‘hŖ@¤¦iR,©V+ģŁ;Ē™³ēųčŸüi~ģÜłsŪ:; „Šnŗ]‹W*•«zĪK—/»“óŹ1w&Ž6ō|S§OE•J…·<ųī}óQ%ɈsÉ©ČxŪ0„±ßD¤P[mł÷4²”Ėå$®s<&‰+³ģ 4żŸĄFcÅÅy ÓĄs~÷w?ĢźZ“¹¹½LMMQ®”1„Ń'~ß×§C lĖ¢`ۊ3ŌÄļN·G³Õdccƒf£AÆ×ćņåK’duuõÕń£pū„ļ+ NĻ?’ü’ö®wæū!?[r!BB±\ƲDb3ļĖ2  Qk“š^–eR,5å£nåŹ:žwæĻł+æLĮ¶¹¼t™n·ĆÜܾ-ī™ššR#UĦ§§™˜˜øŖgœ_X ģßæÅ+—/]" •Kõ‡Žņ0„RI?§…ė¹TŹå”k˜š\^?`¬,  7…»fva[6ĶVĖ4)•Ė@Œ‰]“-Qšž„Ė—čõz†A»Żįw?ü{Ćd÷ŽŻŌŖUŹ„R*ńĄu\ĻMō¶­X~ĆPĮ=śēū{“Z-Eü ŗŻ.«k«æ}éŅ„?ŚŹ(ßnéū¤”ā?Ļ{޳ Į{ćb†!@G2µ”–Ša |_ˆ’@JWP,”5Å5l4›ü«õó+æü‹ĢĶĶŃl5éõīøćŽ-éb.ąZÓł óA2’Ż<­¬,059I©TJˆqĻž=õw&F±ųy5R™z Ld*×j5Ŗµźp£rąŖŌĶ$žćqéņE¢0Bo¼q†|ōOŲµg3Ó3Tk E„hu×Įó<Ā LŲžųĻ“ā#揵—"žuš­v‹ĘĘƟ=sęæŪé6}߀^‚ćĒčįGłš€· A*H„¤X*+ĄŅΉeYJ3,%”@ŅVĘ!„bA‡aR° üöæž0’ŃOżļxĒŪ £€sēĪ27·É8Ż Lķv›•zR±˜Śā¹ėz.(W*l46ø|łŻn‡b±Ä޽sģéŅ< IDATŁ‚ńmCTų‘£(L2F(…Zź³e묮­źŖš¹/<Å7æõ:ÄōŌ4Չ ¶] ŒBW–ĶĆMĆL¶ś,-ó !”Kļdå_gc}ƒv«M³Õśāɓ'ˆ²óėūn[Č!ų”*ėėė­ēž}öĒßöä“ßEˆ»ŅēʅŠŹ’›„q!J!F”RFE!ų)%¶­¬MSŃ7ęo¾ś5^{ż’é/ü„R‰ĖK—čt:*Øčˆšc×#; Ųųš–ī#„2h‰]©·Śm–_ž2RsøÕjSæRēšGøėČ]ńU}eঊ@U_„ķ„5Cmš§Btõ˶ƒ€„„%ŗNÓ4h5[üžü{:]‡#GŽ05=M¹TĀ2-‚0ĄqTt^Ļõˆd„)ŌjŸXłé•?šµ•_»Ż'žv‹V«yģÄkÆżCĄ#o#ćūn+% H„¼āĢNēŹ‹/¼š£½^o„ÕTZŻĘĘ­VĻqƒåļM­¦eŖ•B˜ŹóKāū>žļ…–iS©T˜ššāĄž¬5ZüÖæüæX¼xĆ0iwZœ;wö†98sö,ApLJ¶|ļI4Żn§ĆÜŽ9ģqø’„‹‹ó™ØI)eą–m r ‰†–ż¬}€¶ōÉ©%%ŌÆ\įüłsøžƒiœŠŹy°Ü‘3/wtŗ-8€1»•|Ńh4ęæņŹūzč”oƒ¬&X-%HŠ”ń›?žĄQD†D‘$š=uœXJLˤ\.)ĖBŪ¦]*ņ»’ęßņŽæūü÷½ ĮņŹėėė8p@›ž^æōʙ3ų¾Ļ‘ĆG¶|M”PHŲęB”ČŃ{ļCA­6I¼qę4Ķf#QöS²ó>2Č)I¶[žĖ)ä(ʁĒå„%‚ Ą0L<Ļ᳟}ŠcĻ>ĒĮ;)%je‚B±€”®ė)æüž‡ļ+—^±ķGrøGAų8=‡n§ĶĘŚŗ’ū› :ĪÅÓ§Nż„ć8k ć~¦oųAņÓsõvą v,l“čŘr°²²rāäɓø÷čŃ/K°A*+@)‘Õ( !M…Ņ †‘x ‚)!ŠB,ic[6ÅB SØćʖmóģ /ó̳Ļńs?ū³ÜsĻŻaĄł 瘚œfnnī*܀ §„åeÖÖ7˜šœdĻīŁ-_gÅBĻ÷)•JI_¤”T*(×éZO02Å·£€ µ[æū|śPqų––/Óiw”O!xń„ļńé?’ ÕÉwŻ}7SÓSTJ øĆ$.Ÿ’÷ƒP½+ÓPžĶŲ©§iØߚųŪķėZéפ×뮟y损tē"£ēY ܶ`°£ą:½•·øøųLļ»ļžū’ZJY‹BīIź°Ļ”Ėš00DĻ÷µG”ˆH*?ńRš*ąˆŒ°m; iŪ„B‘V»Ķ~ōO¹÷ž#|čCd²ZKŽīšefzꚀąü…y|ßēī»ŽlūŚj­ĘĘʆ:#”ćÜ !hµ[‰.”TŹnę„Qś>§”‘.ļÓĄ°¢PŃźŚ*ėkk‰#ŽÕ+Wų³}œ•ś*sö1=©}*t—ĄÕ2¼ė8JL‹Tˆ/uö#ö ©\y#„rźį84›ĶDęo5›t:ķ„3gĪüd·Ū=EŸĶ—ý™nK0;”/cdśÜź9åŁ¼±Ÿ»wļ~ąü|„RŁS«Õ˜šžfjrŠZ­F©\Ʋ-„Š«E%gÅU”upČ0 lK@ģ9Ę÷\Ļ£ŻnÓl5©//óćļ??üCa„aˆmŁĢĢģbzzśŖ…ó |ēé§yē“oēšį;·uķśĘ:'O½Ą¾¹}ÜyĒaŚķ6gĻĮqšČƏmSdµ[ Ge •EQÄź•UĶ %f tO}ńK|żßäĄĮCLĻL«Ć<„2–eŖ 1˟ųØx–ļń lmŽ+%¾GÆÓ„Łj²¾¾®uA-Śķö§OśūžēĶgzšžĢ[ł7ĖĖ™$sß-€m¬ųćVūQæĒ~ÆV«w<śč£Ÿ­T&ŽTkU&§¦™žŽA ‚mŪzÕPždü@YF”ņ+*<¹e)öRŒ3•)©Æ¶•Ś.õ+uL!łĄOż$oy˃€²57 ƒ™éfggočŽA6<õ:Ķ–:€»øŽÓÜŽ}ÜyĒ‘«<”ø] P–—õś­†V4Č(ä™gŸćó_xŠb¹ĀīŻ»™šœT¾ū 6R|ßSņ¾ėā¹źP±¼sd¦‰aé>”:ļ”Š5ŲX_gC«Õzńü¹s?ć8N=Õ»<Ā£ōفÜq@pK`+žVWū«ł.ŠÅāžĒ{ģSµŚäĆÕ ¦¦¦˜šš¦Z«Q©”±‹E kŒ£Ä]tEŠ#*`¤r0Ŗō1”ļłōz=ZĖKĖ ?žž÷óč[Vś…H‚LMN1;;»­³W›”£ŒÖÖV tĢ;˲ٷw{ö ź)¶?7RÄ>tiæLEĻ­ÓķvØĆQš§ŸęĖóULĖfļž½LNMR­V(ŠŹ_&V}®&ü0ģķTŪ{jß°L½żā{.ŻNWļ­ÓŲPF>ĶfóoO<łK(mæd<ńoŪį v ÜtŲ"ń_-įēż—0łÄ“O~tjrźŻÕ‰ j““LMOQ«ÖØT« Ź…x¼†*hDF H”ĀŠ4ŌĮ˶TR)ĀĻs Ø/×"ā}ļūž|ā LÓRNI$‹E¦gf˜žŗ:ń`»É÷=ĶŌSÉ1Ē‚Sµ6©†!ėėklll¾Ļmą»ßųÖ·łŹWæF¹\Rēö«5ŖŠÅ"¦e!õé<×qp\O[õÅ;”«ż}ŗŪ4@ŖćĮŹg¤rÓŲŲ ŃŲ Óé°¾¶ö™³gĻž:k=刿¼26łžž•—÷ū¦ƒĄM€kXõ·Jųqž1¢l ”ßśÖ·žĪ®ŁŁŸŖ”ĖŌ&'©MN2Y›¤Z­R,•0-c  ĀPłˆBĀPÉŲ„”R<ٶ…e±L)Õé=Ļóp—V§Åź•+ųžĒ¼÷ļņŽ·æb± ’Źå ³»g©NTÆĖīĮµ&‰µnXń•lßj·X__£×ķ„āźEt:]¾łĶoń·_’&µ©ivļŽMµ:Aµ¢?>±éū>®ćŖ±Ó«~)ŹĒƒ©½=ɎAE„¾ā¾:6†"žfSģY½rå.\øš€ĻxBæVP÷98ˆŁŒ›D˜7®qÕß įg`+ÄofڲŽ|ōčušĄ’¾T,R­Ö˜œš¢6©@ R.céc£‘6“b0ŒtY ¶i`Y6VĮR⁩ ‹‚0ĄÓ¢A·ē°z„ĪźŚ*Üwļxū“Üō^ ÓŌGcLƤ\®P«ÕØÕj7EL—FĻž«” ­V Ēé)}‡iŖÓˆžĻńćĒłī3Ē8sö{÷ģe×®]LT«jÅ/1-µĖJ”›ņ¶d”h“lµÅgé?ŁÖŌ‡­ķŖŃŲHX~§× .^¼ųĻėõś’ (EN’/öō²ŻĻķp0n ÜpøJāß*kż+„?®Ž°{÷ī·ß{ōčļLT&f'&*Ō&Ōj5Ź•>[G‰ ƒ0 Ō‰2ØT¢Nš–‰eŁ*¬“Ž“(ūsß÷q]—nÆGÆ×ee„N<śš#¼ćOr襁DFV”ŖĄ.Ų”Ke¦¦¦ØV«WķOąŚR_,š}?V¦į8=üĄW.Ų xH8wī<ß}śi¾÷ņqŖÕ vļŽCeb‚źD…r¹œl„J”Xāū¾fõ]_…čR‚a` üÕ²ś±ś(+@v]W: ®{h·Ū.œ?’ėŻn÷5żYȂĮø2Ę|Ž„qŸŒų}ĆAą†Ą5’vVżqÄmŒ)YDz¬Ż=ōŠoĶĢ̼³T®09YÓ 0ÉÄD%12LåVL¹ ¢( „²”‘2˜B`›¦r;e+aBķœŌó\§GOĒ<\^^fr²ĘĆ>Čż÷ßĒį;ļTbˆRß÷1„²?° l˦\.S.—•ā*<K±<­Caiƒ„Yńx.ł¾Ļ™3gyķõ¼rü8ž°gļ^¦&'©TŹ”J% šĶ7M“(T"•ļŗJ³ļ¹ų~@F •ćCč0]¦‰©Os¦©ø®HmÕ*÷šZĶF“V«©Žó®®~žĀłó’ Šd˜ČG{4¦l3øZ]ĮŠļŪ®3ń9Ÿ›@–°óŹõ Ą<|ųš/>rä×K„’˜˜Ø299IµV„VUö…bQĖŖ»Jö ¢©ĆÉHÉ ÉÄU¦©±JC(=A^€ė)Bč¹.Żv›ÕÕUœn—ĆGsĻŻoāūīćą”ƒżÕ_‹ē±Š?łfšŠ€ŒžŸm[‰ ,Po•EQH$••¤ “jėń®…aØćÕńŪ ‚€óē/šźkÆqöģ9©ÖjģŽ½‡r„ĢÄÄ„¢ņŗlŪź¹AŁāė)×Ü®«Y}}"ShC„ŲyKlŹ+ō‘n©m3\Ē”ŪėŅnµi5›4› Ś­6=§ē/ĢĻ’‹µµµæ`˜ØÓœ%öqe£źÉƒa® ļ{ś“æoÜLøāߌÕGōy„7sź§ÆKž¦¦¦yąĮ³\.ĻVŹŖµÕj•Śdr¹¢V3ŪĘŠ“ZOģPļ„„‘ŌįØ#P¾I° 3‘a-ĖV@ +K©&¶ųx~€ē*āp=—N·ĆŚź*žćņ¦#w±’Ąģgߎ9öīŪG©XHŲó<–z7#žÓļ*ÅJgė§^˜€N·Ėņņ KKK\¾¼Ä„Ė—8nžņD™ŁŁ=”+ŹÅ"år‰b©Dģ›16–н.Axęõ}? ‚Öż‰£<f<>“÷&_ėŚķ6µ­GK‡ģźt: gŽxćŸyžw†>§’$2HĄ!£9ƒ0'3`ŲńœĄ €-¬ž[•ł·ŗāgæē€AŸšs‰=Ug Ļ4Ķ]÷Żwß?Ż½ūļ”ŠE%æV«Tõ.A¹RÖf śüšąU"u¼X™Ē>č#P²rJ¦Uœ‰aY˜ĀŠ'eÕÖc…Š-ö<ß§ē:ŚņŠ„Ój©xu• öĪķavf†={÷29Y£T,R*–(–Kź{I­ĘÅBHJ\Ļė[Õy.½ž2­ķõz4›-–WVX][§¾²BĻõØNTØMÖØVkŲ…‚ZŻ …d…·- ò°M)DbEč<žēāźwˆ5ŅžŠHiö$ba(—]±ļF×qčvuD(­ƒh·Ūø®K}eå󋋋Śō >&ą|@H~§Ķß*wGų[Ń |_Ąµ¬žJ:ƳöęˆņqY‚7G|ZÓÓÓOÜ{ōč?®T*{Ė„²Ņ^W«TkU*• *•JĀā&Zi‡~@$#"-„”)%RÄ C+ bb[&FģĘÜP„a€¢d%‚žN„ēųOąJÆąøźd\čz~ĀĪ+«Fµ})„:(”p"¦‰e›XVAłĢ+(•Õ”;ŽŽ“ X–©M”ūW”ͽA)Åy¾2Šņtō]?P:EÉ8ŚO£”Żr›¦™p€b÷ƒĻóčõ”ž¤Oų-egŃj]X˜Ÿ’7½^ļ5ś„žžLö{–ȳłéĻQł×¢H’÷ūF€Ą­€ķ¬ž[RŚ1LŌŁ¼xå73yŁßŁ|+•Æ:tčGīŗė ³R©(ØÖ˜Ø*(•X`Z‰Ć ”V¹(Š #ҁI¢XBƒaŁMcłWR2U~:bŽ”ZĻi€Ń…ʹ‰ŒĖ¤T‘DŁÜ÷ß½ĄŠQp†Š®lØķ6ĆTūģIŌ]& C)9u›ź¬Dˆ?¾ļ„¾č2Տä„k„Śf_¾ŠJ†XĪWģ~n·7@ųŻn—n·ė^\\üäśśś—P<"  OōiāĻ~[įņø„qÜ9ådņÉäõ|Ąf«’8Å^ž\?Žų³Ä&śųĻŹŌĖ––eķ»÷čŃ_˜} X,211”’ŖT&*”ĖjĖŠ.ØŲ‰āJ³±”ö3…Jéjób©C”ƒņooi(Ļ¾Ź”ŻWˆ™jµĀÄ0H”fĄą~½¤Oģ2Eö±‡¤Ōļä%­lÓÉA`)‘š“‘Q”ˆ7AąhŻGÄƞMF’“b"féĶŲ|7å«ŃHĪ'Ø-ÕŲō·×ėŖķ¼V;öяć8Ōėõg/]¼ųēQ­2H죁`3`Ų*‡…ķp;B ø`ėŸ&ņ, ŒZįÓ+{įś>”799łšŃ£G?T®T&‹Å­õž˜Ø*…X¢ S²±¦Ō"Ё C¤D‘bó‘2”G «°Œµū¦a LChmyL̊•$”‡ÉŠDNZ1Ø.Šžb½E$I>ŠT`ՄųĆ õ["b‰•Œšø¾¶4Rł=Ū£H)õ1ߘš;ķ6ķv‡n·£öś[­śłóē?ķŗī  8&žų3 AN0Užņ>³¢ĄV9«~l†¶ńčCLšYĀĻ“Ųś·Ź·r¾§Ū›Ų·oß;>üīb©T(K”Ėe&&*J70Q”T.S*Ŗxō–i©ą“Éė}Ö=!ŠŌ"’H¢Åķ·@S|ę^”čYZR-5›—4± £OOjBķˆŌ¼T w”°÷Q̽DI„Q˜€Hæ=v”ŽAmu)杘» ’‰^Ćó<MŲiB·3łyu²÷(ļŁ³ēŃ#wŻõ’µw5½#G“$6)JŽ™ŲĻa½› 9å䐒É!‡9‚ÖĪ^¬=£•,‰l’9tU*W7)Ł3¶Ģz€@²)źƒŌ{õŁŌ_ó<Ļ'٤­ƒĻf3˜Īfē®Q'ĖR0&mū×K]!¾®kh|ÜlkG¢¦n½i¬( łtGćkĄxä3§­}õ×g»·Ļõ/Śųžh¶S…Ńš7ä½”i`ģēŁC+4Ľ÷É;L2¶żŽÅ”čłžœģ³Z­įa¹tV¹„ÕŹ5-—ĖÅ’nnž6ŸĻ’ nµÜ’ÕĒõ’ŒYaæ$’7ĄE ÆŠ€n h·Ŗ š¬^@W¹Ę÷RÜßĒĶGbsŅSo€qo€¾Gv~~ž§«««æLg³éd2$h*Æ·nū6®Ų&±ŚĄoŅxaĄ±qk½Gķ¾Öŗ¢Łę^€aÜßlćōéŅ–Pl Ųl6;Ä_­Vžn¾nņĻb±ų|}sóÕrłp¤D‹+=ąHvJō{\¤p@ ¤2aßJć ,AŚ>:Ų[śäśx4/Ącu)žēŸÆg*¼b@Å(}÷īŻļ.//’xv~žŃųśśd2—/pb0™øyģå7Ę@bŒ‹å± ŽXgš.<Ē_īĆvYü)Ń’į£W†¼”ænøĆ%šp  <o˜ā›8ń©, XÆÉįWn{³†b³k-ürw÷ÓĻ··’^Æ×?Ā.ń„ųĪßųæė*Ė~Ļē···’],×MÓ,a×­_Šń9į ¶ŒyÜś‡ „Ż’£qż/u?€/-’ ¹žcpDĒģæDųŲ#š^Ž‹0€qš¦gß{ył}–eĘų¾ł,›@–„>Y8É$ówņ‚€³ā°1Ē—©§€V™ É*ķ\Üā†ęгhšŗmj‡µ%”„u¤/Ü4gœ5X›VŠ¢ėīĢ[ÜŽŽžųéÓ§ėŖŖ>ĆcŅĒČ/‘øėĮĆ) ˆ…oŹņ#^ņŽ@]į뛐šB”@(²öŪ—AXø‡!…ōs›étśįāāāŪ‹/²45t~@–:o ó š_n[QšeĄ6&÷77ÅåNģ>{ą nsÄŗ×žögŪYƒ®^_WÕÖŅ„æa禵īeYŗž7kÆüåīīēO÷÷?E;œD1wŸ'ņ(Į 6Vc±@ņĒŗi¬‹łAŲ¾ż¦īԾٗ›#@×c]" U(į%!ˆ‰†T2¤ŸEƒ±1ęd6›žŸųp–3¦‚Ą§Óń$1;”B+ĄoFō4»’vąÕž¶d4Łh+ėo~ā[{żœkŻ„ėē!”e •ŸŸPEuw÷ė|~æZ­ī«ŖZś7ät1kµ{Éźl[}.”*@ŒüÜͧ֒Ł]~€ÆG~€Æ,¢ģļ €/qĖeB‰X”¾€XE€‰/ ĻąžPC‘$<œiĆ“¦'ߜœüęōōōģģģģ}bĢŻżvŸūļ:ķ¼€į'?–ęĘ^hŪ°«.T~I:ė š¶Ļæj'!µŪŽšA}’yī?·Ö.Av•„::æ%WŸ[xŒļcbĄ“–­KY~ŗ- ĻšK„µVŸāÅžą yR^ Vč*r÷ž“½Ė+ˆ5ń÷ 55=·ńxœ§išO&“i>ę'³ŁģŻū÷ÓԘäQ ¾ķü£Ö„׈ĖO:©ūæÓ‡P×P…],«Ķf³Žl6+kķŗ®ė5ģŗĮœ$ܝę÷XŒOÉ.Yzžų Y|IhxčĮ]ü}Ż}ˆ,ł:^ƒ!ā‹’3ЁB€Ė.o!ļ@ļ*†ĀƒP!”' Z9J›ü»ķœƒŃh”&I2IÓ47Ędʘ$I’$1&1diŒIŅ4'ĘhšĘZ[•eY•ÖVuUUÖŚŹZ[UUUWeYn¬µkkķid·W²ųœ\]å<)ĮĒ-~ˆš!ŅK~nķŃåēVæÆÅ‡Č¤ķ—">āÅń B@×CIBIøõ•Jy}†øÕ—Ā‚XG”ˆ„D Š tn¤sBČueø„9FüI»jų”1©–/‘ž[ü{OÅ oŒp$ÄG¼ę ŗóÜKˆ‰$}¼„'JŅņ!}?žł¤|żNŅy ODč‡ĢšRķ[ź uīÅČJų…Źw]I=)›äęUé»Åz{Y{€×C|Ä«Šo*Šė!@& ĻpAĄm)v—šŠhI‘{ ÜĶ:äK<Į…K8é|Hē!ż q]Šƒ„śxWĻ ėŌzsk.ķÆA&}Eö5d)Y{Npjńńūņspµx}ÄG¼Z xf1 ė1! IC)w U¤n@. <&>ć%ŹPՀ{’ą€#D|\JI1īN‡¬>Hī»”øŪ§^jÖŁ×Ņós$»ķĄė(ŃSčXL č÷$IIDéš`”¼ˆŲ1ÜčSB¤äĒõŠ9»ż±Œø”Ły<—ˆ]CŲ…—ŽO CpŒ~ž†Ēx‘ą8ˆ8* 8 _ ­Ē”+ÉŹĪKÖ9”päė<֗¬}ĀŽ'ōb‰Aé<ŬŸ'K¤ćńuؼ‹Ķū¼¦Æćą1įc <žł8Ēѓžāh€b1ąc!AąŪRL“Hó ōćś1Ū«jļ™Ų9”ąD¬fL xrŃ%Ą¶¤(YļŠū„<i ŲøDīŠzlģhIOń&€cOA ćQB¢ ‘Ē„¼'*ćįĄcbKėü˜ŲgąßGBˆ(”PøŻ% ”ø›—P.DléłŅ÷°wš ’åM GDöóč¶$ éB‚Į ½Fģ9}3żTöAMÖ%AĄm)d¹ŻRüŻEčŲū„>_×8ß’xĒČ1p€(šń>Ā€Ū]=ä98†ćPņ#jaL ųö!ĻįKžéy”Ļ$aŠd—0XŠ! q÷¹ĖĶŽķ牺®cøģóŁöAģĒ!°o\Ķ­|Ÿcśģļ³o°d— Š=„ ›d} Ūēy’ōżOEŒ˜}h}­s׳ó‡«Dļ† Ą3 §@ō'ēs’ū©‚pČdoüÄc/¢“IDATē)ĮŸ€Æ„=Dbē°g’ /ƒ½dJWŽ…ćÕ@‰üŗ” P O-)Š#† €B1`Ø(† €B1`Ø(† €B1`Ø(† €B1`Ø(† €B1`Ø(† €B1`Ø(† €B1`Ø(† €B1`Ø(† €B1`Ø(† €B1`Ø(† €B1`Ø(Ę’Żæŗ|ĘĆfhIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/csd-dtm-interface.xml0000664000175000017500000001236514632072346024310 0ustar fabiofabio Whether the caller can set the timezone The return value is not a boolean, but an integer with the following meaning: 0 the caller cannot set the timezone 1 the caller will be challenged before being able to set the timezone 2 the caller is authorized to set the timezone Whether the caller can set the time The return value is not a boolean, but an integer with the following meaning: 0 the caller cannot set the time 1 the caller will be challenged before being able to set the time 2 the caller is authorized to set the time Whether the caller can set the "use NTP" setting The return value is not a boolean, but an integer with the following meaning: 0 the caller cannot change the "use NTP" setting 1 the caller will be challenged before being able to change "use NTP" setting 2 the caller is authorized to change the "use NTP" setting cinnamon-control-center-6.2.0/panels/datetime/tz.c0000664000175000017500000002526014632072346021074 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* Generic timezone utilities. * * Copyright (C) 2000-2001 Ximian, Inc. * * Authors: Hans Petter Jansson * * Largely based on Michael Fulbright's work on Anaconda. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. */ #include "config.h" #include #include #include #include #include #include #include #include "tz.h" /* Forward declarations for private functions */ static float convert_pos (gchar *pos, int digits); static int compare_country_names (const void *a, const void *b); static void sort_locations_by_country (GPtrArray *locations); static gchar * tz_data_file_get (void); static void load_backward_tz (TzDB *tz_db); /* ---------------- * * Public interface * * ---------------- */ TzDB * tz_load_db (void) { gchar *tz_data_file; TzDB *tz_db; FILE *tzfile; char buf[4096]; tz_data_file = tz_data_file_get (); if (!tz_data_file) { g_warning ("Could not get the TimeZone data file name"); return NULL; } tzfile = fopen (tz_data_file, "r"); if (!tzfile) { g_warning ("Could not open *%s*\n", tz_data_file); g_free (tz_data_file); return NULL; } tz_db = g_new0 (TzDB, 1); tz_db->locations = g_ptr_array_new (); while (fgets (buf, sizeof(buf), tzfile)) { gchar **tmpstrarr; gchar *latstr, *lngstr, *p; TzLocation *loc; if (*buf == '#') continue; g_strchomp(buf); tmpstrarr = g_strsplit(buf,"\t", 6); latstr = g_strdup (tmpstrarr[1]); p = latstr + 1; while (*p != '-' && *p != '+') p++; lngstr = g_strdup (p); *p = '\0'; loc = g_new0 (TzLocation, 1); loc->country = g_strdup (tmpstrarr[0]); loc->zone = g_strdup (tmpstrarr[2]); loc->latitude = convert_pos (latstr, 2); loc->longitude = convert_pos (lngstr, 3); #ifdef __sun if (tmpstrarr[3] && *tmpstrarr[3] == '-' && tmpstrarr[4]) loc->comment = g_strdup (tmpstrarr[4]); if (tmpstrarr[3] && *tmpstrarr[3] != '-' && !islower(loc->zone)) { TzLocation *locgrp; /* duplicate entry */ locgrp = g_new0 (TzLocation, 1); locgrp->country = g_strdup (tmpstrarr[0]); locgrp->zone = g_strdup (tmpstrarr[3]); locgrp->latitude = convert_pos (latstr, 2); locgrp->longitude = convert_pos (lngstr, 3); locgrp->comment = (tmpstrarr[4]) ? g_strdup (tmpstrarr[4]) : NULL; g_ptr_array_add (tz_db->locations, (gpointer) locgrp); } #else loc->comment = (tmpstrarr[3]) ? g_strdup(tmpstrarr[3]) : NULL; #endif g_ptr_array_add (tz_db->locations, (gpointer) loc); g_free (latstr); g_free (lngstr); g_strfreev (tmpstrarr); } fclose (tzfile); /* now sort by country */ sort_locations_by_country (tz_db->locations); g_free (tz_data_file); /* Load up the hashtable of backward links */ load_backward_tz (tz_db); return tz_db; } static void tz_location_free (TzLocation *loc) { g_free (loc->country); g_free (loc->zone); g_free (loc->comment); g_free (loc); } void tz_db_free (TzDB *db) { g_ptr_array_foreach (db->locations, (GFunc) tz_location_free, NULL); g_ptr_array_free (db->locations, TRUE); g_hash_table_destroy (db->backward); g_free (db); } GPtrArray * tz_get_locations (TzDB *db) { return db->locations; } gchar * tz_location_get_country (TzLocation *loc) { return loc->country; } gchar * tz_location_get_zone (TzLocation *loc) { return loc->zone; } gchar * tz_location_get_comment (TzLocation *loc) { return loc->comment; } void tz_location_get_position (TzLocation *loc, double *longitude, double *latitude) { *longitude = loc->longitude; *latitude = loc->latitude; } glong tz_location_get_utc_offset (TzLocation *loc) { TzInfo *tz_info; glong offset; tz_info = tz_info_from_location (loc); offset = tz_info->utc_offset; tz_info_free (tz_info); return offset; } TzInfo * tz_info_from_location (TzLocation *loc) { TzInfo *tzinfo; time_t curtime; struct tm *curzone; gchar *tz_env_value; g_return_val_if_fail (loc != NULL, NULL); g_return_val_if_fail (loc->zone != NULL, NULL); tz_env_value = g_strdup (getenv ("TZ")); setenv ("TZ", loc->zone, 1); #if 0 tzset (); #endif tzinfo = g_new0 (TzInfo, 1); curtime = time (NULL); curzone = localtime (&curtime); #ifndef __sun /* Currently this solution doesn't seem to work - I get that */ /* America/Phoenix uses daylight savings, which is wrong */ tzinfo->tzname_normal = g_strdup (curzone->tm_zone); if (curzone->tm_isdst) tzinfo->tzname_daylight = g_strdup (&curzone->tm_zone[curzone->tm_isdst]); else tzinfo->tzname_daylight = NULL; tzinfo->utc_offset = curzone->tm_gmtoff; #else tzinfo->tzname_normal = NULL; tzinfo->tzname_daylight = NULL; tzinfo->utc_offset = 0; #endif tzinfo->daylight = curzone->tm_isdst; if (tz_env_value) setenv ("TZ", tz_env_value, 1); else unsetenv ("TZ"); g_free (tz_env_value); return tzinfo; } void tz_info_free (TzInfo *tzinfo) { g_return_if_fail (tzinfo != NULL); if (tzinfo->tzname_normal) g_free (tzinfo->tzname_normal); if (tzinfo->tzname_daylight) g_free (tzinfo->tzname_daylight); g_free (tzinfo); } struct { const char *orig; const char *dest; } aliases[] = { { "Asia/Istanbul", "Europe/Istanbul" }, /* Istanbul is in both Europe and Asia */ { "Europe/Nicosia", "Asia/Nicosia" }, /* Ditto */ { "EET", "Europe/Istanbul" }, /* Same tz as the 2 above */ { "HST", "Pacific/Honolulu" }, { "WET", "Europe/Brussels" }, /* Other name for the mainland Europe tz */ { "CET", "Europe/Brussels" }, /* ditto */ { "MET", "Europe/Brussels" }, { "Etc/Zulu", "Etc/GMT" }, { "Etc/UTC", "Etc/GMT" }, { "GMT", "Etc/GMT" }, { "Greenwich", "Etc/GMT" }, { "Etc/UCT", "Etc/GMT" }, { "Etc/GMT0", "Etc/GMT" }, { "Etc/GMT+0", "Etc/GMT" }, { "Etc/GMT-0", "Etc/GMT" }, { "Etc/Universal", "Etc/GMT" }, { "PST8PDT", "America/Los_Angeles" }, /* Other name for the Atlantic tz */ { "EST", "America/New_York" }, /* Other name for the Eastern tz */ { "EST5EDT", "America/New_York" }, /* ditto */ { "CST6CDT", "America/Chicago" }, /* Other name for the Central tz */ { "MST", "America/Denver" }, /* Other name for the mountain tz */ { "MST7MDT", "America/Denver" }, /* ditto */ }; static gboolean compare_timezones (const char *a, const char *b) { if (g_str_equal (a, b)) return TRUE; if (strchr (b, '/') == NULL) { char *prefixed; prefixed = g_strdup_printf ("/%s", b); if (g_str_has_suffix (a, prefixed)) { g_free (prefixed); return TRUE; } g_free (prefixed); } return FALSE; } char * tz_info_get_clean_name (TzDB *tz_db, const char *tz) { char *ret; const char *timezone; guint i; gboolean replaced; /* Remove useless prefixes */ if (g_str_has_prefix (tz, "right/")) tz = tz + strlen ("right/"); else if (g_str_has_prefix (tz, "posix/")) tz = tz + strlen ("posix/"); /* Here start the crazies */ replaced = FALSE; for (i = 0; i < G_N_ELEMENTS (aliases); i++) { if (compare_timezones (tz, aliases[i].orig)) { replaced = TRUE; timezone = aliases[i].dest; break; } } /* Try again! */ if (!replaced) { /* Ignore crazy solar times from the '80s */ if (g_str_has_prefix (tz, "Asia/Riyadh") || g_str_has_prefix (tz, "Mideast/Riyadh")) { timezone = "Asia/Riyadh"; replaced = TRUE; } } if (!replaced) timezone = tz; ret = g_hash_table_lookup (tz_db->backward, timezone); if (ret == NULL) return g_strdup (timezone); return g_strdup (ret); } /* ----------------- * * Private functions * * ----------------- */ static gchar * tz_data_file_get (void) { gchar *file; file = g_strdup (TZ_DATA_FILE); return file; } static float convert_pos (gchar *pos, int digits) { gchar whole[10]; gchar *fraction; gint i; float t1, t2; if (!pos || strlen(pos) < 4 || digits > 9) return 0.0; for (i = 0; i < digits + 1; i++) whole[i] = pos[i]; whole[i] = '\0'; fraction = pos + digits + 1; t1 = g_strtod (whole, NULL); t2 = g_strtod (fraction, NULL); if (t1 >= 0.0) return t1 + t2/pow (10.0, strlen(fraction)); else return t1 - t2/pow (10.0, strlen(fraction)); } #if 0 /* Currently not working */ static void free_tzdata (TzLocation *tz) { if (tz->country) g_free(tz->country); if (tz->zone) g_free(tz->zone); if (tz->comment) g_free(tz->comment); g_free(tz); } #endif static int compare_country_names (const void *a, const void *b) { const TzLocation *tza = * (TzLocation **) a; const TzLocation *tzb = * (TzLocation **) b; return strcmp (tza->zone, tzb->zone); } static void sort_locations_by_country (GPtrArray *locations) { qsort (locations->pdata, locations->len, sizeof (gpointer), compare_country_names); } static void load_backward_tz (TzDB *tz_db) { GError *error = NULL; char **lines, *contents; guint i; tz_db->backward = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free); if (g_file_get_contents (CINNAMONCC_DATA_DIR "/datetime/backward", &contents, NULL, &error) == FALSE) { g_warning ("Failed to load 'backward' file: %s", error->message); return; } lines = g_strsplit (contents, "\n", -1); g_free (contents); for (i = 0; lines[i] != NULL; i++) { char **items; guint j; char *real, *alias; if (g_ascii_strncasecmp (lines[i], "Link\t", 5) != 0) continue; items = g_strsplit (lines[i], "\t", -1); real = NULL; alias = NULL; /* Skip the "Link" part */ for (j = 1; items[j] != NULL; j++) { if (items[j][0] == '\0') continue; if (real == NULL) { real = items[j]; continue; } alias = items[j]; break; } if (real == NULL || alias == NULL) g_warning ("Could not parse line: %s", lines[i]); /* We don't need more than one name for it */ if (g_str_equal (real, "Etc/UTC") || g_str_equal (real, "Etc/UCT")) real = "Etc/GMT"; g_hash_table_insert (tz_db->backward, g_strdup (alias), g_strdup (real)); g_strfreev (items); } g_strfreev (lines); } cinnamon-control-center-6.2.0/panels/datetime/data/0000775000175000017500000000000014632072346021177 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/datetime/data/timezone_2_dim.png0000664000175000017500000002100514632072346024607 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ.#FĪ™F IDATxŚķŻwœTõ½’ńĻ™33;³}fea—¶Ō„‹%6DÆQK,)j”Ä“Ÿ¹–\£ĘÄĖU£Q££Ńˆl€ ‚H•ŗ² ,˶—ŁŽfęœóūc) Ģö‰af^Ļ}ųpwĪ÷œy<Žpxļ÷“Q ą\>~Hß¶PjZö²į&I( @€P @@( @€P @@üĶL€æ4kÅFß¶P§‰AŽ [æķNŖØ}܄axČ Øq@( @ @€P  @( @ @€P  @(5f"üeŅŲč}ŪB«¾c£”‘$( ÄÄ?¤o[(5ķŲ"‡°€P  @( @ @€P  @( ø(vݤŪtėˆėć E$6mųÅ1ĆÉĮ‡“üĘ0iĒ0WA˜sŅ­Žŗ–ęŚņQ·d¾5p†c°7Ģ‘jRmR¼ŖNN @œfĘń“[ŹŅæć©Žr4¶ühŚ-MUŃCN©o¬­9ē{ā8»®ĒRŸ˜`§@@”ķē’žśĘ_īļtLscžšĢ’{uūmu²tŌ„źę~‘ Ia‡X4įō:( ”ÜvĖģßĒ "JĒcZZ¾’Ķ'6š³lJĪīśÅ"f1&ŽLJOާ@P3nž¾}哞ź’&Ün¶=2x˜!&ŃÄtJ›xµÆżmĘ©;Ÿ"b“Ū5Ā9cŪĆC¢ @€rū%SML·X<­ö‘šņškŲÉ„M‹§¬>Ų’)( ōěĘ%Ļ»ņBÕĒ2]VüdŁ.N™ƒą[¬śógüÖģ£C<īŅżk¾ū^!xš0EĄj“Ś“Æ)ˆX¬ƒ&]¹ī–1d €OŗÉŪŚŃ²Čž^; ąÓ—Ÿ4×ū^ŅÜšń÷ߎIB @ų”W^öµÆ× ŁłÜ¢µä @*õĀ}]š¢HæYń*ł€ЁDÓØ;|ߐ>tĪ~D> @t IÆŲŻĮ֜ó›X ąS†¼qWe™įó«ø”7^MB @t ³ś£¾|Ŗ®āĢ%u%F=ł xp':šoń«».yįō×r·.<dĄ @'næ§J¼ŚéÆźj<{(sZÓę]ü€zĘE»±‰?¾t<ų@)ĄĻÖž1n¾ÆKyć†ZÓČĢ@ų£ÜżLśu}4įԟ>ü€Ó¤KüØŸsYǟlk±µT“‚Wa~sļCļNŻŁˆżŸżaAu3Iṗb)q?¹)y|ēć )?øć·[ž•AdĀü`H¼—RgŲĆ»üM’FĪ[±É›d†ĄĒItĄ†M1;<\éÖX‹yŌM$ €ˆˆÄŒ²Xŗ;¶±~×ļH y’oĶŻ<5^S²į¦æo#1΁ž˜ŗÖqÕ%«ē湗¼Ą Ą1[ ­ģĘģ£lżÕŌ˜8ETLW#Źr–^¼śI€vŅ%jXgĖ5=sÅ_Ī”>Ą ĄiŠl–øŽ—¶¶|öģGÆfóP NŗyŒ[_z@“e7ĶžYĀųųŌ“÷‚ø=eÅ %¢9RX„&HipBü½"÷¹<²vÖι/7»WL­M®ĢŚÜ¢ż­µŖ&"¢Č ±Ķø`ˆ©uļ¦Ź2C°ąYX@Ÿ¤‹µ’Ī’¶ļ/¹aģ˜šXO}Sµ“šŚķZnSµRߐ»+ĀÖdŽæ™ĢĄ €ˆdˆ”œ(Šz­¼¾\Dˆap7[ź‹+5ÖÕ*æQ[Ä/k @t8£QĆSĪ4Ēyü\ČH1ähFć??$P |[0ńŹūÜ%%ķņöU4I}Åī_|˜O> @t ŌU]dö¶4{4«ŚžõŖ¬W6’‚7~rėŖń—%¦4Ī’4»Žī„‡9ŠlĄ @'²V¾•yŽSäšŖų1ƒ§Ÿ|Ż‘vNŅWeäf |rZ[w^|©®ˆˆDõk¤r’įZņ3ųĶŪc®Q¤`ČžåŠÖPŃ~Iō ėgŹ3>Lķ7äb“(2xÖšKc‡ ½°ż²ŲžQ“HĢ@ųtĖ›Q""Ф]b\rśg£G!!0ąƒSK;łÓéõ”Ȅ›nšEJ`ąĢŻČšz:[n±ŽXx­R]¶.›¬Lx˜"ąÆ|žŅÅĆ£5Ög<ߏįwž{‹¼@hŪ”{^»šGŻėö|tÓ+ĖČ A1÷& oāMēĻWwG[,Žd2@®Ÿł§%VĶléīx]J‹I Į«°€¾¹Ąķq¦Ę&뢋.Ž.‡«2÷ON±!pč“xU˜20„æj³„ÕVWÕ\ń␙¾G'žŸõįƟÆ,";P ڹū†KßVŗcȶ·³ž^¾›“@8aŒćw9QŽ®ĒÕUæ;séņB ćąW™ÕG×u5¦,»"æų«#<āŽ«°?sģjDŃę§~¦x]:Y€ž÷q·w5&éœj·fˆ8¢vCąāąGėĆ«Ņ.4uq½©né÷ĻżU¤Ć9²„įćkßś‚Ü@Ńżϳ…u5JÓ±§öģ½ŠK#7"΁~5&ÉŌƟɣH!õf DÄizü‹”iŻßX]“¹bļg'Ńæré[ļéĮœ"Ā‘vå¹’;ū{$ qé"vĆŪ³uĢźą«īŗŁisÄ\;+08„ų‘SżÕs“šÕž®gˆ!UyvGXŌ¦ū^[¬××p^Jb”_æ4õN„OŪŠō–ęŚÜʬĢW|ĪéuP @ˆ2ą¹¼0‹¶ÕŚ”µłžłdгē@æłĪŌęzmĖbwē(( $8msŸ‰uśkkMõ;ג)( $|w^Ģ ’mĶ–`%SP @Hxķ£u7Uūés Q­aadг'Ń?¹fŌÜŸgéó¼AÓs6|UQ—,«ņ*( č9-Oļ0¦ū3ŒŽ/ö=ōŃ¢Ėy° Sü⶟õӿѵ ±‘>ęZéĮā+7S @€qÕ kļėŽ EŻØ<Ųčjh”‰1 'g!^­ōĖŗāŚĀyĖ^2Üä  WJ¹pŽĶŽžŻ]yš«æź¦”ł¶8]ii ?ŗÆxSmŪ]\Ö 'N™ЭهԕdüÓ¤›ō‚Ź·&stŚ|­¾Y?¼Śä"GP @Čyi察˜÷twž€uxݔժ&"¢źž†ŃWõŸfŃ Oiž§†Õj«k/y‚BČk/D%_hģjœÕŖ¶{ķĀ+…$8øhš›!—vōļæ.- ŻŚĒÆ@”hļ#u•¾^w·ä|Ōҽ u™€BQaNm”Æ×‹wä¬Uuņ óž2óŒĢ”zaå7§æjKčŸŸ.Š·A×ÜĶßüK rB֑Ędzd景;SĻĪŪaj=1ń~aŹ\ó‰y‡! £];žj2N”‰Óō“ŪcĒ)ŗ}Äś»V!aœ]øšƒE æē‰šÄŌ+ģ¶¶kq½^³¹ķ’*]oØr×KDķ!³&āiiv šŪļĢm45hĶ7Vm_óĪ€ˆ)WhµŪ7Lžß'·ŻšX™»łÖW?#iP @PqŖ}>0-Ņ©ˆ¦«¦Ņ¬ņ=­jÕ^grźw"ضCļ|„jZxźÜ䩱ή¶eˆŪm2Y̆ø½sū“#GwŻ>…¬q6įŠg?½kŲ‹E¤ŽU¼#eNcėhC±ŖWŖ.tQ¤Ż>īF£VW϶tcS$Ģzģ’§n)%i0‚iöa»lŹ•+¢œ""u„Ÿ?e`µ6+‰Ó*‡;¦ŻęÆwj®Æ:xčõ'_$sœ-ø|č“Ė•žHŌ±SŃżF\ģ)hŹVEŠw鮘¤†’–z½“=jĄŌØŁcd  _>“ūBU‰~l*–‘ÜöŁ+¢Gåīņēaā#ŪÖŻ–YMę @€ p õÆ+¶,jØńźĶõI3l‰^U‰)ž¬ź ėØ’Ž+~Ų7Ü+‚³ˆś}rQ¼×5ŌŻTļiJ)zæ™FCCžˆnŠ›äē·ŻÕ^łĪ $f @°XśĻČ|ĘŪįØĢŻ·B“ī6k6“^›­¹Ė4?Ī®›Õ%eėķŃ6ŪšĆĪ;“"ūżŠÖ0·]DÆ)Ė*Īóß#ŚĶ¦Y7Ī\Ę ųÅ’2łē†d¬jĪwŃ‹]k1,£¾?tzß¶­éŁė›³ć&›£­ ‹ĻŁX@Ś8;0!ü¢” sư™ńC÷~rģw3sXtS“ˆ9²"æ¦2åÜ(‡Õ,"ŅXÕP3Ģf?¹fc­-Ś0\‡FłžŖx½;ž~įĮMä²$-œś3 č¤Ė¤ū‡ŖŲ£jķ_ÕU»C³›ÜĻģ{ĆĆ 9ųAīSäŠó†\bVE )śjĻŅčkDōĄŃWł*Ņż{ŸZ’Fń‚‚Ł—MS=§æj(#o>°ŌŌŸ0¢®¼©ĢŪ "2`jҤĘbWnE¶ā™|GŅX_ŪÜņąc‘,ĪNĀüHõŖ%ŖµA=ńXvKlK]Ö[Ŗ.ŅZYŲīӋæ.žZDÄ„[FĶd‹÷½ÅŲa¤  –Øq?n®¶Ūo7¬Ģ_µD’Ę&„Ÿ>¢±aĻßO«n$+0Š”ĮēŸ:WiiÉYµé‡ļ'P @ąI—Śč‚ŗoć¢SāÓŚ’ÜPūęüæø‡?P @`*Šz6ė™-5ūĆŠ}²~Kėhd¬:aŲÜŸŲ)Ez©NLžn:eb‹RZȰœįI׉ˆ2ć±y;Zuōæž9īʉO-ī?YU'•Ł_½ŲÓ ńš'¶[šFŽ »ł åĪū’ŸČ˜¶ŸQ•”é)Ós.QfŸ~KĒ…żo]ćč×ö½IFL[Xw“ŸęŠ*a]¼KS“-üōUŻīŖü ŽĻęρG™§Łõ'O‹"m_Ss{¹ĖßĢŹ÷5{ø»!^ƈHMŁk3īM}€Ąž¶{ąÄ¾mA];ó*®öš›}œ~•I©Čłśķ”£,ń»^Ģ£ŪPøŒ8ó÷"éc(¢Ŗ o-ÆŹNH)?ņ—'4™ˆÄ!,ą –Ų>Oķ»<üe’±×īõztłfŸƒ—€‚CCŽ·ń.Žä ™6Ōŗ Ē_«XI¬q}Ż‚&ݹ7.­®`Ėc©Śø„YsHšŅ%jp_·”tk×2Éš‹•VÅ>&-•äA.Cj³ū¾cuļś”øŃb‰ŃF^e#{P @@{č7©[ļeQ‡Īlū.՞>›ģA­®Hµ|{ļ–2W1ĆĘ M&}P @ūōĢåߎ»Ł£F^ŚöS7Ÿ«±@,CüM’ßoą [bŪwƒĆ'N&P @ūąó¼ķ5eŚ·ōœ³9eFŪwŠKś @€ęjłßŁ?K]:Æ2÷ŪyæĮ³'ˆˆ˜Œ# łƒXµĒÕņĻ¶Ž÷ķĢBĢ–ØĒvHS—Ļ@Īŗā3—~ćäiæK½(ĢÆ%?^>–fG`įó@€n˜=vüšm®g]?yś#©Łü8oh®Ļx»j©iŁĖh n×Nœõ{ĪD¼ZĘė{2(N¢½“lĻŻW,ŸupµŪO’ą›Õø‘¤ oī¼{Į²9ٟ¶}Ŗy_%N ‹&SP @Čxė‹W/|o~īV­Ļ·Æ‡Ł£cȁƒ«°€>ĖYæįŚ«&?8`bß~'Sø Ģ@€PS©æōī½ÓÖ-,Ļ鿅)Š“ŻoP @ˆqyžżė/Ēm¾÷GŠ @€P-‘–Ņ{_ q)$ @/ œšō’)‘ä @Y¬cƾs浩$ @E­ÕI€Ėx³HKÓīē—ż9«”$Ą @Tä}ōƒß=@}€ŠCMŋ>$P @HJ—xµÉŚŪµ]{I„s €}÷£n‹éŻóHZ=+Ÿ~€Į EN5ńÜøĮ‘½,āmŪŽ!( $żųŽ”sū°3r<šŅeŠ|µ{”9Š A!iöĶĆē÷eż†\2„$W‰Ņ‡żI—ģ‘!( 9Ć.zÕŌėƒ2¤ÖõOī„"ĶżÉM%ūz»v޶Åē&7"( Õļl+ŁŽ»u›7Żżéį B„ŖŹ/ÜīŽ¬—»ņÆIĀž}=o]oÖ«ŲCv @€WŗŁćéŁM [ŸĖ’ˆäˆƒ ?ść¢É·õhö‘÷ßĆk4r3 äżćžĘ]MU²‘ś@D¢m=»°¹ˆĢ@‘Ł×ؖž|¤¹•'` "ņŚ‹?ī_°Æ{G„Š2ņ·–n&3*N¢~ēŒ^0ū²ÅޤĪGy¼o^µ’ŪĮ Ą ®ŗ7Wķ­«_Ī,ęė—ܶvz y!P©šopė±zÜx«½Ó ±Ę ‹ķåšūø ‰CXĄæĶOƾ|‰ÕŚłC²V>z—ņ"q ų·Y¾Ŗ<««_ŃI»lβ —ūŽów<ėķāŖ^³:óŽtĀBāąwN«®-˜0žīņK–Ž|ǚŲ.®Ēņzó·møõŻĆ$ Õā0]qAöį¹?q£ÖžŪϐ–fU5™ĶĪōuŃdÉģ·· ‹™¹åö‹^öz¬ÖćŸl«ˆŻŽł†dÆŪ÷|sHżņ„,Æ«<'*.¬‹ė®t1D‘ęKų‘µ~×å&9P @ˆ{ė½~—_ŠÕœć³ßV}3ÄŪņĻĀĀZŖ«©P LbÖÕ sĶŲ’įź ‘ ’7€Ÿø“’åu•šœś„Ÿņån©hT² FG(Ś„ˆzŹ—é”/»ż—ŸŻü²B0ąą'ń¦‡^1ÆėÉEX¬½Œ“Ą Ą żõƒKµ.žiåõ9øäĀW֓‚7~“hz*3idĒĖuŁüŠ«O¹ZH Ģ@œ¢\Ļ}Ƴ_ɚŽ}…śĄ‡ē_’ÕńҲķŁåd €ē$ŻŻńĆw[9y €ok j7“6v““¾ą;q·M%% N¢~vǼ©OšģkIńĆ£ØæžĀyīüäŗ“Ixꊿ}ƒ5Ę÷ˆ£D¼2eØd’("’.£g Ÿ;4*żGŖæčüVšB£ŽÄ@‘ ē^³ĪfQ¤ķæĪģ~k'§Ņ$8‰ōŁÄ…v»Ņeu“¶ŠˆL¾M±‘(""bOźĪØÜ]"š¾õ®z@āÕł¬‰]3ĕU_sąĆ-KČ Į‚s @Ÿča?ų$”¢ˆ]}÷įO^q˜‘­¢{µ–Ŗ W+ "".ŻÓн‘Ié1ŠJb @ˆˆČóc‡wo¤×m³‰Ä@‘©ˆŠėŽHĒ0Æ{h"‰ ""¹ĖėŖ›»u+fŠ9ÓĻærü(2C°ąaŠ@Ÿ8U‰øw±#ŃP§vń ™×“µ|ķ’õ+I ĮĖx>qiR'׊LH~ōHWb¶ō›¹E±nrC0ąą‘^o7.эO;węŌ¤ Ą ŁåĶU]RdĄ¤Ė~śŠĆé† Ą9Ą/ы‹""»3ŅĶ›æ5’żÅ‹\Mä yĪØE…ŃŻoHMiŃś£›?Żŗ?“½‰CX€_øź3žÖ“"PÄŃoÜMó^œ~UŚpŅ„“UĻø{ü¤+«eŅ\G²ļeė5“Hg3.ćüdčCѤ¹ÖÓ›Øt{-‹%Ņǁ/§śĆ›žø³Ł% Čōj‹>½³2s÷įį£néž3ĶŃżācõÖžŃū˜—ē®+ż—)śĻÓāRLŹ—/’*( ¬-’拈Ü£ō`-ChūƖ˜8Kğ?fäó‡.˜{|ŁÉļ †Žƒ±R“Ó9lšX“"2ņ2‘~ĆŚ/µ:Hg3N¢~ęLėž D‘¤qŖYé`ū@Ņ3 <ü؀٢ˆ6:©'‡°bRŽ~ŁŃ²ĘJR„€~3SĪėłZa±£µÉīkYø“Tq6ćą'=9÷q’=2!5oKåĖGą‚ōŽ­6ōbÆĒ÷käE©’C°`ż¤w«…GFwpµUd|ģHb ĒźĖ߯@  @ōnģzŅÕB @€ ēõė§{čʁ’ž<©‚BĄ®?4Öś­Œ“Ģ÷’ų½JTA!ąõÆ?żAcuß·ćn-Ų¾iį×TjdгŸHųŃ­óę¼¢Ks‘Łž4Įbķłś-M9+·ž1{_Q‚B‡Ć:~`ś¹Õłkv^wuʼĮ œż{ŗ…šāO_[ü{ĆM– ÜHō™ÓtĻ¢ų“‡Dõ3«®Ā©ßŒ¼“7dž[›,«ćéW @€ŠšÉ§Ī‹Kiū6.9.¹7›Ø+Ļ\V}„³’ @ōHŁž]’fr ›ówS @ōø@ņ¾zÅÄ@qžĆT›‰‡¶ƒŠsqC†Ļ%P z!"‰ ˆ8ō‰S•DQś¶ ĒÆŁģ%KP @hI|­XķćŽd wެŪO”4Āśü[˜„SU‘#(½©+€Š ®<2 Ē ŃR ĒZKH‡«°€’Øę¦ŠŻ¹›[ŹI€n2¤*»x{į>„•,@č‚-ūßS4N~ pqųhuڦhä @…YĒ]A  @ō‚VK @ōBu.€BXt/? J3гHRęxjå<ĒńŸb,½ŪJS•§ž,A!åā×Ē^>ü*‡MDäśé?_Ś›)ˆ.…›U>Žū@€ŖŁ”\tÅ¢9ż½\ׯLrōļłZ›2’U²‹;@čƒ €qŲ_ŹéMm§é;’ZuĄ÷²RÓ²— 7#0p 蔟ęŅ­}YætgGõP @;ņ~ļO_“4d­"AP @ˆśēņŠƒ½]7’3O5 ‚B”˽ūq­W“Źœœ ä ao½™½ŗ7õ±÷u  i•ś¢[›{¶NÉ7;^róü+P @ØŪ_^›×“ńŁ{^7yČ ņī¼>²_wĒR¼ēėEĀż2܉ōŹ łQqŻéÕr×Zcāž]0 "ņåƒu•]Ļ< ©)śņ/‡Ww»>Ø0‚݇G_:užrŹæżnÉĘ"<ŠIDAT¤{u-,\Œ†²¦šÜµbŖŹéŃCy@( ųm}­®dō‚°p·Öģćšė6„T Ķ•`wTŌMfƈJPZx—I&’Ź@ņ¬AŲ=B@ Łģ# ż£ˆĀ€€@@$9Ž”H,Ž…E@FŽ¢H …c萤LŒĄŠ:ó[é֓ms‰bŸźćhfM@$k¼Å0ŪÓāzøKōžĆZ87ŲҶK5D$vŖćČaÖ@Ņə‘7ĒģjŻ\ūŽˆHLsfyŠœYieéeŠģ’lė JüŌ#-]q=̚€H*-ė[ÖžŚY4횓ā/ČŸasÕ}ڲ[ žŚcøeJ‰T1ėÄį :€įž=Ö­8ś¾eO›śĶßÓOń†9žYČtYHŚ× ü9™“Ó3ū~Ӑ­’æm›zŹg’§ę2`V ’’”d/rĶJ™čé]tÉ_8÷ļņ(6¦Ģ @ņ±(––5ķ5ćfēĻ0qŻ·£Ė‰¢U“Ó]~i՛†n˜“ˆņ•W"nµ¼Hv1h ÉÄeį®Ģx(ģń5ģܽ²üœā3TU;“_¤³%½ŗģ‚ōŅ–õ5ļu7~µG°Ę2Š t“ČęG­žœŁé9žšżk¦/r—™¼"éF\9ćūŠˆĢÕM•Ļ|Õ·õŗ8„€H>QK8`imß­HīœĀ³ręŪzŸ®*ž¬Ćė”=śĮ+cŠČĄvh„f*V#̬ƒƒč†‰9b–“b-v`MĶ+ļŻÓķ;v›HÄßÜŻØ"1Séć.\xgĘ““3/Ź·ĖĪ+ļiīižāO†É]ģHĻ(ėn®[kśw6‹Ų¤›Ł£X¶cÉ哲L_ń²$ŗ’=eüłž "Šˆ”}-ŠŅ¶­ś ēøž½L–€Hj%™ó.oĆUš’ßōɗ„ĀŖē ¼ŗZvŃÄ ŌC{°tэ`sĖ6Qŗź¬éš%Ü|āū3D8_€½¦M˜wQ¾*bÉõÕūź“l•2Į3E³ģ]qōN.]›~uńĀĆ'‚„B=ĮfQģ%i…‘žīęīś/}hņA@ŒVŠĢœ3ėL."iҾdĖī’>E?ö³3Źņfq”ĶfĖ•\‘ü™ŠˆŌ®Žž_qUC145f˜ Ń¢œ#M@$C>ŌēN›žŅ#֜`X©;ެ¬|]1ĶżgW®j1;-–TĶÜÕŠ¼ŽŪlŗ÷3ż„>³d@B_d,ē\:„ŠÜļē†b(–”hĻĮÓóĪŹŸoŃba{zøGu;lsß­ćўkš®[­G_]ńĄŽ¶ŖŚæ‹”FŚLĻ=Žßwl€¢Š}ѕe©'»ča̤—É­Ł]Žü`kĻž¶]Ф—Ī vķ]3ćā4§HŠēx·ŌĢ©YĒæĻÜRW¦ÆÖ¦“mēY FÉEó–™Nv[uŸöx8£Ģf2™9°ĻšE³f,°ŪŅJ,V‘hD’Š'ŚRē^ßYėo4ŗ9ŒN@Œ*§UĢł‡Ģ¾t늮2n–=Ķ‘e5§–Xķ„Ź—7ΐ/vH™-błjļm ¶fN̘а™ē‚€5eīŁ³g„wו%Ė–R0;m²Ķ­(ŪŃĒ.”C’ŗĢ|ŸV·š|£)¦³—No=*†¢Zʤ‹Š)ŹŠ|jzަī~]tž`TČL¹ąŹ‰ž£?©CÉ.\č°e–ŗó†ī'iŪ³ł%6s „€Źr^6ĪŖč_¬;ģŁĮöŌŠĢ ž‚ĢmČ^s×7lØ®ö6ykkŖŒ ĻKBVš„Ąą©˜4ķĀŽēūéŠjvŒwd¹KRyS‡ęgˆėv®y³mwõŽ?Ļ +#’÷Q™=ւ“>Gܓ»źMz¼Ūķlə¢*‰ž¾Ę5ė>Ŗ|wćf#Ä3B@Œōphii"" ēN+·ĒED¬™‘˜;«c—H×µ”I čIp> ‰„·’µm£®fL8=¦lęC¤€nBžüo[b"ŽČįOś¶Š7¢ŠīQ½"†¢9¢Į=+ӋöÄżį`õŠŚ%³ęü°§9`yēńāńńÜ#œ#āˆü*¦93,KŠØń°Żeu9sC)y™Š[‚]×cń®†ÆtīU­žņ`W4cć/Ž~žć»Ą(’sś”oXœŖ("bōŁcõwŚę&få±łOv™āŠ”¤”ĢļiHŸ×ńī%Ą(WK/²;’©ļ³+=łw¾Żć ūŅsóf¤OrdŁSEŗ{ÖżÉĖt`tš””ĶÆü‹ݵbÖM&mØՐŻ+‹f¹‹łāĢv§cé#žro”g%ńTFąT„:ó\"!æ¢ ÕcFāM»‹xŠ5Qz!Ū’ł``”ŲżićŠ!ŅŁ ¤¤ĶcZ“ü²ć’MÅw~žé­<+‰§ŻĖ œ’?hW>8ńܔl_ƒl 4ö4Ū2ĶÖaü½Ųä(z6vžjž`„»5ōh•5Żž3ńЬņśµž}m;USĘ$e"{jž9O/ųŒē&±8ą”=łĮ’ń¦…«rŹŻå.‹šė·:†÷'²ŚR x^¾ÖcNŻ÷.™’ÓĀ2‘”“?Šėš:üæ›Ŗ¼ŗ±0äĪK/sz¾Ø˜Õ‘šĀRzŁ’¾;“W8`¤ūå=OĢ\’HgÓHłytŃĪń|abńy ĶżOĪųīp’ ŃH{MǶŖg—æćåc¤€ŃĮ£]~ĆUO ÷nĻ|łöJžŒ!Įa&ƒbéų_>›Q® ėĻŠŻYłpćk䃀Qä®ŪēŽėp ÷O±ćŪ.ä¹``ń¤üį_‡7¾†¶5Öü`=Ļ+£ĢĶĻūuAÅŠ?n0ąoģŚŻųįĘg’Öȳ@@ŒJW•.ü•³$£¢³Į‚ÉCõØ5«ī>×gśĄ(W!õnŻælīi朱dhQ7V’śgw1y Iœ[ņŻ3 ‡ę±‚Įļz½Ģ|8p&:€A·©±£nØ~95ŁÅŹÄ €$1Ż“1aČĪ1„+– ŽĘ `PUČĢ3æń«ōœ!ė‡.ģ‰g Ō)巎_4t ļĀ" ’A§ńĀMĶ;‡īń"]ĀE‡ »° ²Ś`lČÖm5ÕĻō0óįĮŪx ŗe„=5įœÄFß]żźåļT1ļįĀ.,ƒīõ½?½ yWā§lŅā›™6\ō萙°—2j ©xćė~‚ó3Ģ)™Ó& ’Jhß«'ü ėųóΜά €¤ņ’>ūį„5’7Kģ£(2ėå\Ź„€H.^’C·7oOģc†Ł43ėįĮy f~EĘ4C÷v^C6<ż7up&:l“Ę7.-Yę*):ŪžšˆūļhŚv?ł>œH įžŲTxZ"ī·qėę-©+ŸŚägĘ@RśķóÓÆIĢ=ė¢ˆÆ”}“Æś…Ÿoķ`ŅC‹ƒčģž{',MÜK˜æÕæĻV¤ZRłm˜€äņżo\ųŒ-o“ŻńŚm—zĢŽ(“f Éģ_ēoLܽŅõ‘ł ’Šė5ŽĶ‰»÷–=æ{ŒIé–%ł wļöŒB73& ’Š…g?åŹNÜż»Ņ¾u?S& ’NšvÅ«E‰|„žĄkw2g étÄõžD^Ó=®oy|÷~ę<\“{™€„¹j¹µĘä±gšpĮĆphūKŻŅ¢3åįĀy Ź£^øō›/ZżLoż»×=µŠłÉķś¦Ž’7Ó4čŸ‰¼}ćĆĻ1a I•gül§;#÷|`Ū’¬čäåk˜q@ĀģhļŽ—˜{v—.9ĖĆ'É««.1÷kwÜųžæÆ÷hL˜€HROßP³*1{šĀĮī! @²Śģßņ°‘‚ŲšęõŽ& ’VÉ"u?½­v÷{OüæxŃæ1] ‰5¬ ÷ Ö}²ž?½xÓć]ķ"-Õ{’Ģt €$ö‡oŻ:8'‹ŅŃŲįžäęĪ®z³ņž?m`ŗĆĖÄ$Vh’`‰„×’ē+æŚŅ*"²¼J.a®¬@$½×ŽÆūü«ßŗ£qĖ+ŗÄOīłŁķ󁑂3Ń$Ü}æŸó£Ž&Šńé/LfOYĆ+Ļ®ü?ÅB?9Æ3Ī$GvaH° ¹užĄoUżüXsn8ēŖ•¦ž² żjꚽĢndć€;ż‡¦ļė°Ś®ü‡×'`,óXrĪų­É;MlL€Ćōxøc ·1¤iūŚŪ¼=Lodć :€„ŅTš”Öö½wĢ÷u3;V Ę“Ütgį@oÓÓL>€1o[˶ĒŗńmenĈģr¼†“lajĄ˜—©–\: ÕGėöæl}™¹DPQ£ī-÷xGJW•Ļ=qG‹ĪÜFĪDp_Ÿz銜²žm«{ą.“Ÿˆ‘[ńTĪ„ž&$ŠŁ±÷’ń÷ÕmD„€ĄŻO,¼QĄQ×h¼ö“źg¢m’¹‚Łcš'óÉ:»}`·1dū{÷-󅘮ČÄ»° ļęG¶t¶ ä&‘ž=æ'#ļĀ04żŠå‘«.¾įuSæq5$äcr¬@@\ńä@ņįoŁ[ĆŌX€ģé6Ä×dsŚSū³uć®™ķķbj¬@@ź;Ÿ?óÕ ?ļ϶qć­ėÉ+8äõ½"מ8ķՌ’Ć™čh2™M;zKE±„2Ƒ·ńr×÷Їm¶` eėŖżŪF1®æ.%Ӕ5답÷VM»ļ8Ż`Z¬@ąˆÓÆ4ōķĖ+xśó›~ć1‘Lõī)ÅgŁŗØ¢ˆˆ!Ń.…·š²€ÓL›c‡æžViŌõāę£·ØŒāӗÖm(˜č)/¼dĻ+Æža;oā% 00RÉ 9ń6^€€€€@@@@  €€€€€€@@@@@@  €€€€€€@@@@@@   €€@_gēŻńc·‰9 'Å`F‰Åģ2%iaKöU,žW÷‰wGĒŽūĖd|‰›®Ķž3õ;­óų›2K¬ÖƒßŻųÜ]×1'”Ŗ=XY0åŲļļZõ_—īc>ĆA»—ń<ڜWjŃYĒžMFÉ䯽>ķ/)—lgJCCPF<—åēoXŻŻĒū;C2'·lŁŸĪ”%Uū_æ/;×t‚÷Œī_W³2ŲdD˜€^ģź —żŪw¦^v¢|čĘžƒM̉€@/“r¼Ń;ļŸv„󄻧BŻ[Ÿó×2)½\>ē¾wMŖ-õĖĪvn«lŻŹ¤ō1~vŖ[9É6Ž}Ģi8q)#GM_؜t+W“" ŠGXIėGŠĻ.9ĒP˜€#ńśwõ“^(CU&]aĶdZzyä7Ū–Ÿ|+“2ć*ÅΓђó?čĒåI²¦œöm±d¹_V˜ĆŌ†S0bżä¾9·:\'ß®u÷ś§.ŸVææę³}Ģ~Ć‹£?Ūe•-ŗĖš™ÆČ_|ĶyW—q\€ćłpO4õó\5‡sśÕ†Y$-6=÷œ«–|sR)‚gˆ]XF¦›Æ]ś¤ÕÖ’ķ«žŗļżĆ_w™ź›ė?Ž^ĒYƒZ+ćŗĘnī,żČ²#56%#ƂcŅĖ•ŸŽ ō{W‘¹ļwv°cÕoY÷ĄĮō§Ŗāō03""²{e\:W?¼mÅÉ·UÄīfB@ąP #ņķ4ŗ ŃOŗqZJ\ĪĄöÖ'‹?“9E+żÄćå˲¦œųķ¹ŗ4méŪęĒ Ą˜Õi“|ō‰č=ž}żk’Xł‚ń%‹• —€8$ęÜóё¬ŲžOšÖhĖī–pó" ""WŸ–17ŽŃė%Ėč¬ó8v;]Tn|\ 3±”Ä1#–Ūń»|Ō÷{õė;:§.KĶ:üŪoW«–bDkެ[­}”]XĄXuŻ·Ü›vō=lėņnśhsvł¤ei…"Żį½4mŒG”ȱ»S8’hģĀ0")2®hź?FŚå˜Ė™Ø†¦·oßõ–.‘XØŪß w+ęÅ DDÄe[x^qyŽ ›+£¢{Äwģ3T‰ųw½ŠY{¢ßƒY€cnķ1}ʹ‹‹,6·Ķ­)óžiļŹÆ»ULoX·ń9-Ęn""’—ŗų‚²ā”˜®Ü`‡3]‘Œi¶OCķGo·÷ƒ@«ūŅ»b ’`ÄĄČY{(³ęœuÌü”˜ˆˆ’ĄGµļqēēM?vŪžF%ŹÄˆČĻ’kē.Ź—Ćļŗ ·Ž­Ė»½q鎕ūć]XĄQ0wŖĒÖkU”ŠŃÓ“öQ#>n¶³(®1”‘†c †‘¢ŗ3=Óy¼-ŗ[÷¬u¦Ļ»=Śłā ¬@¤žöµ²CeŽKŸƒās{°«ÉךŅņī®ļ^óæ›~]õĪśmbLĆ” £÷’{żĻ0üū/“ŒXę_ÜוZ’Ł’źPķĘŖó®ü³q()S^Ķ’z¼įoNņVÕō0·²~d`x•fϽ:O‰k‹ļŃ{¬õvD]Żk>ÜpŌN«l5¦xć""Źqį:ó$ ʐ©e³—z ‘‰ĖŹ.Ń%Šöłƒ[Vn«>žmfĶ+™yō÷¢ę/6`žC…wavŪwoū4 ‰ˆTæŻ°ńąKSjęōk²“9Kg/PŽū!„KqÆ ­EÖbK®Uc·<0¶l\·µ2¢‰(ŃĶĻŌ~¢""9ÓĒ-vė³,¼X9é[xĒ-vQDU˜åŠ”ÖFC”æŪŅ* TC‰o{”ö“¹?°;UeŹ•™åŪ^:}¢=-kEkąĖnæ’óxT…_ŠYs Ń?|uW§H\SŒ@}õ+q]D‘ģ©gܖW>5cĮµ„ŁĒŽF·¹uH‹(+`,&$ŗłåŗhžYīr‘ʵ Ÿü®-uāeŽģń¶yߘ:阛s5¬ƒ+Ż¼¶ va1šŗ&®°™³"1GĶß ½`É,āĪ›yc݆ōŗŒ¬Łomų¼÷łåźQ×Č24»YDäéNfI@Œ1»šf¬“^ä%ģŁ¾¼uē¬ļ©Šˆ» <7Øß Ś2•æ'øˆ»®Ķ½Īؖ’äіĢ2ĀĖ·d«1ńrvü¶ģ˜ćžuĘijT©]Õ“-p8ED̚Ł5łÕęJwgά*Ÿ“ė>ęS ]E¹Ó—ŚX™"«³Æ±€\Ź­\ņRŚ;!żYÓ«{֋¼Č9ó`Ņ`ĪåžĀy0eõIr>Ÿå锿Ļų «šŃŒärM €N„+Dzbf@>Ė‹ŒåEåŗ}ŌńjgśįS2ž»9m6,ī¬ÉŽ©Jé`]ōuś³&Ūæ H_¶dg>ĪļE€y ęp¶¦ņĶ>UŁ“žlĶ”œęQM-3ŽĀŖdoz³ŹlXЬó@Ö¦?E’·&ö²@=u.eŅ›æŹ/r,ErŽ„h$ µĻĶ\63r '®U’oV I%»¦mVK-•$[sĘĢŚ^‘#9žĶÓ«Ōß“cā"YŪ²ŪÜŚ>’¬ńhe®ĶŸ¤’UyfnmŸē`®„–®§R¦Č‡yišmć@ޤÆī3+³»īņJ²&‡²-ϳ!E¶¤+µ|'?Mon„°h óŸ4XŸH%)²qŹÉ"ėņĆɧĢ  ,|Ņ`=óģ+¹7ć>ékĢ`Ł)rī„hčėÆZnēd~›dæÉ““—œjć+¹” yCŁ7ķ0Ž"±"h!EŽęX·Šš_g#)ó<ÉéœN²&;²9·§= @+åćć|ųÆ*R™;ƒ¹•‘lĪpŽdu~‘õ.fŠĀłųÓ¼æč“› ȗłUö„HW>ĶęT²ŹōZ8K;i°Į€<ŹX®f$s(]ł*=Y›Ūв6ē§Łæ¤“ČĆ\É`ödcvgC:’ģMgƳÉüZŌĪ|’=K€o/ |{ńÆŌ¹œū`ĘęÜü‰0W@†ó[s`ö ĄrTg'śŽüY’¤–sŁōē½[z‹‡Ļ~ż/eĶ(Ś> ļLüwŹŹF2ó(ąū__[ų#zö« `yxk"•lŹÖ¬k|23!ƒ§ž¬XčƶĒŻ`YØäÓO5«ņƒtęQL‹FS÷D’ņĘŠÉ*½óīRē ¼eĻ@įNėĖĄĖÜĶtf,Ļņ4£©,> e9ōłųÄ+ö’|ą/·ŌŪjūŪ÷;@k«¦#9•KY•=9™Ī\ĻÆ2¾Ų€$§>~łź§ėæüÕ½Kõ¶Y5¶ćC£heeŽē‡yµK»/{²/;Ó?c›yOœ}Ōnłņū—wģģŽ¼wųģŻós½®gGĻĘįū~­a¬Ī’’_dtāńĮ”¹žy0c›&ŽĀzåŅīwüł±æķ;>÷+7ŽļuU,€–q%³ÆVu.æN5Iņ2—ó2_åićłć §¾?ņÕČé['ļĪ{}Ž·øh×r!Of­A:xÕ"Ž—ŗqę«K§’éŝł¶Ł¶āč~%­āL.N¬7·ˆ€\ø<ōh”m*µŽ÷Üā uüw®4łŠ¦æĀJŹŚš…Ś‚qX³.+üBZE™ i> µŒ×żg®Jœ;u§4l€ååj.äYŪW’ärė>9×ÅŸ<ūŃÕm» `y9īixßFåÕĀå\³:±k÷äĆµŽ”Ö$-®L‘uiōb"‹¼jÕą­”ÉÆŹŖ•OžžųßU]’ `$äbī¼Ł€”śllāᢣk}×ĘĄ2p9ņ¼”-+‹żˆÓēvŚ·2I:^ž×?”µĪqcXN¦;4°*Xōŗ”žbr·ĒóbŌČ–‡2§ē8“ź5$¹tā~§A,?s1÷Žd@ī<¾nĢĖŃÅ\ĢB_-U–ņ7Nķܽ²Ze&ž}õg­LY>µO …ż>Ży?ś ČWĒž­3ÕjYŽWkµŃjµö¼:ZK™2ejåKæ€VU¦;ėfŻD굤,sՐ–§Æ3uŁ0ēóĪŽ`ēs!/€ężo¾H™µé­ó\Åx˜K™-YŸwRĶŪy:ćŽéĄ<īäPÖ„#/f=ć+,ęõy.ĢX{ ł] Ƌ€ |ĖéŹ:“ ł€ōēO³Õ,hB%IŠģKG¶ē–yŠL@’"{S¤/7L€f’${Ņ‘ž†ncÓ.e²+y7×L€ę’ō§#{sŁ\h. IŸ„°˜€$ļ¤Čž|a64d{:$€yĶq)“ž|”÷L€f’lĶŃ2š H²9Gó¾ Šl@’M9–Ćf@³I6äX>0%f©,“ĮŪ9–¦L™Zjyž“f@#IÖēĆɟƚIܑ@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@`^’š’ļhīs=ÄIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-7.png0000664000175000017500000002731114632072346024046 0ustar fabiofabio‰PNG  IHDR ™q*UüsBIT|dˆ pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<.FIDATxŚķŻw|Õå”ųq:ˆvŁŚŗŚźUkżU[Ū:[[†8P6˜sN€HXaf„ HHHČR”½7ČŽ{ɒ®ŪiµVŪ«­·õ¶Z[7æ|ĮXŠØ€$¬÷ļWéį$Įē›?Īēõ¬:ØĆ¹įŖzŻļl˜¹3åTś^·ŁuźŌł‚ēpn2D€ @ ˆ@€ @ € ‚@€ @€A€ˆ "@ D€ @ "@ D€ @ ξ©—².ć¶Īsś}˜ļ¶›/@ä#¹!vxÆŖ°ųģ1ś˜ē @ )@Œ1€A€ @ ‚@€ @€į Četž7§÷ģ“5öŲ•<-ŗ“UéƒCfī N^€4ČXŽošĪŠė{C†ż(ņ®Š}į·Ū*’­ūĖūc'idGŹ}…Sux0sAtq׿)óŗī®Žō…]ļ5=²Ļ @8ō ėŌ‰¹Ŗ^·6g3¢[SŪ ł@Ļ™é«śĢ黾zÕ±„Čݹ óF7„‡‡š˜2æćO«#$wUä÷ĘrnGGĻ_~Ó„W7ģŻō{‹ņ:ķ?7uAĻķżWuśMåćįw—Q•ļ æ•<5uõ±DH—‰Ń%ż–vżQņ“ŌU‹~yX€~ł­ķn½)¾<=}a·½‡Ÿ{¤ŌłŻvŻŃoMę‰_6ųa›Ļ·§¶(~xČŻ¹Ó Ž"@ gK®æ÷k×·(N¼#:µ(wuĀӇĒĘŠŖ)Ž÷ŅįÆe.‰’M£¬eŁA4)š>0ua—}Ń%‰’[Y9śX.ģ<1g~ó≄''r†ŗą+7\ųõ»3Cßė>/³ļ¼ŪŹ ævxhTģ æ•±øĖž„‡ņfŒ‘}įėć’Ųwnķ‡–FķH©Ÿ¾&ڤpĀąVƒŚ(kõΊ4)œ:ØhS»?ß«óųĢG?86v¤t]’¶ ēަ'•T_^(@ g +Ō°åĄ¬±)ó{oÉ^‘ųĖaū’•ļü¹pc»Fä&Ėž_¾7ōvśĀ.Wo īöČY™ų«[Ūż5om‡ßߓ· æ:Ž‘įåcƒKß½Ń|uĒ'ļī’h’А®“3––>~uą–š?ĀĆ &×Oߐ~Cl„{@ gŌ’«ė_ѼpĄ#E›Śžµ:ŹvŽZ“¹żŸ‚?Ü÷·”łŻvwŸšŗņą XѵŃ&… i±>#ø”g^Į†OČ*{,ņĻÅżw°ģH9r³z‹’‡f<šō“`|éĪŠk½fußńķš tĻręl6Æó&ķ‚%T½fvŪŃqlĮŒÓÓVv›Ņ{}dųĄ‰Į‚Ł+:>Q?csZżŒµŃÄqy³óÖÄ??¦hJŻ&§¬*Ūzć ĒĀÆ•~ä&õąµ `īŹYšsxP„*+Ęō[Öłgß³;ņZp7H›ņ’‡ēĻŠkVļłė:<ŪwnŸM²WdŠ–Õ™m†<0"yZ§½)óŚż:ŗ8ņģż%‰3=Gș³įüŹļ'/~ē&ómļĪ84-_ģēNŸŗ3{iv“Ā™Į†ō'ƒåXi »ļf'ŚŽ,×oi—Ÿf/ļō«üuķžĻ[y”bočķ£”5pKŪæę¬ģųDćüyÕ?#ø)½Ū”ĢÅU”ńūwBåµ!»ĀÆ|oĀ“Õ_ܘ~xøÜÕĪ€„±‹zĪčśX¤¢żĻręĢ~“?–Ó¦b‡•:æ×¶īÓ2–7ŒnNo¹!½Ć˜¾Ė:Oč¶©ė¤.ŪŅuüyÉa§c”räѽĮk© ’w¦-ģ±£÷ģ”u½g§­é>5kqÖņÄ_¼ßæCö„ßj6hüĮ²‚;DD«oOߑ’4”ߢųIółWp£z՟’7x-8ķjĄ†ų’i3d̰ąē…‡UŽéæŖÓo²–'ż¬EÉ#erFĶ~ÜwĶķ=—eœœŪŹw¤ŌK[—É[?cM4ŲŠŽŗlō°äiĖ 7µūsłžŠŠ½”ƒ÷†ToJļæŗć© zn.!l˜¹:³Ł ńe-J.æ·`րȹ!cf.ĖŖ>ā×E„3|öćŗ¦…GżīÖø3{~^ƒŒ ''ķG˜R¶+ōžeVūBoē­MxŗćŲӏ’¹ØēŒŽ"Ć ¦Vżß88;#ÆÜŻAž@€œ!.¹®ń׊gU48‰ŖŪ”¾«O4<†ģ æÖgNņöųŃ ÓtßU²-īåŹ#ö’³ĮrŖ®“³E([?cż»Ė§‚»>ŗOĶ\\.X}*V U1óäŽØŽīStśŁ -‘—b‡VŽ92>Z/MžÜn›g €9 ]sgzóąƒ{óA ¼3ņźq…ĒžČA[Ū¾ŲcFŚź%£rV&žņż6°lčšĒęƒFWöœŃkÓ”Ķź‘Įń¾ŃÅ]÷µ*}ø¼a권.£Kn ż£×Ģ>ė› ˜>0ųwõŪgӑß+ųŚÄńK厐>s{lĻ]yƳ@€œ†ĖƾŃ3ŲūŃuJś² (Ž'@ ÖĒ’!øå¼ó„ģe»Ž?^‚(é·“Ó/‹·Å½ÜxžŸ§iE^‹{`Š„¤ńżēµ™?=si‡ßÆĒś¶*[̈T%j‚[ӏvqįŁK³ŪV&Īń| §™‹®½ćk?č½2ŚršĆū"Ǽ÷£d{Ū—óÖ$<>ltš”?<,jéĪøWNdéVę’öOUÅĘóĮ¬Fąš”`ÉVƒčĘŒĀķž|äוķŠūgóAJĆ €9S–_5JmŚ sczś£ž»lWųµc † ŗOM_Q½O£ćŲ‚ĒśµĒ+oM‡ßĒųvŸš±¼ņ(³3=¦§­ 3cłÕ'Ŗ>Ø÷–1ÕK_—qOī܂>³ūnN«Ŗü€„XūĀšN|ŠÆ—¾*³lW荼09ŁR±/t ŁĄ1->h[Üßßs×ȶ¶’×ląŌb€9Ķ}ńź\y{ÆåŃ#?¼×ĻؘŽ{vļĶGE°#x­hs܋wå,É9tJÕÖŌ„±ł3;<”;+yjēĒŹ÷†ß ¢”lWųõąčݜ•ž“-üŹG‰`£zÅŽ÷?øß²Ī? ÓÜ×īčŪä}ļßČŲ’–æ¶Ć³g!Ŗ>ü§/ź¶÷žņFF†Ó ŗ&śŽÆŁ”?fŠä6åCj>hčȄ±™ RēwŻ]¾'ōöŠ}į5±<«ZĪŹŽæ>ņ¶u€9Ż–_Ż_Łķƒ.lQ<”“Ϝ¾ė› _v“Ó¦×8^AĘān{mmūĮ HMĒ‘ŗMMYU½E€ @NC^õż+nļ¹,z<·’&EÓę­éšōķ9xĀU ̆§fu›]zx„Čią’o_ń™ŲāfŃ+ėun~²āćß{G6„už˜½°×ĢŌ5ÉÓzmč93muʼ>›{ĶJ[<-ŗ4nDŁ#͋Ǖux°hj0³’³2ńWĮQŗ'#B‚ż)™K:’8iBŸÕó§ Č)R÷‹uĻ{wßGƒ+.J™}’OŅĘ’¢Q֊ģ“!‡ĒHஜły÷—| ķˆĮćĒåĻn;²t\leåč¦E ¹3{~^—Iɛ²V“}ęd͆Tī²+üZŅŲŽK={H-ųÄē>ń‰fŁ÷Ž—6/²µĒäšüŽÓ[’¤ī—źžü]ūa÷“%ņbÕõ·ūĪķ¹5ø½:ī͟Y?:wVćüY…'÷ä-ĢK™×kKīźŽOĒę–ļ Œ‚#—būD‚ ź5u|oīŖČ3'sLc.‰łō±7«N:ó; @f7^}m³œū:d>łiį†ČŸJ¶GžŃqtóåmĖ›N n2&T|oŸA[#/VH²;üfÕńŠ|PåˆA[CÆ6-5ōŠk;RŚŽ(Ÿ4>v§G̼æü £«2?8@ę ŽłgmnBĻŻ ŪŪž=ń”N'm¤īė~Ŗß’š„;Ć’JŃzˆß5rn/±ŗØīg{Om)Śž[öņг}¦ĒnMz°ÅāօGT}h~õŠQŗ‘7Ė÷†ß8ņĆzĮŗĻR?}czĪŖųg‚½½gwŪŁ ŗ=µeÉ؊!{"ƾ¼)ø“£ėäč’;2×DßCś”āĀńĻÕD\Tģ æ}䌬»›Ń«ž.mA§’ī=»ūŽļ¶yŅĀ®ĮU_-Ł>U}f†Wś ē¤ū¢wߣsjčтõ‘ēK æ–łhč×G5_ŃUų½¦µŽ_¼-ņұ|Ø/Ż÷JŹüŪK¶Ē½,‡Š.īņ£ō…=·ŚŅž…÷ūš¢Mķ^č1#}eüƒƒ&54¾ōČcp›ĶŲ{vŹŗž«:=Q“©żŸ ÖĒ’1wMǧ‚eYAäœP|ģ æ7bšøģ~õ~ļÉ[’löŠÄ_ō[~ņDĘōü’:?¦A÷›¾wŽåēÅžzxp‹”SBóõhxƒß=rÖūüķŸ÷c.ŽłTĖü&ɃwD^~ē¦š—:m¹©`]äłżp’QĮķ·¬óOŪ<®QÖĀÜąĆ`łÖŁ‹ū70„ø^śśŒC÷ˆģH©Ÿ¾>=Ż” õt«Š½”%Ū"/'MșĢĢ“*=¬ż˜“:=œ;'Xfvų’”ļü÷ē,żžDĘøĻĢŠśŠ}į}fŽæ¦zĢ ēœ„­F§/ˆŪŻŖ qyīźŠó½¦·Łwp†£źĆw‡š.MžŌzkõ2”S%`_IįĘöŹZžųó‚õķŸ āaĄ†ųē»MÉ\Ś ŗ)=˜ÉY™ųėŸķfM"”½'wö€¦®ŠV…GeÆY©kŖꙌÅ]÷WNNxxÅCAų$Ļl~ļ[„ĖÄģ…߉ĖĶ9īę—ĘŌĶ]yśŠLJų™O_ūéOK“„Š·KŃŗōš;®æŠļ*€9+ōœ™żļČ[ļ\ź÷võk§2<ŽIÕæ7X:uW’%9­‡<44wMĀSłė撐½"éŃÅŻ÷õœŁwm—‰©Ė«źmœ7k@żŒĶi‘įC¬zļļ‚ÖƒŁņ=‘×Sē÷ŲŃgN÷*šŚ~TįŌPåšQGīCłAמł'2ĪįĮM;„Ī Æ•4i{,ļ’Aāwæ^¶+ōzšß×}bhŗßUrVșją–vĶ]Żń·q#J ”Atkź”eY’ކļü’ <F×ED×ed-²dGųÕÓū®ķ3§Ļ¦Ų”ÅćŅuŻWöXäŸ:ü”뤓åó&” µuįwļ’śeė"ā(éĮūō» @Č)–µ<į‰FY‹s‚= Ad4Čؐqųż#’¾¼pu“ł ĖļŹ™<°:F‚P©—6æ×É©+³W$ž*™#æś¢¤'O.–`Ė“j3@×Üqó•ĶūߛsqLŒßUrVč>1tĘHžŚϦ-ģ±3i|öüPeńųV„ĆF6/WVeH»QœĘLļ:1kQÖņNæŗ/| wu‡§ƒåUĮIZAL“):¦bß”K ?Lłžš[vßÓéĮnKc.‰łœßČ øŖŽU——lær&/ĆŖŽØ,W B#0ģnAļ;'y{‡‡ņf68`|ę’Ī?=žŸ3dO쁘Kc.õ»€91ǜ_“1ü—3=@Ž;VŖ"%}QāO;=œ=?øLQ€ @j'@>ÓmBģŒī#SŗŽļ6!41ybhFń¶ø—j3 †ģ½9`Cū’I™ßkkē Ł rWw|28•«¦~ŽąķįWb+śOkQR8.wuūgäJ_Ž]³³‡–Jmnūæ}ēōŁtOī܂Ń-i²Wöė21{A#Į{ĘĀŽČ+Ē3Kq¬Ŗ~ö_SęwüYõĻ S¤ė#÷Ļ:ŁĮQ²#ڒ©ļÜ>›" yøIᤒś‡.¬ÖeRŸ5%Ūā^.Ū~=æ.ž÷ 54]»ēk"„Š·GžQ¶+ō†@€œB-óīIf(NĘe„ykāŸ‰:`bņ“žŪŽ0„óĜł)ó’wä®éšūž«žJ×īĮū;މzéė3ź„­=ØAʖ“ęƒ*²+ņŚé°D€ @jĄ-q7}õžAĶś6ĖiÜ.ŗ(ö7åCūŠĒĆonjūĀ‘ÆGwx¢ŻČĀÉ]'g-j”½"«:@‚eXó§ŽŃoiNżŒMiż–µ{ętŁĄ.@ 5¬YĪ=‡ž„™’Œ’Č[i‹ŗķi”µ:3ˆŽ&…S%ĻŪ0siVĘ£‰’]±/t x[ÜߣKŗķ/ŲŠžäpćż7_‘µ4ņĖ“ūĀśÆŠ’}õ²«Äqy³ĖvŽZ²-ī„&…”užŠwåŻ‘×OĒ#|¤F—bŻrYęāšI `cy×ÉéĖŪ.žŲ²ōĮ”ykāŸĶYŁį©pe᤼u æ?ļ sqLLļé±Ė÷†käNŽ`iWéĪø—rV%±Ķ²Ź3`φ@€œnļtūme§Éķär–»­ķ­Wd- ’śLˆ†ŹżįĮņ'ć”-€9E’'†fŸŠ ŗ/ņVɎø|č{÷GDwśyē Ż6µŻgY—‰]·tŸŅm[žśĻžp€ģŽ}+꒘K<HmoHæ÷śK²–F~q*f4R$žØŪ”äM·“ūːݔ7ö¾ÜÕńĻĘV»3{|q«Ņģé¹kŚ’!˜ŗļÄ7Š?+ęb€9%:nóPŁ®ŠAŌvˆd,aę’¬;³ęåõ[ÖłgĮŒGšzžŖ@™ßcǽS„-ģ¾kšĪČ?K æz2~fłžŠŪUb äTˆ¹,ęć_æóšÆu;»¶ę f3śĢé¾£aęĪ”ŃMéńcM /Ū¤hāąś›ŅzĻīµéd’ĢŖ9š™Ė?õĻr ÷•ó>Žyģż“Ėv…ެž‰ØI¹k;>ÕŗlŌšūĢ* ä]Ńķ©²–g³#•5šļ(ß:płm—_ķ™ @N±ŗÖżŲ·]ve’•qæ=Łüļ æĢx䯋’ĆĄ-‘æ·)>ņššh±%­ļܞ[ņÖ&<]¼-īļ5>ršIŸyģ½›·Ćo}”že»āž•2/ńG̟Q?}qv0ÓŃ0sGJ½ōu-Jʖ‡†{²öy|čKb.óœ §‰Öš“MžšŻ~XĖ!퇵Ų®¢eAćō;҆ī; Õ÷G3¹kžŹ]Óń©ŅqÆß·rķģ; 6Ü; rŗoVæ8&¦ĻĢš†3ż&ōŅįW«ž[¾ä™ @Ns ŗ×»¹d{č_Į­ä¤ę.0 ų°Ÿżam‰}„*@.ō< g€ė›\’’nkėĶļē[Ķ®æ£lw荚PqćŅśŁĒā깍7'~y–³c©Ö%Į>‹špiÓtc €A€ @ @ˆ@€ @@€€A€ @Ø%ßlśĶ+Zå7IŒަ(~X뢸Š–¹qeĶKĖ÷„ß NęLĒł¹«Ć¬Ü®±›Ļß ƒä\ ŗė#ĻÕV|˜@€œćrVÄżF€ @Ø™Ęķ jEś‚¶;„ZŃqtė±y«ć~'@ ԊŻźÆx[äe€”V„KZ¤”ķ æ*@ ԊĘéwŻ]Ł?ōń°@€Póź^T·nāƒmĘ µāŪ­¾óŅį µ¢ĻĢŲm•ūk @ Gˆ¹$ęÓGµ©Ģ]yŚ „÷Ę×}śĪŽõ» Ł~S€ @ØQ]Į§2 ’Ā „ZqGśß“5ņB­h™ŪøUĮŗČóB­ø%¦ĢożØ'c ǤīEuĻļ;+¼eŲ~€”\öķ/\æ6īB­Hžž!@ Ԋę¹÷&Tī 5/ęā˜ó3G~*@ ԊŪ;Ž~ې=į7„÷ƤŪėUģ;žeX”āĘ„·µæõęćqC‹.7ęsX›Ā¦}Nd ÖŠŖh©Ų:.=&‡ęsˆ9PzO,4ęsXóžOų$¬ćÕgfd‰1@€œĆb.މÉXŁ]Rø)īĻ »’°yÓ~÷“łV³ė®śf“ožæ˜Kb.Øū„ŗē{seVQӤ⭑æÕF„ Ł~sčćį„…_«śó[%ŪĆÆōš»®A×_÷, 爦Y÷5)Ły©¶öƒüG”ģ æŽ2ÆqŖē€9‡“ĢkßEܓµ •ū#²–†Ÿø9|£cz ē’Ō¹qOÅ,H°,«Iæ»Cžä,Õ¶¼é#wöŗć–Ć_KŸ·óTHéĪšæb‹›ez.³TؤY~\y³Qõŗüšöø²–yÓļJø9ņ⩐@Ļi”՞ ä,T÷‹u?™łhäĒo)ßz»ņńšĮeP§*>y«#ĻĘ\óqĻr–¹'µQĖ >Nep®lWäÕø!Ķ =ČY¤yν‘VMŗd,ŒŪwŗÄGõ&ōHYóžä,sqĢE%;Ā’zh¹ÕŪ§[€Ä7Kńœ gO€|¹|Ļé³ģźˆŅ߈+o^siL]Ļ "@j\ÅŽŠļµæå»žäģK«äķÓ1>ņ×Ä=ŪwfdCĆī nō¬ gŗÕż|ޚРÅ[Ć/’N’6/²Õ3@€œ}³ Ÿ©ņŁųZ8$gE䷞ä,Õ8ķ®[#ƒ›G¦`]ä¹ZŻ€¾'üfž äŌeäÉŚ īī_siĢłĘ"@j\ֲȯŒ;D€ŌŠ~K"?5īR+RēĘ­7īR£Ź÷„ßč=#²²ż°V„Ę"@jöō«]į×;Žj=¶Q†7wˆ©„S°Ā3Œ;D€ŌŠ6EĶR;D€ŌøŠ½”·µæõf〠µ 7ĘŽų]〠µ± ż”ŪŚŻv…q@€Uŗ3üƘ‹c¾dĢ ¤ĘĀ£pcų…„Z l_Łr@Ģ%1ēsˆ©±©śžæ5ΐs\“č}÷õœ^T“9ī/5 YKć~b¼ ēøĘiwµśxøĘ÷~užėūW\9dwųM€”Ę}éŗ‹.¼3üŖ@€P+:½Rå~€”tŁzdåćį·„U÷ĀŗŸĢ]y¦Ę—`-‰ū±ń@€œćīĶø«õŠ}5;ūˆ.ŒŪe¼ ēøėīżĘ•łė"ĻÕB€,@:m3ķó·žØ_ÅmW\ŠwVxs÷‰±ó'„?¬ué‡-Å*ß~³ķęż>`FåćW7øęRć €įÕ½Øīg‹6Fžņa³ ɓBӌ„¬óŲš”Źż Iʎ0V>²z]ĆIE›"/¾o€TÅIlq³c€į#k–›Ņé‘č£e»āžł~WŽ"ĒX @x__¹1ö–ė[–$Vūn$«÷•?ģzG:u>yųū®Ŗ×żĪ†™;S0­|Oų#ć£tgųŸįŅęŁĘĀūŖ‹jwåĢĖūaŹźč·bóS:?;-yrdFÉįŁ·%¤dTæ'iBöü‚õķŸ;üd¬¤‡ŚLs± „㠐@物+Š·…’™»¦ķsՁ‘»&į©»r–ęTæ§qž”āŠ½”wdšĪČ+ “ŽbL W€4ŒnO3prÉöø—‚øØžéH]¼³Atkjõ{ŗNź÷hń¶¶«Ž„Žnhó1׎õõˌ+„cwÜ[0³°ĒŒ“ՙK“~DFÅŽš[]&E—žžųM°1žąLIåćįżW„sq̧Œ-„㠐jM ge.ķņć`–cČīšwēĪ-8üļ[•ŽV±7ōvu„4Ķŗ³wŻ/Õż„ń@€pÜrhÉÕ¦ō쉿"#~tєƒ.yZƲĆOÄ b¤}e‹”1—Ł”€į(Ņ ŗ1£uŁØį 2¶¤½_„¤Ģė»)Œ¢Ķķž·QÖņģź×eÆģ—06fɶø—«#¤`mäb.‰ł“1@€šžé93uķą”×»LŹ^ų~’ŗ Ū®ź ē‰ćŅ—4ˆnK=üļļĢy“ōŃ®ļÉY÷›˜KcĪ3ĘŽ ķF Ÿ»:ž™ŲŹF=@v¤Ü7`Lŀ ķŸ#}Qņ®£½/2¢|lŁc‘W*«"„Ū„Ų¹ö‚ @xו?ģz×ķ=–ö»½ē²~ßļ±8ųßĢC–gŽŽkyęz­8č‡}×¼ˆ°QÖņ¬¾óznø%īÅ>³ūløæbäGFH«Ņ±…Ū?W¾;ņZö²šoļīŪšvc €”NĢg/śŌg.śŚ%Ļ]zŻ„|õŪ—¾š_·|łĀ«¾’•/]Sļņ/}­Žå’u{RĖĆgCĒõŸ[¶+ņjįĘvn˜¹Ŗß‘Ņ8^Aį¦ö fKF¶©0ÖŽ{©ÖįŚ*ž»›<-}Åіc5-šTRŗ3ņĻÜU‘§æŃų›_6ŽN8@D7¦'OM]Õ(kEÖūm\:fšĪČ+ė"ĻEJ[ö5–N(@ŽU§Gņf›ŅƒIŃrtĢÅ16¦ @ؙ¹§’ģ‚Š½”ƒ÷ƒäƋ<’•›æśc €”F¤at{jŹüī;ƒ fBŚŻ×Ϙ @ؙ©Ņ¦|ųČ`dčćįķ+[Œ4¦j,@Ś=ŠcA«ü{“:Žj9ń’Ż}ķeĘBČ÷“—d\śĶ&7Gµ°dGŹ5w¦µ2Žje Ö÷“§]ü­ś·Õ©ć÷B Hą{Żēe]Ū$3ń²šݘ @ØŃ©vkŅĢŌĖnhqq@€Pćr0B:ĻN½¶qNģ„ßjz}:u>[å“ĘBHµz)ėÓoķ<+z]³‰Ÿ»ģ›Ÿ3Öj,@÷ø1½æzsÜ-uźŌ9ߘ @HJM«Ÿ¶)ķ¦ų )×ܙŽü‚/ßšåŖ©kü ¤ĘŻŽcif0+Rõ³ļūŌ…—[ž @ ‚©…Y‘ō-i7'LŽ~­aŸęuźŌ9Ļó ÷½n ²«ä ž€A€‚ "@ˆA ‚@€ @€A€ˆ "@ D€ @ˆ@€ @ €A€ @ ‚@€ @ €A€ @ ‚@€ @<‚ "@ D€ˆ@€ @ €A€ @ "@€A€‚ "@ D€ @ ˆ@€€A€ @ ‚@€ @€A€ @ ‚@€ @€A€‚ "@ D€`ˆ@€ @ €A€ @ "@€A€‚ "@ D€ @ ˆ@€ @ D€ @ ˆ@€ @ Ļ@€ @€A€Āi ¢ŪSoﱓ_m»9aR¾ œcņżäG³ź~ś W’…Æ^\ŪŖä枀į\ īf™‰@€ @  ˆ „ ?č½*zM£ŌÖ×6Īi^›¾Ö(„yUųŌõ<ēP€œ*·$ĪȬ O{"@ D€ @ HŹ­I3£@€ @€A€‚9<@>ćyˆ@€ @ €A€ @ U2+S€ˆ@€ @ €A€ @ "@€A€œ”ł¬ē @ ĀY g÷ "@ D€ @ ˆ@€€A€ @ ‚@€ @žÓmē‚ ĪĪłœē @ ‚@€ @Ž?@ŗ‚ "@ D€ @HķČ\ @ ‚@€ @€A€¼ YUrē @ ‚@€ @€A€TČ< @ ‚@€ @€A€¼ ]ēe ‚ ņQäóž€A€gS€ĢĻ "@ D€ @ ČAßė:ß)X"@ D€ @ Č;Ņm €įģ /x"@ Ī’Bö.ĀŹuIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_10.5_dim.png0000664000175000017500000000151414632072346025034 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ7lÅŁzŻIDATxŚķŲ± ‚`ą’Œ%ZŠ8Ćą$ڱ»°#1%%DŒ3Ų]ń}¼¼—\q„ü/TŻŲÖĻ3†~92„ŗ »Ŗ¹æoÆG²‹}5 @vĒŗĶŸŲ“„ņĀČ/ŗ(eś* •Øö Łgž.ŪIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_6_dim.png0000664000175000017500000001110614632072346024614 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ5'/\×IDATxŚķŻyœeĄń§»§ēČĢd2dČ}‘Ée& . Ź‘(„¬"«ą" "j!.Į]”¬Åč®RØe!bÉ®ąšåTRb”°I€@' H„œäĪ䞻ūŻ?’™Ī1Iw>¤fz¦»«~©źļ<ĻūöŪ±(]Ć_xyiŪ‘|.•<äoĎģm O RėsēY½°1Z×į $–ŽmŠšwšV-zŽņƒč€€ €€ €€ £|Ōyžš‰„@j’ućė1ČJsbÉksŸŽŅ&! YŲ‘Øžåł‘=,ČʦhÉÓõƘƒ€deUĖŅ'–Æ3ČB&¶|ūā™ėw™„€d”5±lå³OFm&! YŲØ_ųāœ(c…­±śŁ‹›ƒ€dåĶö%O½ŗŹ Qģõ]õ®n0 ČB{ü•õ ŪŁl…¦Dż²łĻø`‰€de{¼~īĀ\ÆD@²²!S’ūeĖĶA@²…•Mõ­Ųdp͉ķÉo]æžåG·ģ1Ā³S dżĀQbļqóĪ:ä3Ń@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@rF‘Gß““O¹vć܇ŸÜ’1‹ü‹Ģ8L7__÷łę QH”·4æńP&=ōƍ~ūĆ^™q8枬T[ė¶7ēŽōć'ĢI@žNŖų»/ ’ÖwQ!¢ķM!SZ¾÷Öļžž “ŹW¶°€ĆŌ³*5üīū·(•ķæµrdUl‡æSó”ƒčĄaŚO–uō;#.ūĘO«“f% oūņUÓRŌį+H<6ō£ŻKL+?ŁĀƍ»čd§V;ž¶j·yY„BH%koHvrcŖŗöź: õ(½pŠ»óqó/j/čģż»÷žśtuwsĢG¶°€Cŗå®AW¦Nnh ”*–( ™sēĮ“cYĄ(@S¦'bGro Ą ķwĶł©ŹŖX·>GŌNƙgšłÉ ¤ŗ}ķž—”U4n]õ§a—–YBÖ¼tŪä-iSĶ?¢ūTĒēŒwIļŗœÖsH"Beϱ—łć&Šģc ŸėxTŃ£āÓ_¼÷šDqEÆÄQüU3·dL9ŁĀ‚‚4¾ūŗt2Œ¬=©öņŅž'-*‡¢Nµ#Źś–Õ/Ļ»įĮēĶ\@€>ĻŻžž}³|ä§ńBĮ9³jŹ µŸŖ©M&»ś™ÓŃc_(kÜłźż/ś_ GÕÄ?{ćø[S}»śyŪZ3éמś5žČaŸšzÅć%ɮޖĘ9_ńcóĻ}ŽėÉŁē-é6įŪ—7rÖ¶Ö§æŌøėx<óś9’Wožä°1M‡-¬(ō×ī²&yĄi¼P°T}÷ %„]ūœ «–īXżÄ··ū€©<ą :°ūę =§«žkĖŹĘu»V.žńąBs ē]6pņŒ WÄ»`;) ³¾ņż˜ø€y#•ųäåē|ÆzĄ±|ŽL“jö†9÷}gS«y W¾üÉó(.>væįÕ[Ę68ꑇœ……+~^÷ƒ=“!ō,IµĖēŠZåĆ Č ļļŽÜūŗ_ š…æžnń÷ĪżQŸQĒā H:¼õė[׎4lk›¹ē§ńBé•ø~ś_MÄBˆ…S‡}°øäXsźå}“ÕÅeKžS>¬@€œ×3łĶ‡GO;ö{×+Ÿ½~J!¤ŠChpšÜ Čuuį+?3ķ؟µ›‰–żdļWāaä)=§Ī÷é¢Ä±¦[®ҰĒÄ󝳰 `Œ:öŖ®ČG[^Vä{zlźź3ĒlŪ!vl~sį‹3–ü&j9{“yē?[XPPz$®½vĀ7z9ĒAźēĪžāšE®Ó. @ŽŖ.æłĪSætō?=šņ«gĶ·pŲĀ‚‚³mĻ·nYxßŃߏŠ…żLW@€—2@@@@@@@@@@@@ ku‰ļŸ~c™9äŗXd@ēćöG*?¶{VūŅ(³śßoŪh"Š™|„Æ’KĶ·ö~ Æü§’[ļe(GŁĀŗŌÕ#«oŪ’4ä.®1“\Ud@×¹8õҚév?+9°iA²wėöD²²ÕT Cƒ/æä³Æ=5ēŽ•Ū2¦‘ėŗŠ÷Ÿżį¶–]{~yžļ™F®s čBw^¹čæb‰©CŖbu!•Ø3+€ĪųĒO~šī'%‹[Z¶Æ ™x<ݶyŝŻŁn2¹Č1 ĖŌ…/’kļ!„PRrŅÉ!„…W,9ŹŠeźĆćē/›µ’ū] ‹łŁõ# ytMé¾K˜¤C&üł¦%·]~©©@',{(… ÆĻĶ„ņįcļ8żv3ÉUށ]jŽS ń±x[ÓČĻu/okM•64›‹Ą!œÓ+Uŗbėž­™ŠŌEÜóā3ķŻū\pŠÉĄ!½Ō:üc½.iX¹~挄›×nŁ”iÜ“ ś3™Üd čU%#&ž72Ŗ©*{~fŠ¾'ŽBŗaU’å¦# 5ꂉµÉth !D!±ļÖķėĢÜ<×tr“-, K”Ę“éoMļX4ēæ—Åü)+ ļ%VŌÆoͰ÷žYæōٟžžXĢ”rīĒTeiß!ćjFLģw –Ä£1”ĒÄnE±g"x€żFŸW;¾ŗ)qˆė]ÅB’–Ŗń™-a”iå[XĄ14nÜŲQ½^ö»¢„|øi Ą>#‡¼ļ¼Źtē~w襯ML@B,vŚ™/­éōGõnįÓ„ –˜|Ńi“{gs(5h|L08ˆuĆz~č#C«“é,ļööļ9e|ćāWĶŃ (8„5C²ĻGŲ±iļźcŠą}ūŒ· ±č”]ÅJŹś5oUŪ’ü”Å!œ6-Ģ4čP,=ģŌŽ#·Æ;upÆÖ”Ź D@:£"=vw:Ž4ø¢uļ÷É^±Ė Ķ1ą„‘Č¼•bÉ·/Ł‹€t^’äČѦ Yė–ī>ĄNlށĒŃöųŹå‰}Wį­0¤ģ?ė=&öēØÉŒą=“FĻž1jŽūõ…żßł³aķ“O sĢčÄe 8Q¼ė¤«x”ź\^č0Ńgķ•y€ŽKr@@b!$ĶE@:½yKe÷’2c€¬’nmi5č QęŻ?]ū·ØŃŒ £˜x $m*€{.¾¹ŪQ[Ž„6mż«© Pz^xÖģéÕGgŅ’Xŗež#KW˜Ŗ€yÆ.Qqn÷I#ž¹.Ū÷žķČŪĒ@Ögžī™_æ±ÖTOl.e=Š‹G†P}ó§~÷ÓĢ£BhL,_żŹ6ī4Q ēɉņŠƒæYwõaö#ŹÄÖ“,Ÿ³l™’Ź ¶°€£¢“hļĖIŕW9¼Ghjył£æX*V @aiųې!•ōłHx¼Ów{Ē“ĻEķęhœ%›Ņ !„…ĘæduĒ·"¤_7īy"ė×_÷£YæW*6ł<—lĻU1»ĄŃń‰āI#¾¬>˜ŃS¦wņ]䍉ó>oz² HŪć ž^śŖ©å[XĄqÖ#SwAm?s€¬siŸJs€¬ )žšń˜O€ģÕV{iĢ+’€dżb4éNéĶ%މœ ŠÓuu-ŪĀĖ&a„ņtŻ9£O6ČZ*Ŗ›:ø·9@Öś&ĘOė]nµ!„§\s|V@² #zæ’Ć1'd @¶™µĆ™ƒ€dŸ“‰% €€ €€ „Ė•Ŗ o&BˆG[2f€Y8żāÆß —„K̲PRŃkP<“n6 ŽÉ1 ¢ öư²ōś33/”©į:£@@€lĢŚ~g ¼›-,@@ŲĒYXĄ ¦½(е{m€lžłŌšÖō¼ĒMB@²’ˆ{eŹ Ž'˜(¤Cڬ@²µų—‰dkQh3 ČJūŽöМ ‘Iœčla €€€€ €€€€ €€€€ €€€€ €€€€ €€€€ €€€€ €€ €€ €€ €€ €€ €€ €€ b€€ €€ €€ €€ €€ €€ €€ €€€€ €€ĄŪž‰+,AŠłQIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_8.75_dim.png0000664000175000017500000001563014632072346025056 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ6aß“t)IDATxŚķŻypœ÷}ßń÷īā$@\@Aš)J„D“ŗhŁŽ”Ŗ®ķŲ•¤‘=>¦©c[uģ6•Z9nŌńxÕnOŖĢ““ĢŲķĉj‘kgĘv]×¶dŻ¢(Z"E$qÄ}ģ>żĖÕX» @bļ—f(ģ³» öūć<üŽē÷„$)½‹}×ųZł.ž#¶’$D’d€H’ I’"I’"I2@$Iˆ$ɑ$ ’$ ’$D’d€H’ I’"I’"I2@$Iˆ$­‚%0@$Iˆ$]71K`€HŅr\±ˆ$-G£Į‘¤ĢeĄ" ’”¹€!‹`€HŅr8 b€HҲt3f IŹÜ-‚"I™ ®a+ąmqy–@RīZn€ŒŅĀI.Y@DŅzÕĆ8E÷=.ŠĀ«ö> IėŁ)Ž’a€ ŃĀĖ.N‹s ’rXŃ4zŒVžå§Ę‡=I"ƒ0ä O;pe€HҌ^&)XņUQZ9ĆIĖe€HŅU'y 5K¼¦3 IZʃ<@Üc“–Å‘¤Åżkä&BsNh;¹ŁŅ ’“°ø› )ŽļąŖ,"I ¹‰Ź”Ē:1@$ia-Œj'æAž.ÅŃržˆæäó|ŲĀ­(7S””•īåNī›3Ļńē½²’?d`‚§ųZŅ•ė²"ij¤vޱ).Ķ;v„?b? ¹BKg€HZßö²^’£_$¾~/ĄoņéYÆ+ąü{¾äDūŠpKRÖhę~¶šŸé6ń'ó®iē[<Ēæ"b¶ó—øg֕ź3ą§Vœ•“ę”/ėŌć(Ż >›ĻŖ-­")—5/sÆÜ)RŽęvFŸåsģ²¼ˆ¤ÜuŅe½Æ•)6.ņ|7ó^Ė»‚œ‘“¦zwó…īw¾øZ©X$zFčg‚ŸXbDRnŗČ!v.ć}-ÄČK\Æ$ż ēł ß~Ļ ’rS·ņ)¶/x…ā£ƒ66°# ”ğ18ĶWŻkø™¢¤5fog'·.2!>Wlj°Ÿ†;f½Ī—–øóG9æF5l”’ę]B IŁīv ‘|Ź–x]”Ó“¦FJR<ßĻ7ųŽB'@ee”&ōŃB˜xŅ0@$eÆf.ņ‡–Ų‡÷"ĒˆŃĄĶ ŒČ<ĆxļąHŹwš·–ä2^IkŌq~½‹ĘĒ'y™Fī£9eLq™g‰‚I:S/į0÷ŁKr]Қ5½čdzŒ× q%)B&ʆ8Ź)ŽóĒ ~‡ÆšĒ ģĶ»•dł IŁŖŠR°@Ļa”:čā­)®üčä4§±u⃼sĮēj©`ĄFX”s ’Ö؇¹Qön: ³‰rŠĒĘ¢”†ńXZ‹v+łÆ‹ģŽćĒü©`DRöŁĖc NŅÖP3ļŲ|™j 9|6­æį÷ٓȳa¶Śˆ¤µ«‰w1A’{Ž3=Ä2ų>#ü,Ć+8nį‹K¬ļŚÅxĀ&2@$­=”‰Ē(śł:ü€ļ$=ŪǣܛöBŃn¦šž”Ļ…H5T’±”W$ŪĄiQ΁Hŗ>Čźē\k~Œ£ü€€0}@9æĻŻKō®šę‡`œļ žS—“ŅŽCyŽĀ€×9o€ųO]ŅJŪ’³żŽ«:ł›Ł9I+„ŠŁŹVF(d"é^¹dš7ؤ‚£œ“Į]…%i„ü!‡Vm§«µ”‹ł 0AŪ¼ ’VN%½äMš²Ūæ›ÖŻÖ× ē@$­˜©’|EüŖl€HZyż\ČńOpŚf6@$­†³Ärü„yŠF6@$­¼MŌåģņŻ(]Äčį§6s—ńJZ!ēPĪH/Ļw Ż‘“†s2>ą,æąļŁe|Ģį2^I×~"į·9ĄŽœŚĄ$`œb¢üˆćUˆ¤Õš!‚ūTx‚÷QÉIž“Ml€HZiæ Tp€-YŻÓ˜éCĶ6Ģ÷łPE”AŚ‘“RŖ€>>Āo‘Ÿå¶GyƒŹiJśӜåē|Ėf6@$­¬r>N3ŠAµYžYbœāPĄ;ȏėą%žÖ9DŅJūwR›tŃJ/! ¹•j F”.¾č}>Ņę2^IikꁬžļHÖĮ+„c/›˜¦“VzyŁų0@$­† ģˁOŃM“Äg=ĀtRČkŒAbKˆ¤ÖĻćTĪźió+ÅyĪ0ąiŠˆ¤ėėyŗŁIY_2DĆ6¤"ézū+ †·q;²ņwųQžcŹf4@$ŻŻ@3)ĢŸż“ńqĶü“tMŽs9+Æå¾‰ŻDl>DŅōIz²šB¼Bör'1›Ļ‘t#géDz9U6ž"éFŗ˜„†Ųnć ’n¤æĶŚ+¹7» –"éĘł(b4 ī(”ÉY6—ńJŗF4fåĪX½3Į.ņy=«o‘eDRÖś.Yy®„˜RZčaƒh€Hŗ1Ś9••?wE4±Å{ ’n”?ć/x&¾Ooö)¢Ä&\fKŅ5;|’Ūh`˜PÖ̈L3B —¼"}™¼'ŗ¤SĀgćž;²bV$Źņčć ¦ć?Æ÷D·"醸:—PĮ#ģ^ęUŽ\·š‰P DøÄ€g€HZ €ßä>Ŗ2‘(ē(£„ćŌŃp]Ś'ƒ IkÉ·OsåiœžcŒrœļp‘*ŗ9Āæ¼ŽÄOŠgs-‹s ’VŃ»9Ąa6Ī™¦L:ć_I:‰ŒŪØ¢›]×%FĘ8K[ā‘s ˆ¤5£Š€O±Iˆ1Lūxæäl"ÄNą§gŽ»¶ńan[õŸnō%͹ ™pKŅŖźK €šÕų¤u9æĪ3t1˜ņ]’œ"ö­ņO×OæŪ˜ ’²#Js6±ęipŃם‡hZÕ īAĪĘæf€i›É‘“V½”Įkۈ­Z€“p%± żežĮ¦1@$åŽż«zxˆĖIĆWĪgĪåĻ’ÖØfJWq~b€Vg? I¹ØŠø}æ’“ńÆb{™Ā’“&=Ä]«8€5ĄńƶQĻIĖm€HŹ«cōs"Ž’(å&ņŻ×‘”Kś('JłŠŸÜ.'z·QĄhÖŽÉäFsDҚtŽGłžŠÆē ^K<ŚEŠē ,{ ’rÉŹy'›x~šn¶,¹Žjöꚃ‘āŁr¢‘:©  Ø Ę=\d„Ńk\'ŌŹ“–߈¤ģõ’ųš{ä§|vfGß;9BQn%ą ]ńąp™©"i];žęėĀ„)¢Ÿnƒć:±Ī’rČ) ŻŪŹ‘¤LÕ°‹‡½0š:qKRNˆ±ŸFĀ0ė.²"IKŲhŚs&2@$ bˆrŽ© ŽUJ#yĜ7Y‡°$åČoĆOSĖƒ `ķ£–z&8Īø%4@$­WS\„Œā#ŹF`#ł -p•‰mIZ§®®Ö* Īb ’Ö§~Ž/ć¶P‘ų L8åVŠZŠCX’rĄi`;ŁžADȋoĄå¼%4@$­_ēmģf;Õi½~k|#ų!N3ęµ#ˆ¤õķ"°•=ŌS³d$t°Ÿ0ŠK§ńa€Htµ4±“M‹¾nŠa*€1 ™°lĖą$ŗ¤ŌÅÓt/yśk„•QŖ™“`ˆ$eāCQJ@#Ū™ÆHψCX’Ö±^ée ų‘KTqzĪ­qeDŅŗ³ōÄxĄ6†9Ļ8½„” œ5> IJēŲĶ6¶3@Ӝ”r‰iw ’@Œ~ś§„BäŃĀ$ŲGŌŅ ’“°iźó<˜bŒ0cla€<揑¤”"t!BTs[ā,…¼Ģ4Ē‘¤…”ML³GŲL=! ČēķœwkwD’VŦ¤ķÜŪéāuŒÓźÖŠió:IėP %z §ƒtQÄĘS°»cŁ‘¤ł6ęDŅUēaŁĢ$Ż&JS[$D’f Ø Ž sN~ 1I?fhfkbxK sKŅŗRO%ÆĪ šąE&‘ĻFŲ@-b ’ō¦c“§z s7żŒPO50N‘{ō ’”})ā#Ę-”SAŒ (¢†‹–kÉjJŅ:WM„ĖœąDRÆĆ]±ģHRRO#H¹Ūī&Zbń]°.QĈå²")»…Øąa–õιvsGŹõUƒ „hē§,½=IŁŖ‚ŻTņ~6r;‡ų?䓼4'B †FˆŹ9ĻÕŠD„*Śgų"Ls9Ž/Éć4ņŠk° IŁk‡ć»R QĒīa5œŠOsg*J ĢōŅ–8^Fo¢Oā Ś©¢ˆ˜Ć3éōń¼XFŅ==ńžųŠÕšG/ÄÆāR^ź·ši’.Ŗ’ š:ż”Ň®f›&’>­e‰#1~É4„L9„īiё”õ^eĶ젃©ÄĄU˜J®1ަč³œw¬–[fķl5Į$EńėĢ»’yĢż° IŁģ,›c/—Ų™86žŃ)nļœ äå4÷¹ņJtDRVė$Äj)Iō3ĢéEJŗš9ŅM4­ ņ°Ū) ’²]@ˆqźø-ž8’Ę{¢±™Śyד‡)q®"i=EüUŌčabŃ×Ēø‹Ŗ‚¦~.§ł÷Ę,ż½4IŹ_ć+cœ™ S+Š÷.ź©\°Ÿ¦&ĶæqŒK–Żˆ¤\pŠZŽĒ[ٚt7óŁnę0aŚØ$€1Ā„xUZäļ©`˜ęu^¶č‹ņBBIŁtŹā­ÜĮ$¹Ģs)ž’ ÷’Ļå“ó9ž)7Óljé÷«&ł%ńļ×Äe āĆ1y`sœäGN£ ’r-DXäŌžq¶ņ*u|“ž„[gcbź< …œźŲĀ¢Œ0FĄ›ąœēļb€HZߎĮe"<–ø±—gć½Röržr)bŠ[ÉcŒÓDéęEwćMƒs ’rŚĻ€·Ó–ŲMk4±vؚvzéef”0ń ńšń‘WaIŹy?§=1čõęØĖ›_M3MI|ū÷I^ć˜%³"I3žš=40HKüH „˜¤Ÿfņ)§)ś‰q’ē-—=IŗŖ+@æH줵RJø…Ć4PĆeFŁ@”³¼äŚ+{ ’ō¦ń Óń=xgĢÜŖŖœ“r–  ā[ÅĖˆ$šox€ĀI׃Ä»d…Ł“0Ź-–"IW½Ÿ”SI7²ŻI90Į :)¢9Ń3)±\ˆ$]uut&Ł&8CT°=~¼Č½z Išā5&˜Žo]rÕižć”aœ˜Šw+N¢KŹqŜį2“$ķŠ%`Œ€(Æ1Ķöe JŲcĮ IŲD)ķ@(ѢGah”€i 0~9”Ņį–¤œ¶c‰ńrJ!œāej)Šß}£%3@$i¦²ŠinŒ1b@˜<.&^UdÉŅę–¤œv–IŖØMģĘ{Õ’—eŒ#ŒŠŸ!ŁHČkŃ I‚3@ˆżŌ³sNļ"XҼČÕ廄l³hˆ$Ķ€9H٬ćį9ėص`ˆ$%÷.‚³!3s ³_[fĮ Iš‰„wRM„āä©&Ų‹-™"Iļä]”rŽ) ¤€ķō1L("”ų=Ö+™$Ģ „± J˜āEĖ·X4»Ś@Rn«ä}¼ƒs40I!ŚŁM”ŸSĮA ˜¦ čeœ(„ QLÅä3ĢyĀņ ’ÖŸ;©ŠUHa `?1.3HŒ01 Øb„ŃÄ¬ŪŁE”nڹĀyž“Œ‹pKRŽŚÄ޹æ1s2ž’öSŹeĪÓƛKxėi¢Óœ&œtT ńJtIėŠ4'øH#·K‹²‹|ĪÄćCö@$)…QŚé&J8i)ļ9.5> IZŹ8$Ā£ā»öŹ‘¤ [‚ŒŁW“$ ’$D’d€H’ IZ7b–` ®Ā’¤æ[²ƒJŖč³ˆ$„' œ-4”‘2#dn¦()G½{Ž^Xé©ē®ŽļĒųM<Å·-gŹ~š$)”œM„§Ę€ŪŲ—ŲÕW³9„%I R˜“I„·7±"I‹ (%F”Ȭ£†‡=IZDŒĪs %D-†"Ié÷=š©gšg; IŹD˜:ĀģsøŹ‘¤ĢL3Eé”(ušJŅ:·m‰ß„ķ™Ų‘¤*iöThD’2c·ńaD’2„’ŻT[D’ŅPN#P·a IZZŒÓ4QĖFO~ˆ$„;ŁA!łƑ¤tÜJ½Ėq IJ_4±m‘˵\ĪIŹi;)e·ńaD’2„†ķ×ü›²[™Ų‘“®@„‘˜4wīđ“•XD’2WĻF‹`€HRęJ-"IĖŃę-j IZŽaz-‚"I™ŠPĀI¦,„"I™GH1C–Į‘¤ĢLf³ y IŹTˆ+”Qh! IŹÜi7"1@$i9:]Čk€HŅņ XD’2į—L[D’27JE0@$)s!γ ˆ$eĪkŃ IZ–IWb ’“Q-‚"I™ Ńę儈$-Gż™¾åņM‚ųJ)ĻHZæ+Q•Ł[>0ŌÓś½6 h€HZæ2YČ;M”gĀ„ķ_žĮ ǵ|ˆ¤õÜI7h:9Ć0üw·V?ł£’bé Iė[zķ“0Jąßń i€H2<(Kćuć¼F03ÜDĖ‘“¾…ųÕ·•gˆ(c@!łL“ĒY\ ’”,J7[fībLņ,csś)!Ke€HR²Ēić-Ēņ #óʧŒD’Räg4PH˜)ژ“ ˆ$„+F«EXQne"I2@$éMĪi ’$D’d€H’ I’ I’"I2@$Iˆ$Iˆ¤ęÖģˆ$ɑ$ ’$D’$D’d€H’ I’"I’"I2@$Iˆ$ɑ$ ’$ ’$D’d€H’ I’"I’"I2@$Iˆ$ɑ$ ’$ ’$D’d€H’ I’"I’"I2@$Iˆ$ɑ$ ’$ ’$D’d€H’ I’"I’"I2@$Iˆ$ɑ$ɑ$ ’$D’d€H’ I’ I’"I2@$Iˆ$ɑ$ɑ$ ’¤å’ŁÄ«FFék%IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_5.75_dim.png0000664000175000017500000000307414632072346025052 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ4½ē·ŚĶIDATxŚķŪ±kaĒįß%1p”’`„ˆƒ:ˆˆrƒEŚĮIÄ]©ŠH'…Ž‚āR”R"ųø8WĮA!( WAĮŠHMÓsQŪAB ē’>ĻvėwłÜ½/—ä[W2€€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€€€ €€€€ €€€€ €€€€ €€€€ €€€€ €€€€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ š[Å@‘NōV¾jbHr™?>v£v¬ząÓµłf{Ͱ)3éé·é”ˆˆ<–u®>·‰€lĀżSŸ$ŸVæunżlM?³Ėšr‰¤>Łļ­?Uvī¹=Ö¼7‘¹iõ0XV>x’Å]×K^Lū+Ż„Æw?¼¹óŻ>0("Éģ…ś•ŚdyĆwGŻĒż×IķżƒjŚļŽüb%ųwDāņųčŌČŁØ¬uŅ£ė·"żČć晙% §“@ĮŚ­¬;&Ņ?f§ö.ž9Ń*G+Ėö€ĮéE/"kN櫟¹TŻ—”K‘Dc<^ZgX8Āž»¬rnwc“q$I>?ėŚC@ŲÖü€€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ ˆ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Š÷ Ó×[~˜CIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_3_dim.png0000664000175000017500000002322514632072346024616 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ14DöĪ IDATxŚķŻy|õ’ńĻĢč¶-Ūņ‰;Į!Jø”B!]  tKKKéłkĖć·ķžŗōŽŻ–Dzۖ––“„”c!-…BI!p$ävāÄńĒ÷)˶,ɒfę÷GnŪqlĒ‘eėõüĖ͌ōųL&o}ēūļ(¦ˆ„óV®¶ég²‡õĶuūėØ$bA„@€˜ƒėŅ @€Ļø~@€qOē* @ @€ĒTø±b”ĄĢ¶+ɓø»€iPS @pFV®6•I #ĖÖ?JU$ÅōD&±ł!ŖBMq*ōh85W®»Ąźčkź­§ @Œ™©(c°ß;Šul‘ĶLÉ[źĪ5ŒŖgµ`ŻYt¹g^°©eKo—%z¬SĆp(­’hRŃtjĄÉœekśŚ ÆšÖŚi6ķe7Õ½l޼ģRÄ¢‹ˆŠ©h ×$¢ōr]é«8q‰{NZA{;×y‘7ĶØĖeꇻjŸqĶŹ)u¤5ļģ;("b*ŗŗü¾äģÖ÷«’¦p"`ęS’DTCÄāžµxĄg=é?Õ%.=u·“Ó]Żū ͑Һ/cŽģkPRRŠÕ’ 3ӈźĮ9—§–hŽ”lg†)ŒŁĢX¦Õ•įJwēŗg;ņ[¶d.īŻß¼użŽ`{ŽÅūžŅūÆ§Ł­ŠSéß«-¢b6l0Äā‰ē\Y²Z««C•ÖŠš—,ĪpoųPŪ{ކīj•ö`ęr¤f–&e§ĻmßKZ²ęTŌŁēēĶėÜģŒk߉śŃUŜ{s÷¶šæŠŚ,"āĪHĪRŒ®ŗ`·+_ŃĀž¤Ģ@gƛļ›ĮŠ?k³P\Œ·ĢO ~”Ī[¹ŚvŚ1Q¦b*y‹a™»ŅįŚ÷g 6Ušż‡OfC½böʃÆŚbQ%"bZē_m±äÜ«£‘–ŻŚ75¢¹ŒØ2xśļ°½ńLM#Ē“@€ó»O1»kŻ!«·ŹßÜw°§¹ģŽO:3"żŃĶ¢Ö½ÜÓhŃEqå\ØŁj’ѲĶŪŲš¦5©ąüĪ‘°9@oh ŲN×RK v×unį=UD5ŸźžŅYK[¶{Œuæ“@@ ˜į4Ż_¹æņļp‡·Ź[Eµ0Yč7 @€ @€€ @\Šmžłió"L“ŠÓā €#L%¹`ī•ž…Ž$‘Š@ŻK ›Ø §eXSē]ōYė‘'M9“œjĄšøPuÕ1ķīgjž’ņ“÷¦w8luŠˆDtE­ym ½£‚ų`T®Y6{z‰E;üŖ£²į­žŠI]09ø„ĢŌևāY0ėāĢł‡ć£ÆK7üķŽqĘGČ ÓV- ±(ĪĀ Źn±(""ĆŠ£ęŪ’ķÆWĒ–ŹĶ Ō@ Ū²{­Ö~_zśį×Q£«źšm‚c§«{ė¶æC-qj\Āfā‰~’įØf‰čŗišŖŚŗ„ś38¾}š½ż²I h‰ÄšR|¹3#-ßį …ś#ŃÖM-[ÕČųöq(ŗė3B-A€ DWSņ‹ÆU§Ć0ßhڤ޳%Ń„T¾ŌŽG-A€ ÄTߛY¦¹É×ņҊOæ„”ģ­ŻĮÄ% @€n…˜}µÖŁ’Ƀƒ¦č¦ˆĆ½ģ²5öōÓ“?¬õ[™øćC':0ó~š¾]ļī¶„eĶ ųݳL5‹jqE‚m•żG÷4č}’QÅQDD±[ӒҬIŁå…Dõ°W1 ėģå ,Žhp yÖe.·HoG{MéŖ¹²œ<ē¢hZįyK;÷ŹÓ+Œ} @ x’~ZćÉŪŗ”ßĮšWś‡=ŠP‹ÆZx“ˆH°ėĻżMCŚ8sę]ļŹLĪģļ“:,®ŗ÷}•j4möüihHO½fOĶés»źæøĄāXāĢMs?°ü‹Ö1Ž’Õ»÷w8øįä‡Ń¦ĪżĄ—_z Žś¾Ž$”ä¼ā«f]Ø)'G…ˆ9®½Ś¬»Ćך³ń‚āĻ7¼š!»s¬k›Ņ¼­~C’”ćKJo*¹Z¤ó@’”€·}_Ų+¢$92J?’=G›”[‚£²łgßż<Ē cE3›/0ĘńėN Īw¤młŸ£æņt5k‰HėΊ?}L­šzÅC6mņ&”‡¼ÄQĀŲ1• #÷\ųįœIG~ė”ąX²ÄSœ1ļčß6·Ø¦ø²r™G.Ve•84uŅNboć+m=Ē gŅ­—ÆM>6„ŗŖvģßóœqŚ+ČŖź8¶īŪš_cj~łžłQ‹nuĻɘ?yß/¢Æ’ģ/’7¶S«`ŗć‘Īm³Ź•cæÜ —JtŪSÉ®ō’ŌłvēČæäLiŽŅ¼ķxßøfØVU¹ąžŠ€Õn³OÖwóūš7¼ū£½zĆŽ~Ž  ®yœÖ„ »°£zŪ/äX߃©čŖČįŁu3.¼Ż•¦i)ˆ ų““'óūfWŻĘū~õ:GC3wݬpʙ†i*'ü¦;нü¶¼eĒļļPDdrć£uߦƾ°žns Ą4}eJę°ųę-JŌTSÄTŽ_°„f/ŅĪā(ÉŽĪµ+7µ­å ą 0Œˆ™ˆ2|™"yå"iēŲ²L„ō¦åŸK?rßĒ`Ēžē¢śYł‘ƒļz[޼Ó·ƒ0]„vvʘ=tiĘ"{vo•HRAŃV-µhĻ+Ö`Guø»iKNyĪāÉž¦lśŽÆ¾W˜¾«›ć3E':3õ‡Ūg‹Ż|ūæżS$gYłšUE¢ŗ÷€ęP4OŃdæļŪēT0a"`ŗłÄWü&Æ|čŅØīoķŖ¬zY5L§ŻsŃåģ}ƒˆńūkžyƒ#ÉĄ%, †ŚŚ­®NC-­ µ )»{óžō<#"¶³÷ TÉĶį8€0ķ|÷éó?Ŗ*£µ,ŖrVæA[õ׏ŗ Ž&ēē€˜łÆ;6~Ż7Źč'ėYŽ‘Žwˆ Ą4äÕųš£÷LįŚĪJŽ`šz«¾i ')ZÅLSw_:÷Ę©ūōĢsÓŻ Ą4ō„­~Į•2uŸ?Ų£9 ˜ ćb_ł˜Ż5•ß æ±›éA€Ó‹"÷ß~Ķ£Sŗž^¤Æ¹īw LŚæiībĮ£Žū•Ė~`³Åśs£zgõ?>µöˆčfUKwˆc˜F.ĶXóxهµō9†·Ł·æxUŠgwėįŗæÖžé©W½~Ž`Zśč¹W=›“ŸƒŃO=­ļ|ėOŹąķkžüś¬Ō…ÅOš“AœEōg]ö¢·žå†ŸĘ"@R²Ü%ł ‘ēńŹAjZ Ą“÷é•ó?k·”|ŲŖŻĻōž0z"ž‡® č @€énIŹĀ gÆ(’l¤O·ęĻÅ'öožĪÅœÜ8Ėø„œuĖÆ¹ž§EDfÅęót©ūń³;с³.ēKLgĄ¶„ż‹8·A€ÓŻ>¼ōkLļ’°Ļ:o÷ f¼Lw×'„ĘüÄ6ó\T0Ķ{c’™š#5Źƒ¦¹Ŗ?GŲŸŲ9÷Py Ą4·ąVm Ī3ĖāE µLkŽ-_ģ?Õ:w®Śƒ¦µß=ėļŽż§Ś2ÆZAķA€Ó›ÖŪūķZū8)‚¦7očļŸˆł„ź©7}²œŚƒ¦¹M ;cų(YSĀuƒŻTg“)1°HlEē,»ęū}»sÆHĮ‘Įæ{ä³^ƒŹćlb2E *D¤aŃŗ ł`ń?oNĖ:ė'¶Ż•n0Œg—°€Xʈliģ;۟ć÷mžŸÜéÓ©8`Q’lg}f¬¤TW†7L­A€3Š·ēŻļN~Ļ£yĀ_ŗˆāÆ£Ņ @€ē?ßæ.:É#²Žww=uiՎ±hO3 ˆµLķo•,qœ• ×CĶ’ÆøŁ!Qo:ćlcs]zęe«WÆyŚī˜ü}ü¾""j ˜R•ū¼ĖŸ{©åŒžRhŹČ£t£­T0CiJŃ Å—éM†Ø#Dˆ’źßRaÄ č@Œy¶Ź‘˜ų­āŚńؼē{}T0cµ¼Śßæė¹­<÷”WļLŽ~C;Ÿ­„ŗˆ.a1÷ų[ž"‹æ#*"ņÆó.łźäĢ9ҽ«ó3 «ĢlŽcĻ(L›=9ńŃļ}żĮµ{©, aŌõŸ @€Dõķ?_¼ž Ļ\óŠ‚¶ŗ±ĪĀŽ¼ķ{ÓóM.DcŠšOˆސˆüTD䒋 ŹJÆń\TøĀå­{½ßūĪ_ŲóĄ§³ÆlŖ§~˜ōqéĪóŹæætõ©ßoxヒ©¦—°€ø“§>}Ōߦ-\:‹*0ĢyĖÓĻ=õ»¦TüdG U`˜Į3tźwu£§Ėc§J˜Zt¢q'IQmÉŽŒ2Ė¢Žš_Éł1µĀT¢ˆ3ĖÓÖü¤d•i¦åŽ>ÉIkm¤³»ņG÷yuj†©”=D €øŅ÷ÄĀŪÄpgަ˜āö¤ä.)Lŗņ5jZ @Ā+Ī+]UXœ™“W6ļŖ±uPö{Ÿæō©}"Š–dóótÄ} @±%•—–¬(¼Ā:ę)z;:ō„VŒ$÷@@DDŃL.i!F…ĕpĄ–lĒ ļ%e—>āž+æ÷šØ-ā“@€åJ·¹MCćO;SŖv¼ż¾ż&×¢A€‰k‘4§g« Öd—Œ±­}ūσ{<4@z`jЉĉtĒwv¹­™³µ1¶>z:~tīö.ꆩC'zBæ¼t Łc’G$ŗėѓć#=Ļ㔊 $ØŅ²ko_~[Ę9§o…lłćżsO䤓Y,¹‘6jˆŲ”ˆ'ŃØļżŸ'ē-¾3­pōĻæćkałä‰KLā1Å%, ŽNJ3вłgÕ£Æ„)åw\~=Õą$F`ėc‡6ĘØ+)–>*…©Ä%, >…+ŸiŽZpaįŠSõŖkVē/hIoŻž§÷­;åÆ?eĶ#éŖĄ³qĖąą©Ž-XüõŸ-¢H @ŒÄš÷¾“§¹ÆKD‘Ew-æēäK\ŠEI”j @€„g*ĶJ_gĆ{»Ÿ‡/ v4„cß>Ō^cJĖŽŽrr‚Ī ź†Xµ©7JŠ\—ćŌM_榄øüĮę}{6~ŹĒƒÆé©2ƒÕ/æøń3_É[µó‡”Ęü›’‰7äĢ µ›'Œ×RœÉfˆZ‚ė„±ä¦ź=^±¤„śśĢČö”“ó‚06¹³‚Jo3u@lŃL×ČĖ“3Ś[ś:¾JIW8ÆA€8‘7pņk%YŃD춤SĢšŃ„ż=¦A­@€…é7u‘p$ā,I™å w©ƒ0Eģކ!Į2pē^wƒąģ’ė£˜Īę,‘@żźZ Ę)ZÆ RŠ0ŃY8“A€ęüō[M+źŚšī’ó®ż5Įįk䗫ŽĘ–—øSūz© ”]“wū+ē‰ˆčzŌxćü˜š >ŠĵožĖ½ŪLJˆ¦Ł­‹ļ»:Ŗ€pZóļJĻ;ńuŽü‹¾ļ±Q N#Š2tÉ„÷’ūŽ›—Q F‘aM+~Ņfä}Ō€Q˜6[ņ°eR±¶„Ś€pJõīO¹ÜC—¶U’ż[żTS ׀8u÷åßżöģĖTečņ°÷vŖƒxĄ} @ŗµü’_kq“Uæ÷Տ?ž7jĄ0Ÿ\µzĖuź÷ś~{Į‹ÕŌ S> ī¼[1üĀՉœī«¾å\źĄ-ķķµ£Ÿ¶ o¼}ÓC’™Ī … @—¦-*ö:ŻÅåä“‹¾ž™ÆP-L%ś@€øį±Żuūģė2–yJ¬cŁŗļ«å^žŽ)Ć0^ n\˜¾ģ”œā±Æß_G|`*q ˆÆ“æz³Æuģė\ńł[©"ņäīĻŒż²²+9ē:-YIRø’€)A7>4·ü¶Ėæe³u}Sšlžß`W(ÜŻöę:3J[ürāÄ·ę×§2Ž-ōh_ƒ£=É%o–²FyŽŌ©" x­—®`÷Õ·8ćŪŅŌCõš!"¢™„³ū–Ė{T@®^2÷mB[Zķónhß§DDDģƒ…K”­\ĘB,щL±¹+&~ŗóņŹžēX\N5A€ $Żł{c‚£Y)¾Ö“žŪ¦—\<»HŃØ(b…QXĄ”KŃ~“aĪ„ŪV7+žlŁrōDXŪ|{žz°ƒš‚śõõŸņ÷Nl[M)æ=•ydš–+RąvfPQ @Āx®jŪ'zĖ¢·zžM¦BA€ éē?>ōīD·Udօā6óx|ś›_ LtėAÆ;Ļ5ē’-n* H8Śśž·':¹nzQVŃģeÉ9aīE$¢Ē鬙ؖŠĢYeKד$Z @€DdŃZ&ŗ­Żī™×Q5ŠFA€ ØĆxé_nŒNš2”ÓåĪķČZ£LgH<5»Ÿßņ³pxb[»R?xĖ[©®„Ž @€„Ō[ÓśĪD·UśåŸfpGb„©L€8R:oåj›ž”÷ÆŚlۃ)U/łvöÖ4ļ\_'AEŗ#Tg Ó¹qg Õ»?÷¼ ž&”²äS łX(äkX/wQOœ-\Āāę<³ķŃÄéHĻ-»uĶBŖ H ‘ŽÉŁa“÷RM @éo™œżtīz§™j‚Hż;ž®ÉŲOókԐPŒĄŽ'{ĻtŒä`xÓoØ% ĮxkŽyøöļCŗźw>ŚQG%qö0Œˆ×_wFÕKɹćĪkH_{ė[•OüłµŽšæQF @BFˆ¹ēłĢ…–qœ„¦Ōm<šėß?㠈üŠāl’ „@üčķŲß>!0{zĘuJ‘ŗ’ž­7@%A€ ¦­oĆó;võ[Ž·AŖ_2Ęõ”©Ł×{’Ø# „ŖóӖżÓ m’ƒ{ŸŽŒcv^wÖ_¦Š @€“¦ŻŗäĒŪn{vĪ…–ōćK›Ž=“aģūP¤ģ¾ņTj‰XŠ¢@œčüüµæĪ*VU ÷ųź.5³zźó–ŲĘ<;–359²ņ Ŗ Z @ɘļĪ8ü—»ą„6EÆn}w¬ūˆ„+×5ž…Z‚H’āYvģļ"]5¬G^„õ@pĢS"6o^ūßn„š @€²¼tÖEG’NĶĶæ yž” ”Œ±ķ£Æ½}?•D¬p#!'>ōUŪ±óQ‘²5]ūŖ;L©Ų×3ś¶¦{»öų6mć„ @€„cž4XיTpAī²Ę7jÖė"-;νŪ¼]d°qSĒŽžf Š("•$˜ŠV†"VµäjWζĒUĆ “„åßF—Hp×o¼']¶ 9÷Ń·Ķź ˜ńŅĖFZšS¾ģ{’7ŅŪ¾ķä1e0T÷ņ”mzX9ąµ&9œ"2B›Å[ćﱈˆbšō~€f¾yūŗŖš’yźwżM–õD,1/0„™“³SzØ& čÉŁOWUóŖ‰Ųā0ežõ».ϼ’ÉŲ“aŌ¼Ŗpē9 1\Yt’RS'g_õoöŌ*”1Ę%,`ŠT6½xŻ®'õI1‰|‹A H†¼ėŁņYsÆ<³¶ƒ)5 wSOŠŠW’Ö+םY㔿£ī * H¼ ?żłPšŒöP©Ņ}HD[š6N|ėP°öMjHPė?¹}mxp"[šR½Žž @BZ$_ŗnÕÆönŽLhęܶļQCLFaS(Ūņå_žw·E+ŗŹ2s1čß’"ĆwA€ Ɠ"Šiˆyݲ]_’Qł-Šˆ8ćßO8“smؓz‚%>ģoMÉģS¬©ywˆ&½$Łõ;_-õ$N€¤„ĻvŲ“ÓĪl/Q½ā©®=T@ĶRĻų¬‹Fw’¾¹w1å…ÄŌ†½č>ƒ·¦tUožā“@€„Ó¾»Ī1įnŽŹē:öŖŒ¼$š Ź>wó—\®‰mķ=ømm“Ė @€„ćq<üZnŁDĒ]µģÜõ¤šŌsÄ~Ģ1sż…Ł„GćƔŠ`殀ßćó@šwģx‚ų- A-ŗK;’}mõė›öšØeÅ[ZĮéZ%m{vż9wA HXIG[õ’hŽ¢ ئ-Ņ^”9NÕŪ~£DØ q¤P7‚ż"¦ųLAbhy‹Ż™£oå­ßś˜J| q ˆ™}O×Ū#‘ĖRDÓ/)øŠ3gōm óŠ?$Lķ@€ ķ?æ+2+ė¢oˆtÖk"’\<÷ŗŃ/_õw4½×ŗ[”t @|t¦zR^F”÷ ”…ż2ʬXįHÅ{ @H¦śƒÆh‹eé=iY°ŻŖ’=›6śØāč@ uo’Š‘“,—Mµqį­">@€8āYśŃŲN:ݬyz ""ūmkӳǶnGE°Š ""ß|¶ģʱ­č­}…§ƒpD¤s¬#ŖZ6›Š5Š ""[ĒÖØ0ĖIDATĢ–!_øŸŠ ""mÕc›z×ß®%¢0y"‡eē¼cYĻę6ŌŌBźĄüńwłĘ0¶Źį:ļ#6źĄ1/ÖtlĖzI™Ö$Ŗ…xĒT&@L5ž}Žźic}]#æÖ¢Śh[FųQ˜™Öž¢ōÓ‹O·–=E³Eƒ#½³Æ©é4m˜®Ŗ ˜¼śgŌĪ+}-]łG>9µ`M#UD| ¹ ÄŲc~Վ_wŌ6¤×įŹ_D„@ Ą/¶É½ūĒ’ižŻžš#m„ٱ)¼ø}'•`ļ <)Ozl‹ó>·=Å3üżä9JŗŁCĻø„LeŒ„ß8Ō[?Ņ;Nē•ßŌęS!ŠpJzY6t™)¾ęŗē¶æµ8č;Fņ¹£ļƧ„5HUA€  łõ’›TĶ0,Ŗ)ŠōuuUD‚/?ūÄ!’Ę{N‹YwĪM£ķ-¢¾÷’죪 @€š‹G}v{_â϶nĻ]Zū«MoˆTȏEÄ÷ѵ2ʼuJ@ÄŖ[GdQÕØ( AōšņŒˆˆ¼9ōpčųߎ½b3TGVxŲ\Zie”¾P uDģщÄ­@ßńæӈØĘą°»Ģ KŁG–Ü)6ŖĄ1ÖŌ_i†ČšĒܚ¦Ķ‘^XrÕą˜HßčļZź¼E·ŗŅD<„T ±G·ĀASQFy ®bYtwrš""ɳ£K”Ё€Ć2ąõ Ķ:Ē•zxfx›Ó‘B½@€8¢„a`”ÓJsĻ7"GOdwõąˆY%žSœ”†šińµˬ6SL³š"ź…X£ˆSÉĪ•ŪFøiŠ“f”d..¹Ō”£6 |C3©"’næąĘ96 ŁKŅęd”¦ęėQEŽ?×boŚéįr2+eÉuå¹CG`™JÉ5éE""–“Ī\ĶāĢŠ½T ą 2‹_<Æ`XėC$£4µp¤-:+z1 ”儜{ķŹ¢“Ø2Ā{¦Rr:ŅŅß …© ”¹sęŚNqC bš§ˆ śĻ15čw¦p’ČńŃ]Gm@€Eėī‘ŚŽ®ƒŌ€Qō6†/ķŽ£1 £‰ųü­C—™Ņ¶‹Ź€0*CÕ¬C— twŌP FUtaZŃŠeķŪø€ĄØtkÉõCo1„ć•`¦²ųcIiC—†݌Ą`4©Ełē_ŚS©EØ £HÉ>‰)‡Ž”2 @Œj kųM„A?·‚pރݵC—ł,:•`ōSÕčÜ=tY÷~źĄiŁ“O~­› į` ś[Oīńh„* @œVÓöަćÆLiy_įA ˜R

 Ž”äι2)³k?•Ąt ˜ŌˆĖϽõŪ¾jĖx¶i6#įćÆtµj}u •- Įō Öm²éćŪ&_ūńWa­ĪJō @€ @€@€ @€ @€@€ @€ @€@€˜1ž?°Ė™»¢qIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_12.75.png0000664000175000017500000000063114632072346024273 0ustar fabiofabio‰PNG  IHDR ™ƒHĻsBITŪįOą pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<!PLTE’’’]¢:d›Fg¤Cm«Cq­Gs°Fv“H|ŗK‹ĶUŒĪUĖögU tRNS!*=DTc˜;”VÕIDATxŚķŃ1 ĄĄWĮŒ Fl`€hA%~‚äNBĄ—ŚŽ]…‡Œs– †`ˆ!d”9« $\ę« ’—6XIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_8.5_dim.png0000664000175000017500000002224214632072346024764 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ6ŁŲ­ IDATxŚķŻy|Tõ½’ńĻ9g¶¬“LV²‘BŲø ˆ€øVZi]ŠZnkėr«mļÕ^m«õÖŚŪz{½]颿ÖVÆÖµnXQ‹ˆˆ KŲ“@²'“e’Élēœßl²MČL^O™3 3ŸļćqŽóż~Ļ÷;Š).æ”8õä^”2ō꣦A%ū£R @€€ @€ˆ4 % @€  p“č€ pfc‹ pśj@€Ą0t6R†”©Ņk£ „m}»Ÿ* 63či”  Cg5 @`š«z¬T€°•×u©a3żīa?WźŒź ¦Aūg”¢Wgƒø†ó<Æ„¢zĻ[u*H€„ZŖ}Ó”0ūŹĮ`Å»Ūwš”0zķ;x–įė­¢ā“ÕžjG€ÕĢž+ÜIC}“”TūŹŽŻUNŻOƒ 1@:“ņݬ1Ł‚‘‘ÖšĄTŪ ³ ŗZŁU¾zOõ"@ą°=Õg™iƒ<Ę­–oßš¾¢ZezÆlKKģ’ž vĄ]žvY=•"@ Oƒō ĶJłĘ?2uŖD€Ą Z6—Ø}-ź0›ŹŽ:ĄŽ½Ć¦°T@”ŸęT‰ķē®n“S 8ŻŲL@€ @ @€ @€ @ @€ @€ @ @€ @€ @ @€  @€ @€  @€‘aī¤ūON7Ť"Ųķ×ę-šzrē9§žæÉļŌPÓÉB Dšw`yä†)KLY÷lwl‰”R’Óˆ!,,Łž>ADEę.żAé’FE’ÆßaÜ"-Ņ"­Ņi-YVBIN#†°D°Ö½q¦U9r«-»Ķ)T… ź„7+Ž=v«yĻŁŌ„ Į%ēŒ[pģVѼ“w\¹n/u”ŗČµč·VķŲmSv’‘ų @`×OYņLެćZ© śĪmׯŸx©Ņė„Vpćädjsŗ°@Z2žŗuÉ}ŻS[ńÓĘ¢ż˜ø“ļų0„q-ńA€@æ*Žčīīkü¤£į™»N<źTxčwoŽ’½›ęP¹‘Ä€ˆ4?ļœo-ų®ŅėčG’ūŸßķżČdŪWNÓDü¾u÷’åW-:Õ£`Ė›^ŌūX0P÷^ļcs2xaŅē5MDÄī˜}æŻIķF D¤ _›“øw’£fƶ׏ü}UĮŗźvżKSī\•’}ģ6ŪŅŪ~ąˆužā{n5DŅĘū;sL’ƕ:Ł„¹™L§`4ųā„ĖžÉža9é š*j^IŸļšśÜĀē? Ŗō@D„TµÅ¹ū¦ģ~rm¢ćGÆgükš²åīvŁ$ŽŅN…遈J·.šū˜ņÖ¦MKŻō[K܌›•xUOŪ­łmT—µœŹÆĶŸ{äVĄ×X–;"æVk˜«ļ{üēķĢ~Œ8]4=ūSŪŽŲ'ŗ)"¢*sīUŌwd0ą “vĻüՓ/¹×3eŻĆ63mVW]ó'Łl¶H€ˆ^ķ¾{ߝxŁČ ‘(’˜öż[Ø+ Ź„XoæwöwFv„=m¶Sé`ŅwD1ąŒóõ[/x(!5üēüķużŻ—<^M¤²€(ē,Ωɐ-7oéļ^«cjq*g<@4+×“į£śĆŅ瓸I×ęĶ8qĆÅ]ÆüäF÷€kĻ±Ÿ›‘ZdsfĪt—’ńWī.Z€Ńfē,y(’«=qõ ŗQözÅUĻ»0A\m«{zīėś9Ź=·Œ’zāųųU1Å]Sń¼Ŗ|üŲ+{i@Ä*‘ZėŻ›yĶĄŪø×~²ķ CĖ›=łZ‹µÆūMłš§?¾ÆļēŽ÷МļYś˜ īö¬¹ałJZ`0́8C•ŹēŠ'Ģ(>‚ž=Æ}ņ|žE ž³äƾā#Ø7ģŻšŠņ‡ś{~ ­qg_Ēćfż|A-0®ĀpĘ Ł4{’÷ę®ēmĮ÷ā’N Ż(ĆS¾åÉ}[JåĮ~_į~ń`NvŸ×|™|ńå_i@DrY—]hės"=š¶t×ÖŅTyžńI½ļ5„qgŁĖ|ėÄė§^zq÷„ĻJŅųᩁ1ą u×.śQߣģĶ卛UKŹDgćhĄōtyšāĒŌošģU⾄Ķ7ųė'Ēżvwjn’ż›wn’ßĒh@ꐜpÕŠ/䣜·Ÿ%5ĶŽX:äg<ųČ9w4òćéļŽD; „!,Ÿ”¢ōĖū;ėß{­¹÷=-~#8ō×éīZūˆŪĘ”?cJśoųś®ĀÅK§=»6źWaųŒ|å¼’öįŠ+žtõóK7’u×£›¾Xōé{Żž?3†üZ¶ŲÉwö·Y{ß1ńõ?ÅÅüš±‰Sł CĄ™ę†™æymÉŪēÜƊ*)¹™“ĘĪ:÷'KĻK¶%¹\§-&Mā«…Œ·ļzņ––>ņ¦0ī¾ßłčśeē•ȤL—ķČńÄ8ßVœg_vč½ ŸhfĄé岎šEÅōqj…:źbRżocõŖüÅéÅŚÄ4·=õ½e'æ"÷śÕéötT»Ę·ķßxßsoę]’;ńĘø$mŠ/ŠžÖæžær-F€8|÷¶ģy1ł9ēYFxō£Ūżž}U››šÖWM•R™“9ūā“i©3‹R ŽœnvŌ:2&µoÓÕÖV”+Ū~ķ-āCZš™ųŪ“''ŒĻ¹0&žŌ¼¾)†}ķÕŗßߔ>3.YĮ×6ÄŪžāÅĻ|B+ N»$ķ—ŪĘL‰äOŠŻ¾ļķļ_GK N£©ĪeæI›1IU"ūsx»žūü¶£‘÷å«5ĖožĶ-Ė:§Ųī(Y¦DĮē°Ä4ōśė¶K'cłŁ®±µ[Jž(Å-K€8Ŭ%*>‡M»īOæ¬óŌÄd\¶$6^DÄ?ŗ[–pJ$;Ū:żÕvŠ”čˆń~śV{ŻĒß-ÕmĢ€SąŚ³¾øŗłoµ§9Š>ķ[ić¢ń3īZq×(ŸT§ą˜u{²+y±ˆ)%½Ž 9šņhoe¶20āņĘ~žŠ_J”ʇˆÆūÕUŒ°+:3£ūš²ėÆU­Œ°Ģ+”(’„O=@;3`„øÆ_4ęģ1‹ŗķM~Ÿ#*÷± é{_M.Lš°åg{Ü“8Wa!?\1óŖ˜ØŽž¼i’¦ū×<#āOmépiqĄIvž©&.!š?awē7rŪ:ié#˜0RAot@GāĀbš™0āŚz¾ݟŠ4ĖhgĄ)°„՟OUfL¢• #.Śõ…hVÕͦ†“Ōüs=ķL€q·üūĢk”(]ŅZł÷žō©U]“ó1¬0BŗÜѦˆģ’`ż·’¾³pY[7­üi\Ę ąäO$rݬ©’2a©3-š‚Ćē±ėņö½O½äöŃŹ€÷å‰ēž2”Ķ]Ÿźą¶gÆ]üūäĀ=/žōژ0¾q„I§ŽšĮ×&™‡ūPĒėźXyå_֋øTŻģą4I€).MģnļW.øę«=²7l×õ½Æv79Ē]~ģS„Būßy’ßWģ¦ #Ź©Żņ£’ėD­_uqzQdCö½z`µˆ-mެڔcõ;6ß÷·×Ż-M€Qß¼āœ_§W£ąj+SšvU®iݧ˜vדƤŽ1Dכöżų.Õ*.ć0d%²äŹĢ¢čų,õ›¶žŸb*bh¾”2.lÜZ¹¶µī“ĶÄą8SüÅČ’ĶūlNæ»bĶ”UoÜfOŽłdOƒˆUD§• §@[ĻņIYjDO›w6oü£źŃ9Žøužż‡†`Lńµ¹÷ś™ę@ ĆD׿§Fžēšz·żÕ]¦½x—9p0`öø{:#’STm-µ}ŹŚĄé“ńöO~ßVÆKäŽbxZŖß®å'jOCX†-Ķ>wźŒŁg’1æ‰z;×?lļ}”!,z N‹f’ß7æš—`S$¾÷²7OŒ N£Ņ@ĆĶŻGŽūžų…q—j “ą3tŪŹ–'"o0ÜnŸpÕ9wœ Ÿ„˜‘¹Ū9ĘUHė >Cµ+ŗ=‘ų¾É=—Ö#@|†ž¶Āæ52ßyĘl3–ö#@|F–-ųņ‹Žü qŻŃ“¢…¦•6öĀp’ŚĖóē83"ļ}·VĒ$ś½…—Xćw­PXNĄé÷jMżśHœDOćŒwV¬kŁ›J+ >5Æģ[‰ļŪ¢:ā‹.̜Śķ¦ Ÿ‰_<ń›Ļ}ų?m#óŻ;\qi“į°˜8yå=rĻmÆM0o^W³bqFȐPČčn®X]÷±fŠ‚ĆĮfŠFLœņ­»{Ź>\óʱgG¬ˆntÖ[ģī={׆:Æ›)Ņšé6呤¹w’|ܗ\9Ćy SDNWųhjr¶ˆ6³n{{­>ę@ŒøöĄ’ķŅå’tW‡ŃŠĖW7ķļö~ō‹š²Óūn[*T†bč8s¼X&óļ\|Į£Ī1ƒO5ÄŪVśčK߯Õ\ÉĶ­sVżėėöÓ¶ø/4żī½“=g”åÆ=9kĶļŚõŠńĒMioŅN\ę¶ĒoĶ{šū„āÖĖ[:Ģl_ÕŖ–šŻoł½§ć=†‚]•“Ōš0‰ą”r©¦ķ›?ĻžčÉ[h»źŻeŋ?žÅļ~pė÷R¦(jĮēD¶._~oKÆė \ŽlßMO’Ś©~w­»’ę.?v"d= a8„܆ųäŪ""®d ‰÷†„¦õW÷“ėņ ˆSłĀüw65wœšMÖķłź/yÅŸŚw×¶£­L”‘čˆ³āÓm’āŹļŪÆżüó§rœ½£ióļżn‘.­Ė©ŲøéCڈ€3Ņę®”?¶z§qŹ&jM©ŲйŪ8ŹÜo<+""!Zˆ&]؝ĀWWB [_™f€z‡‹«°œ”J$~ö©›ŸhļØ\Ć> ¹“%ĖgåŌ½¾æ1pųüg0‹N€ˆ&·ßsī7­öSÖ’hŲū¢4ŠˆdŸ;ē»Ī|ź=́8#å_Ɲ¢žA§­b÷kf‘ų܉×Zmšz ¢†»Ō™„™Ś“˜fĆ®=OžŪ:}™Ķęķl«¦ŽĆĮ€3ҁ—ī)\¹ĢįinŸoļŖĻ¹U8/1CĽÓģ”Žō@DG’.ā|’҃cū¾?j®Č,l”ėųĶį;ź>ü£Ł~ģŅ`g¶ˆH{Õ&@D™ŽĄŅÅóž\xö±#ŗ©*Į*ĮŠ–ß-æ’®’vNNĢĶ(ī’öoŹ9Ė®éF0ģīŖ®zßl?.„‚"=žś"®ä«n9ńŁm=YѶß-ņ‘_ż£’ŃĶž¦²×ĒxĖSoՌv÷­\—R²gEØSÄeŗ'>æ’ | ‘jN†{«˜éćELٶüŸ–м,"k=¢»V×5MD—ćW­bšu›«WI¬¹V jŅ×ĻžwÕģ~¹iU.b8Ć}ėĘnŽ–˜ē©½õģļu*·ß•’›«±4)ĒU,zR¦!AĖ®ŚŻķŽŗ“ū­ĮJ’+Q@Ä*‘ŚdéŗćÖńō»2żœ ēĢ0]›¶ÄYTžZS™ź‰™CXĪp„"m"ņą`SM5äHn«nŽĮoœŸ¬Eö­“Ēœ×OŚY…󕊬ƙ±Ōāt` @T0“I‹ó竪HC©Āo{ 0T ™ł UŃĶŅł]ĮӃ!,QĮÓź÷‹črą`ĒŠŸŸ›‘ÅihĢ›Š0zæ ū>ųIz±§¹£2œÕ ÅW¦OÉYąļ)}ŅWO £T°£vć§·Nœ®%ŒIpY}žf+ ?“)€ŃŹ<œ76GÖDŖA€•Śv—Öµ…=¢¢Ł,ŽC'BW5 CX¢@Y‹¼86³ą¼Ü|—>äųˆ·$jšˆˆ.U©!`ŌŖj—³SĒĶÉ—:¤3=ć,1Eń4•­ģibēvĄØVŪ"ƍqŸ“3.Ķ,źwMŗ^‘֝[ˆ¤Ž-+ӝEs ʧ ˜ Įö®ś¤1"=ötu “č¢PSĒo6×rś3+ß«üŲŪ™:1ŠMÅ8fŠq©ŗ žƒŽÄųӖæ(wnHaEz8Ā0z%¶īī˜Óŗ#sZLqŒ=”øīWQŁ šAa聯A{ fwöü®ƒUųzZ7oy"ŽkŪ’ńA€Ąą'ĄPóĘģŁ¹gµolŚj/ߐ<=e,U!@`Šˆ”¶Uŗ÷ū~ĘŠG€@æ“@ż»"Š_1SsĪžĘ˜s<åū_°[>y#“9ØĪPp€QÉ9®õ Å8JŒŒ)ZbC¹M·¦žūŖMÖźCĄh6ą–«8e¼yųG@l)5[švι3ė_såĖzsÕ»@€ō)kŽ-ÉS„Ż*[µż)gFÓGJ¬«Ē ÄM0Ł‹€„LVćw?kt=ņ/Șę=³n×}Õļ{bĘS%=ć˜JRqÖüƒėŌć 6–zź-Ūß¹ÆcŸHÉÕc éƒ ŽIt£JĪÜäāķ*½~1Äßŗéž€¢[C yyĘŗ/®ų§ā£Zz ‡öžŽšĒÕ>¶+Q-ēŻŅ¶§»)g^j¾ˆĻėˆ  æ{ū‰#÷†6e‰sBR†aÉK±Ēˆˆ8bӊj[Ø× Õ¤FO¤o©ćµ˜†ŅŻ«w?8:±žRD遥‘ž†jZ“Ą‰ĒS¦V¼ŻÓ bXuæˆHŻ6GR7æQH@„w#“¤ģ»īĶKĘ3O职»ōģ;Ɯ{āõUõ]Ķ""ŗiO1„棃÷­”öō@DؤÄqÅÉŁWg$¤ĢžöĢo.½ü­}·ż×ęÄEDQŽž’Š"Š(ʧžJī:iSŠ.Ó4×ؚ–®cG5gسa»¦‹ˆXōŗ ł M#īÖ§Ž,2 āĻ™5ÉŖ‹ˆĒ³'ėĀ©^ą*\˜öĮ¾—ķį¼šn/ś¼¦‰ØĘŁ·µn®^/‡_%qL«Ēō{_­Łčšč°] Ļ ”gRgęéÉvõĶyV‘ń—}īČу›·?©˜"¦ōµŌOķļ”{ī]®ōc7Ūėw½Š¶?qlמŅTU ŠˆTś_yŒv  ☁ioŁÆČPEŚ«£¶Y3«Öv©ō×|ÜūŪĢ \½†žLÅ“]fKL>rĐ/‡ZŚ+U³£Jė듨‹Nõ mūžĀēK®ėØ/ ģ¶Ć} %9·ó€ˆŲ²å„>K܌ó{K/™rcLģ±Ū~o ŪįŖxWm€ŪPc\RK „a>g°żĶžŽÓŖu;ęėģæÓ"½†°,Ī W}:>D:j?ųCÅ CźõPz "X£Wy®ē2mmś“øĆƒPMŻ—aysbęqGĢę½z`(ߜUÓģ¦ś€ˆfźŹ>wVÉō«ŻÖƒ÷@tՑ”1!}ZJAÆXPāR5%@Œ–Łšµß¹ r¦+"’7ÆeŸæm .ˆį8÷×Ų¾g8ņĪm+kŲ4“× ō÷Ņ(€Hš—Õ’sŶæū<"I¹ćõż‡ŖXDDrf%g÷7A®Ŗi‡ö/öhu[©; ģ«’ÅMÆż¬v³a¦Ģ2cśzÄä˜Y_*øXs%ē[,¦x»}}Nƒ'&ä šĻŲ’Ę‹ˆ„Ō]ū>ŁHÕ¢żˆˆ’¼śĆ– _Gł5UMÕ·č}’mŽæuMæcÜ%JŠŻV³ż;3Ģ•†e÷ŗ“É6Ūq ›9ÓŪŚ]/"¢ÄLø2ōłLćŠŌ¼%qŚW³½Ā”}­ļ½j2†5 V¢ˆ“Ӗ"f’g®[Œ¹hū«YĻæŚłŁ³S®õu$$Y¶nJÅ{ZČļŻ’ŽH̙֬™Su1Ķī†žfÓv§LjßæõiUÆ ~üTmµ&@ŒbóņtĶžšnūįK†Z÷oųõ” Oās',©zĒ™ŁQēH }ĢY{OSŁj½»YŁōā>Š«°Dµµ•"ęV—uč¶·öČ~Y©%5ļ¶īlŻ)b*Š)ŅRzčøGŪłń1L¢ˆzļ×ŌüłČh‹i=rŌ<ŗ«oČŅā²’‹DDŚĪķŪJ©=‘?żeü×ņf™ŅQ_ńī”#¶ä¼łJ0ąi«+¹ĪźpVov¶•ŹžŚļQ/s{©’YõŪ¶>£žķģ³āE¦ÜŠÓšY VÆõv:óuõ@×ę×øöŠ€£¾<÷ś«BzÅź#ń!bqf%dUnŽ’“H½*fՖNÕ*ę@D½_¶äU›MÕāŽn¬hØ)%GN‚™“¬vÕŠLgÕ"@ą°«ó¦ŽŸ, Uż‘‚‹œY"žžŻ/7ītĖܤŽ 1.…z pŲÄŪ²¦‰ˆ4–ZBGŽÅ$"ā÷”’ÓŌE’Ęäžwčø#Iį¬H€€ˆˆ";ś{Bz払£—š–½½śAŸ7.M‹óuš"<<óįŒ—Xj6TL¢ˆnöKł› Ūn[Šę?rPļ2»{ZĶ$½{ēŠPĻųK&}I·wģö7ÅÉųL)§hHŠ3ŽV³FD‘`˧›Š%ĘcŖŖn†Śė*޳e„"öPņ„[ģėø3'.µ³N ‰ģ{»fWŃ"_(Š©‰H‚‹š s ¢»2^ķgĻŲžĪaQC­öc5(Šˆˆƒ2vćÕĘęLtå„ĒŲC½ļ iŠ$äz+Ż:“”¢H£ņÜc&‹ ‡„!,Q­|æģW,“ rĪ-Hw7˜eŃ %ŲŃūŪt¼-Ū%uŌ1CR¦”Ļ8{Ęy‰Ē ŗØf°­÷ccé9‡zV±‰f*Ŗ&½² U,jąøĒš‰¬F'@@DD±]ś/©qšc8N˜Q ō>C€ "r鳗_Ÿp`MŠgOč8hKĖķ.ļjÖŻ"Ž4‹ĆÓ¤ųEL%yZĄ­ŖŻķyē)Źė¹ńIq® ²é-ź7@4s€č–l_|÷¼¼‘7/ąs(fĶĪq uóż’²fÜn³‡ŗšöˆ½µÜצ·ū½Ŗ¢(1YYSc’­Ī®–wžōģ/©`Ō9ē2×į5ö„¼5 St™hŲŻQojĄPL‹ĶįŹėnń¶)‡79ŃrĻ.¼B4o­łØ³¦Ź÷ŹcŌ± aˆR)©Ž- ˆˆO‘=QĖ0é¦ųŌ†ĶUėZvČ”„"’s~Ńģ1e«ŹV©”cGŃV¢…B]»_Ŗ}?Ń“eĘќеĀˬ1åo–½”†Ø=č“bźm5ė›Ėt]5 M,Ŗ_D¬ީݦwŖŒģ 00_³ˆˆŖ‹._$=5kø"@ L]eŌ \́ @ŒēGĀ>5ĘĘdM¾qś—•ZōĖxą8f¬3'³8’MņĻIŒwŻäöS† wö”kÄTED‘É×,­śåŲu÷¾øŸŗōŃO£pŒsBGPø'IDATŹ,EŌĆ ŅM™¾¤ųW1u”Ҝ3n¶ĒŪĪD“¼B“ķMčeĀÜŃTāĒ=¤—„=€”ä-ŖzŹ—ćuj 0ä¾GÉҜ9”¶–}®ó©C¦ĘgĶQ„ųóŠZ †P čµÄĘ&õŪC”D}/%0ŚeOµ ųeš‰tz Ї䢒›,u a1Ōq—ō@ ,ŗšŌmqģ_evS-ŽŅ½Ķ[3§X¬ĒŽšoųuOĆńż…Å"|šf”>^]pÖ­1q‡n{;¶žµ»5ŌŽ«ŸB| p¢Žk’+o¶=Vu{Ŗ7ŚØCdtU¾GF[™8†-¬ @€ @3Ł‘ @€@€ @ @€ @€9ü @€€ @€@€ @€ 0rų=@€ @€€ČĄ:@€ @€€ @€ĄIś’•Ą4«±ŽµKIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_11_dim.png0000664000175000017500000001513014632072346024671 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ8›71:éIDATxŚķŻgp×aĄń·»WQ @‚½wP¤š%Ł%J‘%ё#[ŽlI¶Ü&¶ĒvlēC¾Ņ¾õSė>ōõ_®{Y*K6/Ū)„!¤ō5÷/ŹÖżzŠ4\¹Š½įšDwlė¶Å{vy+«¦g…ß3$DžćļŸŪł”-nØK1į öWŪró 9ŖŻž©ŚĆõ¦!¤§U937<¬:[Ļääś:zĖÜK·}zéÖYę)ęp³` ŗÆI G?3’ē5wH°ūņ¶|ŌYpĻĘ÷uėO­ŗ=#k¦¼LžÓuł`Ē…É]XZÖŽø³ę ’!|õÆłÕ(SŠ>÷Bß(€„śŹyŲéPāžŗƒ-īÅYy³?oŠąD÷©Ę·ij·|qå-óĻk:.Ō¾fŒG‘:ß[e„€@Bż÷ĮO&āuM©ĪÓ%]Æ?¤iĪk?]Ą"ęHG÷éīKŠ>ߒ†r¹ķĢėRH|ū_|ģŃē W„Ҙßi~[śę[*¤•––ž!  ßxśĄoSļ4×` į„·Ņß7wFŌ’cÕ5œĘ įļOÅė“]īāņсŖÖĆ-³G$ĒÜ“Oi:€8*T?¾ēöĢZ}ÆĶŌÕ|‡U„¢,+.,ö44ń5϶”S*3ˆ£Ū~t4'ߝ™źŪ”Š‚ĶĖOż—::÷R€8qęg¤~>&¹œ·I× M×ä,§r1€øyłĢ[Ÿ9•»4¶E³;4Ē¢mŸZ²©į‡Ć6įī)Ÿ~\„€@½Q÷•Ē·Ó#G$ÄöeÜRü°¦aJgnˉ©7>aÄÕÅsÆ“•¤Žø óŚ›be/Żó”ī G4E!Teėcw/£čƒē¹ājļŖļŌde„֘MŁ{¹«lŁž5·^ūL0ątO=·žģ=Ó1ü‡ēd˜ÄÕéĪ ’b¦Ųßę_Åo†jóføõ¼kJ>L!Äxó@y$0ł5€8;łF$œZ#ĪĢŻż%Ņś¦!tįi¬ …§Š;ŲŪąóō5žjy+Š+Ća!$Ń Ī,śŪ£gjŁ7G@ ī¾õģ_+)0N)ʟø2’r†Z?XśśšŲōļrā¬X,.VRb¤ŅĢ^7’Raķróń?\›qöųŖÆ¹ć›©1VE-Ümŗę^& –Wž9,gų“tqµū[[vŗR$ bń’»¾mĪQ‚1µģĀÅҜé9qå­Ń-;ø,…~ƒwM韞|“ذpū¬Ū¢”ž,;?Ū“å· qōł+ƧÖ<ŠW—YØi‰]Sė™ŚCWG¤PķŁZLӁ oū閷C‘ =Ū?Ōt\Īxė•yéHUķóĪĀ€xĖsIć‹_Ū÷c§K™2[ˆļõĄÄŁFīž^Žjӌ>ŗ>Öķ©næ~žaŲncĘ®ķŠT¼ŽÜ=×kq%:ĝ7(„ųÉ_æ»ń“Ew 6ä®+ŗ;0Vł?EwtīüjnQlÆeEDĀ!ƔŁĖüĆYyWæ WĪjED›Żō4vŸé«œ:sŠ"Fd¦e[‡:=sæ3HøÆ¦łō±>!„xśĪ'ߍžV‹¦ģx§ń¤+Ó7 čŁKÜły6>$„ŗŃWRj®¹uĒÓŃÕĆļk»ėrhT3£X«Ņč+yŁ3>ßrĢ@ į~ńāÕGGJļ.ŪxO“?×~ŗīe!ʇmB’€#kõ½B16T÷ŅPµš®hņaˆę“}ē'z…ˆę Œ”Öōž|EFqCzVŅlFt JŃq¦īé3_{Į–”ęņ_šćB!k÷Ļ’:ŗQö¼§R1£[kX«j™łŖ čsÅ_żŅź½Ń-;ŲPõGuŚŪžhó`ÓXgżŠ!„©­Ū›·)s†[6šBęū×hH1XŪvŹ[ķįū€Vq„䤌26‹Ü³ęļ®deG5“o:qżm„2ł¦½zļźū³–Lł°Y9Pælkpb¬½ÆĀÓį^ 6§Čףr¬÷²õŪüØzłā„sŃWX¤®æśgŅÜõ­Œy"¢GʟnRgż›?gƆ® !„GTM1FzšĘ¢•åæķT¤!Īżlß?ÕæźmˆžņÆRqņJe,ŪĆ ,õŻgļü·¼5“6‡Ż~Ķ,CŌn;:ūĻģŚóåÉw=­~•[460ŅZ°38:Ö1u9÷²‰AՈvTż²ņ͚ĘŲ¶„€€„ņģ?*Yy‹!„Łv¦öU›cłžU÷ŽŌ-»Ć•9ł¼)Kž7|¾ÖߞŪ>±ņ£6ūdh.żo’„ųŒ©KæōZKw¬?Å.,°Ō†ķ½•žĪö’w“œŠté>ÓqVqx¶ČČ4ÅP}ΚĶוæ _wŸš¹ū™„;®~5īķĀ‘—”›QKąŅ”.Oģ?G@ĄRžHOł!Dū[WÆŹŠĢņ7wŸvf 5ō]Q݆_į<(©ģüōł¢ū\`pćć»ė~?\ć£1•Ę‘‹/yĒoäg XK¹ž¤Ś†—•÷((BŽĻ|ą{ķ¾å·Ž3ĶǓŠ’®Fn|(ŗZŪwņ•Į°8 ×k¾Sm÷ÖGWßūĮöWV½ØJéė}ļf>“#¬]iy/Ź‹ ,8U‰ķģ„ģ•‹WÆŚ›³bź÷ĘūŻłzČ»™q“ŠŖ’Ń^4H@ )g ³.šUüTž×u׍¬°čÅłŽuߍbT«øXqöęĪĆå ĄŚˆ=śkĆuv”+{¦YLĘāö£‘‘ƒW-;uéģĶ^ĘĮ ¬ ˆ-Ś€˜Źśū² g{ÖÓr£ņõĖĖGjn~KX(wa™JńēVŻ5ūĀŪżƒ†?öõw꯷tÅeKųe€•¢ż¤ō‚-såĆŪ¾äÖÅkc]·Ķ”‹/Ę'¬žDł¾»tĒģłėk|Ӝ ǶfS©;ūB×P¼¶„]X”3Ģ•³†@Væ8ÜXRŪ1]­é?učfo{B@ Ég ¦źČœužŃļiRƹ®>Ļ'†m•-gßøń‹gÜ~™`i@“hœķ Ē"Õ}Mn”-OšöŁ_ŹÆ•U}=¾ł ”3Õ Ļz¹;cė'®YZö+Ü#„–'Ü×/?Ŗ•–”æ™kĪgĘ.,°”fn¹š ‡Č„č-÷÷ŁÜM'®}&081¤ }XĶ“éĻxՊw®\J˰”ĶŻr¾–ī¾;I7j’ÆóĀl‡ĪU)„"å5ŸėŃ/*ŽŌ5$fKŲ…ÖĪ@œŃ-7ŠtķQń᦮ó±yÕk–JT>XL2 £C‘kN¹UģR‰eM=zł”Ę®n æL°Ž¢Ś¢<¢AļÕĒRčzOéHÆĆ{vGØüPSO"·…c `%»#Ź€Ø28$Š&{:jž0ŃĖ[¶> ”ŲMaV²9¢®@ēł?Ÿyščˆq¦#våīżü{•N˜€…›MŃ-ėi3ŒÉĖ*od]Ėdžm…›·Ŗmf)oi¦=ź śŒń€W!ʇŗŹolmvccĘ]Żó3Hy™Y¶®—¦CUoęÓĻéK–HyŽL›ķ²Ŗ¬˜XZł;JĪm! `!§+ŚK9L%ky[Yh@5“u[8²Gy””®}Š‘LŽ|0€¤ Čź{1ćGF ¢ó]ÕT„ŻFXY—¤ūŠŲ…ŠęVЦš¹A5…0•ĘńŅ ²n +ßt£ø™»"':…kUŻG~×6œ¼ŪĀ.,°2 óĪ@t—įq­ŗņĀ)i&õ¶šė«(źüw²9¤”Ÿ<"¹óĮ ¬dwŲżYčŌkžTיüC@ĄĀ€ŲķbĪėŹM„q¤ę•Ž‘)ßJŚSy Xf‰{ī ŁjŪŽż“Œ¤ĘÖ°L^ö¬÷āu8–õŌ”]<-eŖl Ė8³f»•¢ŒtuÕ¼}¹:•¶†€€eģ™×ßĢŻQ¢#\żjcojm Ė8®¹ŒPj+÷z=ŽŖCŻć©¶5$ Ž|=ąp{.ł|µ­§K=õ¶†€€uɞü7gķ¢mĮžĮŖ gD«))9›:Ī ,ÅłÄR!„Čߙ±¼ó”Ń/jŽVÖ„źö°Č–5yłė}¦č|K)ŚB5Æ6õ§īö°HĮśÕ·śjŒ‘į!tµačņ”*o‹­ź­ŠĘ#n{  Õ4¼÷¦4R{{ø/XäÅ_Ö6 a kåēŽ;œźł `i6½ėµõŹKo”^i°=ģĀĖ“÷ßziøŖu(=¶†€€…ŹO„϶° @@@@7!iOŲ"   €€@Ść^Xf €€€€R 7S0€€€€€€@@@@@@   HE|"!€@@@@€«lü@jq\¾dÄžs!?€5S©ø(Ē“g<ģĀĄMąfŠf €€€€`”p/,3€€,dćæ’‰āŚŌÆV ū>³|Éԯ݊Р`^.Y`¤ĘH9 śrsw=Sø3FŹ.,H*붬øS±T@L*Ė’ÖÓ<õ;†K )IxCva@RŃĆŻƒž¾.ŲńŠl|(GJ@ ©IišŅLʑ± ’ŚPĶńØz2^MH@ Éi‘ä»°@@@@   ,n¦I„Æv$gź×…›Ö: `^åÓæ>P$’4 ģĀ0€“~ƖwݳWżēüž²ó>IJĆwn¹‘Ÿkõ‹„„]X ø ܙ“';`B@€~@’# Ä³m›²2“ut\‰IjÅāū\æ*KOÖńHƹ‡żĪ{öīŽuļX½æ—€¢Ķ‡s’³[Ż6³’ģŖū'|J 9GÉ1H:24pŚg aĖm{[ ”åķ5“ī~IčJmŁk½Fx {żŚOIĶmŪō™¬UBČ ˜S]{é;ž®ī ›…˜čl: ±žA‘M@sj8°±?ÜØBE†¼Bųj6?L@óč;s°#<łŲT‹æŗė™Ąhū…Œå0Ń`$ōžŪµŁųRUö²PĒų`rŒÓx E„=ż!„X¹w¼u“uśsRQ$3Ąœ˳W˜Óī±hØĪ%֏ƒ€@АЩ !DÄ×}F6ßŠĢšģÖ" *QswšĪäĒ@ EØĘHe2żÕĻ @@0)D@Ģ@ ņ÷(93»z÷w MwŚr­Z#ׁ@Zč©ŌƒŠėn‰Å Ņ‚Ø_õ -Ū4  ¶7t=Ōk†ĖŽ×Ł…icčŠ"¦ß§— J.ĖĪÅ" Vģn«ę ģĀ€“2ÖjÕĢ€¤Ż–»‹€bfÓ½Wą(–\MH@ e™šį^øµHŻ™†yĖÖ?d¼’N.k×N@ u"_\²ć#ߔšB,Z“·€¢ņVüJŃnż›¬•BŒ¶5f­1-{_' ŅĀ#~ź­Ūóõ5ū¤Põ‰!Õ²›)r!!¤85Ņ~r fć#+#=gå„uė% ż•ĻKÅŚJŅ‚"iķ9  `:neiĀP?¤”Ć €(Õyū.N> øö>”$ €Ø(Uõļ?Z“ׂ·å€€¬Ć.,H¦kݚÉGE®ißOŠē„H[ ×?qõ±;põQXėÆ# €9Ų ū 'ļ¶xKĻųj śŚĀ¶;2C±žä ÖpTš>¤BĆļSo)Žõē"ZSYė@¢FE@ łeī.ŽäRb>Žā+9›øAHz›r6ģĀćµå­é-™Ą[šHzŖTcž}čjć妞„ŽŠ_ ¤£Ö±‹§œ5ž“ ż k ǤN@11ŌĘŖ¦ĪDƅ€@Śi?’Nā×B@ ͌h oĖÄÄTźڬX€“Ņ8wš5H#£ZćI& €˜˜JCc]“Uk# 6:Bg[·6ib\k<%CÖ­€@ZJCsm½•k$ :ƗŽKK×H@ Lh ļŽ¬]'€”'EC[MÕk% ņŗõj‹w_H­žŒgÜśõHq ÕU ±^)Ķļč(—r!ÖL@ ÅIsaÖK@@@@@   €€€€@@@@  Ą‡›’Hé·qsÕmū·ĶµÄh ōø†Cß³bī%šƒ"!a€€€€@@@@  ÄĻ’öŅmō®hrIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_6.5_dim.png0000664000175000017500000000321314632072346024757 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ48|†ŖqIDATxŚķŻ_hUušs¶ŪīŻ™©łg¢Yø`Š–eTŲ^¬™†Łc=Tō EiD™”BI>’d!–E–Id*d>Dia“Ģ\–9AĢ4“łg:ļīvļé!r›8·ū“_ņł<Żsļ}śų}łżĪļœEW„'«ßył(9„-% <µ“‡-.».zZ!+˜ų¹‘·ķ¼&“ßmŚ!Ž€O”€¼uļš„I:ĪTÕEQ[ÓĘÉė 2 •%, ó«īxaš‚Tęā5ī›T”“‹čƄ»†¾Ų}Y$·’p§TĀU" łž‡š" Xf }Y^;zM×ü#‰ZÖ7=+Чdpꆮ£s_|öų†©„Ģˆį3»H'?T”s0ą^*o;.óŚŌ ®ļ ǦŸ™][zģ7—Ńƒe pĒĖ8X÷kYG—TÜ?d~öȈ:é„Ė0ą²q\Y×ó¾ęņć(3fR½Ū@ÆžæübHūų§ä£@z‘d{›f¤Ŗ;ÆĄe­ŗ'skoæåĻWß·jÖæŸė-fĘ Ō#%óJ’hkśiΘŁĒ¶/i’–ĄEÓW¤kÆüŠ‰S›“xßé9i…Å6^`@忊ē%W\ I¢Öw7¬śŅSyƒćFB`@młżö©±å£{+¶ŸO­~eįīJW —ڶoŅ×ć3µ—ĪB:s…ųō›‡ę=³©Å3yƒä":€©éEßWÜŅż›ö?wŻĻżĖ Ćå€Ęö³;zHGó²ĆŽ6»°€ ü±¢³Ūė¤ņ¹¶=źCōĆāęöo» Me…C2Q ż‘œßŚuG•³źmņQ żQøxM¶uOö@Ռ'–ÉDōCŔ(Š¢$ŹžĢīj]E×.x{¶TBfŠaī 1óKG•–dY“EKcåØAS ™ißm;+›PŁĘ ”&õĖĀ”S†ĪÜūŲė'¢(Š>:EqŅü·dč[I×W?ŗ5łąU‘}ŗD£°9ūßĒĪÖs»›^‰(ŅŪs•ÕrP EZÓZr|Āś%#$”@ŠtdefŚÄ•r Xń'Ÿo<8Ł^Q3€"%6'©‘F)P¬¶™ėž+Pģ$—$åõrP Eڳ«P(œ–ƒ(ŅMCr-‡–Ź€"­}ļ)„Ė9 X§v6n—E›Q&č)–šō°8Šöf%@QÖoŪ’żōLMZ”+–T*•.M×B'‰óQ^ ’‡Ŗ–ŻeŹŚ 9I\ŻžMŗ÷P€’`IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-4.png0000664000175000017500000003535414632072346024051 0ustar fabiofabio‰PNG  IHDR ™q*UüsBIT|dˆ pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<:iIDATxŚķŻT”g¢šńI\Ę’Ä ADc½ƒō:ó¾JGŠ“i E)R¤Ŗ±×ر·X[ģ½k¶Ü½ß–»»Ł›½ŁžŻd7eS”o^bģ2ĒæēüŽaļ“9'’ó4YKK‹ Ą“gēēēUp>’‡4!ycL&ėĘx€'…‡  @„€  @@€  @ @€ €ž='Ä9ŽƉ3HqĻ?Ŗ•‚Ą-ļ-ĶÄŌĶécOżY5ķbĄŲHŪA.)S¹¤fŪyē œ8ÕĶŚ)Ń„’č°įö…QVćUĪC|5Y @<6óa¾ę_“čm³»}Ž#ŽSVę8„ļœį®>¦õМŌ €`œ7ØLÖ¹½—ƒ!Tzõ<¼’˜ˆŃC'OyŲåYšēĢ=…’7xźNßśZ·ÜCśqń«‹@€ø£ī–£-{åDzźĪØļ’ÖkNJ sF„×$ š™fē“0pb\ś‹}‡Ł’ØK÷īvŽy“¦ķ(0Čw’Ńį.†‘ól uä9ó”ŽÖC|µaS·čZg?<µ§ÕRtbBgˆ •„£r\מVęҌ†A§Ææ¶õ5n½NėkŚłØ£ĘŠ‹t}†øžłxĪ€žĶŲčdš¼Äķż ĀGĒ4eød½QŠ:Óį·,gˆÆ&t€CŒć€±Qclܦł =Č%Eh ūģ9=Ų ZĆēwå¹xō²™Ō½ßؐ”¢ĒZ-āØčĘü±ŖÅ9c”ó23÷čo_f%Ķ~Ųø„‡Kr{ø ö˜.ZŽāś{Æ‘fHģ|ņµ=:˜3€ž}콆[:ĘdŁ–ŽŒœ3ķåą2ŃŽæ ŌjBl°!BīŗÉÜ9kÆ¾ßØŠqw‰‹.Ɔ„ō“oŁŗė{Kŗ†ł:2€ž!żF÷ėmē6P:éJ"͆ŲyēŽ›ŗź;—Nš¶]³Š-ļ°NśóČČŗŒū-µ’ŽöķŅc@ß;<Ć{>śķ»$Æ50¤cr2véGFĢIģ•“Ü„§•Uē—śõģ;"hŲ°ĄbÕ?]twĖ1/ńüąYW­˜—éš{Pßö(Ż!>jń { iŸGļĮ®={Ū¹9·=Į €šŠģ¼óüZĆĆ5{æ~Dxuö ēdÆŪoFļ9h‚t[zgž @¬æ ~ŽpIųB Ž;©:-žÓ9yĀ0ž @<“1QcjĪ ŸŽ-8ī$o“pŒ›Šą”E”g—Žm¾žąŅpUy#jVHĻ šåY·ō•Š5ŅĢFŻEįóśKŹ/fžŲtUøy·);*žŸŻ$«^Åī!EoŠæYĖŗņģąŃŽh=e=“–†˜s^õńfBZOČjż8qaĢ©\śŲ{öļ3Äc°tY!Ą{9rČ ä%ŠeeGÅ?5]’ź(^ķī䒚±/ńÉ«fģČx-ćdĶ9Õæ žUhYĶk§ÄÉćש]³÷ŒQĪĻŻ”nļ§¶õČō6źŻŸg ÷æį}ƒ üc¦4Ē®ž¾)ēxhÕüyžś³źņõUĮ•ė«„½ Īēߋ攕¹##ė¦ŁøM ‘抧³#€pļMźŽy~÷ ūqĶ9Ø+.ŅŁŗg†Y;'ŗB¤Ļ Œ ߉‘ģżżĒDŒåŁ€ŃdŒr~ń‹}‡ZólĄč"9gŗłPo[™LöĻ Œ 笽:{}š!BŗšœĄØ"—°¦ČŚ)1É|؏ Ļ Œ śsłqĖ4/—é,†łEš¬ĄØ3 S6Ųłäk-• ģ£ˆÄ)}§fDxµĪŚ)чē €1j€øåÖ9Ä-ÓpˆV1 €1j€“6»tą„øą.=­:óÜ Få”=„±uĻHģŚĖš@€?@FE5¤ ńÕ(d2™Ļ bžŚÓź—Cʵƒ\S•ĆKf¾Ōox?ž= @$ßXw‚LJŪ¦䒢µžŸÖ„{kž= @Äh\¦ļÓZÓ,é2™¬“AēŽvn=@€H»sWÓ öœž×„ūėīF 5ȏśŽ 1ü.g ķj\üźĘF„X¼ģ?üėē­&ĆžY”įć.Œ @¤Ż8NY”~©’«Ö>C<ģGĒ4[OŠŸf枦įd,@€H»ŸøN7Vµxśˆ°Ŗ8‡Ų%j‡øåšį5Óŗ[Žö$@ F31e³Īj¼J1!yc!B Ņń@€!>6© Ń1uŒr~–Cģ’¼Ń1ĶE @€g!@¼rƞd|øęŌ‚#½§õų>†čxīė é/H3€LŲÄİ©ĪYÆ<Éqœ²¢P ·iY'NM°uOźeėdÅx0qÆ*čvO»ę”;”yRā»Tó‚¹]_ŁWæŗrIń1GZ‚Õ•1`¦.Tl®9+~æ“bż“ ‘QõyŻśŲŽ”ī¹õę7üź;|ņĖŅńŒ @朦œéžæy–»ž ž‰ś°Vmćšj=)ŽŁ|˜ļ°Ö @7啈×ė/*Zfż‹¢aĮü'¹dˆÆ&× A¶ī~öžÉ܆ĄÄ9Ä%ęGÕ.jÆ^ŽR±qö“>Ž×=’ØVś]ŗ „cx˜øŃ1IY?Ä%„w8kĄÄł©ćŹ"Ŗ–4¹ål(}9ø,Į1nyī“Ž§ōCüt:–`0q©+"÷ėvǾŪ¤\#ż¹‡•C?CčžT|xźĻŖ‡͜i=)>‡S°˜øŒµŠż —…/5;•×eżd/ųŖż&ÖĢ ÆZŅ ljZlōўVŪø¦ft·!݈Θ0ń™ū¶ŲŅ|Mh™yH|Æņ”⣒ƒāŸfŽO[“u4vqŁzķI£]R8,hfV/[gēžÖć}˜šŒČ횯„ęŒā³Š²äµ¶ī¾c”óÓŪ3><“§4–1SzX9Ų€žį‘4]ZŌ;Uæń×§JŸkń²’POõ–™ķ Ī» {šą×ŪĪŻ½·ŪD–`x†DŚRw^üz›pŽŽēåĮ”Å1Õ¼¢©ĖSŽ rNņZ‘ m"œżƒ=§§pˆqąķd3Ę €‰HćUeKŻEń3iHÓ5ń†v‡xvĘŖ’’–`I!Ņx]¼YsVüøž¢šeķyń³ŒÕĀVék»ö²ī3)ukįćĢ‚øfļ׌ūé2zZw7ČsŒ @–²"ņMõŽ)æŒŖ«YV°7õ§»UoBąłŽCeŻ+‹ļK˰ŚĪŠŌž>ĶŽ(^?qŒ•³ØpĖ?¤{ĢMčI}†ø}©’w–`0õ5Šš©WŠ_Ÿé?sw‰_^vC'ón}Bōn‘šāoė.Š’łfIÖįĖŅÊD×WÆpĶŽ4ĖCóų§cŁūé²_ģ÷²[ļĮ.C@€&.“ThĢŽ¢y+ŖneżWū2N©'•¾’“"õhĶYՇ­ń1ē¼ņ³[›ŅwLżAekjŚk#ŗ»ś˜ÖÖ#3ł„~Ć=˜`ābę„mÉŚ˜wÄ»ųĶmĆ vA嚲#еīÉŪ’|=ķUķ~„ÆĶö+ŁPŁžĒńŽŒŖ/“vJˆ3cĄ”%/Ś/EĘŌ%;ŚFwį[ė²NTW|$HÉĮ„ßxźN«r!”ž\žų„µzCteL˜x€H!r0ke­‡ž”¦m„ųĻŲZ–»}śiõĪ“+Ęŗ ]2!yc!@ŗ1&€ž¹uĀÕyń“ģY§–źv{ĶŲYśĶ}ś³j‚£: Ś-@$Ņr¬Š£āńKsß4fp €Æ#DhI[„Ž÷8·œ €š@"©æ"~æ$Æwįž @“‹„…įūź. Ÿ~/@. 7õ{TæW6m$@ ]xdMÓ(ēÖ/+}kŹ® 7[¤éŗŠ’±~ڹ„ÅŚ=F;~—šl‰¬RĶœ³p®×Œ}…ik²ŽVR}ŲxUyk$m­ś€gĮi53 €Š.2Ö*öϹ ~–²¢d»4Óį©Ū_ ĢkX–æ-åmanłŚ'µš Č\§ÜwkÉÕ5į¦vĻ“«^3Nh„ ­ZS;eIŃV”¹aķbź+²#S’ŠxEySŚ÷qkŁÕ×{>Ü5G“ŗ ŚE/['ó‰Éµ5+źs¶äĶŻš~ŽCXR¾¹2¤bćlī€veļÆk iχ‡ö°.~Yįö¬¹‡Ł„ķjs²ėķA0¹lū¬ä•»Ų„F'@€ €šd$ØricxĶņ Śµs’«[ī!½kīA½kŽä€ŽeśŽś=Sž'rNķRƂs @“—ŒzÉ|Ø·]{OŪ>vī6½»X÷4vą”ę°UU§•Ÿś­Ø%@ĄØTõįå³O ’ČŽ<ķ¢§žŒš£‘÷—?_øWüłœ ā'É+4o9@ō @€gX@¾wRŽ–˜ŸUW|T¼_ųĖä™ėŖ˜ćĶ‚XȻƿŗÆęŒšļÜ­ē=õƹŁŲرV3Ž~U}FõÆŹSā‡q Ź^#@Ą(bf‡čš® 7ē¾-¶”‹żŪŒ}ńæõ™±mķ®³eēēć_‰\Ü|Mh‘"ÄšūĶ’ƒSßńŠŠ €Šī^°īŚæž’pC †ĖĀĀ7āķ_ŗ­Œ€vYœŲōõ H«ŹŖĀ«—6 €Šn¤»@ŌŪ„‹­įQQųlęaÅ™’Æ„U,m @ Ż˜™›uŃlWü“ķģGĶYį“šźŗÅ^ŗĶ³@€hæéeö\Ę«Š]µēŏ[¤éšp³ųĄŌwBgĻ›ļ©Ū_@€@ū-Ćź+ļR¼Oł»¶³ ·öW½Æl®Y1yÖę  væG§»żŻdæoÕiń·GHĆeńóŲåė¼ōgÕ @<Č ‡™™¹™|JsČV×Dחļō9b]xńœ ß.Ćś6@„/³6¤\VļH¹U×¼ Ø|]5wåšč4:smäå¼-1W«O‹ĘĻ‹šė™īīā›ķķ-‘[Č»änßŗ=>n]Lx]ø„ęŒā³ŗ Āg³OÅż=qy٦躙ėf’¦hš½ŗ`ļ“·. _“™i™¾qŚyésņ·gžó+ŽUzŃ €ža„AIŅLʝ"CŠŠ¦«ā»EȜóŹĻźŪ„ĒŻ"ä,3 € KXµpśŗčSU'…æsŹ•!JbĆ«tƋWu™ÖWŪŖų„%[@€Łū  ·[Ī9/|śåW”-ńóCwĶ>)¾’8RyRńYÜ‚Ņ,Į€[,F÷3ĻZ}²śŒņķNᚓōŹ 7}³Żuu”Ÿ?ī ˆęõ”OLŻ¢ā£ģ™Š–kŖæ!@~Ä8x†HĒņŹ-ä½ä}åāšĀė ÷(mųsæ9 eG§¼ē›ŸSf>ŌŪ’ē ß3&±XI`‚!FŗT“¹ØšAHŚ+OĘżuęįųw2Ö¦ģ• Ķptā¹Ą}ĶxCü郆GŚ«ŗ½‘u‹›ŻņŽŅ«L2·÷źĻ3€–æEq.ޱĶQUį%Ź‚¾cF½ŌD_[÷ ߑ‘uɓ¦ķŠyéĻåß+>@€ø§¤ŃMĶׄ–†+ŹõW”7oŻd~]hŃķNż±z[Ś•Œõźƒw‹ ‚½EśļΈ €pG1³ƒfe¬ ?WsFõį.”B$~ŁģuwŒCxų–,h` HĻ1}Ķe2Y'—D’Ę+ŹļHÅ©Ų÷W”lõ.|« ø|Óģ»Ķ„ų–ģ.ń/ŻUB€Ą}u³čֿኢåN³ Å’”hœ³,mmī[ž%;fzčNhܵǓ’[¢?¦-?’^Özõ!é϶īa=޳¼Ż@›Į†Ų飯rō€;ż½¤ū€Ń ŸócĄ”ßx}eżź.+nÜqÖ5”%aYÉq~é†ūć~ÆŻ=õ—åĒÄ*ė–K7¢Kį!ÅKŅ2Żž ™[ĖŻré]²Ž(¼Ż¤Œ„Né;‹œ³öŽéļ%ŽqĖK Ņ1`Źo<+YŸŚsā§w śKĀŁ'UķKųµr^撡²euńKJ¶śĻŚ1Ó·hC…ō÷‰Ė²VR~’µ!ēČżNÉŗ— É @€¦žĘ%“§­ˆz]: KŠŽĘkāĶęėbĖ쓱ļēlIæXt ö]i–£į²²EŚ+RśVüļkĪØžUt0ńWź‰?KZ”ŪūJć2iF„€ū ŌūĪ<ūNåÉ)Éؐ}4mMĮ.ĻĀ7gL]T“eښéGÓ×gÆ<÷÷֙)VŹĘæ·°dććDąY|óÉdm<Ņ”nŚ]ER ĶŚ\9ćĶԟIGńŽŗ'äŖpCśøö¼źŻīōĖŖłõĖoæ„€2ŲsŗŸ»śøÖ³ą“:¤r՜Ł'…oī©:÷~źZĶž©‹+^óŠļ+lĻč @<ƒģ|ņżZC`ŚŚ»[ć£ī¢ųiLć‚WŒ @€g<@Ķó”Lųmłń)ę5/~ńA€x–Ä;Ļ·m H·Ÿūļ-~RńA€x†ä‡@€ @@€ @€!@ąŽ{åų €@€ B€@€_ˆg¶7  @ @€ €@€@€& Ó½@€ @€!@€ @„ ž,[LO  @@€ @ąé ż) ķ ī·Aš¬meG§¼7}cž[ @5@¢ē,šŪpYy³p_ņĻ=õgÕ @-@¤č®x­Ś»ąP3 €`Ōa: @ @€ €@€ @Ēbć–īN€@€  @| ®i @ @€ €@€ B€ĄW¹¤ŗ €@€ B€@€ @ @€ €šø’ģJ€@€ü@oŖÆ~=?ÖN‰lB€ĒÓsŠÄ”%YK¦4g¼Q”^0FlĢ#,Čŗć”•¹ @<ī H§ŅƒŖwę¾-¶4_ZfŸœņ·ų%³6øŖččą @˜Ś›ŹRÖmęįR€“j¼¢lŃīJüYÜĀźÕśS Ś…WšĒČŚsā'­ńŃ|]l©=/~ÖpIøŃxUŁ’½9ūxkW¼V^½¼!Ø|}•—ī-=ÅÜŁŖgå ńļ%~;uIåŚŌUÅ;Üuōžŗżaµ 궖¬«h €‚7’ŽpYŁRwQђ»%ó,»D&ŌO[­hžæą~ą_ŗ«$xę–ŠÉ„ŪĖ< k @€xh#Ā«§“W$xźĻŖ½ v• €pGC'‡w“Æ@€&ŹÖ=ĆĖĮ0sUMš¬m @|c€CōXĶÉv?n7Ŗ®q±‡¶ż^—`ŗ[éļ’µ·°½DŗC$²aĮ| ¾}cž§~|Ņk:£,Ć*ŁVN€@Ūy~ŒržtcHLCÓā膹‹@€ųʈšźDcˆ“ħdŪ, ¾1,°8Śā©?XU»Ø™€o ö˜īoģ{<¤K ½‹w €žq–ŽŠ žŗÓjcGˆwћE @€g\/[ēA.Ó÷ŒO\—?!i=7” €‘ŽX2™¼»åŪį”ś^¶NƒūŸ<Ģ5ē ž0Āō’“IiۊGÅ4ÄŁŹš?ł?²Ær²õČō+.Ź~8pWÓzéĻ €po'ĘM“§t”fBn’»—ś|É1nyĪ7ÉugŌ·‡Ęå+–1ć ±¢sĪÜ=Ć)}ē —éoŽś\ †µs’ėŠ€Ā×Tw«ńŖq'NqŸ°ö֌‡‡ö”f°WĪTi—Åš€”]{Y÷1|ŲŻšū 1ŹzužöŌ«ŚĆ: YļĮ.żl\Ó|vńźņcʽ‹^/!@Ą˜ŪeŻģmŚx¦…9Ä-Ļ&@ą‰°x9`“[ŽĘßCā”7Z1/kRŚV5F_Žeųõœ­G„»kŽ£ß/B€Ąė&Ł•ˆłåǦü9naķ* Œ"x–CŸŁ§Ģ}[l‘4\¾ˆ]0gÅ#ˆž€{źįŅ㹬uAk[D¢ß›ścOżĆ]TČ  @ܓP?i f{䛵ē„· āżq˜y8žˆš•u @“‹©ó<ƒš® -mććėeX7¤ß+ONłkģšÕn¹‡ōžś³jĶ tdÆÄS{ZM€ĄK_¤nŗ&ܼ=@ŚŹß:åŒłPo[ėIń®'Äö6jĄŲČq–Ž ;Ÿü©qĖsŻÕĒ“ģ€ūī’ČŁŗøłŗp×I_„\{·ÆļŚĖz@ē—śv5ÉØ!¾šl īIlpqŖæ$|y{x4_Z¦Æ‹Žć9ĶÓįA^§s÷ž] ņ<Ļ nŸł vĖŁ¶Øś“šĻ;Ķ|Ģ>)¼ßy`gf4ąC£Sö†€ «'W&/q ™åšb暐ŗāżŠŸÕžS~rƽ%ÅßČūŹ;óąy«Gō©» ü¼łŗŲR¼/ę§5gÄīß,Į2|~ŅāčÕ1ćśńąAgA~T~Tń·kŗ&H›Š_ć9Ą7TõNC ”ŃÅĄL ié•ĮóŅ^éļ§Æ ®Æ8®üó£DHŁńĻ֓¬Ģ„×tŒ;ŹiźÄ‰Ń•!y-;³į Ą³(yqŲŗ”„>Ź{Ķ‚L[9¹ę^ĒķŽÕu±%mĔŽģŹŽ —fEjĪ(’#·÷įŁ0qqM‘„Ó׋;²Ö [§æ&ģŃļ\wAüT·3j’]āć9ķŽČƒm–bU’:ē¼ųŃ­›ŅÆ_ęn…MŽ`L˜°¼M±¦«ß‰Ł'” ŠīŁ6<zG½}ķ~·?Ŗŗ §é«bv¶.õ @ÓŚP.ę?Ģ=b¦ßiVāö ˜yHń?ÉKZévŖ.0>€LĢļ”¶ŅO*,Tķ9ń߁Z??Ę €‰-ĮŠ, ̿Ӑڌ7Ä’'ļ/ēh^@€&¶ «Ė¬ĆŖ?t“i¼"~)Ō†V÷~ł„nŒ @¢ß%^ķhR}FüwŅāˆ]žÓÜF0F€Le¤Æ¼[åqń/-@¤ńÓ_SīeŒ˜ažöö —•7:Z€Hf½„z×H]'@€&"bVpJóõŽ­³ !…‘Œ @‘²D1æ#ĘGėq¼Ś1æ[ČåŒ @æU<Üć£ī’ų™¢:Tė›ćÅ  @“Ų€n!”ōųNG ŻėŖĖŒ @ā—ėķ3ē¼šŸŽ YėÄķŒ @3m„rC‡»„šŖ²Å/×k2ćĄÄŲø ģ]vDüSG ęėBĖŌy‘õŒ @SŖmŗ&ÜģHbˆ¢?›™›q @“ŪŒŽ_ŽI³]øŲŃīQÖ„Ī”[ȟgŒ˜’<·9ē…O;Ī2,±„ä€āOƒ\l,@€&(uyĢź¹äVō’żŖßČ-ä/2.€L”µ“M÷Ņ·Äßw„I[®\Θ0qQå! W„?t€L_'ģd<˜ø.=dy›Åc?t€Ģ9/~3;tcĄŌ÷‚,S.ģ˰fŸ’!ļ+‰1@€UĆ%ń³ģ Šsr ¹¹A—Ī–9Ž b“{@n֞>}Jü üØų§Ņƒā;Łė£/J1Ā0ņ~r³“å1ė:Ņ„„­2×*w0F€žęąč+7‹*É Č÷ ņŹpó*Ś/žZZžŌŃāCŗ=“hr,cą)fÖĖ친Ź·š® -õ—„/:ā̇¤ž¢ņó±Qcģ3@€O¹‰±ķ«N‰’ģØń!‘öƒČ-ä½/@€& yqĢāŽ —•-öŽC†0V€L@ŽOÕxUč°"}o^īŒ @ Ž¦:ёg@$±Ռ @€§\—2żnՕŽÕgďS:Ś1^€L @tƋ:@tÆ«.3V€LĄØŠ‘³ŽßķČ’“(z>cĄ¤­P¬ėŲĖÆ„&«}‚+@€&@QZŌ|½cĘGåIńż”¾C3N€LDä¬ ±ś¬šQĒ»ż\ųīPGī.ŽžĖŲ0A9”ū:Śęóü-āaĘ €‰™:/|aĶYÕ-@*މņī=’1`B ÷Ø®uÄ»?šÆ -ŗ×…·^‰jī5”½ €LBī&ńĶŽ|ŗ“1¾ģˆų^śjåk®É.֌ @€§XĀ‚č99@ڊmˆØdĢ<ÅÕ”łOC|HK²¢+Br3@€O±ÄE1 =>š® -ńÆD.037“3f€žbSēĒTuō)9 žVn!ļŹxxŹE–Eēw¤Šæ·ōźš ķż˜ÉX0ʚŻÜūHé!ń®7nߓŃxEŁŅpYyėccHįāĻå}åfŒ @±Z±ņ^ Ž&œ÷ĖõR8YTT‡jc#ŖkĪ Ÿ$,ˆZ2N9nĢ€q–¶ł[„ÓʘE)= ž.PėļĶ80šķĀ‘»€~—xŻŚÉ¦ūķ_Ū¼¾—ż·—ŹūŹ»ivWŚ+<¤Ł–ÜMŹÓ'YwgŒ˜4”ĒÄ?ßuöc«pśN_'·ļ4*÷4÷1•'TkI]³¶³eēē#@€&$X?9xĪyįÓ»…@ŹRŇy=§)‡åmN>Īr¬™o‰æŸ gÅų01żĘXXÖ]T~y§Ø:-|ä‘ę6öa_ÓĢܬkŅ¢čW v‹oWŸ?|ŲÆāšøķ €IņÉöōmŗśŻ¬ź.Ÿ¦.‹yuLų˜!ūśNS' Õl.J >H€Ō_TÜč7Ś‚Ł@€?„¾#‚†[:*&ĖUPrćm’¼8zy{ž ŅŗBmøŗxæźW·ĒĪ–_½+·ąČ]@€?ˆ‘Qõ)žŗÓjcqĖ?ØÆ='~Ņ6ŅV(Wćg‘6®ūēy‡Ī<$žīn’³I|“qšՐāUp>ßX’W–n½}ĆųŌ¹QÕF{C~e®U¼y·kĆ w@€& iÆļø=²× oėē -šŚpYųāŽŠ !¤Ø Ķbܘh€d®×o6"®)¼ÖX?~—ź®—Ö]P~1^7œq`’r.æä`Ņ/oĀ½ĀÆåņNķ>ūQQwQųĻā£ü˜ų'em˜¾‡KĘ €)ˆ»öˆ®ö¼ųKÕŪ„ n)Ī£Œń³Ä5…æ’½^Ü­Ū„ŗXyRü{ÕińCxüY»SłcéCĘ € ˆ²yŽĀ¦kĀĶÖųh¼Ŗ¼éŸē=łIü\fęf/ČūŹ_²š0Ą‚Y@€Ļ@€älQžvøŠ2me̳>fxvå©?­.=”ų›Ö™uXõ®™¹YWž9 @x @Ś=@¢źĪoŗöķ­ä¹›ÅĆėfdYp"Ļ€ī a³ēĶĻx-ēHŹŖÜCŽEƗ<Ō&ōł ˤŪĻ„I[©\dz @€{ˆ§ī“:¢fy½‡ž°ŽCJó0"Ģm\:÷śW›Š‹÷«žGn!7{?O×^ƒ†3®€ž±%XŚ]éWZOĮŖ9§üdą¤Aż³˜Ū{õ~±ļ°Ńó5}GŽ“ÉdģQš4Hńoį•–b%.ŠZi쟄’č0/CL<šqæ–愱#£źõ†ÆéĘ €žŅ ˜¹cVĶYÕæ[D’° ŗŽŲ?‹ÅĖ~NņĶh6£’˜ˆ‘.ÓߊNHŽX@€xŠ$eUé¶¶ńŃpYų"¬$H4öĻb5!ÖkXPi’!(z¼x×7½L&7üܙŅ÷J€x‚FFÕ§H›ĶŪSžöģSm$›x²‡K£’,=­Ē÷Y—3!i}±AĮ`¬Ą>C<­zŪ¹ 4ękc ³ž£Ć†ā#ĶS{ZM€xĀśŽn騘Š^l]'Ļ>)žó›żׄEUhÖ{C"ĆzR¼§sęn­Né;“.Y{õ.Ó÷éć–ē»ęŌµ­!@<ŲÖ*æ³üŖńŖ²Å-ÅĶõIC|µāƒ,#@<„†ł7Æ<.ž­m€H¢+Cņžč›Z&3sP-É#@˜0EUhvėķē­ĒļĪxCų„GšŪą'ż½ŲøM›÷Źt—[ȟo§ųčürHöō”łaC|5ĮƂJcFFĪIqˆ[–㔾³ĄSVż0įŃ&@ō @€§Ģd_`ÓÕoļ©9#|lˆžķ¹¼jDØ:ÕgĘż£„3 €L„Y³NiĖ¢7“]~•¼8ņµ.=ŚuĒ_¢=ćƒš ŌłF7^U~ētaNxQ{ž;^“j.-µ"@<ć¦Ī‹Ŗi;ūQIų#üĖ̬ǣĶt8Y9gīŃŚŃ1MÓb—ę¹ēÕ¶w| €žŹ= >ŃĒĘ5†¬ž±7śÕ§…õ,i¶Ć1ny®1bƒ`¤»>¤ą˜ šh_¼Oųt”S¤  ]Ē ŌźćŚń‰ė4īźcZ#÷€xŁūŚŪi¶Gž>}•rėćĮŪµ× žÖ“ā³zŚL:Z17“@€ųžą•toŚråŅĒyAĪI ĒøåE'Nń—“FC€Ą÷¤,‹YŽ|]l)ŽÆśµO¶Ļ£.ĮzĪrœą:>a­–= €pGf½Ģž+Ų-žT:«ī¢ņsĻinžņ:–ć”®9tlB€;²ž`=Ln!—ėw‹?i½ =fvHĮ#ķ#ń/ }RńĮ&t@€O)—Dē‘Eū…wš®ˆ7¤} ΉR”<ģė ńÕL~ĀĀ  @€§bęĆu`ß”!#8%Lņ Š{g¦æž“Ź“ā?Æ -Õgb¾ŒŸ±źa^ÆßČąćÖä €pGžiN1C&ŪśF–¼”ųƒ“«ģØų'Euąā‘īž°q›ęcė‘•ą©?«&@ąNį ³ŃĆŹ9ÕŁM¬ m®8ó‘ ’ŖSŹG‡rßY§ēqń«5žŗÓO4<@€Oyy§‰qć¦x,÷ŹōPź_~G:‚÷Ö&ōkBKH‘æś~ÆŃwdĶÄŌ-š"<@€OÓŅ«inž%¢’Qv4śßĖ«Ļ*?iżhø"|]¬½ßkŲyēłżńA€x ųåųLĢŪó¶!4nŌ_RŽPo‹śMĆeį‹Ö‘ŽįjĆļ 6®iړ̀ĄŻM™ŗŃ'Ū=[æKł_ł[„KMׄ–ÖųTŸQ}\89ąöühˆÆVį®>®%@ąĪū?,är³>f$nÉN õ—”_¶ Ā½ĀÆĢĢĶĢp#{'«q‚£wnĄXÕāL īhTčh˜ Qo7·™©='~|ņpĒ”„!.+oęoĪČ-äĻ3@€ķŖļh «@÷ģįĮ#…^Qo|·ņDĢ'Bmhu겘•†@éB€ @»éa÷BwUcąŸmEū”ļJ§`5_[ę\>āmo{§Æ‘÷żīż  @<i.įNńć³mÜm¼CK}–5]Z. _Ԝ>yѦ›¹Ńg@ō'µ”U«ę„V½2wrŁ«µAÆUÅ/-ß]æ`¾§ž„–`B¹YOrsv”8>:ŗĀSŁ‘čS—‡¼µ.āgžł¾~Ę OŻiµ»ęØvśĘ¤+u7“WjßĢŪžvÕ@_ˆ}ĻÆxūL € qNļVężŖg–sįxqtjŅāą‹^™.ś¼-1?­<©ś[Ęa][SęFĶä<ŠVŽWŽéqÄgƾĀČŗšå3ޜņū”UE;õ{’;{āOÄłåėį·aÅ~„…{„_†ūge­‰¼ŌpEySš iŗ.“ؽB@€x$#B­‡ų©_ .š\®ŽńnöśØ«„•ļ՞S~ŚÅJnS¼_ń®n§ź|Łń=)@‚t~” @<’žcūõI_žÓāżŃOYvw“ņtžfńDLÕ“:[÷Œ;ļ¼ĄįÕqcÅEYśSšĄYf{éė @€x`ޱ6.S'B–¦Æ½–±:ņ\ŹŅą+a³ügÅ5+׫ę×/g @“;·—12 Ł‹!EžIZßLÆ\!Ó«ą-=Ę}捒ÉG…EL—–[ €`tÜ  @ @€ €@€@€LŹ’ÓW_!ķIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_4.5.png0000664000175000017500000000335514632072346024133 0ustar fabiofabio‰PNG  IHDR ™Fō„ĪsBITŪįOą pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<†PLTE8’’’88888*X8JNƒ2$R0`"`š=b›=\”:_˜Ö2!ɐG„āŽź.ē+$©XŚó³ŅĒć©VIF6k™ņ¶Uż~”k-#’ģŗq`qOisÄ2!t§“Zķ}¼Zd,üQ:ŁbŌĻvØćĶĶכL#’®‡y7·ŪÆ@HRæÖ!o» #’$§Śūx9³i$ŁŃČ~ē+Šgk{ Ū¬"śL{^‰ćć…Ķ'¦[E ü6ėLONīnš—ę„?}¼ŸmPµŖ’G“Ū s„Š1śOXW]_ „Ŗ”KŽ’ņłŁ‡»—Ļm˜lŠ¦kü°īqƒ½€@@ €@@ €@@ €@@ €@@ €@@ €@@  €@@  €@@  €@@ @ €@@ @ €@@ €@@ €@@ €@@ €@€@@ €@€@@ €@@ €@@ €@@ €@@ €@@ €@@ Ą?ö q\«õV‰ŁIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_8.png0000664000175000017500000003726214632072346024000 0ustar fabiofabio‰PNG  IHDR ™q*UüsRGB®ĪébKGD’’’ ½§“ pHYs¢¢EŻ1¢tIMEŪ ",2Q“Ī IDATxŚģŻw|–õ½’ńĻ÷ŗgī¬;wvČ&$ģ)²QTÜ£Z;“µŚłkk×i{:Nēé9ēœötœj«ÕW ¢(Ȗ!3„ H ;wöø÷}} Š ¼ž‡īkŻ|®ĖĒćzē»”ÖZ02Œ»ę{w¤[–r>æC{õÖČž§ų½ÖŚäŽąL”  @@@ƒRŠ"€ €ą- B  8Kōæ mFCT ‰@wc3UC¢§ł`MŲ×a§ €`еUmhōuŌ© tZėp°§¹•J€€!čjh¢ €`Hō¶T ū»lT ŗÖе žĪŚ0•ƒNk v5µŸ‡ Kwż^³ćȶ­Zk“;³a„#O »©IDk±÷ŽoońÉń:¼~éķ ؊§'~Ō=ĒM‘pA¢ą<čņö•»āR“ĶžVóĒ‰ŪŚ"£ts$QDŗØ.4“€œė’ŗé„£åęk§ŚÖÖ=8v„ - ēĮ%×\zin‰±ųTŪ Ę[&gä¼źHsä[‚>Ŗ… - Clü•=³VdžĶ¦,§Ś®µ–C{Āæ#|€€s2’ž9}xģßFŖ¢ŽæpŠl£Z €ą¬]’ÆWŻwåŻ9›GO2–©†”dT±óĪĢi£’Ø 8c³?<ÆhņĀ„ļ»ā$”?ūgŖžīģķŽt‡‹ź€3’;)łCīIļļžZDŚĶõĮfʁąĀĀ,XC ¾¼å…¾y9ßp¹$Vź“ūwwHÓĖīų²|śōē¶{ģźÖo]żoÉYö™Žŗąŗ†CÆæž»×·Pu GJkM†Ą„årĒĻĖżü¬«ćæ¢N“Avæśł_¾ųĢWN>Rķö»vŻ£'×X¬b- źĄŽ5¾oÆüß5æ 6£TĆ ]°†HĘ蓼¤Ģ˜1Ē:X½æHHBŽŚ¾u§;_Ńā é÷üĒuOŽ™¬®³XåŲ”¾JÄīTĪIó\ßv8¬‰T€‹Tīų¤»‹&[WØÓ4ŌWė­[7o_łīĻ/¹mz=Ån™ż‘n’ʄc¦+NÕ„ĖęPö„w_vßķ’¾āūūõær¤;œÜ tĮ`ī9nY¼lĪē’G¹.łĖ·W~ęų‚‚Ž ‡ķ3æ¹~Kv”Ģų ćŖõž5W\U¶”¬éęo^ż«M\N—-)#_][ŗ„ūw­µ½/O]’õÓ¼±²ątßåŲ»ž’m/õżėćß\õCī GšĆžÕGo8äN1³k+ÕĘŹ]?ݼįUWŽpŁ×&Ļw|Ēé’Ųӝ£µI…Ņ“ž«§Ę;M&Žśh£']eZ¬gÖ‘åąŽčß’ļŽ§īąīą|c,€d÷Ų­Ė>µč§K”R’[,ó3ržĢ.¾|UZžõR§KĒöē<)2śŲO'wÆJeÉ<›ļåN³Œw¤9,Į„ćü¢`€ĢŗknńÜFż-3W¦Zlź¼µmm”CÕįg“3m‹Ü©ęėŖ_²éO[6q§p>Ńp™#Ų4EDnüžµw„å:īųó7VŽźJHp~ź‹W¦e˘įš=µÖR[ZõčŸ}Ą‘ę°‹Hœ²©Nī Ī7Z@śéŹ//]:m©ē¢UÄß«ė=jbl¼NŁ·)ņ?«ÄŽŸe½G©įń]{»¤ćG·>“ņ†ŗ¹sN˜† ģ»7ŪóŻŌL)HĶŅcr‹eQ\‚NQJdģLė½IéĘĢį>DD\qŚ}Ķg—|öų“½`™²lņ”ōĆ×mčhņæSććī0Ā„ZC[~“ā5s²åJĆPĆīū)‰I“§žéÓOß{҆ļrļ0¼Š ą4Ū?»īŪ“ę¹¾:ĆĒń’œa½Äī±+ī #؊Ļ]ń©é—;~—ØS†āz”  vµ[ĪōøÄd]$VIąŽ0‚Å&ŁK†ŖåĆ4µ¼¹iśC- »ĪōX«]; §ę–82¼ć0¹ēøÅbīKI’’S¤¦ Aö­µ:0ś…h$Õg³U8OZU]‹č~Š'|~ģ?Zź©;^¬ūųę?o9$"ņßwpA1‚-ĮPī„)ónśŹā—³ õ\‹ešz®k-ŅTæ÷pÅŅmń ū3ó‹,T'&u¼-Dšó±ėŻmŖ¾ę@äįühÕBŽP€;‡įNi­©ĄūH›;åņi ³Š’iūlL¬r lś9z8iĖ®-wžĆfk‰0cÕ­¹…}SU?fŻŖÜ}öO__yg°%xÖ«Ū“ķ®Ł7͜š˜?Ęę°$¦ŒrMļn Vżóē«l öņ€pžĢĻĻ^tĒŌd±]a³Žx÷¹­ ˆYYš³²|ßµk•rD Ē>·  ųČāŲųhæĪŪŁ¦^üCÕüļ¬>£@„ä–.æ7g\ü'āŻfQl¼N6,JŌ[Ķ+Z‹tx„¶ö`ųqeQźĄ¦Ś?l’Ūörž@†˜{Ž[ü‡ü¶;¾{Õ_'ζߢĪa}ś# oīŲšń‡E-łÅÆ]2azå­V›Ųś{¼Ö"o® üųÆ<÷­3¹ī?»žSŁæaµ©~uĒ÷õźž7^č¾cåOVÆā Ą¹b ĄčÜŅ)‹ļ_X’?Į¹Hg÷‹ÜPH«ĖF½\¶wį¦ā Ļ]–7ęč宸hāIć>>@8¤£-ŖŖ¾2ųųS’¾śĒņĄ™]?ŒvxUif®LéĻž®8?~nāĻ&\=~[é ¼< € ”HÄ“[,Śq6ǚ¦Öeo–<®”¶\qżßæįŠŗш˜Gš/ōu™UåŪ)«<ø«sK§<śå3’OžėŹ_|äW7fgꌦō÷˜ōl?óź’‘Oó€0DéŪņū/°;“«æėt„ƒņõY[{{bėŽ¼ŁT7¶fĮ•O}66ĮtŸīZ‹xėU鑲ąĆO’ō…’ µ‡Ī¹’üü{ęOœ}]Öågzœ'Ó>ƞb·„ZCQžœ-ʀœæwÕwē^’=ĆŅ’±­ŽŖ¦śœ†µ&§7u{|ŽyĻlZŸōövIKl¼™ŁRglķė2Ė•”ćłÖó÷Ō»öT{ģWžrCYrŗœńJ릩õ–•žūŸžīŹ?š$ąlŃŠOiÓS¾š»…_;“š!"’’,Jɬ*:Ż~‡÷…Ÿ{ō;/|$!-15jīÜŅ)""üŌĄżn’ÖÕß÷¤éœ³YŁŻ0”JĶŽY("@ĪDź„““Ł×O[F»[ėzÖķųǧ\ŻÕŅŒFUx0¾ÆW÷¾¹¦ę?ƒ-ASDšć£¦g¦Ż÷«ł÷õw°ū©d« >1oņ†7ķå)ą4Żæhvīų¤ž·—}<Ę%q""mžŚÆ?{o(hś¶>{čŽ-y³ņTĒ[‚=·üšźŸĢZūSć¦ß=›]\…SR>ēČtÜl šż=N)%żķRķēēž16^ŝĖ÷tÅIĀčii÷ŠČēyšp6 J. >9śg’rŪóKļJ{eŹŪēbćUœaQbX”xŅ$'-[Ė­fL˜Ÿ÷ĆłŸ˜7Ūžj·ŪSģGšĆyüvŻīpŁRĻ„įT¢aÓÜü|חWżnCæĆGņŲ„Ų;~vŻw¾śÜ­„_zāöĶK>³p¶{Ž[2§fd8Ņö÷-6ä7deó“\ė•'Ö8 B4GŗĆ¶ōī’o8]Ŗ_/Ķį°Žōt؆˜X3%0zü}ŅÜt(“:«Č¾"%K—X,›@“Öŗl[ōŃļś£żŁŚMÓs®ø§hMZ–’&¾^ŻÓŻ®Ž&„ź¢Ī6ux’†Īo½śšė/čØÖśĪ5?/œd»Ó'n‹õÜŻÓ%mĻ’śŠÜOī¬ą @Dnś·ėīKĖu.tŗ$?3_϶ŚŌ°īłŃ×#ķ;_éżVćįīM-•Æ•Iœ([:„hфŒqss/OŹpNv§Ł¦Ę»eŒ'] >č|ŃØÖ=ķFC((]©£ōųn“‘ŽnéčnS‡¢Q­*¶wżW /XõŚoÖmįÉ\4nžĮ5÷'&njw%E™ł²ĄłÖ‘B›ZL­%R®vćØŃĮP@Z’3eŗ+^' tׯbšZ|½ŖsĶ_ź/ßšĒMoņ$‚.xö»å‹ݰ'=G&Pó£ÆG:kJCÆ<ōégn£ €€ ŅØ9‰Wß?ėæ“Ņ-—¤Ž2ĒĘ0m&øHų{„÷ŇźęośÓę=§‰±Ė>¹ųĆŖ¬Ļżš„‡©ÖʼnixĄˆ¶šöéŸ-™a|T)-g³ø–Åfʓ׷śOüģŖÆ,[V89é“_yō†™I©:ÆéˆŚåžć~ųųB‹ €Œ†Ķā¤Ķcų°; ĖåŸüĒū’|[ƒÆ;Zėtéóop߫ߏ£ÄbÕqTŠ0ü_nSķ‰!oØėÄĻzŪ}uZĒ‹"… ćŒĒ~²¼g[W›j(ŻŌõZ?.^Œ#ĀÜĻ¶ō®¬5mMʦ@Æy“Æ;č „³ä×ē“3ōh*42TīÖOüīī'¤~£Œćfgݟ˜lx“e…ˆ!Z[SšŲŲŒ¦©„¾²ū*qq3(ī’FĒÅgY®;ń3„Ż®F˜€_õmx|ēj*AÖęÜ4wIB’™A%F.­µŚžsgUkÕ € kÉYĪå4vŒlŽ9ōҶ~‡J€1 `Xq¤;–|lįŅŌQq3SsģKż½Ńf›ÓŚ HĄ#N*42D":zxŸł\B²„0Ńc|£÷'M{Ū© ˜ +wžüš'&Ģv]ėt)ĀĘÕŚ(‡K7õ|{żk[ž&"bļq¤tµtv[‚aŖVģiöÄ}ņśZW¼Š§#S_īžįĶĻ愼”nŖwc ^“„Āaå£#—3F'ĢX>½„J€†½7äoŖ1_£#8CjŃueõMT0"ŌUō¬2Mŗ‰ŲLC©1—Œ£ €€aϑᰄę8ÆW"$$ÕŗµQŖMSK{‹®Ż½f×fŖö®’Ā_š8Ū~‹2Xłc$éhQ5k«^±k]ļÓ?’ŲsŪ+{z© N…u@Ą°āė ·+#†š1h}ģ_G+ō¦=k›æ°õ±ķ„Éć>ņ†śØŽÓš€ó’B¢”Ģ»{īŒŃÓŅ?–?Įś”„$I„*Ć3pż:čt)G4ŖeósŻ’Ŗņ—’oķÓĮ–`€ †½EŸZ0vāĀĢ_Ž*’%v‡Ų©ČšÕX#{V?“ļօ·Mų߄d£°zŸļ©æ}åר  `X»ā‹K®V"fœ'fģ˜i±ŸJĖfL:޽{T§rÓŪ-]žl¹zĶ’¬Ū,"āHs:¢uØ=ÄĖ$ `xq¤;,"ā6}‹ī_4oŁĒR_µŁÄ” % 5??¢‰–ļĶ}®·;¹ÅÜ”7fBĆUŹxļ͇u¤¶BæŗkMż—6’yK• [vŻrķ—|ÆxzāmZiĆ[k®Éȵ\žœ©ĒPóĒ4µTģĖ}®b’ĶkDDb\©‹®YõM›]YNÜÆ¹VöŲŅń­W\æ2Ų4© `ŲŗęėW-Ÿ“ įæ’3u‘Į”ŗĆ‚6µ“4ĘØ.æ¶¹an…R†vÅöL›óņG’Ó£‡“hD¢­Ŗā”ƾx)Óéb 1 /pī9n¹ę–W§Ž’1"dį¢±Ö½cū†żE)C+%¢uŠ2nź«7{Ņü£ĆaniHÜ}ųąäõަ1 uŪ’¶“š|U¾˜ü‰Ī›ØÄy¦E¼M1g(1ą··W˜¶V)ćķī/J9¢MuY{Īź¤½Ū—<ŅŪ=¾IDÄjQb‹R@@Ąˆņ†üŸūėmū“u–Į@óó¦§ĖāŻüźG~'Śj*Ćžž1‰I;s®īämėo’u$œź£b %ƒ”zOēO^~øeł7Ā’ ē‡ŃVkĄvŖš!"ŅÕ1żč”²;^$|`(1 Ŗk’eه/»%ńQĆ ä|čź°5¶{Ė#!#|`÷­«”²õk6«#[ŚU³é© - `P½üĒu«ĆA P‰ó#1)œYPÜŗ(»Š;×0zm"" ‰„³’įÓć¦<¾<ĘUķŻe׌$!bH0 GšĆrÓWÆürĄÆŗ1ā¤"ēO4bųcb›c\¦Ļ}枘X‰KĖņĖ-zv‘6E{›āģŚrĻ#ĢZ±“ֆÆ+\^Wi{Z[nKHRÉTåüˆKˆ¦,¹ö„o‹9ŽNk‘€ĻÖŃīu—6į0¢…¼”°ˆ<,"gLĪüö=?[°=9] ©ĢłaXŽ ¾>ńķŽ2ķĻŽ¦Ł•J9˜rC÷R0šö6¶}ŅM%Īæ#U®ŻU„£Ÿkm¾ģ įC0döošŽßŽ”ōŃģbėńn3óŲ!tūJ½]Fė‘ŹK_élŸZK5@“Õæ\ū†ˆ¼įĢr~yŹāI‹gÅ]2ynŹļNģ„ĮćėSŻ›Ö\’ßĮ@^'Õ\4  ˆģtĻqļ7sÉæ9,Ö4Ŗ2ųŖöēæDųĄłĘpŽtné yzļńõ†·SĮW2„śś’ÉO.³Łć© ą¢ōĖ›_^ÕŽā{Xkj1ŲNq”LŖ»vĪ’§>§Ķ0ļ €€‹SŒĖ¶˜±čC'1)œ™š¹“éA§ę£ž'|½ŗ‡J e(É]>K„f'@ĄEč©?ļ|"ķ¦C'}TŪ%Jy]TpQYņ™Ėßü±EOł{•I5_4jj‹UYĘMyu‰’^U\4zŚ»«F±ĻÉȳ_F5_{‹żhO—źčšZė JƘ<󩛵ų-TpQŲž÷]µ-µz3ƒŠ‡Fjf$/Ęe&Ę&˜‰‡z6¶4eLHØN”2 €€‹FsļŁźŅčZĘD «MĪ7fBĒ‚Ģœś‰=]yķTpŃųē÷V=üŸ¬¹ęĶ׃’ŃÕŖźØČЉq<ń‰‡S©†,S0xK»ü"ņµ«¾²ģł’KÜßĻ­śŗ•W”¶&$)ŗ „·Z˜"QmöõX½U ÖŌ^¶Ż0ģL€!£4ĖŽ€aƚ`U7}ćŹ>³r’śŅĶ×}~ÖŖģŃ2S1Pd@D#bvwZm6ÓŃęu<ø{źśP(«[ėßń}ŽlyhWͦ?n¤Zš’æ)n"Ż-"’yüĻöūü;¾{ķĻrĘŚnNJŃŁCõ=Žż¢VɅ–{,V1’R"£DD kūō†šĪ½ŽęÉM‰Ö”™kZå°ÆWūö¬ž¢±:Zy!ŽokvR†A— Z@Ąˆ±õ‘Ķ•"²čڹfÅ“ĖcŸ¤3 ćܛ'LS‹ÆWuT¼üżŖĒ_’’!æ%!řŌÕäoæhģźŪ¾Z²ŅįT܂}įkÓliœ_ĪӅ”B qVždÕó+[9ć{~ÓÕ.Ķ‘ˆD>hmjéj—–hDŽ3ŲŚŒj]¶-ņŠo}6÷±/=ū/[:%ŲŒztµ†ŚC:5'5P_„V·5ėŚŖ=їƒń](uŒDTø§+¹†' C‰Ač`Är¤9 ­µż¦Æ.ūYZnĢųHHū³ Õ3ŖĀ}ŻŖ±«5RY8I­Ų»1ü‹'¶ś›7~qŁ7S”ŅFN±ŗFD䥔_?ń³—¾l š§¹–3ftLą–»—>4n¦q÷HÆ]w‡j+}óŅæ¶4^Z„”å=/„ BĒ`” ±‚-ASD"ņ…‚B’(‰ˆˆļŠ»}Hk—ķń¾ųµPk(*"ß±{ģjž‡ę,Ś÷zYiWc§7ŌŅżøV@DäņĻ-ł„=ʓ;z¢qłH®]»7yæ·iN%‹pn”¤ćųĻs žmØL|ń­šń¶·Ēڳ9’«æ~mßÕ_]öū‚ń‰—Äų“ó”»ĆŅRu`īI’`Æ×źń¾ÄĢp ŹÓĄØŽ\Ż;ēm¬ö–šf‚Œ“¢µ–ƶv¶å”łś ŪOÜÖÓXŚ~ą¹ożż„""ņp¾LµĄ2[?“ˆˆ%RWsłī÷v½RZkāīb°1 ĄpĻqKL‚q‰¤«CŗœµöTƒĪĄ0ćHwX®¹eĮÆ'Īu~d$~’€?¦9 Ÿōž§u„ač € G7|łŖÆM¹Ģł»]#ķ»w¶Y›Źv/x*™Ü|ü³¼¢g-¼ņ÷_ń¤īČēībØ0 ŸFŁn·XFÖĵž>ÕÓŃ{Øtēüēż¾±ŽćŸ»“v猟Z~«Õ.v«5ąąī‚0Ģtµšūā’Œ,3¢Ć I*Ćb޽I“©us}ü½Ū?ńŲ‰Ÿ+éµM»ń£6‡Ų}½Ŗ»­eģQ‘Rn0†]°ś©”²ūé_ß÷bį†'[>ŖµÖ¹~ØŲ—¹z÷wżķŻŪĘL|ya‚;’."Ņīu—F£)~ī.† - żōā®ł§ü§ˆŻcß0÷śėėR2%OĪ CV$¬#mMr(-[•œkG®cńG‹:ʼnŗ:l ›^¾ęw‘H~§qŠ_7'&u:žsG[Źī, ĆXØ=š’‰y+¦_‘ł`^‰1óTūD#¦6,† ‡Ģˆa(‰„%r`kš7Ožlõ·?ōÆ×ü{|’e|\¢‘“:J—œĶw8\īėĀŌå&IDATŚ‘ß3Ķį“X¢m†Ć* }=ݱGk*&lˆDņ;ß7EŒ°Č±ń!õ5Óö‹ˆø’ó“&ŽšÓ{ūsm_ū’įõæe•B@†Źöēw”/øłzĻ»?ļōJcO§Y·cĖsĒ&ß°o}ķC£Š=sŹ·y¢±§łp°9("ņ’DD>żČ-/¦Ž2Ī8€D£Zśā[*÷{V&zZG*›örg{I£Ż¶D"©¾Ó_]>ycJśŗIvMx"Ģźqyņ“Ė“ēģĻõUõ¦ī`(M¼llz§×Ü­Ä¢“3u‘ȱnQ·÷żś••›~ܹ„SDäłŒˆˆ¬?Õ9=ŃśhĈZ¬by+XˆÅņžļö¦©E›Z7MÜYUvŪjĆšŗ“·^T\Ų0D"‘ž}÷Īö©µe»źŸi¬RĮÄPSĆ|üĄ°¶ā›Ėļ¼ōźŲŪ›Ōž8·Źķė’ś_ÜüųĢžk÷ŲÕ \łåĢ1Īėmv«§±.wŸ;¹#;9­»DĈ&z"¦©%’`kSŗšŃŪśŗŻ=Ż”²ž·—øöź-Į}O=šī>Ī- ē`ĆŚ-}łžE¤÷ęÆ-’¦Õnõ÷ŲP{H‹ČĻEäēysī^?ļś©µÕeFƒ–isŸ¾Ń4;„Ŗtüó uÓ*•$ä­ļŠP €\œŽźjÕńÖæ®ēSŹŖ-VkÄHźl‹9ŚP»hæRŗ¬ą‚Į: ĆŠĮ=—®r8Ķ­Ć¼Æ€Į¢%3ē•iEćw/RŹ™½čŃ»•juQ\(č‚0l²GŠ2ń’§VäiYdXŽż¢ø©.nŸˆ+Dq@Ą€JHŖČČ/n^bĒF™G#¦Ž³uŃSZ»"T ŗ` Ż™mĮ€ß RS‘ńj 8Ŗk0®åNŚ3fü³—9µ‰Z-Œ5ĮP”`ŲH ¬ńęfd—–ōt¦xŪ¼Ókk¬±S·_–Õ7aTaĶāpĄšļycń#½=¹ €\D‚Ü®#U¹ŪDo½3°Ä'śņDDµ'`ŗ: ¼Ž 1hjøčh%oĒ»C;s ¶„. €\$|ķGŹ÷<Óąļ8:čķkŸŻj:ß~!4”xҚ ø  4“ Žņ×ZEä)OĮģŒä¹³Ż¹3ņ]Éс¾ŽĶŽg··$X,Źrü³hTKuł”mÜ@.2ķÕ[›Dä™Äģ))©cĶqēĪ›Z4`A$;ū”Œģśi¢D‹ˆźé²¶Tģ+YÕŪSŅ2XcNĄ0×U·§UDžOȚąI-^2Ē3}t\Z±>בéõG&7­ņvĆ8Öæ­ŁSZäŠ]„@ Ż „ķ"²*>½81µdéOįܢؔ³Ž Į@ng_·½1ŃÉńūŻ®ø²4_ļøŖ”Ą t€ §¹¢ėšś’}©·„¢ž\Ī£”UW—ē­«©ŒŪīėSŻ)é­cƒwļ °:ȑC×lķéLŖsʘ q‰žl„ūģÅžZZXņü|3귈ˆ°2: ]°.2Ė‘„Ö¦qe]ķ sŚ[’÷gåķ™ģŠk*qĘhG‚ū‘’ś#yozŅĒ”ķ¾óIĆp˜T ‰d 0’œ°€ąŁŠFÓūr ·.źķŽ­;\~é&æĻź÷6åīܱńЇcĢĘXÓ^¹Ł „ Z@.¶ £\‘¦ś Ūę.ŻüE_ߞ†ņ½7­1Ķ åŠŒ­™¹G§®ŽęśQ„T €–Īķp-Ś mĶÓjڽĪĆŸ«'1ić˜WeŖØØ²XmŃŹŅńkĆA#:mĪ#š8ćћL3Č;# iž8§bF»¹EO/V†ŻÜüźæ­©\¶-²…ūzsŪ åŠųūb{FåšŚī-Ŗ³Ś‚qłÅŽEY¹›'Pw@pę/FBčč”[^TŹ¢S3›³ē,łĖ's _ŗ“£}zÕĮ}yŅī ZßÜxÉ ‘°„ķŽ€“ʁ€3’œśĘhÓģ²+eŃ'~®,V3}T߄ÜĀƗY oœĆ٘ąp6¤,X¾ö G«wŲķžxŖĄÅé,»`iIIÆ.IĶŚ]$ā³øÅįģJ®­ŽŻÕܐT:Ł ŸĖ-Ü0Ļחć­./y&IōV•ŻōeąāĢg@“äŽ^9Ēīō¹»Ūlj Ÿøµl÷ŠÕ»6ŻńØŪćOoiˆ?čtõ%ĒÅ7z>»/¶„“ÖkUŌœVśØ ć­V_ÜŽmł{8œŁūīF„āCEć^™—–Õ=%2„„!óąĢ…›īDb‡®Ų Åų7QI@.6g°”Ö¦JMßX’_ŗØ¦ņŠŹ°½ļĀ‚ µSöõtفÄęęś{W?uß·ŚZęW(Q2i֎2s iĮ@`!B€ Tańsó“R[Jvlśųļ•ÄD?h___aŪ¶u7ž6ąw†DŁ¢«+’”üfnޘ= bc#ž„ā†Ė+öw¾.’ ² €\<śŁ ŃéšõÅw.æę”jł8‘a Yē/{öŽöVĻĮ¾nwKNį”…Éé”|‘ _|1®ö8揎Ćlnø|ÆźG‡{­ƒ–)—>~£;¹³81)’5[¬y£›’ķNs|GŒøŅ²ŹĒ©ÓJmq.0² ų8Œō¬ķEVk$¦©6i_ŁžŌ5„;> Zzß½_Jŗw åǹ¢ą£Ķ°!ā³*#1ԟżS2Ŗ'VģŸżJoĻø¦c'č³E#ƒĒ·7Ū㌠¹ūzb[Ø.Ī- gI)eqz’FŻō½å_O*ŠK’köcāÉ’\6ēņG?›[øjVf®źjOhģī,š’s4*ŚI:f“ŌżF]uÖ¶»—­å®ć\Ńp\I9 ÉE J\žÜQ“nłeŗ31.yü¼5_;ūźĻ,ųÄÜ«¶=æ³āś/_ż£½ėKŽżÖąļ·§ĪUźķ”D½µØ õÖõ;Ÿ«c?½}œČ±Ļc<¹t2s^Ÿ0fBƕV«X’RŹóŽTM)•Ż{Ŗ}möŗÄp0«»žČŒ½†Åńö,Y†%&Śx$ek^qĖmŠ™_\9’ĶM×>Ŗ$6ĢĄJwŜœ™w³ŲœĒ_Ų{ŗ;v•×¼ pZŹ÷§.YįÉ)‘%īō–M„oŽüŒÕ‘Ŗļ¦ĶvGńÄż×Y­bQ†aĪ^ņĻū¼MŁ;«Ė—nÖ:ž¤ļāöTg¶4¤÷hź3ŒwJ”2ōžwOuåĶÆ‰(-Ņßšń޼6\ńG<"RĻSĄj­ZļĻūXŲ×yCźŲ%© GR·ä—“^öīżü~W÷ټėĖiśÉŪµ‰%“Ė®}æš!"ŅÕįØß±į²æ…Ćc[dł„t(ļńņ€0Ōzšś”R’ū;ÆtŲ§­OĶzurlüÉŻ ”g5ąV˦ūl—.\yO‚;’ń~»˜Q­½I呈+4Pk*eÕŃhzŸČan> ēƒÖ:Ŗ”z!ųH{vAź¤I³šo8q»Åržež8)˜fŠpÅÖ»3²Ė‹ÓGÕMö¤ >č†E©Ųx²6sz~ķt€p>CˆˆČÖĖ?·ü7ž4OAV~hŠzk¹¼¢ź…ŽĘ#¾¾¼Ž3=ė;?{óÆxü³I©Į<‹„’sįęvĪj÷¾RY[}åŽżūšŒIĒŁc6g€ņźÆ_\ó—oÕ.?°ĶõĻ€Ļčq'‡rŠ'¬_z&ē±ø,†aŽžEqŽč-3Ü)”Qg>DD ‹©™cņļöwZŗź÷īęnƒ0 xĖÖ7>ńŻ-w­ł»ū'õ5 ;MSkOŗw†R­1ż=ĒØ)ł1Ó.ŪpsÉħ/·Ūy’RŪņ­VeÕZÄß'}Aæö‹ˆH?F—ø“{ ŻÉ;sĻęļ¢T=%}kŃń?›‘Ń“UEŻöǶq§q¶Xˆ`0^²”²,øńų…r]8š5W{vÖw­Łüąkż9~Å7ÆŗmęU æ³ŁĶxÆĘ'±Õzļo>ūüāł·Ī*)œ’v_gk_ϤyqWqt®PPöļ÷÷ŗšeo’Ģbi‹;åå+ķļhĖo4£ī 2lęńķG}Ā”YĻßÕ՞\U¾’֗Eki>šb{łK?ś‡Ö:Ā`x%"śl޹–}iéāŌģŲĖ*w6<—’ć.xõ‘õĻƒo/NxĻooüū˜i–[C~Õ›(IĒĒ§M-‡¦¬3,ÖH0`÷Uģ»ńU‘ÜŃÆĢČĢ9:==»ob4bŠÖ¢ūzķMž>§Wke†Cö¾ä“Īqm±‡wnüšc¢юš7ĀG·žłŃĪŗ=½ÜU@.Bć®›ßVß5,VĒ’ūݼ2»Ó8i‚”¶Ēį/ßū_JYß~įs'ķĪ;uóÕć_u{Ś3:ŪRœ®¾ųpČҦĶĢ«™f³F¾¾ø–ƒ{._§õõ¶TØŚm=Õrš Ä9c,€ŖlõĮ‘’+ĘęŌŽģ+oŸvāv_o|ż‰įCD$5ėĄ¤#Uć_k®_TŚ\/„""Z›J©cė•4Öɾ÷ö“Xšö=’*į…Ač#\ł+k«#¾»c‹ÖaŪ{vÖöŠ{>Šv8ĢØß’ąŽ—•š±eĢńĻ£!Ÿ„ißó{ėw=µ*c ŠpXł?Æü)oÜõw*”Z‹tµ[+Kg4ą=ĘU“”3ŗn‘Rį` ”§½„¤aźœĒo³ŁMgbRoaķ!÷ĪP(¦ŪŪ4§R›QÕ|ą„ś#[Z'ņ ļ6}Ÿzš–#"ʌʦø=;7Žš7­S|'ī“SøkZ\‚$ˆDeņĢ-wųśŽlĖČīKøöPŚz_Ÿ­ŪķiĻ7Ķ Ń~hKoŻöĒž×Z›Tœä²ūĢæźīŒkĆa­*²ęŻįCDÄf ½½IBR8+.1”u¤2ngeé‚}}%-""G… „ Ż^½u—æ«1@e1Š0ĀŻšŻk>zł™ĻŁŹn±ˆ%>”%ćŻūh3l¤dx'ō"h(ÉČīg·"JD”(Ćn*‹UĒøG¹©, 8ɬ;ēåM} 6A’DDĀ!©®˜»ėŻūOxž²„¤H–ˆH( üe»sŸi®-uĈkŹģw–ē‰ūŪcS’©. 8IīÄäū2rōäćnnˆßgX]ļY©Üp›ŃcĆ9£§|ļņ×µ6¢""‰žHfž˜u³OÜß“čVJń®ŽQJÉĮ“źB叄u“¹>v撐KIß{¦ß=øwÉ+Æüóšļ}ā‹ §Zm­±Aæ­ūų¢Ō‘ż¤ńĪÄĢ8qQe 4”Œ\«3ĒZU|©žč”½_A»Óu8YIĮwļeōŠNėóū^msč°;NéŪżĘO„ĆOų‹Ę7_1nZÅĶfŌļho›Pęė×bK•”āE"RE™A€Ä¦&:ā3ģ‡Ź'Æ%šµ¾ßžZG•ō±Ų¢1ZG CÅDµi‰t¶[Č[gw¶§GB1!«#.āņäg@@€ˆˆ$åĻ*°Ē&‡ū»æ'u_vl|$„»ÓŽ`Xb"""v_÷JÜ”}J&ļZšėH Õm¼ÕIßŸę”ŹhŒ”bSF)Ć¢ū„ŸŃč³öh3`QʱŁLK]uĮvư†E“:¾·-ĘMĮ€SĒ`dI-^TčĪ™1֕œŸ—^cuÄENwŒõ[D’䣝ÓÕ9«ęÄmZ›J)ćķ—Ćž¦2µė±OžAkĶ‚„0tĮ”¼ė‹Ča„”5}ĀņwΌYÉ£ē„Y ļŪ-˰ÄDµŽØ` µėŻŪN ""Žų4{bö4ˆ4Pm@ ""Z눈T*„ŖFMæm樷Ļv&d¼o7„¬:(ģ8Żym®¤P|zq6‰1 #œRʦ”Š‘xѦR†ÅrŚŠb† ѝö>Æ”‰Y¬ˆŽE ĄČö±Ėæó±ŲŌѱ†Õa±ÅøM«3ž“cA”a7Eģ”Óķgs%@@Ą1“V,Ÿ;ėFļ­± ń‡Ė.Y EΘŹųöÖIu11å©yEū.imÉ©źéŹņ†‚…ķ""±ńå©6›ĻŁÕQŠ¢µ;(rl“ĢW'ż©ķ†Å4zŗS; ‹·ĢŽsØCJ©•īÜq1žģt[\¼Ē ™ŖöĒ^¦ś8«ŠĢ,X#WŒ'Ė1ć–Ū˜µ¼ćĪŖ²Y/䍣µ0“<©=¢”®;ģ.=¾iI4¢õŚU÷|Ē“R‘5}ī¦ūmqD"–^oCÜA%GkKr•ß—Š „tń>eD•R¢ā⫳²ņź&:]Ń$»#”ŲŪmkŻųLį·?ņż_R}@.pysī¾ŅåÉ;i}«3>>)b¼Rń!Ćhsj5&ĪXs„µ„k Ė:Ś ĶØa*å™:¢D¬vg·3%½2··;­µÆ'«ćXKČŪK€ˆĶŽŸ?fė̱G—›ņ6yv×T££ujmGͶĄ¾§ųwgƒ.X#HlrAJźŲ„§Z 0$"bšÉ‘};īüē‰ķΆųI—üń®ŲųpJs]ĘĪŖƒK66Õ-ŽŖkƜ[<±źz»SĒT–f®.Ū½bµR±„ø87Ģ‚p3z÷ļ\śt]Mކüāŗ„Óē>ńQ­#ļ‰f4`){ųJ«ĶŒ©*Ķz©l÷-/Ą@ ą" ””CĮĀŽźņĀĶĶõ•fŌUŹŖE-¢|V‘¤ ˆeōŁjŹó^­=k4"‹åżćĮgƒˆÖUXņŌŅĆåK7Lš¹ķƱqfB4*QR ŠšUÓę<ö”ģüö9įšöoS\EŅйT 8›­1.+ÆmŽa1dģäŠė CŪ©  įPl(R>«U\®8Ó}¦ĒkM Ń BøØiɽ}¢ÅŖĪśÓ FĒ™ ą"–š±e̤KKļ²Z•…j`(Šp‘ŅfŲ(æįC‰€‹Œi”“½yEö,MÉš±Š9 8ZG•'uwnįŲ½ E+čé.rÅE=†Įą @p΁£Ēn³v:ĀįŲŠŲ)Æ-LĻj™—̲ŚNhNųē<̰1fāŹĖņŠj;œ·Öʓٔq,k8@Ą€é±MŸ÷Ō­Ł³M‹k¼ż/€€sć:āųüc'æ²dT~ć|WœŽ§* €`PŒ·öŖŗź¼=£ĒÕ_eXX Ó ©™Ż%9…»gļš”5÷żGæ@€D‹hĆp˜¾ž˜›żü/"HŪ  8„zģ±ń *]^цéq‰ŃT*]|bwUCāHåųŃ(ĆæAĄčźßŲÖ[N%@Ą r8ŹSf”ķžśB($A*QV[k¢+¶%½·ĖŽDE@Ą  ŠZ KŠ‘‘S?1.>Ģ`t@0x”²čöÖŁeń‰‘»SĒP@0Ø“™ŖŲ7ńym2 Muć«£Q ¦N vµ»Q @0ų/r†ŻÜ³mĮ?"amR @0čzŗĘ6·6Ē—R @0č”²čŹż3V› FOæ'i„‚1A!€€” Ęū¢Q‰P @0čĀ”ĢŽīŽ˜#T :„ ]SY¼Vkśa€!PW³p_G«³f/óQ¹MDŌ»žśĶJ F>„¬ŗ§3±Ę“Ś’?ˆ—łĖń“éķRRWeJsww€‹ŒiŖč`œ7–°·!qÆRb3,‘pw»ˆ·¦eÜÖēö”Õ塀WŚØ> Ćv h ‰jŻÜ°·|ß„/uwLŖ‘ėDdk{õ–ś}O=P&ß”ę €\““i Ō¹j»·V•ĪX×Ó5”Q”q|t{–ˆÜ$"}"ņąb ŚT†ŃāŠOź,ˆóüŲ»mł³Ńhzßū 1瀋•ÅŚ{Å ż±ĆyśW»€_õõv9ė#«ĻßējqÄō„Ų푸HŲÖg±Eœ‡LZ¦÷QY@š‘p²ÆµŃ½;-»w‚Ķ&¶SķcšZBAܼféõvOh:yė;ė‡h­•z§Ė@ĄÉ ĆaīÜüɇ’S·LŸæłS1.{āv_ÆŃõę–YīėJo ó;ß{†wśY)„ €ąōڼ3«×­õ£üām—8!—a ;#A»æŗręVæ/æƒ €gõV–ްŽJ`ø2(ŽC½Ļ¼ø   @@†!-ZS@€€€ž{wLĀ@0ų]DĆ„n? @ @ @ @ˆ   € € €€€€ @8—Ä@€@€@€0Tå @@€@€@€`YįNņF~MCžIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_3.5.png0000664000175000017500000000413614632072346024130 0ustar fabiofabio‰PNG  IHDR ™Fō„ĪsBITŪįOą pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<PLTE8’’’8888/^!8?q*8i&9j&8.] ;m(G$RJ0SŠ5Au+Cw,M‚1H|/Y‘8]–;Y8^–;`š=X8\”:]–;dž?[“9g¢@`™<`™a›=e ?g”@j„Ba›=h£AeŸ?j¦Bi¤Bk§Ci¤Ak§Ci¤Am©DnŖDm©Dm©Dn©Do¬EnŖDq®Fn«Dn«Dq®Fq®Ft±Gi„BsÆGt²Hu³HrÆFwµIu²Hw“IwµIs°Gu²Hv“Iv³Iu³Ht±GxµJwµIz¹Ky·Jx¶J{¹Kx¶JzøK{¹Ku²Hx¶Jy·J|»LzøK{ŗLwµI|»LzøK|ŗL}¼M}½MwµI{ŗL~½Mz¹K}»L~½M{¹K|»L~½M~½M¾NæNz¹K}»L}¼M~¾M~¾M¾NĄOĄO~¾M€æN€ĄNĮO~½MĮOæNĮO‚ĀP‚ĀO‚ĀO€ĄNƒĆP‚ĀPƒĆP„ÄP„ÄQ…ÅQƒÄPƒÄP„ÅQ…ÅQ„ÄQ„ÅQ…ÅQ„ÅQ…ĘQ†ĘQ…ĘQ‡ČR…ĘQ†ĘQ†ĒR†ĘQ†ĒR‡ČR‡ČR†ĒR‡ČR†ĒRˆÉS‡ČRˆÉS‰ŹSˆÉS†ĒRˆŹS‰ĖSŠĖT‰ŹS‰ŹSŠĢTŠĢT‰ŹSŠĖTŠĢT‹ĢT‹ĶT‹ĶUŒĶUŒĪUˆ€æa«tRNS  !""#&&''**,,1155778@ACDEHMNQRRUXY^bcdfgghikmoptuv}€‚…†‡ˆˆˆ‰““•––—š››œœžŸŸ¢£¬¬­­­Æ±±¹¼½¾æĮĀÄČČŹĶĻŠŃÓŌŲŲŲŁŚŚŪŻįįćććęėģķļšššńņóōōõõõöłłśūüżżž&÷ŹIDATxŚģӁ ÷—ž`ƒr(.A@A@A@@A@A@Ø € ‚€ ‚€ € ‚€ ‚€  ‚€ ‚€  ‚€ ‚€ ‚€ ‚€ ‚€ ‚€ cŸhĶž„Dč€ € ‚€ ‚€ pOA@A@A@A@& ‚€ ‚€  ‚€ ‚€ ‚€ ‚€ ‚€ ‚€ ‚‚€ ‚€ ‚;w¹ŪF†QXƳnڦĢĢĢ̐2333¦L)337ep»ŪßVjlŁu¶ė?ż7ē¹…™£Ń|š]€@ €@ €@@ @ ųæāėJRӅ³c ĄüĝŽR’óv¢D Ų£}ž˜m%A-ĶŽ[`^įĒŹ<@ÜÖüe|¬<õŹ7ļys©‰ˆŪźl“¬Mq)+¶#mfę_Y0§¾@ īźńÉ2’·*ŗØĘŌÓ ĖŚÖB g•œ³œ£J$Æć蕖“zÖĻcL Ī÷Ķr~^ݵ÷ꏔoł^ߝ,ˆ£b“VĢb@\åMziEģÄY?X+q•w8aŃüøjģw+ā,ĻPÄ]s­˜)8«ļ=‹ęwÄ]ŻŖ,Rz„@ ze‘fā²^G’a@ NóNY„큸m‚EøßZ §-µ(·g ā²N×-B0F §ķžåÉ“…«ąƒq\Ż6퇬®¶PU=AlYŹĀ|.ž9ķ}ŠD hdµ…ZĀ%„@ Å/XØÄŃa쁆>MYØĻAƒ‰-ŒßA HķNž9D¾»ly‚CmŸ~ąų–i­b /ZĪó3„ Ļ:Ė Ö6fŽE ų[×–QÉoŽ µ“?sŃžŹkß.įKļ•–q’ €@ €@ @ @ €@ €@ųĶ>Š šżK?ˆŠA@A@A@ī ‚€ ‚€ ‚‚€ ‚€ ‚ĄA@A@A@A@AA@A@AA@A@A@@A@!öé€aŠģ_śA„ ‚€ ‚€ ‚‚€ ‚€ ‚Ą=A@A@A@@A@A@˜ € ‚€ ‚€ € ‚€ ‚€  ‚€ ‚€  ‚€ ‚€ µOĒƒü­‡±§A@@A@A@@A@A@A@ų’¾L"ĆKŠĻIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-8.5_dim.png0000664000175000017500000001024514632072346025041 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ ¢Sp6IDATxŚķŻypœwaĒįß»»ŗ%Ė^[¾ķƲć8„'€ B8’†“„™”BŽN; 3 “„ Ē … JŹ1)%“š“ĒŽ#G¶eY¶c[’u[·v÷ķ‰cc#i_Ū±%ėyųG+ķŠ]}güÉ»g‡éēŖw­š{bæa{ß½·N@ʟ@@@@@@@@@@@@@@il4=˜3=Ą‰ÉĢ“ܝŁßŗæ””ŃōRōqGėHŪŽO¶ˆķ Åw“¶ķoxś™xŌäR”±tėH[sóĒR“ž’Öżū¶8īzS-;·®wÜ Œ¤[4=ؓǼR“|ōģšĪGŸŚŒ Ekš7?ö°Ē<$ƒ™-ŪŲ×mTI éą¶_7ķō9€€$Ņ=śÓŽsœ:gț)īŚ.’XGŌøŽ”’Pvo;ąų@@’:¶:žć9žhļ5$€€$Ō¶l€©+3•®L*œ}Ŕƻ›‚€LaSöYX³Ī1€€‡Łēdk²å„ę.žŹS_ołÄgM ‰d2ugĶ^pńūęU @@Źåž¾¹cČH’X\b"I,©^łźyF„¢°ö]X’ö7]µŌPSMfŖ_Į…«ŽsļīßÖ¾ŗ76€#DG!éhł+?õ_+* „S/{÷G~če…rĒ!+/åsHb%%¼Ó\rYüŸW Ē”žŠ«?m0I,“^žĘWÕgK µīS[?s×y5f„J3«ßš‘»Ö®˜Ÿ2€€$“ņŅO7½’ļM ɏCRÕ«BˆBYĀE‹p:D§ė-¦n}bÉŚćætļž¶å‹KŅQ*•żŲꮃ†8ÕNŪ›)Ž Ę! #¹t”I'ætķ¢ŚEĻ}‡ŗ9\kH€sņ¾µ5/½ęī›ßž… Žqbæihą[—žvĒQßģė*ąŒ Č!×,»ü»«_wčTz«j£„æcd¬?ņt>śņ¹æŁi\€ÓiżĪ=_~ĖÓwāBčn»ēŚėžØń£¬¤¢üČ’•—„"Óœį ”yąsļxš†B<<ųĢm7ŻŽŻūĢ—:Z 0ÕM‰O$ģ(doL•żī;ūš’%„šĶ_­¹ųśĶs@@&Օ×>ÕŲyĮłļ½ķœ«Ü0uMŃnźü׿ÜŪ`I¬sųW× @@»}ż¦ÆĘ˜¢2SłŹżē Ÿ]Wi±ēĪå¶w†(ŹäņŽ]^lŃŌžoü÷æžź;Ė+‹9gīžą¾Ū1fR€ScŠæļ­’·ķgÅ&.3$ņ‚ƽ’o÷mĪMśĪVQØōĘīrX÷šæöüņ}퓾·UՑ `ę$„–¶Ķæxęg„s¢ŖBčÜÜžPéXTҶ%!āÉnÖҵ]æf©f`@BŲ“ł”;÷>4ēģC§Kņ›nooč+āŽ¬†o=ŗĒĄ/–ōg¦ōÕ»nWIŲŅ’|!ŒtūöēscéT¾j’ū§¢hįŚ/6ÜÕ2ŠSĢek²—ßōĪoĢO™ąä‹¦Ć§ŽGх/?ļē>*_vÉ?ÖÕ„Š|†U!ŽųĶ/}ÄĖ fd@BaÅ¢óŽ“¢&ĻY™]Ń×?kV.,{ķČP¶®æcÖ$Ÿ’ļøā;÷™ąäš6wļģÜĻ훇ҩtåŁõo®Yā½ =-­cńdOéMG/}”N¶Ģō¹ŖńhtO߅żcqiżė^øčĀ8 =žĆŖlöšŃBé„!\ximi僧N¦)ž4Žß÷™šį֏ķ«čߢBŖ¢¶¬“fNėļŹŖū«ēLōi!µKŅ—Żol€“iŚ<rÄU.½ņŻõµ Ö®ŗ¢f^*Żō‹–†E«Ó•«/KOp™ĮĮÆ­¹ĻĖ N¢ių×x4Œ¤ņūĶē:wåĪŗģ5ŲŁ|g[ćÄz²×Ų3< ‡¤óßōČ× …ŠŖ—½·|ń†[»vŽށή>cČ”+?6Ōōč·¶Ü7Ų6澓²³ÅœR“ŚYg_Zuē¼äšg7Œ’jĮLi¶ŌŲr„gŸŲ_WæšüŚ5ó/’ĘĢ^ų‰/@@޼łĪgBˆĆPouŻųēŠBż[Æ»ĢÜr„÷÷E”,Z¼r¢se—¼ńŽ÷æŹąņ‚‘ž(„P»°¤lāóUgÆųßO~Āärč&ä:v÷tsĪŁ ³ēš@@Ż„ø<5+;Ń9š6 <÷UnŲäRōĶØŖiŻ>8ŠŗµūĄĪ»Mprd¦’Mˆ£²Yž<ģžÉ—o¬LF鮓Čóņ™Ź…żü`×-7v{',9ZiEjÜ[ŃÓ^Ūń£=ņ  •ć=’ ?¾ņ†ś’ėķ ĒJ{āšĄž®įą™W/‚3ąYX‹^š²#€€$•O/^7ŽĻ¢P›11Ą‹cś’ēGĒČkßxķ®Į®Ÿl44€€%]`œŸ…·};„=ĀZCČ1žżķüqßį*B˜æś{M‡æóųæ}õ;fBŪö܄7£¢ŗ¢śš©Ź9F8Ī€'0•Wz€€‡ģņȎ’Üģzć°żē}­†ÄĘśö>lH9ĆŽm@@ŽG×®nSHb£ŻŻ4č(@@’>°ćŽŽŻŻ=½&Dž]æķ¾t®v®I$”Ņ|Õ<ƒHbm›ž;7fRIzSāŽ¦(mRIløgßcż| »ń§}یp2œQł垾£jaö¬ń~ž’ł]ŻCFpr¬ŃĒæŃ{`¼VŌ®š,-łĆ ƒ{÷%U—59€€Œ£ww{Cgs.ģO2Ń[¾2§Äč'CęĢ»I=;’vŖzŽ‚ś7U-(Æ:źęVĶĶOõqä =Ż³ėϾzīŹĆ7‡­ßnņ :ĄIqF~œxŖŠC”§łŃ›ö¬?üż¾Ī{`r™ü@¤&•o¾?:]Y{łŸ™@@&•>ĀPŪž'n¼óŽ@¤X÷ŒŒ†BvŻÕ5jr)ŅXWūóĒ ‹ßrŃū꣌ŁN܌ųĒ“åĮł–UF”¦tŻkF2Ė[^ņؖݦp2©ž}{ !„źe%łź‘óĶ?ךR”ę†ūCØ]‘K‡BÕ"oū EÉ÷um ”¬¦ŗ.„–Ī9»ŽōR”] ö¤£K>4gU!Sž[vé¤(=-æ¾±åįź¹/’в«JėŹŖL ÅjøcߦҲ G p¢fĄÓx[rķĻ}•]ž’žė–/8ļüæŲ~³édcƒėõÜWQś’WÆśuYY®Š×az)Zœ†Cᣖ8A)@@€Sm¼$Quˆ8BłxÄų2”eŁk?¢‡8„‡8!ģķ ß3>€€LØ"WqĢ÷ŗ"Óœ €€€€ €€€€ €€€€ €€€€ €€€€ €€€€ €€€€ €€ €€ €€ €€ €€ €€ €€ āO€€ €€ €€ €€ €€ €€ L{™éx„GŅ=„GÆ"_–7'€€Lč¾’9öz_łÖUÕę ŃĒ~ļOccœJ@@@@8å¦åė@^ńś9Ł£æ—­2&€€L¢nžŖ¹¦8½Ü…€€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ ˆ?€€ €€ €€ œńžČCü‹.8JIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-2_dim.png0000664000175000017500000000515614632072346024675 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ:>ӊ0 ’IDATxŚķÜYoTēĒį÷ųœŁlńŠ1„Å@ ¬¦ŅŠ’HED•²ØŖT©½Ø”JU?BæC?F+¤(‘ŖVŖ’‹V½j«¶J”4@Äę6Ę1^˜Ū3§Ä!3˜Eö<ĻÕh<ņÅ_cżüžćq”Xž7~µ)·¼ļpvü½·ķ+M‹ @@@@ž¶Ä<i„Ֆr’©ŽŠē«µ$Ī'Q𤕖ņÕÜ¢…@@ą“7“”óĀ娄V½9ÕµnŖvéƒP ™5…\\,^›\H·ōv ·ufēnĘłBk[¶m¾Å'Xaŋü³ģ7QhmųģĀ·¼* -é|Qv°«{Ēžż=_yėł$:8Š”św•ĒļĻGGkozjtcqķ†ZO9Ŗ–C:œ)ä÷ĶĒŃį¶ŠQĒ&®N nķ6Ķll4 !„-½…ućåÖB×ƾ[IRČÜŅ_’Ļ„C9MC!Ź…–ē’ŹB˜KĆ@Gv[-t…(Ä5‚€Š”nē#„ø«2;ńyˆByō³%_W¹÷øk``ūŁ?\œ8tbžrĻśé)+ĀŹćÄē@xöæÅ$QĮ ą_}{õ„ٶī$¤„éł-]ķ-łj„<;9w£¢®xh {ø­'N’drźo'­+{ <1½Iqaó¶āŗģPw9Ŗ•£JØTkÕxcR“l_®£”©]®ĢŒ„‹3W¬N BįąįāžŹŚd6;ęf¾\̜łø2ŖéŻ·[’łĪĪ™ÜŸ76f-p{o¬üĢ'žJo-ń;K²¾oƎ—wD釧K„ń [ŌaĻ‹=/V&Ī]:?q#õłØWk{)¤³÷?·µ·ø÷£æŚVĘĖSuköĮ|ģܼė'żeĄ 2²·ķ„ŅGüĖå,XyÜDēھ¹ćČē‘N И­»Ę/Ī”ģ@q@@@@@@@@@@@@@@@@@@„•/*ŲVžÄ79mųScļækX \Ā@@@@€UĢ'ŃyŹjqŌńµ'Ó[–‡Ś“žæ~š¹/®„ß[Ŗ°PXxš¹±»ĄŹć€€ €€ €€ €€ €€ €€ €€ €€ <„@3JLĄrż÷Ż[/u„j®m(„ö:]› ļ‡B±pā­õĪ“Š4üøóŲĢ”¦ÆZĮõŃEļ(hÜčÅYEA@ q_NO•¬‹s±@@ a½Å¼KX ŠøMŪ×,Z%}ĻGfó}õ¹¢@@ ±|„C?Ų=œŌ,ä#zįŠžżŁŖ% ™ų›–mmūŃ7wöÜ>Ę ŚÓ“qś€¦ćĖÖ·Y>@@ąÄα €€ €€€€ €€€€ €€€€ €€€€ €€€€ €€€€ €€€€ €€€€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€°%& >Q²Kå5怀Ą7;rlóŅ…Ŗ}@@ądZzjVīqį™œLÖtm«åķ ŖĢuļ<ņ›ķo¦9[€€@#o”…sś÷o“üö×mĶÅMtźtćÜ?ĖKeć¾õs§ßÉwŁ–pźbøøōWŽŲrQµ2a#h..a €€€€ €€Ążž*ešÓ|”anIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-5.png0000664000175000017500000004533614632072346024053 0ustar fabiofabio‰PNG  IHDR ™q*UüsBIT|dˆ pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<J[IDATxŚģŻTÖåāĄqҾV’“ŗķš6-M^p¢¢ņž~/{ow²÷~Y"Š[Qq ¢ "øŲKE¤īmܖս·nūfeššŹŸŸ^ œ@ ßĪłœ‘ōyģæēY­­­@3tF²ƒ±®1ąĻōģ“8{ęō7 € @ @ąj {€ @ @ąj$;€ @dŚz„‘ŗR-ÓŌØŚżžć ć‚7…š'.HµJKĻ\h»,I‘™“Ųv^܊ a›Ā ČoÄŁ) |ÖjJŻs‹ÄĢ”…Āņ#'GåƚÅdd8ž=²Üīó„zńPLµĶ71U6_KŌ…žMć‚×GØ7¹ķOiN¦ķZ3ZÄVÆÕžuA[­’•ŽŅöż7ÄÖų:냔ۜ>ŠnöŲXāśw÷ŗĶīĖ\JÜ 2-Rļ~śŽ[Ææéśė†Lv·±§ģUé×h8Čšś£2_€®ł1O°“i딓£–'Ø79æ„.ōŚm•µB]čųVŅnįxJ“¼UæW8™Ś,oÆ¶œē³fVEr£pL ŠŽ¢+mæš_ļ²?x«Ż§iĶĀ©öŸŽ‘s>·żć āį ŪܗĢŲ!$™ę«6ˆµA%ā{Į[ļÅTŠ_ūęŠ[CKÄä)‹˜/@€×iį’\÷?×·¹į5W_­¶Ųö€v³óߝū—¦4 'Ś‚ćDņł‰Ųėļćėğϊ†¶°*q|Ļvž_Ilµā‡ĪĀ"½‹ą8Wä.ėÆĀwŚ’3²Üę‹ä½ņēūyŃā×ęa¦āŻĻŽūą€»Ürć7ŽÄ¼øJ)ōÓ#=–Ł”O‹šūŗgpōpyʬē䩏°ķĀ×Iā/ś½ā1iĖŌńƒ) ŠŸ/ęs»‹“Z±Kž­~Æüdt„ųMŌ.ńK·Å3WJŪ³˜_@€W—VóŚ’2ŸŚ,œņ[ļ[ć¼X¹UYąņʬ<צŠķŸč÷ æöfT\‰¤ŻĀQß\«7?x3ąj#&[%œ^åhß&Õ"¶†”9|Y!LØ·:YaóeĄ—u”Ć?‚·ŚŠ7]…1Ņ"bł­wŽqż<«€®RYV™ŅÖ© ż%_ “Ō}ĀIu”ÓŪ±µāVlHæ‰ õāĻ~kÅ2…Ž<ų—ļĢ|ø†¶`żŁ¤°ˆ©’‘¶Q„ī“·&6ˆGbŖÅļ"wŠŸ‡–мr̛̂'śĪˆ4u‘'LńĀų”ū™C@€ż(@¤w<¤Pč®Ćēiū…S”ev’ŒŲ„ųF³I8`›nZ>Źq¤N‘bķ»JžÆ.«5­ž>%pœ-óą#O˜wī,)*Ņ[ĪęBśœŠmyÆvŻYaūŸ“fįŠV>¤G £«l¾-³’TWl÷”¾Ėž »÷ćėğ¤·F¤ÆS)~Ū Š”Iī7?Ģ!s@€×ė«ä2ūO¶[ŗ]ńeųÅWA[ķ>MŽżĒŪćCWl{Ą{µW­ŗŠõ‹}Ūć|’÷ǵ›Ž‰ÆS’bćÜ8‘®Ö5 ™d7ąī·2g€®ń-X­^œ^•Ų'ļ4lęĘ/÷Ģõß\źō^Ą÷&ÕF·żĮ„öŚā§n{ߣY<©Łdū†˜4]{ē·ż…¹ŠĒĪ€„mw<ą¹Ź«Z[ģš¾r£ĆŪ!Ūģ?‘ā$”^ńSŠV—·ÜWoš—9ŪeiŠFÕ&·ęš¶Ÿ·?½MŖVC¤ķ`ŖMŽÓ„<;-֞9Š‡ĢŒ•‡« ½v«6łÖÉÓēd Ś왫.u]¾^ČH\<1lI¢‰nu”yĀĀT·œÓįTāšAp©ŻĒįŪmž“Ś,œ¼¢‡ÅĆI»‡„oK”c•6{®±®1@ņģ“8 @_2lŗ‹åŌŲeIR`ėJu n9ŚāĄ-nŖ°ż2”AüYZįčŽÕNW<ھ¶Ļ×=ī9EÓā—'µĒ Æži‹ é0y[lvY\`ž˜¶Ćé£óŽ„u™źåG½W»4mµ’Č?ßéoī9ž5–ś9s¤šé @€>~¤ż ŽšŽŸŲĻ\­ČŒ_¦ŪāōīåÆn'ck¬’Wk}PZE‘"ēō‹źĶB«ō}u”ż{–ś¬Łē† ŸHĒ[°6x×». (®“żJ:«UaūŸ”&ńųÅH|õĮ2§“›]ßt]źWę“X·)ŗŹö«Ø »/uÅīoˆ™© ŗŠ @4Y'$ķéźĶé…óČr»ĻĀwŚ’3±Q8ŚŁ¶,éc õĀ/»¬æŠÆK7g„·§ŚĻ„”9,q~glŠę™¦F%ÓÖ*Ļ @€>źŃĘÖ,vq²~Æšėå="(’UµÉž=ĒEž[żņßTd®Ÿ¹ Ån^ŲŗŃEĮĘŗ¶čøČą @ōqŹ¼Låé³ēśē;æ±Ėę é HĒ•Ī)”¤īNĘÕ‡B·Ķü!t»ÕAeõĻUĪ{ķēl Žjżļ˜jłįĄ-¶ĖtźK‰™¦V9Ņ-_÷‚Ķ¢€G^÷˜ĢčCĘśŚø 1Ėlu]ęYé—7«ZµÉc_čvĒÜs<«¤䝟Zõ{­N)7ڽß.’‰©¶ł6®FüÉ?ßīŻ™©ŃĖ,’Ž]g¬«Q]Lx©«U£|Jt¼¤ośĖ}w2?€śą!tév*é¬Fb£ų‹¶Č½Ł{µS³’ūwŗZżčšjłÆē¾Ņ~FD ē%Ź­Ć×Fw£}KuÆym|Žz”ßÓ¦”V÷°xéīĒF?Ō72/€ś(ēģ™ŁēB—ā!®FńĆ„æj. ŚjóOM”ė›~ł¾Õ3S¤÷=ĪŽ^5dz¼ÓćĘ~“īzōՇo¹ó{n½ū‘Ū™żÄ…{č6›’tĒ£ƒI»…£R„$5Ī& \ż¬YŒĶć&Ónōä ŪīyüĪ{‡NĮ”sż€C–Uf\­ųS{TØ6ŗķ×¹¾)};mæpŖćµ¼ń^ćæórŽų0RU©F(²ż‡Ė3ƒīŽŅęīĒnj•VFŚ\×ęfę @däiåc‘œ°Še©r«ēJŚ°ķöŸžvĖÕ>ł)—e¾;„׊;{ż\ڦ%OO˾”šå³E=Ģ"ÅóEūåƅ9ŅcƒĆåsŌCĶ]ž§žüäåiqŚĒMÜ|Å֊9Ї8Ī™±Óöó¶ŲhMŽ+?ė5t]±Ć{ f•ŗēlSntxŪo½k“²Ąńm’|׿bfāā ”›Ā.uåc“o©j˜eŠk[|ų¾ęµYūģ“XŻ3S£|Ū¢Ä}„8oÖ£F^ŹĮC&Ļøóį—e·ÜõŠ“Ģ @€>Dz¤«ķUŅ鎳Ž 9}öc‡Żæ4»4Óā–%M- ½œ-Xc”źūGXL7008} ļ÷ÜöķŚÜrÓƒļjū÷­lÅŠ¤„->ö‰'» “„zńЬ<ļŗä=ā‘ ēw/'@$#Ż7„<<Źuś#Æ»[Üłš+£;ŽŽ%żĆüčk[°²¬ęH«Į„ö¤ »iĶĀ© ’™_•X}Öž0į#ÄśPJ“pŅuiŠĘĖ ß¤W«žœ  znfŗļ£c<]ī>ĆžŽ”SF1?€śEŹL½Ļ§f‹äŒ¹6s–Ś/Īw]l_ķ¹ÜrĖ‹ ‹`鐹<#~©¾I8Ń~ų<ŗŹö«©±Ė’¦Å-ŅĖ:yļćrŒö-Õ=<ŹŁį·^’¶b]ĒÜ胞ļf&Ón źųpąU¹f„"K9jV‰ÖX·%Čvndną÷7¼ru[„ŁŅ­WE!&AŪtŻżļPŗżżĻ[m‹Ģ @€>ę1™ļÄĪb@¦­ė°²ŃšŪĒ'„†*7ڽ79jU\wH‡ÕĶ ¶‹ć9ƒ9Ї<1Ö}Št›•ļZåŽąR—wgå)wŖ6ś4D–Ū}¶Żń@ŪĒŽ1O˜3{Œj§FŠ’q![ƒL7‡œ(=ćŁiqöĢ @€>Äe¾Õ¼“ęóæv®ß+œHŽ- (pŻoµ"¾§ĆƒŠWä<ļ€töśyd¹õ72MŠ @€ é*^]±Ó»BFX®q7Ż|E€ čēRf’qŚžĪ·déŠm>Uxģ²)Œ @€Kfc”ß+œLŻ'oMØYčõó£+ß¶}’”)M‰ˆ]vŸEUŲ}i??juo’ @ōAÉ|&ŽŻ1!,?ŅH]”>}ƦB36hS˜ōįäØÜXiĖ•L[«ģĶų @ōÉéü«€!@ąņLPZ)eŚJĶ™­WÕ*³øeɞ+uÅŹ>õžł~Uāģ”ŅÖ,u”Ū~æõåĪKĆכ'.JµJ›=W‘™¼hbųŚØžŗ‹ŠĒ<*ó4\ī“8bݬ<ēżē>J˜PÆųI¦É‹HŁ'’ķcŅ-Yҵ¼ķ‡ŌCʜßk‹’c]@€]³J°Š Ż&~Ž]æ+…†÷ŸJĻU>•ŃUv_tõNHR£āp[Ĭ%@ KÓĀf†n±ż8b—ųmR£p¬«Ąš]§Üį•«ŻŅńcR°¤6Ė[„U)`āėÅƓĀ×E Š)§ł3ēÅÕ ‡āė…£ē{ =¦ŚśŪ ”kb¼×(·–øž]г؅)3’¹åxU“©’§Ē-5$@  ŅKčé-]‡‡DæG<ę½Ę«Vz D¦Ż,ÓÖ)4;“Ś"×7:nۊ­µž^Yą¾7`ƒoĶōų„Éœe“«č\Ŗų¼«ųĪ€D•[g'-q\¤-Ōm±łT·Åł]×e^~ėŽŒ¬&6ŠGŅ;„ˆ4‘å¶_J·j pÖ Ht„õ·ńõņ.·`ÅV+Zgē%6Ź¦6‹'Ä#nĖ=«·Ś~’Ö,œJŽ#×ļNHŸ])’) ĄžĻ•uŗb÷7'i·ųK{˜h‹Ż[LKĒƊ‘~Ž„Fˆō~ˆ¾I<.}[śłžłN‹Ŗ°łZµŃńė9į¹Ėäė™@€}ĢD„µ·t ÆĆBݦ)Q)Y£6O‰žŸā½Ę§]vōŖ™©s]—{UŒQn ‘§GēĢŹsiv[¦Ż,f¦,4ÖķŠŽQo Tmtm™µŽ»®ć[!—"¦Zų1¢ÜźĒŠmŠ/ck­æ—Τø/W1?€śš,i;U\­p8ØDųrBȂäöĆą2MjFRÖleóß\—m²5Č4ru¬“j1-~‰^ś!#a±®ŲįƒĖ ŌfykŲł÷1•ĀOŅįō€Ē·L‘Ģ @€~pDZPnōŚm©Ļš3>¤ ģ÷«qæ.×2en¦Ė2UÉéo§ff…n³żĢ,6+ĆyqX^LµķחseÆtEoL•Õ)BlŅŹĢ @€>ĘČCįžP'é,¤Ń9½%ÓÖ*;¾Ļ”˜“¼(¤ĢöŸf±Ė„ļ . 3‹³ÓęŪeĒ®Šmqx/±A8YaóÕ„†Ht„üPP‰ŻĒ±Ö‰Ģ @€>FHž™$ŻJÕémU{ÄcŖMM2m¹¦c€ŲĪĶ1\uīƁŚb—æ‡ķp< ˜£_4.xu“Ē ’ķķ+*u;Ö^įDųń[m±õ'¦ÖĢ @€~°ėō{ÕÖ’«Sü8+ĻÆB¦©V“"čeŚ:åŁ/ ’>&}~ “Š”Ģ ŲąŽä½Ę£žbW@’v ǃ¶Śžsz„M“ōė{Q>|ĖB‹,1q²ŪĄQ™3@€}-@¤ķWž+gķ2R­śĆ*‡dFҼ ³ŲÅÉ?&Tw]R ,š­ (˜Uc='lĶ“øåIęI)ŁbfŅ‷}É{G.6D¼W §ÆįõYeµ”}uÄŲćåĢ @€¾ mRš„“Óā¤v §W9“õg­~xÆVmĖčšxaųN»ZgÅ-,qś‡ē*]ńō„åIž«“[.5@ęX¤I[ø"w‰_½ī2ā!ę  @ IH™ÓćBŠB;‹Ž&†åGź÷ Ē;žÜˆr»Ļ&GåĘĪŹ Ų%±—3)bC¤ōĪĒň˜'żś 0˜h=Śń„§˜/@€}8@N?Xeż±®,š|"Ӗ&ļŽż~†Dl•^O’ć‘ĘĻ\ĶÖKY91ŁĢU·YŲļeÅ\č[mó­Q'‡ŠĻå²4,_¹Ń§AZķ°ĖŽĻ‘Ī„töyÓę„_Ģ­X é@zh©ų‘ō¹ńµņC7?tó­Ģ' @€«œ˜<3Ń?ßµ9„I<~n„ķpśH‘„_t”ųøXŅ;!ńuŠŪæ~p©Ó?bŖmæ¼Ü—ł– ’÷Čõ_7³¼-H®›¬5§+Z¼–[®¾å‰[n`~\…+ I»…£žłNoÄVŪ|sśŻŽf”U·ÅķĶ©1¹qŻ3’¦jŠœßŽŖ~ˆ©–’YnżĶäčUqS¢×Ęų¬Q—…ļtųTŗž·«:ł¹»]Ī\`›ngxŸį ķ« ÷½x×½ķ±į·FQ&żÜŌ}ņVcĻ—^d~\MøŪžq]437eÆx,¾^ž‹]¶f“¶Čå­iq R:;æq9¤Æc??fUbƒõ”³”Ÿf§.hߎe¤Ł„UorxēÜCčķęXčOæĪŽ,œš¬™0£³ßmšyXB½ų³n³ü훼éfę ĄÕ×?2Śm‚±zI“õœˆ\«ŌˆVi) &„m “5Ø{V>üņ=Ņ»8óįž°Mz=]WģžF`‰ĖŪŅĖėŅöŠķŠ/œČWtüõڤNńOŻ'?W+ü<Ņīåg»ś}6¼ū¶gocū @€«)>†N÷°sY¢-ņXé·Ó2%3Ėc„’v·œ€2ŻĘ°īŚvÕ¾õ*¶ĘęæpÆQüŠÅ$'¦‡ŪFsčüŗń~£^}ŽrŲ£Ģ! @€kČ__”?ļ½zV…“„Éo½[“Ć‚ą|éÖ*yš~Į„°Mį—³ŅqĘLŚbe1/UzÉüb!¼ŲCčpõÆ~Ü8Ģ2Õ+l‡ĆǧoŗŚīš±_žOć¢Čµ2mķeūpZŗ^śz¾5BFŚüiqK’ķęGåśēūUEģrųgJ“üTzĖÅĒ xų5§1c”;5Qg_›Ö,žŒ®“żŹyIhžÅ@—‚Å-'xSä.ūżöį~”5øĢśóØJėo.%8ŗz €®Q†·ßsėóÖ üLJ$6(~īģ/žiū…SźMn-6sćsdŗ Ķłdbx^Tg[«¤ÆRö 'Āv(¾’Ž_^€°ąšö˜ĢwŠLS§f§ew¶%JZ½pYh‘+$˜©b«ÅļB¶9|h¤®Tw!;“Q6_w¼åJzåÜo½ū^é]ˆŠÆĶćy®ņßéæŽe?@€ Ÿųą‹’÷²Sī阘»,)µł+ńµĀOžoĄŅēūÆwJNŽZ–h¬­Wvµ-K¦Ł®³™›“Ōwj»ó’𼙩Y™2mJśü1źr±®J-mÕ²)L:B€ čžœ µ’‚Aœ–¶Ćń@F'+ ŃUÖß>jāfūĄØS‚·Ś|”Ś,œŠŲe÷yH™Ó‡ī+T[„łć-W;“2ķ.ĶŜ™³*>ŗRń]ĒĻ }Ģ=O{äUĻBõøąM”‘åāwźBÆŻžł~•mańĮońQióµuVŅ’ß^/_«)ņŲ—Š –¶Ui‹]ßTtö!ō3A2=qqŠ[NP”±¶Z}”“)ĢyIDžg®fkņÅ/ē†GąĒų®õ+wY(ä0w€®µ?Ą×=35Ź®ż½#uło‘ +öh9óņøććĄķŗN£A»Mg©Ÿ“ŁŁ,él‡1S¢—%:.ŠXk»<ńbVBL C5›]žÖŁ éŅ!ųYy¾ÕONŌĢ`ž\cī{nśŠ×ż¶wŗEJžž1Ļ:+ińŲąsW6ź”cT;5FźŠó®hŒ)‘V2&††]źĆ… £sƒ¶:½×Łv,)Bģ2s™?@€×ÖźĒĆ,SÜ.: “;µź"×7¤Ē “v‹G}׳—_ĪƄæ½zåøą‚š®·cmŲ`’vp©ć‡!eNļ'6ž~5°÷J‘3 €®%Ž“{ÕHU„ŗŲU æõ޵§§·Ńnöhž±!ņÜ3Fji«VĆo3O\’ģ·ŽæĀw­j»ķ¼øå&[;~ĶÉQ9ńӦʓ;:Żāe—³R˜²Pŗ)Ė?ß§6uŸpR Ÿ• "p-yjRČ“KY±pZ¾NSäŁä½Zµ­³å+‚Š’÷ĒŪB#ē̼e õāį³!¬Žų¬õ®*qū›óR]a`‰ėßS›Å“±5Ö’µĶŽ]!Óuż®ˆ8ŅĮ¾k•;äI޳™C@€}8@.$¤Ģł½”&į„EņütéūcŌåź¶ł¹««tĻ}ģPz{Äe‰jĖų³ĻœtęUź{žūWę @? Ė”¹³Ż–k¶tü˜Ć‚čÜÄFÅ”‹y\P éJßYy»§',H½Šļ™)rę @? Ī˜Å.IŅļ]ģ ēķ!bæ 4ļB_ū¹™iīĢ# @ä7.K‚ Ņ[.>>Śé›ÄćaŪ?ņŹÕ–ŲĻĪ»"aJ̚X NŒ×*'†.Jr_©*ėģAĮK!½ū]©ųnfjVfĒ“@€Č9ƚǟsÖ劻æŃž5'…Dų­wkf™ģÉ< @Īŗ:W»Łłķˉiå$„I~*µYޱĖęK#Mõé7K¦Dƍ™ž°4y˜eš‡ĮĶ’s‹äŗÆ»mĄ=na~ōƑ(2£W^Ī9éē$6 G¢+m¾ .uųP¦©Štüŗ£}KÕ/9®T¾äøJõ²S®śe§Uj+}@žļ*˽G dŽō·™™’•S-žx„[°ājĒo >ļj‹¦F\j °X|ĻT=q s  ˆžė}jÆ4>N?RøO<į±Ņūłž{Ņ+éńuņ#ŅŹ‰Mŗy,s  ßHC€÷j’]—³õŖ“[°Z·Ųč¶Ü³ŚfnüņIyQēž·dš:焚bż^įDųNł7ņÄÉ F9ŒzYęnü8s  ˆIPI°®Ų鯌né!CM‘[KJ“x\ś~Č6ĒĒ…l m13yqp™ŻĒŅ6­ŽŃāŗ`zõ$õ„W˜k@€ża –¶Rķ•«Ś–ŌØ8ÜŪ°Ś%6ŹjŠl>™‘4'S³Łc_ņńhź>ł©ö@‘¤4 æ ‰fįĢ3 @€~t]b—“[cóß+ éZŽ„z«ć1UVæHĮS%üŌÕ熔‰Ÿüõ„2Ļ€śY€H„Ł© Қ…SW É»…ciūŖz‹ŲŖŚ ģ3dx3s  ŸˆL[§ ßéšiwnÅŗéĆ_yš!ę @ 韯®~Ģgŗ¬7$²\üĀp0+ €žtC'ø×Mƒėņ™¶VŁ}²9¤«ó\“¹7ÄaīŒEĢ5 @€?Ł€{Ü¢Ś ģ=}°»Eh Żęō”tPüŹć£Rm¹$Ń-Ēo»yāģ9ҹgHn`qoŇt`]”Ÿ:‡łš'³I3?÷Ą°ķdšŅĄs£įR˜F®Žõ]ēŌ¢)²żČyƜń*’>-ÄŌfਁ§_†ƒ ŽŁę/ 8=l²Ó0³aƒ˜s@€×x€h7{4wõā¹ŗŠ£9£„ēÄy¾Å*ę @?¤FńČŲ āN4 ÜžX/éŃi ·Å– @€ž )MņV™¶$س\š“[8ŚÓ+ qµāAŪ4‹Øö-XŠG$”AüŁ"9=Ė+W[b37qé¹ŗĶń@oœ‰Ü%~!½ģŽY„¼¬xńÆOŽ}| sąÄFÅĻvótžł~•į;l>7OĢNļ ŖŽ ½ ź”ŁižłzoŁÄŽæGĆĮ†7‹ļ¶ż^ē0瀮ń9! ŠC3’¦iŖU2MŖc€XźēĶÖ7‰Ē{:@Rš„ś½V­ÆXvN€Üķ¾tFŻķÄ©Ģ9 @€> Ņ9æ|=&„ 4 ,kūžmT…ķ½± ’ŗO~Źiތü—#GŪeĪČ|IxžĮAĆß\2ó«”S†>ŜčŅ~Ut•Ķ×fq+Oˆv§vJ̊x’|ߚވsB¤5½ķ×£+ޚ79F:(?ŌlȳĢ9 @€¾ ’\źņŽōˆiäŗ(ßµž»¼r½«z;@~Ū–µO8¹Kü2mæŠ:-ŌTdĪō”Ń7 'B·+¾ Łęųa@ė~i"¦J<ųgHG¶ńĢ9 @€> é-B‡±:•“ŪźÄÕÆåĀę @Ū‚uµHß&†¤ķWR©6(j˜s@€H7­¾HēOœßóZ­*“Dœ‘œ.d¤ĪŸ‘”n©Ļš3%xV†ĮuĢ; @䊖ø¾%½CrīKģśäłœ[œøßpĒ ˜w@€Če“¶X%5 Ē,õŁēĘG»ń!›Ā¼VZļpĻCę ĄU )ū„“iū…kꌇ¾O­yā‚Ō1šm:“ĄĶ!Ž £Vk‹=ZB·9½¶Żń€÷åö ”Ƥ”Č000` ĄÕ I»Å#ž+=źf$ĶOó^­)õ[ļ_±ÓįÓ«5>ÜWh‹eŚZ„YÜŅdu‘ē^é5öĪ>WSäųŽōyĻ[/ō'@\¢.ōŲg;/2×XWŲqėŅŲ -Į õŠCvpč÷ŠĒCŹl>‹®“żJZ”Qz6™Å.NÖ“żŗSš„]’<Åр|ļŗWÜņŸƱi ė™w@€«x3µ®ČömÓČüČ®ĪOøå&6Šæ$Ō‹?’Ł·\%4ˆ‡=Vś”ŪĶ]—¼Gü„-FNEī戭HlŽØ ¬÷ø/³Ļw[āZŖ*pzs²Ī+ž‘ׯey`Ä=܀ąĻžCk`pĆsV]ÅĒ cŌ»4Óćēf¤5’¹ēC?Ūe¤6 '„ļk Åżī0ąĮ‘Üsū#·ŽÓį÷5ąĘ›ļų‹ō ę ĄUāž3† (WŸ ’ Ÿµ^µS¢ē„u"ŚjµŗŠ£łOŒCö ”Åś½ā±Ó×īĖ?“IŸ²i¢Ņd s ąpļŠ)όšµ%ŠfnĀŅČrÅw¶ŁŚS¢VÄwµāµ*`»“ķ©·ć#®Öś ×*·†¤Żāįö„ī“Ÿ’¶eÅÕ‡ ŽÅ|øŹ ųæ·k ­>‘ž2/ī–¶X雄bfŅā aė¢Ģb—&ĻŹ Ų„*ōnœ•ē±ŪBŸšX/éķ‘Žłčņ y“Uk[€ f>\ Ž6=ÜŌmjŠDŌHSuČVńƒŌ¶i‹’Öö¦Ņ[NĒÉ©äŻĀ1æ<×&ßužåį;>‘V&āė?¦4ÉO_ūglĶ’žŪƒ‡ßós ąōō„gī .߉ÆŠŖ°łŹg­j»<=-Ūv^ģ ÷Ź2×eA…&„Ņ–,#M•ŹH]©6 , µ™Ÿć³V½-¾Īś`ÆH[(“>œ¹pš¤šlń’}bČėŹĶĮķg@„ŒÄÅqµÖßūēū֘F®‰éźÖ,›¹‰K„Õ’Ž»žWhõ^iµó¦ūoŗ‘¹p­ž60šŠH cMŅD·6*¦Zń}LJ„ßoČŖWZωȕVD¤•ĒEayŅńފŲń yÄ‘ypķȍĆ,õ^¼ĀvŲ|žqNPx­R•u\ł˜ž°0EYąō7ćĄķŗ‰”y‘±5æKO“V\|s­Ź™7@€×ØĮĻNzĘX½&R:䯣_śżóżŖ:ˆ0;ut‹Vlµõ·ŗĶnoœoDŚ6W«ų1y·pür£#p‹ż‡»l¾(š®Ÿī–bxÆįMĢ @€kõ0ŗiØÜ+W]ŚŁ_ž£+mæ˜3?efJf–ŅAōč*›oŗŠ¶ˆ9[cżmČ6ŗ³ņ\÷Y„'- *±żärĀ#yp<¾^īĪ×Ļ„7E¤ė{#Ėm¾²É _­ČŒ_&O×/0֕k’ ŽĢ @€k˜ēr«M-½ó’łoļ‹TĶü%°ÄłŪ¹Įė-S¢r&Ge„É4åšöŠ\høKC€ č# pζ\[„ų¶7ć#y·āˆz“āSeż»³ņ<ķ²£Wɓ嚮ž €aŠ7ä¶øZį§ŽŒI|õĮÉQ õ]4'@ōÅdx[lx°WĀ£ElMm>óĪHņńÓȵї @€k;@n©{|ūUL•õwŃUĀ)ūĪˆ²Ą«ńrāćt€˜ €®I·?|Ė ¤ŻĀ±žŒČrūøķÓļ•’ź½Ś§*d›Żæ&El '@ōæ;ćėzī HbƒÕƚ"·7‚¶:œ¾ā×w]Ą®ń”—g$‘p-zIxiøóüKw‹‡»;>’Å£Į[mžé·Žž-ķf‡÷¤…”9}`¬k @ōc¶éÓÄV »ū•Տ³ņ\šMó"¢+Åļķ²ć—_I| €ś€÷ 0|fҳCćj…Ÿ»3@Ņ[„Öą­Ö’–i7†z¬tƕik•œfāi4Ņi®å¢šāæŗ#>¢+å?i6[jžæhJŌźŲ+ @4ÄtČ`Õa_w¬‚„ļ°żÜu¹f‹L[§ģŽjžčÄčCŽhąŸ'4t×V¬ŲjÅAc]a(@€ =P¾]ų슷aķZCʬ?wYā»ĆX»$ž @€?˜6ELØSüŲ«)MņÖøZł/ņ“ČFšjÕȌ$ @_1Ģlč ČāēŻiū…SnĖ}wŚ/ˆYe¢[-ÓÖ š;—…–y-Żsö#¾ŽźØļ:Ē7Ęh¶éŗcū q[$,īŽ+xżó½ėĢb—'©‹ƒŗ+>ž ĪĢ @€>Ā"zŖ»W°ķŖU]äśFw<:H€ čć—=ń˜~ÆüÄ„Æzˆ­Ź^»§Å-I–i+5= @€>ĘpįĶQā—— R|ōŌŖ}˜¶PÜ)7]i ŻZL#7Dōt|œ d @_b­7Jo¹šAóč*ń{•ŗ-Żq½ī%ˆ s ±I³ˆ¼ŠAō¤ŻĀŃIį9ń½ @€>Źs™s”mWöó#Öōv| €ś „ņóHL•ųƒ‘f‡– @€+6E7I.½ēŃU€ųÖüńA€čƒ,¢¦x¤Ÿ'@“Åī-tÓł*}“š«’:±ć¹į)ūäæˆ¾I81=a^:@€ŻĪŲsŒqj³ü¬—Š-S¢– Šķģ2Ģē&ļu܆„Łģņ·ŽŽ†E€č^Q¼ųbÄNÅ:ˆ~ÆpĀ4bmtļHŠ+ó p׀“…Š·Ī} Šc•¦ä” ­W pEF¹…©69ż­c€„nw<ŠfqĖ’m³Ćט®‹œ6g\pIp·ˆ% _xnfš»ķ¼øœō–ß$øŌłŻö8Rf¤®8ż@”‰®(Ō~~Ä€.;@Lt;“ŚĶnoH·`IāæĮ·¦³P˜±!r|HQ(@€— RČ45Ŗ2§„kyͳÓĪ 2ķš(™¶VŁ}’źĘ\čG"™™:gĪō„äłFšķŚŽ0%zeœŻüØÜߤW©'„-L&@ತ+ Ā׆”Ł,ėp–“bb¬ŪŚo† €[®j•ā쐵2M…¦ćĒ'†Æ4֕ p궁Į­mnļJŪ_ž=.&̦ĪHĪNo’¾Iąv“"b¤©R pŚ3S£ü^qĶÓve”o±vŒj‡vŒz—ĘH»S{±Ń ÓUØeŚ:儊EIWŗ ‹ŠW¶XYĶö=ū/ü “£rc½W«¶IWļĘT‰ß'ķ–’šŠ ų9®Öś`p©Óū¾ėŌŪ¬R³ę\L<Œ Śd¤Ł”5ŅT«.÷µt @Ÿ †Ÿ5ž;Sš„ś½ĀÆĪKC6L_¤3Ćs“v G;¾†žŲØųŁfnüņI«āʅ¬‰¾PDŒ Žj¤YyśóL‚¶_ŹŖ ĻHC€„>%;t»āK—„”L#WĒŹ“[ƒ¤3‹[‘č“8b][œ”«6z5¶ÅÉńÓ!Ņ"¶Jļ‚D–Ū’[˜·\&­rtFź²Ąö·AŒ4UźK[Isg®ō±‘iK‚¤-S’‹UŠVėĻ'„J7YÓā–%ł®Uī)sžGp©ó»ém!’¼W<Ŗ+vzg|HnL÷æ„N€čžÆö!Īóū£¹~ĻÉSU#Ż Ī{‹•t¶#ŗŹęėöż^ńøn‹Ū›¶óār¦Ę®Š;ū<Čvć°¼)ѹq‚žųŪĄąŗ6×weˆy¢Ż…AČHŸRęōAä.»Ļ„Õ)F¤ūå»ļ±ĖŽ_>!lSų™Ł”³ŌgĶnߊE€ ĄY†^D€“›¶6:¦ŹśŪއÕ%ńµÖķ²cWžįą¹¶!@¦©U^Č0ĖT rökč^¹ŽÕš"ƽü+½ru[üóżŖ”½‡Æ›‘4/½ż@»ĻšYÖsbW¼ę9'zгćFß?ĀbÄł :łię @? éü†±¶Z}„Ź'†…¹/×„ī“ŸJi’·Zřł3Īpö ˆ¶J-»Ģ‡Ļ^)©WŽ \•P/JŪ/“N3ueœąā·`i«ÕSbr¦Ę.K2RļŌvö9N‹"Ö¹.Ż ˜“øÄ*5|•ūŠY;“…_F9¾ö<ć @€ 3’²fĒT‰ßK+qµĀ”Yy¾ÕcƒKƒ:~ŽbNņbM‘ė›ž«tųņ|j|Ö(wxÆöŖ6ögŹ8 Ą%BŸ½6ĘqQäšIŁé3SędŹ“¼vŽÉ®_¶~•q @€K ĖõøIĄĘ€z%@ž™aÉ8 @ÆČŠÉΌ3ōJ€ŒPdĻ200ø± @€W\ÖiŪävĘ€z<@Fū–źī~lōCŒ5ōx€Č4uŹ^^b¬ ĒDņ˜Ģwc @€½ O›†Ī`¬ Wdˆy‚=c @€½ Ćå™>×1ސž ķ.­]vģŠŃŽ™Qmr ć @€€é”ŁRźų~Z³Šź8Ļ»ä¾ē¦q¤»¤!@¦­UŹ45*—„!ź?‹oO 1nøõ†Ū nd¼ W Fšj•}vt®Ż¼ˆ5ѕ¶_EWŚ|•Ž"¶†–‰Œ=GgŒ [dbXQØn‹ĖßS›å­±56ßf¼!¶JÄĆ#ķFa| ŪÄ.;.§=::Rę+Ŗ[8‹į ĆŪ‡Luģjk•‘ŗB-ķč*@ÜW„lģ,@\ΜĻų ĄY|så»|ÖxÕHĒŪ£B:Hnž°05t›Ó‡ńuāĻź"}+‚ '†oŒč6Y‰K¢«læ87>¢*…oŒÜGÉŽČ ĄļÜY„4 æxīvX±Ī&+aY[x¼ŸŚ,œŠŲåš©uVü2U”{sz‹ŠSmóĶݼ()>äés“w‹‡;[żHß/“&4ȏ=5žń‡cųēry™ts•ōVGĒ€ˆŲe’Ļé K“„Ų£ŽźŗĢæ,¾NńS\­õÓāgg&6ŠG:‹ß“ˆ­^9VE¬‚ Ąo^ģœ_( ¶HĪŹŒ­¶ł6”A<œ“G8:9ryBĒķV^¹ŹmŅ*ˆ15Šļõ{Äcē 6!„ā7?|óõŒ3œłCo`pżóg)2¦'.NqXØŪ(…†r£ó›Ÿ›'.JMŽ£ųåBŃё®HüŪ“cČ8 Ąo:^Ćk¢Ū©µĪJ\f¤®TŸ{ć•bNņā”}‰‹ )d¼WŹ· IÓt3cĶ|ē[Ķ5Ռ³4¼ĻšĘ€r >õ—² ŅńLˆōoéĮB»ĢéŒ;ä‚ÜWč6_V€t¼G<&&™Å».“Źv™o•é½RŲą8×"‹¹@€œefjjvŚ~”õJ#¤}E¤Ērł:ę r—„ałWēŠļŽæīõ=ńa;ĻåĀ*Ę€A?™¶V©Śä¹'£„ēnæ’ ĻŒ5ócÜōó1 , Mi’ŸźÉėwćk…_°znć@€ ßƀŌ)#vŚ’»§ßń_'ģp׀ė{@€0čēg@D­īÉó’”}ĀIóS;Ę śy€x®šUžŽŅ³+ ’°ķā§w?sĒmŒ? @€~ B7†) ¼ŅšÅ“=!m‘ć²Ąrć Č ņōŌł)M‰žŒÄńg/£W˜@€ż:@Īšßą[ÓÓ[±Ōb£į ^EŠļdBhahBā§ž “żĀ)y¼™?󠟈dfjężńXOFHT¹ųÅ&O b.ōó‘xÆVmėé­Xīˬr™ @€ż#@Ī “"ÖE뛄_{2@“›»™ @€Čé[±Ō…ž{č…i g¤g§ļ賑iŖUį;>é‰ųHoZż× UĢ @䬱¤ks»#8¶‰’Š­ĘÕ ‡ä‰f!ÆŁ|˜¹@€üĘHS­ Żīšqw¬zx,µZo8ČšŽ”SŸz9@€tž8įʰ¤Fńš•HņńŲdķSĘ rޱT=÷vĒ*ˆz£øĒš>Ćė™@€Čy”k#Ėķ>»ņŠ…o ž…9@€œ—ĶÜÄ„Wz Ż}‰|〹0m½2lĒ•HwʶLgü aKPb£päJÄq®E&〹(ž«4%—)ūÄ–ŃS<@€ČE1 Ü”ó[?«*}æpÉāŸ'T5ń@€\ŚY¶©–^7æŲųˆ®“żBµAxŪpį Œ? @ä’Č“uJDžѹ±5Öß](>Ņö ­ u›^°ĶVŻóōøG@€Če1 ڦóY£ŚžPÆ8tŽóMāqĒ…Æ9+# nb —"en9A…Qv_œo%d²v† ×1€+&ÓUhüó}źRš„ćC:/ā¶Ų2×p0g@ ŻŖ!`züü“Ō}ņß$”^~ä5ū‘£{@€0čb”wģ¹9sHŻaaŌźÄ†3gC¼räł\Į @€€éQÓė½WZ›`Äø @zÜ£Æ{ČsHÆČÓ¦!ÓsHÆČŠÉ.Œ9¤Wä9«ŁŽüæ@€€éó${Ę€ŅK[°’sHÆČ0 ½c@€€é„IńbĢ ½ C¦Ēq€Ņ;ņŌ¤`sĘ€Ņćńńš×fÕż#,†0ꐐ—VųßłČ+ƒsżŲ0 ½SoČ«ž…:ĆŪŻĶ˜ @z<@^°_¤½į¶ncĢ ĻŪ, xĪj¶oOyzrøÆĮ͌9$ą‘ׯ @€ @€€B€ @€€ @Š )Ī @€€ @@€ @€€ @@€ @€€ŗ;@F»\ßĶcųc€¼`»ÄøåŻ]ž5‹ńæóįWdŒąŅŻžš"°@€= £gmSß÷Ü“§_čń.Ļō100øń @€ #e„ś‘Ńn“[čёij•Ļ[Ļ300ų c @€= #Żņ o»ū!Ÿ @ēb™źŅ]2Źw«öž§Ē=Ęø @șÕ=dŒ+ōJ€<<Ź… @€Ž ”ę‰N×1¶Šćņ¢C޲-@nfl GDŗ†÷©‰vŒ+ōx€¼`³(ĄĄĄąĘ€z<@†˜':3¦Šó¢mxd“›1c @€½²ņø‰’¤Ó’3q ōt€ ²4w>ōҐ'Ę©¼ļzōµ±R‰0ĘŠķņšwqą=O™¼ų¬YŒ×«›Ō}Įź5Ę€z$@Fˆóü oæēīē¬2‚Fŗåėžļń1S_87@\»'@ęĪųĄˆG^rXü¼õ|®ć @€ §&Yßz÷#÷½hæ,š™)‘ömr=ć @€= Æy«ŪāC)ÓÖ+iĒu¼Šs"yŁyMˆ‘ŖJõŠH‡qŒ-ōh€HFŗoPß7|Ęk7Ż>ˆ3 Šż2ʧDóōä0’¶Æ2ĢBÆųĀė· zāł'Ę©#næ÷™/õ×p×£Æ1€ m»Ržõ+3ĆŪī¾õ¦;ßuĻÓ榎qߐæ\ꯔ-`žb. ēõ˜ĢĒ}Øy¢ö—ć~ĶyŖ!c @€= Ņ£ƒ2MR2ĢBtÓ÷ŽÉ˜ @łß; źūGXXÜȘ Ąy$ĶķrĆCZłxĶ«H;ŌØ×9œõNƒą*=jUŠæÅG]ēųĪ-ė̽ø-t?C€ @* é—Üeé׬{zĻ\¢Ł|łŗeźīn‹øøŖ4śMƒĶ-½ńnĮ{#aŻ.^r†ūL#ł;öų} R‘ĮĢĖä®äøöčŠX/Ø,ĆWkU6]÷lĄŗŸÕ»#Ayœ¾g~A”PT’±¶¾'z%’)O€ @*Ö·ömQ½¶µbc«÷Ŗ}²ÆNkzSĻö4Ž©öąĘ˜ Ęŗä©RŪĘǼ+O7 @€Håw‚l¼”T–‘Ø~}Ļü’®{6^«2é›MASēÄnÖ½ųdß³Ė m@€@Ģr|ī,š™#‘[€Ųśźņk×ä(J$Ń[‚€eoŽ<;Ż”%XĪbé}ø–<¼ …ų @ ęk¦G”SdģGē<³7ł :+ā¶vc0‰×!AwɖōEn_‘~ń艗ƒŁK ļqś/¼uźM5¬k¶A³&v½xżŻ””G‡Õm/™Aˆ¦Ķuń“®Ķæ+m”Ē'bÓ²–xs/ģ6Ķ”‘ܵ¶\O²/£½¼ī`ķ1-t)@R†Ÿ„Ķ!v!@ ±$mQóU’r¼É—·%eĢ»/Ų.bȾŸeĪø×īš,Ķ^š[uų§FG`®ŻÕXv(ŗjŖqž"±6†Õ|¶žØbŗŅ]郷ŖŠ7ED•¢µĆęŃ̓’O:L„č.WJīźōŅHoś­§<©];jāõ"\ƒžz‘ž¦¦}® .ˆˆ!Ź„ÅvĆzöŹŚ}5'„Ļén=m\TE1O撽8÷f›j÷ĢæOīSŔöšŖŻm»HHŖqöµ¦S„xŅ59÷F¤×ÜYlm®Ģ[įNŅ«›ĪtÕ^¾éµ£²£ņÄké…·%inEķ¾pńhÓ!z ĄŚĻ½ó5WjŽĀźƒ‘ŽĖŪj¶TR ·žm=ŃLEMW q ŠżPsÅŪ""†¢Œūŗ%[ÜæĮ€ką_¤„ŚNŻęÉZ“5Ü’cĶ⋽ó$:\ƒ¶cž\Å7t[_gWmÓq_vīŹ¤|ĆĀWYz p ³ö­įŪōžcæ]śŃEļSŐÖņSlƤˆBŹ‚ō5Ī4ĆQ%­hõS)³é@¢3Ķ( ],WĆĶ{l)Łó\>g²3­·SD¤:ŌY7ŚaUB$<-$¢kzkĶžĮ[»[’ņ'z €1jÉVƧłhgC°½§ĆˆØ†jĮ;²ø®’ Ü~Eó8³J²JL1ŐpOø+Ü„żZž'@£ČZRü°ŃķĖč’¤ˆ"ŖØSŹŽś®ÕźŹ]X#cŒ÷¢7Ł’Ʀ6xK$²ó+_ž’ä¦-$23mĮ¼Ę—[$)uŠgóŻļ~ż«eÕVl †° ZńC¾L=Xž–I—6/yFĖŁ†£Ž\wŖĆį˹°·į|kUŚ•7£ļ{ö’|į«m b–ēĖRež}:*C”¼åŖ"’Y2ēŽźwĻī*¹'»8}”)Ś•+kÄüŪ[t«¶QSō“‚ž ·Ļ]:čRŖŽ”µŲå± ¹Ŗöu„[ų*«˜ü‹€Ø-ČžF„Ó]Łņ·~¹uW­uŪ‚ItˆnSģѕl©Łń)+Ē1éķ({ęōK”¾ńŹ5•æ|÷s'¬Ż́@ Īwȓw¤?~ܑ1v¹źķ§.Z½-˜€_göš±ĖŅ×ŪzīčOæó=ė¶CX£‡nõfŒqu»rJ ļæ'‡\ź,ż_YQ¼"J7:/¦ĶŸu‹u[‚!,ˆŅ­Łė?bOʼ¹č%ŠŅ]ķĻ®=r²)B€@ByoNń#ī”Poņ\½µéHĮžÜę½söb9Ē©?’÷{­ÜF܅#›™ėēß×?ŹoŠ""3WĘr¼)=]g’lķ6"@`ł«3^ž$V&p|[Ć [,~#/“č0‚Ęę@įµowIÆÕۈŒ #’ŅČUĢ‚Żē_ļ©čė[“*Ż$œē§§lł‘ćQ}}۾мķ×G£Ā€“>3ö dD/?(ńA€Ą(Œ ¼ŹėyüõO=\J€@"k~§b{(dˆÓQNē¦ä÷&B ń !Œ¢T–ŽäĖ×{SK4{ĪEė¢=®„öĢ}ł£@DŽ?’}o²¢)Öq÷ļž’mĀDį…“’wéĮŸōĒ/i×ī’Ń"?ødgż>ńŪD3³īŸ™7ƒ ¢h:9^™ˆž×Ͻ{2Zƒ€Ø=_»óéČ8Šm۾ߢ'Bk ƒŻ/7ŒÓ»Č,Żōhb< B€@ Źdēćuec•šēÜöģ’»Ą0/ķ1Ęy¶0ŌįOO„>1łšc9‹Ē.įK[ū­$`ĻŚ¤Œ»Ģ{g}KÆõŪ‚€“†æżĮŠķc•‡üfŪ‡”-xÄÄ0µ1_R_öōƉŃō@ &÷¬Ė»i¬żI9…¹ą*¾Łįž±ör¾uś©O~å™ūēZ½%Xb’Ŗ~żķµc—1D‘ęŹŲ~Ŗ%”¢µé"„Rķlė+•2×Ē7¬ū7§Ēåws«no°µ²ķˆg^šü¹ē¼ó=Ž~Ź™]öõļ=G€@ĀŹ“Ś­Ė?ö¶Ó]łö&oŖMééžõŠNY£ø böž÷ĪX—T`%Źńg\žÉć-ż¼|œ€„äמłvŚĢ‰kŠ#l•vą.,ˆÉi[·ŗ;¶/Xyō[O[„%č@LīžŽĀG&ö·wX’õƒĒ’Ņb™–`bš`é‡wy¼;֐ڃ¢ī~āg; H0’O§f^Ū9ZküļożŲ ­ĮDmm?ęų0„’ĮBCTQL_¶g–5Zƒ€Ø]øŠŽČT¢.‰Ōīi:v4:ŻŖÖŁZ“^ōĆ’ĶÆZ¢5Ā€¤f}wFŽÕ,z°«ģÆzƒzłūgMŻ mĮm¼ƒ–†Ÿ2¢*ŁQæ÷WLJ•0„Ń÷?ģ3Ÿ’”mÜ?½Mi(;üœŃ5ā>Ė ü µõ‹6’*Mļc’æŖśłb a@Ō^:X’·ń/›ĻžųķčńAĪlĻśmydģ2†Y»ļčófß% 1¬ŃDi‰oå§\αJ„śN¼P³wģŪ[MĆ*]†° Jhxfs[ćčū{:ö=S»g¼§#LĆ*ķA€@”¶.üĒßxG]‡×”ŠmķćŸÅ:ĀDiŁēŻ9ھˆqęOUoEóŒŗ5"$@ Å†˜ 9Ćū§^l>Ż'$œ·¶ś‹Ū›yņµ™„ƒććĢėg^W#QŸ†!,H4’qDŽ\ūs¶u4Ōģ8÷Ž©źö™kĪļŅ¢č]ō@ ń©ØļB$tņg?ß)ā÷üä^§»ĒWø~ œĖ7«ź¶«sR•@iӉéfC -Ó'ćDėŁWåU‘tõē"ņŲÉ£• w¶T%ghŠH OWmWī¼ kĮ.Ö'æżĆҦ½)3Fö<)ÅHĪQuŠķ®µ€Ä”jōÓé³fo*Ś4öciK’ŅED:ŹÕAĻž‡„‘!,HĄšpm\śOŸXö‘ž' ĘZūŹ”® ›*³D\¦20‰H˜€S*O~õcZTk&ÖØŚŃV™Qāpe,r¤†/^Ž KÄ*ķĮƒ„„-’¼tktńaHÕvÅģØn8 ¢*™sö„"$˜[3K>åöFW¶³¾„JDÄQ$}žĄ=dZf)¢’dŌ•Q.ŬW#"†źĪńꚬ@€X§EˆŹėĶ_»Æjwte5§ˆˆjō6‰ˆ$e%å] >ė“Qj wŌFW2|i½«ž÷Ÿkź¬[&ŚYŗxÉ āžŃeĮKóš[D$dJtķR“ÄŠQŌ›īXq‡Ū=][ƒŪx *~ŪGžŚšptéŃtTD$¢y2EŽæ\±=«Ų›×{^D$u€(ŽŪļ˜ĘƟ"@ *O~ńęÆjQ•ŌĘr‘ō"WR(\½Kķm:¬eŠjŠ„¢šxĻ–9>uZ潐!,ˆJõ_Ā=Ÿ ikhå¶śŚū’ģh>jt‰ˆčMŖ)QŸct%³V<†ĘGvpwtń”(Ėo^±:Eßöą6^ˆŅ«{ÆZÉŖ«y’Oā£W;xąPT/Rl·Ž·rM<Ē=ˆžŻīŗ!9ńBųŹ‚&!ķš±żŪ£™HKŚ“„8M‹Äws %³··»×tūl—:ģn;ūJóń+a¢–Łó†E~ĢÉ]{#>'Ī ˆYĄ½õ£] eĻåÆ*ŗĖ®…śźv|m`Ż+]=v~ēF„ WŻ‘i‰į.,ˆŹ—¾ŸŗøśH‡©čö¬¹gµAļ4”Ū^0Ē’R”ėJ—'Ē4óĮ]Xēj^Ųž†1M1 ³ģˆ˜¦˜¦a˜¦ˆačĘž=Qć}ķ½ g9u«“Qłł5ö²’ļz₩[§E˜Åł·Ü;Ó.–š5 @`Ņ-Y²rCśĆcśf“JQWݶrqŅ„‡®x„-$f|86Üæ ß”[±nL^|Ųļśū¹ÉŖnĶŚ±L{š_µģćv€ @€@€ @×lś®…E€ @€ @€@€°:“L‹),† €©c£ ąZ(6qŒŗÓE€F±z]ђŃ÷śMė֜€kāP2ōĬ9s @€ @€  ,7č@€øįtÕp €źź'Ö’³ā)X“€©X«¶\?¦1"ĘƱ-}’_N/¶Vey„-\ææÉĶ}?U\½'Ų"zĪŖ‹ē$D0ŅEÕ)>D*Žh­œ±*}.=@ŒĪ¾ŻVŃ|ĘRaÉ/&ŸæpŇķ+ ` 0%ōH¤O·/xÆoˆAWõ¶ ÕĪŗ={9ˆ‰Mæ°Æī\żńXSXL3%cÖü{-‰üJ`jt5Ök<`śŠ€)’^˜Wš]J€bŌŻŅ^Ż^E€bŌ׎XÖvŽÄ(cAń=EwY§>L¢Ą”pœigßn>D“¢M‹Œ4·–ÓĤvŸfo8f„ 04W[ŁÆ­U'¦€Žn½:1Ókač@€Ąā.,øŽL„ä‘®Žj=Ü|bbgč³éźŠ3  [ę2»Sӂo~٦Oä ‡ĖėžÜÓJ€@ŠĀ{¾+FŚlÅ[|čšj(¦ˆˆ­«"N–|'@ą:pų³KkźŻ"½ "5M±ķL_żéĘ#§^ŒÆ:3‰×AŃ ?0ėęKqŗņÉ·Œ^֕¶ųŅę Žbw9’])ńVgz pŌī·¹ėŽö’ģĖN›ī¹š·ĖūLEWū“LEKöśēŽ“UbD.ž8ŗėĀ_æ鎷æč øŚĻ,•ŲtbĻ÷;źöĶ»?÷¦żĻvU‹Ü:’ļDTåŌkv =ŽčŠÜNo= L1Ū®¼õ#9?k‰=`sj6‘PW°­łpø÷ģėŖ1ōSYõɔ™ŪæOB€Ą$*¼=wåįēŽ’NzDDźՔiśHÓϊŁvV$Ų9}Ÿś @`JŪÖÓŲp¤?>DD“Qoī=ó'Ż~ӓF芧 H¦Ņć}ÆQŪYķ™řbDŌø™Kļn0A3üöQoĄ ;n»7-– ݦqšĄö7é@øŠ.£¾mPń˜±ż•Œ£)$ @€ @€`–2€I“볫bÄvLzń=łƒ?ם8ø—€„¢Ø›7ł#±5Ó&Ƀ?·'Mל1„“dłź¢ +׏€I13uŽ*ĒxK¹»Ä5ŽyĢiūÖ &¢ߕ9ā’\’Ü+/®ķ•ŽqOE€@"Yŗ¤({¤ķ†bDĀŻļņÓ¼É³āµŽL‚Ķ÷,{()ß¼źżPŖŁYŃS;š9Ņ+š-ĖW¬Ēį՘»°`x½kó×¶Ÿo;Żtŗ¹\ VNŃ;ŹEzŗņ7¶ķ©±Č“Ā"@`2("ŖffĪŚŌÕ|öÕÖŖ¾ęŃ ėŻ5oøó|EåńTE†°`’äņ¾ōe¾å³9+Ģ1^xīĪR ~Įķ#t@˜D€„Źaaįņ-ž‡å)ĪŃŹ/ŲrĖÓ-uvļ»HĢȕ˭š½Ø`ˆČą sÓi*"·'eÖķī:sśUÕeŲ㔊́Ąō@śŠ»[ź»ÓśZlތ¹NOOkjI_³ę.ÜÜvŗįziÕ,ŻĢ^Õ°W‰L÷: 0%=‘ģҬҶź†wkO*z$8s­/ßįé žz”zĒ Cū²ē²N¾¤˜"õŅŻ@€@ń䏖+ü@~vŻŽoö65žp„fĶÓCu'Ķī”„Źž_óOÅƾWĻUžx³±€bó޶G—ć/čŻŖ)¢š”‹Õ»F*cöœzћ³ć•³gĢé\G~Ķpż]< ÷]‰Qļ2¦„‰bŌķWĘ<ŗĻöŅo3§ł,“Ą“o(\w éhö’Œ‡G‘y[ō¾š}Ź gdīœŽ“RE€@āˆ!"1ŗš4­joķv½»łpÄīĻZžhRšĆQśHRīé?Žu|®źx`ń¶#ǧOeų#<“ ›źĖģØo,×»EDlįī '_0LUÉ[ć¹²ZÆ©D|WŸ!]–o^¾J™į!kļĻ£™~&]Gk{cw[G½ ·ōžŲŽxüŌkŗ)āJ*ż`ńĶ+b(Šiėqd8RŸĆo,æuÕmŹtČ-5?Ļļ™1ō«(&ægøī͟wGŖ×ҳ³Ż+Jf×žŻłŚĄ6ę@`=©œ™›3^ÉšŃ)E?ń¢ifÆrx5Yü³ļœz¹#Ķ7»óÜČÓ;u§{:Ōē\żņ†äł-)ō@`J(Ž>ž5āTĦŲSsł¾‚¤Ł» ·«C½¼˜É`{īŽ1-ź¢ĪŹ«l4ū聥ųĢĒĢ…ęˆwRŁ"i/o/7“”™F‹jŠˆhīįO¤O'¦!ÕC·0‰“ÄÆ,żÜŖ»Ģ1'ĮU½£āņPŁmŲķ©ńS?&Éņ¢@¾'CõE„qł €·ł_ģwRń1ˆŁY”ź$4ŸfĖSD$s±į°f ˜š+±ˆˆ7eʒk9¢L× 0)Öę:=ż?9}Ö¬!“"w9@Üi"¦b½ņLŠSU†©)""™Ėŗ›<3ŽżFX«†LŠŚ–¾.{²ˆˆ;©ä!S’Ņž2Ųl„2„“¢$Ķfų¤HŚlWŖµjH€Ą¤Xõ°kČ2ˆŠx ĄųܙƷų ĄUR}ŸziŽåOéZަį%’r ;øŖĖ±ī›_)’ęæ÷xōÉģ’«"föü-ą*Šøœ%śĪļ6ĪyhiÉ'Fzš#w¹ø­S_nć€ėČī,y’ģūlvۈkźŚ=ŠĶ:Æń£יĖemIöHź,ėŌ“€)c³gĶ'@»¦p“ų K¬ŒE€Ą²;ę?°łkEļ‰Ÿ÷ 0mŲ”ā»oł\ 8Žū!L9EyKuų @̜®9ćū-!Ü ^HĮzˆż¬¬"@ąĶKžgOÕćōJĢR&pƤĢ\śÕ¬śkÅ Šx“D”8]‹!,øĮ2J©c¦ IźģÅ[3Ęß-½Üų>ČÜeūf €˜iŹāGl~C•8zé-ӂ?gÕćy·Ł¼ ÖÉw„GŚāēūr/\Ż'~”õߐkŠ8‹ę¬‹õФ¤ÅS… ø.ZŗåĆŸ>ūDŃŗŲo«ŅŪć©Ę aĄ“įĢ$@ (ńō4ÓF`–.ˆż’¬ä” € šå € čn$@13„f?ˆYÄčj!@1kÆŠ;‡oSx`Ü9Oo'$@`Ś0xś¶L—ų‹ fmÕĶg @ĢźöŖz<}_–s€iĄ”ĘÕļĘ×w&@`ØŚ~ģ÷Ŗ_ߙ!,øįŗŪN¼ońA€Ąä\\ÕXž’kxWz氎üšąśófE_¶·ūü®ø I~Ķpcµœ6 €™Ņz.>æ97TcYåNs’£j»jĘēw'@ąŅśsńśŻ øŚ+mįqŠš>ĄÕśŚ3^æ;7Œ)ŗæßžµ°` lń¦^ž¤mU=5†ŽRY{(~’Ž'@`œ±š}š3„Ą¦Ŗ"bŹńWBķŅfˆˆ„‚GU_Ö?tĻĆ@ń;ųÓZĄ­DĀŁO}iŃ{<é§’P½Ū“)Ž5Ÿén:żb{Uōēy·ģooŃ€ŅQ.Vķ8źšGZ 6ˆģųFښś7¬ņ—;“č0¹—Y#ŅzłēH‡uāƒ€Ig*E—īÓę›I€Ęe {XŠŌ³Ö†ć~ €I¦˜ķ§DĢAO”«fÕėo¼×‹It˜ZŹņ÷՟{»ó‚ŲÓg%ēŗržF#@ć‰}é3³Vt\°%łŅ éGž×Œų®CX0”¾ę2›–Zœ¦ˆˆ¢Ä˜Ēžģųź#@QŃ;›*>U¼l €č"¤¾’æĮī`oū…ųÆ“č0ENæį/ä‹Ō«Ža @”Œž=?Zp;³rGo•4!@`źtžų­©(¦b‰Ź0SŠÅ Ž ŠoŚĪø @€ @€  @€ńGį} z  ŒĪbKPIDAT@€ @€  @€FÄrīz  @€Ąe’ £ÓGö_IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_7.png0000664000175000017500000003411414632072346023770 0ustar fabiofabio‰PNG  IHDR ™q*UüsBIT|dˆ pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī< IDATxœķŻwœ\w}ļ’Ļ÷LŸŻķ}WŅ®z³ŗdĖ’,WŁĀ6`0ŲÓB€„$@Bąž’nČȅ„\øĮ”:WÜ q—lõ޵ŚÕ®“½÷™z¾÷ŁF–U¶žŁŁ}=[Ś3g¾ßĻŃCz<ę=ߦ“Ö€ĖSJy—Ż’Ÿ_LɞId;Qżź_Id Ąh‰.ĄŌA"„SG€Q"€° €e Ʉ„ä ,CõöF0dä`“ ,CH&¬AG’#€° €e C„«ŠQ"€°  ‰hV”#É@X†Ą2€”QГЁQ#€°Œ=ŃŒ§ė¾ųqoę4×hŪ™wĒ?)‡×‹šFư9œ‰® ˜Ō¼YÓÓ²Ź×:•ō;<¾fæ·™”`NæØ“Č„Ž£TkZÅցģ¶Ö¦•UJŁßŁy*fQŁ—äLÉĪKt Ąh@Ą”PXŗmQaŁŁåg4­½9÷PÕń¾ōĪkf|Š–ęÆĶÉĢ­+IMļĖńguWdd+”:-õµU;īųų£¢œ żńų‹2”R^­u0ѵ#ASBcŻ-ūėdŸˆ9o1¹?ć`ÉĀŪļNĻ —¶ó™Ÿū}éŒī5nĻÆÓźŖ+¶77,¬Ö:{ŠŚŹßĖķ/’¼ł·–‰Č‰DÖŒ‹ŠĄ󎝬®Īt„¢Ž÷†÷Žž[˜?oéį-½śŃϊīMč ›Ć÷åT'²`4S’R{Ɍ-Ėsņ[fū³uöåīÕZäȞŵ4®;¦”‘š“Č]©ył‰®)F@Ą”£u\•=·ĪŸY³Ō—Ö3;0pńõŚŌbʵ˜¦–āé§®>7}+ńÜé™J)w¢ėF‚0„(Õļ4lżĪ¦ŗu»;ZĪŌLŸ}jYAiĻ"­Mo<&fw‡ļä@Ÿ­/VŃ"ńøcPŚīK‹¤/ZžČķGöŽń‚iŚL‘A»a¤G$#"n±‘7ļ–©²ŗo`“ `J1榬»éŃÆ¦¦›ŁńøŠFĮPĄŁŻtÖQyźČš—ē.ٳ”“¼kaS†Ķ¦Ž3[¤Æ{°-;oĻ©™ Nܔž58½½)c_õńÆöv/h²ņģ®”XJvy©@„ `JQFZd’¶[žŻķmĶ,(®^ęĻŽäõvūkĪV/Ų½påužĢ ‡Óxßg$ÓŌ:«5×ų¢RJDR4­w…iī“Ų1óA—„ŪōŗŅņ9I‰¦”x¬×ŁŪ蟣ŽÖ¼¢ŚPJЧ½¼¼“|ļŚ¼¢īUn·qŃSÓ C©Œlsž.Zńø–ÓĒēæ”µĶTēm¢„u\‰ˆ(e·éYī“ül„”KkÆ>€ń@SŠĶīhSŖĻ™•sŖØ§kUMż™[v†ŽSy¤ū…ė?šČ_§¤éŒ+µ K$0`ėīķžÓ¤Œs'„ĒćAūÜÅĻo4ĶøQTÖ±ääįłĻ“6^wl<žĆ“QlĻžµ”PDjĒ£}`¼° ˜r”r˜"įĪÖāVÓ †į4ĻM”Źڽ췁~Õ×ŪeoŅę„0ģNķŒ„\].OČ)"¢ĶØqĶ æśŅģE›g/j¾Õꊮīöü¶Š¹Ļ\[Vńā*­c—8hddģī“hjŽÜicŁ&`F@Ą”es.ÜZ·£umåĖO.ū–ˆ’œüCÓΐŪėė˘6³öÆ/ž© %"Z“)āĻVä-o½!Æąõ%noOÖ@_ń™®öu•#©Į^Č:$˜“”Rjžß·ö;ŪfŌģ{+åg­óN›fnšżˆ¶‹½ÓEĖzښĖöžūyäĖA\¾Ü„”]kq#€… `RRJ٦ÆūŅ-éE‹="2.§”÷÷ĪmķļŪzńWķ™ŁGKSR»2²ņŚ*zS[k«Vļ‰Ēņļ_ų>ņzķīT§ˆøEd`č"€€I'5o¶wÖĶß¼3wĪM9†Ż9.įćR“Ž©‚’ķsĖēæ13{°\”’s§¤wJÅüŚœmĶ™ĒŽüČóé{§õõ¬ę AL)0©dN_]¶ę3wf•Æõh1uFöīé©i-…u5·oY‹=.­S#JŁ®8OJ›Qcīā߯R1æå&Ć&Ęł#¦©E›¢<­­ĒD“źé¼ŖĪķ­Ķ°ŪĮĄ¼KŒ¤\±×w’$˜4 ~ ¼lõ§nI+Zdˆˆ¤¤Ļļl›ßŠŁ¶øĪøü¹ļćĻŲ^ž•W3×f9+Žż“\a·*­Ć¶%kžHIy÷Õź‚U”A ŲzƒžVŃZ„ųĪ”ed7GĀī`_O^ko÷ā†įUw~Ē„$HzJ))^ö±åÅ+ī¹Ę›Yf¾s=XŲ<ÜąqŽ–ī®Õ5]KĻ(Ćn*eæā‡ü¼‚Żł%ŻĖ. ""nr»=f¾H _D¤°¬o‰RJD‹ŌnÜup×¢’2͈”D‰Ö¦Ņ±†'&zŠ®µˆ2|ѱ8ø˜ ©)„ŒiWncž¢;8S2Ēd½‡7åDŽ`ŠŽėÜ@FÖĪ™=]N^x6£†2¦Ö¦RŹŠMõ‹kę ģqŗāyCØYLSĖ™SŁ[ī¼ķ9„öÕ’ėŅüį|Ćf:Óp¶9]ńTĆf:z]Ķ EūŗŪż­f<=ŠÓ}Uży•ŒÅ#–QZó—$'„”³āśÆŻž7S±Ķ1ņż.N‹h­“Ž+—§#%Ī ŠøŽķ£“ü©µÅe«ģN±Åc¶°Ė͈„TŠn‹¤»S”ŪéRŽĖµ‹I4°õ8Ż1æ6•ét‹ėb£'ēkm“×v“d8}rÓėZŪ“R©‘@{µ}߃÷? µŒĶs拐”ü%KÓēnž‡eĻܐŖ ŪØĀG<“†M»ŻMiNW[ŗĶō¤e“„ųz ¾öĄ@~}Kć’*„D²s–•”W- øśk*ów/\ŃøÉ“õ‰ˆHŖdŠ mĪ—Ż._z¶ĪS- 7ˆDĪޜXyŃŅ»bJ©CZkKĻĘS°@BåĢŚPRvõgļ³;}1‡7#bŲļłŠ:¦“6•aōøErƒJŹŌzf—ˆ­ćŹįlńłRŪü"}Žėöʓ¢<‰yšŃ‰„ŌąÉ#åO×V®>0cöŽ„%MKżŽÖĮ@Ą¹ż‰Ōšģ}²ėĢ®īD× Œ# įœŽĢˆĆ›9’Z<“„„×g¹Ü^§»?EDń˜3ģM9ęņÓ|iŪóCƒŽž”Ō¾‚ģ¼ž…J™F<¦ÅåI®7f\ĢXLĒz]'.²³}e­at¹2s[ęö~3֓U½«žŪǟŪö0_c2H®”`J(*{åŖyKŽ}ŌéŽū „Ž=Pk¹`3¬ž·UøśžJ—§c…ÕõŽT8$ƒv,ūUsŻ’*Ćę‰+eh›­%eś¬ķ«żéY¹+ŪėāÆlbĻS„L0”˜fؘ1ēÄ-žķ»š Ė--w8ci™9É>ƒ2xņpŃ|݃ģī̜źü¢²S‹2r:gyS"9ž*"2Чƒ'¶7ż*Üfń9& Hø¬ü£e3ęWÆ:“ć#†/zźČā§—­Ż÷y»CŁ]ŪXÓZKÕ±¢—Kf“-MĻl(UrRD‰¼’¤v_šį]ūį’Ÿør]sĀmįhŹĘÜä;$ĢœÖāŌ“`?ėd‘ˆČ`0½O©äŽĶźb"a3ŽŅąØ.­h]™-µŁ”6uŃšńŽęŚč«„L&Œ€€Órźš†ķµÕo(eÓ""=„”AHI•ŌDW7–œ.ĆVP«Ī{f/s|ā“?ŗ3üąŸ=õåńŖ °Ūš€„Ź™?-ćžæ[µ%5ÓįļīšW<¼žÕh¤`Ą›r&3ÆčäĢŌōŽÜü’ö•ƙ–čZ„·SšOģ ~÷±æyī_] 0Zp7žłõf,ŹüLJŗQ‘–Ÿ ¤4ķŽśį_j3{PDdöĀĒnšµ°a³JžĪG,’оW‚’ßćūÜ] 00”|ń×w=[±ČŲč7zī\ń`[ӂ³¾“³Yk®õK¾4ķær “×į7£?ųõŸ=łµD׌k@Ą„pćŸ_wŪĀu¹W0ĶØII5żk®ßłgńŲÓfS†a›ŗ£ļ2ŸŻōŲ LYE¾•iYŗ"%M2ß¹fJNƒšń¶’™Ž;>ö½Ū’ĘUąā3’yĄ„šš×ŸżÖS’rbÉŃķ±Ÿōu«ęD×3ј¦Ć®½ŽTū ‰'ŗ`äX&œ?ś»~>g¹ń™Dבh‘ˆDzŚUM_§yģĢ‘ī’|ķĮ7_ ·…]0Ģ#Š+Ļe[w÷šķ³–ę|ęrōMG·…~ņüc[æŅ³£ē܅Nl=ĄX €€ cé]Kf|įG·’gF®Ģ™ŹŃc Oz«öE~ÜQ|öŻšLLĮĀŻ’ōÆ,Xėł{ÆO¦ģƒļ8}Ä|é'Ÿ|üęD׌”€„så¹Rf.s}*‡žÕX{L=ŁX£v…fC¢ėĘ # `Bøåk7nZpmĘw Źda¢k±B((žÕ4Š««;źC[*w×’ēßhJt]Ąx#€€ cĶ'ƞ¾ųŗ¢ļxS²Œ\sa_·4j­„ Ģ˜čŚĘZ]„ŽśļžĢĘpk˜Mu1„@Ą„ć_旱é`ŗÄ¤oõ]«WĢ^‘ńs–»nHt]cÉ4µ>ø%ņŻ’śźÓßLt-€• `Ā[pŪ¼²;¾<’­Ģš•gnźhRU‰®e,L›ćšµä¦ņ?Nt@"@@rŠbF#ęäX/”DÜ^cz¢Ė’Bø-?¶½ūūńØ9)ĪͰ;%ÅUą²%ŗĄj4"ƒęéž^é2ćÉæˆµt–\æxƂ‰®°$×~üśŽļŻūlł”·¢’‹éX¢ė e(™½ŗųK‹3\‰®°$•p[øļ±ļ¼ų•öFu<ѵŒ†Ö¢ķĆʉ®°瀀¤3oķ¼…™¹ńłZ’ŒŪņj-rlGō—żĻ>éˆp:¦H:†ŻŃ“å±īŪ ŹÓ7§ųe…ÓåZ·WR]×PõuIsĶĮŽļ>0q!HzłäGL“ʼn®cØZźäč©=}’bwŁR÷’ó»ž½Ōø;Ńu ‡ijQJIo‡jģi×ū:£§^łõžhÜ׊“茀ńÄ"tŌīżį_:Ūvk¢ė.ĆPŅß#ķż=śŒÓ£K””œŽ4ß cŅc$­[æ~ćG׎éŠåQI¹•mõaóŁ’{’ć·»ņ\Žpk8ščz+0’Vė™ž½ż=Ŗ)ŃuŒ„6µūŌ›""„L%“ö=ŗ§¦·]%ŗŽ‘člQ§žö3?Mt€Õ imś«›nČ-UW'ŗŽ‘pyuVnYnz¢ė¬FIiń‹Š–ݐń‹TæĪMt-#‘š®ü7~vł÷]`5H:Īl§mć½³ŸÉČÕ%‰®e¤ƒ:šÖ£Ēæ‘č:«@@҉tDāńøM39wóŒĒĬÜ} ®ņl}¢k¬Ę6¼ )eĪLõ­æēŚ»Ėęū>•["K]nń&ŗ¦”ˆ„tčō‘ųSæłŸ/Üj ™‰®°$-W®ĖXyūŅ[7}¶ųq—{āŸŅŻ. ;Ÿkæ÷•½¾5ѵ‰BIĒ•ė²ŻśÅė?5c±ļ ¹Åz‰Ż”l‰®éJ"a‰l{ŖēÓĻż’/ż6ѵ‰Ät2ņ3ż‹Ö§|·pŗ,O†š!"ŅÓ.U/=šĘC‰®H4H:-‡›;ƒ}ʙD×1i™2}ŁmKÖŗņ\~Ŗ0žģ‰.`$zću"ƲD×1TnÆxļųrék«ļ(®tåŗ‡ŪĀńD×$# )=÷毟:[)[“i9k4,ƒĮ>©‘¤˜6ŒHJõ»ėśŖöużX'ю:ķ ²ŪU÷‡ŪĀ‘D×$ $­üéė C©D×q1­röĢ yõüĆKgĖś%7ĢųŪ–$$­öŗ—Ć! &ŗŽ i­åρo?š•§7ß æWuŠˆt4§šŖū~“蜀D"€€¤õÜ?ż÷ÓŪžģž²Ÿ8³°“éėR­ĮžčÉpk8śĖ/=ńĒ/żŖīŚźĆńNķųŽ«’ēµż‰®H$vĮI-<­?· $ń3±"a Żśæ[Ś÷†=ķļ\ßž«'Dä¶–LŒ€€¤öęć;^k¬Q;Ńwo§j:¹7ö¤ij‰ĒM½’Õą·žė«Ļ|åüšą½ ©…›ĆńŽöųn+ś ōK϶g¾¶óÅĮoß’ف×ūžč×’ć¹»›j] UjėÓ’ū„¶¢ ™1 $5’æ|ę/o^%2žė@jÅ~ā[/üą=’QdĆÆūTžŒōOGŗ".\J¢­³Žēś?]æį¦Oę¾lwØqżb5Ō”ŸóĄ¼Ó[«kdz`²c Hj³Väżéx‡§[Üī]ų}W®‹ĻOĄ(š$-W®Ė™](k¬čKJ²‹‹EÄmEĄdEIK›: ©žqļGkimćĒŽźż‹p[xĀ|$”€¤„ģŹ VŸwµ©ŚłĢS«"푁ńī ˜ģI+»03ƛ¦‹Ē»ŸŠ€j%|cƒ’Vćžę¶źџŽ÷¦ž½ń£ćŪ0u@@RÓ"Q„ʱ}-ŅŻ2xxüz¦HZ®—Q8ĆyūxµßŪ©ŪO49} ž‰ńź˜jX„’–kŻ\ł}j¦c†7ERĘ“m­„rßąoŸžŃ+_ 5†Ģ±l˜Ź8 $½5Ÿ\=oĆŻ„OgJÅX¶kšZŪūéC’šĀ7•CõD€Ń#€€IaÓ_Ż“īŖ ž_dJłX¶kšZū„·ÆKÕī|¦žOöž÷ž]įę0A!˜4>žż[¶ō:ß§ Ūų¬sFt¼ń“l;{¼’ĮxÄģxž{/==ż“L®\Wöß>y{Ē«<棏Ö"U£ÆžņƟßi„Ƴ/`²a,0™tÜż÷ę³røÆ[ŚĘ«“HX*’Jų†]°Ą¤n ›"ņU‘«ļ_µéŽ?)yĪī0Ęü W­µ„cŻcŻ.00&¹7/(ŚxOéĻĒ+| ōH[su[ĶX· LŒ€€I§©źĢ€©ēJO§4»=ās{%u¬Śn­ÓU?śü3ĖĀmįž±j˜J“NoĶ@ļKæØ¹fĖĆĶ7·ÖÉαj73õö§ļ'|#Ē˜”ö>ŗÆVDdŻēמejfį3™¹Rvžėń˜©{»U³Ķ®¾TÉ“ŁÅv„6•RŹį±Łh 0± /˜ō6žÉµŸ¹įŽü»<Ź J £YŽī©ńė;ŸŚ{@Dō¦/^ÆĒēȶ9$gžjל.q]Ŗ­¶]żĆĻ<}U¤=°š€Iƒ0éĶZ‘ū!­•YuP?V½æėÆüŪ«;å.yąŻ[~*"ā*pißżĄÜĀĘZ·W{MS‹””(C‰Č¹ó?¢éW†bū]`„“†ŗNŁõė:vįõk?·vz<OŪžė‡®Ō†_ŠüE„3W”ŽŚRŪµ?§$cfZ¶{Nž4ēmõ•Į'ß|t’’i>ŠÄ¼Ą@†ĄæĘ/=;z]ō ,Ć6¼,C`Ė@X†Ą2–!€° €e ,C`Ė@X†Ą2–!€° €e ,C`Ė@X†Ą2–!€° €e ,C`Ė@X†Ą2–!€° €e ,C`Ė@X†Ą2–!€° €e ,C`Ė@X†Ą2–!€° €e ,C`Ė@X†Ą2–!€° €e ,C`Ė@X†Ą2–!€° €e ,C°Čģē|čļoūKg–ÓžčZ€DQZėD×0©ŲÓģŹpi¢%;£Ø(5ƶ;¹×²ā?ŠŹõŹĘÓj[oGüdWääćc īš½IDATóģ?'ŗ^ĄJ€1tó×n¼'3ß³¼ā*×':›å@^©^=Š#ĶyŖĢåV®óļ=¶+öŪ_|į‰{U+ ’Œ‡ßaū‹_}šoņĖd®ˆˆ?[nQāK—Ō‹ŻļMµWl˜›QżĘ‰nk+‡€1ąŹuŁf®XX“hcÉ—mt|cHoŅ"­ źxėŁč į7ž’īós™@Ā10JŽ ‡ós’rĒóN·‘ģõ õ}ZD2óĢŁ-M³×U¹2ʱD`Ā €Œ‚Ćļ°Żż­ŪžuŚ\µŃīc8ÆźkR÷V_żņ@ß¼fm¾Ē2 ƒ0ö»qӗnøćSßæż‹;ģ5¬ć ĢøÖg«ÆŚ2Š7æy¼j&"Ą0ä.(Īėļˆ~ü;›æ7ó*ē‡RŅdŲS§BƒjąčžÅæķīXzvĶI†0±¾X¼õĢą+¦9śSœ ›R³Ö|0%„:{,j’ `ˆžśžļæ_u@Éiåv‡”ÆŽr—ĶÖé‹ö€dA¢hO4žā»’Ø­A‹ör ‚s—^óÄ}Jõ;}¹³Ņ*6~åÉҼ±h˜Ø”ż("Ą”ņ±ļŽžæę_ķž²×'icŃ^G‹»z÷–ĶæŒÅŠū»ėlŻuūź»Næµ£³fGÓX“L$Œ€ —2ÄéÖŽ±j.;?T±į¶ß}ӓR•ķÉ(.ž`ałĘÆŽ=릿žH֌«KĘbē-`¢ € ƒRJ|ö™v»ÓóŌ¼>ķ[¼ņõˆ""Q¬`Ńł7üå]³nžęĒrē\? ‚É€)Xưék·Ü³ī®“Ÿ;ŻāóʵȉC„OUūŠk¾īo·÷Ōķmķ©ß’VĖŃēėƼoĄ"Œ€ CwėĄ‘XL"ćŅøÉ/nYŖuģ}C®ŌœXŽüMYi… ŽK߀E ưó7o9ųśą7CA ŒGūižP‰ĖÕt™ÅķL_Ar#€ ÓļžīٟŁł¼“Ö2VÓŚ ›”RÓ[2Ǥ1`"€Œ@żÉ®—ć¦)½ŻŽ¦Æ­üń±}%OE»J‰xRśŅ/}# Hn€Pbh­EĒ"FؽåźJÓLЦÓ}>ČĢn®ƒ iL·˜*v?µ}Ū²›>øÅīvūD”4Ō®8ŅםżƒXĢŸ·d÷꜂ąÜ‘l›kšZ릾ä laŠ$ĒĄDŗ"ŗ³9ŗc0čé‰Å²ƒ]+Īōõ,©ßńŚ'žćȞņGõFC“Ö:8×u¹×GQ6p€ŠÅL_ÕŃ5o^x])o¬öԭۚėż{‡Ūf ĻŁĢé› ‰‡0WßĶāōߊH¤¬ēbÆ+e×½Żu=¶–”“gšZZ|Gö¼yÓZūĆc[-0q°`˜œYNņŽGĻĪyßčĒłĪVÆŚ×Óéī·ōŌęŌōxŽa¼wMHƽŻn„˜¦­9QžBMåM»”į0/ß;S°Ü ĆtĆgožxŖ_Š·.;y¹ū"į‚ž¶ęœƒ­Ļ]wØ xĒœŁ‹ŽmögE‹EDżńpmå“7jWˆÅS"¢Ó"j(sSX‚$Ē,€!RJI֌5%Óg}2vuŠN\ł=vm.³µiĆńŖ£³oʵDĀf,4z»ņc±‚ŃiWl˜,Oz{śµ_¼Ž?młœ¼’—¹½ń“Ü¢×ö÷̬ –u„¢i‹ ›’HĄŽWydŃ£]KĪw§^@ģ —””’‚E·Ļyć××ūK—;S|Õéno,Żf3ŌŖ G>W[ŁńņŃ}eĻ„­XL›gŅöī}óćæU†'6‚cB€¤Gø„ōĀ…©ærSö¬ėJ)Y1Ń降łƒ[/Mg(„$;Æs¾×W³=80£óJķ՜XśFoy»2<±‘WÅ’k@. ”R%+>¾|śś/}ŖšŖ¾>DD¤§«øeĖ‹›~ŌŁę©Iˈ•Y0”vūz5iI‰ŽWŻ@2`ą<Ł3×eĪŗł››²+ÖåŁŻiļ Į@E‡‘#»#-_÷Ś{¼±Ģ`mVŪ2ĘĮ3²Y]/lS’RŹpū‹².¼^¼ģnßPŪčķžŁ^{rĒ_Z cÕĘ×¾bʶ„Nž÷x}ķūǶŚóh“$5˜ŖŒ¢%ł@ö¬ ™Jž°•įpĒE䒋Ä#NG £f0Ü×Ņģ:Ūxä±7 “÷ośÓī^ukź,?voż±¦Ź–šģcļ.{ŚŌ¹_޹fj­E‹˜ēęUéóƛņĪÅ?\Ó"ŚŌ”Žę3c’GX‡¦$­uĢ—SžˆŪ_xo֌k\¾īńžŹ öˆņ½g*V÷™]]•æ’Ēßh­ßR ®Ź&§tĶ‡Ķ˜jÜūĢ?Ī–2«Æ£ėDēɾąx? Lė˜ĄT–U~MnéŖū?’VøąŻµ±fuÆĻį8%"•ēæäŹsŁ–ßŗl©h oūÕöĆoŸ5"į¶0g† ipĄe”®¼oUńŠ{ÖĢ^üśZe(©>ń­Ś 7čo{|ā»š~mj9}I-›-7TVƞ>p¶ö†/oŲüę#;^ ·…#ćöŒĄe¼½=ļĖvwzŚ.żé·ŁÜ1‘ƳÓåu.sŗ”ėĀ÷xStZ~QØĀ›RŸāĻz8ėŲž»Ÿķķ^Vg ᓐĮ «Ok„D¼©’īM•…"J<^ńˆ¼wc¬²9Ęś/’dUÖb“ÖVĢ‘ ¦l»)\Ö:~歟¾0ŲŁ`šfŌPŖŻŪÖ“öÄÖoūī`@õ_ģ=īåĪ/‰MOó÷Ūl}®Œ¬éūKÆŌ×ÉC7o‰„$4”ŗNew8m†a(=ēź’Æ÷¹€D € At°'&ŚŌJā†Ć9ąQ Ģź8~pŽć±Ųū§Uƹъ3•åo™fF(1uWū¬¦+õ£lJś­Ć©Ķī0ŌĢ„i7ŗr]Ž+ß $`”į‰ySR²r÷•‰ˆ4ž¹ń@cmö[—ŗÖ¢S7ϘżÜ5ńxQ·Ķī»āŽX†J‰ÕU•nėlsžN]9zśGæ¹é»ž5žį¼ °`˜”ŠŁfĪßńa­Ć6‘³Õ vĒ¢ßnן)Y°¼śīŁ ß¼^DÄfėōøŻÕYZĒ.yŅy]ͦ]ū·mųM<6ōŻu CIŠß>+XäuLh€aźī\RwņКßiS‹ˆ–ž®«źjs/9 ""’™Ó=×ć­Ķ\°ü™­æķéæ)™žĘāKŻ« »ŽÅRC¦©†œ@‚z`Ļ µ_tE8c`zŗ–u{:RŽŹl‘¶ę’“¦yéĻž)©ńģŅo®ėķJm®­,|9æäĢR„­cŹ4ĆļŁ#+)īķėöŌ©–NÕ“ķ©īļ{lß©Q<` ĄE"Å}N·i7lµžęśµ'ŖŽ?©3žMSėņy­løÓķ d¹=”승æ_'"R:ćõ%ׯöÓ’a]ī?¼CIowJC_­=‘h_tĖŪmŸßG,¢£µ‡Ćæśż’~å„ńzN`,q:Ą(„ÜKļūÅē}y³ß÷į)=óĶY½]מŅfŌX½ń—œ[œ«.³#Ņ‘—Ÿśą’²;”„Ce=©é'ņs OĶ®>~ŪV„ģļ¶Æµ© £×évwūB![ōŗĶO~CĈŌU½éö„Ss‹Ś–Ÿ9.[ū­§ļ·…‡¾`H Ą\.€œOė°mŽ’'n9æõĘKŻÓŁź>½ķ•/üė° Š›ĖÓź ęö†Ėяķu;ÜW·ó?·«- ˜‚0†”rÅ+lz©«ĶuÉõ±˜1¤ƒßŪ°3•ōž ""JtLK¤æcXg†‰FcfÜŽöŹ}?>S•µ%“÷Mr:c©ZĒG½]n$ŠetÖlkm;€• ć@ėŌČįŻ÷żnēkW’(0`ėŗšu%£?®#ŌÓŠ õŒŗ!ĄB€1f·×§k5D”t¶Æ¬9“cõƒż½Ŗ{ ĻÖÕ×m“…=¢ŒQ/Ä tœ®ÓZ³ųI…EčC0ŌE藒‘µkzwgY›’”HŖ’x±?³/£·;§-#»¾¬”v́X,;8Ü6ū[NĮĪŚĘ¶SՍū;”µ¤6ĄJ€!mł-ó®zčöŠłm7˜¦„”śŒ®Ą€»¹¾fęö¦ŗėŽœwVξiģžĮ`IÆŗÄØ‰ öÓfOŻŽŹŚ·~ŗUk=üEī€Eģ‰.`*q8źügŌŪŻį:›–.1 1|éf¦/=˜™žyø,3§uZxŠÓōö‡Cžą¼„ī2 ±\ķm͇:[‹Ļŗ<>‡3ģ³×׎°Ļ°»ĢŌ‚yāĖ›='%§|zĪĢõO“WmiOō³C°P4ZÖsh÷ż›ń.÷śMæłjJZ,ĒīP6ĆPāöhߌ9-ļž¢µČ;śŅ‚™9§gōÖvTŸ(}Ķ—õÕV]µW)›6ca#“™±ˆ!¢B”¾–H¢žø¦` ĮŲMĮśӌ"ƒö¼Āće„啫•aŚBGæĆ)öT_YZF¤Č0Ž{¦ŗÖZZŅ÷teÖx}¬īö“¦×Q÷ĮŽŚS”žÖp°³¶)X˜ČHĆpš"ĪH{˚Ŗö–5U翦u\eēķ^Z^¹Ņ›Ģs¹£i¢D¹=±ĢŒœž™™¹ż³œ.q;]Ēö>²UkMŌsĆA˜€”²éζU5m«jDD“5“hq8:=J)e³‡Ógļ[”;ō’U÷®‘­ .@P†ĆT"Ņtų`st°§YDäō[²S‹ĆŠń¶ßEŅ €$‘hØ·žō’öZ¢ėFŠ“ŠX†Ą2–!€° €e ,C`Ė@X†D”(•č€Ń €° €e ,C`Ė@X†Ą2–!€° €e ÉD©DWŒ €e ,C`Ė@X†Ą2–!€° €e ÉDq:’€e ,C`Ė@X†Ą2–!€° €e ,C`Ė@X†Ą2–!€$%J%ŗ`4 ,C`Ė@X†Ą2–!€° €e ,C`@2QJ%ŗ`4 ,C`Ė@X†Ą2–!€° €e ,C`@RQ*Ń£A`Ė@X†Ą2–!€° €e ,C`Ė@X†Ą2–!€° €e ID)„]0–!€° €e ,C`Ė@X†Ą2–!€$NBG’#€° €e ,C`Ė@X†Ą2–!€° €e IE©DWŒ€e ,C`Ė@X†Ą2–!€° €e ,C`Ė@X†Ą2–!€$„”Jt Ąh@X†Ą2–!€°Ģ’$š[ØĻ@-üIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-9_dim.png0000664000175000017500000001155414632072346024703 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ*,ĢsøżIDATxŚķŻw˜\u½ĄįߔŻ$[²›Ķfӛ!½ś% ^P[¤yUĖ#ö{{”<`A+*z%"¢(J³PIH$HŅŁd“ŻlĶö6sī&HIb6B˜ ļū03̜ē|Ÿg?ó›sęL, ‡V¬šœ Š;’½ēXńŌ’{ÆŖø]€€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ @_ČĢĀo.žŠū¦¶ė^Ū’½{ų#.ŗe̱³ß;wĖÅ×’Ū7īŁĀō°Ś~½9{Žč÷·Ŗ“ßī¤Ņ©G{c~Iķ¦[6<ŅP=xjĪŲę5ÉDĶ_·U‡Z KR’|袓>““{Ø6`s]즉ćGN4j`<Õ3pŌČSm_{ć‚6M1äM]«žXuĒVD&­łęO˦&śæ(Æø’€C{–l”ėĆśX’)£R…EŸ®kśOēĘbóNK75ÖFŻ!Č@Ö¤$ēū' õjnHŌž!„Ų=’éßåö¢ŲĻCO¤ŁłoźĪ’c£īŠBh !ź6€ģµūbŠæ»żŚ¹K¾²}­7üō* !<ŅųõÆ~zĪĆßhÜi§Š‹€„B}××¾xżģźuv ½ H!Ü·}õwŅ!„tĘĪ`ßöņEĀŸŽŠTY2£³,Ż4}ŃČńv’İć×ßīųģ…9§ (jŻÕӕ›Ÿ×ĻŽ`Ÿyļ¬é^ylٌėJ§Öf®ųį©K»¾0dtŻ_Fœ8i¾Ą^2=œxÖØÓę͘tT!“Ö¾gŃĒBÅźDŚ]Z:ė‹~½ €½¤(vŽŪĪ;kŅ;’Ļ­E&0ń„ŅQ,āĄ>rŃw޾ ß‹ŽqÄBIķ`?OŽ_\ŁRŪX›S˜7ąP¾på’ł÷Ųż}xRß~r҃o¹¹`šŽīμō‹"/“˜@Ÿ!„ū6¬¾ü„wµ6oųÓ?ŽøĆN`/+üć¶ŪŹ>7xfĮėBGū–¦mżgdäF7½¾ī#×ę½2/ģBķ‡E@ź»ĀĻæ¹$õ]!|šŽäłÆĢ ū  oŪĒ!Žśt}W!ÜzgŻf; €}®@^Ŗ_AnŌŲ2whNŽĄ’\’WŌ°iä 믒įƒūHI’[ßP’Ų‡ē~źguĶ/²ŪCߒW^0ń”ß_żšŽ·ŽŗxƋrś˜Kļ.ł„qģ„3’‰¢Įö!„pé5įšŠSūņc㹩œ—¬@N¼|ÄÄDģøæņ›ā,,€¾§”+|aĻææą ś'ĪJ ¢³£œ…Š·=oņŃ'ßŠÆĄ.ą@<·™Fæ’PęĆGX‡I@Ž=’u§D”¹łeHĆ=ŹGX‡I@žō›¦źĘ¶ÜŌæódķmuŪjėjžń_ik €ĆŲsĒ@¶“|pQ÷“·|/ŗ:sr{æ<čźÜ¾ģĻW–ģ?嘳£ ŸĢ-L¶g’ÅĆśēŚĶ‡q@BųŃŅós:vmZ[µ~ĘQåćChj.<ąc"==\žéx÷ ƒ’±īØŚ¾äźhÕĶ/œ=ėŠÉs‹Š3QOOŹwŚ#»?ĀZ8ėü“Kś›?hźœ“Ž5xl»ź2Żś$QųėõKn(;ŗpp,$cÉX, <õmÓF–å謸ėņŖŽ•xŃ7NāÅ%©éį„qĒ—@6+īwŽÅēĢzéķ±(Ģ(}’ķcē$Skué¢łóŽśó”G„ĀęÕ„Ć ČSg¢µ}ėŌw}Śmž#'Qˆ¢ß|½nż¤wüāĆżŗ7֔&ŽrĀ„ć$ó:»ZóKó ;ŪrRMUmu„Ӟ½÷'§­6€,V’WŽļɆߚ !Ŗ]ń…č¢TAõŸė3ayłüoܛHļ\ž—ĖNžÜģČ×l­ųvCĒ’^Öo`!ģŖ_ń‹¦e=M7=šŁ_?ž•Źķ!„P›ŪųĘąļWo­ß՘zĻEĆō/Ÿ|zžtó¦ &-ŗ±ģ¼™=ł–ł·ßWßm\Ł£¾#tģu²/ó†|jÕĄ²ż?iĖ®WTÜuÓć!¼ļĀŁyŻōG±õß²:„‹…TŌ¹—,<ē‚āĪ2±(ėžōĪŃĒÄcėļśé¢'šBųČ¢®*(ś·Ÿ>Óø²]rßwĶ>å…æ“žŽ±BˆĀžs“¢p’×üöźBI’/} óĢņ;ƽ¤6½ū¾(tīļ…ćQč ażo[7?žˆ3.žūØ£ŽwŹgŠĖė· Ÿ’©ÜxŻž5 Łi?+’Āk7䌞XĆS#ßXXšLmZ7r\NNĆĪ%yÉ=iŖŪ¾üė ė»c%ÓźģHʞČ?eĆfM}÷ĪÉ²ĮQ,µT•M¾ó‚ßÜ !}trüĢŖµĖļNn]|sɀ|tśÅk.˜¹ź—“ĻrŚs1”»uŻšī¦TüšxŗźŃ™ņīTæO×>9żķ–™|śGZśž=«śŌ ä«‘ųo|üĻ«Ć'?ó†Ks{nM‡_Ÿž³»/8mŅ·Ŗ–żųā;ōżŅČī’ 7æ;Ōl+*Lęä-²üŖKæ`@}pņ|õ™šēByLb÷7G¢°å”Źū’šŠŃ“gŸYńĄß®žož9ÕÓøž÷…Óēœ[æ„„rąŠ¶–dbę‡Ļ¾mń#Fā½ypIōó·O‰B&ZuÓ­'ėŅ £Žūś‹†8rĖ3GæÓ^½źēÉœŠ9łmĻv5 ›łék ¤4ńÖ[§9°(„śķ+®X¼<„5Ļl[ӝŖ\÷·Ÿ}oĮ–¾<›Sæ­~óÉ¹Åk˜ÖZŪ\uÄYļžaHŁč€Ž L¼é„K.uL&ڹnĆĶ×]^ßB­éŅS}­īśUkk^¾žµÖÆhšS˜ŸšŌÕ4śčgŸ:śčĖKŌw@¶9€³°Ž7ļø “Œ7T-ūź?6~ĶÓ»’׏“”»Ŗ—/ø³°ž©šue“ŚŪ3ÉTæl©œ¶°­jŻāū®^RkX}& „ńLa]³zŠČz2Ū·\yŌśūĻųæH ÉA3[kXXń÷as»jĒ“ŒķŚńčeW^m\Ł#¹ļx¼’āĖĪ8n󬜒źMķ5+Æøå¾†]{ī=ņ™†]-ÆXÓŗėWÄó›Ÿ÷ŽĒ~9tVCE,Y6|ĀyA@śB@Īłųü+Ÿ^šhėjŗķüÖGŚZ’RūĆēŻ»rė+½aQwåśQķł£¶,÷†Ø=B|ĢģgW@Ö$ŽUV6ļ’ Ó+ūć¹+jĪ:ūö?u“•ņŸ}Š¢œTŊŃG¶×l|0§»p\W{Ģ”t€ģ ȂÉ?ųŃŠ9Ļ®}āšęoß¾¬³+„pŻõ!„PyČ·¬«½ŗ'ŚpGN¦qUbXĶć’ķ³ėŒ krüw£ōŅKjÖŽ²ōIJĪWõKNmż†_õKu¶ļXõčŚaŪ«"ÓȾ€LӎŒ÷ūÓgåu4t‡pSģįĪWs³¶%—ž®jK”‰%C&Ź„Z »ÄCįĖם}’w’øuWGsCw!tFÆźścXśˆŁ! !ź‰ü*@vdÜģ3Ę'Ēw>ÓUYße²åc¢x4yŌÜćŒ {%[+Ź’óŗ³[k:³ģCnzʼÉUOm2"€, Hu]Xœ›VœžrڐÅÕM†āټq#3dž ½6”äŲSb¦…²üż}23ebGKģ”ȗ@¤w¤ēĶ+š{K»ad“xöob^÷Œņ“Ī›8ʰ¤—bŃ؜£yB,n`٢ϜćT’>r^ĮšĮwŌøØ €HļäöL/;žÜÉc @@z)F'ē-8ź?|”šźės_Ó+NĻ›‰ĀCF`ŅK©tnžĮ€€€€ €€€€ €€€€ €€€€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ v€€ †’‡ž%›ć™ŌŽnĪK€€ģ³·ż`ļw¼uј\}ˆ¢Š²÷{˜@  €€ ‡W@zŗŒ@@Bķ–Č<¤÷ÖÆjL€€ōZcŻĪ ½…ź iõ¤÷_Sė0€€Ä¤­¦ŅHä lŖĖté½§7Tw €€ōZŌ]»ÅPä lYŻ’c,Ņk•ՍĘ ½ejŸq./€€—4ƒŅPļ’&r¢°s½KšČAXé’&rPköŚmF ””!Š€€ōŅ” SfÄ|ˆÕ²š„Ł#FĢ9­$³æGō¤Š½ų¶tk“«hBY÷FÜ Łļ‘Ų’cŚR=/Y9­{dé_ą5»‘?ūķ’*!ōļź%8ĢeÕ1XjŚ™có @@z—ÄÉo›P“·“Æś—<.ø¼ @V9ä–c©¹Gļ½ZÆ/ŸXßėĮó‰o-ŸÖٲsUQ¬`dĖĪš¼ĆåQ̇WƉ€„¼)Gwīć¾}œ{U¹¤«©¦"gOš{QÕćOܚ܌dČ“E;ž¾u‰Aj}āšS;×>yūńŸ8ņC™XKmĆę† ’¼§`Hń؁ćŒąµ°9H±D,BGĶņļ>’#««Ū®j®6FهØõÆE=‰čŧėĘ£fæ” ūŽw?Ö5wU½ųžęJƐ”yŪ’{ŒąU~co €€€€ €€€€ €€€€ €€€€ €€€€ €€€€ €€€€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ īž!H-KWßŪĶIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_0_dim.png0000664000175000017500000001564214632072346024617 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ%ōä@·3IDATxŚķŻy|›õ}Ąńļó<ŗ}Ėg|qģÄq'$$„ŒŅ–@Z6ŽRz°^“““ŻFŪm”­;Śʎ¶£°A»r”BéhZHBÉr6ä¾Ē÷)Ÿ’lIžg8Ī!ۊ•`[Ÿ7Æ8¶ōüńEĪGæē§GRL¦æ’¢ėnq„&wŒ­Ū÷ģ`’ĄÄ©Œ@@@@  €€€€€€@@@@@@   Ln¢÷ÅĻ~źq¦`āėė×^“ž¢ģŻōä˜@@€ »2×YŽzßkø'Č4€©ĢĀ0µ¼Z_}OƒRÜßzœYˆBaRõ†rż…Ÿ1 `Ŗć¦ ·ĖķŹRS^żļĪ&¦°&šõKĻ/Øoš7}nÓÖ‹Ü]µņļžd.+`¬xŲ¾łŲǾYżĆniŹ(^ņčżE >®ńō`Œķó,{(¤[,Š«©i×·<ž®ēl=0€€ćp„+b³ˆd¦\’Šū¾Ņ²+!Ū0oæń§ū˜ @@€ ńū¬NE)¼BD¤ģz! ĘÖŻŁŗ/£ŗžŌ¦Oģ™~Å]¶ņ“Üö­Ģ Ą8چS,ƽņż½"R/{žś-_śÉ6ęLm¼ S@łµ‹ī2ķĶ~·SDÄ­¦¹œÉL`Œ’04Ņ“—Üõ½½ńöŸģ¾õ«Ļ¤VŹ/˜ Ą ‡ÆĆI“ŗSÓCԊļ½öō³=L`ŒėńGŪJoM,“%äåkVėüßšż'˜ @@€qu…åqy¹`@Lé©oŲźkļk Ī·Z~Sj¹#µ»)%OUFŸ¤Ņ€÷ųĖĶ;US„“WĪ”Ē_1ED53Ź‹Ög–k"bJ_{ć&O£·K ņZs€€‘žo÷įĪć®Ō¬Š„ŒÖŽć”.üpžÕ°’ŻŽž–§æ“MüXŠ™¦On¤ŪjņvŒ@TŲ—Ä{õŠqÅīhyyÜą]üżĆŹŽžŽ×Oµš’`‚)ĻńĒīh%“xŸ¬°ŚčcØ÷H((¢‰Ć®IjīŸQ™p)š2^L{kŅÆ{äĘĮŁėµN»ūąk§~YrÓ%bŠˆ""‰īüE o1%€€ē™ó…ŸQEUDIJē)GAGmŲß²ÆpMf¾ˆHÖBąnµŪ0²=ĶŁłĆN›“[s䧆ØĮü噧æē.ƾćŌ–&¦Ä{ ˜Ęžæ?üOæ¾öK#ł{Žv0B%ļ7•ʝĒ6ł{ED45ÅāOØ Ģ ĄšŹĀ22Ė*ߗ>kä;-Ū÷>ejFż/TC Ÿ|C±ü˚5o죅ł]ā…©ē.PµŃßÉØ2‡ÆūŠLE$)ĖīłIȟVeh>Ī µŪڦī:Õyˆ™Ń`ÓVOčćßčųPåĶYgV ‡ÕixErj²:›zę2BWBQMĒö ½Į{]šč«Ē:2µŌŖ&3āĎM½ĆżīŸ­›sČk(JJBrZŃŁ·ķļtę,Yėk=žzųL(¼–#Gkßjė‘·™'@@7fÕ¤^ķó%',4qēÕ÷––  xN†¼MŪS$lÉ©,\}įū„MOŻČ×KÓ^ņÄ!Gf^eX4 čĶ{¶=ķ²:t‘°mõĆ6Ēšö¹)¦©Žz;ÅĻŃ×zk‡æ6å ’Ųa¦Ä”7’”§£źV—qą©ē™V°~ćšwÕŠžx²ēÆ-Īu"ĖļŻūloķšC^W™Ża«‹)oųó?i®¬xżĘįˆˆˆ”ęÕ$„ōņõ£×¦ 6n=ńŖßÖŽŻø·„Ńbmė2łø)€š®Ŗ[ W©JX CQ†ü­F@SEĀĮÖ] öœØßÕīaļ €ˆˆ¼»Ņ0•’u¹Wé”Į¾Ż’øŅŗRrū[µÓ«“ ³«¶­ƒy8‡”}0)óķĒBCޤ@»HÆE|#— ›āéģdJäŻuĒšD5OżJÕńö’¤Ļ¦HrPÄPź:O“ģkécZ.@3ĪžóŃSżõ•+–!Ė’mė:Ā|LŠģĀ—~whŸXœš€i8Ēč—ėŠōYz|ƒ¶ŁUŗi³zGx¹.@@€ńųl[×½.aÓĢŪŪā+HmdŪ @$£/ˆMfäצ)ŅÜ."^¦ ¢³Oa-vå|ņż šNõyMƒéˆģ¬€8Ā%VIĻ^7ß‚8V˜²ųĆł1Óąż^hsķa¹öęłvāÄ›č˜¦²\ >\l ;RKEDLńµŽ™uķM.ęÄ9ÅVóįR—ˆHv©Õ2öżcŻc鬊ė鵇ĻҬ„Õ=ācÄY>¬ėo™“Ŗˆˆ©äÆPDDļ}iĖo"ßcVڜ%¶ÓłšŪ¶yė%Æ„ZsšYĄ$š Ó/–µŖĢ~®»,{‘ˆˆEKJióE¾f³©ń[ŗ+øjngaRH兼+ÄU>“«7ĢĖłĖ?!ĆÓ<üUZi…3ņ½š;×U‘N=¬ˆ$†Jlä ˆÆ|Ø+Ɵ_؝9õŌ°½m‡nˆˆ4żv[_äūÕT—h†H‘iį“@@‡łP®¼nAłčØfóéwŠĶZ{]iÄū9gÆĶį½K€cÓ(Ė®]Pi=ē*ŽPČ0Et}ė'_?yįūf^±$CVAœęC®X½ØŚ~ŽE€É†2O$Ģ.=q„,»rĶņTC3ŗŖš  ŚßJv1=,¹²f¹ėאk ŗįL2ō@wzą?¼)"¢ŲÄ%’k÷ŹKŹWœ÷4iČź …C]ŠbKĖNéh9fU‚C݇Oö2g€€`†Y¼“fUāøoArÄ’śE[qUĘģ ·"Š4’ĆŚ™„EXm÷·½>o``ßQŃMCD±•åמā3Ó‚jįšk’'š—|Ąr¤^—EŚy·5•>9øk÷n3Ą4‚øQ]µx}Ś×³oH,ÜóäŁ;!ķdWOĆ`÷¾Ģˆ%6Ń1ÅUĶ©Y7Ń|( …klö=öŗ3ÉźŌ,}-Ż~„¶ö­W8IęʒšėŻ^&ŌŲķ"Ėó–+¢ˆ)” æ÷×o}™9—b «(XōĮ̉Ÿeµ®yX+"¢ˆĶ–šuĶ—2x”ń„tւ³£ø:cöś¤ŒóækO5Xg—æZ˜¢Š2—lĢąSIČ)[›»<Ā“$iń“÷¢[ 4ĆfźŚøŪßi³K×§ĻÕ"¬UɎDd¢@ģq SRɕÅV5qĶ_,ūĢxo1’X°čćY󓈷r:ļś,óā†&"†aź¦>v?tĖ’O;Ę>֒/øÓ˜({œĀĀŌåßņWbŒżĮO©¹Ž¤H?3„ᭁZkŠ? ^† Ä×Yūē¦mĮj„xŌm錳OwDD¾Ī(KńŹ0}eU¦dGśYķ‹ńånŽł Ą¾6HLiyGob>Ą„Å),LcžSC¾ó·Š[÷ļłŪg~Ž3Ä|V @z@”³WŗŁ~rÓm’ü łXgŖhjhT.”Ŗ®‘tō6ūŗöż°nóļu€€ ®9MC ŒĪÅ¢»Sgoū»Š™Ķ]Z°rų+æwßæ’Ēß“14€€ īŁœ«ÖßzT³į‡r¤§–Ŗeä}­ls7äÆŽDo=ōŪ{žŁÉĢˆH8čMœµäžŌ9ķ»;öūŗ‡:ꎘņĪ=""jŅā?ɚ;rŪŗÉ@@€‘¦ÅŌEŸµ(dHāŅ?ķkÜöŻ–F°ėؖXŗŹ•å®r8™@@€ HIN)ņw{©~"V³Æ^1;t0•šOēĢe:ĄŌ ˜ĢSŠŹ÷WÆ ų^QD9żJ]EQ² ×}įüWž·ģßü‰§¶33€€"¢X܎Ļ\鑗ņ‹W\čÖCžCO’ǃ'}Ģ Ąy¾xŪŅļ¦Dś©)žŗ’īŁż ĄhéÖæß—S9ömōpķ’žöÓ/72-ąņą­L0-ÜuGVåx·±høsļ—ļ­f\F䮘ŲC5ɽößļ}ž7 "7ēgƟčm5uī͟üĆē625ąRcSŽŚĢ;ßČ­Šī>”Š”gžülŸéqĖ­=ņ֜sĻö£[>żĆ7™ p©p SÜMĖ‹_Ü=³+n|õ[ßM³1C€€ .ĶĄnæŲūŚ]W<ų·o’ń"¦ĝÕ×N꾊,¹eóŸ}Ć­1K ÖŲĮVšš­Ć“?Ž)u›_¹÷W'™(Ą qbżÕī‚XG‘Ņ5ŪńÕÆ¹­Ģ ˆ i‹Ķp¬Ž•”¾ęŃæŁrk)SāĄ”7¾6b÷`/^±ōoX…±Ā¦“ ķÆ·]»ć™rä•C?|žånƒŁ¬@0£u…›bśŒIꎚ”ēŪłē_e¶ĮŒ6/-’ŗXSS jfĀĶc ˜ÉZ}ž#—䁯=ōƒļæéNeĀĮ Õ<ł³K±O—Y¼čžāÕg>6ĮĢstó„Śļ6 a+ ĄE /Bf®šŪ/ÕŪX&f¬ ­pĆ„:6§°‚lMYFÅ„:vĄ+:fØÜ*ķ’=F_ėę#oIąeŒ˜Ņ oWbz<óō?C=¾Ž?<Ę|‚źswüŃĘŲ„£Æ]dĻ?t½ÓÓuĢÓŅ­č¬?€ÉįĶ1e¹ßŁU8/VGÓå/ēÕÕ vŲĮ”Õ=øé.ßP8FĻq4y’GÉ@@'ļ~żQ‰Ń&ˆ"óļ»ēf ĉYĖ:»‚˜¼Ü6uÖõĻo\ŹL‚8°_Ņ“³3lŠĶńœĪ…·»n“fńµĻ0K VŲĮ“šÜę}Oųz'{”ģUw.f–+ÄĻŽ|ÕīIī…œüퟮg’+ę¼°óŪ“ŻżNČK·2I€€ īüēšON7­cŽAÜ µ7NīŠŲĢ ˆ;>³ö“}w^ āŃ«/¼x‡×7™#hģ1Ā…„˜V:Œźē,įÅ.æŲwyėL`‚ø“_žüŸÆÆ~ē'ĮĄÅÜŪSDQ,ė–*NEažĄÅć:LS_¼{įײ+£)ĄPŠnóœŲõ›Ū5‡jq$H Ēsō×u]Ģ ˆ3nū#æ(ßÄbŠæ·ķĄPש7Ō³ņ§ŒŻo6ä· ˆ3éÖÆ=[u³ŖŒEHł }°Ćžn˜©YŠˆ„́–ĘĶ »Ō ī~’īGę³¢Ē&:¦1O(õöū˜wF™""Cƒ]ļ“ģķiųTC3ĀŖXrędWzķCŌ“Ż—"bˆøu ˜<ŸX žøķ÷Ž7ēnosż6ŒžŽ†r“§„)„<Żyjó¾½L ˆ3%EׯāøčON7E‘­Ū÷ģ`’ĄÄń2^@x5/@@øÜ,y…)L @ŌVdĶg ¢¦ æĻ DżėĄn:@@€h„UGŽA<Dkī W’Yįrę JŽVo»ĻĆ€čš^X€“ģlŚ­\P`ĀZĆżļž)ŠĶDLHĻÆĪDϹØzäˁ†Ś>`BŹĖ®łzŪ6įŻxLŒjŖ\}\ģļ#€€€€¦.$Ĕ§h•åŹ8o”ėČPø  Ą9œ‹6¤†LeģDŲtąšįž5’ަ­Mۘ0u°‚i!13%?„ˆ9¬@€(µīxl ƒē;¢dKgĄx:Ē0­žń˜žĆ!oĄĖ«vDéų˦¢šŠ+`*<”c˜nČ@@@@ ˜ŁLEט@@€ØĶٰīŪ‰Ģ @”¬‹]ć„čĄ{„_>Lc~~čń3€ķĆ×  6Ń1-jpœ+>la¦ą¼~{­Ī:ę 2®^f×@@€³˜"'ǾEɐ¹œ9—{   €€€€@@@@  €€€€€€@@@@  Ą»ž AŒµÆ¦hTIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-8_dim.png0000664000175000017500000001024514632072346024676 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ ¢Sp6IDATxŚķŻypœwaĒįß»»ŗ%Ė^[¾ķƲć8„'€ B8’†“„™”BŽN; 3 “„ Ē … JŹ1)%“š“ĒŽ#G¶eY¶c[’u[·v÷ķ‰cc#i_Ū±%ėyųG+ķŠ]}güÉ»g‡éēŖw­š{bæa{ß½·N@ʟ@@@@@@@@@@@@@@il4=˜3=Ą‰ÉĢ“ܝŁßŗæ””ŃōRōqGėHŪŽO¶ˆķ Åw“¶ķoxś™xŌäR”±tėH[sóĒR“ž’Öżū¶8īzS-;·®wÜ Œ¤[4=ؓǼR“|ōģšĪGŸŚŒ Ekš7?ö°Ē<$ƒ™-ŪŲ×mTI éą¶_7ķō9€€$Ņ=śÓŽsœ:gț)īŚ.’XGŌøŽ”’Pvo;ąų@@’:¶:žć9žhļ5$€€$Ō¶l€©+3•®L*œ}Ŕƻ›‚€LaSöYX³Ī1€€‡Łēdk²å„ę.žŹS_ołÄgM ‰d2ugĶ^pńūęU @@Źåž¾¹cČH’X\b"I,©^łźyF„¢°ö]X’ö7]µŌPSMfŖ_Į…«ŽsļīßÖ¾ŗ76€#DG!éhł+?õ_+* „S/{÷G~če…rĒ!+/åsHb%%¼Ó\rYüŸW Ē”žŠ«?m0I,“^žĘWÕgK µīS[?s×y5f„J3«ßš‘»Ö®˜Ÿ2€€$“ņŅO7½’ļM ɏCRÕ«BˆBYĀE‹p:D§ė-¦n}bÉŚćætļž¶å‹KŅQ*•żŲꮃ†8ÕNŪ›)Ž Ę! #¹t”I'ætķ¢ŚEĻ}‡ŗ9\kH€sņ¾µ5/½ęī›ßž… Žqbæihą[—žvĒQßģė*ąŒ Č!×,»ü»«_wčTz«j£„æcd¬?ņt>śņ¹æŁi\€ÓiżĪ=_~ĖÓwāBčn»ēŚėžØń£¬¤¢üČ’•—„"Óœį ”yąsļxš†B<<ųĢm7ŻŽŻūĢ—:Z 0ÕM‰O$ģ(doL•żī;ūš’%„šĶ_­¹ųśĶs@@&Օ×>ÕŲyĮłļ½ķœ«Ü0uMŃnźü׿ÜŪ`I¬sųW× @@»}ż¦ÆĘ˜¢2SłŹżē Ÿ]Wi±ēĪå¶w†(ŹäņŽ]^lŃŌžoü÷æžź;Ė+‹9gīžą¾Ū1fR€ScŠæļ­’·ķgÅ&.3$ņ‚ƽ’o÷mĪMśĪVQØōĘīrX÷šæöüņ}퓾·UՑ `ę$„–¶Ķæxęg„s¢ŖBčÜÜžPéXTҶ%!āÉnÖҵ]æf©f`@BŲ“ł”;÷>4ēģC§Kņ›nooč+āŽ¬†o=ŗĒĄ/–ōg¦ōÕ»nWIŲŅ’|!ŒtūöēscéT¾j’ū§¢hįŚ/6ÜÕ2ŠSĢek²—ßōĪoĢO™ąä‹¦Ć§ŽGх/?ļē>*_vÉ?ÖÕ„Š|†U!ŽųĶ/}ÄĖ fd@BaÅ¢óŽ“¢&ĻY™]Ń×?kV.,{ķČP¶®æcÖ$Ÿ’ļøā;÷™ąäš6wļģÜĻ훇ҩtåŁõo®Yā½ =-­cńdOéMG/}”N¶Ģō¹ŖńhtO߅żcqiżė^øčĀ8 =žĆŖlöšŃBé„!\ximi僧N¦)ž4Žß÷™šį֏ķ«čߢBŖ¢¶¬“fNėļŹŖū«ēLōi!µKŅ—Żol€“iŚ<rÄU.½ņŻõµ Ö®ŗ¢f^*Żō‹–†E«Ó•«/KOp™ĮĮÆ­¹ĻĖ N¢ių×x4Œ¤ņūĶē:wåĪŗģ5ŲŁ|g[ćÄz²×Ų3< ‡¤óßōČ× …ŠŖ—½·|ń†[»vŽށή>cČ”+?6Ōōč·¶Ü7Ų6澓²³ÅœR“ŚYg_Zuē¼äšg7Œ’jĮLi¶ŌŲr„gŸŲ_WæšüŚ5ó/’ĘĢ^ų‰/@@޼łĪgBˆĆPouŻųēŠBż[Æ»ĢÜr„÷÷E”,Z¼r¢se—¼ńŽ÷æŹąņ‚‘ž(„P»°¤lāóUgÆųßO~Āärč&ä:v÷tsĪŁ ³ēš@@Ż„ø<5+;Ń9š6 <÷UnŲäRōĶØŖiŻ>8ŠŗµūĄĪ»Mprd¦’Mˆ£²Yž<ģžÉ—o¬LF鮓Čóņ™Ź…żü`×-7v{',9ZiEjÜ[ŃÓ^Ūń£=ņ  •ć=’ ?¾ņ†ś’ėķ ĒJ{āšĄž®įą™W/‚3ąYX‹^š²#€€$•O/^7ŽĻ¢P›11Ą‹cś’ēGĒČkßxķ®Į®Ÿl44€€%]`œŸ…·};„=ĀZCČ1žżķüqßį*B˜æś{M‡æóųæ}õ;fBŪö܄7£¢ŗ¢śš©Ź9F8Ī€'0•Wz€€‡ģņȎ’Üģzć°żē}­†ÄĘśö>lH9ĆŽm@@ŽG×®nSHb£ŻŻ4č(@@’>°ćŽŽŻŻ=½&Dž]æķ¾t®v®I$”Ņ|Õ<ƒHbm›ž;7fRIzSāŽ¦(mRIløgßcż| »ń§}یp2œQł垾£jaö¬ń~ž’ł]ŻCFpr¬ŃĒæŃ{`¼VŌ®š,-łĆ ƒ{÷%U—59€€Œ£ww{Cgs.ģO2Ń[¾2§Äč'CęĢ»I=;’vŖzŽ‚ś7U-(Æ:źęVĶĶOõqä =Ż³ėϾzīŹĆ7‡­ßnņ :ĄIqF~œxŖŠC”§łŃ›ö¬?üż¾Ī{`r™ü@¤&•o¾?:]Y{łŸ™@@&•>ĀPŪž'n¼óŽ@¤X÷ŒŒ†BvŻÕ5jr)ŅXWūóĒ ‹ßrŃū꣌ŁN܌ųĒ“åĮł–UF”¦tŻkF2Ė[^ņؖݦp2©ž}{ !„źe%łź‘óĶ?ךR”ę†ūCØ]‘K‡BÕ"oū EÉ÷um ”¬¦ŗ.„–Ī9»ŽōR”] ö¤£K>4gU!Sž[vé¤(=-æ¾±åįź¹/’в«JėŹŖL ÅjøcߦҲ G p¢fĄÓx[rķĻ}•]ž’žė–/8ļüæŲ~³édcƒėõÜWQś’WÆśuYY®Š×az)Zœ†Cᣖ8A)@@€Sm¼$Quˆ8BłxÄų2”eŁk?¢‡8„‡8!ģķ ß3>€€LØ"WqĢ÷ŗ"Óœ €€€€ €€€€ €€€€ €€€€ €€€€ €€€€ €€€€ €€ €€ €€ €€ €€ €€ €€ āO€€ €€ €€ €€ €€ €€ L{™éx„GŅ=„GÆ"_–7'€€Lč¾’9öz_łÖUÕę ŃĒ~ļOccœJ@@@@8å¦åė@^ńś9Ł£æ—­2&€€L¢nžŖ¹¦8½Ü…€€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ ˆ?€€ €€ €€ œńžČCü‹.8JIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-4.5.png0000664000175000017500000000355414632072346024211 0ustar fabiofabio‰PNG  IHDR ™Fō„ĪsBITŪįOą pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<¼PLTE8’’’8888886g%8'UAs+J0L‚1I~/,[7h&[“9W7Y‘8T‹6UŒ6X8Z’9[“:]•:T‹6`š=\•:^—;]–;\”:bœ>f @i¤Aaš=f @`™bœ=eŸ?`™vō¶5I[XŽ1¾Ü8ĄŌ¤ŽāŹ×ūŽ 64Éŗ )ų€@@ €@@ ā@ €@@ €@@ €@@ €@@ €@€@@ €@€@@ €@@ €@@ €@@ €@@ q €@@ @ €@@ @ €@@ €@@ €@@ €@@ ’§ßĀŗéҐĖ{IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-3.5.png0000664000175000017500000000134414632072346024203 0ustar fabiofabio‰PNG  IHDR ™Fō„ĪsBITŪįOą pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<lPLTE’’’€U@3+Uo™Dd›F`ŸEb£Av²Ht²Hu³Jx·JzŗL}»LzøJ~»M}¼L‚ĀN€ĄN€ĄO~¾L„ÄQĮO†ĒQ†ČQ†ĒQ‡ÉR†ĒQ‰ŹS‹ĢT‹ĶUŒĪUŻ”ŗ˜!tRNS !%'cgkŠ”—Ÿ¦§³·»Ļßćčģīšń÷ ßA½IDATxŚķÕ7ĀEAƒĮ䜣Į{’;‚”A`Ó#fšķæō“IĄ?čĪ–wó–%ąCsxŒRžŁŽõV×TJG§@„žŗ@õūŸ#•›"5:K€@@ ~$Ė”Ō2ķģŸęyiŅŲ>n¾¼he„4igO€/nĪuš).%ØIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_5.5_dim.png0000664000175000017500000000651514632072346024766 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ3%PĮPo ŽIDATxŚķŻ}ŌuĄńļŽŽwpw ęƈ#¦k– “NSi8:©©SZiō>”SI)Ś*>‹©XZ€éŲƒ hé(I’¤;¢€šGĄwĒŻ-wūŲw—<ģĮ.ŠŌ޽^ž³?f>ćģ{ææßoÉ(^™ €€€€ €€€€ €€€€ €€€€ €€€€ €€€€ €€€€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€€€ €€€€ €€€€ €€€€ €€€€ %®Ü€B^s䊱g:%t¬¼łś·rYéß"93 2㘣žX5*‰„R‰×']=ĒLś7»°€Ā¾mFFÜ7ą˜ņH$„BEͰ«fßö±h×sc+'=¶ŅŒ¬@ņ:­źŅ‹łqÕ”]÷’›ŪßmüKĒC+6}|ęAŸ©ØlYõšiĖ6o“[K@ņłłųĆēEõÜKē 3xH4„ m٧G޻ьśс"äķ› * !äB:ŻśŹįgdC:DC‘Y#×' ŸQ>¼mcrCYG¦ŗftĶčHˆ†dŲŖCkŪŚ MH@ņjŪpäČLgŻš0¼ūŹBØŪBŗ£aāw—™€äõxó‡źS©ŻO§=rŻWżŽÓx‚Uę"e™–<ßD“§7ܧ‰€ōę„Īw>ŗåéģn§źÖ֌øsĀHó€^M^~’×7~#ńśŽu¬ŪxWśµU¦# {Ļ5>‘ųóŽæ «Üü«łĮ[f# {+;ź7_Łį‘čĄƒĻ‹ūŗ€ģMd·«^՜żą÷c“éw’'ø” PŒ™§¼Aå!»>š ­o½łņēĶG@ņŗ5vĢ3ē®s]ӝKfޟ0„žĀ., `3ŽxßäŽņBÕau_uØ) Ą.bįż?2”÷ē3©5_ŗzõ~’+厦” »°€Żvā1/–W÷ž|ėŅNŻ÷³±¦ŌžšƒÄ‹ķ’:bīśīŸ÷ŃT\ (hõ1ł+GOßS>Bč|)VŚömÕ1!6fzķ!dB4zĖiæMfnō ·Ÿ4jił^žhm.t¬kų?|$Yܶ/¬śģƒõ½·?½s}Ū/›Ÿ»w±Uˆ€%ģēć¢5Ė—Œ}Ų]ĒöŽÖ'šfżķ©z9ė¾ńÕćnžž{;ŗbŒ}Gż9»¾®ķ»>ōl‡ł P¢~4āÄeŃź\“¼®øćډ•-ož×™Ŗ6ki<óŽć±²ėžZVŻ ńt÷żņļĢś™ņŻV2Éö„£ŗĪü’ß9 čE¬üøĒ«F–®Ø+ö“ؚcG\üŠ“^õĀ5³cѝ>rź"ƒFü粋ńōœ‹³»¬UŚžžĪYkĪ9ųó·JÖÄA§?=pLŁ~}ĶĢ…Ä«/4ĢZŗre*dBvņżļūzG¼óÅōŗŖ“³›"C#™gFö¼:“l¾ēÕi7¶˜½€„¾‰N[’¹żßN6¤[³-ÉU!›®iŸW{^ķ©Ń¼g€¶-»~¬Cē„Ć., WńL¦õ@\f·,TÖ8¬īuŸJ.¾óŽ7Ļ_~J²=ļ7Ś2ŸIō]±į;r{ƦN¹{{ņŃWÓ-!„°ób#¹¾aĀŽ‡Ü „-L­™›Śvą¶—Xµõ±ŹH<¹ōƒļžūī¹ļŽ_{Į†[{žK·ĻZaā„Ä/с=ˆEBćq‹źĻ?PŪŪpķ¬EńĀ›Ć‚Bˆ•M½¼ē¹ĪE=§÷RDņ…#śķՇ$WT~$2¤śøŠ!j»éķ?›š£ž{·Ä†_1ō²HȦRĶe­8~Źj“·JŚō/\vrŻÅ5Ćž 9Õļ]-+V~żüŹį+«Ķd~:źó'ĢysŠŃ—Ē@€Ż|onņįŖĮ]·ō^ŠA_<³¢ūf&½~Ūģ¦[BŃDjņ'š ŠürŁŪŸn}¶ķåĘ_'ģ–ÄZ»÷|ÄsÆ_²éīŽ7r”łŽ4sś„xhśūcē¬łÖ€Ć«éZ‡$Ą/B2©\ˆVœ{tĻżėÖ|ėyKµ”—;}·9ä•(?{Qż‡{¾c&V/ŸųĮjŽßOœ­‹35]Iź±9Õ² ¹Ü¼č3¦ovnģw’¹ˆ{¶sCŖ=»;-²¹öÅ-sZ6§CtÕNkløŌ“čS¦­½rüøß֎ !“Nü1ŗ¹fčžģónzpśD;ŖśĒ@€^ĶÜņņ9[nß4cÕé7]=}sā‘żŁV¤M>ś?$ ‹\»°öSūöŽ\Hµ¬žų·_1žÅ., 0•Ų—·eÓļ¤Ö¼}Õ5Æ”€żSŖ}IÕÅæ­yž“W.ßźG‚}‘c @Aā¹¶}XC“æ²ś²_o‘śµŖŽbßѱīķ Æk69ś¹tCqÆßöŌ??ł]××ķĆ “vį°ÖŠŚĀ^› MĪ™ō§”©Y„ł©µ…½²³”į’Ÿ}M> „B<›śGaÆlšńµŁń¬‰ @ĻŹbÆ=Ģf[6ĻjœgVżc @Į¶>=4­čķŁ\Ų¾ŖyńmW¹d‰Ą.~±¼å¾ŽŸmī…±·}S>`7ń°iv¶×cŪÜŅāȇ€ä_ƒ¼“åę^?N†š€ō¶É-¹)ՙ’¹čóé_DŠņ|ÓøÅõgå{&rD,ċܦōC’a“ūJYĶOMzĢ|čĆk9KCŽ€” å!]ÜÖ ®Ÿķ¾j RRģĀŠŌņ\ž‹ė–E‚3°¬@vōĄÄAŻL*•œuMÓóÓ^ųįŻ_µ}‘˶ ĄNźĒמ×u+¹mĶŌw’3o8j~Ytē×t6ʧ›T’bP“{ßz÷®u.½Ń_ž€=‹ē^ūIz—?/©‹EMF@öā‰'w~¤ā(Ÿ'°‹ōö䶞’ŗ× aė=;1o’ėæ.+ö^JƒčĄ^]ū僺æl® É®[3Ÿ›öĘĄŃ]·³™ SÆ|ęrƒ€­Īó·O­Ź$ŗnåBė‹ĖŽ,žWč”:»°€}rß¶ęŪs!„\hųŽĒ-[+P »ęn™‘ ‰UĻßOū ad°āŁŲ”Ė6¼ōP»Y@‘ ‹L”’² + Ōdr©ĪžKųf\Ė·ÄDłž‡Aec*zn'3Æų)¢€Š÷9€€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ ˆ €€€€ €€€€ €€€€ €€€€ €€€€ €€€€ €€€€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ ōu’·Ū¦3smŲIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_5.png0000664000175000017500000003431314632072346023767 0ustar fabiofabio‰PNG  IHDR ™q*UüsBIT|dˆ pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī< IDATxœķŻwx՝’ńżŖ\õ.K–åŽ ¶Ü˜b0%@€„@`C:„lv“ͦģ&l²›Ż_6 il²BBĒtÜ-ƒ›l˲­nuéÖ9æ?ŒYc\$ūjī•ō~=<ēŽ™ł σ­Ļ9s”ÖZNfģy_½“`ź%%‰Ģо}lĖ_¼KkMdgĻHt# LŪ† ŪP@Ų†Ą6¶”€€!€}€į‚Ą6¶”€° €m( `(ŠĀN襰@`G¢€ä¦­ˆīnqÜé „•į`TĄ€P@Ą)Õoyäłę/¼qģ±XøĒ=ī‚o¬ńgŽ%*€”‰N©»iW»ˆ“{L)åcs@g‚5 éiMن F@Ą ‹†ŗ¢-u¦ē[Ń0S½€a‚U,ÜkīyéĪuڊ:ÓkX‘PDD¬8ʐ `ÕŌPżDM¢SH<ր° €m( lCƒL+Ń1^£ @D( lD` ŪP@Ą Ņ¬žp ŪP@Ų†Ą6¶”€€A¦E[lDą ŪP@Ų†Ą6¶”€° €m( lC` ŪP@Ų†Ą6¶”€°  .­E[1č’€m( lC` ŪP@Ų†Ą6¶q$:zŅ §¤·źļ÷c‘¾_樬}¦”čŽĆūŪ“ÖģŒŠ’ץ@xRs½Ėæt]våoĻ u5zä$?r;Éęū?’S­uo¼2H^Œ€€~SJ™cV|ł’¬1‹|"'«ęNĶ žß×?8p w3%A(  _”R2Ŗź“+ņ&]P ¢­²ŹĒē„g¶µNoŲ·óĀה2OZH“:ŠJÆjm*ߍųƒ1k\«Ł$ č—Āé—Ķ(˜ŗf’éōF­XÆY9q÷ÅæN d6·‡zŸˆ4¼ų­ćϱ¬°!¢Å0<ŃCuW¬ésųüuŽžD<€d@§•;nEié¼O,r„dGSRwęhéņī¬.z¶§;½µµqT]4š×cžą§Š)³ī»"ŲēķØŁ~ÕßD”hķŽuw–¶¦żĻ 9P@Ą)„ęO+_ōé‹ü9c“2:\3ē?ū oJ(Ļ0,ב÷ŁlÕ¢U¬µ9ķ®ö@ŻŽ-«^Ō’ŁŗžŚ½Ž¹s—žā‹;¶,x°żšŌƒŹōÄžļź¼ iXōNJ)å,šyÕe£ĪqˆˆTŒ±*.u{”Ūé2•Óe.·aŗ<ŹUPŅ5}씺‹óŠ×=z¾aø¬PhrƒiVnaĶø÷Æ+ŻĪ‰3ž“zžŹ_ŽZT±uB"ž @bP@Ą )„Ōčş»0g܊ĄŃcĢĆ£NwžĖŻē;īJ»ŗż©]¹G–®ęöōdDĆ15霺 /üĒó.ˆgvɋNØxö5 ņ§¬m˜NKDD©oVnǤSÓŪ£:ģS}äWZLóPjå¤Wdf·o”6kĮ#dõU8]ŹŃŅąŪyp’’mc&<ŗhҬ½-ŅŚä©éėõ6›Ėåq‰»t¬,1—9\™ł"ņŹ ?$€„ €€ČŖX[:÷ēzE1mEŒ±“[R9i’…';Gk‘ƒµéėöķZöŗÖ15~Śs«r ‚ćŽn:˜žŁ[‘šöNž½³7å×ĻČČī«ČŹ Vˆ+Ž^£»CŚk¶F~ŪR×óų ?$€„”€€÷yRs½Ėæ“&­p²hm©ŅŠgg–Wī^žž.Qźäē)% 9{¬ØĆRŖ×ašQ·ÖGŽ‹ˆD"fOFöĮ¢śż™Ū_~ņšŸ§j³ĒLܼĄéŠz³r;Ē{|:„§Cµģļ~éµWŽ~֞§Jk^D”Rʘ_¾Ŗ`Ś„¹JŚķŁ–·ā’§’Éį4NQ=>صÉU»öé›~ؔ©ēƼūó9ł”Źc?„­Ø¶”ÕŪc¶)1£÷½ŖŲÄé51JÅ¢mØUoķ«īžéC’ņÄ}ńJ‰Ę"tp”'½xz‘R†ÉČ®Ļo<ŲźŲéN<*3'4Ŗ°äńJ9ō;<©Š±Ÿ;]†ĆåQ®@–•—ž)?uß„„£ėöõ:Ś”(q8•£xŒĢ/˜rS¼@r €€j8°róÖ·V>¤D÷ūēĖéģČiéh›z`Ļ»ÅOŸźū†)F +Zšne¾·\D“IIMrēŗO¹ąĄŠÄpRŁuł†yŖÕŌÕį>ģ+čq{jEå‡ę ä~ᐄŽy#|×Į]ķO Ū¤Ćœ˜¶T(hiĖŅbšżė ‘£ĖŠeED&ĻzžāŌōXīéĪ9ŖłŚ¹žéꛞłńóG^ĮūÓ3 ŁQ@Ą ¹ [¬'‹śC›Ž˜üŪÕ…Otu˜Ķż9'1z•į°tĢéķö4ō÷^†©¤juę®ūÆ5w’™;ĻŻ’ é1DD¤`ZIš?­9C¤¼QDI,–Ż×p`Õʆ"ĶõÆÖĢ_łÖŌi–ƒXZY""ŹpZ½=ž&‘Ž ""–„uo·ŁęöÄŅ.uĀBįO“ĄŌ…īæ’ā®šŻÓiķŪ»¹ńœ’ŌÅkn]”Üīo…źCVÜ€ķ( @*—ŽNæę›óžČ)zmJsżÖwģ«|ķŠžy; Ćii8§¦~’ö yE3 SÉɊH°ĒÓ¤”C‹ˆ4*}·³-pČćėMo:Xŗ³©~Ņ~ÆoOvvžŽŃ„3²r{*M‡śĄl ‡K\£ĘĖy"†Œ›•÷)Ó4$Ō§ƒ©™«fŖ«Ū_oō’™|ŃäœēVžCžhēŖü™¢µ–īGs}]ŽŪļn¾üi„ZtČĢŹ[;±jyõM†yāiÜѰ„·o®xØfĒyo(åŽiUÅå/LĖ+<4!-£k“/%œģ5ŗž{äcwx½¾…«æĶ—b„Ÿ._$¬£o<Ńyė“w½ų FB€”5 @ŖÆn¾÷¶‡¾ņ×nXÕŃ*MJ)I Är*'¼pŽņßü]Jڶ-N«ø¼~ĀÉŹ‡Č‘ŒI³k®žæņ×_TŖĶķOŁ3}ŽÖO—·U„¢y‡”RŅ$mŃŖ>#ʌµŌŖū“ĻįTŽ”€gšÄ¤ßƐœ( ą}S—»,-Cæ’ź\„”äöL^“źé(óČĀ¢Q-§ß×Ck©ß_ņ–e„†µ8¬PŸ£ķųƲ‚eos nļØ-±ØuŚé±Ø¶Ś{_ 5…ś½+;€äDļS†į„/ÕųAßé2Ģióö]épŖÓ®F%r`ļĢ-J9t_Ϙ–½;Ėž=ž;Zkńł÷—T­ÜšÓaœrT£·Kwo_½ē՗޾oąO ŁP@Ąūūł3’õĖ);“ĒŚt¦×ˆ„%Ŗ ż~©ˆÅŒZ(„ÄķéMoońģ„u$;ł HCmlŻļæłųēX€ š¾ąĮ U1³¢,#WUžÉł‡üÕĻ?zż·"įāN­cjōøGŽŸZsŁńß3 %f“¬ŒD̾ÖFß®®v³édļÅ)›h.Ysūy·ŸIɇ׹€÷]öķÕ÷‘˜|GJŗ¤ ōܶfWŻ–7Ļ}Ą²²‚""Y9FMœYs•q’V§2ņŠz'žīŗJ)„µåT„Q`čcˆˆHŁü1eS{旞!9§Śoв“XǬ„­XÓ!ļöÕÓīė-{oĮyÆ£tō»sOV>B)‘9+Snæā†å’ėĪu»Īś‚Š}@įV}iå¹åÓ2>]§øüĄ‚ōŒH~æAD®¹ģ[ÜV:6uŃpx«®Ö¢öW×ķOt‰Į> $9WŽ+mŹ’”o‡ņŃŽ¢Õl•ū›j›@bP@Hr‹®Z0ĒaŠcØÆŪģźÖ'ļŽ½š®›ž|uØ)Nt‰A É=÷Óžūõ?¾Y éH¢³œ)­µŲ{rŻżė÷&: €Ä¢€0ųŽ^K«h¢sO[ZNWŒ“©Łb=wĻW½Ł®\’€!`÷ś½Mį źNtŽćÕ×Ŗukjūū槇Y–>RNĀ:ŗ}õ‡»æššåįĆįP‚bH"¼ €! Üīł»_}äł“YĘՉĪr”eiٽ±ėG-z^ŁšBJ–ĆaxÓ²\{:Ćõ-u½Oi­ĢžŽŽ¦›6æķJŗĮ B`ˆhkčŪ¬µ’źdy–‡Ćš¾łū×÷‰Č·›ĄPĮ,†ˆ–›¬˜•<ÆĀRJb±hÅł_>oi¢£:( ĶŻ›;ZÕ”Dē8J)‘y„’}ÕÅ\śĶ ÆItC€!@)%Ӗ•ü(3O%:˱œ.eŠh#«Š}y¢³( Zk©}§ó]Ŗ%ŃYŽźÓ”7Ÿl’üÆ?żŠ•‰Ī`h €0øsŻ®Œü”9.·ö%:˱,­­µ|åŁDē0tP@f®šYT4ƽĘ푤* u;¬gĀįŲįDē0tP@Ö?µž@4¢Ś$ĮļĄŠ†-«»CŚb1KDDz»¬ƒ”śP,±© %źųK@r9ļ¶ēMœŸyGń™­“ ˆeiŁS{qÓs¾½ž‰M–~lįĀņi™÷ųÖ’ĆĮĶūöh­­„0äP@Hr9Ó½WżÜ‡Ė'ēŚq?miŃZ$Ų'=ŻķFmw‡ŽŻø·÷¹ŪvOĶŚ½ķvd0|±:IŹē6EKšŽź^OŠ™'ƒ8’*³ÄЉÕrČŲ²k}×÷õD[_ŗoķ+:¢;‡ĆGnüA»=€„@’šÅÜ5KÆŹ½gė«]÷{½:ūlÆgÅ“%J$ŃŃŽ.£„µAŽči‹¬ŁÜx_ż®¦‡Óѹć¹ķG^õūó½#|€$„”źń„(’ÜUi7Š:ŅĪ”¶“lz¹ēžęŗŠ}¦aŗƒ½}]Æ>šę į–p(~‰ąō( $©ńsó>m˜qŗ˜qyĢ“¶śĪš·’ųö6łyœ® ĄkxHBŖ€ø½*'^×SJÉØ ޹3Ī-żĘy_Z¹ ^×€b€$“ņ¢E·ę²ęžĶ“«cuwHėę—ŗæcEu‡ĆeśćrQ8’ĢōK§MøüKcæėpŖøż9 Jē;k÷üžżę LĮ ÉTĢ*¹Ų—ŖRāu½`Æō“7Yļf<ńŗ&œ)F@H"W}oĶ­Óū¾Æ Ļ£Ū±.ų蟾’·ėBõ!v+pģ„@’8’Ė+/©ŗ8ó·)é’ĻėZ–Ö͇dWķ;}÷×nm¹ėß½QĻėĄ@P@H°„·,ž[9'÷Ö² Ę%Ÿ źń–©ŁśrŪ÷ūŽ3æĢūĄÉP@HwŪØZ3īĀ˳ĢČQvŻ·»CwžõĒ»ęnü˦ķvŻŽb:6råø¼KnY¶XDä¢[–żćy×g?ogłń§IŚō£æ`ē=ą( 6śč?_ōUŸČ~ś²oƾłą®ĆjŪ§"(„dĢ óĘsæøb”Ż÷Ž‚€MĪæ}Ņ /Ėś”Ū+žĖ|’^1½|æĖ„݉ČŅÖ¤v…ś"M‰ø7€‘€Mņ+ŅWyS$UDğ&™ž4™ˆ±˜ÖÕÆžĮĖwæ¼3÷0²1 ›ģZW’d$¬¾‡i*U0:mq *č(F 6pē¹ĶłkJžĆéRIńgļųŁŽ®żĢņ3*RRĄČ’æ 0¤:œV†¶’ćõ÷§rŽžģXrėŻī¹ā;ߜč<F 65†Ś’ߍV¶4»å(„DR3${ņ|ļw«®Ÿ7&ŃyŒ lj w®ėüŸ­ÆE’»v»~Ńī½€;KĆŪ ~}Oµõäэˆµ„„»CzS½^{Ó©Ų €ș˜ī½ž»«Ö–ˬĮ¾W,&V,bŶæ»óæųŠķī|·óć’rŃoó˜‹voīūÅ_~šŌĀĶįČ`ē  sĮWĪ=ńå¹<ā±,-ķ­®żķ­»²ņZ¦¦¤Fsśz­¾ŌX¦a(u&÷ŠZäŠ^kó]·=q~$k 5†""G PgKP‡šBĮx>œū€ N¾ ÖQĆŌŗ·Ūټqmń“-M‹«Ž¬aÄĶĢŚ^ŠŅ<鱔ŁžŸž±ćĀ3¹ĒĮõč’~ī±h­ĆĒo~§£/>OĆ āĪs;ē^<’s}‘sF9SęrzsN8įńÖd­Xóš7MÓŠ(Čžś•_ÜśČņPCˆéU’# ŲL™Måȝ²ä’¶ŽU¾ĢŅE{ä3¬|žĆ©Jõ V,*ցŻzķĖŚyå@²”€`#oFQzžŒ ®Ī,]čH/šįqøSŗOT>“Ž*„ZD¤Øl× ĆP IŲį×éŖH{«|ų'ļŽPūZõĮAy8 LĮĄF¹ćVŒÆXž„ \žĢčɾS\žģōQ»GĀ®®`Ÿ§-“,jO^Ēįģš1ėĪs{ÅwŖ{ģŖĪ~.;ÆiśŽjż›’åµo;źYh i°6IÉ/ĖŹ™°`驏GØ}]fyeõÅYyĮ1ł%3ŹĘ6-7µe„ÓNĻ)l˜š§,±Ø„÷īæŽå6\©9%“Ę­śŚ'—ž¢kŻn3žOGĄ&yćV_Y¶Ģ}āOµL™ż›«¬Ž²ŗ¹ŽS‰čŲŃOz:U»ĖeØÜ‚H¹?5–yŖ{håKé˜NĖS_7f[zÉ GÕÅi?ųüO×¼5ėŖY„ń}"8¦``„”·ņÜÆ\Z0õŅģ}ČÜXR1aÓ²¢²ŽŁĒ×ZD‰¼÷ÆÓŠ"±˜„M‡”źü[öķ®xcÖü-78Żā:X#ožļ??µ¼u{goĪ„-(žuķĒrĒžwĀ©T^ß=öON—8ćq?+¦Å0ßk.Z¤v§^ū»o>uaO{Ų1qŃÄQJ)kē[Ū›R©ę‚«f_Q»µńuZ׏{Ą‰P@°QjqeĪčŸżx dīI_;aŚżēWN>tFžŽÖ"‡u“Ė#~—[ūß;¦-K“ÓeĶÕö׎æfķÆ^ßy¶÷*_ė³bžÜ†ŚĘż”śuöé l¤”ņN»ś§·¤Oģ;i[‹FŻ°Øøüšü÷G/lthÆlŲō|ó-ĻŻłĀŗž|?PŽŻ½)ŹP†w“·³żõv™qłō²U7}!=Ū*9Tc<_æ§ē‘śŻMoĶ[ Ę:ҳ<£»‡D±Ž`O䊻ÆmÆn©km 5†NśßĄš@Ąf„s?¾¤tŽ3L§ē¤?l+ÕåJI­Ķ*.ß4·rrĖr;ó‰ˆTæūŃo>ūąmżłī w^ö³ņIĪ¦vvµ©=õūĀėė¹ē]ś…£{–h}ä ]ēws×ZIJ“„ƒŅŪT'o=ńĖMŸ¬{g’žPE®Ųˆ›Õ½õ»W¼„ł“.Ģ9ŁčZ§†»:'Õ{żė}G~H·Ä0” `Cō³Ņ×n<ŻwÜnē¼Kę¬XtEī5) ˆ(ń„ŹŌ¼R×TĖr~ąŃ”9¾|=nšJ¼~ń/Kož÷é;k¶Ny*Pøøżõöų>€¤Ąkx°™Ö:vh㟟l­y%,§˜‰ w;Rm•ÕėŹxīį5߮ߟ¶Ń®ŒćĪńÜ~łæ^tóÉ>ÆXVQtó.~|Õ ĶČqŽ’Üųp×8­¾é©ß§^ß»¹ć.Ź0|1@t5īčšg—’ŽåĻŗ.µ`¢ėDß1ŽŲŻžöM®Ž„+ŚÕl)(Ż6ƎQ“ •]4Ę™ˆüźŲćī\·yķ·.ųŁß™u×/žxÜ+”ąžjėž·ßżķŚĘ}{)ĄšĘØhę•3G/žģ"Ćį>į[¢¬š®Œ™‹žvMõś+ī‰DrzJ+ž5ię»W»Ür’ ć§§Kµ7ķ×/9\*„§3ŅzĻ׿žŚo]ų“‰s7ʑdYśŒF;ŗ;¤MD$Ų+m{·óĒ|ä»qŽ I1@Śųē-)¹cĒēŽ[‘kœhQŗQŌ‹š}ł%ÆĢn:8c³Ó՚cÅTDDzń§ź@ł$Y#¢„³ĶѼā o?Ū|æ|ˆˆD#–øÜęiÆ„µˆÖGŹJoō<łėŚ%žÜøG9UÆčFF@H0oFqZZĮÄ rƟ›Ÿ5zĮ~Ļ+\;žœ„ė>+"‹i1 %ź FāA[zą÷Ö"÷YŪ÷oėūŸXLGK'¤^rhwš”¾žš'%€dĒqęĪsūB”Žž~æpŚ„K ¦]Vp¢émF_Ó!ļöŌ@ØŠē×iq :@-]ŖuĖ˽ß{龗~Ńŗ½³ē½Ć?Œ2C oĮ ĪR>”R¦/³<śb[>²(äs""²Ķ•ķŗwå'—^Z1=p£Ć©<…åzža|ŗu8¤CN—øO¶ćŗ«­Ej[F¶¬żõkļŖrØFž3M.=ęŁD‰Q")éVŽŌåLjČցf0ü° ¤”2s'®Ŗtł³²rĘ.Ÿžš?ᤅ!3õ—ć\ī¶}Æ?“ł®żoÖvžźŗī\·qĶ·.ŗ{Ü,ćć.·įģO–¾^éźhV{Ŗ_=üŗ/Ū—f;\’“U蘙§ĒG"*ÜT§7Y±Ø÷W’ųäŃ*ŌЉˆüżCWo,(ÓÓµ9X#oģ\ß~gf¾g©S b…=O<öżæ=8°’:†# I¢xÖUc3Ė«–¤Mó›ļķŠ ÷š}%ŲQīn٬}厒éļõœ§9ćĀéÓĪæ©üńŌ€ĪWJÉI5DDdŪ›±»žēÓŽr¢Ļ®üīźŪk;žłīµ›\9.ø9üž«u•Rņ…?\¹Ö›¢ wmčx5R[2ņ¼£µč“Œ<=%-ÓØˆD¤kŪk’śÄ½üĖX_ŒĻŒ@QJ¹ ¦^:֗YZ EėŽ–=Z÷¼Vémė—Ö:8ŠkĪłč¼Ź@žģŌÅY’R8Zfč;ŃØ%OÜŻøō„»Ö¾t&¹—޲šņiĖóž¹ØĀ˜‹j±b1qø 1MóżŅ [²}}Ļ/óŁ'?}&÷0<°€$¢µ‹Hõ{’oĄåCDäķ?¾±KDv}īwW}ęƒ7‰Dt¬­ÉŲ¹{Sč—Æ’łĶW䮁_ń§W­¼®š7ž4IÓZ¤7_ŠSLóƒ³É.C\~£ōD×PW)sUqUśÓ^ļŠ÷ėmČ`ų`€ā?¹ģ'“ē;>ōu½=]ŗėŽomX²ہźPSč”{‘œŠ;×ķüģĻÖ¼R\!ēˆy-p(§Óēq[€„C–īn¶ÖnļūşžėłMš[;ļ>–žéł¬Ć„ʵžļƒ÷īŗu×ļwui~H†% #„;×ķ\õ©åĶ,š,Ļå\°{Cߝ~óŃĒćŚ7žģņ»&W9žīŲc}½qŗ q8>ü–įp8*B‡sņŻ1·×‘stš–Ö"½]įĘ^Ü=ę…oUwĒ#€äĀ,Fˆ÷F9īueŗīSn%”śP\¦:-¾yĮ„—/łą_j*„¤§3"¾T§óH ±,‘`0,=ķўāręń‹ā•‰Y±g)ĄšE`„ ĒuÅŌełwgźŹc…z£Ņq8 dyu4 v·G±ˆø ‡„ÓŅ]™Īó„ŪŒōt„Žl«‰}U–Å3!€dBVużüņ¼²Ąāƒ;š7Īæ¼ģCŸ›CœNqimu{}Ī ÆļC[‘|ą€Ö"½Ż”ķõūŪ?óó›_:0xÉ$ X_W_lŅ‚¢ļU]ģ+0Ķ eZœÓŠZśµŲ4±z¹³zŽŗūk:ā@r9én«'óĪ+ŪZ›ź¬×ć$›*1†„Ʊš±GC”XK×į¾{"!ė;¹+„­y—•Ÿ£N81 ĄpB2÷ŗ9Sæś‡KźĘĪ0®8ŁwCLƐŽÖˆ²,m‰ˆtw„ÖÖ¼Ó¶šŪ+żÄ®Ż‡Ļiičžęįę¾{¢QĖr8ĶŌ¢²“?]šć1©ö= €D` ÉKJ朞idČiĘ*Ü^‡”ŒNÉnŲŽēM±"Į¾šżæžäó;DD~ż±ēwˆČwVżē4i ķĒŁ…i×»}fiŠ/‡ŸM€aŽ}@Ą€|žwW=Z>IV÷÷ūĮ^éŽS}üwß~ü攜oxųŽŌ+„õ‘ŃĆœR岉³/wk^©kÉį†ŠÖŠ©®ėRŅ%³?ēj­åÕGŗočŪOžp°sę'tī­+fēW¤_;’Šq¹ę8>źti³¤Ņµt`WQbÅtpP’( ąCĘÆšXü‘/Oy8#GžĶu:K}÷į¾ ńŹ`裀€;»tY Ū*”Ó­4?…ž9¼ö/k^ųŁKoĒ1€!Ž×š0ø²\W¶Ėģļ÷ S²ĪfKŽ`Ætķ{7ņ×WļŃĄ"tF€ÉM)šźz·ß筘Q‘½oėĮ¦ŖĖ¦,ó§¹ <©ĪüģB×ĀĢ|=՗")gzæź7¢?żĶgžņłx>€įĄ±ź¶å,æ6ėQeˆIŠį“<†R*QA§[܆Ÿ]Č»;äšĆ?Ż=sĆjćq=Ć S°!Ž|sƓūwŹ3¦©”×§¼N§©L‡!nÆņÄ«|Ō׏¦×nŗ„ņąd`)[–¶äŚ_5ĮumFŽ.Žēµ»;„żĻ?ŲŚZŌ+ŖCi™ÖØŽn£åŻ7zžķÆ?ž“xę0üš^F ęچ†HXõ:œā?“óC}ŗļķ'šoˆ†­¦Ž®nµįéź”ĘP(Ž9 ?F eØšö·Bæž0Ļs³Ē+¾œkÅ“¼żtĻWžžį Ļ V>Ć‹ŠaÜncś¹ÓĒwµ…Zœ.= ņ!"bYÓŚr”-Ø8ć×ō¹`qē¹=×ß±śŽŠ©r…ÓaŖ3ŁčÜįTę‚5©’ȝZ!"_Œ{HĆ# Œ ܲņ¦q3Œ8gV>Ž2 %—pēŗĻh €‘‹FĀŹ”ŹŠbÅ“ˆ‰†U°«Cš¼~ešā ‡Uw,¢ś:Z¬oŠä竱'»Öø™ĘĒ>õߗ”‹Č"ĄG`iÜ×óōįCźĶ–Ż› ‡Ņ±H,śŹo¼\6„$oߖŗ1$$Zb”ĘPčźļ_üģBĻæ'ySÆa*UP¦gĻæ~īä×īy³ŚęG0D±8!w®ŪsłWĪ»cÖ ļķ'Ū'][Z6ƍüšŽŪžz»½é UŒ€€ 5…‚9“ræ?nö’ż©PJŌöu‘‡µvŌłŅŒń­õĮõĮžhKGsšo‰Ī `č`œŅŹ[oøŻ›Ś7§Æ£§eߦ–»wÆ}cK¢3ŗ§“’Żü=S/‰t4o6Uß±ļčq„”CkK\:C ōKzŃTkĢŹæ’ųØŖ6†ƒÖØEkĘthzIDź ĄŠAż£”¤äT:Ūk(„\E³®žėNÉń„ęOĢłK<¢H0 ˆ;OzaŽ?{tJOĖžīž«”2ņ&]8”dĪuSJ«nĢ7ŽXĒĮͱĮČ Ą~wi“TĮŌK–‰Č£=·xö5³Šf^¹Čéˌ¦“ā 3¬ń§”¤äŽåIĖóōŌŌ¼ń£Ż©yĆt²—0 Q@Ą H+šb”̹¼*é R$I€…R†Ī(›[īĶ(ÉČyV,L†1 4ž“‚pv咩9'ŲŁŠ7Xy$ e:“/sŌ€F@Ā=­=Ń`/ʆ) TīŌ¼\„Tæ …éō†L——·_Ć»ĪZÓög:cį¾–céXŲ“;ńüŅŌ‚‰fŃĢ+'‹Č¦ž\Ė‘9U=(A$œµPgć¾=/’ģ„cJffW.-w„d‡Ņ‹gTyRsw»šN¹¾#«bAqÅņŪrE$2؁$  ŗ¬ŠĪPWć*„ŌĆZė“Žn¤ä+÷¦Q>€aŒ5 `Š)Ć”3Ė«Fū2Geœź{Vø/jECü| cülį GrĘÆ<å+yCŻMMV4dŚ• €ż˜‚ĪZ,ōe–“ģ1e˜ķPJŅ §ŒSJ½ŖµžŠ4«’s®›•7éĀY¦ÓäøˆĪZŃĢ+'čŲ„“Ž?īņg}`WsVyjī„UćEdė±ĒŻ©9¾ń|cN t¶³įݼ™%ó-WJQpcH 8kNozæŽ[±°ÖFwö±Ē«l„5Y$‹Š@ÜXVNļśW—ž¦jÅs·ĪØŗļźĶoŽš‡^£hśU•£ęŒógµL§7&"`”€€øRŹĆŠŹ0“y&ē;£u †/ր€ø™2ūĮÕecVVÆ}’žšÅokJt&Ʌ7Żõ=ĪĘŽnG,ę$:€äCqS[sžŪė_YšŪY ¶~bĪĀ{ÆщŽ ÉP@@\Å,_8QĮpÄŁ+2ąĶŠ s¬qÕŻ1źš3}ōߔ‘Ó§čŽĆˆ­£jžŹß~vå„śŖĆŁģKtɇāH‰eįXTE,ĖĮN„>„)X n”2õĘ×Ī’cVī»–•f€ć1ājź9Ļ_yńXkĄ×É"@  D€ @ @"@  D€ @ @ˆµ@€€A€€ ‚"@D€ˆ "@ D€ @ @ˆ@€ @@€€ bˆ "@  ˆ‰‡N™{ršõČi- $nn÷TnĖ>sG4ŗy`«„„„µ@€˜ŸvܹoŹ÷:Oī]÷;76<Ö"@b}Śńtn˾óÓ¾Ójšœv @HģO;²öę“ īŸrmŅ”>N; Ä%@næ1Æeæ‚N; Ä-@n›°9»YœAN; Ä-@nŸ¶+ēŗžE#4ļzµy @ˆK€$åĢŗ9¼bRćÖįč£V›%„øHŪQk²®é8®»;ā ķ'=—Ū¬{ĪŠKßt¹Ł @ˆ[€œłļŅ“č~­ ęā ķƮ˪Ӡéeę€!īŅ“kf?³@€÷i7fmV†ßwś€!Ī’w8³iש}Ķ BܤķØ5™ßŗ¢E=s@€ßÉ;œymŅ”>f€!īŅf䣙߼üźŗf€!®’”w(ėŚĪ“{›„øH›“ՙ—Ōæę[ę€!īŅüŽü!f€!īŅ)koN£›Žd6ā ­G<œ™PĖl Ä=@Zōžb.ā ³÷g7nņs@€÷i“öHVBBBms@€÷iŁw^ÄL Ä=@¢_]Õ6µ™ @ˆ{€“łXvBBĀ7ĶBܤeæ‚Tó@€÷éœóröwoŃĪ< Ä=@ŚŽ^“ŖS’ó@€÷¹®įp³@€w×õ/uuū1·™„økŅ!=#ń’Ėė˜„økм[s@€Ā…tBBms@€ @ņ.żĮ!›¦=™ŗ3ó©ŌŻćŠ<Ś+»W_H\L>õ䯒#ØØ“ōhšŸ£ļ²ŖQėʗŪ @ā Qe告¢}Įļ&?ŁŲć®.½C CuźuØgƒ€‰}€|VékįO ÷ļŽŗoŠ#6øH„iėƒm6D€ä¼ä®õ‘—\DrAdٱČéŪÓ;v“I@€Ä=@ŹNF*śäõb“€‰{€,? S×»³ž¶;{SźĖYS÷NŪ¼Ō+«['HLäļ³rč*Č »žļ¶q@€\™µ-üVØaØīµm  q ’ć‘Ssvæ.Ų¼3¤Øw±M$nņYóvE~jś¦$®= V2°Ą&’99•ŗtĄ"›Hܤ¬= 9©˜°zč‹>R$īµųPša›”VĶl. q’c‘‚„ēŁ\ @ā QS×E^Ŗ×”ž $žRr"rzXIr‘ $1rōū]›5 5 …l4 q·ōÕš©»Ö…w5nSæ®Ķ$žŹƒŠiOF\ӱ鵵×ŗŲ¦@€ qņqźŅ96D€\cņĄ§C?óĻŵ.¾(śļMŚ7il# @žIå}Rø/õ7w­ vänŽütę–Ō×ó_Lżłģķ)o‡†Ü@€ü3ŹŽ”śJYyäÆE Ÿ*99żuITō’eÜC)ėmFČ?”ž™ŻŪ š×{ģČ{-»¦c“&ćśō× Q҃Z‡[µ 5 ]v.± @ž‘Ż:ü–«§® ­źK§'# ’Qyb×KźGĆŽüēß³š`Ź_Zōj~­M €łWæeŻ:Myfłk‘O*ƒ `OšĪ€Ł½G&6L¬wēć)[æīS’’ćįŠėīhŃŌz @ž „….– ˜ā#‘Gܓ\Zł»>y=»Ļy)ųõŁNIó‹+BßV2`q«Į­šÖėPļsæ»āęFߞ»3ņ›Æ+B¤†¹śÖ«¾=emx[Y¹r!NI® ÕĪ{.ņ†rAt™Ų„cōÕ¹Č1rÅąeŃ×ō  ń«a(1ó©ČxÄƲć‘Sów’wę–ŌŸńzžÖŌĶ{.üʵ›^iöŖWV·^ÅG‚cŃS•ž³zL 5 %š1„Ļ™šČŠĶ±üRzō [ÉóśŽ2[_’Ų ±vŹ¢žSg¼ü¬äDäćXDHź²ä|³@€šwÕėPļ¢äy}ĒĪŁüŖŗ2fÕŠåf €įœF®\RŻ÷£”•f €įœ†—&ϟ·+üūźHÖӑW#K’§š'„’VƬnƒēļæWŻSÅ‡‚zNėÖŃL |~ˆ ‰ šwmś­+Z4H»'xxٱą£X\FŸóRšfū“öכ1¤†Ŗ}ŁU—6i?ę¶k:ftlÜ&rÓ5Ēu¹9rļ]ó,ī9cъéĻx3–ßYp x佃—‡® Õ6H ņķļ']×:ķ‘™sd§,/]Õmęś‚ĪŁ[g$归Õeś‘Ģ®3^ĢūȤ½ó÷Džӏ–YOE…….¶šóØÕEĶz䄻ĪŲ4wé«įÓó÷ļgoNū·¤¼=¹Ń“dUŁų5‡—‹œ.995m㘟”¾ł$²ähųænM»­µu@€Ō µ.mTūĘĮK'L^7m×ü=Ć~;õ©»öEć#Ŗ×œµE“ŸsrĪĪ”ŹzfŌ杹ņ‚ĮŸī.ĶIȘ•ƒOl˜h 5Hżk;\y[ĘŹé3¶¤½9ķ錓I¹²+#d؊EŒX™·©OAяņ·ļ,}5üq¬ÅZ~2R‘÷lšŚż2/O¼ČZ @jˆĘ­‡Ž|Ų+³Gok€©aź6ŗ”īCJĘ'åŹśb€D Xųƒ‰kĒYp ņēŅįŠŅĮéXÜ)z9õ½!…żļ¬×”žu@€Ō°“ZĶŗē ¾}źĪģ/Hēܝy«'īĖŽ<śõ¢żĮb Q%Ē#§ÓśP­Ęµ|RĆ"䢫ڦ¶k7v]ę—#dūŒümįß~īzyĢŽŒõIś‡>ä#…Ø~ÓNß¹qpIFRī_æŽ.[qߤµÓ· æֆ‰ks·Ž{,{ė‚—ĆžóRäŻčku ÷§ž®ŗRśZų“žÓŗõ4HĶ< 5ķ:u`Ē»vä÷”­Ź}nō/ęķޟ¾eÜOĘ?–óā¤=6e}ś‰é/Œž×¹»‚wcńzމEž0{H ~$«qė”6mG?>5øgńówŒ|³ņ Xe'#‹Ežß ā9kŅVf¾żyu?X8ogź[‰õCf€©Į.»ŗķ×'§wŹŽ;įń©»ņ·§żŖōµąÓؘ»säÆ/+y`ʋcߘńbŚ/ĖŖqš“»ł>ÄiHBč†AK2’ņöē æoīŗ‚½Ć߉¾ +zņqēŗi»zĻ/[‘±:sŪ„5“öG_Õ{¾²ųPšįnō…tHMwCrqŚßފ•³/gÖö‘æZśjųŌ²cĮGŃÆ¤Gī^¾*)÷@vō^Čł¾!kń+‘B C—š7D€¤}öÕ¼Iy;ó.Z~’’£‘æ|g"¤oįŹŅ¤Ü­3ęīõ«ó 9;‚·ĢĀ—¤Rrń²Uć×LŽ;gēØ7Ē<<晞s6޹īĪżBĢdōƒ…k— Ÿš½cŌ›3^ĢųYī³ćŹū/Xqwō!U ł»ƒ·C CŽ„€ gčÅōł{Fžļʈ(z9üįųĒĘ8Ÿ{ e告1«†ÜoŽr։š²!sWe@äo~“µiäĻĻū{ »S’żŽÜžŻĶ"@Ī ½ę®+\p0ųc4 öx{ٱԿT磄 ļõŹźŽĮÜ äK:ēģĢ[x0õÕ‰Ž/*Ų¼,˜göņ…{ ³²žõzĮŽŌ÷b!‰¬6{ˆł’™[Ēžü|Ž|Uiچ”å҃>ū³ō¦¬2{ˆ9k€Tē“#’ÅČ’ĢŚžÉāCĮł[ƒ›æ'ņnļÜī}Ģ"@¾šÖ+Yó÷¤żŸó²ņ bŌ½ƒK$Ö«{Ķ%õĻüY;Ō0TĒÜ 䬗З¾>u¾R“?xļҦuź™3„sHŁē•œW9< ÷杷+õßǬ| @ųJŅĮź%Ė_«Śōh°“yk»Š”Ś×ÜŽ“® @ųJ2°ųŅŖȲć)”†”+ĢB•dņŁŪ«śų•@€På霳/gĮĮaļW5@Jއ+ź·ØßŲl |õÉ}9»p’ˆwŖ „ƅ+zLė–ŃeRķGvjmƾŅ#XłŪĘüā|^æżrzōīHī3‘r3@€š•dÄŹ…kŖóōāĆĮŸgo~y6ēōĪ0ˆł›n37ωŽéØN„ü=Ań€<ó@€æéWōŲāŖ¾†W€ @8Æõ`įŚ²ņ@€ @ˆ€dmŗóP<āC€ @ȗÜ1oÓ¼¢ż#Ž ā QćĖß,@ \I[µš1€į‚HŸ‚ … {_€ @ˆ{€Dõ-z|Ń¢W†ż‡@€÷‰ūšÜ'gæ”öVĮžČ ÷„ž^€ @ˆ[€t™~83eyĮš¢żĆ~ēBœäHęšūŠW—ĘčĖč"@ž[Iy³ĘühćĮGB\äÓ·bžxaé‰ČĒBܤĖō½¹Ł›'¾z¾į±š`šž”Ļ÷›Ł{ ł @Č9u¹cśÜ]£~}>²`š^bƒÄoš=D€|e=fm™Uøoų»U eǧæ×±ńwĶ"@Ŗ$ćŃüĶU ’įOZ žA+³@€*I)½Ež¶ō7ęģõfÉńČéÆ!™OF^Nl˜hžR5y»ózäÆ- V”ž0"ÅGR?8W€ä>œhpż„ī @HÕ$åȎ~¤ņkéCKļ½wĪK£YV~öųˆž|HQæ;Ķ"@b")oNÖ3“Žž-@ŠöE~ߨÕeõĢ"@bēF’ģæąŃāŅįO¾ü¬Č©³īköC‡3sžpāsRTLX=tsØa(döS½ēÆ+Zz4ņ_»’q2R1pvo§Ł›'łģō1d<{UŪŌ[4ļŚ4!!į_¬D€ÄLrńĆĖ–Mż°2B&=‘·µSÖŽœö“_˜Ń¼×ŒČ•7öob $f¦¬Ÿŗ§2@¦o÷Ó运Źß5ė‘ŪĒ: @HĢōš³i^ń‘Ō?GdŃ+©윳7§ņw7 Z’žš k€ 1“÷Āøņh€D_ĶŪĮź%•?æ}źĪ܆-{6·3CKW޳č•aˆFȂĆ.»ūž¤¼Ż¹Ńß5æ#?b- $¦ŗĶܒŸ¹qņįč÷@–¾üeģƓöö)x|ŃõɋĒZ ˆ‰¹¤¼ż9Ó_Čųiō$dęÖō7ŗĶ|n–@€j»)åž)ßė4±ūgݐ¼dlRö–  {?!ŁĻN<~}ņĀtk€ Õr¶“čƚtLķ2iMš|ę“ĮŽ)Oۚv6ŠZ @HĢˆ "@  ˆ"@Ŗ MHHųÖuĪā’ĻØe- ¤Z:޵#÷–Œ§¦ß’ńäŒ3¦ß’¾!ļÆÖēž‘ÓnģŗO}æēō1Ö"@.j @ˆ@€ @@€€A€€ "@D€ˆ "@  D€ @ @ˆ@€ @@€ D€ @ @ˆ@€ @@€ D€ @ @ˆ@€ @@€€ ‚"@D€ˆ "@  D€ @ˆ@€ @@€€A€€ "@Ä"@  D€ @ @"@  D€ @ @ˆµ@€€A€€ ‚"@D€ˆ "@ D€ @ @ˆ@€ @@€€ ‚"@D€ˆ"@D€ˆ"@D€ˆ "@  D€ @ @ˆ@€€A€€ ‚"@D€ˆ "@ “č=gō­ć7M?—Ū§ķĢ Ŗ7脄KĪøō\n“4C€ @ø n\’.@  D€ @ @D€gפCzƖż RĻ„ķØ5S„j¹!¹8-^a!@  ˆ "@  D€ @ˆ@€ @@€€A€€ "@D€ˆ "@  D€ @ @ˆ@€ @@€ D€ @ @ˆ@€ @@€ D€ @ @ˆ@€ @@€€ ‚"@D€ˆ "@  D€ @ˆ@€ @@€€A€€ "@‚"@D€ˆ"@D€ˆ±"@  D€ @ @ˆ@€€A€€ ‚"@D€ˆ "@ D€ @ A€€ ‚"@D€€ ‚"@_š’8mĖóųJVIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_9.5_dim.png0000664000175000017500000000311314632072346024761 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ6.ŗd}¢ÜIDATxŚķÜmhŌuĄńß=Ģmš5笓Љ5•.*(*#!,šEAŠPB> Y²õ¢Tz%öhX˜AE˜ō 5Ä¢¤G"fš7…ˆŌ˜¶‰SoÉnŪŻīzQā°ĶM·7ł’|Žæ{óūqüæ÷ūżļ!Ą’]ĢōÆ®¬ęžd>Ÿżó@Õģćo?’.X“„%č߂[Jļõ`××[öīŻ7ļ³»¦Ī©¼³ķĖĢ?c©Ų1;ś¶ńŗ+ī.vĒJ«ž)© !wŖżū¶-ÉTėŽĖo+ģģ  ©XŻāŖ•åSž;’?ŻŁzō”ŗ†č­IŅĒ K§{=Ńė”1—y7Šł€˜›¬œņ½ß5>Z»|k4WÅ@æ6=0©¾ÆĖeóÓłĆńŚ·ķ@8G*1v]_łhoÜ’JiÉØkķ@87±5—Ż\ó^¼×уK+Ŗ+ć9€óŗ²dŽw#g”Uö>:r֜²«vw ē$qߓĆ'ö5OŽ˜~uõõ §Ś£÷0a܇`p*N;“öĶ’>#’ŠĢ½e“’²ŠE¾J•†°ž†„GeÖ~…04—Ó±!ĀŚĘŠh€€ €€ €€ €€ „“C!Ö¾+žy•żmńz`ā”ā‘9ŁÖ_ś3@@@@€Aó_XżČc'ŗO„\nüšwÄ,ˆ€ D:Wć/”;„tw*^;ÆrUrtiuBb.H*>¹dęģܰńļ” ėū]§÷ĢæÕ€ž;’BŗóĆķ©ŲŅģä=惷ī5+Z·•ŻDø˜ŒĖ;³é³Æs­-/w5÷xCQ@čÕņĻæ™–=x¦™7š÷%ĒōŽĄ øH›žjYQ(†ŠłĒ‘…Ļƹiu2Ńc0/ ōióĪöŻłģįłĖ¶NV¾šäGgGŠ­ĄytüŚ“ā‰C8ė8šó’ŽCQš»_a\“tį‡emÉVæ*ó†ĢķĶÅźč<! ƒšj6„v›¾īŪĻMéŹ6-šųRéčhĢŻĄ ;f׌¦GWo{öŽ–śĪŸģ@mķcf6å~oOBH·½ųŌŌY‰Xž`H„āŪv}Züą“K¦Ž°†V29)€!•īŹlŽĘł•€ ± ė2ļü×9.•X^a€KÉßŌĮźE?›ÉIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-5.5.png0000664000175000017500000000066514632072346024212 0ustar fabiofabio‰PNG  IHDR ™ƒHĻsBITŪįOą pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<*PLTE’’’@@@€ ^Ž9d›Fq°Fv³Gv³I…ĘQˆÉS‰ŹSŒĪUŹ;, tRNS!Mllŝ·XēIDATxŚķŃA Ą ALą”ĄFkE|ų÷U/Ķż+ąŅĢHŲ-€Oõ §Y“–Yō'ÜB‚!†`ˆ!b†‚!’Ž1Ćų”ÅæKo0?łIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_5_dim.png0000664000175000017500000001766514632072346024633 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ4@…N FIDATxŚķŻy|Tõ½’ńĻ™-™É$™™ģ{ !¶ ū"Š ąŚ¢×„*X—ŚZ©Z­Vūk]«­uÆK•Ś[Ū‹?k½`+* ʦ°¶°d#ū2Ygęœs’d’°Ų̼žĶrfĘĒ;rŽóż~Ļ9£čwɈ¤S{‡BõŻWtIś;(’)˜Ü @ @€P ",”S P @(h§³ŒNŠčJ34½móK€Š;Ū?ٳ¾ķ–'肋#T W*j„¶ķ–bÓ G¬8ķØF Š­V“®œčyÓ^Ļc\»Y+9Ń^ÆhäDĄńŹwī#° @€ągÓ @€ąX @€P ŠNc€P @@( @€P €ŸÓ¹/( @€€P €ļ†‰ō$.̤t÷ø×īŒčø§č55:g† …æ:€ī…Z§]=ÄŚŻ3īąĪ{ŽzłĒ zy1€¶o—Ę ÓlŅķwĢŠ–Ī÷£DŒ¾Ź/tS°£• (č,=9gŖŻgŅ­»?nŖŖ.ŌĶķĻe\ŽRWų/Q›jŒDE@‡˜°IEźbõ[ŒĮ"ŗ®ėjõNwįŽĻÆHž;–č1?ŁóŽ»Ųؒķó—&›DR':“Ūc\v\v]I壦6h‘ĆÜÅ"ŗyčGڶI-0qō€Īõ”Lž—ī O9ö9‹ķč-oCH“ˆHĢØ §W9ļ¶¹$Gpc&lŌDt«kx×gšźK¶‹ˆ(”©ē93ʶ‹%6ŪØŚP±)ÄqŽ/}ņÄK‹§_`a @»įćĘūDDM >ęĀżK³)lŌµĪ4³©bwłŽ”©ĆÆ©Ü×Ra“ š)3-±²– )hPōųóŖˆf<=}^ēgt)Ž\ų•®¤Ļ‰&"āH³Ę–lķL‹L“4wmž²’ɐ€B­Ó.Ž]‰“2Ė‘ŌõXŠxUM1ƒtQDÄŪčH(Ė_÷’=2m²ŁźŹ°ŚŻ%ÅkÖ±˜`øQ 3¾Ÿ­č¦˜™æčžŠUæzZŃsnJo»ļõiZSā+ŻąS3Æ0*ŖÆxcž OæE–ƒEt""Į Š.āˆ-ŪāėöüWJL†AĻ×säōs³)ČāŒq$ »$iJs"&Sʤ”‹ ’ *sw¼«t»_ŠÄ]%ŅP“ļ£cv"G\ØKDD—Šį.+Ö@tįˆ5t;…å.ņŌ‰˜‰ēv’:Oė–W >fÅ)IWZuMŗ»Ę•×­·ˆd.īīue»×,~ƒx)Ė>įGŻ_"ŃÆ &ǐīžÓä«G؏ĄĆ€NŌÖÜe{ž×]ŃͤIŃtoÓįīw$³Ÿyš‘£÷\\¤—€Ą‘fsJ™ˆŽ\¹„R*öMüń± !ŗ&bКŹ%SDӛj‚ĀĶŠĀī× ćģx;~ŚMJäC•™ś?Ī ē†/ž46«|gɗe»ŒŖˆfȾ.vŒA:—HɖÜ7D¢Ī ·†—ļ®<18ytDŗ±Ė<†*Fiiłvõ[ó·«ß3žŠ €€÷VXD¼)ƒ^ŗ­Ŗ0q“Ņ©A‚#<µ%ĶåµÅ{|ö°Ć.t¤¬{¶č«ŲŃ걎­ "b2EVŖ®łś¾Ÿś9Ö@Č'ŻżźœšrEĀ¢ŅēæÉ§h ™†.ū³eÄ¢œŸčAÖØQ7&N ‹1)ö°I·ŠZ±żų÷3™ĀGi ¹R ĀäKŃ""ŠD˜|Oü”„nĪ÷(ŻØ{Dk­9zߑä(ŹSiØZŚj~Ɛ ;ƒ–ę£11³æg:īŸ·$Ļ ·Vhæh¢.ĮIo53ÖhlČ{ós®‰EĖ~·8õŠÖmįńµ£®¶-±„×ģ÷z»6Š6’öG,”S F¹–•™~‚ē·žZÆ+IS†]ڱ>Ū×\¹§¾¼ó,Vśō›—’g ą<""²ō¦Ū ė食ĀmoK‹HxŹ9ßļü½Ódˆ9ēŲmEÉĘ Œ@„±© źŗ˜”IŪŁ€^µ<ļ{žŻ”8įä; E¦.½śĻ. ©ś;N$ŽMēŸsKŹ[H×G½ŽO™č©N ¶XU¶Ń`KŸ09<¶wļ©Ėš{‚lżSX@@‹4޽lžeA¶ćŸ1›³Īol>œkŲė«k(±(at_ŽŁč$]F üŲ#ƍ¾Ń œh$”‹">oŻAĒ SŸ.’X]öxV^ ū3Ö@€€•śó;3®0œšŒqE ¢ˆŁ9ÄŌĒkģZCr.œAʌ@ų™,YšŠ˜;Bœgņz#š}³ā¢‡I›?2ł{“°;ĻģåŖ ’<&ūv²fĄOĢO>÷¾²Ķ“qĜłĻjn} »¤ ĘCź€Ļey*7>CՌgeöAU›ŻU»›‹·żöOėÉŽ’p/P.ž=TÄx–&ƍF»Ćž#R³K(?ÄPÖommśĘ=#Iž0ĄY¼Ž†³ż™„Ūv>Lņžˆ),  Ģ]ģˆ=»ŸX[ńīUļļ yF øäóĻö'ŚĆę;`€Ėė ³ż™&Süd’§@ pŪ¤ü«³ż™5ūß$y Ą€Wņoõ¬~žĻ·öžgß#w Ą€–t6’Ńė²éł_#u €?H¦r?MKh±Ōż—2üžÓ©ˆ˜ED®½hāƎų³łŁš^Wzp՞gž”Ē߁0 LŒ›¾$ēn1š,""&Ów1éPW·lĀŹ]ü-(’Ń&…æ2iś£?¾(g󶌈ĒNś.JĆÓZ––]]X°|ÕSėųM Ą¶Ÿ\7įQg‚"õöHUó4ŚĆĪģēUÜūß”IšękRœÉÓD©śĘ7Nwɚ›_^uqʐ…oü©ŗ‰æ ą?޼øĖV&Ž:[Ÿ¦ĖW’ś¾¶Ū.ƒĒhVj<.£DĢJUß`̓0°\?fŌŻ–0%tšŌ3’YŖžē©ĖבyąābŠ€_Yö\%rēOM=ó‡ėźJž!dœųgŲ¹žłśØ)É_^TFڌ@ų‘…ć&]Īl…ø«ž:åƒżw6#žäĻ«™čńžÉOŠ„`åūIšąwštßé+‹cĖH—üՏ.!eP €Ź+o=m?\[“yÕ]GÖŌDÆ/ļo÷_V×JŹ` šC5O~’µčt¼“&۟)]ūU„Éź<Ē]Z²J7֗ożŒsA~«"W_t:–Ń1Yß= ‘(ŽĒą—J¶j§é,a5ķęä U¹5%§ć}9ļ®Ło’ō*E&?™pzŽĖlCģed ŗģž£»ņō¼WKė§·ßū=2—%z¼å4ż”¬®żócˆ™ ©¦)ų·§šDAā“"_Ķ©¾‡Wsר"ŅP\©’(( ,¹ą±/‡Ķ=•wŠäŪĻ–Ķŗ)åŻy;ß]ž{…żŗÅJ~gˆõŽ÷ŅĻļūėtŃ„¹Ń}°~oįźĻŽÜTK’81ĪDüŠĖ(ajSHLß^„Ц•åmūCSÕ;kÕŗ:¾W‚Ļü‹¼¹iypäɶÓtQD|¾ĘŹņõuÅ;ß*8l®_W)ņ*‚“Ņ2憓m„Ėśå„o‚šÜ+>­åŗŗ @ˆŒ¹„w+ŽAaeūŽßA^8]ų‘, ŽźÕ8EŅ'LūåM“I Œ@ˆˆČÜ;&ōf;wÕśßØuęĆ©ą0^ĄoĢɼi£ŻŽ›-+÷攳®’Äpj˜ĀüĘČ!½ŖęĘŹoc‚É §Š),ĄOÜwĒ„{{ó„>5oÅsWWj$†SÅą~øšüe”ĪŽm«ée{ö,Ļå…ä h×Luǐ…Ö>.‰WģŪšųóƑ( @EęN˜ūŽ+®?Æu׿>ae>¢æXD(§õši"׿üņOśW"ö°)?&GP @Ą¹ó7W|“tÉžŅļiE†ßpć’Dq0 żpŽ…? žōÄšC– žæK՞–r²””9¶P»Ėīź’{ØśĘ'ߌM–č/¦°€)w„÷”Ļä0*)Ó²ˆH\Ę9æ5Ÿ†½#Æ_üYr(y‚GØÉy:Į7™‡M²ąī%Šžą<``ŽA‚ŸĪ‹I?=ļU[öö”wö’)”ŗ%ļõÆ’°ļ³ž~¬=üłż»Vź"¢‹»Ųn%Q0ŹėĻæHŪ×W©šOĶ}žĮ„ę{–%NŻłĒŸ¬ń’%( ĄÜrįÜwƒ‚E4©=T»'b¤=Ŗ©*Äe8Įeyu)Ģ}šBOUµWdˆµZÆn!EōēZŠ\ÆĻØ7Vl^Y·ŻŚŖ¬«-Īø0t^ĻÆ8øā+tOŪķ½Ķ$F @€r™ēüHO +±vG˜#f>hģa ²ķ³Ŗ˜°ĀiĮ":0pæ’‰bŠ]Ųl‹.°v™†²†*ŻÖ‡Ŗķ[óĻ+©œ.La”#8Ø”£-4Å ‹Ä6ˆĒc¶Ū"5ÅÆ_’u1Éį“}…a ˜Ņ3¦Ļ ńu~$6;iš×ŻZÓ¢…ÄŌļK» ŲÖõ»WGdļ~ćé_Ö³lF @ąŠŽ?£k}Ōø&,pEµŻ>|(j”Ś"] DÕ~Ÿ9|ö7Ō®ųŸJ• qŖX¤”sS»\Ę}Ų¢óĖśT‘†Z‹=(ä˜ėōźŠĶa >¼#Ń4ūÉĒ6ĪO&Cœ*¦°€łO×:ė’‘÷ķIƒg&Œ;RŅż!XŖnTJó­}½Årpó šČ€āāF_“Ži5Ć1ķfóÉ_§™x(ųā·óźMRmKyøqĮåłoÆ8LŖ @€@(ØI×&v9$wȅéóz’z]j˃B‚BDt]Ó͆²ü.žŪI^j¬M‹.­“5=ČwÜÄ Kī?q}.ræČĒ_®ŗdų 깤s =Ī;xZĶAKFÕŖĪūū·YrhUę%m£EDĀb¦ N;ēž±1#Ż‘žÓ„ĢĆĢV¾²µ¾ė¶.ĆĻ^ĶŗÖŅĶĻN5»« 6=iO4GŌ‰ŹšzJ·ŖÖ‡Ēū”jUäµ-‰ŁŗZŸ÷|Ō ķ°_łæ/¼Cņ @æ0zhŹōų³*ā1ÖI½§²eżėŻmjr†»Wņ^¾’Rl¬~B÷ČvŁŽ~·„ē-ßß#{ž½õč=ÆZµ{Ēˬķyū«'^ś†=L—F i_Æ7‹5¹c‹iĘaį»ź>ē礁šæynģķit?5}×öju™[›’#¢J‹˜Ū/­čŃė«öžńÅgĘŖß»Ęy›yX͟—ßń[g—Bšo.óµWFĻJ˜¼żł§zqAÄG_sSŪ­f1wšøšHiu“Õö3· eŸy®l)~/Üh–Ź^L;]•yį{1ém·[¤EBÄ,"š“J]cLHĒb|Ż_]CŖ„5 `ÕõrĶbŅ«Gė£Yj[œŗÆ„Žć³=a®„£>Ü ļ%S DDäŠA‰Óöm™×i‡a²č V§õčGĪ(Ń„1æčÖ»ŠHŒiPĒ?6;®ćJ)Šŗ[&÷5¾qī‡uähø˜"€mØ*łŅŌå”C“x R£hšHż»¦\łƒ}9åV½éÓL”É’s(‰¦°ōąÜŸ9Ē>,©‘ÅlŽęåwļ¹s—üęē!®gcƳ&‡°7 8Ę  Ļ®:æ»Ē›v}ųŌµ•N>TQt®ŒEt³ļH˜^¾-óźP×ńĻźņš”Ą€.KłÆ‹¢G]i6¦Īčiµ…œ@čbZā-ļ¹āO¼Mmiķ7$ @Ł3'©wõŹ‹ßÜDRį0^ …›Ęnw'>™£Ł½÷Ÿļ3žĄ,¢hVü쿘lkÅ×6kVä·åsg†Ę…ÄĘN‰i³Ÿču[^øļvŅ“%s/Y”<-¦`ƒām±zq¹»z٘’ŚG¬D¢ + žmT¬V³b”ąąŽŌGńÖ-¤>Ą€d‡]zś¹{·uCķK£V"5P DD$kčcł¦Ž>Ŗ‹ŌVGJcå–GŸx޼Їń¬č°§ÉŅóó-͟^ļ)oP>ŻUŻJZ @“S<¹½$ŲÖż³š¬¹ūÕÕ¤„ž°ˆ¬HĆōŒŚJ³­§ē5U7³“čĀ|ß_2.7Ÿ`Äd¼ą‘iņ²#ü`ńˆ+ĢŹÉvf‡+„¬Ą@'©ē)¢‰ˆ·Å]n0š½ ¾ęź}¶Ųø”·Źŗę׃d*iЮ裲 „¹FŻē{’ósbv6*­ŗZŻzß/c~ŻybĀ $Ž»bÄ’ßN^8ēčÄ|Ū#“—vžŁŅećÓ-%0pBÕ-鏏¼ĮīP”Ü÷¤ŠžQžuSeÕæČŒ@ōĀMKm毕;^ݐG`  Fxė »ˆˆ(Št•L@č„xmęµ9[Z“s‡^#…ä @/)i \×Z“q”ˆˆbŠ,©Õ[H€“šÖnŽæN÷“Ż’™²Ą“Jų9[tĀ™čŗꛔ=jDLjĮ\!6rą¤"|£f("’ąŒIo566‘ :0… GŽęŃfD«ęģŌdŸÅ3Nv‘ (½¢ŽJ‘VՠՒ:c @Æ“Xź’(}fkµ&‘(}¦čĘ8…=(}ŚØk¤ @Ÿ“(żįŒ‹"P ś,D"¢{·eR“¢G˜UGlļ¶tĶ#ył?N$Šköȓm”X²'Ųm1.²¢@ “°Ø{UCåaČĢ›•kVKų * :‹UFĢ”==;f쨩6ÕHy Ö@ōš"Q)”֞žź5r¦݉7Œ×ÓVŽVņ”@ §1ˆž<ČŃżs*B@ϰnMŪ­Äų“AöÖų‰”»ÜǬx Jœ-^² $Lač³Įę1s޽\bō pźƒ€“ģ8ō”ĮNg×Ǽ>ū NĘįzĢĮ¼ å>®Ą`XpR^[Ź‘ ¹ŽŒ;‰¦¬ÓŪ'­ĘŽĶkö‘]dgŖĆŽ9r¾¹+tX†lk»m·]0>Éü­5I³·ķ¬Ż,«ŗłuhK҉ŠÜĶ…ł éįœ0XŠ/įžätÅ$¢3Ɲ>>ŃŻd«/Ø¹ĪŁR pbC­Óę+¦”C‡„ł]Õ+÷o“ļ•‘L ` @?µ)ŽÅV»WD¤Ņ{øV¤¢fa‰!œ‘ĪNų TKµ„¹ž•Ńįiüܛ@2t¢„hꞟ szķ""« ģ%+ Ś™Ó̹Mėq‰ÜŌ#"d1ŁI+@F D 7¼ž–ŗęZ]éi}#¬Ł9ŌR4~ģģŒT­Œø@»¦­oDff-źyƒ‘é—Ü:jÜ«Q#,F Љ"Åp‚ė]«qü DzF%fń{OÓ8Š’ōJź”!s“Fr‚č£ƒ_łŌˆŃ±9_>„“’č5włĮĶŻdUųÕ0Š™óSgo_^¼‰ńč“†Ņ†²¦:ß=#}S²©¦dāŪ·-# 0Š'ŗĒ×ām"0ŠGÕ«55ó{Q` O4%ē¶Y÷l$ @Ÿ(¢y|^ė\”SXzW zīߝiŗ‡),0ŠG#Œæ>a 9€€>*Ūf“Õ P śZ ¹e¹¤€La( @€P @Š—2Š š"¢ˆ¢“(}pŲšķ:£jKG @ōeü”nĖÓ=“Ć„A'¬č ³bŃŲ_€€¾qææDĬˆJ @ōA°K8CR @€€P @(( @€€P @(( @€€P @(( @€€P @@( @€P @@( @€P @@( @€P @@( @( @€P @@( @~ĻDĄĄ–s^xH×GŠwģÜG. @œDTņ{×G*Ź„ĮYĄą,®ĢKCÉ€>Š™:3y9ąlb š E› ¦Ć[É€>ņ5|L  @ōĮ”„Ē…ÕT@* @œŌ¶d€ļ‹č @ųŽéF]!P ś,.ĒąR‚45‚ž°ˆ [a1ÉÓē…¦XŃXH` ×¼­ī݆ ƒk©0Š'«]DSų– F śDŃED :I€P @(( @ <į©Į¤€£8@ÆÕė|ė ļ/—ęE¾L( @€P @@( @Żś?ŗŻ%:ŠlIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-3_dim.png0000664000175000017500000002110514632072346024666 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ:: ęÓ IDATxŚķŻi|TåŻ’ńߙ%3“I&™ģ °ļ(«Ø( u­Ö„Ø½ŻŖ­Ö­·ėæ¶µķ_mmmÕjŻ«h©ūR“V° ˆŠ" Ź d!{23™Éģ3ēÜDIBBČä|Žx‘™93“ļ•W¾¹ĪuĪEčYaĮŁ—&Gļ9–Æ.YC’€žˆ@( @ @ ·™ˆ=#ĆąRÓLĘT-4"Ģ«£µłĆ­Vi d„Ē4_‹ĖOB@£p"”¾މ„šEœźõģZ|Üo³rµØb“eųźéŁyŠØ‹Š XŠ„Zź6Ō®mY›3)ŲÜ“żżÕ—'Nö]ˆj0Śģ™žzCÄ ‰¤K)š•µV¾$ē»#®[RŅQ6¢‰ADT‰„\•+Æ{žSŅ(ōÓ‰'YS挹鶔x$fIžWŻŪj֙s¼•Žə-»[öd²ē§ä§„&°34 %˜š łj¼^±%YE‹ĒCn³Qā—×£šS<)™[žöĢ2FH\¬ą`ÉńQ['ܘUčÆn¬H›d3Hr²"CīŲܱ~oŒ&¢ī©vrz‘"–³AD$š{Œ©±ˆ«Üš­F£õ ;ćŃ¢)™CßĢbDU5Œ"‹mYqµ,X©iī(‘Ģ@Šf š2äĢ ·~„¦HJJš}XŠĆ`WLf«b ūæŹm·¦ K²[,±xK}fĮ¾-½nƒĮž&ākq¤źuCŃęŹō\kŹŽå]őֲ…’Zģ 0‚„+˜Q3hbPMqĶ2āüģ"£Ķ_]»Ćl89-’›Ēļś"ļ˜P}MISĶĢ›=ų>TŁSž‡É{܌@ ˲LĶ4tżŠāpFŖ%ēÜ ’#"£~Tx‚¢D}ފ­  ՜6łŚō"ƒˆ„Ć„FÜ£ĪMqŠˆØš¢("R·3{xOˆ&‘čŗĒ—=ńYcP čcœI™Īć†eÉ2 ˜\?Ūjn*żų²“Ž0Źö÷ü•†˜½šÄŪMf‘˜hto­,vÕ;s ĘfŒ7X<5YEĮÅ*Š=ĆféŹėF4“Ž«AK²bł¢žxŌh1ŪĢ6ƒID‹\%õ«Ā¾pć†Ļ]»7ŠČ)ŁQćēuŒ@ąčĻ5ŒqćÉCNśĖ€É)&“A”ī-]T2oĘ_“4ĶX±ØiSjžČļg1ķ=¬B•p µjŪ»ŽŚA3£ ĒtwfŃZć-ÆŻŗxnś‚l‡ĶžlrČ-¦“ŗ?zĖS„†®¹~ą©&K’³ģÕž¹ć¶ń·~ł¼Ļ÷=GŗŃ …µ”ZµŃř#‚Ž0AN¹läUĪ1“Æ:hŒyʞ¢ō˜²å_<ž£łZ¼„2ŠŌŌčh;ŠR³÷D8\_²å}ēˆiW”®½~ݶŠeÕ­)ւL[š}ˆ*Ł£L<…&ÅOŽ}saĪ“V«ˆH՚ŸM¹å¬EĻ>ųƒYÖoj¹dō”;œ“­NMÕh 56×oÜ½ę³®0ć P 8bR÷2üdeļ/ėMļ«ŽĆœłū’ Ė’vÖMI–ofŽś†²!ÓĢŲM3)]}żźĘ¤ģ‘F„­yI8Ųø¹t„x‡Ļ2gäūś!•k®›.2)oöŸæ¹#|żÆŌģüöīÅ#§X\šØŅ\¶łÉ÷’¶‘!()SņļX»ļ [Uüī¦ę¼6Ū¾G47dęųėY9āļŖ”bĶ›#ŒI–dŽ÷jŖŗü®æ=rŪ/¦Žåkl^?`F ±i­–9ž“éąśńŌīzūĶ›)€A› …£‚»\žÖ»~7ó>å;æ|#1ĖQ>u4Åōk@‡ƒė]ńŅ9y†ĮŠq‰yźŹ’īzsä9s4āöää$ĪūvWÆ]8vFĮ„Žę1ÕļrÕ?rźŽĘ @Š£&gz昋æł%‰˜Ģ%1Žy«wķŅζģ·. ūŻÖdKj,²}”æÖšœ^ØĘKēæöf~U€A*tÜłĪ€Éöt%!ß½»É‘aüvE$Ū³Ėétä„ü”fOm’’Z¤Å½åU%¼™q(ō°[/9įń“\„_}O­-šfM55Ń“ņµ«~ņźfF苸œ{B«ž²µN“¤T«=Š y}iłiöDž~Tmū‚€9ó˜MÆ; ķ¦ĘŅāæoŁŁÄč3 YFÕxꐔĀwæz⫌;¦®ł’­Œ#@ą(˜ūÄīO÷Ż·T/ų”1(žųG×·zõŻG[cŒ!@ą(łw鶇õ`¬˜ń(E b•HŠļ÷%ŚrHœÓ„ĵ°ś‘3‡_ųƵæX\2ēģ…§˜Yc¬É‰š¾Ć”×g汚ń(ō?æ(m\įé…Ē›J§»W¾0gu#P čCĪĖK;~śķəłćśv‰øŻ{Žk-kmŌ6ļ)žjw€‘(ō Nēӛł}÷żÅµ_kcvjzŽ*šlyõĪ+3 ļć„tį„g_~F%Ļ”:Ŗ·ÕUĈŸŸ”Āˆ‰€£°tįż÷VŽėļÓėö“Ō)6wŻ.żčʕw2b@"`–nĢ*œyļ ?5ōŃ„MĀ!«uē’’=“‘(ō9'Nżž}cfŲSūŹūQE‘oś,® "õ5ĮŅĘõēĆ7ŗCŒŠ×±¢iŹÅŸ8‡ėāŚS³(“©~§)'{bŚØ””©ĮpÉIŌ¼œS¦Ż‰œū¼¬`Ä }D‹vę®į§xkeųŃ}A聯’ł›²żVd2 ␸Ė'"24ł¼K}Õ/S@`–®\9>iö ?+<ę轃pčżKž]ČHżGaéŹ{»;=į£÷śš¬”ś˜ A]ų³Óo<ńčµsٽ§5Å€ҧ/ø+åØüŻŠŚņŽåŌ@ J¶-8 R³|Q éTšé¢Ū3g­ü,Ņė+!ŖlžGž‚„5(¶ē½Ššń§Å{}ä›Ėę’—ü  k£Ä[2ņ4‹Ķ¬J4Ņ›Æ¼g‰+Bž‚ęńx+ŽŁźW¤Ŗ¼÷>E]“Š„dP Hh™£b¾»ˆųwlPE¤7j$]²’ģ  m@Īø©)Š“z—ÜļŖžąŁšŖ=;üĪ¬ÖŚÖF²ś®…„;Ͻó£ļ ™{ü®„é‘蜉×ūk%®˜xT4ÄČč_8]·.žrāŽd™7išōTGŃd刞›¾ńÅ;Æ&s a–N]=cŹU5o ēv‡=*wemŁ‘}½ˆ‡Ģž†]XŗätÜxŅŲė’,š|_«[æķĆĄö”Buˆįž9ń“:@ ˜5U“Uļ¤ę8-¹“LĪ›ŌRšŁ™Ńo äųģģü””i·ÄRZÖlx£²t#Ć$(Ö@té'^š¦Å—šÆžsßw„ę’L)”gё[łģvŸŃŅ“½¹zÖ_2+ŠÉ "ŽøJ½åŖ7`ŪöģĖ‹€AŸwóm'ݟfń44m*żĄœ‘\Ä?ń¼#·KED4QÅxĄķqÕļŻõńš{Vn©W ±° K—B[›JBٶ¬ŌŒōœä“kÖŚR£”ĀŽäŹŽ¬p¤¦ģ·ß3Ōs‘w€Č8×Ų“gµŪmhyQīŌ”äŽ|żp°¾bć_^yĶe,  &ÓŚ*,8ūŅäˆj}i\y\/΁Ā[’õŠĻ\aFH\ģĀұęŠq8µ$‰’ķ9YE½óŖšØŅ“cż/żÓÅŖ@ Q„}ɤÄāq‹ÓŌĆK ī&gց·ü!g{݊Ķļ–o[ē”ų ‰*Ė0ūÜĢq9EA{Łś”öžŸi¬_<į4“±µ5ٱČéšī\łXqu+@æĮˆž Äxć›y3ĢŽxcÜdĶLu8rzņ<M>¾5ą)šŁā®\ŗqÕ/yĢ@Šoüō/#fFā¾&“ŁSć4™6-©Ē¤©róS›ēæ_+/‘3Ą żL†ł×ˇN°'Ē%Ó4÷ū(‡µ§–AŹKž?m­›Œf č—ҳ2·zƒ>[’˜~ĒPc]š9.«¢>€žĖ¹ė–·a÷‡š?ę3&„¤¦8<µa-Ö#ÓQMÖ<śŽŪä P 跚ākī,]Ŗ¤%%77ĘĀ9ƒVS¬€Ø²{Żw5r¬ ģĀұ“īqQÄčiLĖ4»’,_RŹ×Õ×TµnėŻ'»Bd P č×|±˜ÉnH͉Ö®«-ļē3hLLբůlyįćb.OčGaéX†õ¶WžŖRSķŽī>ĒīuĮĘĀ[7n·{ž{„‹“tāŅ«'^1īToCFnW· š·«±P£æŽœ’ł?£MÅĖų<@oŲ…„k›^Ø.I}sČčo>š©ó‚žÆJ“ˆˆ¬Æ(/YC–]Ł(…M-›¢ƒWmVAg+ÄSŁ“=֚tĆxuÆ„±y·^Ńv­r×wn‹p«Æu÷ö~t.ä˲ė‹+Åęs©*…œ±cMY$č»°tÆÕ½õߊ©hšŖ8³5UyFHõVw}CI¬‰äf Š9%Z³Üš––7 (9ŁŲ‰ Œ;;5ÜP ‘˜§µ>¦vfQ\“@ø¾<ÜLf(ˆČžĻ¢ńP“3 žŗęśŠ|{Č 1Ø„ÆÖ•#‡zœ*!CÕĒ®$€Etģn,ū ½(¹ £ņšÖ4”Ē]ž/•8y @š-EœłOV[ƒµÅ]œ>ą›ß €ˆˆÄ=Åo®ŠupE«‚”y#É ‚ƒx¶•\³»ż“ ŠĀĻ €o± ū©[·e HN2“QšxZZźČ3“õć 6Yŗ ūęėP`’=Zѐ{'`‚¶łźV…ż.µ&ijÓö¦ŗ“a…EED¤%Šø1ŽB@(“C‰Ē}•—-Ϧ µ&‹‹›Œ±ø«YO:(t4 ŁéŪiĻ&oEó®¼IEÓ¬6W]Ɔh‡šŲ‡5t4‰…*¼»Ueó’¤tkŖ%Ģ@ŠŁæ0āīõ+JSm)wķ0 ]˜…hŅŚŗE„śš?0‰@( @ @€P  @( @ @€P  @( @ @€P  @( @ @zŚØŒƒĘ@0ž\óXÄüņŻRJ˜ KTÅć1É3tу7ŗ  ]äņ‘€žĀ., @€€P @(( @€€P @(( @€€P @(( @€€P @@( @€P @@( @€P @@( @€P @@( @( @€P @@( @€P @@(@Ÿ`"żČ0jv„ULšYU$Ō#:冻¦Üé« …ÓóāQŃž¼¦ś­×ž“L,(Jį)v‡ŻńĶWö¼c8£~Ķ‹­$ ;Xщ4Ū_ 8~’[¬fƒāĢūŽ/FĪPņĄ ķøš¬1?0¶õ`{”)µzyŌMF˜  ¹Eķ µQ†Ī8ę:ĶLF(“į¹'ŹVÄāmßg±e$g’ mpÅwzå²öī5*Ž<2@ MīąęĘU‘p8l,’ī½¹H‚vĢ½ģ“ˆ:’Śk _żįwĻ"LeĪ!!ŚŌ ŽsīsĢ_¹\ńŚķÆy›öæĻī˜~CŃ)d ó8ŒWW\!łˆČ‡urł„cū똳÷Ż—šeĻ%!Ģ@pHÆołųZW徯}Ķ„’ °°f÷»ßü?ܶ<}$礠@Š)Ū_ņ·ˆˆų7/2™³Ę埞w¬zP 8”—Ö®{D$ßóUż¶1§9f⹓®™vKĢbĶ‘•Ÿ b]ēÖ>=ģR‹ÓQ0čD5"Iqm:vĪ€ćcįÖšĘ e+•0 @Š†ā°’Æ—Ż–_äa1‰ØŅŚX¹}ĀyF1Z,C2‡ :½~Sõ-啤P 8€§õ‚Ó‡ŽW$®6ÕıH ņų¾]JON<}Šō]Kvż—¤|ū¹uNÓź–j"b4ä ’’2ņ4£²’”XŠbTlC§jĻ›bH!/ūż~ŠČ@ēœögĖY{ėDŚ:Žwó’ōa9ƒĶĘ æ~ukSݶō\‹#®Ż$‘Æļ_¾ŗd 9tēźéĪžńĖöOѤœž¾ļėøj0("ākܱ°īKE£@½b Dēę 9’5«³£óŁæ>DŒ{w{¦fOśiMńö’†]¤P Š”‰7ē ķöōUL³ē­KŠJ~˜Ūœ~»ßƬaW( ?¬čZ†cneJŚį>K,V¹²įs£É½ó…ø8c`]üżō”§{Ų?D¦”3‡Ī‰«Ń€¼JŖ€^pˆ®5G×?ŌssP£ač¹d P Љג]WŚsĻ–==ÓL¦}ˆ|žh“ĒÖ-'!R€.\w뜧Ķ=öS`6=•L ŗ0䂞üŠ$Ņ@¦]õčyä±hO®Ø @Ї­»ĒUÕsĻęŚńé2(čĀK_~tcO­”kR6Ÿ  :1§hąÅŖōĹ š”-{śO$ č—2ѹ”öc‡gfŁs’2mSOøJ9ŒgŖŚš«®‰śĮ„Lt®Ģ/_~żæĒN}4V¾}õč »° ""N[ī“īn‹Æ›’ģ”EU¤0Ė·9»»mŻę‡ģ ‘!Ą śüKĀfLźŽ–š”¾B}tkCC,ܽ-]»?üœü ŗ„„»S ®Ŗ@pÓėJœü=b ""RčõV„ŒėŚ6šl_¬ 7‘@@ĒŽ=)kDW· x7šcdč»° ""£.Nźņ"ŗb2($P йÜ㻾¢i\Č @ g䢓2Ft}»xĄĄ„c 2żÜóŽIźĘO‚Ł7P!3čÖ÷‡LūMR·ž0[R2Č`ŗé¬«_qdvo[UGI`]J3Žŗ©»õ!ā«ŽzČ @ K·ż~ůߌWĮĒÉtŖšŒĆ9“C‹ @@§<Ū»æm4Tæ :Uõ^8ŲŻm+?mŽJ‚zåß%OV•ØŻZɚՐ oĘ«k®Øü2Ćxå#Æ4ÓÜÅkaYģäP Šw‰ÄåEyqŽę‚±]Ł*äkŖ ;@ßŲ…ÉH2wi>”ie‹[«Č  @ ÷ś°żyEVQW¶š·ģZEnݻ溁S»r:H(øž91("Š;§uÜ ]ū1hÜĄī+HæpėĻgd„)D$#əįĢuvéxŖŸ’:wt×^/ā%s…•š2 ·?3ū²ļ ū¢Į ®¼’™¼c ęM/¤]ßŅ©Ļ*Ļ2\}ó‰·ue÷U4RłYł r@$¼[˜r­A±Ł%[dÖÜAS ŠČğŽŃ*·zŪć³ļxpāU½V$šdÖ¤lqه¤€é’ŅöĄč½Kį9ög×}<÷ŻCm{忆ĶīĢkŌl¬+sÜo0Dž2@ō ™öżßTĀj;÷Ķæ¼žąµ®xū[žāĘŁ'źŁ5‰*–ķYv‘4€ļāmĄl¢jᯒ?AFͼb‘ÕÖö#Uٳ¦ęćņÅ/,kėŽtŪ#k;>÷\•¦m»?֒š¶qŁöå«KÖ02‚¾>`‰k1‘KĘĶ~ŖšÄ$sĒ„æüĒ#æptĶŻ1ƒÜe6t“Żę7jK:÷ćAśÄa¼ F k{Æ:eīŠY‡Ŗ‘$ĖŌ›ßų›_:Ž~ÖY¦ƾaNJėÖń× ¤ĪE:y.ø"ŁĆN~ąŁņ_Žø’­g·wšU,Z»½ų¹P#  @ś)KFŹFΜS÷}aČœŅŽc}žuĻBä €é·Ü;ŗōčŚ%·ļß(¦vw~y6㤠€é·IŁ•Ēļ|uɞ}_š’׎#cAŅ@ōceĖæ:æĘķmZ’ü¾Æž÷²k>°XŚ{¬5tt'&Ø;ŸžpuēÆaåŚ3ėž?UV~÷'ådL;ć¦$Kū5§’. ¤ß™y’„kē?x¢L™t›ˆŖš1ėԌŖĮ ’1€CaVŹ4’üµ”“ī ¶AL‡ńp=õ€é§~|Ո3ŽŌs‡å_0€Ī`V*˜u¤zß[W2/XG˜ōKNGŃ9Gę™#į/_¤>P ż–ź »Ģ3W~ŚZM¾:‹]X‰Ē ōōSŗ•˜9µ’ÕHö«' Ę÷ōs†k‹ß:3ÜDŗ:]X fDź€ļ)=üœ±ųŽe#Ļ©ZJŗ˜ōc§œ–=¼gŸ1Yū¬fjZõĶē3~iõG-µ=ūŒĶ„Å_ī­ [Hæö„×µ„gŸ1 ģ>’Ņ’U.źĪ'Ͷ“s‘vUŹ>į£kP ŗ°żÓX—ÆU iķ|HTcYc™ @tį“/«ŗ|¾Fc#„­Ū]U’¹•DP :ѱغŗŁ*mģ¦ņŌæ9£ø„DP :qĪ {~W·‰xÖĪJģ€ŪTŁšŲ»Uä €э™÷¤ēuu›ģ!Ķ[ļ÷ģŌņ•ĄšiāmZuļó’&€īćDĀ“n}ź{]ߏb;ėŃÉ;><’†Ž)õEC§ĪZńŃFĻ}Ä €ŃєŃjĖīĪvŠäŽ˜ųG™óĪVy›$öļ#"H,ń7»Õd÷|ņ@čTFŅ æKĻļŽ¶ŠLøķ†óÉ¢K·ž~ÖĢ–īn=xśŌ»É¢Kɹ‡7`®­d€Ń%³ż°ź£zĮ-d€Ń„°§ūŪżKō¹‹ P ŗ“{‰ŚĶ-#±moĶ[A‚(*.iķāB“p“”lósLyķjņŠ“8‘0œ6ģ×ėRÓż8UVĻĖ`0‡]¾ņ†õ}ÖXÓ ’ DĒŁÉiyœA,ʛĪ"/G»°Čģ|¤ÕIZ(ģ•ivtņ*¼įčæo#/öš>ĄžŁÉAÕʎ&/ö*šlĻh’Ž ’³ßW| ‹hā­W}äąHc=a“6hÜ«)ĖžóŻ{ģ“¢ÓÜåo¼ć ‘ {Å:<ז<å„'Ž’b)yš°ōva%Œõ‘`3 YŅ­WĢ’LR˜ąW>i³uō—Ą9/äžčŲŁļ“‡Č 3ģĒ’Ņńż»W¬Ųß蒊¤0ĮŹęL²up9÷ō‚LĆĆĆ6f 8PńŪjĖ讪¹'¼ō õ€ĮAJŖZ›Śæ×½iU3 @Š–ä¤ŒöĻ1Ś ‚¶©÷œ^¶ŗķ»‚¾­€ŽÅ"zĀøü¼Ńæ:¾^‘šu /æ÷`‚¶<ńŹŅ›£ŃļŽZæćķ³~9ż7s\|d msZ/x9É|ąmļG—żc±+N:(“k‚C‰}÷¶Ż ^ZK2(th“[9h¦‘\”a&:4ēÄäƒ>dšÉæ›ļ“’ pž”|Š'+2ęü'Kē®śÕ ä€A›.ž:ķ’)mÜ®HęĄAĒēĶ"!Ś4łśTg{÷µ„ŹW mŚ4æ½cu5ńnnx„ō6ĪDOĒżŚŲęķ¾ęƞxņAw„0An¾¼ą˜¶no©[vń}æ§>0A›®ūįYõ/t—ŹIDATONmėžĻ<õ ł`‚6„O~ø­śŠD“–2ņ@ žx“åą[jķž¦Źµļ“ ķŖ[sšmįšuwß:žO!@ +ÆŽ¶ū³ż?0®-ŗź©ŗ|dąča=¼·ÉyĢqĆ’w£łŪ#yż…%ä€Éµ„(ūUŖżŠsH‚NČɌ|»ĆJ“ę–”cČĄŃÅ.¬1wŃMWŒæłė’'fŒœtŻEóŽŚN.(ŅÓ eį×’K7¦g_ymĮÅņGR@  裪ņx¼kóžo}ėP Aź:ķģ…sŽn CÖGļ1$ q*( @€P @@(4ē÷¶ “ŒEL"aÕ«Š ™8VĢDŹ¢¾AEcŪcŖšĪīĶnl“’ Go’Ūų˜}ļķv‘9#=g;3œQÅ0ėä€Į!“ ųÉÖ¶Šże…&sį¼9eŅ»õĒŌ %lø¢Ŗ²ÄL¤€ˆayWD†K<¹5†GŁWę°Œ„F£ÖpĒxU׏±žEgŌ4¼ó¶–©˜ …JM»]ŖŌ–•ĪÆhČÓCS e\mŪ3Ҳ»s$ aCSÄED1 ‘Ó?ī®ŁŲŌ¶Ņ B0IćŚ0‰!R]RŁxI±';3"±n­æ}øŪŠ2<žlGķČ&C1&žoˆˆha1ŚŽ >0IC•Ł…f‡É”WTY5-ęŹĢzoBŻPÖīZóœ”O”Ė)Ÿ ˜¢[·n™(‘÷v½ó“›w=Ņ5HŠ(4T;3óŒ|—£?:õūōš†²żvēøeõ«[7¼æ£ķ åRx·«{ļ"ŠR· e# @ŅҬ„}@dVE~uɌBE1D|Eµk¶Xkč¹öqˆ(–ģ¼Ń~ö8€ä`$„mėSL³gĶ:Óm±ÅteĢÜ?:Żü²ę/-(kŒEŠ2¶’ŅFTśÉ #ˆČ s*–eŚ£"1µ©{ŪŹĮ”Ŗl™Ń¾Ö`·`‚ĆÉ,¬²I4`é mY·ŚˆŠˆÆ¢E¬&+dnŚ9“¹y÷¾ŁŽ/©88„•Ņf.¶ŒoŽap×+Œ@˜ĢLÕ1W­i¬)qŲ“ŅįīŽ­¤€Į9”†ā—“Äiymeėks(ÄĒdˆ‘#9bD2„śp,ńDĀé°¹ #$(`ŽŁ¾}%9 @pDŠéœšØmŲŁ<ØĒ“w÷ŗÕœOą’ā×N*–GQĪW’o橽[n>Ł‘ Gmµ\unÕežSœ.g¦"†¼õ½ļ~›\P 8̘ć{?)Xģ^`v؊eæĆŽ~ßN~²™||˜I ĖgĻł’Ó~šē¹güJ9+Ń|87%Ģ:Õ?0łX±ę¬śłų(p+EĢq^{·£²ņtEČ-R•}ß ļłń¼Ć$€Į!f›Ewą”Ūņ+KJE QEÄŪźŁvĒÕ¤€Į¤.¬h¼Ś·Aqē4t6Õ6žŻözń¼±HøÅf*]Žzׯ’BFŽ-&ŃS„3[m/žu”Ķ3GóoT-øĮérf)zp(ƤزīåÖqRĄ“*²’ū[Õ Ģ‰YĢŗhŗI5$2‹:sL¦ ~ėz@ąNŖ½ś·Šž9£°@9ą›Hų©Kļ‘„P 8ō.³\ó5O ėt{yaqQپĻ{·’ėĀž ł @pH™¹ß|tĪ™6ēŽQˆ!"вī—ß¾µ¦Čp“ķįāB6&ŃSŠøļÜ[ä5—å)ҵŁbh2{*Oķ‰-Z^?+Ć2Š¢gvE‚ż;Z{I #`YĮÜe…Ōtn ī¶ē+JpšĄŁ£ūCCŻ›×ś‡ @š§½pĪį—ŖƒjOsĢ÷ö[†F^’‰CXӜC/×ĖkÖą˜l" ÉÄĶÓĀ€¹Ÿ»e @øŹĄā‹ėŖ…$$‡°ŅD„č²ņå÷<#$(3Vä^te]%I @Cbį¼|e>I @EģęįĢa&@r0’F\“Śē±ž!+É#$Ä®f*įĘ ($Č+‰–Ōžp~®,P HP]Ąęa€Įä[ę_¬XČ‚hJ‹20b™Yą" ŁįF”j”ūzƒV²@ ŠXõČhTėVlÕ¹ä€AܬF†³żoE5¢ŁNQ‡ @/Æut¼0£w—č™{”b'⢇^jŁehÕ5åómī%_ä|,SĆ­LŅN±qö•įą…¾…JØ@6®'Œ@'O¬ĢŅąq˜Z;]¹' #āēU†ś*=”°ŁD¦†CX)ĶpLm½ed“éo]^QÅ.Ar0ŠA)ėņ«rŠ3#SY³Ēņõ›¢~ė@÷ęŻ{HĄTp+…-łÜŅĻjSڃzōͧÖÜ»žOZhīēI @ŅLĄ—7«lįTÖ i†[T#ønUė_%J’¦‚9¶mĖž­–ąTfĮ³Ōŗ*-«~XZwģ GSĆH ūĪ“ ?åļßöčHŪTÖŽØw·ŗ£öņ•4Bd €HZywU“Mד)žśoTgϲjCVc @ŅN$2Žq4ė[5‘õ`Šųõ‘ĀŠ=Žņ@ę¶įn}Ŗ[±öĒD'IHš©[RwEaŻ‹¼łäȔF’†²Ē6–I˜ a„0‹•ky—Ķw–:b¶ _sbėė2:ŠŻ+œG€IĆŻgŖXxw³-'4¦ZūÖŪ²»×›8 µ#Ü»Éä…P iHw‰HV†!®sƒ‘~mĶƅµ•q][®©}£±īƒCX¦„9iS$† tŽæ¶śÕ­«"Yń¬į·ųś¬ÅU ÷ć@¤7]+*;ńĘSŖĻ»ŗpVÉ%«›v ‡=8•)ÆÉ’,•ŸSĆ!¬”¦‰±X ½óMknŃ\³©ź”Æo6Ūt­å’Ö®ĢĖ/ø./|čuMĘģĢ–Ł;·r $ķDõĪ+j—éŚ?œQ‘ł“¶,—Ŗ8"ĮØ­śójė3“ĆÆßīķŲĶU4²@¤‹I tmłĆHnnŽłĖ†}Ž «M$¦‚żŻ—–Ž›0¶ˆfų3½õ`J8žĀŚ7dž2³b~{÷ēoÆżr”Ūj ETÓXoh cŌ|ÄzgŪjėƒÅL¢`’vœåš:ę1²+š<Ł.Štovumˆļā@‹ęņDĀżŒ@0I7¹ŁuĖ O¼ŲŚ’öØ_$+§ż}H÷Ę·…šp}‰šDBŒ@Ņ"3/lŽØŗDŚžm[1k¹źPDÖ7)\‰€IKNēé_ķ\7>Ō³N—ČÖ?‰‰>@ .vGŻé##bī}ID1øŖĄ±ĀČ4 HNŽE1z @x…̼ člĆN(Ä!jD÷=ŻTؘ;ŸLP ˆĆĪ—×?8Ō„""&e¼Ėž©s ‚#óTFkļÜńŹųØ&š”ō¾ŖņtAĒ ga„°ā†ŗåĶi{z× µž%#}$€ā¢6ėœ+Æ6kCŪv?guøf’ F ˆĆč®į®ģŅ’E£ż»žģT ī‹€Aüžim…e‹l¹b¶eŁ”š™ @‡Żƒgµäk;ž2Żäš‘Ūņ¬Ā$:€c†9”ę÷Šˆ(†96“)4N a‘Ń®•\€€Į±b+Ė(%ābHȲ-A‹ß>擒E"Žę@RZ×ęį>C7 ]×Œāś…×’żæ®G@ąČzĘdlļėovĮ†sš’Ą©¼Ž aM÷ż`¬»|AŁ9 ®FŻ @ŅŻ„Ÿź!½p‰ÉŠjœū €IwüīŽ“·½šå¬;—§‚ @Å®Ź1cß'ł'™mūönöģ9×fÕZ=$ łø{J;{Ę)汫kæ}_Ė“f›Č3k¾{–͹÷[“©ž¤`¤hntl× #ёM¦‰H‘ҾżŻY_Ģ-1D‘Ńž¬³i²%£Ņß²ńõ  ²>z IŒ@ŅJŽņż3r Qd¢5ņŠ^J3#£}cC±~«=6Nj(ˆMQ“ĆĶ‘8sĘzv… ŠgØbsīxE +:ÉH&ŃSXæ¾å‡½[ż½Å1<øåY§sęYŁŖh"™Ėæ?ū 5ó q Ą1’ā¾|Ķ…æŻ÷W@,¦Ŗź~„"fÕ|Ą(³żõmļ{ĒF iŹ}āŽUc£{«ŲõĪžßŚ­և!¾NR ́¤ø~“Cy`ēÄk]Ģsójæüx$ŖŠ(@¤£Õ=3ܻު ī|^Žę¹ī°J•ųq+EŻöļ¶„ĮQ³jVD)k¬\ģŪ÷­®Ŗ.ź‚I<}ļ7Īxō“ūīL2īUģbµåæ·[uŁ#¢f˜2H Ą‡…CX)ŖyP$ĖuļæĻr7ŽēÕtü=ź7³¦›–~¹oÓĪēb޲’½Kyl‡‹ź~׈hFoÆĮ“; $½č†”ļCęĻģŽ0Śßxs4”Yøõ1ß¶śó3Jk͹ógĢžõ~]Xh¦Ś5?y—šLtHz1Åb‹żżrŠk. ō·?3:ź®öw*¹Õēm~¾ī|gĘΧ÷[%|ą6Œ>P é'sldz >„ˆn(Źø·æ9«4æ>æ^ßīū{ŗ·Ø”ķõoēž&( =ró’–žhwölŠ¶æUxBx|ø„dAV~~„!‘±µkEØ&qßŖĶ_k¬µ-®…WĪŃuU ‡šŗ×÷oē4^ié²åꐭhń­YŁ"~oĒźą`÷fS˜ó³P 8,“X4‘āYYŁ"‘Š¦ßłv‰˜ˆ‚ųŒt ģ²fģxĀ·‹,P ˆĖÄ%€Ć;ßž•jÖ¹š‚„Eō!8¶˜kP @ąĆĆ}tP @@(¼‡It€P P @({œĘ €P  @(n¦€P  dŗÓŁ—(Äkß$ŗ%oŁæÖ_L"Ž3LöģĢāš°”(œ—€A"F;žžŸ”ź‚)Fx@!Ēs @(|xø @((‚÷0‡€P  @ą=\‰€P  @( @"ø @HŠSDQüŸ” €Š™REyŁ'¾‘—9īŪÕ,ŚŽĻ,ģ?ޤ³gńŞ*CĘ[ŸļŲh’ qÉ·™l"Šd¹ē_ķnģ_Ó»YÕIĄG‡9”±¼Ź‘+"bH4R4§ńʙ—ŠˆŲ<ĪR«[³F 8„­ŻŃĄxO×*KfŪ[Š’]™õIĻ]ŗ^ßń8  @0©M¾w’lńļœŲižŻŸ6=¢Zu]'LJ°R†!ėW ļ<šSĶÖFö—%b(zi @°ŸČX=ĮGH)†äąĆĄ½°RŠo h Dq'°Ž$7Œ@ҜbŖ]Ęϼż· ·oĄń;ēó%_T"ĶĪ×Ī¢Yåķ½ØÉ¬ń˜tąŻ4{w«‘µ"Eļœvu‰IDWc¢4v‡v½SwF®Y³įˆØĢ} @0ażŪūæė[¼a(×? ؎†“<š®ś›Ö‡Ēś½¾hnīŸøąš¦ß›c¤€ĮAÖ­ŽūŖjga½Ŗ¼õ–!Ņ"’é¬:­~^nƒŁ&€ĀqŽi¹[„¢¬tAiEÉ’@²>z 1Œ@ ""†H—t5ĢĶ_nc ąCĀi¼ÓXĪܞĄ0'e`‚D½ż˜('/m<Ł% `ČæUĻ¹ĻźŚłTiH6aMc·ę/Z_0+·pĮuž9‡i @šA«¼’'"b6—œlj.„9>čߏ¾ōן+&^›ÜKž%£˜LP ˆƒuNå%ŽĢ‰×ł%®Ŗn,˜²JL ›ĆÜ2 ĄQc}ŚŹš!ĘŽTfU$Ė“7ćĮäėYį=ŖUÕsęęy,́ @p€‡ļ¾±¾įÖżć­­ķҾ÷]^’_Uėt’05𶚌ž‡cŚŽw†lūˆ;÷’~øg,Ų“eƃ"+SĮ½°¦„yRā¼čGeWgäīżdĢ{ky÷¼Dš>„aŗįĮČĪš†¾UßśŚĒ²ėŽżæ G52Ą“śBže=VKߦģJg΁ßņĪżÆßžB)`‚ƒ¼3r~æ­“hž¤)ČĀ­ł) @ "ߨ¶S41ÄCō¦ŲĻVÆĖ)œ|YUŹ/XąÖ‡Kg:ÕKłUæN~Žga„“Ģo}ęā¦hS¬IkŅ›DäĮ;Śī;ōAɼĀĻžL«¼vÕMėNż±<Ņpt˜IA·Ó}‚®©öŒŖ‚™½Æ|ńc{?Ÿ§ü㳕īs]ĘlN{FLkiėÆ~õ4Y @ŅŹŻ/מ³wč8Ś’āŒū}"ó”Ė?^q{įB5ī[”„C;žyų īó`ŖLß!ƒ3OZwŽėNšh [FĮåķŪōŻYg4ž4»TIąWfs~ƒ„÷¼õ$ €Hšp¹ļßc·8yeLé¾ģ«o^J¢¦†Iō”ӐiRŽmS»¹®gŽMg“( $MųŪWܖ¬3p™Kįęg’šäįū|]ÉŚZAĆ ß©q’* $-xCžŽdm+̚sr%™ @҂˙]‘¬mŁ33MŲF¦(“0»$Ɲ¼ĻB—LP iįÄSMIÜoyåWžG¦(“P0_IāÖĀć'üŲe%U‰ān¼)(oNņ¶¼yG’.o„T$Š+ŃSŽ+ć®ĶīŖdm­cķĶ'“)€©ąVʹtqfqņ¶ęo'QHšxhåŽĒ“µ-M޽ŸDP ić_īMÖīÆä^X(ō±ŽūĪõ¤L^)2óŗ<®@¤‡īīX“œ-åŽōU?(t1Ø­¹-JĪdī—«ŠH’6|sŪ#ÉŲN’ĪÆŌÆļ&OHłćmƒ»~+=/yĒÉ’V6޾}{쨟,es“$ $ķ¼ņHū«G»ź o»$P i¦Iʶķ6ģK~źŹ"Kto›Ė^ĄO€q7Ž4g²Tœųæ­Ń`,ōóŽļå ‘F i ߢdõ€ā°gęäyŖōNź#iĪe¹ę¦ŃįąĻīwU&k›ŗ“ž‰dP Ӝ«¹“ī|-fIāŽ‹Ew¾C²Į!¬4b¼|kĄgIjłkŚ:/É @¦½§Z·?’Ü-Zģ yä €IÆiIŻž"µÕ¤ €I'üƒ)©Ū3IÕé¤ €™öę‰%3¹[ Œoxˆ\P i@Oņö·>·‹TP ÓžĒ“‘ä‡@õ½AŖ(4pŽOņĖ“¹=ææżER.$LICŪ Q’¶µ1ļ’,z³T0I‘¶ ?iۊīxŒś@¤‰;ŸXõ#ŻHƖƽĻ\žó/“( $Møģ5ØI9†Õ±āŸŌI’õażī³ Ė’±„īwļ¼Ž<P ic邒%əBļ~y÷8y @ŅĘņ’Čp&gKyóH’6žćĪŠÓ’µ­üł×Ģ&QHšØ\ęČIÖ¶rŠN}ä»?­Ź$U‰S 2H1w?UI2·gˆÆ»ė„µw<ŃI¶Lkަ$’ !y%ó®­æždP ÓÜxoņ·iHpdP Ó\vi²·ØĖš;ŗdP ӜNöwŻõĶįÉ @¦9ß`rO|0dūo¼Ar@L{VóW”vÄō½e IL+˜ž-æž)©HĻI9ž™|ßöęš/Ūk³J­®E_ŪōĄš{w}é·5§Ē{«“ž¶Õ’荒* $ dUļ’®sż½n•õ""ßŖ|ō»ĒE\žpeÕā#o)¦·½~’%ļŽ’)€©ąVŠłL}īüżßGĒ7¾_æ¾iāÖˆŽĄŹFć8-·é·ß?‹ś@¤‰œZūndāŪøļµ÷ż3©kśż²Ö•‡Ÿ Śżęż< ’.VmR-ūŽłż›~3łri¾ć¢·޵!pˆ†!Ū|zy˜:ī…•b®9ė3+&Z?Śśč+’õņĪĆ/Yżłæ«Xršß żė;(GIōŲĢ™¶ŒD–ƬŲ[łMŻ~Ė7øüŸ[\§ßtĖģō4|°DĘö ō“> $…Õ-©ĪNdłØ9t8DD,q~ōFå.ׯ?~ī9æpļwž–w#'ļ @RœšŠQÄŚÅvĒÄ+_üky#Źsó6ļ_ ]'yGłŪ‹R‹É“÷Įü‰¬÷„«.Ü÷ĪmŒ,P é5d“ļ}5ŠsAæbŽo“‰m[E–(“’×°÷UĶ•.SÜćK ÷»üŠ×ūĘæul'KGł-¤’˜9«rāUŪźWoņjń®ē:»ķ9gqn½jކFzž’ō_šB˜(t⩲ŚDD4cķ·ß’z’ł/""yŠZjOšŲP ÓAĮLU1dóc^ń`ĀkūE„ÉsIĀH ѕģZ‘įĪŻąÓČ‚8åT¹jED¼Ū†y‚ ńˆ†EtY’ ²@ Ń`4(¢J~5Y @€Āg®ˆ!v7Y @€Ŗ3Tić?$ ó‹čFū_†Cd€AB>‘±Įū~I($d¼O$Ė}õå$€ĮģÕ5—”]$‡xFahĢU)9›œø•Éq%ŠŽmņ^7 EDŠNuYš`ŽĢaīæ €Č4ކæ[Ŗśäߖ.É.-/Lt»µ.Ė!žT˜y‚ā wČ4g˱;.æ#Ń5ķsZ'ū¼q~ŻY¢,€©ąVźģŖģĢ Eto¢ėFC“ŌÄÜŁKĪQLwÅó™""±ŲĄśD×ͰŸr…’«dī’™b­:5ƒ{ś`’ŗō8ĒYE’ķx}Õ‰žƒ[Ję^õE‰-mźŻb(fSk÷ģź‹O­²‹Až(ÕśVgF<ĖŁ<§/1d×c‰?Q°sH¹ļÄ%óO\Õ{_1‰`Šøšø¶° ŪäšįnčqŽ:sÆz|īródĖĶ*k¬'-Œ@š¾õżEKśgn~~Vīhļź{ī¾u’!„cəygzųS#ģWR»va„ŻćĢÉ+ZrżĘŸĖĪ.±čäO/ńŖĮ\ ļs›.½²čōń—k.ĻÉ1dÅ7_> >fU.ZāāÄ]>hłŅ i±<Žķ.TDDÓlpt×R(ąŚEĖītå²üZ«EDÄd:ų¬HDSMT€“čĒ­Š^{_Ļ֎uUµf³ˆHptdóĖ¬}«©3įŪ'@R(̽Æ\V]YžŁk²˜DDŗ›o›;|ŠÕŠiĮ¼,wAM™mj’ʐõŃ{ŒiH‡°Ž[ŽˆČŁ%§~Õl ŽüŹš$ šlY~™”‘€c‹CXĒļąP=³¼ņcm/ßėķéy{Ķó‡XNrg;ŠÉ #¼ēŸ®-ø„wW~YŻ’Ąˆˆ§qO¶ŒNŗ iF”Ē"L„ @šŽą°bŠW2·sż‚¹y"-Oy'­9uŸ^žĶClP x_ļ;¶ģ†źĢłŖ*āėé~|²eęÕ6^ąV„ś@`[8ÆĀUŅŃ9Ųm³żķÓ½6Ł2¹•nī¦ ą#Ā$śqĖ.Ÿ=hZeĖyū“×P ˜Dd`ó³]oŲmYžƒæ-u‘ “zŖ·įœW¾“Wh±yĪt“ŸöxI‚I8w>­čęĪ.Ļ¢›¾ó_÷ęŁÉ‚8ģŲóĀĻ–žsļ.‡d;μcöfķūĪ•M>>jœ…u;õōmĻtnU¼Ż¢Ēt­c|ß7“_r Ćäō6-¤j®j’ ÆCåt_Hzhī+Ŗ(“dū»wŲĢĢ—‰¬­+š”,ÆZ“晬ā²¼}ėiŒ‘) $-Tg•\åŻŽņŠ«vūKÆ½š’żĢÄē#-O’~w§÷ć ՚]›]Šü'×ģhtżĆżļš @Ņœ+”U’t£¶°vFłķ¢eøē|aāó˜DŖš^žżŅÖįĆ®ݾn‡Iķõµ*: @¤ć®ū.’būęĢĀ7ļ_šńœ¢ŅŅĄ`ėööÕg]_Vł÷f>ĀDWEd¤™‹Õ|8 ėø¶ ē+?V‚»7Øņ©ļołĶąī׾әuŁķīŅŚó²ø…; ‡²qų¾>šZToZ10ąó.¹ÕUłä ī’īÕĆŻ"&(N·oęŁKÆn DzÜZō³_üÅgżv®š‘cäø·cčĘ"Ÿpe·ķīėņm_ō¹_Ķ%V“.Š!2>äU]%sæeї]Ø(&#ź7$¦‹ˆģīUk\PXodĪt8‹“H˜›,8Fƒ RF‘}Ö'f/^SxIn”Ŗłš«Ŗ­ć­×V˜ÕL—#§ŌnĖ ŖŃĶ9d}ō#@¶L÷‘Čc—¬6[ lŦˆkVĖ_s²ņNšõŽ×ztˆs"0Įa}jŽ+mW}2jIV¦=š-1Ą$­ü©ID~We­æ~¦Ęå >óHaķ‘P³ŹI¼( @ @€P €tń’öūÓ]Ÿó‡ŅIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_2.png0000664000175000017500000003106614632072346023766 0ustar fabiofabio‰PNG  IHDR ™q*UüsBIT|dˆ pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<1³IDATxŚķŻwxÖÕĮĄż(onķ“V@Ŗ­£UkµVq"$ģ= äžżĀŽ{eĀž $„.E–(2=tļ×®·ĻÓżŲŚŖ@ŽÜZ," 0 Ÿ?>Wws¼®ä{ß9'®¤¤$Ī'74ČjY;kūąs©z‡YiqqqóP¾ D€ˆ @  @@€ @ @€€ @  @@€ @ @€€ @Ģ €@€€ €"@D€ ˆ p"×ÖģŁģöv :—¾ŽlԠ҉7€ŠžĆ).®Rlõį  € € €€€€ @ @ @ @ @G¹śĪ”[æV/½Ń¹tmĶž āāā*™@wCƒ¬–µ³¶>—Ŗw˜•V ó @ @€€@€ @€ @@€€ "@D€ˆ @  @@€` @€ @€€ bH½œå9‰™›Ņjg-R;sUV’ł=·S&<^;skjķ¬mƒ“ ‹ī3/sE›‚¢@€@™}­Aś k2ŪLĪ’vBĘ C z\īź¶’“żR—Ÿ \Ųu_Ća³& ZŠmoBś«éiKŗļ³±ŻŸ{Ķīæ¶ēģŒ—zĶÉX^+}UVBĘĘ4 @ąc“¢öx²ēęe-¼Øćś>ÓkkŽöšĶa/wśe‹qXŪń·™/öųN«‰…3 Š£%£Ö'æNĶX\°'zhrqųĪŲM)ĻZÖįm ¦ĪHĢܒ*@WӜ”Qm§g,ī;ÆĒŽ [Ć·Šö%S¾–tŸ•łbę²īߋ½?nsŪæå{æh_ģćčæbļ)oGšN§oē, Ž«Ēćm \Šc÷ …=wމ¢}AɈµ~{{th6nS°?慎æH]ŅgGź’~ۚ}rāū{E¶NHې&@|DߣĮ‚ŲŖĘäāč”ćÅĘńÄVKśĢé³1¹päÓķ5ēžnćsļķµ$ėĖw·o}ķĮmŃū'¤üž @ø€¤¬įq¤Ā=AIś’ą§éK¢ū„ÖM¾üŗūnØzsĆ뮾3ģvCƒĢN÷X!@°C›<ß"õ’«.¹ųtdā¶š~sĀ%3ÖųȽøøO]yK³WW£77Ūµfļī9ß g ¼³Óģō˜Z©ėÓ’ O¤ @Ō8­n—ÜUĮo ÷‡:L{ąĮ¾³£ O%>ņ¶’źńX›gNōw}¶źM—}ᚻļæäsW^śŸ(‰…I©Kƾ3åö››īT£ßņt+ € *R%éņPė‡ów†’ŽEHĘ’ÖÆÅ6›Ē„:{¢%'Ś€>ywp Ķø&.«qىšÅÅ]s‚ÆĒ]yKÓÆOģ×%'ę@€PQWBŅė5ÉXīž°-śViP¼{œźp`ŒZž)(Ē  [Ć7Ŗ'W’z¹ż€Œó3@€PńWCŖE.¾„é-×t~(é‘ŲŖGY6ž7ĖnŠ=R%r±q P&ńWÄWj[ŠrĢäāąĄÉFȤ]įŪ™KĆļÜ×éžkŒ!€€2i‘ŪØSįŽ Ģ›Ń‡®LłyŻ~un1†NZóœ†]ņw’.k€Œßü3±W­»Œ!€€“v]ĶÆVżjš—2޲æqzż&Ę@€@™7¤x&Xs²ńQ“/,iWŲr‚± pJ¢š§ÅĀād#dŠü`CiøT2vŹä’«.¹8{Yš“²<‚»Č°åš=€€2‰ŻjŽóń6ó§ģ+Ū&ōÜÕ)æŒæ"žRc @ LŖŻqÕåĆ×,Ś*Ć*HIó”M:?eߌ^5ņ…NÓ[ŒŁņē“ QėĆß7ĻiÜŹŲ8eI£› :™Ē±Rی€€SÖ8£nV½žµM.|\€ ~.ygģ_ć @ ģ`U‰DzĻj½zųšą‹ö»2üå¶æLߢƱ P&ń•ć#½žh³šdĀćHm ZL5~N>>.æØÓƒĢ,Ś[¶ųˆ™ø-ÜßajŅhć @ą„b÷ÜŅģ7÷šÕzyAqx ¬ń3ywšn0±å`ć @ą„¢ZōM[Üę'§‡õ}Ŗõ†ųŹńŸ2ž>¢Ś_ŗüŖźÕŖFŖD¾õBųżÓ‰˜¢}aÉŠ)?kžÓ8Œ­Øcø3øó¦¾O·^?akšę©ģł8žI»‚w›mŌŁų@«įM:L޼S^įq¤ĻÆch_Ōjü™ˆń[‚6T·¦1 š«ī¼śŚ Ū‚·Ź3>FÆßbh“Œ/€€¹±ž×Ææ%Ų_^ń1r]ųū:}kßnlS÷G[?Wń1j}ųdž©õjSĒ5h~øźtć#weųZõč_5žŽ+vWGģŽŽS ‚āš`ߣї®Oøęrć @ą„"U#—Ž\żĖ©ÄGžŽą_I£šęW¾)ń:c @ą˜źō«sK­ī5ožO€ÄßÓž®&±UŒa«S~}¼ĖówļŒXŪįwéK{ļīõtÖ²^OgæŠdhö”o…3²Ŗ~£ń=Ę@€Ą1µŻØ åšśG~ī¦ś_ÆÜ®č%iĻ·’yAqp°pOP2q[ųfĘ ½öōxrčāFĆēŽIČx5½vÖöĮG»³óÓ©74ČL¹±QNŅg*ķ Ę@€Ą‡ö}\[óś/żło“čÓ¾Ńš'&“žTšpó±Oä×ĪZ>$1ssź±¢#¦ÖąuiÕ;>™~Ėł½®¼µŁ_¹·sĶjßlYŪųX74Čjyd`ŌĖy17ZTųpū‡ĒĪ“°ß–ō„½wöœ=diĖ NŖ;dé°»»N~é*_ē瀀2Hf«XxŌĻ]6“÷œōć·¤ģ/Ś÷Ń=!±Ē³ Š£%i‹“pO»»®5vŹäĪ śżęD·uylȒe<¼Ķč‡Ż˜ņē&™ ė;evķż×^Ó~jtQ»é¹ó“&~2gōĄ‰$mQŹfć @ą”¤.lóƒq›Ćżƒ÷ŻV/ē…ܾóæ’ŗø×ĪĀ=Į”cHę įwŒ€€SŅrXƒ¼ė»tv²Ulµ#uqßmµ37¾wį`ŪéyO/@F® ßlHćśĘ@€ĄI»®ęW«ßüópXÄ"¤Ļ¼Ō—“ §MžJ§_/@Šö…%щͳŒ!€€“6š™čŗcĘĒĆūzׇ“ž2†NvļG„/§üöD”q"ł»Ā·ėōM¬e,|¬K®ŗäāܕ)Ɲj€LŁ–tšŽņٚŻj$|«Õ­7S'”¾8eŪ)ČLŚ=0j}ņߌ“7h~ø2iT³NĘ@€Ą‡ÅÅ]”<¾ŃÓ§  ’Į;M²¤cļļ’Ø¹ųęĘ76l3®ńŌņŲIZa^ĖLć @ ®Vūkf½Ųę·¹«Ā_X›ņ»ņ‚āhIƒ‰ķŒ5€€ø„ž÷Œ¼0éµÉÅŃC±  ÷žGéū“wGĖ%BJćę7‘*7„<~©©łüm­nżF£“Śõ›dÕoŽ2·Q›ŗ}ėŽ½ćŽŌ…Įö²ž†Uōą½;Bb1Óē©äew„TæŚ˜8®V#š¶’ø‹On/HXŅ¾ØŁüū»ÜWŻø8¦jw|éņ±Ć×ĖkOȘ Įėµŗ×¼ŁŲ8¦¾³ƒE§CW¦übŲźš7żēF_¹>įŚĖ+€€cjWŲjüéH·o·~2¾r|$R%r±1 pģų(x`ŲčõįN7@²^ æū~ń—Ē_ōŽŪŹńŸ/‘Ocq’‰„H’¹Ék ÷‡N7@ĘoIłG­ī5÷™ŻfMĘó)»Ęn ’6|Mš»:}ī7ÖŽß„~ū•Õņ¶’.ÆK c§ał¹Œē£ß‹TT2Öājt¾ļöI;ƒwŹū†ōĆśĶ®4ĪŽŪ4ž¾$Ų}¦dÜęšõĻ„ĖŚ=0ī²—sĄ…®n’Ė“vĪT„ÄLŽh1“q`¼°ŲŖD½ž aŽĪņŁr"=k3æEn£Ī‘*‘Kć«Ä_V³Ūżµ¬Š.”ĒÆŖF*uyØõñՉ31E{ƒ’ĀRĆV‡æ»)üū¤]ĮĮ6ćše—žw|!žŠxÕUģ¾ŽŅųx4g#>ŽūhVqxpÜ걍ģ—Āöz"yqżuėDŖ85 @€P”|ń¦/^•æ#śĪ¹ŒcÉŪ¾Łć±¤5ę@€PŌXūQ냒;ß$v)b—­gš#@ÅŁūqiīŖšµ)ūĪÆųxļŲŽMį?īnwg+ó @Ø ®Ū"oGšöł1ł;Ć7JÆ5O€ ¤en“p䦔’9Ÿā£h_PRP=Ōbh£ę@€PAŌč\ćęAĻÆNŽž« …ÅįĮĻ$oh>“Q»ę¹;F®ŒÄ›'@ÅŲ’Ÿ½,üń™ZĮ8•× ˜®t!!€  &“H+ų°źf„ @Ó<§q«‘k£.ē•’‘ėŚ’¾ńȅ#EBĘĘ“Ę#ēis®MH5żčØØ“żrÖ E}·åķ’uųĻʎÖķöDŚK‰™›S3Vg7¶hd~˳€ ‚ŠT‰D:Mo]8q[øæ<dŠ¢ž›ŽŽ÷dČ+YѢ™™/öÜ{äf÷ŲžŒ:ü|ܦč[ƒußSłĘ:­æō­Öw—ČEę@€P1#äә/$’ā½ ’öœŚjČØõ풐ö|Æāč”i3Ž <Ž•¾.}Üę¶/Ś–Œ\×įwž“¾ŽŠēs˜7&1smF~/e]—Чii€˜@EuC›ŖD'4Ļ&6y²pOpج2xaŸķµ3·¦ž(>bź]2,kY÷ļ˜?p}bʦ“cż™;:<‘ź,Ą eR‹ńEe¼$öē“ņgLżøų8Yö€.ϧ—uõ#öŲVć‘sĒ•_€X \Z mŅ|̆”æœl|äļ ’Õ{nśŹŲQ»V@”ÉŻķīśzęŅš»§{ź• š±>¼|²ń‘·#åĶVæ] @œ’޳ZƊ‘{22ywp0åĮ‰—-0¶}čćc„%@ˆ/~żsŸI]l?ŁUÜ՝~ytTK³1³Ē÷šżā°5_¶¦Ó/³—w’~Ö²žß“ØĻö„ŒWӏÜC"@ī“yņäOĄ vŸ5dIķ¬UŁĒ zC— ķ?ŠŗI»ƒƒĒ<Āw_P2nsŪׇ®ģōZBśŖģÄĢ—³>.@"U"'kŃ·ėĆmī:³ĶŒ¾³“WWŽńUs @ųˆæ<ž¢Ņ_ź?Óufė™żžOÜüėČ@ˆÉß}÷čG³ ÷†Goh÷ē؊ư5įĢļ³eš¢cś=›¶¦ėc#ęĒnH?٘™°%e’˜ķžÜqƀŭG7ͼņ¶*WŻŚü–£ć[d¶Ó¬ēõn¼¾Õˆ&]3—†{¾,qųššWM2Ō3Ÿ€óXixTź7·õĪ1Ć’‹…Ę{«ÅļÆVd/ļś“Ī®Żō¬Eõr– §M~$ge׏ßÜöoyŪĆ•~m~BʆōŲ#X‰™K‡vŸÕ’•QėSžÆ¬÷ˆoe$oGšö¤]Į»‡?Īß}·š—$–†É>s @8…y-Ó&ļ Ž9üKüŲm’Æ÷œĮ«'nŽš\]ĶĒĶ,8¼?#1k}zƒÜ¹czĶī¾-uI÷}=ŸŹ|qš¢{.“¾’üÆŽ…seĄ³į*s @8W>ŖF.­Ó7±VlåćČ_āGoh’‡ŚY/g69mJ« “Ŗ“½47ķžLƒÜ9c’ņЦēķ’}.CćøpmMłgę ){‚ -šcĄy¤n’šĆz>žĄŗcż"ßoŽą—kgnM=r3y­ōµ±G­ŗ<š»`ųĖ~=q[Ūž{D«ĖC­U»ćK—›gĄy¢Ś·¾pI³ģ†Œx9ųżŃŗÓŸļō£–.<֝“²żCéKch2h~ņö›Żų9s @85Ė®3n̆ąõ#/ģ3·ūĪŽsznm6fö„„ōõéõs’ B²×d5öH~Ö²N??dŌśš±½Ģ-€ąäp„4Č}vT‡™£ęZŲwkAqx𼠐vwŻn~ē”ū»ÜÓ¬f·÷ŽŻ¾~ų¾QėSžš”?ez05’фōW2[8²VŚŅœn7Ļy!7Z8ō™‚āč”ó-@Šö‡z=Ńf”¹ œĒŗ}»ĶĢ÷$,éņŲąĮ”‚™Gn@OĢܜZ?wŁŠ’~īǻ zī<ē§^‡ūĻ¾Ņķ‘ä™KRvd/ 4|MņŸnizĖ5ę@€pžj;©eNß§[暷#ųWę²Ī?>ś¬:„ĮŃrü¬¼Ć7öĢč”iY ;Īøbų+įŸówF?t įøĶķž:dE·ęm{ZÖøĶm’^°'zhrqp0ge—ŸĘā§,ń1ywšn»¢V“āƈÆtųßqGņ]W~+éöėĶ)€ąóŅV•Fʁ“Ś”¤/ķUœ˜ńrVĖ NŽ>ÜćɬbŸ?ŁųČYžņ£¤ŃĶŗĘž›Ķ€ąź†Y-2^Īī.„ōõé ‡/™ńJfBĘŚĢ£æž;zwE×ė’Į‘ėĀßšŸ²ŖmĮ975¼éśX€ł@€p6¤JäS£^ ’|²wdÄä®_ė<½õ”čÄęY÷“æėīųŹń‘c|ßĻż8×ńGß·'ś^ äķž=ģ•ĪæģśxīĀ–‹ĆaŃ winßy×Ł˜ņśÄķ)oLŲ¾ŃgNļĶG>=®VŚŚŒz9/ę¶ž’xŚŅŽ»µš3¹88ŠzLÓLs @8G+ YĖĀļ•%@ŽŠ‡C¹«R~Ńåį6~łŽk>8A«vļÄ[Ēo.S€:ö­äįĮń[Rž‘ö|ļ½žĪzqģ¦vżčėƃ“v&n ŽĢŪžņęI¬ā¼łĄČfķĢ?€ąģīżˆ„y-Fļ—’²ŹY‘ņÓfC&Õč|_õģeį÷Ė1'sQą‰£"łŻ²üł“ÅŃļkåĄŅćŃÖ öļm =śō¾Ó ŅļwhŅīą`Y^“æ£ĶiĒĻų-į›…{?~ĻIžĪšķœåĮ/īķpĻž œE5»Õø#v xy¬~œV“”Ć ĢąE½wŽŁŲö/G!OĻV”‰ŗŗĖĻ;?6dɘ įßo‹ŽMæ±įöqqqN» œ>®9ē›Š÷DK&ķL.Ÿż${ƒ’ņgL­µbČū7¢oM½¾ö€Ęę@€pŽ]Vć²øœå)?>ē›ŠK£arq“ܾ_öņn?LĢܒzųöō{{-IÆņõיsĄ9Önø¬"=‚»½Nö²œĆskėĀŽ—|īŹKĶ9€ąi?%ixžŽą­Š 1½žĪZvd€$flI½.”ÆG±ēJŅØ¦]¼ØÆ"™°5åŸ †=?üȹ»ūséW|µÖ—Ķ=€ąķéõDņ‚Š ļߎŽoĖ‘óĶ6E½Š @8G®Ū0vyE I»ƒw›=įČIHߔvõ]mk˜{Ą9©¹tš‚čĪQėĆ?쉪h2ą¹ėŽ r}b’¦ę@€pŽÄWŽ…HŻž‰õ†Æ U‘$v+z»ćŸ<2Bno÷čąøøøxs @8ǚiģ *ŌJHŸ¹©« źf„Ł @8VC®ˆÆ”<¶ł€¾³ƒłYĖĀļMܾńį…ą@ʒ”Ÿ Wåļ žżIA n €ó\씬»ŪŽłõģeįKĆć`ź‚psżµDŖD.Ž}½vļ„;ūĻ Wäķ8æCdģ¦v­3dyŽ ||åŽk>_ ‡ĆćhµzŌŗ³ßœčņ¼ķĮæĪē{AĀiy @Q³[;Īē‘Ųćc’¤ T uūÕ¾kĄ¼ ¶Gäķó-BR—ōŪ*@P> ÷z6X»š| ¼ķį[5zM%@t#{ƒĮu¦. ¶Ļu€ķ J 6E€*°HµČÅĶsE³^æ[Xē,@ö•Hΰ©@€p!„H•H|Ņ覿rW…ÆÅbą\DHŅøĢĒ€ąĀ ‘K;Lm5£č¬†t~Øß @øĄ4ÉlŲ¬pĻŁŌE‹€@€œł»Ā·ū<•¼ōŚūÆ’¬y 3o_X’¹4Ü[«[­ėĢ€@€œńõjšśķIß¼Ę\Č ‰Ūƒ7;L}`RµŪƬf䌶:üu挶IĘ@€ @Īøō%)Ū=€ąrYĖb7£WŖŪ/!élH÷G’1€ Hū¢&9üķøMįߋöÅćwwDß¹”Ž _5€ D¤j¤ŅĄgƒuēāä«“…į&s @ø€“Ū|@Aqpš\Hśā”mę@€pķżč?7ŗāœÜūQ*kYų}ó @ø@4ŚØóäāąĄ¹ žóĀeę@€pHģY³aAqōйˆĀ½AI‹ÜĘĶ€ąĀŲ|~ɐ—¢æ:›§^ū;G­‹ž_|åųϚ Ą žņų‹zŌ¬™½,üžŁŌEĮö[[ÜzClй \@ŗĶlżųٌ [ƒ7JĆēnc @ø%nŚ-gųöŁ >OEwĄlĄ¼påŁ 0ÆåPc @ø€„Ln•3yWšĪ™}ō*Üß¾ØÕƒ‰=¾iĢøīßn3kŹ<kŲźš×ńWÄW2Ö⮼­Ść7ūĻT€ōz"ś“q šžėÆ»zĀÖšĶ3 l=Ń8xO›qĶRówD߉ŻP~&¤ū#ŃĘ@€Ą{"U"•J]‘¶8śż‚=å!Ł/†?H_nk5¢YŌ88:D>_·_BĖQėĀ?žn|Lڼ[³Ūż­Üx @ą„Ś¶Ģ/:ŻS±J_?~kųF’yŃWnØsżeĘ@€Ą1}ń¦Ļ}ŗ}įćĒm_?Ż•XČt¤õœHÕČ%Ę@€Ąq5Élœæ3|ūō#$(é3;y¹»@œhOH$ó…š{EåpIį¤ŻĮ{Ūß}§q pü©ł\§iIÓ&O’BĀ6 mJ šĮŠGģ1©Ś½īģłxņÜ6c›ųģ5Ÿ¾ā–fߨ>jżéŸŒ5ywšīąē‚Ķ5:Żwƒń \xĮqqżuÜXļĘkŪ&ŗ2åŁĖĀŒ^žįšņ Ū‚·bū@&ļŽžÖ Hģ’ĆĀ=Aɤ]É%‰½j%Ą&iT³¾ÅŃCy;‚·ĖcŸĒńNĮšLtm£“z-k÷®U;ę®”źWĄ¦en“0gyš’ŽŻtśĒķĘV7b·ØĒŽĘV;ĘoöOŚ™|°ßœčźŲ£]Ę@€p‹ķ÷čņpŅS§»æ£Ø48¢ć›l8ø^“Ö£›õk9¬q·ŅčųĀg¾ņ©+ć+Ē‹ļpU©ĻSI›N{syqōPõhõی)€€J×|И ))(Ž–|ȞƎx“źH{’kĀÖč[×'|õ«qqqSǔسę7:NKŹļ÷tņ+±Ø8›ĪG¼ž¶n’„ŽĘ@€ĄGæŖ¹xĄ3ŃõåqśUlČøMį?šf5lhl|DģFņCöž¼;8pŚ— .hż³ļ»Ēø8®K®ŗäā”+R~v:— †ł-FEŖD.5ž>VlHlĒ©Čų-ĮžŹ·T©jœÜ^*‘Oe/ ~r*’ŗ \g œ“Ū“¾yM§é-ēǧ*k€ō}:|Ö(“Öcšõœø-|£¬ŅyF›ü›ćŠFiõļ6ŽNZ“¬F 2—†ūŹ ŁĖ‚Ÿf½ž {YųcŃW­īµnźńh›§»<ŌzFÓ! Ūõ›}i菚µS;Š7Zr[«Ūn1®>»ū£f·ūk„Ln9Ŗķ¤…’¹ż¼hopZ_žī›-æłec @ąuś$Ž7a[šVģöóS=z÷Xڌm<)¾r|¼1 šŽOFē”Wtäķž}ųż/G’©łœ1 šĮĻ„¬)Æé3§ūŽŲŪ‚āčĮf9 Ū_ļ‰T‹Tŗ£Ķ·—õ”«ć‰=¾•\8ś©±SžÖē©äb{KŒ3€€÷¤JäÓĆV'’©¼V?b:Ī=§F·Ī©‘Ŗ‘KŒ1€€#äāœå)?*Ļi;=ļ±›š ó耀Ź\š²«<$ķł¾Ūo‹NėWÉųų@“̆ĶĘl ’Zž2pĮ€Õ;>™^ Ÿ5ĘŽXż(ŸĶēG¹®ć’÷­¶ Ø|CķÆch;¹Õ°±Ā×'n ÷—W€ÄnOļüČØy÷ö\œń„Ū[ßlœ¼æ ½j¤R¤Jäó=k½8mIʦ“E)› Šƒƒ§!“w‡ļt}|ųs75Īmeœӗļ¹ęĖł;¢ļ”ĒJHīź.?’ftj’øøøˆ± š7Öæ”Śų-Įžņŗ”°ćĢįĻ|åŽĪuŒ-€€øäŖK.¾&üMyķ²¢ŪŚN0æĆ”¤1nE š!ń•ć??~s°æV)it³®KRv˜¬2W€ ą[Ißŗŗå°ĘŻzÖŗÆźmÕ®ø+¼#”`OōŒHę²^ū¾Īčóé*W}!R%ņ©«ŖW»ņ½Ų؉½m™Ū¤UĒ“gõš]4luųė½Į”ŲėŗĢh=Ó\* ¦Y [”žāF$慞{36„¦-nūƑkĆߏŪž#¶ŗ‘³"xmĄ3įźq›Ćæėu}ž ž57€ ØIfƒfg"@bu…ÓņK.œ:暏ĘÉųlč,@Eę·J;S{@/ī»-˜ZšķŲ­éey]Ö į÷Ģ € č05)/}qŹÖRŪŅ—¤lŗ"åggꬑė:ü.)’Įie ó¢ėĶ€ H]n<GšĘLؚ²æÅøiSó¶‡o–ióśŅš;ę @€PdAųźŁ ˜nOd/ķõō —ĖņšÜUįkńWÄW2_€OøĮ Āug3@&l ÷Ž¾^–׌Zžńž®5¾f¾ŸüY{6äTLŽhœQæ¹ł |ņĮ:ļ$vgH¤jäRó @ųÄHŹy …{‚CÉ曧›+@0ą™pŁy{ƒC}g'橹Ų\*€śėŽ=nsų÷ónßGqp ÷“ÉKKćĆéW€Š¤yNćę„ņśłł;ƒg,IŁ™<¾EļĖj\f~Q£Ōz rW‡Æå®Ly-mQŹęĢRŠ'ķ ß>[į1q{ųfŸ§¢ ļėx÷·„€ ‚ŠÆłF“›®o™Ūø]ķ>µīT‰DšiخǣɳF¬ ~VN¹Zמk?!...bNLid\Üufė§Ņ—¤l±6å&ķ ķ J†æž®ßœä5…{ƒ³öČUŽŽšĶäĀéVļ0+M€*f€Tńrų›s½ßcō†vŠ<\;kū` @ g̐]TwȊœX|€9#Ęo ŽŹYŁå§õr–@€ @ΈŅųųIbʦ“#ćC€Č1üåĪæŖ“½6S€ČYŃw^śJ @ gE拽öĄ„¾TźŖs ·…oÖJ_›!@;@¾4q{›’I»“KŠĪāeƒG+(Ž–“™<į1 @Øą2yw“ä\_@Óg^Ś* @ gÅĄē® rV“>a– 3.¶’$eŚø'€@€œ…S°Rö7;{‚ 3f¶šĶŌ%ż¶µ’D¾{@¤ü·Ś–ä®éü‹.ŽžW;kuöŃį!@¤Ü ^ŌoKķĢéĒ  @ å"Gšvć‘3'\|€)Ł/uż± ³"}iŸ@€ @Ί.˜/@ Ėoüā—Ļf€G5Č]0R€*Ø;’︪׬6+nmqŪåGķĖ÷\}żäā³ c6¶ūKBʆ4 @Ø śĶI^[ø'(išUæG|åųK¾Vš52ž‹‹ög%> ÷%=ž²ōdāC€>”:NMš‹ŒI»ƒƒ#ׅņRŹ÷³^ æ[śžļĻŽń»)ovœ9zNbę–T @ØĄā+ĒźlĘĘG÷}„ƒ©ß>Łš €OścXO‡KĪU€d¼Ų«øvÖ¶Į@€ph5¬I‡ŲŒ³·§ģo4bžč²Ę‡ |‚EŖD"CW¤üģ¬Ⱦ°¤÷œŒå§@€š —4Ŗi×ĀāšąŁ ak:斘µ>]€.ÄUj‘‹ūĻ®8[ńŃxäĀ‘§@€P\U½ZÕ [ƒ7Īd| y©Ūkg®Ķ<ų € "ē„”©ųŗŗó/ź Yuŗń!@@ÓģķĘl ’ZŽį»č0sY÷ļÖ²rHyć T]g&Ķ-ļų˜\č;/uMbęęŌņŠ @ØīiwĻWĘlHłKy¬xķ JF®ėš?m ¦M?•‹?>@žH €OøĮ ‚­±€8~\„%ł;‚w&ķ äķž=q[ųfįž ¤pophō†öČ^Žł§É…Ó¦'Ny(!ccZy‡‡@R»OĶī=m½8oGųęįčČß=0ęÕšĻ„žŌufėĒohŲ³Cķ¬—†ŌÉ^‘¾>½łøYyĮ”I$flJ«•¾6ćLE‡ T@—Õø,.er«ĢƄ’;šŁąÕźŃź·EŖD>UźÓ±ÆßŠ «åو  @ø€DŖFāK££Ņџ Ī @@€ @ @€€@€ @€ @@€ @ @€€@€ @€ @@€€ "@D€ˆ @  @@€ @€ @€€@€€ "@¤ÜŻŁqfÖŗ\|‰ł 3®A֐é‘*‘O™€9ćīh’XśE’ĻEĮ {@D€ ˆ  @@€ @ @€€ @€@€€ "@D€ ˆ @  @@€ ˆ @  @@€ ę@€ @€€@€@€€ "@NŹ’o¢øQ¾vråIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-7_dim.png0000664000175000017500000001727414632072346024706 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ5øßO MIDATxŚķŻwx\gčńß9gz‘4#i$YŒeK–‹lĖĘŻ8Žćt’@pĀuŚf“e!Ļ] K.u³{ŁeĆŻx`!%d)Ł…$† q‹ć—øĖVÆ3*3M=ēžį&ɲ­Qœ"Ķ÷“ŠhΈ9ē}ęė÷“Q IG‹®œ?ćŻ½BżéŸŻiKe€€€€@@@@@@   ąr3± .-fźÓ†>Öof½ ø„ęȋæęį>Ö ‚K0B¬Œc   Ą»Įi¼ĆŹžīĢ“{¬™}ķm‡C ¬ #’“Vßg6Ÿŗų¼ÜŲóŌ‰½¬ # E·|;kZž¤X¼t¦ųj®š#?`­Ų0SDW²Jó¦jęĘŻē金vvīnٜ3Cģ„ÕÅs;ź(ęQ¤0Æ“ęĪ9Õ՞B»/§B‘āåĒ_Æ}yč3‹ę{J‚­fóéÅéÅ\=cåō<_¦2ć“ŗæÆŻź9ž²%ĆģNö%‚ē?»ó@ī“‚y]‡¼–39` ĄyŸŖFZĢ;Š|%5y“|NoN_£ˆˆ”Ø®LŸÓcˆ=+;¹EIœæ””ŠŖ{¦voŒ¼šC† ¤Ł D1WO[9#/ĻוiŸ(Ŗi{’ļJfēĶĖ(ÕD‘īÖPS÷Q#© ŪVÅé:d2WĪa @D‘‚ÜI5·”ēY,I‰‹ØĘ;Ļõ%-»Ńf=õ›[Ļßż¬iČ4lŹ'ś›ė·Ŗ§Փ&¾< Ņ' e9ĖÆ((õĘĆ3µlyØ®~k¤C՛ß1+Ē^(Z’U˜”HW¤;pHM]6Ö>cµ5óč«§¢ź¶3P -’a›łŃūī+_lu%"рɝYč™hŹÜ÷¬¦‹ˆ(FĆ ;³K{;"]Ŗ®ēßĶåäꌒI׈zōUgˆĄšĘŻAtES3yéÕw}dąqŗmļFn—Å^½&»¼qū¾ē|Ó ŖK–®eåhgOĶ Āž½ĻÄ{DԌ‰óņęx&&bŗÄBį._¹Čž_5lQ³ņf; ZŪ’łć lQäźÅīų™F[Mn±†›­U)šūSF2»DSD 9us]—×é­øV1āaŃćż±>“EÄāuyEzg­HRSénŁPr…%Į@€qŹ²ā|9ļ#¾ūX÷1EŹÆŸ|ˆrśŽģ”®“;ĖŪ ]SE²§ŁÜšvž+¶ļ ·i®ÅŸWµ-é”ś ' Œæ€(ŹŹÅ®‹|Ą’s×Ń2J‹ŽųfŌ¾ŅŪ֕]×\Ųc¶ĶtdzVŠoq*j“םFü'Ö*FքX—µ»ūB öów¬™Z¾ō&ēfq“–4LJ2³ŲW‘æĄįSDUńī“į¶PĖÉķŽlUõetœØ:d„p%:Œ»ˆ¢¬\x. ĶäHökĆęĜ‘øÆfęĖéVI#Pך—¦·CD‘ž·Ź˜€tHÕäŖŖ¢2»×šavšÜvŸÕī8śĒ–żźé‹uešl¢}זęĀj‹;ėėōŸ·)ßV iüij“ņSęĀŻ¹5÷DĀ-‡¤æqWår‹7ŚQæ„żą¹Œō·;{ĖāiÅ|kq²»~}يĮ;žlŽ¢jEÉ­ryE¤ĄWŻ~`߯ćŻll §UMŹ1Kāąœņ§ žŁ$āņž™gäMw?|üõŪՋž1 kšÉˆZ½eKU“ŁŻńNÓn…Ów`|$ÆŅ–)]rźŠćČØø­§½ū¤ˆvĮƈ2;MęžDéŖ‰ TEdĀ\ÕŌø•ć0 Šé–B‘¬ņ©·©=˜”KąXĖžPļ„éÕw(¦=O…š†{–”Ģ7¹iw²oĒ3s?m2EĀĶū0.RQšk7žJÓEμÅšŽ “å–Ʋ»NU&«¤Æsā¢`[ūQ-!bĪ*žŪŻą?Ŗ"¹“²Ė²ĖDBM³K÷=­OĻ^ņ?¶LøĘO@ņ+mqū„Ņ+/ōū¾®ęķĶG¦]=qé¹Āt7ł›ŹÆ›r„!ż”īCµėzŪ’2żŽÖ­u›cžP}N¹ˆˆ+Ē™³’…®£g¦5%u•0P`Ø1{ݜbņ‹äO·Y‡’}w朊…=˜[uī-źŅß;’Į²„"Š8\¹Õ–ģ’…įŽ`Óäspµ8sŒ]‘‚åætt ĘĶ ¤¼$×įŹ›rżpæė…;æ¤Åƒ}zrp- nļh¬ø!3’Ōży³ 2‹ėwō¶gśNż.£Č‘לz£’ķM 73 •6½ģŗä0'ŚRæqūæūN˜_s‡Ķq‘W˜”•źŽX""J²õĶ3s‹½p6ƒĘa@ĶS"śīŸmx“v]Š?ųņ]šv*FĀRµŚbł­"³Ź…mG½g~.\lĻexĄ…ŃÆ“}ŗdę,KRՍؒš‰7̶¬RåōģC¤Æ«nƒ=ÖŻŗæ'”Uh(‰x_gO»X-ꋕ4oVŁ2«ķĢĻf›ĶŪŗėŌ’īÖļx‹”ƒŃc EUŽųŁ&ž>«Ü[œŌ[vÖo1i'Ōøˆj4o7“‚čöݱø§ŠS\8_½Ä­Æ®!I± ½#`ŒDŃn,ōQÆļūEÉüŗįVÅøWĪāņĶȚbĖŅFõWŗj¹Ł"Œ³€”LšeH|ą#įÖC/žw]ĶdĖud |Ōcć}¦\kÄk×)ĢA`|dŖóĘ'vĘGņ܈ė擖Y] “7Ū‘d¬§%ȘUč*ʜh±_|iU*oŹ( “¶l“v 5†žiķ‰ŠĢϹ{­Ł|ąiéł’IUÄäĢČ1;ķīH0 ÷Eƒ%+rŹóFp…¹!ń؁Wær3CĘÜ Ä©Ż½¢ś‘pŪ?Vd-ģŽ¬śj^‰3Kæžąó""f§²ėp¼ė"oŠ]±ŅYdϵfhręL-] Ć4Āt*b±ššÆcAŁ«ļģō@@>x ¦Ģ›’½/¹ņ,®ėūß~ąßžžŠĀ»œ‘Ā%ĒÖÅ»D4Oåmo>!]"93ķ.Cvt5žł:ŪÓŌ¼ł6ūą$h"ŹČæ0ÜŪøgD3$ūæļń/|\¾Ā°@@>P×7’ššģ¾ŽŽmµ'?ö›5™4 “IDĬͽēS‘Ž·:­—žµ«pĪ=&³ˆ!ż”ŗu'6)g‘$z¶>VsfĮH’jŅP•siэʉž#ŗ•I„×Sd³y«TŅƇōČWN{(o‘ĆŪq¢łXŁ,{ɇ{čs"į¶]¾Ł6Wón½ĻSépŻxoGūŽ`kOkøķŌŪ³eO\ģ.µfč‰dŌ–ćČøšÜ#©ļzjāG}SĻ=āoHÖū&_h‰Ė•³×ķi‹‰ˆ|ł”ü„»żß#€€¼ßfŹ>™)Mö5k®ų®Żz«¬*+“WcčҾ·q[ĒI=¬źŠÓģwiIÅHhKæą)>’نč x„ī w‰ÓcrL¾ŃīTDDUZėī)½Š’ćž4iEķk?Yµ± Ķ|ØvaŻöďē/ßš‘»ż†!ņöśŒ,[ęč/ęS%æ:Æ:‘ wF:­^wAصåĶćėMÉDų¼y‡›Ž¼ŲŻŅßē-ؼĪ[īÜ÷›H@5Ł2Żł†„;’²ćž üf³g²&ŽŖM’CÓ²jµkę+mėb ļ¹Ģœ‰ Jčzv¾aˆ,¼éŻ_ ®ˆYĖĢĖĢÉĢϼÉ[±ēēG^ToS-ńŽD8ˆĘŒ`$ŲÕķõM™{ÆĶcĻŅćMo&•üŖ¤Ä{NļŒre\čõżń/£t͉§ź“CS9yŁ3³³Xīb ļ E4UDIį,©‘ T“§¬óĄ¶ļ)§÷ŻŠb$UESŌ’UŽ MęÖ£Å5łÓ½%Ķ{ü g–ė \ų5’õyfŲæźė2ł¢½ 1dĢk;ŗė§6ݤżŻäņE"z@1v>‘pT,Ė,™9Ėå±e¹‹"wżŽPżhžŚ«­‹ęĻ]öÜožc yļ%ßÓW7ŪfÜŌÓģN„õ°(.ŸÉlvfOĻ­ œlÜŲu2āĻ)¬øV0ķ)ž-³E —µ½•ןże ˜źßŪZ'u?`„·>TgaĶ+zä°ĆńŽž CN½ćĮ·T<ńFO?\µ`°WqÄåž|ƒ>“3ŚĪxæ¼ĒQ†=¶RŗŌXŚ“·ćpŽtMcPĄ˜ ˆhõÆ( =®ØŠuŅĶē_:8ńd_[ϱP{ŽO™6ā/ģU$®ßt5ē3(`Ģ$Š'kĪüļo›ø •e 1¤Æ³sßŃ?ǃš¹dÉ®Ŗ"ża‹uds »£śS6ł€19 ūųČbH¤/ ¼Ó~8ŌökIUJV”.1Yćń¾¶’5w'dŃķÕ¬ń„ÅÄ €1¦3ļT.y-ˆæžšŸ²Ė‚õ§ofy‘‘lŁQæE5źžxü5CD4ŻYąōŽüo:œ ó9ńŪ?'ś;g«øābĻņĻø)ćōm›Ž¶¼įĢŌ¬FDĬiŽxTTŽa±°‘ ­ņR“ü@ä³öŸ]ģHøŖœÉ‡®]:bÖßÜŗ³ī*˜ķķ>fg‡¤[@DD®-¾żļGv"•.ž†·ŸU¢E•·&bmµŻõy•Ž G Ņ2 ¦ø>Āgö4vī+Øī LXŚŻt|CĶž‰lZHć€l¬hITšF0 ńyŠDt‰ƒ­ īSŁ®šžūPÖb__±īė½ĮDb¤oĘęĪB> ķ"Ņcüü;_˜øē)6uÅ»Ö~õČZŻ`cIŃ’7oxēHŹŃmĘcl. )‹µśO\žW5$):£FaĢ\©żbĆc» *G»“®GūķēŻéŖé@W{$dĻPÕüRĻÅīĆ«ģ?€±‘—ž.{VĮ“Ń-«ØGśŗ‹«­Yę³7wļlØŪÜŻę,-›ć)ćĄŲ ČĘöG7dW˜MŹ(–U¤dNÓ®’Ŗšē¬ĪŸ)’”ĘĶG×U®¬™„ØV«ČÅoū«Ø¢0T`ČgćXśĒuŽZQzó?Ķ\­Žźć\—“›’Z×&̌GCpĒ“›']9²%rak3ƒĘč D¤S—Zß’ś|dś]–”湐3ž9ę+Ķrū^ü—OłłJ)8‹³°F(§‚|#Ę:2 ŃvÖ db\Z"QūzēÖ0I‘ntםxžõĢ@Rd1Ļ’ŒŻ-kXĄ $e-;X@@R–”Ś7X @@F!šdĄ@X|Ļ“–ėHŠōäć_šm„@@RŃÓqš‡É¤„X07S¼„öcwMa˜@šĻ@¼fźEY©-“ģc@Ś$i©¼•ÓĪąņH«Ļӝ{“œŒ $u½‘d‚M$eĒŪ>k°Ķ€€¤. $U™¦ņ[%µe ‚äöė½Å©.“ą›Š€€ŽÓݚņBĢ@ ŻāSoł‘§€M—G]H˜0åĻłž¾HƈH7Q€a„Õ½°ž÷=ó¾fĻqf Ÿ‘ƒÆö)¾6w²H퟾z­ˆˆaiÆĶęśĀĖV:3?Žz ż­ _y¹EDäīYK’³xĪńW?{-ĆČ ?Z[vÕąGv?óÜŻūĪž4+ćÆ_ˆt<|;Ć.,-ļ-Ų²}h6g~ś†‡ĻżōvļׯśĶC  C|’Ū½C›“œ™čo¶18€€ ŃŖ}ič$Āwž¹“}ƒ]ƒé®e0¹$ūä†X’ĄG̤" .$œ5·p†ˆˆÅŁz`ūf#!"²kæIōąŒ;M§ß¤?É-K %ipļ¢+ēĻQÜŃHS|ń<‹*ڶ ‘’e…K3 ŁõĢc÷rĮ a"RrMéņHwvˆæö­ŸčaSīņÆi" ?’Ń_īd8ĄČ„Õ1ŗ×üŹį1${RÕMŗ"ļ<ņ»pˆĶQzĻ’|†0v""böL\ä*,˜™ŌæT·ND$ö¤k3 iÆū|U Ÿ!Ģ@†ļ:öņĮ’nŁ£©S®×2EDZ÷ģ}.i(ā›ų©{³4† Šv=ŻžŽŁ”S~źē¼ MQä†<ōķ•Aä,Żä.Õ¼W5Łß&2屋ˆŌnzūŁpHDSŖ>­Ū@@ĪŖ\5÷”IĖ>¢ŲEÜ9E‹ EĈ6oßōĻM;Eā!%É rVO]_KOÓĄGŽlźnńä9‹Ąčk~3öUüĆÓ€‘Hƒ³°.Ÿ^£ˆqś­žś6BM·&ÄVu}Nuū®¶½Ż'N=Ó]4s#»³~Ӛ’ÜĘŠ€“ˆĖns‹hŠIŃEŃT‘œ9‹JEDŠ–T~¼ægóæ)ŃSĻ5gĪ’\FŽöļ|ćĖ Hū€ ēܵ!¾Y5uōĒ_;ó›oŃƒmO.ŽŌĀą€‹Iū“V[÷yåųĘs?GŚ÷žŌķūĢĪųƒČÅV@²ö‰ |Ääčļ³ f=ņĶ'¼N’Šęƒŗx *>9ĮĶŗ’‚doćOžŹūY@@R ;’bˆ³ˆubb »Z _æ7{éśaMĄ…’±–o{š-އ š¶n<ø‹ĮĆ.¬aø>v^Å“LŹĖŖ>¢°"€€¤Ź­/¼bÅŻÓ'³&€€¤(#2-£ęŗéSY@@Rę5jV^uė“*Å„p¶ Įć%ā-¬(™«vųó’§5Čśf )°$½ńʌ%kęĢUųŗ[8‹ė@F,”vź­µGvµvq° kä«JĻ—üI“§v÷/:~hK;“¤ĀsiSK§/=¼y­e}H_M÷Å'O;k€€€€@@@@  €€€€€€@@@@@@   €€€€@@@@@@   €€€€@@@@  €€€€@@@@ €Š)ß¼”ōYF»lŌĢą@@ŅVČś«ßZśF½x/ĆI׈ōw‡»0€€ą}—Öׁ˜“Ė>vUbtĖĘå/Æq’–ģń9%£]Öo‘õB@¤1va€€€€ą,Å` Į «€€€€D8„€€° @@@@  cW‚ ę@@@@   ł@p!:a@@  €€\F wć@@  įūl€€€€€€ąŽ¢ łŠc'yæ¬  …“x€€€€@@䥉¼š¾ų’—ŻžĒęĆūIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-4.5_dim.png0000664000175000017500000000276714632072346025047 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ;ÉĘŚ]ˆIDATxŚķŻKh\Ušsg’™˜hSƒµÖTZŠNÕ >ŗh}-Š4‚ Š(""uć»PSQ“q'ų6`!AŅś¤˜jEŌZ£›Š ŌŲhkjˆ$ĘÖŌL’‰qSi &&Ā“Žö÷ŪŻ™{6’³ųīwϹ÷†Ą1-Aܽ$];'‘®YÖųT)WS)ąhr +&壹µ~õ¾×’ÕÕ×Uœ³ńĮīKŚ5ł¬—/©oī¹ēõž…b®(5@!“­nxåš©j+uW.ˆ2ő>łk/ÜÜŲ‘’¢bnℱolī– €÷6vÖ®šī’ŃĘ?*•joOV…Āč/»×¶µē&ä( ǹ;«›¾«š7›„0ŗs¤c°}Mō€r±ˆĖļOĻ›Żˆ(T/Ģ<6÷Ŭ  l’"ų’[Ś]ś¹īšŁŽ*…=ėĪ›Xœ’Ś­, ,\”ĘĀ}Õ+¶Ö\<ŪQÅĀžM-×{ą(·°bįł|įó’2¹„ĀČ'ŹP"ˆI«xņģĒCĻ l–PÖ@bāĀ/Oŗ2Ŗ/% }QķLŪĘ($ź¾ß0 Źsa+‚øČV„dcå®ńŪ/ŚTÕ8ƒž£øÆõ·ö{æ’ €pŠKWœŁy ?Š&z+ĻŖ:gŖ³Ę7.čųCZ@¹X‰”»·®œÓW!„'¾™ś¬ż‹R²t üƒÖ¦łļN7Ć¾Ó“” ' +µ÷³d*½0uŹČ¶|ēŠĒmŪ}('ρÄŲąļTœxł”ćōü«žk>hļś»Žü ßó€„)ÜzFŻ-“£Y’ūöŽg%č@˜ÖŠdżE©ģ”­tQˆN»ją§žŃG€m¼±–Mµō¦OŸüĖp×ŗå¹?%”Ÿ]X±–+äߚ|<ŌŚuµņ( ĢĄš{oµėx¼{ķ3y™G†5˜ŪŻ“ķK]¶’ńŪ›ÖlŁ6&f,ėWĆž8ŌŲ_ĶŽIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_4.png0000664000175000017500000001153214632072346023764 0ustar fabiofabio‰PNG  IHDR ™q*UüsBIT|dˆ pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<×IDATxœķŻ{e}Ąńē9ēlĪ^’Ķ沉d „ĀÅ H@QD‹ˆķŌ:źtj§ķšG+:u:£õV+­ÖėxE‘ź * ØĀQn‰!¹lövvĻÓ? HĄŻß9»|>3ēŸ÷\ę·’ģ;ßó<ļ{r)%ķ'ēÜyä’łĪŁ‹jéÉś[æ½į®«>ry+gfŽJ«ž?F€aF€@ūŹ­`²  ŒĀ Œ€v–³ė@€E€aF€a“Ɯü0ĆŌZ=°{㣃cƒ[[z¾.͆/,I“K)­žx9ēÜ»ä°äJGKWAĘGw >ø~[+gf„±¤ „ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ @„ Ą“äœ;Z=0s ą©&Z=0såRJ«gž'¬€aF€aF€aF€aF€a8ó’Ó/zõߜņś'{é…Ē›snÕH-!@`мäķ/^yĪ?žī¼ī\8PÅńƟ’ås/=ć}9ēŚ[?~öĒN½xÉ÷Ļü‡×\Šź9"åRJ«g€!ēœŽpék>²teĻK+•ÜŃ·°ŌÕSęnŻœļŚŗqā†e««gT;S}ǃić‚%åĄJĪéįĶłžæę««K)£­ž ‚˜$„”TÆwT÷]‘Ž_²YŪ='ĶĶ•œś—¤U«×V/螓ęÖ;Rg’@:°ņŲÖ«ł‹šū_ųń3?™Wåz‹Ē!@`õōu,Ż“×ēJN‡[{ūÅļ?ćŗ“ßqā›§j.€vQkõ0“Ü{ó¶OŒ ĪŽøtUĒŁó§ż’”÷Ü÷ėtÕe½āõi}KŸ›ź ZĖ5 0ŽxćšåÆū‹ƒ~>w~ZüÄććceüw÷¤ėr%ח˜^RRI?śŚČ_žĻ‡Æų·VĶ É,˜·|uݽė~øóC;Ó£ܞ¶ŽųƑ÷~āüÆæ|涝ßK„¤įĮę胿}ō7­œ ’€)ņ­}÷Ū×]¾żœŪ~ÖüŌ77’ūśol{ķ×’žŠO—RJ÷ģŚź’RŗńūŪ>vÓ×®’q«gˆb “@ČŻo»ä¬’ŗū¦m’rĶgųóVĻE€alĮĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀhS9ēԻϔ‹Z=Ąd оf-yŃĪ_zō›Ė9’Ń9»{ł~ –æō¼Ž<ēšœsnŀ{ŖÖź€Żėœ»ĻÄĀO8fĪāƒWš²wŻ?Ń›ÕÓ?·yóą³ßwŚ)C#‡®ß¼aå†ŅœØ¦”niõ¼ĻF€@›«Īźļ?ų})„¾Ē5K£lŲŲqÕ¼žkWÕ:{'z°4 `° ¦”Jīhvv­ļ?põŗÓSi¦Ž®čŪ÷ˆ;±€vg¦”ł nZvä ×’ł®›s„Vf/Z9±ź“¼ių‘{·śŗKG&ĘG†Ēzdl×#;'#CćĆŪ†GڹłŽ)„‘”RgJ©Ģ[~̜®¾}—īŲ¼ut×֑īłĖęÖź³ė³f÷/m =ŗmćM_łi‹’T`† 0Ķōνuąˆć~zQwO³otx|G)͜s„tõ Œuõ t§”ŗ{é@*%M4†«Ķ‰±Js|¬²kėŻ»Ri6:ŗēu§”SŹ)÷,8 5†·Us„š«Ķ\©5+µzsėśkFrĪ7•RF[ł÷3‹€i¤sÖ}óŽ9łGÕÕSf§”Roßč¾½ónŪgē¶Ć7=ķrNÕYŻÕŌ=‘RJõ9‹jé÷ē’ņŲ+ŹcĒ›O}ė¼åĒōōź^sž|)叞x.“™¼ī<ķ'żŻĀÕ}Ÿ[¹ę¶£+õķC»vĪŻŽ;ożŹU‡m9žńųH)„j-W^tģµołåõõ/ ī\µe2ēØvtMĢ[vtßĀU'˜Rŗk2?xžŹ„”gźŒ¼ņżkOėżĒ®žj=ē”šĶ’rJ)Wžž"óF£46ŻŪ’³7ļūė‡X±a¬±tūdĶņĄŗĖļæėū’ü­Éś<ąłM€@Ź9WŽž™³¾øzmķĻöōĘVFsā–ŸÆłü÷ŸrėdĢņĄ­ßŽp×U¹|2> Ą,hC„”fŽ?_üŽœ]ļ]X[ŁÕ“tu—µYĶ®Źc« »[ éčØT?ź¶óvl]¶i׊[#ēx6ŚT¹§Œ¤”ĪM)„œó¬Ō›ę¬}Ջ—.X±ąŠ‡Ķ¹hł!é»{ogwsα§|ļ]w¬;ü›ī?ńWaC< Ó@)e,„ōšc[^ü†µ7ķ³’²[ź]¹¾»÷tĪ_0:T ąOą—Š`ŖÖjŻ•ZyĘ/·l˜³nėCk5ĄŸB€Ą4tšqū\ŲŃQ©īīłGŖß·īOūZĪw›ڊ€i&ē\é_V=łéž+%„‘”zÕü4W?õ{Äf)éŽuW6†;†seŌ9hKž9Ą4‘ū󜳎sś[N8łEõzźxźó£Ć•]w­;żźJµ«iėŠ®“±¼_īzķy§ž¹ļ {ß|ÉWĪ=¾§ÆĢßĶϤŃįŽG+•ŗųښ€6”s®^ų©³žżƒ—½ń“ŽĶ%•?TĒÓ×ĒŲpk”ĘÄÄHµV™=7)Ąž ІJ)ļłņ¹ūõõ—%»‹ŽĒmŗÆ÷æøžµ_/ͅõ«@{s,hSæ¹yŪg›ĶŻ÷D))5͉»o_óćT ŁzLV@ M}÷£Wėš—wū¢ę!O}īĮM=·Żs×Į?ٱmąĮį]<܊łž + ЦJ)õæü׉ń’_)å÷÷,æaĖļNøC|Ӎhcß¼äŹĖ–vĪ»ŗf×ēnŗoÉ ;ķß<«³Qßxßq·ļīnXķL€@›Ź9W8ńŻg\ū#æŠ5oåÄÆńĄt%@ }ÕęģsȾŻór[]`Ęp F€aĘ5 ŠĘ&FgīŲR}ā±\­5gõ,kÕL{C€@ūūÕ7’ö?RJOŗēÕĄQē¹ā¤÷Ś¢™öŠ-XЦJ)©”²½”²ķ‰Z}¶Õ`Ś @„ @„q,hS9ē¼Ļ Ļ<¬R«?é|]ėģ]ÜŖ™ö–€öÕ±hõ©'õ.9ģI·įM¹’RJ„%ģ%ķ,ē’+NץĢį ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ Œ€i¦”fXžƒ#ś’lU«gŲS¦™zǦ9kÖŽņ¶5ĒŽų–‰‰įj«ēŲµV왑ĘāĮūÖ/¹zt¤kGµŚ5Ńźyö„€i¦’;š·Ż|ž­žą¹° #@€0#@€0.B€)’sž•öī\Ū1Y³“ SdÅÉļ=½oæ£öŪ›Ļčģ}AN)¹Õ.0c˜"µĪŽŌ³pE³Õs“׀ĄT+ĆÕƎśŅŁĖW}ē%­ ÕL±Ł½÷,\¶rĖIĖVÜūņfi8÷Ļk¶`ĄŪ¹}Ճ·Ž°į‹Cƒó©ä[²€ē5S,WjeĆŻÆśE«ēh¦HcčŃ2øåμ7ŸŃŁ7kõŁVM€C€Ą¹ūǟ¼2„TŻ‹čXó¦OæuīĄš½Š€v"@`Š”R)„Ęs}ĪŁŹ0ćøF€aF€aF€aF€aF€aF€aF€aF€aF€Ą Pšć¹š·ō”ŅĢ­žą™˜>āņWžzī—>“ß?xQ«gx&¦”ŅÜUm6G’poŌF&•‘‰‰Yc­œ ąŁŌZ=°gJŁ>ėÄÓæųžń±ŹŠuWæóć•ÜŃüĶķÆ»öĪ[‡~Zė˜=Žźłž‰˜fr*¹R)µJ%ÕRižžX®ńLV@`ŗÉ}£×\ń¶K›•j©TźĶV°'LG•9 Ū€éČ’. ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀ ŒĀh_;~wė=ƒ[īĢ­`²hS„”‰»ņ™+Gmõ,“E€aF€aF€@›Ź9w¬<åÆ/žŻæ²³Õ³Lķ+÷,ZŁYļ]Ülõ “E€aF€aF€aF€aF€aF€aF€aF€aF€aF€aF€aF€aF€aF€aF€aF€aF€až3eRāļQIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-11.png0000664000175000017500000002023314632072346024115 0ustar fabiofabio‰PNG  IHDR ™q*UüsRGB®ĪébKGD’’’ ½§“ pHYs¢¢EŻ1¢tIMEŪ ',Ÿü3 IDATxŚķŻY]õ}ąńß¹}{oõŖ–zSKhß-¬2±8€mlŒ1x›8ödf’ĢĆ$q9/É,/žŖ©IĶÓ,I<3ć‰c›ÕĮ ĘlF ­HÖŽźVKźVļŪ½÷ĢF,ŠÖj ōł*¤«sĻ9ż’ėå[gł'kæō­?/Æo‹  gĻ/‡_ūŽWæĄV’$U«’ŁC’¢rśÜńÓm›1\ĄT €€€ @ŽU*@€KŽ @ @ @ @ @@€@€@€@€@€    ĄūL*@€KŽ @ @ @ @ @@€@€@€dŅ„iĮ'e'kGĆ=ū2'l,ƝUšŸĪ ōw¼öjÄ׌209RČOdŽļśłxßį×Nōzõń”£»ūŅ4M -pŽRȍeŽģLr£żEE%#‡·üśĄK½X7{ķŖ”£»‡Ä\vFś½ŗæ¢~vK’)J'-@ŅB.鎞Tå±]?’ĪųбŽĮī]½išę#ž{$Iņcķ—Ÿ4MÓ$I~P\QūłĘ…ė+'-@ŽīüiY_Ēę<¾ē¹]§8ؑ€Ė7BĘėē\ūpqy݃µ³®.z·ķĪų-X£żÅ…ÜKūŗ¶<śŗįŽ©gߋ½G¶üčńįć{3ē #=ʎī<öcĆ ¼›®­ļķÜüƒgLJŽŸņ*Č{Ž‚•ęsInl x kŪ‰£Æ’ģéž}/öRą½t¼ņķ Ł²ź†¶5,-*.Ļæg€tn~¤77:p0?>œ›ķķėģéŻ÷āį4Ms†84M#I’§‹ĖkꚯüÄĢ$ɤ§ |n¬hččī­æ»Ń°ē!ł²ź¦GJ*ź??}įĶåo~ž¶g@:QiZ–$IbȀó1Śß5ŚłŚ¾ß×±)=e€ŌĪŗ­gĪŗ?¼né=_’ƒöė¾xc’$YĆœ«ž½/ėŽöäó…ÜX&āĻ€dĖŖsÓēßTQ?ēŚ5Óf.YŲ¼ācĻwmłŃė|碐N łä”ņ¦L¶“0}Į‡«Ŗ[–’^¶¼ŗ6"^0tĄł8ķ: %• łś9×^™$IyDDé“ĘrψēāŒžńØnYYvõg’ę+Ė?ńGg­łlišÉg›–ݹ¹kėć?1„Ą¤HZČ%£ż]%Ӛ—EDىĘ{÷½˜ę'FĶX|ۜL¶“|bø§ēųžēNą¬d¤÷`fąČŽī‘Žƒ;^łöę‹o_=ożæY‘$™“¶}uIqE]i÷¶'ÖOŒöƝuuåpĻĮΈxÄpg ż›ÓѾĪcż]ŪĘ:^łĪĆIņ¤Ø¤²¦’Ц|%u„‘–Õ¶uåŽģčŚńŲųEš¦yC œ6@҈d k{~ččīīĆÆ~÷ĒG^ļ{ėiš¦I’¾ē,vXfIą­P4ū†Æ|¤żŗß’š›ńń–‡ŠĖėŚĘ­oļÜüHņ;I""m˜·īŠŚöÕĖ–ŻóõŁ=ū^śiDl3Ä@DDMėŹi ļų‹{f,¹£!“-}ŪsćÉŚ/}ėĻĖėŪĒ"" ¹±L‡'†OōŒļ).›VV\Qאd²%£}‡ʇz2E%Ć3—ݹ øtZ”óµö÷ŚųčŃ×f  f.¹c֌„¹»~ĪuÅqŠ»„ŽöŽL¶“Š0÷ƲˆhłĶÆ·ŖL ¹$-ä“L¶t""¢j梪ï~wŲ0Ąå-I’h]u’źY×|n]eć‚Ā»m—=«f²i’Éž¼kZӒ¤aއ–DÄK†.Ūų(ŗāC’ņ#3—ŻµØ¤²!÷^ŪfĻvēcƒGK2Ł’“ø¬fbbø·("7äpŁĘGɂۿöəK?ŅŌ³÷…Į4?1‘-›V>6x¬»ŗyisEĆÉYH~|(›ŸĶ”T6Œ§i!čÜ:t|÷³?/®Ø«ķļģ<ŗó'{ ;\~jg]]µųī÷©Ę…ėk’LQ![Zż[×5ŽķŻæļ…WkZÆ\RVÓÜ\9cayiUcśž26ŠŻ’Ü7¶ ß{°łŖ{oĢ ötnzųĒCĒönø|MŸSCۚļm˜{cY$IQŪ¾ŗ¬¶}õ²ˆˆBn¬©gĻssFū:» ł\!Ņ7 yĻ9¶ėg]={Ÿ’åųŠń‘¾Ć[v¼ńé_møŒĶ\rGkėźūļ©µŖčݶÉdK ÓŽRó~óQśž2е-7Ś×Y:>–¦ij˜€ę›×ŗś3wNkZrN+’gOŪ ‡^žÖ÷īüI§ö""ŚVŻæ²m̓·T4Ģ)œė>N }7ķŽńt§!’$‰Y×|žśÖ5\[VŻ”?Ÿ}eŽłAĻŽ’ī’ō\’$™ś9×,0ÜpYĒG2ū†/ߌ¶śėĪ7>"Nq¤ŗeyŃ“™‹Z ¹ńśB~¢ĆĄeEsož×w7ÆųŲ¼¢’ŹÜdģów®€dK«r­«>s͜ær[ab“*I’¤~Ī5I’dM\6ńQ²ąöÆŽ×rå'Ƙ¬ųˆx—g@*ęDZ˜Č—Õ¶ÖWLŸ{CiÕōĘņśö—"ā…$I¢¦ķŖ}‡^Żåuųą©jœW¹ų®{_ć¢[k’LQa2÷ż¶:¶³¬J+źē†ŽļĖõŽŅ96pdgåō¹ÉÄh!"bśĀ[¦…\±ų€žéó?Ō0gŻŽŪ0wŻÉßK~|øčŲīg²ÕĶĖĒĖėŚN»}6"b|اųŠĖķķŁ’ŅĻGŒĪūš—ļoZöÅźŠ†9Ÿ=²õńē;6üƋiš’$IZ®¾ļŠüųŠS,3—ÜŽŚŗźž{jŪWéwŠJ*ņÓēß…üDQDœöV­lDDIEŻDė•«WT·TՍ õUŌ^U–$™“ŖqĮDvÕ“ui>W2ūś/M,ŗó/ŪkZW¶ōuljH’d· ąƒ”yÅĒęæ±ĄąŅ³žnQIEžL‹å[°’$Jk×õ–Ö®«ŒˆŹ·nPVŻ4:’Ö?]ł–&2ŁŅ™3—ݹ8"¶›*xk]õé•mkø„¢įŠĀ…>Vę\¾4tlOžČÖǼŪߗTÖU™Fø“%Iķ×|žś¶5®ŸŠųˆx—·`NՌŁ™Kź¦CMĖļ\[RÕ8} sŪŽŃž®='lœ±ų¶›Ėk[_ķ;ܓ¦iŽŌĄ%Éģė’ąÖ–«ī]Q\Q—›ŖćžS€Œž8œ)«m]ŠŽ²ģīņŗ’ŅŚöö6.ŗķę¾CÆ®-*©Ü4sŁ]s«[ÆĢä'Fź"⛦.©ų(šūį?¾»iÅ=󲄕¹©<ö9Č“ę„cӚ—¶EÄšo~E¶“*W?÷†²āŠŗė«›–ęėę$³ķśł€é€K*>JÜöÕOĪ\vgS&[š›źćg'÷‡É¤ÕĶĖNŽr•ķ?aŠąŅšĘƒõéĘE·UOöƒ%@Ž*M Éųpļ°i€‹ÆnöŚś97žį} ó֕žÉƒļ«™ī-:ŗóéC½{ŸßmŖąāj\xsKūµ_ø§¶}MöbŸĖ¤Ÿ@šĻ%›¾æmßs÷”u ąājZžŃł³Ö~žĪiĶK/‰óÉL֎ŅB><²3{hĆ·öļ{īļž‰ˆ²‹o]lŹąāh½ś¾+g­}šī‹…ĀųۚcR®€ŒōHŽī|śµ#۟zyøg’@óŠCĖ­’P~b$;޹}’$uišöśg“+I’h[żĄõmk¼¶¬ŗł¢®ĖW\|“2Ÿo8ļIÓB’é+ŽˆčŲųķŸtlüŽĘˆˆ’ŹśŹŚY«š*ē—ŁŃwźļ¦ā&?>’öė~}Ė՟ZYRQŸ»ŲēóÖų8§IÓBŅ»ļÅѾC›^čŚ~ ŖqžŚžĪm#m«>}mqE]Ͳ{¾¾Ø¼¶­¤ø¢nÜōĄ”ĘGŃܛžč÷ĢĖ–Vå.Ås<ėéłõ/'v’äÆj\øžī$Éä³åŁŹ97žóV6ĪĻe²„Q\VńS%óoūó{›–Ż5ób,08©2ŅwØ“0ї9žė—;ŗ¶Ÿ˜±ä#ėšWŽ3«Ø“¢½’ąs™ŗÖśņŅŖ¤·«#ŠĖ®rkL”ŖĘy•‹īüĖūf,¾­&Éd —ņ¹¾g€Œœ8Xtü×ļ;¾gū 3ĻüDEĆś¦†yj¬ØŸ]H2E¹ˆˆ†wFqqwv|¼n“²¾8oś`źŌĶ^S?ū†Æ|jśü›Ź.ęƒ“ ][~ŲQ\%³Ö|ńćŁ²ŖŅ²źéŁ4ß[œdІ޺ŻÄČ”S}ß2 pįL_šįÖY×|įžŗŁk‹Ž/ēü;2tlw2Ö’LKyĆķ=­W¦=[VĖ"¢i:\ČםńŚ!o¼m˜lMĖī\мāćÆjœƗöSo}AÕÉ9üźw’̶śņś»«§µ|Ŗ;[R™K2ŁōE‘É–ń=e®€Ą…16tģÄįMßūĒŲtɟjķĀ;žāö’ʆ±ˆˆl_Ēę¢4ɗ ölKŖf¶ŽU6Ģ(.«™0„p韯÷«£ļ‡ó¬ŸsĶŲW&ŅhŸūԚlYmK2Ņ»/3k՗f”Õ“$IfŅ^”ė, "bīāļŻ’-+Ļ–VNϕׯ3$Ą…Ä`ÉĄ‰ĘĪ£ėvf p!„Q5~“릑Dd 0U @ @p’ךĄXņĘźąÕėų•ó+\F Ņŗś3×7̽᪲źęÜÅ8āŹśq—4Mӈx²iŁ];­æ½nĪ5åI&›^¬óń \ŗ¶>¶oĖĆ_żfĒ+ßłõŲ@wŃÅ:W@ą2‘¦éxD<Śrå'M_xĖśŚöÕÅI’™Ņ«!®€ĄeꚦļļÜū‹’öĶĪW>81Ü;„%\€ĖŠ@׎į$I9qpåĢewßT5cA2Ēu.SišĘ” ߎ<ܳæwŖŽ)@€)#@@€@€@€@€@€   € € €€€€ @ @ @ @ @\>²½ū_::pdĒX$I’D’DÉ•D¼ńēˆ7>|óæ$"yc›7’÷–ßœü0’døgߐ!€¶B~"Óß±y"M łÓČ”W¾żŲH† 8ł±Įģ”—’ļ#={_8pŚ1\ĄyK2iš¦…Ómę`Ź@€@€@€   € € €€€ @ @ @ @ @€K\¶nö5+f_÷ū#bē¹±įŽßŻd˜ą,IŅ¢’Š–™Kī(>m€“­ŗUy}ūŲ…8ć{~9>ĄŠĖk'ŽžµkĻdŪģ=“ŌdĄå Ø¤"&Ū]ąg@R LU€øLU€¤®€S nĮ¦*@R·`S nĮ¦.@\¦,@Ņ“`ˆ€© €© Ō[°€© ·`S S ^Ć LU€¤į,ą·²g²Qļ¾sł‰‘Ń³ŻłHρ!C œU€ōwn}mß/’īYĆœ” øōŃCčµ³V_µāS’yé›N łäȖG\Ń0gOuėŹó>‰‘ŽCńėŸžˆ€‰Øi»2‰ˆŅ7’\ȍeŽķśyinl jڮТāņČõƼE?®ŽÅ1Š·ų¬Nb|fO tn5šwī·`„…ōš«G’į-Ń>÷łXrõ¾X“āł³ŽUIE}ŌĢZe6@€œ*>Ņ$"Ņ4Mc k{DšFēĮ•±wCģß½ōœvYݲ<Ŗ[–™ųĖžĖ—ŽxR#‰ˆˆcÆ’$ęŻ1}^lzń ē|"• WÄōł7™ų;Ē[°Ņ7ū#޼ż‡'įł$‰iMK"I³ä R(œ|eUļž—bbø÷w¶™»ų±ź†æ$ĪhŸÓš—GėŖūĶ wxĖ…ŠcÆ’4ś:6æ=PŅ\“Ī>-ķ'bZĶŽ3ŚeQqYT·,s.išOŽ|ćāČ;ÖėHÓ4ś;·F!?ńŪ>I²±é…›ć•ē®Š¾gžpyuĖŹh˜·ĪLĄE7P|Ć­ó'+×>t¤…I¹JpĪW@’HŽV!‡~õb°kūŪ¶éļ[‡ÜIRtĘū-6#źę\k®ą"+)ķ­¬©S];ŌśĘ•‹ ļtņ•¼“ ŗyYTŌĻ6ćpµŸŲšģ•_U3ڶhåÖ_ÄI“4-üĪ`ĒżlŒœč8lœ3–ÜaĘą"Ėē‹ŠŅlEÕąōÉŲß¹­ņ.Ļ ōŲKīś·Q^Ūz^'•dŠN¾’7MS³ɑC7īxś­’~dø„o2Žu·`%§,ƒ‡6Fnlč¼O¬ŗeE4Æü„€‹)ɤ£#s{’¤,?»;÷…ßE×k?ŒžĆƝ÷‰eK+£ŗu…WņĄȹ/D˜ęÓSžĘ@×¶HÓĀyŸ\MėŹØ›½Ö,ĄūFza$‰wæ2ѽćĒ1tt÷yŸzYMKŌϽĮĄūĄœ]wżś’ńĒåūź&7@Nó`ųšńż1йuR~ˆiĶK݆—”4jė7Ī*ÆŲÓšę'%„ūk§7ZŃŲ4ŗØ¶~OŪäH¼ū-XoźŁ÷bŒ;’™±8f]ūEs —ˆŅŅ}u×ßś³?»öęG’U”0ž©œ¶­iżĒ¾ūWŁl®¢’DQ÷ā+·|ŖøųpÕ$HzŚKĒw’"śNń0zmŻk1é#‘$ƒgt¤¤(Õ®‚Ą%cttꥱ#U[»;6g2Ņń±źįį”ācƒÓŽ÷f‹ åI&WtŖļfĻż°É{^IÓ4ŚÖ< soˆL¶ōäē‹®|!f¶Åšą‹qųĄ­gt¤źÖ•1céGĢ4\Dia$[RŅS6‘küÕ3_łŪˆ$*«v7ĢYų«7<{ż’žætŪuv_ń\gĒź’™¦Lr€œ^džˆéó>5³®>łŁžŻKbtx_tw®<ćż—ÕDķ¬Õf.V|¤…äŚ[śrżō”æxņ÷žÓŠą’#³ēo¼fŽ’#·••÷¶µĢ[\Q5<óšĮ;6¾Ū~Īm%ōH#Īą–Ø4McŽĶ5³®Žā’Ī˜Ń²%:öŻ]‡Öõ1«[–Guó’čļÜnö`åLJĘN·M’$éčpYļŲčXßÄxÕ蛟ļŻyĶó…ōÅt’®«6ļŽ5Æ÷čģżńoĢ=·+ é{ķņķŽī|:źē®‹īśi“ĻķāāńŲ·ėī³>dEżģh\x«0ɎļzęéŹéó>[ݲü=žObÓKŸ’NšN$™LéÉE’FFfŸŲ±iöūv-xģ=/P$I&}k|œ‹s} ÖYmŻ{ąå8“ūŹųÕ³_Ž”Į…ē MK£mĶž…Ą$;üź÷¶Łžä¶B~"s!s>+”Ÿq…to{2śo>’“Ķ–FuórWAąŲūĢ}śųīgN\’’rg išĘ@ē¶H łó>įāŹz’2ąHÓ4wdėćtmO/Ō12æ Š|RȍeĪģ×x&Īņ*D×k?ŒĮī×Ķ*\ĀŽļyīX÷¶'Ÿī)ŗū?łÉ±]?źŁūüsgśÅĮ£»»Ļę@cƒĒbĮmӚ–˜Uø„ulüĪęŅź¦Y­«ī›—d²“z5äd€¤i:Śµå± ŗČFĻžē¢aŽŗ(6ówž.-LD$I$I֌ĄE”¦i$IņTYMó¦/ųpådī;3•?HĻŽ¢æćµSÄĒH¬»ćoćŗ[¾…Āø€‹!ŻŪŸzt°{פ¾*3Å?DōŽł‰‘·}ž$ćQZ6eåc‘DŽlĄ%ąčė?=ҽķ‰g'Fś&ķ6„ĢT’‡7~7:·¾żĆ¤&~öŲēā™'¾I¦ÜLĄ%āŠ†’÷J÷ö§ö¤…ü¤\ ™ņIÓ4ś;·E¤o–„P˜iZg†ą’¦itlüĪ=ū^y_HDÄѝOĒŠń½fŽFzŻžćdžŽķ=ļ« %@»wżīmXĄ%ėČö§:ŗ·?łbnlą¼Ö¹hļ¼ķ=šrŌ͹&ŠJ*#ŅB¤i!"M#=łūB¤iś–æ+DZ(ÄųŠq³ĮĮ—z©“zf[óŹ{Z“$sNėƒ\“9ŗćŸ¢01IQq¤łńH …(äĘ¢PČE~l( łń˜īÜŲąļ|7MS³S,MÓ“¬ŗéŃņšę/Ö͹®ō} "ŽFū»F›–ŻõDYuĖ'ĖėŪ gūżŒ!ĪF×ÖĒŁžÄÆņćĆgż<ˆĪځ¾ł|÷Ž:iÕuƶµĻ}üš3ł^ÖŠg+MÓ“jĘüGĖk[¾ĘŠĪB.›klśŃšĮ¾¹FF–v `R vļj^ńѧʪ›?ž$Ė»–wī;nĮĪYēk?Śsdū“ó£gō<ˆĪĖžē¾±a“ļ°.- Ą8@²„U•e5Ķe†øąR?ēŚŅ¹7żŃÓf.¬0,Ą…šŪu@’$®Ÿ–dЬi]łķ¾ŽĶ†˜Lo$Ibś‚›+f­żÜgźŚW׹ĀČo4Ģ’Pyۚ?S?ēšzC\ЉˆØŸ{Ciۚļo˜{żtĆ\ЉˆØ›smqۚĻ~ŗqįĶM† ø QŪ¾:Ūŗźž{ŽÜbø€  5mWµ­~ą“3ßÖnȀ  Õ­+3m«øgĘāŪę6ą‚HDÄ“ę„1kķē>Ž“ü®†ø Q5sQڶś;›W|t±į.h€DDT6ĪO[W?xGóŹ/7„Ą ˆˆŹéW¤³Ö|ö֖+ļ¹Ņ04@""ŹėŪ mk?wsĖU÷®1”ĄédĻwåµm…Yk?wćü[’“-Ņt,Mół(ņ…B.?1Ü;phĆ?l0ĢĄ¤HDDYMs”õźūf½óóž=æŽDÄyŽ‚ @@€@€@€@€@€   € € €€€€ @ @ @ @ @@€@€@€@€@€ † € € €€€ @ @ @ @ @@€@€ć•ķIDATąŅö’¬LPęE¾,IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-9.5.png0000664000175000017500000000066514632072346024216 0ustar fabiofabio‰PNG  IHDR ™ƒHĻsBITŪįOą pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<*PLTE’’’@@@€ ^Ž9d›Fq°Fv³Gv³I…ĘQˆÉS‰ŹSŒĪUŹ;, tRNS!Mllŝ·XēIDATxŚķŃA Ą ALą”ĄFkE|ų÷U/Ķż+ąŅĢHŲ-€Oõ §Y“–Yō'ÜB‚!†`ˆ!b†‚!’Ž1Ćų”ÅæKo0?łIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-9.5_dim.png0000664000175000017500000000153314632072346025042 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ CģIDATxŚķܱ „0€įhwp‹ÄMn·pWqĮāŠŚĀāˆ•~_›āĮ{Åß%€ņTł'Ž]śaß§ÓAJŃäŲ·Ÿ5=tĀģ r+†hļÅ«­@@@@€ēņ’…uż¾é‡cq€·ųµ wŁ7„‘IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_11.5.png0000664000175000017500000000067614632072346024214 0ustar fabiofabio‰PNG  IHDR ™ƒHĻsBITŪįOą pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<0PLTE’’’€U399uµHu³H}¼K„ĆQĄO†ÅQ‚ĀPˆŹRŒĪUR,tRNS qxŚŪéźĢHHęIDATxŚķÕQ@P„Ńķ ‚·Ā ‚2豝*TB 3æ™s"|ū° I’”5*YöcR”ķ¹g ‚A~b=/RÉŲ»ŸxƒÉ®k#ĘČIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_9.5.png0000664000175000017500000000364714632072346024144 0ustar fabiofabio‰PNG  IHDR ™Fō„ĪsBITŪįOą pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<×PLTE8’’’8888+Y8882b"Ex-J08*YH}/G3d#-\ ĶL&ReŒ€@@ €@@ €@@ €@@ €@@  €@@  €@@ @ €@@ @ €@@ #€@@ €@@ €@@ €@@ €@@ €@@ €@@ €@@ €@@ Ä@ €@@ €@@ €@@ €@@ €@€@@ €@€@@ €@@ €@@ €@@ €@@ 1€@@  €@@  €@@ šWtZ²`öČĆ³wŸV_Ś»tDó •F­[µįY½9½lēäMÓ1įś[QŁŪūS1Sæ¶ö½ŽķŠ1ķ¶}в<#ˆ™_ˆõm]¹Z P–»ļćFļåśčÅ ±@ÖüӟmMõķ;ńä掎Ö@E•iDŒ-~Æ$EŪćjɁüčd2Ō@¼A@ €@‚@‚@‚@‚@‰4:Ųl‹@HB -ź‚@€@@     €@ąyšźīĶcł‚@ iOö©Éå‚좺ś¦F@Šl‡y ? R…sZ.Zgæ™q½ʋ™OJėU@\Æ{Å.šö łā³¾GWäö’,rQ PłTæünRŠååńR '•YŻ.ō«$čŚ3¶on&ß(HT5(s®ö¹@ A÷+ļ7Ķö=#Hڤzd‹ĖųoŃ @Śs=ļT5Oé{u{A ~Ē:zJ *×_ ЦīuF€@@ €@@ €@@ €@@ €@@ €@@ üÆ~ į‰JõIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-6.png0000664000175000017500000003270414632072346024047 0ustar fabiofabio‰PNG  IHDR ™q*UüsBIT|dˆ pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<5AIDATxŚķŻyX•eŽĄq§F¬ięµ™–iŸj–¦·©l7Üwį<ĻaßA69;pŲwTT\QDÄŁddW@mß'«©¦i{kšĢŹT^ \Ł<|ēŗ>WĘ9œøųĶ~Æū¹ļ{Tggē(`°tżļʧ½ B,µ­ACé> ’IĢ`ž>Č/  @@€ 0,Ä2`2ó @@€ @€€B€ Ąšū'-žĀ<  @@€ 0ĢdrŠTę@€€éWšfÅY_Ó“Y؛÷OZL€ @śKKWVąŸMņś{&,œ|×öOßłøü©;æżQ›q7=8žNę@€€¹"3Āņý7«*ü¶*wėJ=_TŹ÷ó{ @@€\qlL ) Y”£.ӕy¼\īž²OWx̉]•¢,p}Ł«ūĮĄ>­īkäEüŽ —ęŖZ•MrzząŽÅµš]Žż¶.Ž£+uysÉsbg·ŌƒĀ©ųVń;éĻi‡ÅĪčįUŲŹļ€rŃńa“œ¼*ŖAü*ŗ‹ŗŲ»CWęńR|«üčéŠ8$t¦NGĻé¦)ā,ČyN­:£IńÓ×”ĀŅ”ÕV‘™ń™ź]Ŗ"§×nĻ/ŹńlQ:æ^c’‘±Vų2¹]8I€ ĄEˆ¹ŗZ£.v|+øĢž=Ćnū•~-ö+ā3-5ūT?ķū(³ŠX¶dQŽ{[Ō>Ł×KśXłˆo—»¾ī“Ün;æw¦fׯxē-2śW7ŽŪ[€XGfÅMÕēęĘEf:ÆÖ(ņ=uļåPśųiEd·VŠ“ųŪэāWį5Nļė+]Ž”„Tø¾“Ógæ×Fæ½®ė+łNÆz¬——2&ęŽq¶OŒ÷-Õ]Œs/œ»6)aæģx\³Ż×Im‰sW3Ņ Ał~ĶšĘÓßg”nPNPTh}²½›Āk?ˆkĘ4Ś}YēšqtƒüßŖ"·]×Vk>Rģd:“ Ė9JwvĢņ4Ē•”Ū&GmPŗ?ßjūCoTI+!ŖbļŽ™;Œ?Żj^©•ђ6¦G×Ū}–ø_8ī¼:t{ąßFéD,ö€ @ĪāŗNYQėš/c­Ć?5»<^Ʊūø·é¦Æt}S‘ļß“3 Ž6mŁ éѬ‰ŹjõDåž.Õ Ķ>•ÓŖčlĻŗ¢Ąķõ.+¶0#<@,4u*—5źb]©Ó[1¶ßw?ju¾ų8—_®ŖŅaedvB«š}h•Ó;ęŖŗÓ›ÕmRŅÓ}sÕŽћ&x+UĢ€Į)mє;­ŠŽŌ½£Ū¬čMq²łń±kV(vło]Ōä—ėq „ćēGéö%¾Åī?>›U!ļIĒńĪŪ#­ˆ„ķq|Æū=źBĮ @`ņ"ŻŻ\ęü¦“9\ŗ(Š&9}ŁYÆ«kÕśJĒwS»^K< ;ß*‹i”u)+ gķ9$tkÅĻg„gĒHw…DģžU/ū†= FČ ˆ“a®ŖÖ(ņ}[Ä„©ē¾..K]]o’ir‡¬³+@¾Ó–ø¾"…ÄåFHR›ķ©91«“eiQ„ŪŅ ÕĪG‚vˆMĢ€›ŠO›Ø*×-Īs?$](]Ų©]!"­ŽH«' į{ģ?’ŽåM< ;įž©(ĢókzDŠ.b>’®’4+&§d„U;žCQąŪģ—ėÓ¤-uIžµÉ:ru²OŽgkH…üĆČ:›ļ“ŪeR˜œŗŲG²¤£{=ף2&ę~‹¹„ ŗ±üRCäĢ÷™«jUVć¤cvƒvś7؋]^ .w:^c’QL“ü«¾¤ūŽÓ›Ó[åGƒĖ\ŽšŁģ»o¼‡RĮ|˜˜…‘³„Ǧ‚ĖŻ_™\„5W×+ź„ä|!ā¶^Ußj{ņRŽä Ūćü®a·Ó?¤ļńĪ^\=7.e„_®{»Ļf–Y”ž‰Ģ€ H÷åµ»ˆĖ’Öö\įŠģr}9jŸż'ŚÆē\ׅofȋčm%Ä&%jƒ¦Äīō Y Į宯©ŠŻ_.ẗܱ×鿄Vńéū9 € ČŁ÷tˆß,LN[y&.Z‚‡{¾Ó(žĒm}čNē5Ę-–Ś*]Ļ™³!Į1CSØ.v|ĆX+|Łóū“%ĪoĘ6Ÿ9²7¬Śń}Ķ.·—¬ŒėäĖ’ÖDÖ9|Ōó½d­±v—V7z®ZHĒė.LJ]Łvéń™±MņÆĪ=jWŚ×įµIQ9+*3AŚ”Žż~›äĖTE^Sŗ>§{uE_i’²Šż9÷ ¾{c›ģ¾Ō•y¼h©Ķķ2ģvüG÷ Zń­Ā·ŅŸo³«e>LŒt –³¢6Ęė+Ż^ū)B„œVEg’xzŌźdĻ>ūāZÄozœXuŹ{³ŖĀ:27ŹR{ö鑬é†ķFqiņjéFuyzŅZsõ>Õō°Ü(ėØ-ŃVĘķ‘Żļ]ødyP¾ć¼ųåKƒņ]ŸWzwXųśź™óŒóģ9žYś‚ł +–X·D‡×8½/››x@8ī³Y]öcThj4®kCwÄ6‹ßH{ATE‹ø® .˜•/……ōØVĻU‹Ó šŸø2Ķ=3l‡{¦!oNĢśDˮϰIIZåŗJŲÅ|˜˜©ÖvŹ"ßVĻ,]±„®J'‚5I·K?QY£žyPtE†ŗJ7+*;6“Źåļ1v_Fģuü ŗŃī éD+éNŪ“„µē†Ę‚Ä•Kl’—/³ŠŌ©{~Ż&uÉŹä’>¦Õ}$ļ¢e„“"³ Ś~=ó @`‚`]źŻSõ„ś ¼€zm©×aU‘Ļe_KH…ĒĖŖ"ē,Ī9Ęw¢jÆ:®IüZŚ?YēšńÜø ‰=Ór[Æ+ŽįMżļž’¤6į„°$lĖ,ƒćrę@€€¹ä‹ }6{5K÷Œ„ļuüpn\fbĻ×'‡Tźl’cÖv‹Ÿt…Č©3›Ö…NU¾Č)XFz€LŅVk„%)«|sU•>›µ% W„M )µ<żøVK/Ҭ°6nŠ=³G¤QqębĆZµcFģʐ ×× ÕĪG"÷Ł×"ķy‰!Ēš 0ń™ØÜ£¶ŠTčĢUµŖīX8—°$rS\“x¬ĒQ¼ ūÅļĀö8æ§Łåuhfųcoß7'vc‚צࢉ©+¢ėķ?KjŸļÖōŽd²ßä‰ī«mVNö›ų³ @p•ˆ“éŪ1CSą“ķŃøĆżļæ}6É)V‘›c|sj$„/ėŽŪ1;fc¼w¶¦ŌXk’ń¹!Ż÷į—ėŻģ\ģ¶>|{ŠN’]™ū«>›5„Žŗ ūe'\ÖśWIß¶Ēჸę3GśJ÷‰H’Œn¾‘>£·ż»ŃcB+ÅwN_høKx~ģų±Ģ€ĮÕfœĶœéŹBßż^ŁŖ2›ä“•ĮånÆÄļ—•6Gģµ’Dś ŹAYē¢-ŹŹž+Īk ŪC*Ü_n!½.EE\“šmh•Ż?—>ūVõŠJū÷}²ƒŖ…%†œ)!™±^YŚ]²Ō”U~[}B*ßr[æø"¤Üõµ‰±k »ß•ī9wČuøī—ś įˆō™ŠŁ5暚³.œŗ3<逹żY›Ė»GzdK––ša®ŖS½ rn€Ä:1&ĘÜsÖB÷̰ņōÄuóćÓ–Ū¤č¶lóڟŅ!ėLūļå€Éāq]™Ū«¶©‰k¼³U‹rÜŪfG'¬Rz·K· kžå¼:2Ē²Ē ‰tĢnb›ü»sO·Š¬æōÉQVå{·ūä(Ŗł~Mš]ī/xeéŠg„å‡ĻŽÉHU{>ē½Q^Į|˜˜³īé ß\߆¤söHgMŪe©­ÖXGmŒ—ö|„U;ž#­Ēfs)V<»"¢{5#øÜķÕ¾ŽŲķyóyOqĶņ’$ŽK§b© å­Ģ€)H !Id'£öŁÓh÷el“ü«r§# —-?óųU½R_įųnĻųųiùć‡Ņ‘¾Ņū&'gH§cõ!ĀE„F@€XhšęŖŻZ MZڧqśRĀ’FE·aیžŪ‚jbŗā$¹]8Ń Im¶§&i‹CĻģ iPJA"ķūˆŚ'~Ń3.RŠ'ĆjßO=( Fr€ōÅ:jKōÜø Ż’neÜéøR›?7~uŹā¼Ą}¾[4ån™†RĄtægо(ŌeMŲ¶91éKu„ž/FÖ9|Żh’¾9‹÷ĢŪß*“·’ī9%…Œōų•ōĻųVį˜r§¼™ł ”2;zcüäąŻŚŸVJVƜčŽN°ź‹“*b®ī>żŖ%ČŚ˜;/>#uvĢŗ$›Ō%+§†ä…Ķ[“<ͰĶų¤S°/ó @0ĀD i†¼ˆŁ1Yń}EÅģč Ī«£³=6†īōŽ\“ 1#MŚ+rī%ƒŅg]l¬p3{>J‚ķŅ£³,ŌUZ·uŖ]!ö’ŠWŚæļ“J]454’¬K'évéĆkģ?:w/‡ōļ†j—#†jē#a{œßՖzv^cÜ2-tst_Į!ķ5±Ō”„L)0LTVkœķĢ|˜h€LTķUlsoO< ū!®E~T:+p‡w«¾ĀåMé$,iÆFB«ģų̈œč3«uŖĄ<æFeó«Ņ±¹:Õ*pG@żĻWWźT<}„ŪkqĶā×Éķ²ĪäYg×ĻpŅ?G¬e>L0@¤›Ķ5%Īov;æÓ ž§·€Hj»® ¬ģŽd.K\³üė‹9RWUäŻ!ÅFĻų˜·>1¢Ęéżsó•NȒbå1»ę@€ĄDW@¦„īŅ{ełęŗ·‡VÉ’Õ3 ȏyl )œšn±9¦{?‡tŖÕ…āC]ģń¼…¦VŻ3>fEoŠ ŪćņöĻ/(;=6JūJ³÷W2&ĘJcķź˜-Ż‚.ÅĮ“Š qŅćW=V>¾÷Ėõj Źh\˜»N_a’ĮD•tGČ^U\“xސ„VńŲœŲńēnZŲėō~oļ—nO—^—§GmrX&ī`>LŒMŌ¬€”ƒB§÷&M©ÓŖčle”Ē!iæĒDO¦żw‡®Ģķ5»tEįT}‘AڰµĻī’ŗßU/’20Ļ·Y‘XRįńŠ“]X’ŗźÜ}sbÖ%%µ ?œÉķĀÉÉĮé=”U®o© ¹ˆ€É™®“vJnæ—n,_rųüS„OJ.ŹQ—ŸŁĒ‘‘–Ü.?kćĒ£v[z=²7“ŹéHoŸ-=~%ķż°Š4+¼³UåŖńó @`‚{@Ü3Cw*vś5ŵĒŅ.! -ā7scW¤>:W]ƌ¬³ū¬{óøc†1ē|w{X³c„“®śślĆn—·„€™\¬Ÿī’Ī|˜č&ō3wqTč¶Ö„śŒ„¤6įÄÜŲ5IŻ¢(px#lĆ‡‹6++/t+ŗMŹŅŅq»}}¶®ŌóÅįŪŹBļĮ @`āręt«&…džéQ«Ó]u'£ĪģõH=(œRyž¼Kß½¢aØ>W:½>7vuź$ķĶłÄ65meĻż%?ŪŅ!œ–Ä­wĖŌļä,# @ŗ¹¬ ß&­„H|s½Z]ÖFäŚ$/_Ö½Ź1'vuŠqÆü³Ÿ6« ŗ2g†ļ0ö .kŒ[.tlÆ“§Äu}HžS®AĆ @€`¤ˆ“aÜk“v—¦Äėšü„5)=_s^™£)ńx^_åņÖ¹QėōĮ4CQhoŸ9;zs¬ŗŲ§]ŚėŻ`’YR›ģ‡¤ā÷ēnFo¾uɐē3#$@Ī'¤ĀżÕó­bŲ„Ēgöõ½Ņ#^²“„µöĖ£²§ź3cē',I×W:’żt¼ģµūTWęš®”Śń=µv…Ģ€ĮÓ÷ŌŪ}Ž×‘½©…Nū‘Ł}ˆz·6rŸüó37¬‹ßĘ6ÉæJŲ/ė~ŒėĒŌ å­Ģ€ Č$]‰Ž3Ė·ī§»¤8émļĒĻŽėmNzlP–J\õö9ÓB Ī«õ;¢öŁ}¦.ņx^–»>¤ā§K Y @`‚FĪ ”Žæ•öuŲ¤¦§_č,)(tenÆōłÖ!”3aæš]p¹Ć»T„SCĻŁŪē#]]Į3IWŖ÷ŚP昔ĶļśģWƒĖŽs\ę”Ķ|˜˜)žÖvqĶⱄżā·¾¹źŠŽ"Į1#j“ĻfmI÷=ęŖZ•¦Ųć¹Äāwg=FÕ¶1Öć]y@Lv[o”®ŅĪĻ‹øšŽ’–®Ļ¬ÖHūK,4͊aÉóŒ^‰Ģ€‰¹}Üü§,µ%!óRVĪ ßsnL ) ©pz[Ś£Zåņ÷91+ÓWFeĖÓ#6ŪÆŠęygėŠ¶Ō§”u÷ _<ķōŌ8éseńöI+¢³‚vŗŅ’WMėū~s9dDgq:4Žm¦ķ$]^Ų4CaŲĻ7Ÿ·9eDę$·Ėz\(œPø¾h®Ģ5Ś&jr-T MƒŅ7×»Å1# <¤\|; W,OŲ/~Ó}{ŗ®Ōé-yŗ¢hFų–Hi…cNĢŗDéŸ}ˆø,i­*_$@˜šłĘYžžęźz„óā—-“„„f8Æ ß¶Ēé=éfņŸrÕ&~?ß(¦žź–»oŗ×ŅĒĪB]§Ņģry-rŸŻ§½ķ ‰Ŗ·’“+:’¤øšŲR˜Ņ!;”ļ×Yv{R;ēŅ×ŗ>÷’¤’ιb¹9fŖŹ-ł 01O;Īž-OO\ūÓE ŹsO½²Š‡ųou;Ø)q{ÉPķ|äōІ18ķÓT6:®ŌI/ Śéq°ÆńĖõ«żķ½ĻÜ3ęŽ1×n÷tŻyudĪŁÖ+uöŸØ 8†€É¹ŠMčĀŅČ,m©Ū+)āÉčūĻe©I«§ź3c§ŠCÜØ®/чTø¾~¾{Abķ¾œ£Ÿ"7»Õģ:U¾|æō5Ćn§wŻ7„äKŸa±Ż8?qMŹT}”!qæš= ā²VSU/~¶Ēł½ävįdR›pŅPķšįüĕi+ć7( üš£ėķ>»ŠÅ„ŻŲ#jĝ¾õ¼ė߯7„īģžļ,ڬ)Օz¾čŗ.4›Š˜Ø ī³ēĖÓÖ9fÄdnÜ\īń¢¶Ōół |’éž]™ū+”U.oόŲ-K‹É”ö‚Dģuü`¢jÆ*“Źłķ‹ ¾hvyź¾)Ż~EāśĄķŅ÷ÓÆq:Ó#Ż„žvų± ]:˜Šzęh]’­µŅ^ ū‘Łó½}‘VBwŌKūN¤ šŹBßÖ愦ĒJ3EH=$\R8H—źŹ\Ž“K×ę%µ '®dD ·õAe§ńź~ @˜0³[ĢnOj·½¤hˆ®—”ļņ¢¢ĄńõK—Ž$¾?÷kŹ|»&ę@€€9½jaŲ-~r%_ļ±,i…EĶČ@‘¢Ćyµ®`^|FźĢˆõ >mw3Ȁ‰oæq^¶õƳ£Ü~sϟ~Ė| —njµĀ—]ž­+uzsń’†ÄĀw½½7¼Ęé½g\¼FeĘl W$õ pŹ[@ŻLć¦ŲE9žµIm?zeÜėōį mHBW|\Ē\ ż“É\ģŌ•¹æģŗ.l›ŪśĄŹŠ*ūjv9½i®,½ė ūg˜ d€bD8-õ Š9ĻøhŁØQ£~ÉL *p‡Oėļ¶zų|?絿¹ö£7š½!ĖgŲķņö#2µ÷ØQ£~ŃēĻx«Ł˜€\YCh•xdVˆõlę@€€éLjNœ’D,»Æ“ŪÅćŻJ'dY‡'-¹éO÷œļgœģ7Į"åą™×½3…\ę@€€éTģt}A]ģųFxć©‡„NIĻ׃ņ½:d©I«ķWDmņÜR0ĶPö§i› żŒcīsb‡mƒ”J8bé3uį*­+:’ŪeŖ"»#Ŗ"ē×ü¶z·k>ŅWŗ½ę“*j³„¶5ØŪ®9Šļ~ü¦‹ł9ĒŽ;źśū®æ†™ @~#’]żˆo–ķ›Pk”٧źšfÅ}–3™¤_I+"sbÖ%õ Gķ׎łõ-×3#Č w]‡ż!N÷ĶUģĢóo°2fÅJ+Żńa®Ü§¼g¼ū~’F˜[ŗłīž˜F»/=6hvYGęÄō\õčö7Ū„Ž\:@€`ŗē™{ļļĻIÜ/;é±Į§ĪBŻ ģ->$Ģ2Śš» @0żyź’Ü_’Ü.œ—FfYjźU}Å@€`ūßYžµ?D:‚WWęžźģ˜¬ųóÅ@€`g;īŃäŽ+cŻ§ęŖZՅāƒ @0‚=)ģ±”~Åyõ‚ģiĒ'Ÿ¼Ņ‰i“ūĀR[©#@ą¼&ø?ūģ•ˆtć¹óꐼ‹€ĮUŹģ³ßt¹ńJłgI„Z…ļR:di‡„ ävńøŖhŃ~‡Q›īyÖn"s @0‚üeś÷˜Żjö«‡ē?ō—{Ę’įŽ'Äūžģ¹Īfgb›ų]ĒGB«ųmZZ†„¶5čQ»Õ£FĶ ŒpćlĘŻZ)ūGʇqÆć‡sbW¦Zs¢„ē°.ˆ @€Q£7ś—²ųYaÉżtLÆōH—¶ŌķåČ:ūO"ö:üĖu]ų¶ÅŪ5Ļ˜©łŻæłÕč›G_ßå:~÷Fj„tEAdųé@nDO=(t†ķži¬?ŃWČŽēźĒÜ1ę~’F˜g]'<Z!¾=˜'c%w'Rłż ¼3mwöń¼ź"ū’Šģ‡Ų@€`„™aå7˜ń!=’e›ŗtÅDE­ź“ī]ĀŒć]&üYW"¾6˜ā³Ł»Ń¦+@Ģ•ū”w?ķü s @0R6”ß4ś†ąašä°Ųß"³[ž9ĪabŌØQc˜‚‘ 7¾ĮP%¾3˜+ ŅE…3#¶’4M3 Až×śļŃ Ƥ-@‚ĖŻ_yĘ·Dó»ū'ÜÅ Œ0f·˜Ż”Š*|;X²(G]>Īa] '` al¢fūx­·Ķoæ¼Ń–>jæ&€ @0Āx¬µ]7Ųw€ØŠ|[‘gųwČ/™‚DH˜<Ų¢(šo~D\!ȵ̀Įń穽Ē;ÓfŪ`HB«xģq縐ĒÅ)̽&ÜĒ,Œ>mŹR ƒ ’čz»ĻZlēź™‚@ž47|(⣛o¶mŘ;Ę\Ć,ŒŽKÄ Ex¤;•;…żs 3ē2#ę,aÓPˆōŲ—•zŚ|f@€`góč¾›„<ķ.ń„” kŻt³ @0vŸr§Šæš.ģ)„CÖiī9a³ @0‚,Ž&Ö E€$µŪžśŻ7ßĪ Œ£;ś”āŪCµbį5įYę@€`„0»Åģ·q-±”Ų&įėÅŪ…†I¾–2 #$@ā[„ļ†ņ ¶‡&ū›Ļ’Vc˜ õ˜lÜżŅ&ōä6įųPHŚa”3”Uv|‚ū3cĒe6LŃx—g•öa e|ōß"Uä ūFĪö#D˜+•<øÄī„ąRł«i‡„a Ż’;„NĖę­bVL€,n^šp‹Žs¹®\É¬˜§e¶ńĆ9>¤Ņē¦ū1+Ȁ‹¬?¶ŅL³`VŽ’!ž˜nåɜ .`‹mķuw]w s @@€ 8U¾¼‘ @EųłcīóKę@€ĄD8§Ū&×IjNÜ;ńŽ»™į–a»løˆt1āÜP+Gę@€ĄDøÆ¶]9œįuN_˜Źœ ƒB_!ĖģV³k™‚«ŠŌĄÉOĪ ³rļę½aał°ß›av†!³ŪĢ®ń\gS .”ļ?­@Ž*Oš§ī~Żw“ø#ķ°ŲŁm8LJD‘'Æe®†!Ē„ "‚vˆ{“;„zž%>”U<ź“t~Ŗ'¹bÉpŽ³D$@ G‹· ūśś‹|ź!į”Ēš…›oź‡]hœ^NõöZTųéč›Gߥ| 3›ūąļ„=ēūĖ~J‡ģ䐭{XčŒkæ‘ŽŲi°ū"¼Ęéżąr—7%ś —7•…ž‡“„n/Ē6‰G„÷H—šŻjvó @0WA¶Ė«‡śīŽŌCāɾö—Ä·Źśåś6xnōj0WķŃLTÕØ-4͊™¹QšF…„¶5ČRŪ4͐į›ė·oń6±ę×·žeģ'+ęÜł˜š7f @€`ŃÉŪ†"< »ßÕW:æøĆæĮ~EL–żņųLUŃ¢Ņ×W©Š »ŽķŽ’ÄżĀ÷Š|ļ6)4ĢÕ{4g¢ćē&—/ˆUd>“Ō“=ķS¤¾õA«æ0gĆĄč›F_kØßŠńß¶ØŁ\U®ė=&¤ŠŲ§Tzwųoókp[Æ*ńÜøx·ēĘĄŻŅk}HowÉVÜžØĶ8ę @€`Š—Ėßœ½bgL“ü«ÄĀńĄ<’śIŗjķ҄µź)śbż„ÄG·'Üru£Fś5ó @0„žu0N_.¾5(V:¼ge\ž6=t{ÄåDĕxÜ%[Õ ×3sC(0WÖ0ńa¬µūŌ:*}É„>>Õ_°wæńīĒobꆐ¹ē„Gā[Ä£)e§<³‚*‡"3|yŚPˆäžgܞeކC„Übv”Jöį’ó ā“Ź° @€żĻ½æś­ŗPxa $¤ĀķU€Ī2×0Ó³æÅJ: |°=°– @€³Č“ꆤõs€ųoón™¾ŻH€ ĄŁ{An5»6`‹°»?÷‚øgīŖū?ĆÜ3NOŻc;+4®YüOˆg–ŖlØćƒ @0ĢiŠÄĆż B #0žõÆŠŽ÷-Õõåī§]&0WƔMōģÅżqA”ļMł`ČmĻōŪ?9ź €.žq¬[Ķ® )޹œŃW9™¶)¶?"ĆBÓ¤˜fŲa·ź»@R §\ׅo»œńĪÖķźėsµ„ž/ĢOO½˜Ļ!@ ccĒż…r§¬±?D"Ż)b“’ž~iŅ“x‡C_vIū@.ö³ĆÜŌĄ FÕ Ÿ÷W„( üZ.i’‡ŗJß*~ŪŪgÅ5‹ßL҆ Lˆå¢qšX#[Y'’øVA~øŲU kć–h}„ū«}}VR›pbzŲ™°&ę)ĖG#öŹÆxOHWČ|¦Æt{ŻscHĮ$]µöĢJG­ŚB]®[ø,]Uäs@X¢ĻõŲPŻ×g؊Ż^Š•:ż]:–— @`¢¦Mæ(KČ3։Ÿ&wČ:ū:źb©‹½åū7Ä4Ų}™Ü.“6«ŸŁ“~PųńϽ‰ŲėšOėČ5I—ņ8@€ą*5śęŃ7Œ³÷ØsśüåŅcUżµGäbiK<Ÿ»ŌÓ“W¹±ćĒŽZiķ¶[|OZµ¬ ܱø– @0rWDĢfé¦ĻÜ*V'“ ß^é£Yā»ESN€ `EdŌ-ŽrĖüpk7åN”-„CvŖÆˆˆn“ū"©]8)Żf~)ń‘Š*[˜”±¤g\LŅm޲Ō4+#wUdōT’ S‚¶ u†ŻĪļ¤NĒH\‹üØ"ß·ÅŹ˜k™g·<:ĖXēųƋ¼Q½S–µŃRS©³6iš!/b¢²Zc®* vX³ŃiuŌf·õaŪmS—-·Šœ9a‹ @0’ž7jŌO{ķŌĻ‹[“ā5EæKīźÄŒ°üšŠ*×·.&B’ŚÄćRĤ”’NāJ< On?{„E •°jĒLŅn—nS'@Œ¤ń.¹ą> MFYčs æö‰tEČ©ˆĒż·ŌJg ŸEˆ®ŌżÅ%‡ūoĆŗ²Č§HÆ,4u*ŸĶŖŠ¤~ŗ_D[źž@€€9ƙ[¢ķWÄmt^cÜ¢Æt{ćrŽö•ö‚,LZ¾Œ @@€]üŖH£Ā&9}™O¶¶$|Æć‡qMņÆu„n/ė’y¾‘6§OTUj ČeĘHƒŅ\µWe”. Q9¾q¾‘NȚ¤+ %@ WĢ&%==¶YžU_bØvzĻ\]§"@ żbfDnT|‹üho"]xČE„~%,I[Ūd÷Ź”ļ×L€ @śuä†ų„żĀw=Ä+KWL€ @śŸn·6²Īž“žÓ`÷Å䱊`€ŅƦźóĀŪd'"öŹ?Kėq“zą’ M“‚ @@€ō£– njčMŪŻ©‹¼uˆt”Ļf’½÷ZxOg~%]Z85“,Äma{\³Żé#z½Ö-Üž˜ķ·2Ȁ‘„%ÆJ鐝ņŁøp7³ @@€ عq™‰nėWøfŲd1 Č xhæw×Ļ1šy @~_ˆŖQń‡ Ž“™dPp /„ @ ÉA„ @€ @@€& “OaA @€B€ @€\½ŅB€ Ą`HKÓ*e±„¶RG€ Ą€Æ€XE®OšĪöÆY“rɌ°įWŗ"Ā= >9®4ęxeiwYhŖµš&ÅT}^ø…fŸŠ`: „ @+vŸeĄdę@€€!@€„ @€B€ @€ „ @ž  ’IĢ€B€ @€ „ @€ @@€  @@€ € @ @@€€¹`€˜ūZ2@€  @@€ € @ @@€€!@  @@€ pµȽę‹,˜„ @`‚!š‹.æ· F^€üĻ£ökŸņŲ”lŖF@€`„ČpX‰ @  ‚«<@¬ŒŪŹBßżĀŅ% h€ø® ßŗä9±S½Ė»ƒ‚ )!U:÷LCެčœŲB€ @ ø˜¹žĻӃÅfmÓ_fģ&*jU ø’¹żo·?ė_”ņ™čC€ @ @@€€!@€‚!;Äļ_N€ @€ ėyųöń~ @@€ pŁRF€ &ä׿ą÷ @@€ @€€B€ @ĻŃ 0bä¼Ģ™„ @€~ ßR€ 0!æŗé¾[  @@€€!@€„ @€Ónøłž®)!@€„ @†y€<3äYωĢ€‰»nģ· 08rć @@€ @€€ĮÕ ‹v 0š®æńĪ›  @@€€!@€„ @†"@Šƒ 1rĻx÷ Ģ€B€ W³nŗ‰ @€.?@| @@€Ą¤ä×7 0˜RD€ @€ c×šŻšŪ§  @@€€!@€„ @ü@€€ ˆwįŠČ3nĻ2@€\m’‡5źĘ® !@€„ @€Ė € @ @@€€!@€ @ų%€Ą ł¶*=ząnIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-10_dim.png0000664000175000017500000001202314632072346024743 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ2Tˆ¤IDATxŚķŻYp]÷}Ųńß¹ūB;. ø/ą"™%K–j9ŽlŁJS™¦ÓI›NśŌO§Óö„Óö©q;mŚ“ÓNœ4n“8‰4Mā©lĒ–-k”DJā"R2w’  ąŽ{ś@- D{HÜĻē…Ą]8æóš’9÷œ›¤1»vļ~0>•‘Źē¾}åBpŸĖ€€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ €€ ÷{@®g÷_>c9£(meó{łdńĄ;Æż0*Ö<ڳ¾8ŗriu!"ÄäĪöļB+Ŗ[ŚßūÓSƏ?“-Ž^ˆ¤ŗ±£§µh˜2«“Ńw)¾ĻŻx“ŗõ”ÖĢ’„łŃ\’NE1­ŒŚ¼ŃȜĘĻ'ßīYUÓ|ęXcÕÅёÉÕĶmėė››ŚÓH#²©1Čl+“bœˆżz&ĪD,klźŒ$¢ŗ±mż’†‰É±‰‰ iZÖič‹AņĖX$ŁØŠ|L¦Åˆ$ÅԚ@@(M.$@@@@@@@@@@@@dIĪXæ²»¹±UĖź[‡ĖÖNʁˆ$ŖjĘĒ @@ę°béŹwn›š.žż~’I‹æ<>±cüzŁŠÉógŒ`ńIŅ»²™¶śæ–MNüō“•UifājĻCv/)6.•¼:ņŹÉĆQŽV;pÉø¬@nnPŁĒ’nKUß±CG#ājDÄŅk“Ęš²b±.ižrC}nĆjŲ2]åŽÆn®™źß’APŹ"c•ĖʦŒm©YS_½°k"³ä™ž}×ĒĖkߌŸN<€€Ä¦ķėšr…ćļ¾×‘dÖ¬ūܓKĖŹ2•ÅwÆnŖ®žŒˆČ¦Õ…ī®Ö•åiežZīÄ©ø`š%µŻėæš@Uc1béÖM5É }­uɲH"ŠqmwEnZ¦LUNED\ó!_€R HR–ę?üéégz"Š“egO“ĘŹßX]—M @@nGłšMuēbšƒ_‹'^ٲ}y¶XžbyDDČ@‰˜ē•č;lé¹zńĆßŅby¦¾:S./3J+;8ßķpśŃ™¤źė_l/^HœØoŁV[^0N™ÅŁž×,IöŃĻ©«!{1w,ßŅÕU•›0L™]>-FDōt>óōŠšįädœ>XvįÜäņ/&f ³[ڐ ×VģśŹ#K‹Će/>×X72Õ«?_Ūq—āQÓóŌ’Ö?[,Jł©ŃBuDD,ė]’l}Ļ[|Śļm*_ūTEÓņĻäŚāßX,Riģ}łĒß94x-1šĪ©[6?ö/Ҋłm£®kżÆek“šņ–æ7ÆķłÕś®S?:śŖĄ¢6p)łīąÖut¾ó|ug®&-~|>=-ßśµĖĒßßsKvr-ė.žØnœøZø±ņńå¢ecUÓOžua8āāŃc5tģņ‰K9Xģė4ŌŪöäŗ5oünŁ›īž^æ¬óįźö³Æ—7ŌµMŅö|nżWĻ\¶łJߞo„qüÅĖ'śöę*&GóćIDÄä±ļß¼uXŌFĒćÆ×vÆ’[«jo~tųōž?=—¤½æŁ¼īµ’8|üĘ£CĒ/¼×æ§¢rųD’&q­’żžlł“4ł00Ó Ą¢wōdņ‡=¶vėŅÖ ™t`_DążižźĄGY9¹÷w#†NĘĢł€’Nŏŗ¬’B÷ŅņiW†ō½Ō÷Ņ­Æ-·ņ),€qņÜ ßŁūśą]»2Ż  tÖ!…xeÅ»ė~„£ėƒŠ$qć¢ņ$"҈d¦ø¤¼ę#×3P‚ś.%u³¼Vī–cL@Jq’ĘČŻŲŽs €€ €€ €€ €€ €€ €€ €€ €€€€ €€€€p$5v@@@@īEe|1›Fš¦7Nmßų7M#"M?ś)"MoüTÖed„&ÉnŻœĶŽ5[' €;ØŲüłęĀm1ę\ƒ¤™Ū.Įp€@@@@@@Xx@² ĖÕØ˜w@ Ƨ~ŃŌ›śC>y@"²…ˆˆ‰+•uFĄ<rĆhßÄåØŹ.[żbbt„mž‡¤®®żüϳŁB1[4>+łU'æž™Ļž³ņ&ćyŖinh_õ„ń”®~Ŗjč½sūśŗˆ@@ę©ļ%× ”6@@īIkz’^U‹€0O;:?Óŗ1bĮ'Ń(MǾ?Ņ÷žŪĄ÷ūW.Ś÷“¤|†%Å|·aŒ%ø™¼ż±yžI€Äİ@@a@œĄ €_b@Üś€…¶¹ ‡°ęy÷E@¬XXH@`a+`A±b "f¼ū–īź®Ł^^ßfd̐–½=ĄĶpHŖĢ—Ö°€dsĘĄ’±`A±`N3¬6N¾Ł_QL6ģīæ6pŅ äę~D®Š¾eī;šžzsĉw¹©ŃѼŖs®ōõŸ;o”2M]¾{ē\ÆIÓ÷Mf @@n^‚D[wMĶ\›9tųÜ5ƐišÓ­sÆA¦ަīõ Ó^’¶mHę<@udßE·zˆøéŪ£:j7ƛkCĆƧ@@¦©ČwöĪżŖÓoł0/€€DD||Hū²Īę¹6uāt’%ˆˆīpµ$ßóĄ\›JÓĮĆyēAdŗ¶5Ił\Æys’Ą”‘Č“å¶•=°}Ī5Čäąq#i ÉŪ6Ķ}W¬£{/9‘ Ó{ŃŃøvå\›xßP¬@¦©É/ß1÷«Ī¼}Ż7”x@n;`Õ¾²±n® ¾w¬ŲX¬@¦i*nœūüÅĮ#EwÅ(ķ€Üځ$m[ŸĢy’ü7Ļū†t+éŚ«z7ι¹>pĀ`dšņBĒ–¹OŚ7ģD:@ dĘR“w¬hŸk£}F PĀ+™.l˜źžūDzōš·%™µ­N*ēzĶĮwĻ.@édĘOSµ$Ÿ™ó‚Ā4?ųžÆø(Ż€Ģ˜€lڶ1™så2|~ʭݱ²ˆˆ$‰ģlĻͤ£ażź8fx%?·jĖLOÖĻrŖ*æ|›€H”—-›9…ŁŽÖ¾¼eɅ+ĘPŗxž¢±°īƐyK¢m]ājs™æöŠķ[Œ äRĢt¾yć|ޘūDwÅ`‘¤~Łŗg×~µ0ÆõH{sw§”x@†ūżõš…GæYŻńÉßZ—_µÓJ< Łāń²S ]5MóyskwU}R‘T&UIuR“Ō&uI}ŅP»tIs[[¾Įp³›®6?šĒĒ’fģÜ|Īk“ÄÆżƒH“$‰$“ÄG’¦I$i&-Ÿ2^€’H25Ž?æÓ♓õĆK F P²łåØČ?ü„/Ϙ›Į#{ß²Cdր¬[2ó3ÅŽä­ŌøOüĀo¹ž–'5ÅOpl¬µ¹«Õ(途յn-ęrK‹™BęįņųæģxōŃŚŲ3×»–L®Ųf‡Ü/~!‡°6>Ū¹ėŌ›+vœžIšÆi»PŁXßYŪvłų\ļkźN²©Óń‹}RVætżĢ‡¦Ī<4txüR”lõSćƒ'~øā‘~śÕĻ„ÉĒ_u{ė»ŪźÖ­“Kż dó×;z÷žŽÅĆ·?3øpÄĄŽ$™:?žÆnŖ¬]Ņu®"®rI”÷7+_’/™©ˆ-Ū}ąŸūų}Õ“Ė¶Ä ;`‘dčP¶ģZ!*ćśĢĻg‹Ć;ėĢ«ļ<·õo—eū~¶ówś~V·¢²>[žNE4¬jčŖiŗ9 M+“ņtŅnXŌ9ūŚ•÷żęÅw÷ż^2ė§oG/Ÿ9=tth{”|Ķ—Ź*2åƒ†Ļ¦cžųďFo¹t±5Ū»1öŪ-÷¾LDÄõį‰ģBŽ|}ųŹéį“·ęćę{śŽžyåߍ_ó…7’hI[óŗŸž§Į#ėžZżXDD1)ĒŽOŅ4YóĢĘo?xO®Š¶ĮNøoV oīĶÖlß^5ļĻ?åGö|ėÖ|Ō.ßž[g_é»~u| ""“vķźzxøļŻļV¶n}6Wūó³åM—vüvMū«’>½VČt>RVqä/cüĘū›—5Ö]¾jĒÜIÓäÅ“°żźŅÖ»āÉ÷ž9=÷Ūo?xUY[ŻTÓ½ö+׆~ņo³ÅˆˆŸ’æį¾3{Óė…cĖwgāņ©‡~»©ķ’ž«ÉU'Ł4Ź ūžkY.Ę[·ę'.œL M…µ½ń²p_$"ä„b~ūCµ…ˆˆ„kšzW|’€ÜīĀ»?žW×F3ß;#—ś~‘-¾ś­Hråżū.¾“)īłĻŁ\\‹H“Ń3łģ†oTŌL_:¶’ŪĶk’—ŻŅą^7m ±c׎Gź QŽøjčxęƒõHy㚧śßørźnžŁźöž'ū^ī«lŻž÷Ļķ=żćˆ®‡«››¶Ž¾żū#¹žŃŁA»ą¾XÜšÖėŪóŪo(ÄäåŸ|&¼}óŹĒ²¹»Ž-]»óׇūj–6,æqöµˆā i!›6L®ģŲ5÷Ń $"bŪ¶mO4o~$S½b׳Cć?Å©Ųųģå£ēnŗY{¶¦sĒĄÉ‘4©īæ˜ÜråĒ©‰’ū?ŻŅąŽvŪ­Löļūo.M{“8~źÅO“ˆ†•+>ŪõxD¶fÅgĖź#" c}?›‰HұóÅü­Æo«]»Ź®øĻqąŠŪßæ˜ÜĶ?rłų”’}äĻ"VķŽüõž'o~&­ųģ?ßõo½'VÕTēf»ąŽ6ć•člŹoŗå®}*)œ}-"āÜ”ź–ž}ӞÉd²™\$‘FUļoœ}cł#CGž"I+Z“$õQ,€ū- ‡n(l’rŪßZČfēyžb|ąą’™žHzżæČ#j[:vŌv••:ŠĻ_(żž|ÜŪfæUlX¹õ+Ėf=”UŪ¹ćwś_;ž½O÷ēkW<śĶĖ'÷ü‡$M“– W/¤ł4¼²ļ{‡Ł5÷¶;|Č»§ß~žlqÖ„KUE]å’OūēGϼ=°7I#2•­[ėZ&Æ ļQ>īėHDÄźŽmæ¾b–Čd&Æf‹wė?ҼõĮ4xč•’±oϾ×ģ€ū> Ż­½gÕ|nś^¾ń™”£ēĪ÷?’f—ļ:ś§?xżGN~ÜęLĆÉóŻßł\y6É$™L6W½²üĪÆo\µņ‰ŚåóHR8½g’ń×_”€E²™n×īŻŽłÅl÷#—Oœ™ķłÉlß՘ńĄ×ÕK/ż•ėĻĶ d¾2…Ó/Żéłė¹WžæY5®zL2›=¹ī¾‹'_ŪoŅż¾[£F8Jü…}ȼ³Ī]Ŗž÷X)“Æļü”õ”[ž9śŚ]'N«¹8śĻ6™=o|3ūł6Ib1³ż÷ ×eė¦WŻ’šĖ7lnŁY !—œyźM—¤Ē ¾-ŃƱźüį÷Œż¢õ·ŗ°SœX@œ¼2¹įżØĒg—ÅRūŚ®ÆC*safT•³Gæėī]»ēÜż¶4±łå§±Õēō4óK$ŅuUMUéĮQ"qŲ¹a2›>±ćūWJ“Źx‘ś”|iŽĶė§tī­ō:©į²D@Ü*¤ŠÖ„+½Jń7I¢@ frÉ3Ÿ‹Ŗ*¬°ė#I¢@ ffLģ?)ŖšĪ=ųÕßJ1“mHV¼łeßĀ|Q’(ˆ™½ĖŚ·Tv…bŲõ„Q ;³ņ?^Õ} ²Ū¾¶AŽ(ˆ”Å-{^źŖh#oĶH)¢@ †ņŻ·?¶aĀŽ%„²Æ=]Š(ˆ©×Ī¼EŁ7ž ¢@ ¾ėBŪĖeÆ@®~j˜Q [5ē•{fUCnåė÷J1µmįŸėŹ=7sFéW ¢@ ¦fo:øŖŠ”Žüqś¾O^üT‚TĘ÷@ ›ž>¤ ®tĆIÉĶÜ}`ŻƓ•I‰ś®…]”5„°5×<»0äńŽWH"Q]ņA)8ģ VŽæ4{ZoŅÕW }½¹Sr(P!„ĖZNėż$5ą„® +}„-[.ŗ.sowT_:žü+v|¶Yr”Ė.,8Nä»w<Ō±»÷ū±¢hĄÄS>ŸP#9ÄŽŒ ė[oķŲŚū3R™kźäF¹ü…Ē‘uŻKņŌ4eFüż4¤»óĄ²ĀōŠž/…چ¦Æ–ļ“åšwr©Ywö»*1°°¾cõ¦%īhŹNZU;¦§#;Ūž\3÷Ź|—ĢP @Ž?čžCNJaĻü·žŲ~0_’ ųOżmö„ķožsQ¾ ŹēMtˆĒ7ĪŃxy¦.5$ŻÕ'F¢žķĖÕV ĄÉ%C¢Pōģčæēć¶‚IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-5.5_dim.png0000664000175000017500000000153314632072346025036 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜīl‹/ģIDATxŚķܱ „0€įhwp‹ÄMn·pWqĮāŠŚĀāˆ•~_›āĮ{Åß%€ņTł'Ž]śaß§ÓAJŃäŲ·Ÿ5=tĀģ r+†hļÅ«­@@@@€ēņ’…uż¾é‡cq€·ųµ wŁ7„‘IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_11.5_dim.png0000664000175000017500000000154414632072346025040 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ8 †€!^õIDATxŚķڱ 1ąäNDį–°u7q+Wr7øę&ū hĄ"hmcš}Õß=ų‹<ü—Ø€FtūĻ™~Éæ·Š8@Χͱ¤ļ»q¶@ųŹrXoKz†U Ź°@ØĘ@#Ҝn%å˜*Ģó  ‡īŚæóōŠPĖ 'ŽąI­PIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/cc.png0000664000175000017500000014605714632072346022307 0ustar fabiofabio‰PNG  IHDR ™q*UüsRGB®ĪébKGD’’’ ½§“ pHYs¢¢EŻ1¢tIMEŪ 3·öj IDATxŚģ½wŻYvß÷¹æšrģ~ż:ēFNĢ §™YjwÅ"EWŁm³Š»¤ČU4£ĖU¦D›¤IŗDYd™rQN¤X¢L™–ø2µĖ%w„0¹ŃŻ:ē×/‡ßĻ<Ä„F‡—ś|ŖP3ŻżĀżæ÷ž{ŽŚiĄÉ„‹­š.efdÖź—Jœn€Ćå,ƒĪöĮĮņׇ¢ģ46ž”¾īPYĖŠŠpšh“¬m]±ys ģõ±iÓt}W™ŪÄĒD"GĖY„ÉéÉ©ųƒ†²WGˆ+ŗ¢¬õį79ŃįćxYĒL‘¾ ­å®-aFå-G»—GyėݼNtĆö²WM›chzyĒĶHĻĒ8ÜeÆPŚ š6o+’|¾i Ż(ėøyļņœN'n—u>śøŲ-’šūЇÄb1ŽŲ?4AAAJ„ab‹ AØ”˜Ą®[)i‚ DD‚ ‚ ˆ„ŠFöAAD€BɐAŖŁ0©¤q[I}‚AAAD€BE#ē‚ T²ć^·m©AØ 1 .Å¶g4Jy€Čćæk@^Ę3AA"‚°t’É9|¾1¦§ļ‘JQŖ€e™d³<žGd³~R©O_ÆT„ Ę<¹\ŪÖp8ß'pbõär“hš ]o@©6d×RØR”“Ż'ČŁµ ˆAX%>|°p8l²Ł–ž¶°ŠųÅeˆķ¶!›õ>ż]6ŪĪÄD;O~Ó÷ōoš¶ˆĻ7@[[Š(A ‚Pbd#­²F"c’B!šńńĒ3ŒĆ‘¤P0(œ€R޶­””…Ó™Ē45lŪ&™¼M6ŪO0ø„ZÄš‚ ‚ DÖ©TTźctŻĄį8@ŃĶ"Āŗue‹|¾ēŻLt}‡c’l6‚a,ā÷?"ö£ėYœĪ~’šf1=½ÅÅČ>½č/æ’.ŗ®#§!‚PMČĪ‘ ˆ™ČVD6$›Įį(0=}ŠtŚ@&SG}ż5b±0qœĪCė >^ōq×õ8ł¼ŸB”ŽB”Ė2Éå–{bńL|hZ Æ÷6÷ĻGij:I<&šAӒŌÕ £iŅ=„Šī‚ŌJŚ„ D„eP(ų9„m›_ųŪČH7¹Ü ==÷PŖ›õ6;›m{įē勏±,7‹‹ļ<ży|üń8AØ4l9 ‚P -ÜøDS“‰RÅģµJi(„įtnÆzćkŅéÉdlŽa4-GSÓĻńeŚ#F>†ńt=ɗæ|Ÿļ=B%Ń?[]3ĖĘĄļh/)Ću‘UĻĀbÆd| ‚šŗ®§ų÷Tõ3¤Ó=d2hZ‚LęĻ«^ma³8Óx<3€F P ›µßü$§xšą=6lø‰R&°£J-SĢRōD(`Ūśc‘5‰iĪ£ė 'ł|€B!ˆe¹‹K•Åé|@}ż#</šę@)7ĶĶ£ų|ļ?÷ł¹Ē’5„# åIJńWDo{9SRC‚ ˆ„šģ©ĘŃčMĀį]Ą‡/üMÓ““\Ąļo@Óz)īF¾ø#év?ūÆ÷mm'ꢻ;Vµ6QŖ€ĖuæŸOįrķXÖ¶Į¶³XV˜E) Phš]ßB1Do…Ā5’É,kŽDĀ&¼ŽiODzŁ~Ī³9r¤„ä²ŗ T€‚AÖVtLÓŲxŸ/€aģŽ?wilĮķŽ:¹Ü4`’LNįóm[āg]Ńt½ŗN?üžĖŌÕÅ0M¶m“ĖåČå`fĘ Üdaa}ķgōöžĘé< øs§Ėzfē ;w’ßįŲĮ”CwÉfGq:±ķ ”j xg‘™™ĻxōČ$ó£i9”²Éf]„Ćq::2ų|u˜f+”Ę,µ„\ ‚P­hZ ӜBדčzgŗŗb8ZŪN£ėŪžŠŽēij{įˆÓYĢžÉ|D"ń]ÜīV4mćkæ{fĘEoo}в ³³Awń6~Ųŗ¾@(tƒpXCÓLM"“qcYļ~ī•Ļ;šX(åĀé,ŗĄ„Ó)īįóāęĶkÜøqä„e˜š‚g?77_aß>p8vI£Ö5?AÓŪV°šo# ‚AV¶˜ž¦±qÆ·™B!G6 “d³&ŃhÆŗ{04tĶ›ūŃ“Ķ/ü>xæø„¶GÉē?Ć0ŗyÕī{kkšTĶęę¼Õė}¾k““dH§ĢĻū܂e½ü¹•*°iSńoÉä9¾óĀįYŗŗ†čļēčč(‹ æ’’P&ć&™œÄį6/¬o”ÕV–ļvOąōŗWē9Ō{e·„](HƒD€‚šöX–—ŃŃäóœ§s˜Ph˜h“„žå¢Š“$¶m> ×\AÓŽ}ĶäŲ‚a“é×¼fĆŗ°q<¾•ķbA×Ų·ļNēqnŽ<Ķ‡H„Ś-¾fvīŻ[św‡ĆwŲ³g”ŗŗćĄFiš‚PFÜĮ.ķœB¦b^©WAˆ°ī±d—ųZ§˜ Čē‹ŁĪŻī»twƒR}@ēc%¼‚Ū¤®noŃĀö0ss÷1 €Ģģč#?—„šU8£twĻ0?Æsłrštśš²æ­©é[·ĪaśćØc¤ –Ł=l“tūeŌ`h•Ś*Žt¬ x¤ "@„uŽnv”¶‰%Ž§ŸŽŽ4ŗžā}†¶¶ƒū€½@ŪE©>”꤮N²tÆnܤ¹yž±1'±ŲW—ż9Ješūāń$©Æ?ĀzJ¹F¤ņ½Węmŗāö¶°Ō…Pņ ŲöżĒIjAˆ KUmŽtżšćlæ’ MM9Lóų ŚN©fžä¼VÓ§”aŠ””Ż /OĪčtęŃõ4¶ •Šbš öļ’Æ×A.—g~ŽFÓ ££ ]ßD1¼Æ ĀŚ“O?Āt‹D€‚šÖŲtw‚Ū݇RÆJ˜(޾k¦e>ŹĖN+t=N{ūG,.ö13³—+E4z“Hd‘©)'ׯ7¢ėYgioWÅ‡ BéHÅtL·ŲA"Ā[ąråŁŗu„Š1Ź@&ójw¶BĮĒŠŠåŸwM+0=½‘ÉIóńŲŲų1€„×” d”›€äHD€‚š6d³¹Ü†‘GÓź¶=$(F'P'†*JY8š]LScdÄI_ßCb±,n·†ĻĄéÜC ‚P ¹flū!Jµ‹1 ‚ , ĖŅøsēšG×ĒČåZٲeĆŲ-*3.×­­;ųĪwāĢĪö<‚×ęĖ_>Ó)¾‚ ”—|fÓUz¢Ō=Āķv™ŸŽĘįžM/ ‚ ,SŒų°,_qHµsb •jäožę ]ģŽ}‚ĘF‹‹Yźė8GÄ@‚ ”t Ģ’F\ĻįņŸ&Ōv„Ź—]U©»Ōu¤qśäZˆ «3¼ēbčŗŲ”˜ŸļÅįX Æļ]Ą‡ß/6”rH-tā–hŃÆŻ¢¾SĒtæ_Ī'Ę:G°å0J™ŅŖ‰U/•‚R9ŚŪOārcT…‚ƒÅÅk@^Œ!BE‘϶ƒ=Z‚E’ š6oÄto,ߊոHtĆ4”Ö÷E|T?r"%Dµn÷mmó„B§Ńõ<–„ ł1 9N®4::®įõ¶?/Ļ^8s½’ĪķŲOüg?qHŒ#BˆūĪ–µ™ÆōĻØļ c8—ń § 4ą‹Č˜+D„e`ÓÕõ^ļaźė§hjś~1IćõŽāp$ٽ;üWßłęÄW>ųJ“®ėĘ;;v÷Ü{Č#”"HÅ,ü «ż©‹ų"Ÿį”|IpmL÷)ź;w é">D€Պ Y±B‰q¹īP_?B AӚ€˜™ŁK}żeLS¢]U"Ÿ²’{éL:uėöĶ _żš«ŚŌĢŌ”Ļė“Đ‚ TYh_U¢›ØļjG7–ķ™”ŗG]G§ļØT°”:YōĄåFhrĆq1ljœ!(ąvo@°į„ÆjbƆ į\+N­›Oļ{øœ.÷/üģ/p:œ·Ė-§‚ TłL0 ¬ō6ś ĘŪxėĖyڐĘü„Pky£l "@„å”Įz˜­‡=š$K+‘ѵŪ€ą’^ŸĶ637wšpų°ÆĀŲ±Ć÷ämŪ¶Ē&ĘĘ-˲ŪZŚZÖų›m1¾ o/B²÷0Ė †ó õ›ŃŒņ‰ĶøL¤+Œį|_*TˆP]ÄŻp© ݰMĢQbÜīX–…¦—üž±±ƒwŃ“>1`…ŠŌtÓģyņ£RJµ4µ4'‰x ¾]I5Œģµ"½˜ĆWæœ!gŒPó#Ü”ržzĢh¼…/²¦›q¶•½&mжóҶE€¬?4øUÓ9ķ(/‰Änݲij:‰Ė^ļ^@ò† ķ%£–Īƒŗŗ,$,ve°o_īæłļõӏNٵż™M}›“|ݵ}×&€ł…ł¹ž;ż#Ž;°]Œ%BEšoĮW{+1hŗÆPß¹„ķ-[¹M×)ź»¶¢ékī póģ»l«a>^’ÓŠY?Ė]7\j„lsT Šńń¢t»ļ’Ļ{hkĆåŹ”iŪ^!\6‘HœĀ땬Ģüé­ĻĪ…BżßśĘ·Ū=ŌŅŌ§Ÿ}j’éæżSõgōgC}Ż}]ßųÖ_öwutÆÕEtŁE„ÕĘį=ĖWŪć«e5м5š–ļ*߆„R÷ ·ĒpłeŽ"T ń\l‚÷4č•†¦%ńūo‘J}q}¾GŒŽvąõŽ ž$Ÿ·˜mĄē›Åć±ńxŠĄƒļ±yó#”j#–‡?¹üÉwūä7?௒]pęr9ļ»»ŽõžŹĻżŹvĆ0L]+¦§’ń’äæ8ø¦V„Õ"/r†@£`©2øg µD©n1‡”ņ±\p¦6ĶŖr±m…RLs‘dr#¶]Ąåš”P0™˜ćrĶŅŚšD×£hZė³Śµ\Ÿo’•ņĖķ€ÕŪÕ{v|j<¤)ĶžÖŸ’u{ĄŠÉ”¢‰n»ƒ;ø>ܒUœž“1]ļKóD€T:\mÓ#>†Õ @ÜĢĻļ Æļ4NēæÖ4ąz²Ų}iߋÅvLžĀć‘z.=—ĢĻν0WjŚ“eY!@æ7tļ©ņ'Ÿž½ōå¾²GL&•ŗW‰ōä0]ﮧ٧‚Ė6‹?zƒĢm‚ŖCa“†ėą XcÉē!‘(ą÷ėhkxļū޽CtwŒmƒŪ݈RßŲw³yó(JµHE•”™­›¶„ęęĪŽīŌE.’ė?ś³¶h$J"™ˆż›÷o®ßčæžø;ązgĒī1— T(š~•h_šQ'ĘØ¢’‚* „óͰ_Yˆ®6F ™Ōńūgho«_³ļ±mÅą`ńžŽ×{„®Ģįtźø\”—^J·,/##ż“µI½—–Łæ÷ƒ?jåņyĖét^ų‘ļ’‘½šVT§ ųµ’ŚįŸżåŸłč’ż’£;‰FÅ\‚P˜®ÓDzö®ĻvŖrO@4Ż/SųB³TųdÄZį}M2dÆQ«×Ā­’}g"±Ph†px;ĻįWFÄXXx—tśŌ“…1Å ·ĀŚ’śõ’é×=æóūæŻ™Éd¬'āćyĘ&Ēd*™^ćrH,AXNæń„>¢”÷°dĻ„ź@N@*‹‰^xG=»+ ¬ķ^ŅéA\®Ņ&^9L6{žśś(š¶įµÆ½==gī&—kĀ뽉a¤Ø«K`&Ēf ,•¹jüX£/Š?µüīüNį÷’čŸ_÷łüIŪß±egö7žŪßx’ēśēƒCƒ³==kX @ oG’`óU¼uļ‹)*X ‚Ź„n+I$X\®ŅūńŪ¶Éääa¦¦r8C47ćõ¾<¢™eyø{÷™@J$¶°°š¤üƒø\w©«KćvL©ŌųÉ÷Ž|ßo|ōWäółŗ¤•td³Ł¤Ńø|õ’ė§ń§Oüįļžį±Ļ®]¾-¦„Ša‚H÷,ρuo „d‘’¢’pĄ*Äū_;M[9{fōe&d0ÖūÅėŪ6ÉdŗH$Fš.3Ÿ]:ŻC:ŻĆĀBƧ­mÓtašŅ†–Éŗkß}õщß?ū{Cs3įT>ėķµlŪõ`äļź«»wīŁ,–„J˜4µ~¢}!tSń K¢”żėo̶n[™ĢĢ英D€¬źąŽœ~Ė3Nr¹vīßo`Ė–ŪhŚ&1ĢņŲ»y{ī7™Ÿw²°šŌÕźOÜł»¶ļś^±P銷zyļ?¹uR€ō§JC7ĻķŪŽŅ¼bŒg³˜@"¼ F£ GČĀ {³1…¦Iō¬•··ŃÕu‘¶¶S„ĆyĪ{÷ĒģļK@ˆć5ļš•7éŖCcDj¢ĀpśNPßy ¢SMDđš¤WõpODīVF>ߡƇ÷ØYĖĒ磾~€DĀK §¹ł}~ąFéčxOŒ#e%‡?zŠśĪć²vyŁjNω„jBN@ʌ‚‡ rś!¬±Ų;ܼ™„”į ‡‘ØJoG<ŽL&$—óŠŽ>Q%RŗąČN” |‘9ź:ąņK2»VpŽy"=7ˆō8½;Ä ‚aÉD`XA»XBX½%¬ķ`zzĒI‚Į-€$Ī[ņŽ€*Ėyxš ‰|ž Ķ͊\®@}})?"įÅ>yŸ†^ ùKŒ8<D7ܦ®Ć‡éŚ ®‚RĖƊ ¤¢ĘUx‘Óa-0Ķęę"x<Ƙ¦€ĘĘ!vķĆļļD)(ę‰Ē§™ž¶˜œ 23ӁƱČńć3(„‘N'ŌųÖ·b ~ų‡§PŖA )%B3.ķėAӃėŽ¾Č-ze ±Fi‚aŁų‹w?äōCX}r¹:Üīq2™$ę:OāõNrōč~’n ėŁčg“ A(}}O~[’ō5N'ģŽm³cĒMt=ˆR­Ņ°į¦FLĮ[h°s 2Kūp÷yŗ‚’u @&efų‘īė覸[ "@„åS² ÖĖņ²øølv‡ćŽõyŅfš1¾śÕ4š¶{™Ÿ 0Œ­Ņ įóė+m KŠ0Žæó5Ÿ8Å»ļłĘ£båēȄ뻹ݼD¤;TQbńĄD€TŅą=ä† b aĶ(Bäri …éukƒļłž›hšø9 Ā*s¤‰ŻFyĆ$Æ+ts‘]w„ÄęBM ”ģŹ„†Ä š“Ė51:ŚA&ó `­«gßµė$>ŸˆAXe6…8ŻäńQ2L×4=/””äyj9)õr‰L(ét©Ō Nēś9÷ūĒŁøqæT¾ ¬. .nķ¬ć]±D©Ē“čę*.}ÉēžÄ§×ē'žķÄ[ŌŹ|IœšDĮ#lK„^”:I0ųĮŗxŽwŽy4IÅ Āźį֙<ŽBp‰5JH.ašģezÉĘå‰Msv~ņ"$*qĮ*ø'VJ†ĻwƒP(Éōt;\ĻJø\AXĶł"ó•v&•ūņŠ“9.FD€+"R õ)„!™ģ"‘p‰Œ®‹ē >EÓŗ¤āaõųR+Lķb‰2qēä;¤b§«“ō%wĮŹ$ļIč- Āó(óĀ6±„Pŗ”ß6p¹2@š<žmŖfŸwĖ–ŪR邰zģ‰p"äąČTaR ÅŚÆ ó3|!J>ó™ć5fŹĒĘóDbįüa±Fe#w@JŒ€f±„PBb’J™46īę€0łü- cOM>os³ō/AX%ڽ\ź ¬µųx¼¹õm'ŽśSųtzūpøÅ•ņy³øžćl’¾+Ž]bē¦9+“¾sń{Æå2ļĄśŒŠ–/ą“,n”»–µ“Ū"@JLĀb”¤čz Ÿ/mO£Tq`(’ §q:kk—HӒ˜ę>©tAX9“įōziV‘v”ųt”ų4d'čŽ/”~?O!ē#ŸN`8ŖH¬µ –mß½ü#s™‰u}ź‘H±żÖPT·MlIÓµōę’2éC|h…c1¼ŽwŸŠŪexø‡d2ĒųųٚzÖĘĘ€O*]V†©’ž6ņ@ؤ_¬Ō(­;NÓ²}£ŌĀ+Wxræį9ī]žŃÓŁŌø\U„ V3|䆅õll7ō‹čJN&ÓĮķŪio25u‚{÷²(U ™ōŠŲX[.õõSRį‚°B Ö—Ūø©+zKžå†k„PK+NÆøR¾Š‡Ÿ…Č„?CXłtāö;b ŸÄģ^8Sļ÷ĄĘMp=ą”‚ģz3v=ų„É e!ŸÆ'•ŚŹääq …­­÷‰Å¶p’~mķ¤łżóÕXģ[×?½õ/~’æ;! UØ5qŅcPWĘ\j/7¾ÕĢ­æ9Ebö®ŌĘK(äœd“ÕH$9·fArŁ©PYiÕĒŖŻqĀl7ܚŗ ,„!Ż=t<~IbfŪį=Ąļ„ļ(ŠÜąģ $FaK®FcŒ+Hą€49”¬˜ę$”ŠÓÓaœĪI,ĖSSĻērUŻ ćŌäčXk{OćO’Ć_ß29=)'8BŁiö”=R£“äÜ]9ɦśÖ}…čę"‘ž;¢ üŃ”ÖT]'ā«O 4ļj~ģųżß993ņLéµėT€“ĮÅ>ˆ7Ą~^!Õ‚§Y˜ƒšį ė"ȇįĢ ˜ØWÓĄ*@āńiI Ž*“±ķ€«nHSŖ‹|B•ō>#Wņļt»ī¦(ü” ńŁ×X`9«­Č Ńq5„—‘œk#›æt —’PU?ƒR®Um±Ė·gFžųėL€ų`D‡œ ɝ0YĒ2põ5ācIei€c·ąŖ›'Å{#uĄdŸ†-yh¬¶@¼ŽIsž §®®“'b†1R33Wp:mt=Ū½؝{ ¦ł²Ä¶3Œß Ÿ·‰D¼ŸŻ+Q*Ž­;>#ÜŽ¹®­ąō°ńųwµ_Čט<įĢlރ¦Vņań¹ÓŸ ßų©n°ŅU*Ÿų .żĮšžŖ  ~øUQø­•ĀŖ\RФæč†õdAu’Q)«˜O€<ĢN€s¶™0é‚)?ÄŲ Å°·›×¾wńp -‚ó*¢Øœ>i>Cī,‡EjÕn@j…‚}TKŃÖ¶ńiŸŹå.r÷n’¾ņpČf äó§),¼Ž ŗīąģŁ4;°m¶ż,¬§®'éč8O8œĒē³±ķŪQŖIŗž ” Ćy‘­§ Ó-Qš6ŻÅį©…PĊ\ś¹t_äŃJČŌĆ’elŁ<ŖPŽćx?ēžęoŲæj$ w?C•?‘ž[ƒ§;x>ėIŪć×¶ķ‚Łzˆ8aĖ%øł,œMAō lpWĻiMÅšūŅ"lļCsšśF,,‡#öX|ˆi¾KoļpM=ć·æ}tÉÆ-< ķadd‚¦¦»ōöj">j—ĪŻLŽvgl`6MC"_ö{ĀĖŲp4€é^æsf ń: ½Ó$ēøCµę¶m’^ĮtuÆäCŗwžéū…|,¶8ūŃķńĮßrņ±Ņq*Kp~ķėlfąĪ6®Š93Z•/}š± –R ŅŠgĆ[ū™n„Ó}Š·©qˆA2žæū pY³ĮŅ‹ndĀŪ‘K@Æ Ž¤bÕ!› “JŻÄ4}čz„ŚQjżŗ8hZ‚@ą--ū€Vąci$µ…ßä²C'uÓŖ`ΆĶń>“™Džr/Æņč’[ķ{>„”ē½uń¼†sĆ0Į–8Į&†s;°Pk-®Kįš¬J^ŻBŃŚ›Š_?1;ś§d­Uix’ÉÆćū™Ąōü<‘  zk ‰žŒz8ųäg ļĆ©LŃeźµtŒ¶ĀĄ&hõĆ;£Š’’”ifö@§ńŲ­F“‹QoCšŻ‘Ģ Øį$ĢśWɵO²Ł[‡ĻNQ(< ³hh8ŗ®ģ ė1üž~ššBhšdMƤå kŠ…‚ĶŠv4uÅL‹—k~“­@ō¹ĻĒoŅh\÷œŽåP¦F!–„>gŃØœõ‰õŗKų¦µŠ2ßŪnęĮÅ óNć CCļ'¢4›ŗŽŚ%oŠ“y}ŒĮŽš=œŽć«ÓL łlśĮh0ņ}sć’÷ˆmåzd­“©––ś{\ūś×äó_ "µ¤A¦.ī/ŽĖØ9Ÿ; ü½p$&a0_v"b@’W!ā‚÷S0ž\ź…ÖCš.šry·¾XÖD½§F°¶¢¾„Ɲfa&;ǚe= ĄĀWŪø@łCĘ{ˆM&6ćż<‘1Ę>¦{mõŻ‘kG·}‚ÓW‹aśshĘ5”Źįf4®Ś}–|vbņīÅØćYŖ”5§—æł[œśå_āČČ.8ن ¦ >ŌćEv-愎öbC¶30ØĮ-'ŌŻó ŌMĄ Ppś} ¼¢;VĢ,vĄ}Ū\ā\oĆĆ<Œ™°‡rīŌÕłu󤁥eZZÜhšˆJÜĮ°éOqŖŪ Õ`,ĖgĖX@ēzÜ6“WŠ§C¾zE–oM±=ź†7Ćó†(ŗē­hŻao r¾l‰_Ӄ™}°H÷žčĘZ2;ż»™]·šŹœB3n i9lŪĄp&±ņ:łlīĄ$†ĖAj”@ø­Ʊg- `:[ZĀ?śŻ¹‰’ē„Ц³“#?õӜų_’Ē_+@ŗ”Žd]_ĪSNčńĮĆ8ø¹øą-ŌA ĄŽ^l=Śm9oźB¹cp"°ōHeŁlOöu”Nx”Ś#„dČdNćpt¢ToÉæŪė¦溊v œCd2]Æ}aLįtNā÷Ļą÷»1ĶMŻł”tÕŹ%]ąH’<#Q7ƒa'ŪmČl†*¶ŃtūMį{ŁūuŬ”#3®Ā€Öv²®īHY6Ꝯ‹‘żį.īéÆiåģżÄ§ĒkL€@>Ŗ²kø|qB­/[ ūŸÆ~M69¾0żĶ،šÕĮ‡rōv?>śˆ½/ ˜°×ӎčŅ'"żń5±ĘŖŪvC6¼Å[ ’@½^ Hćńļ2<üUt=ĘęĶ JéęhšńzćÕ×h”E[ŪGŒŒĶĘ$ŗž „åŁl—ĖÄéÜC-å7YGŲŠ:‘¢u"EÖ„s¾7šģ莄óŚč9y›ØesGSlK.ŸŗŖČ;Ÿy‚Ķ5˜œPYTÓśB©qÜ”²Æ©ųĶۃŸżŲ&^LŁ Tøhż?ƖįaīŽæOßH’"pa[Qģ› •Öˆ7 Ā h|ѧ°źp8ŠńŠu}(mR„HdŒPØś&ótŗÆ7ÉęĶI„F1 G7p·[6 jGŗĄ‘ĪoņŽ‚„ÄS “…œmņ°‹gy¤„·@×Čó7D*$ Šš¤qC?žpķ%õUŖPUĶ8½e;4̐$ ¬N|æöÉüW’åćzüB»}öŻpn4h Ń„׏GļĒ”Ŗ?Ÿ¦ŹČ!¶n@©(„LŗŸ'nƶsÕ5|ł®ŃŚZ@×·<ž>é}µMĮ&¼Dń€eć™Ķp0os©ĶK/kžŖöMšĪŸĀWŚ8pP ż‘;“ķ:V“×ō4Õ9S©Šf%óB(äcS“Ć’ü\bį|Ą¶r QL†-T†ńlSčµxļĆžaČ~?\r/ü®āp(³FµłĒ—O€ČQčņó—‹)ĖŗĪŌŌ4‘H]_Żž eQ*ˆRÕÓ¾ėėOÓŲx` '=[cebŁ,jźķz*O+Pė-S#īwTŠęćāŌAf\¤®£ö‚ā8<3”rjÅ#„ŻĒŲ­[4oٲę}æL\ųš^!oū¤g֐ī~cåƒć܋ ^²ėeü-Ą¢4‘%īNˆ VŸ‘‘ÓÓļ38øŚ÷B,\®Vl;†m߯{D£­¬ķŽ›\PÆLńѝ³˜y›÷Ó}AņČҲhpqė‡:™VŠ\QėŪŖ½M‚Pėe6®Ę®Y’/±Ņ‰B>ŽvHzfMš“/)„é$lū&< Į¤ ¹,XļA£IÅEČXÕĘ8 C(U|ÆŻ [ ¹Üś²b‚5X4äY\œ%6aŪcLLō ™ø\+¹’¢13󐺺āŗ^wł{{Ļ Ō”ÕśøÆ’Ļæq"_Čæ0䔬šĻÉr>f2™TČųņ=1“aøÅC×RߊķgP$™\Īą ČkĘ«© ĢÆ0ta+Éł““æS®X =ēčxw'ÕéJT’;+†Y×°åąłD’¹#÷l+Ó+=“źQK ņ ¬Eh_„öFøŽ³:h6ŒŁÖŠ»LUįgū6Ū'‰—„x‡ÓY «OžTź,†įÄ4‹ '—ė[·€,6¾łAff>`v6ĖÖ­©MZSS°ķK44D*¾ĖF"gp:WÕżĢĶ+xńdWØ`bYĀ-oq|1GŗNj÷­šŒīØc ĶĒU¹ÉŻ«#Ņ]@©źĻUČVūݳzl»ø.²óō³ųōīą=L×Ŗ¹LŁv.w’źG°­-ŅkkH€ap<솼$än=ūҳŸ$Ģ9¾ V€¾ŪpĶO Ģį=iFˆĻ{ŠŽŽźÉ¢iļ±mŪd±;–Ąxvö .× B”žā §2cŪ]]'q:€B׏H#žĻq8Uą®[§w© åDžm¶Ķ€’¤„Æģu-®m .ݦƒeՑZĘģ@)£Ŗkaųāq"= ŌVøč S÷¼˜ī©ļ܁¦Æų¹R¦Ł±åFÜü™z$)tm pīŲÉŅs}¬÷Šw(ėĮ€˜ÆČÅü]::ŖŃm'ZŅo›™éÄ4ļį󵗿ɻ»§ŠõķHŌ"į½z0FŸCćl‡f§žę é.»(¹ēó2:}\ŚŪ@£Rģ¬RķTĻ­o×ćņĀÖ/ļFiÕ]ω٫xėŽP[‘ų r©£Œß„eėŖD°ņ…nRd UH”@ęé ~öĘąäœ°ą~-?ü*öīd3Ĥ9U -Ķ $¤ź›ÉdŗŁ^) LĀ›ČZ¼æH|)Æ 8WŠ)V{‘ ƒūū¢lSŠÖŖ˜ōāf†>«ņ§°±m»vē,»Žäü…ŠĖŽ>쮈ź%•āę/žĀ³“> `¶\‡½N04č®e¬bq]²–U †q™@`—bÉ£ŗCŒ T šā¦ ›7_J—ńł¹ÉJ‘ŚęT½‹ž/µbS;ąāŌwUw’ä-ßs _}-ńq±0Ś„mÆ(pĄŲ½ß:[Č/JP‰*åž}N}ķ'靚z–[č©;UÜēXŚŽˆ pā$\/ĄŻujOg6ä„iU ķmā'5Šßd²Ó Ģ7½6•'hŁÜ«Į÷¶sck˜#¶°AW”Ż|å8øüSÜüöY?9I.U] ż¼õ·ń„÷Ō|“ķvRó+:© 7żh«¦{nIo®:²łļ9ł«æĀ‘\īō.oÅ ė,\n‚X=°'ĄH³R:ä4P'į Ē·Į)¶U“%VóŒsŽĒąR7“Rą’¶VF\®Op»_Ÿ¬nhų»d2utwq8ŗÄh‚PųLN“y—&6žcGŽęĒ:wĘōŒŗ§Ń*õ{<¶ŻBj¾…Ō<ųĪŃŠ[=‘ņ]žVž!–•Åpl§–ļŲĪö€:'“¬”nß¶¾MūO¦śĻī³ķB³Œˆ•e1ń?ž“W®¼j«–l²µĆ--KĖĒŅŽ&u#U€®øŃä!r,K·ę«? ĖŻ,§Y/ųäā•)Ü>Šż×ĶÉ’ķ_r¼.:!»v˜¾›’Š“"ŅW@( ³NhQUvd­‰Į. ’xÄ%"¹¦‰ū› T?ÅSd=ź&r°¢Ó±$Ēć9.µy ©Śŗ|½dś‚ė \¼m5Ÿ¾C°¹:£$9¼~ŽĻ#>“¢®ćN_mD~ŹÄ³8ł1žčŃe V:õšÖĻ‹ĻyW†ÉŠ$ū'§’įEWŁ˜[ =Ó0æ¬ 81žqؐ’kˆ©ļ…ė.čŗ wź!Ū‡ÓUćįzW€+7 ¤(uhĆA1„š6蚶hU¦‹ƒ²mŪ_ĪhŠręŃI…|Śčf§®V&>ž°˜cO’<ŁM!īhŠuēz0Y‘]Ģ Ļ¬Ā»É.’gčĘĖN;Ü,Œ'ˆöÕŌ„½ÜwĪ’łgń¹ÓļĖģU‘ÄļŸ2šÉ'< 4;Ēž{Aœė„CAAŽp²Ī»į( ķŖ‘ l%˜UŻó¬æX Vš›ē€^é’ĀŪpå’ģ‹‘r?&9ZĪrMNON}ųĆ”U€4{ø +Ž)“ųmr³µļmŲąXČņ0ģ\äQ‚…ŽZŸ”öę-UYö|¦b8’/®Ē¬\c ÕŅžČ²7 =žAŠ'¤BÅ`[LżŚ?fęv?Æ '=ū??ŽæźÅaøė}ĆkŖŅX„‚ph.¬§FųDі]’ŒPš=iŠ‚°r ©¾ g}&aŹ”ßHWĢ­Å„qCc2ģdūz¬×”Ej=di†Ē⸃Õ镑϶’‰Ÿ~éßL÷¬BmPŚVa~¹owūwmŻ“ļĬ¦{oŗ¼›N µĖÜtó ’üMśv?›—óž—Š‹ } BQŽ>ģ”P6f cCf=³Qņot»«w`Īå”t”"+‰€ƒK=~:4¶kŠ0P–\ 9‹={uļ,øtīn’¢ė±~}f/ŌŚßł_ƖŖ-æfLāō½üd ›<Īä@mŪŚL|fE‰A G$²åął­½»’āpēö?µ(#xyH§¹õ³?ƒwl”öU]4n!U£‘œJµźKƑ[ńĮGE!Wė N9}&&Ž„®nØcåĀ”1ŅāeÜ”įW EŃI»œ®,–m“_­ŃŅm0Šķ§Æ×:npÕų%ō\ŚŖāIžH÷Šwk_N iœņöÉÕ#>ӇÓ{Ķš¢›4=“la:“có3 ńŁŸ.L3ī t%c—Ó‹³ßmӍ@¢mÓļ:gžfŅåŻģ»÷?,+-‘³V‰ły.ž£Ÿcs:wE‚ņóæĆŻvо\6L(Ø%ÄRū½8ćšžœģ„żŠÓŠ‹°[ĒX–¹¹„ĆrŹ(”‚MČ„“ŃŠćS¹Ē(ĒH’ė¾•‡ĪuéÜéöZĻā£ŽE§æĘ]°Ęū0yw€†žIš6oĒp†Ŗ¢Üš#ÜvĆńĮ^WCė»™™į'ķq–ę-I”¶ģˆ”ŗ£?ų^0śƒÅöŽņ÷I'īÜwzŗ¶*ešŽąŽĶžŗ¦ūωƒķCXqś—‰}…ĀŹSp|A€ĢAo®Ьʛå|Ī‚q.ĄV¼B±Ŗ."%įŲ-(tĄ5ģ&,Hų‡ÅBł–O‡(Üs:å€E T®1ÖŌV¾Oä7ł¬ŻĒFÖA8tM‘kõr}”ŽĻ=óęuЌV~#“wü“l«Ž¼dļM"]uĄo|ķāTW v._+õŻ1ƒĆ=mmY‰yéʃwĆīéf(āöo?•Z¼&įśWĄ•+œų­ßä˜mÆĪžóĖ\°Ō· ź‚łļy–d0NéÄH"Ā&” ƚ óɳpNÆ yU éÕKy…Ņ’Åz|_\äU9īO¬ś €„BUaŁøy¦=ÖćŸ36)“{ Ļ`ŁQĄä[½œ 88N9¢ņ­ĶŲjE\Üīš3}qŠ£ƒ±TžØ”‘ŲŪĄåfZ­'|Aq Ā­ó$f5Ņ‹ĶčĘ-š·ĶķŪ‹Ņ*.UZœśNŸKŹöJņ™CL \¦qcmŌq]ē"NoéŸÅ¶ņ˶޷æĶÉłG«{/ü„5 (ĄŌ\Õ>'ÅŠŒk蚕6ø7@JwožśwZpė!4ęĮŸ‡zb-pĮ“‹Fšān^Å1ĶI8‘)žź(4 ¼›aK 4Š,5ģb&µˆ‚œKĒ«)¢ šō ŲBpčĖĖ[”)zÜ25¶ÕŠųØs2p¼ĖŠŠsD—!MŃ älHŖjćkx„?Ŷ2Åķ+„cŪy'…7āÄŹf™yP‡ĀĘž&ŠŌ ¶‡Pź;·ąōVĻ3»·Pźķ²œ»ƒńšX#(mĆQŅ…|l~aźÆn„ā7Ž—YäžÕæāĀ7žrõǚˆ H&”9:lŖƒŽŗbˆUõX<¬µ˜§ĘąŚģk‡æUš¤ƒ>=vŌ «ĪOĮq«X Ą"|0ÓķšYęCoóĻ »(Vt%9¶µ”7ž’œcp¢¹Ź'UtŻ"U„”1Ÿ-45|ĄŒe3”)¶–ø Ēy?Ą½ ƒļF\tŗō„g/whL-ŅÕ`VSµqwq>KgĘā’”=Y]OW-u½’ńG£`;PŹńl2Qhz–¹D7 é©'YŪ‹79mō"U%@Ņ‹€ ~i“«$ŠxxɟŸœ;G:–Ęņįō¶£•żĶé;M}ē„üJŪĪeūĻĪ`[’¬xyÄ’Łļ1pöģ³ƒo"·!šYĀŻ;ćńā±š%8..śƒCpā’÷0÷øįāY‚‘$<ōOVµÄįō,1aĢ÷ź×ÜćA·•ŽÜ†ˆ‚“'ưIĻ† ā:ģ|" fą½9č7`> ļśąLG™’s°# 1Ŗ9]TVśŖ Tå"׫).;tüŗbS©æßŌøcy‹'9}²Õ§[€lLĄuišBIXXx|~“T2H ¾Ī'œ<žqź 67+¬hoÕ6=#K{ŖĮøR5pŅģ NhnEi«—ÆCÆ`/;§÷:Įę/ü.6ž>łĢ¹7¾·w`ŪōĒäü'$fĻ›8ÉÄķQR ±ņÓĢ ]ƶ^·«fīį»Ģīcqņ©…K„nŗäŅ÷Ź] ™ä½”lśįń_Ķü<źėt”B|Ą2w¼ę”×*ž€“Ēąü$仠ɀvĄ“„O=°šŲE—ŖV^r“ߎ8œxšœūÓ½ēÜÆJM޽ērÅ;#Ÿ›[†”©īøaƒ4Sam'h×}l»Pģj˜ĄZް”ŠÉėœÅ»Z¼œŌ•”)xŃg.żī†Sē~“‡.j8ļG2OÓ_Ü'ó£Ż¤ØŠHK"ܲśe/d!Ÿ£…H]‡†ŅŽćpĢÜH'łL®Ąe ē›Ż[ ¹}L\Eé Ł/Œ× cżŲVŽ2ig6±ˆ;XJ čLŻė%Ņu‡gS1{Bv3ģlAFūW³š —ʲN@œ0; OĄĄYh½ Ē’_ŲtnŠæ Įłóš·qxČ«żŠ ÉĒ+%ĆNöæbp×īCĻ|$MUXSŅénīÜ9ĄüüUŠwƒaķVŠłƒ-ŠŠŹ˜ķŹ[K?Ķ:®°ņÆÕnM„üŠ“7U }c V?o—mĆŌŻŹ³‰éŗ‹ŅŠŃ®L÷Q¢}aĀ­ß%Üźd©Q°¬ĀN ك|~³Č¶–—d2“p•ÅÓĆu”óÄŻ¶å“’\½Ź‰_ü•R|Ą2O@2Pwā%—¶G`÷7a, ͧ`CœõĆ»Æśœ»ąŹĀA“ā­÷8ÅxŒ• "Ę֒‚Mųö<óm>Nx :OC½–fƎ„G_É[Õéź-ėŹeٌkŠ`E,Ü6€+ŠĘŲ+¼ų4#MCoM_;‘XIĖK„Åi蹂į<Ą‹wRżøC”¼<š~o$EjĪ"ŸŻ…•ŸF3J9·äičI‚*Ū=3KČK̲ ×T€¼Žäs»P-ÅKÓ_PT©āårgöiӘ/>žW ŒBf2e Ö>ßm ć1„P¢…mhx‘ćnƒŪ““u.6–3ĻÄT3žć|‡oiĮ?b966cµ^WĆq†»żå‰/ą tš¶Ģ€'Ÿ”n4£ń±4p°ęÖl˜…PKéŸßį¹/2Źģƒ‹Ę·ŃōĆS?ŽH_ż!|O]J™8ežP˦k_y—Śrņ9Ö,Į`Ł/H} ^<6œ}C pŌ č¬y\­ŠP?Ÿō}.:— ¬‹‹;™˜8Mcća1†P*Ry6„ņl 9¹¢«ņ ‚ESĄ½ō=퐃[Ąŗ]=ž$ŠķÆøbü*U LWyAf„łŻ1JCĻ4ŲņŁLw7J}€æįJĻ£éļWNÕØ|õ‡ŹX€‰¹ žp™؜€žšˆā©ĒX•ŠĒ=¼e®¬öēŖJŚŁŖ\²„Ć”š~Ā––I©fa=Qē䌩]Īpœ-Tz “Õaw„3%>Š«;¶„(äĘĖV‡“LV!H:~ŗ¢I°åĮ撟½÷Ž+½ėżßĻ9s¦ĻhF½W÷¶īŽußō¶ōīM!H]~É%”IéŅH€› !åao¶Ą IDAT&!É®åŗn»ī–eY¶$K²ŗ4½s~Œ×eŻTf4EĻūõŅĖ–ęĢ)O;Ļēy¾å06W;®Ņ½”6NęčNl†&æ’ółš[Šaxc1Īæļ½8ę%·Ž“ČČˆFwC§'v—÷A2¢ž>Q°~“ģŗ§+!čƒĶ"eš„°É}©¬<ŠĒ]ÜžŠ¢ŹŠ–,$¼ÖYūˆž›–ł*йŒĪO°øŁM"hʟ±Ź¦“©Œ\ī~øę1&LdĀ‡ŻæDGńTķŹµß0…«ōŖ¶9×7b,`25É3ü Kc±y >šąa#'y9 {`ėuA£§ 4zŻ„č~£X<‚tX=[/@wNĻõ|)ˆÉ©Č}Š“#”—æsv4&d…K †IdßuFRœ'½¹)Ö2ņŪV޼ŗ)EIåT|@:į|ą(9†æ>æ#`ʂö¼ø›ū%5»JĪ×T =ŗ H?ßóVē›ų€Y®Ö׉µwBėœSaeNF xź°ī^jĒ(āŠ6`ɵtt¬¹žĒ@ro„XÉÕ«āvŸDUż²Ņ% hŠ g©°®Ł) ©) 7y8NńjT+‚„ÅP>…šrA æĘ„ŅĘ Č³Ü$Ł™PŸĀ_æ1ļļ3•hɋūpxo !Ó!”œm™FlĮĶ«NŸ¦ż/’‚¦ł¼$–…*@ŖįŌ6X3 ūķ0ógĀb4ƒ{gR\µo€%]¶t ÆYӧݰZNI8—.•³xńU„Ø—…!)vI•s\+5AKŌ]œJGŃŗ&ˆ.õqY@K”—OŹĄÓóāUŖcu“ˆTaqę^ĢClb«£PüŒ¼¹žš09°Œ©ĮnLÓTPRó4®Ņœ8ézt! ó—ædļ׿–» Ä-] 'ŖĄ€C{a“ŽJH†”ÖUäBźP5W©ƒķ½0¾F,EnĻ,ŖŖö32²Ćøs‹ŌįBˆYHE>nčzźßłśÓ%ž ·Ļ' 3󖹆‰Ć0™REaŽĖĀĄöj.{­9žT”·v£Ł›I'N‘Š÷ (­9/ ń^ØŹrŠ@›§P&±v®u˜8¼ķųźwBĪVĄK0ĶōΘby§oU® Ä0b %Hņ_ž…#?üÆü V˜Üg|°vĪ…ĘSą„ó0 +oTš}v?c€ŪŻÖĢä)½§ƒCI'‹—Ŗ ©éYE„¬,ČŠŠI¦¦–"D $“•ųżłgn!É8»;{¾ōõ/mĶįD!§SĒ&7ż&˜ŖČĪX§ >b^8EML§kŽ?TmWŁ6—‹µDėms‹­-?Jhę—ki5A4° g¤«3—į܃øĖOą­Źi¢PĆX; į/|žŽƒ)Łū Gą¤ā\ @sź“™%,/Fř²Ą)†„*LU§7WU2˜˜P‡5 æ N—Ā#ršVdx½ē°Ūė"żÆ®®¦ŗśÖ³EŁ* Ŗų †Bq—Ėu>Æ\hĻ®Ft“h‰•d)yoˆPSį/ć—†m>Žqųj»pųZ®×G9·,:ę-Næ™5ÆŁ»šT^EQ å=<„ÅŚPSX¹œŒF©ZEµģČučÉń¢Ž¹%Įą†B¹ē;ˆ†\06 ĖŚļ2™N2£čEµš' o øŌ{d$W ć‘LØ»uS°Æv )|¾ų ńqׄČ$„EĢWžį+ūæūƒ'œĖ/?y¼&‹.Čś6L–^ ĆÕ0Q č&8g…g+ģœĖ5ĀIV“{­lģ…T>nž—5`;;Ī›š!p3‹ŗ¢Ä°¹Æį®0P,Nµņś¼ šį†ĘĘqx{ęw)ü #X¬» ¢4ū~ʚ×!”ÜŠ%E=MY“Õ²8Š%•-ŚŻå|K08c²öśĮÜ Ū#P™!ńPTŠÓ„†AŲSK–÷ł[F`½SźBˆ4²p0e,\ģ6›[}ąš~M–^Ąq<æSŒĘh®ĢĄŅĪÕ0»Zö:,¬Ā1É2M„€ņU„Ś…ØZ2ˆb©tŅfÓĶÅ1še _2ń”wį©Z”Ńs_|˜ŠÖƒhŽüݑʼ•S8K·ēĒżˆ8ÉX Õ:‰¢ę¼æ„’E™W+™ ūĖDńćņĮHžOxĀēoo,%p9 åĄ(dņ³ū€Sp¬ę;ŸköV1·•@IŃßæ˜ęę£hŚ&)‚?źēyä7§BA ÖE—*Ų’G/­ś¤A榤£ZĶ…ĖAvZz• žBh'kŹčj38QO~Ļ[а[ ‚£- tį©X”ŃóŽt?‚jĄīf)?ž vo;žś¹›©Qōä8†'Ēźpą(™]A=µ‘ɰNåę¼EO v!„B4Į_æEĶśĀŖžš²[cGøō„Ē© O†Ÿ°ąvRKŖŻ0ülĖ‚ų(Ę-/„9 Ļ óyį1Ų„ƒÕą‘!z‹€D¢Ž¾¾­÷ »>AU³;&HrĮg?ž¹¶_ģłÅĮæżę—Ė¢±hĪņTø5N5ø)éI®Õ0™„yń5˜ö˜;”»Ń=7āµr\7°{­ŒĀÜÅĢ|į²dø’O Ł)©¾ŠŖÕ‘%Ÿ›£óą)×Ad²ģz¢–šx-‘‰$žŖ}øü• ģ‘Ū¬ōńP ¦A(3‡Ÿ"p-ˆžØĒ4›øÕß'L žĆS1‰Ąå_;ćk$£†ö‘Œ˜&$Ā˹u!UO^žbčg15ņŠ$¾ņ{“DC¬°²čą˜¢š#„Ģ3¾nø¶bbžķ‰špt/OoŸĖŻŖBĒå!¾†Ó¹!Ŗoū¬æ’,åå1l¶m² ŠŗšŗŚ±ńŃ®h,ŗ(אhöš“ĆĀfnŽcVE°"ߏ*¦Ļ]•Łˆ8,…ć  Pķä”ßFęvHm®JėK@<—X)ŹĪečU¤’,Öģ 3MĄµ®Æ¶§?·Ä4–:ŒÓ?³Ėčä&ÖpæyŒi¬ 0”žphˆŠ¶,¶¦”U3”Ńę»/-XžA³ÆŸŸ"лЩ‰Gt¦’8€ĘŗķŪ,.Šsš™ń –]†c9ø“Rł+ÅG106¶…+Wv!ÄŻr€D±Zēs@Ģįp8ōć’ž±KQ”Ń\\ßa”Ūaa'yī”mQ8Žč¦l®ē™L–É‘E!¼½šźŒÖęˆp‘ö·±u¹”`²æ“h /{ocu‡Æ9‡O™@±[rjØ.Ö&īō²ėżŸ'rī ?ų/ńbC§ Ģͤ™;Ö~Ų€= 靐y12”¶’åŠ^™Į䇒<`rr±XOŗ¢ĶĮūę ¹ƒžŲȶ?Ł}¹2,“Xę[7o[żÄ׿{åė’ōµ=±xŒĒėw[[šZ¶ eūŚN ) įĄ"‹Nń Ń|zXFßÖ*ŹA}ĘNjCÕxŖŗp•–#Äņū4 "“=XķžŒęq”Ć_Ÿ­…Ē1µCoĄź<Õ)0 ƒ’źĢ¾ė‡/^Å4žń÷Rń­$Āg°ŗVMC¤ķ£¢u;9Œą™JŽŠY€<§Cy æžF.’Åū œ†¼Ob,HfAŲ}NµB„6 ]Mwź§*įQY Åņ¾4­D£éäM©Ō(š6cņé_»pą~ćŌ 3Ā©Jn§­¹­ł“ņ©ęłjU%VŽÕ8q(‚„¤m† %7xÉXœżv²’ß`$Ź ŻiĮ”)lĪÕCŚUĘW–rŗÅĆ*‘“0…ąŠ"‚Cą.愧²žüŠv–&ZĶq™ŠÖL }öv“œž3”Ōģ"( ;÷šŲLc¶NŃĄÖ,“«ŚQʚV’ćh‹ÉÄp„‚fe՟Ō¹ćüč/?Ą¶d"ĀEß1 I2†k.‚u ŽĪ§ų…] 8%k ‰Ēc39¼Æ,2Ōų•Ÿłš’<µĶųešöĢ|L€V/ūWų‰Ō¹Ų¤V‘v@vR¹ŒDi1!™s' źśĆģźšb­ Ż9£Æhd“ÕĆ.1ž(”Ń6Ę./$óKA2ŚBh¬ū®bĀźģĄb»Œ‰éĻĢx–īuoՆ,ĻŃtCsĖP™\Š”OŽÆkįo(AQs>NŇc,,,+6šŲ?ļc|Ė ų… ‡Ņ~ŲŲ ķ&¤ę«G G}N»žÅėĪļośŹOģ}å‘Ͳą V€d\ŲUV…‚R7ĶģŽ§&X#)ś “®[ž<–EŃ1PėāōcMXUĮ’y-ŃD“CZ@ŻKøÖ€ž ¦ßš–Q<ū©]9JyĖ2*µP½¬‹Ŗ„ĒØ\t”Üß4oüźp¶ę„ĒOfµ$&®ī*ēŲcŖ‰LœææH™3ē𒉔 Eeч>Ķ‹žę»üŲéęŖ d  Į® p!óqĮ “Čb/JņĄlĶ=‘Įŗæ’ń±½éĢvSP" MņN §Čó0»Ó˜ØXī§F8²}­ž »:&YŌāģÅ)†ĻOP¢›d|2ø¤„C5aưs~$J3¹ ‡=vŁNŚĢga`±]E³§(m|Šź„&žŹķ·Mą²Õ²‹m+%ÕO£Xī-@U-f=:„MøĖgbe:Źpē1F»÷a¤FoœėŽ3ÓĢ“·šųżCX‰Lģ"8r0×՞J é,\DCÆśÖSšŅ7šC ÄIū&Hļ,'I/˜§®·żśø`\›²2>I,bĄŹ.˜¬…#>²k[lĄŖ 8ģGŚü©Ō#’üŚø4PŻ. «š™ĶˆHæD„ ŚsóŁ8RaG×Ö›Ų®²æĶ˼·ķP’•Ļżæs’•ŖĀØ[£Ū«qk,ē–HZ3Å­Ń·¦Œ6Ą³³w$ÅYČQD2WŁ ą]0Ģī)§z™Ét|&žGqść˜ĘY„R‹iŽb¤Ę „p—ŪQ-Łx×*$ĀW±¹VLsĄˆ0|±#•n?z †:‡Qµ£čÉ(–ó”5•c±5§öč>‚#M`fĘÆÄŠĖ00B¹÷k2–Źuµ'#Y=æ¢:.‚š4ōЊ|mśBP’ĪSæė “æå¬†nōūŒˆ‹i:łŲ¤™_|ińqŲ—eq0K| Į±pįĢH3Ų÷%Å(@ÜrZ(æĞ2ń HÕ:Y ļd“xę5¼łŻė,)ƒņÉ8å“qPć5Nöx­ģžĶł\ō Ų Ü 9{4§æµčĒWY_ķNœ’ź–Ī{leåõœUƒ’¬Ę˜„Ę–bužAsT"7Bܲ€`&HĘ.‘ˆN &IÅJ1ōēē©DO¦wuŒŌFF.™„E  §2œ³Ģ¬ēŚ…~,ŚI:¾ŗ TKŠåfŒ^#•óyf*1–5k«½įhŪŗ’\Õõ쯟2ōPŽw‡E­ģŚ’+>ōGœūåS¬ĖÜ`2s¤™/>?ž Ęlć™^A©C¢ )tęi&)¹/żaÖ.õįjõŽĻuę)xvgbō' ›JS>Ż—n⳩³/ߞ‹V•’Źƒ÷ÆĄŠĒQŌā Oź.ąš…p—†(mņ!Dc-C41ŽūÜ/AĖ3‘DÕā$¢­`.Ÿq=›Ę2ōlYŚ™u¤uŒvb€Ŗ%(ŖE=‰æqYĪūljRĖĘy½e/Žß°üsŪ MĆ«*µŸ’kjާż=ds,ž}óV)@ЦzYDP¹€9杙Fij[”Ģt&Y(ÜoD„].ŚTĀ^+FO‡„ ž2Ø0L:•›NĢj1”Eƒ›q›ŹCłv_šĀ5›:{‡ńGk¹ĀLø2ŹH—Ņ¦Ėhöāņ!lŽx»w%sv“Ī9ŒTz‡COČ-›µ uą©8Ģ’]/ˇ;2R”LūĮE«[’čLYķ[ ŁōYlŚĄ®ƒOŃżŪ vō8ón>&ˆdvCĢBr\Ģ™¢T¢”–^Śda,rO²ø„NUÜÜ2_ź#”ć0Ļ”²Æŗū]ēć½é&%&ŒĢreĄŠ”< lčvF»[pxńÕū)耪õSŚ4q]|Hr)B‚#©Ä$ėŻ“^F&ŗ0MWiÖĒ.ƈdĢNuØyÕ?œ%7CMY­“~뫤~ń${~’#l×õłÓҼ£ø˜·¬Ęf®¢¶čŗ‹xürדĆщ¦ ¢ŖS”–>MEÅ~ģön%Lył/>Äņå~æĢr/`*q‡™¤7=ėŹßDSs_ź:¦øIq!ļ:Ɖ“هV~p…•qgóź”¢&ūG ŗŃ”ThXW‡«trē8z±E½Ż“'ŗŹåĆOqā§9’Ė6®›—;1 “ ØīŽÅ’[u–l\\d•eyń Ų}č).65Ņ7o•¤x0`ń((æīą˜MF1[½ˆ !ҙߤWϲ/‚t} ńÄ³Ų Ō„¬ģ0ÕՏ¶ÕW€‡جäśß¶ÉÖ¼@_Ł÷ٹaG(É)‡J ĢN„"hį–ČWEFØŌJæ]%_rŚčÕNöł­4¦,šĖɎ"<ūkeö,eŗ¾o/%u^RńF»oN¤ģžHZūčä]Qu9‚äķķŲŻŸ…xHg¤{%˜7#éÉyŁq3M}Ī9lζík’ļ:E±ßuŽS Š×édłĖ_æ’Ęüʐ¤Č…²Ō &›×‰AĖyĢ„ V"&8MŌ!Īś`ŁĢ“¬ˆ‹x=ė ²‚¼Žćx< `ˆ»ŪgĢ~ߞ²ÄŹ"Ī@æ7P){Fį @ %YJĀXœØ*oöpESŲPlcy‹ >+;ņå~j]ģóY3ēóÖf-@Ē$ęĖ8äŃx$ūO!R("II­!|hv•‹{˜SÖX¢°Ķų»AņŒšŲ.ĀcÜ5O²¢v²dWy¶oĮ0¢ęŠÜōU¾ś@Ż’æ’”ī3=•“EP\°¬ ’)ÉöµĢė»FZ|X€ŅAĢ:\Éņ… wÕ7ŲĄ•+»øp!ė}ļ‹?}łį«Ÿū½Š%ce}²gY?7q$ Ŗ.iį~ Ē UpŹgeCžÜĖD›—%Ö¬EāūÆQĻQ3oāź«ķ¦j™”Ü ‘ŖjM”5-Q8¹@T«Éś× Š“ń2•‹‡šÕMā©Ó¶u@Ž „Æ~»7ė+ķ©ÄŲäŗg¤vџ?+ÅGv; Eˆ ]ŠYżŅ+mó(€˜©DŒl94šf3”ŠiÜīµõM„*2u*g\5„ygeWRÓįNXƒwū@5Dˆ…”ˆ,ßūī Ӏč„IƒćšR4 H£Mīüq„V›š]“Č ;&ŲoȒ7W.ŗŒj½×Ga”å-×PŌZ*ZŸ’‰ ÖQHT-ž—ŠČ©ÄH؝±ō––5߉9<«×ĖŹ’D23!°${=9øv֚pE@sÖ.ŅŪ·EéĄ4­(J˜šź8^ļĘ«¦Œäk8ųĒ/ø—©Ź ą,Ēß~ļšzŖ ĖdÉ#2#b‚„kŠuevöW:ŲHįF1Š*‚æ•a‡ež}"rĢå [Ļn­ĀAŚt5³;¼eĶØÖāéåµĖr¤(tÄN_ó|\)•ŠĢxįĮRrvŃśÖZ¬åµ²®²‡4Į*찟t8Ī›(GłT˜4`*ū*ĖX†i¶¢ė«¹Śæ–©©£VmaŁr%s-`ˆ³Ź„į‚ŽĄp‹­Ś¹°Ä@³‡£TQMĘżę”e-]XÅ#>līŖµIöśB‘+΁˜żü38²ŸDäütMĘÆÅf4—rÆ8“tKū‹µÜ/+*»Č"!+\HĄ tėą/œ$—ŅĮ„“¾łnĖƒ~l¶nģöÖ‚Ø“ÉÉgšłvĖÖ+¹)&ĢYŁž&ī”ĮM”±0Ÿ›¦+AN.ó-Œz‚Ō†rŌ¹šY²“OĄįĀźXTTē­§š“ .šY§ķ$5Ėgt!2y„ąšv‚ ”؃X¬4‡‰ÕįDsTa±Õq}6œnČl£“ęM‡jŚžd–&—2ņ³ ”rH–r#’JY®ļg³Ā7ßŅ4Ń}ŽvZšó?ĘČH+%%]±H¶`Iŗ ĻN€AŹ¢ŠDz籤Ÿ]7yčb€ƒ-n–Y”Üē6Y\ĀQUąź2}n·…Ū²śŽźH]ž ¬IG(åŁ!ģž$®ŅmcDń Ģ - †„ ‡;ˆ‡Ó¶Õ>ėŻ=yÉž[ߗUz‰($¢·ŚÄā2Ŗ6:9 “=¬_śÉK%ƚ‹æ—)«Z ‡€¾ŅērIä ė¹3/*++ §źD¢ÉÉvü~)@$sĀŖ0.ŅŽ–É‚ž©čl §8Vbͽ¹8Åś~K*‚äΆྻUŃōŠ>GŸždŌϵp•õā­,į,˜ĘP³¼ŸŗU^e@īrŁŃ n†i=ÅāNœĻ%Ō5 ³3m2Ć]ĄņimĆ4‘J,ŠFĪ_¹ļüIh½­kŸ0ķ®eke…Ķū\QRĄĀ£[Ž*øšO÷e¤m™s³)D/^Oa $ååńūwĖ–,¹ńŽŻVõ†ĻUĮ'&¼fmĒ$Ļt8Nr†ŚμėŽj:-4»rd“.Ćc žw tLC<_‡iĘåØPĄčÉ*œ·.°ĶrēĆ4c uvaĖgņµxr ×4SĶ÷ŌGZŁÉ„›ŸņŁ]ˤ_‘ ’™°J—Į²|Śżø! 7iŹKJ.S(ʘBČ-[ÉóȬڄC„·ˆŠĮ¢›¬7L¬yšŽŹųXŅ>ČĪį(ķÓ@š‰«‹ˆ/LK0ōØ z@«"Ÿ˜ćIR _<…”Ļxaq2ųä•{}ęō®;ødóS«TĶ/ĆŠK"™)*ų²õ’œć;n¤Mę›$•+eː"ż}Ż=?łot©‚‰[”ü“"øx¬™Ė “ófģŖ–Ś Ūœģ~CäžklŅMr#Ęū“_ŗu†÷¼#ņgŅ?Ü%i ~¢¢ĶÅ_ĒdäŅaōäęŁéŸŌŻ’“¦Źė~ó`˚ļlBUeåé"É8&Ų:17ÆD˜Ļ$wBōa±“PQɰ‰ń}OżčĀw’å˾X4üā„>¢Ü ©ķ1įjŹąZĀ`°k „‘cVm<ŽĖ”¶*lęåR ƒcWC”—XŠ ·F¹"XÓŁßą‘„>ĪØ‚śœĪ=£Ōy4zl*ÅhaŠ\¾ĒzŚpųśIŜ$c×mņEŃ1R¼Õq•.Źł5Ž[MĶr9H2ÉŲVgͬ¾;ze/Éų¬ŹT—½żŃxāźžPōŌīėÆÜɆåŸėó–½x«¬)@$sĆ w±\pĪ‹Vē <$’‚āwē•}”ąŌ­a)מS©õšB½vKO·ZÓ’:g8‚G9<KgöŽEyĪ6ŪtXč“*¦lĖalBE8Å©b ŗ‰‹\ūėD'ŸŻĖFŗE®-Fµta÷¶Īłī&2^Oisš½°‚aĮ4ĀÅAŚÜL»ćZžśaŅQČäbM!ĶKõ,†¾U;‡Õ9;9Ń·‡Dx÷\o¦¾źw×v\yē”P“‰¶µ’®ŁœmYš—Č&*Č"=*øŲŌłÜixnÄX)9H(&„^PhJė üé'¾åłƒ¼69R!ī*RDS,É7c{捣„6vk½?3J’ƊÜī2ŻxuÕˆŹōņnĘ“W LŻ‚³t »'m"MļJv·„[›¢cĻ%]¼=Ź—Å6IIĶ(Vē"¼ÕAjWJńQh(ź9*7 ü”EŪ^>«sL ¶ ģĪÄķØŠŪWSż;’Ƥłm»T‹Ē%+H Iøt=Ń -ŗ™$ēD19zgČIĮQ]ÓX­(ź˜ačÕŁ¾V‰ĖHøõfqĒÕæd|ÕB… IDATK³‡ör{‹,1ķ°½:½)‘“©M¢’޹ØLćŽv÷©ø±+>%ŽÕy ”Q ͱŸŅĘŃӿš±žėĮL0Ķė“óś2ČõßÓט¦ŠžĢܦݳ§“öż/Cś:Į²ūiĒ[Ļ9oDµøāŻh¶;ƒ{Ęc—-¤ā™É•¢ŁlxĆ1*چ‚j§ Õz˜ņ–µŒ÷AOŲ1t»=ŸźQÖ<ŠĶµMV– ’BÓć̈́ɮdzÆg—¬‰"ĒfėĆb dōœvū¼ššCĮĄĖßų²±h<µōłŸ•ŪŁ_beó\/IńģdG ÉJƤ`²`ŪUXŒZWnMpĢtN’SŖ`%ŠM:XA«aŅ3cl,Ęn1ļ˜JpzM#„6¬„U„MĄź”Į3Įt`įD£›Żä„*Ųj½!†›ļ¬ŌI®‚Ž®¹šÕōbŠŖ”juś0C*˜ė®Œ«ō*˜ą*ć”W'±{^ ·¼_ ¬¹EµQ޲9’nO9Oå"?Ŗ&CņK"YH(ŹŻ¬Å¾ŸŹŠY €śś^ģö‚]݊Åcї½ń„W¢±čš»}īÖ0˜ćŠ÷µgĒć91*ģģóŁh¶*äEŻ& Ŗ.LR„¦‰Å„‡ ŸÅ4ļnŚJ²z$ŹžZēķ&t…õž[ҳŖā¦ø §XM±×a¹o}åʆ=®bųzu›k˜Ņ¦(CŹē,>ģža^šAą†>€ß6ó…˜ĖA¶•Ś9Ti§B,ŹĖJЇ+<7ĖńyĶQV¾T!č9 iƒX/G„B蜦1Jk°ŲņÕŗĄÄQŅŽæ~·¬,)@$ ńZÄÓ.ī’bĪīd¦dMHņÓ4Ķ×½żµ‡Æ _»ļ æE”b¶×HéßYI@ŅŖŅ×iöŪ8<g½™ė\7iõPšāc6œgłDœƒ+üx4ezłjœģ÷ß;ģ°N:WFįį.ėeŪ;G°:7ņÜ2ńār0(ńa9Nåā äóæ·źt6/÷÷®’•_ĖÅzÕźO¼d…żŗ‹h åä+ø‚X²«Böž‚FfĢ•H"ÉģP’£K R©PA–Ģ„¾`ų£’óį=ķŪwOēŲ`‚Ņ[„ĆLń6{xśFT¹|«ø %Y“‡Å#Lhź I KÆüå„Z@IZŌęĒ>’&卟zķ¾ßžčĖŪ_ū™×{BNė*€–É0Ą"/gŌ>xĆ…“Ė€ńŽA9H$)@$YE%`+ Ówõ ŗ>!kA’O|āsŁžć’žńīé_é`ŠYšÜ&ēūĆ܈ÓóŌ™łN’ŗIćp”KQ®HŠs žB®÷Šī‰  +¢ö\KłŽkvBÜČŁtdeķ®O’Ƈ¦¦UH%—~v÷`Āę?Õēn8|×Ożx)æśĀ =ĒŪåhPHӹ镒\Q”D’crŲ ’hō\é9G2)WÜ$yĮ—¾žÅ}’ś’:£Pø#1<¤Ļ͘ĖA\ £ }) E0H°Ų0ˆŁUźu“x4NJžéÕk^rXgSßśłjß¾/=ŗź©æzłŚv÷—ŽÜśį_;ŸR•«ół€ ÅŚÓņęĖĶĶo¾²ŃDLŻq@d¢šČD =Ēėäˆ ‘H¤‘dŗ!EŪČudµx|»|¤Rć²V$¹äŪ’öķƒ_żĒÆnc+ˆBkpS3ŽŠéģė9ہœ+6ƤĀ›¦āW^‡%‡-21&¦ ­ķé«Ē¦qØö‡OĶōüóā5ūVüłw|šl}ō£æ¾yWŲjńj­Z®}å]õ’÷k/ģ_T½ēنņ}ĢŽœļA&­zĄź=ž½Ö7\™²–x ”Ø’Žśś÷śė›œ?XŪ|ĻµćåKwüĮ«—|ź??õ‡??¹…i&¶4„2Ņėnģ|Ż‹’£¼&2\2Õo^‰æęŹ÷Ż ”¾Õ†PĀĒĖ7œµė1Ö¼žŌmaƒ×>s#Ķ9’Šżæ¹ė[ž_ėłÆįĖžūG§žo1RĖP,mr„H$R€Hę„:c"=ŃŚ’G·VJ,¶žž$••(/ĖǬŁŅ¶¶łł“?{ęĻ>õ§kg9¾*§ŲlQkńpDSŲ|ćB€Ć0é¼Ę„›Ó ž`ŚT®X¦<S&Nį $XėŃ8Yå$fščŖĄ® –ēŖüR&΁ķ5N¶ŠüÉSņ Ž_TĀ MI'“§åF¢6Ō]ĮųŰĒö@ē’ĪŖ’ÖĪŖ’Ög›Ź/µęG'JĆńµ· 1<ź¶÷tV–č’¹®eŻtļķĆÆŻņč'_¶v|š¾ÓoKé Wś©‡>ÜńŃ͟ø‘Øć'¼€Ē·~W÷üšÄžźķMć¶Ņ»ę+™°łć6’³_XõųÄъMž—õżlܙŠX_ÕóćDSšD+ńįڶj(j£)$)@$’Y£Į¤äõ-†!kJ2ģ{zß©żÉ‡–ĮÜ2™§ ŹĘb\¬¾¾fŠ94C›J°ńś!nUŠĶ{ »JW©~«ŠŠŖĄ«–ŽzŒß†iŗ°6_Ź0e°~"öÖ8Ł™ļuī³røŚI©"īX€±üöē÷éŸżŲ‹RÓ}ߞ©-m+ūģŪĢu½£Æ}öŹ€®å{ZėĻÖś›ŹŁÜć„ÓVZžŁ·Zj¦"=?łŅĻśOŻs·ģ˫޿ģ^Ÿż°éÕ÷m'o~įæµüųgÆźż³ćö‚»0Žž4xɞʟX-G ‰D I‘! ĻŻVhɲIä}aø]•²E‰„Õz1³Fx¢z¶_?vāŲł÷žĮ{Z˜¦©Ėƒ³Åia"½”;3dėęmł>n  ĘŪ¼t[6Ā£` ÕłXÅI£0¢ŹT:PĮ=wŽŪ½®¾gāĄÕ&’LvaųåKžm,ϘLȦy/V–x/V–t/¾Ćå$1č¬9õ®ßPœµėfsžŖčŠHĒw—YUSææ) i*$£¬$’¢šuI¤‘¤‡łzŲ%Ēэ¦łes(2śśvdüœUUū(/ŸÕdüģ…³]æł·W›¦éÉdė½N›ōL‡r;ūż64UąWčI¶µ°AŲņOŸĻ¾ė{Ū<Śvü‹yį"Sä,WG›jxřޛBVØC®w„½qÕ6§63䨪8ļ_~`Õų™÷”ƒßj„iĆ~ڶU¢jKd+’H¤‘‹ś€ŅY…r¤³$MM 4Mī€H²Ę„+—®¼łŻ’ĆkšfN„®"ˆÖ»8āÖä‚C.°«iēł±ņä`“)rļÓņg«¾"~`W:ž×Åļ ¼åā?ū޾ūŪ"®ŚŖ2qī5>f¬?óącĮ .ģ©ąĀāZIÄš78[^/—%)@$E€j@Tׂ-—ėiœŽ²)H²E__’kßö«a9¹Š øø„+Ŗā#WqwSøēóēżŖ‹äC Ž©Õ'Ź“Öek—żžĆŸÉŲi}‰ÉĄ»;¾>ć@[rŹÉšÄ_6·lPł‡L°'ÉĪūKAńÖm_Š%`łŻ¾M9®2C#CCÆžŸ„t]ÆĶY7ń\‹E¾‚Ä­qB¤w›ļĖį-Ļö7śf–9óācĶI ­5§žŁ’{ŁÉņŲčģƒ’LōÉF•‡[D ÉĢ&' ²W/āń2Ł $Ł`brbüozy0™J6åś^ĘōVą%™Ć¢0Ņāao£›•Ó™ õ“”FHĒ¹åźė#™<+?2tčBIb*h1Ss;ŁX\9*—D"ˆ¤Š©? yõĀ0Z1Ķdß”\Y*@‚”`ą„oxÉp<_”÷cšrŸ/TA ĮMū’\ ;™fž’æźjPućjĪ ^‘Ń؈ŗ¢*æųɋ™ü¶Ļ³aäųœĶ]õņE²‘I ł:—Dņ\Wčq’żdbJ~ļ°X‰Ē{ekdŠH4~Éė_܉F–åĖ=% *ČM?\P»«šĀĄRŗ'ķģ?£PĖ5żS_~Ėæi@8·oüųX&OSķŽļ·¼f`¦ß„œÆón¦ž,ŁwÖLéę”i$)@$Š Õ1ø4B'æŪP82,[ƒ$Süõ—?}, ęU5ݤ$epl¾ÆŪā”Ć£±GS8jWŁoQ8LĢń“Q«Ā!§…½65æ–“Usyg–„«¶ķ¹tT˜än‚m˜ĢŌ©|‰É@āÖ¾’uń;Īä{{ŲĶZNš[|•œå÷ų,Ē{0P°]ęXO‰iņm:!‘d«HńĮ!;ÓĻ!P“Œ:(+• B’™Ih2?-ś.©_<æÓ6CSš5ŗļŲe5FbģcIl€i‡ØvŅYfc3šHžVæš4詔ŁG²zü/µūüĆсæüä+Ī_«õ><ļO`LĶLĢ„żŲ3š‘œŃ;&€W’GަöS@?u|Ž’;1¾ėx÷š×Z¾+ÕĶņņ %ó”di[$‘D2}üP›„3n…Ńļ3D*æKBČĮSR”T:Ųē°`¤ L‹@0hLžińP„)×g‘·£TŲŁ^a‡‘ķĆŃi…N¶z™pØy¢öž³°HL'ŖĶqĻ·j0PūÅ·=Qūī’ū–ćS~džy}ėDĘv¬›CWf¦XQF’×Ÿż6oæ£Mİs8±ŚŁŌR3eSRR|H$R€H •0źį” *5˜Qvē:xŅ¶ėæšĆąĀZ€ ÄŁRøÕŁ0æ³ŲZ­ŅžXRtĀĆ«”ZUę=Ē]å@«—Ķb;e6ÖG‰ŽLģ‡*­łXÖ ü6†Ü.‹`ÜU~Ūß2æų‘ĢļU“·2ōĀ)3Ž/SM=õÖĪ:ņīŽÆ§~Ōō˜śŅ¾Ÿ·ĶäūÆāĒ?åå÷¤1ŻāžŃŠ’Ž×ל[,{y^!M°$R€H¦Ė®{_›xŖ–jŲńĮQD\°›„FæūĒ`»ƒ‘D’Sü6JTĮš\\»ĪE­˜¦Y•"š4ŗ93% øR&Ķ@É]f7uIƒM”6ŸŹY@¢ŃM\ģĢĘłOnØĶūCنėYń.słŻ§‰ÖnŸĪWŖ#×FßrńŸĻ/ŗ|gĒ7w–G†ĶųŅI“Ī7>׿p]•-Ō¾£“W&֔H¤‘8"j°·śĮ$źā®&„Õ°Uƒv•¼Mzfr7[Õh“Q6I‰§ØĢÕõ£)Ęķ*ÓåźŃXå¹E®“iA×y˜›ŻS䔝¹ Ö®)—”Š%ūß<²ņąī¶ī¤UßŻĒ@ Io`:‡ZD¢ė‰E£®TxN»mS”9ĆŖ>ēĮń†e»¼}ÉZŽüÄņ'ż.5±\öś|Šā’’‹³3DFĮZ „Ąś czą‘+›|V  A~:Ÿ+‚ˆ[££Ś97Ńu?>ž»?ÜqY¦Ą©öŒżš õx“mwÖʰ…é]ót׌äœ2§(£_ąńK#TĢ،­7ZR»ķšoFßüžŸ=}ŗŽŃŲįv×Ų»÷ĄŹ`p›$’üÅ "=»æ)‡‡¹ÅŽ_R¼\ƒīĘūĖ4vJĄ¬qh"`¹ī¤\‘`ęĪé'˜ӛÅ"”€įÖ„Ą&ą8·o —=ļ|^0wī”£cÓÜÅųx„¶¶^l6i–%ÉßĮŪB‡]e²ŅG4åśžBIŅM¦TA&ƒż*łšGČ®r©ÕK9°>›×¦©øBq/€;÷=ž‰_µ©ŗ±gļ‹gE„Xõ˜ųį/¶žīp>ÜłŁ5æ×Öėn¬˜†; „4·{Ķةކp_°-p)ņö ßÖ׌ŸšÓ‚ĶĒłXǟńg³õ”Iń‘óāßź+o˜­ŚµkŪGŗŗüļ‹Ė\ŗ¾LŽIžŃœžṴC?O}ōޤŸµhѶæmnżæ#Gö®ʼ©ŌŹl¼.÷Ō ¬,3½Z²ōCg^hū£E®V;¢‹äH%‘d)@$·aĀt3­i`Žke«81 r šOƒ¹šn™·:Bź@lęhÖråJ +VČŹ–ä %VŽÖ¹hävÓƼ"¦Ļ¢æŽųwX®›˜i¹æŸ|ņIėĒ?õʬœ»«Ā[ūó• ķ/=Ū·K`śžū»Ąōdź=4ŪÉŽ†(ǬOŅĆIóŽ X,īķ[·ī\ ]>¶o_§S×3>i(C?’ˆķćŻ/jN· ŻTųéšāÖ /ü»8Ņb$K³Qė!ŹZf'šTK™,@)@$¹xyĀ™rŽ:Ķž%‘6ƛÉy&2(e¶€ø Ōß怓`–’ŽŖµ{vk–7žĆw%’ŒSéĄŖņł­jń¾/œzI›wę«Ÿé_åˆ$ĻFZ6V÷yÅ^¶ćżO}ś/žėØĻKfŌ”)…e`%gW…qŁēt¢³ŽŻ¼o]?ė&;yw÷.ĝęzēŻī–Ņ—¾4žŪ==O²££Ź”ėuņĒ?Užōo7…Čø02„P¾ų‚U’Ż®‰Ä{æa0_œīóqlń2Ɩǰ_}ß ‡qÕfčFė8īÆćņź#¼žŖ…u“kPĢŪę-qE±}±„åį/¶“šū—.|Õš°RU^>2²Ņ€ŲHĀ5xh“!ųښó»é;q”Ī­”5Å[F(m\o‚ųäłM‰v½āžI{Ÿ Ö«/<ņ®–G柶·ņ–†ßśŁS•~$)@$Ļ£6ĢĈ¹Ö,KG™ŹŌ ÆĢS nMšfŸ›»ĢĒńų āńŽ\gܕK&’‚ASŠ7 i(ÉźP*ū–łĻ07–¾¶ü‰—~Ćhńā£_ż½uŗŖdłDY° >±s­³uš)÷ŹŽGåč ‘Ģ™Dr|qč`ś~ Óa%·ūj\s}ŽÕG*‘5.™)žæPUu@UÕUQÆ)Š2¤(ʰ¢(#Š¢Œ !ĘÆ’L2ƒ|9#é2šĻĻī²ą)öśķ ±Ī$;y?fµBašŹī’īÜō«ßž—ŃņÉČń{–Ø uÄS³¹ĘG^³ł‚)Äųl¾ūž»ļ2-µc”ł'šgßi?©,åÉŹGłčźZ>¼ĘĒ_._ĢĒWģ¹ļwŠg"lŲé:pך½U>UQ„NÜW\æfr(ŚžDģŅ=a^NŚR“©€³“÷«ÆØ-ĀnŃćGØr”Z’dƒÜFluĆé&X”SŖ¤ó†<·ŖXKz$·FJÖ¶d¦|č}ææóCļūżi4/Ćxć;ßp°ćbĒöéœw2Īę`‚ÉF7ū¶“‡»cĮ$ĮkqׯaāīÓYŁUéµ ÓœĶ®wRĮ0 Ć@ÉEY„[ćUĒn>ø®ƒE”AŽŌ×Fe¬q3 ‰§nlšņ•ŗMžŻÄæiQśā{“›JźÕk±kF¹Ķ)b¦n*wõ=p™)>}r¤wĖ‘š*ąŽŻÄ5}ńĶ ­'©Xt«Iwł%R€Hę…¬6ą¼ UknL‹”]Ģ®Bń†óœ~±˜²±!g/œķzĒ~3Ž„·Ļä{ŗ‰ļrnÓ .B7!?- Ēj²˜/Ÿ$X³³Ļ®ę‡)Ö­¼ćæNn{Ē¼ėgŖaŖ›Ī µÆoœÖøżßŽóŌ[uībö¹N“ŸóŅÕććū’‚?ŽžÓ‚‰+Ė8ė]Ɵ¬Aa†š¤˜æ‘ü~å'«>;ōω×:~{ģ£uQsś*ś%ScŃ-Gjī™7ʹø’ é]~‰D2C¤ –䮜‡e 8””Ó9€­`n³ ŁČ%EĖū’š}SįHxÖā=”duĒ$M“ öŃ|x&ĆÄ£ˆ…~“'Č*ņÜ$īnüéW÷®&S:ī…ż§ŽzØóŃLĢŖ¹¦ēU!˜x1D-SŚ&µu}ĶīS‚U°’£7\½>µL»2ķS%°é]se‰¤G§ ’Lv§~šgį¼*9Jš%‡,I¶9qśDĒČŲȆ¹žĒm Ģī®)F “sy @–ö†xz”Ō£nāļ Ń[h÷]9©<ö–oŚ>ół_üߎxĆ/ĻļiéŸ<č ĒO[“z·b˜C@ų=ķēʞ÷Հaröŗč ›Šg˜tDRģK>ėwżņ)·fdR”Ć‚n·’tķKn¼#GÖėŗćC÷:gż[ž4¤ųHę†Ü‘Ü—>Ųä†gŅĪ㕲D$’;I„RÉW½ł•µ): IDATg&&'6eėŃ«:&‰6øł¹[ć…¹懣lN{„ 5¹vk‹–—— DhhĖᚾGćD0Éź\æ«Ēćl©v2 ŅQ łW~cĻE[v³ĒüoŠzitā‘åłX‡Cū,gŹ­§^jŗĖĒś9cIč­c/pš)jSQ£ßāT¶®¾§ĻSą™E±²ølź"©Ų“mp3źV ££H¤‘Ll9—vV5Æ’Ļū× œoaf‘] p`]Z„‘HīŹ’üßxśŚšµ¬GM2ĮŃā„. ‡=ų,ÉŃ#Wõ†Æš3§,Śy?3Ńr<TVų‰ 9. %˜ 3b­ÜĻöŠņéåżŌUBN—KÄwūģż”?7Ūā}»ūG©o‡³h<ń-HŚ“½Š®Ż3śÕŠ7·õüŻ+›¬åS}«’įóF‘ ¹³#‘D2ż—éHS÷EŸC}‚») P+ˆ©«;Ū}ļlėŠņl6’L0<:<|ī¹yõ§ŲŅ1ĮD³‡;,¼""Ą„ÖŽIĪ8,Œy4¬%V–Ŗ‚Ņ[>Ęx:”£×8٤¼²µĢŒP’5qŚż6våĆÄ“šk^Ķ{~ƒ--¤rüXšį/—üÅ_§O¾Óńj—ķŪ”Ē,‰“ŽZģŽā Ö[ѐ)iŠĆöÓŖ+6ӝĄFź<ŠelåE£ŪäĪ‘ ’¬¼aM7\l‚Ø kņ_’)6TUNx$Yēó’¹s¦iī΁š_ņ*ĘÆÜ“-ó}ŗÉŖPBIŒ®urÄgcŻp”£1–»&Œ—XyŖÖÉFEFõL2a—"Ųć°`·|Š šåź~¬$šF)?ū.¾ŸĄo’ųsžtń5ŖĖņµ æyMÓŻČ;mOX«‰0>}jøjgrīÓļz¼aé_}kŸ£yxǽ»*ˆ_’=ĪŌµs„ĒĘ]q›KG³¹P,ņ¢°R‰6†:OėXĶ„“i»ģ„)@$Y% ‹{ ³öŪ@:’O2™Lüō—?mĶå=“¼°c’ĮV/æ°*¼8‡·āˆ°q ĀŲsĀćJ§<:•`¢ÄŹž'ėU¹#2mśĆ·—§*h ĆUĪ’Ÿ½ū“#«~’­Š¹{z¦'ē‘4šå]„U–vƒY’½6×ģkÖ\ī5Ų~ńµĶkĄŲ` Ę`Ž‹į!\c{1‹m‚±1Į6°ŹiW»’Vi¤Ń$iF“c÷t¬ŖūĒlViBOwu÷ļó–BBźga‘Õó%]°Ä\­D3LØŠę™€.É«(ģĘ_°øäOžąOöµ6·³ė>ö†Ł;™`æ=¹ÓW[ß}qœž±8Ǥ–Żćā­qضXŅż?ųś¾·ó/ū|DŚ^zń {J²r\ŖÓSæāł·yͧ{&×­’¾3Į•“š»źH\.}čŠO[?ųѽ(2¶Oˆ9w1džs†üŠ&ŃøM› „„—ūŻQ” Vī[¹|eŖ½£Ż¶ū×a__#äāX™§®²Éī1µ`ł–F9Wē#pš€Ō“Wųœ«ņ0 Ųö)ī÷xsĘOŌ0Œ½§½£}苯J'5ļ§’čƒĶļxßpļžąä𳿓uIzpĶ™żMļś›õzŃd‹ŌLqė%žäŹśĢĒSU¼’€ˆ¼t 6µA‡Ķ{0Œb,«M[#ĮČo¦iš?üÉs”į”ÅŁž49]ļĻ”ųZ¬ķ ƒKćHsŻeŅ­ŃYī”×ļ`…kķ¾æļąW>ƶfā»>ģ’Ź±?|n ‹]1^1ĖżćņŲšŠKÓ=[ī~³M5olųó÷8P,U÷O?"gBq·S˜Cg«„A±Ų# |”±–B“ •»]ȇĮ&\®nüž÷}ŸožcµUUU›—5w¶w“ēÄØQ “˜Į”™VČŞ\)Ā„AS”VßJ‡K\”« ­Ąņ\Łļ7ó½ųgųĄ’Ļvē™öO>÷ iœ¼ lóæŒL÷l¹{ĆÉ33 ¦ds!$lĄ8aĻ( ·@—’…Õ—mOÓ¦PÕ „M„B½„BKÖŲžĶ_żĶĄū>ō¾œE8Éŗšģj©Ģ5u_I‹Ņé$Ofņge̤['õbņ‘[§AŒ%’ŽF­’Ę”Ņw•4ĻōZó£UŻ’ś§†ejwš!įk¼:.G‡‹#ƒŠÅ‚¤ ü2ų&ąi ŗ$"71 ?–5-( ×ojʵ}V %%w–…ūZ˜‡£'; ž10Cc.Ę®žkKŗ>É/y~šlGÅĻFUś³“dż÷ĪŻåÆNOC§ 4B‘Å$¤¢¾Ė.BxŽq‰ *¦9&a(fn¾b®¦“T“„ićĖR&§r-fu\_drI’¶O>wčÅŲØ“Ŗ[ŖżÆŲōĻwŻ÷Ńć{}„U…MIN* ˆČV Ģ?Ū» Ū€ DbJjEaųŽ~ļJī¶!%wšĀDsćĶE4Ēč›Į“k‰®‚åkćR:·YÆö\.ćńśæø{©Ū/–u{¾éo8uÉSŁŽ•œmķüŅūŸ–#DI@„MĢ@ė%XŻ×°(̆x<. ¼ń•Æ}9ēĪ£Š" Čżųœm)fŹ©²,/ŠI²:iņl®Åšõüē`:·÷÷Ś{OÆŌ{2²īTĒī[ŹÜį-^õćõoųt?ĄųsŪöLžŻ”ž'S±©VbÓūéĘ+$bŽķoØļ}ēĮßķ18J!=²ŽFeˆo°,kldtdm®ķ·SEŃŽ‡GcŅ.3żÕų8ąPY‘k1|”ļ§£_ŠõN¾ö̟ń”ƒ»9©•ÕS3­nEKžņŽĪ¶÷¼½³rŪ“;MĻlŖ{żŸōėßzg,5Iė7›F±Ž} \2‰Nī9VE~’Y°Ä’'¹3ŠzpĄH\š’;Ó.X,&‹ €”aȽŠŖ¼\‡ÜkŠfRĄiŸ.OA' @i®ÅšN×9H&“84-łĪtžO>ßū«|eßģ+īLMx’Zž‹ļ÷&ĘėŽ =óø£įŸlėå)]%½/ŻL³4øxIöĄ4‚Œ_ßĒD˜`õ~¼Åk292EŽ4%"S’PÖUÉ@<^#%ž’¾šÕ/ äŅž:UśŠœ<ēÕɉ5 *'›“Æ föZ„*DÜŪ¤†/²¾‘hü<’óčB>ū&žćĢiØ~%łČ(·ŖĒWŗĖÆījxćo+xó½Õüžśž„¢K{#×2żLōķćĘE/‘±żĄ€Ō,‘ō$<ĆõoÕĄ§Āz ³(8†QŒ! F~:ß~¾ć_撝ĶvÜ7·F'@c€)U”B/ąj_ü—ā>=óO˜ŹŻ< ģ•Z¾xļäkuæĘMu^I䇳ōą±ĮOømæUGÜ”yfĪ7żŹē3—¤Z¦—Éū˜ˆØŲæ“”j©aö (2 ÖKLQ qßä l!+ˆŽ,ĻÖJYˆĀMBśŃ4I@ņŌo’žoĶvÜ·åEŌ.Õy=S4…óU^vdé*½Ņ• [ńM~ńĄc|{^ ݶ3Ø{&Z=ķĶø'¢:ތ~¹e¹™܇ƿ\~I@„ķ\‚U ŹģӚŹ<Ł¢„R“„üõĶæūÖjEQ¦±įōØI“3¹߀ƒa%K³O„LœRĆÓēēłĪC.āóZ#ź:uv¾„ģō×?;’±æī3¢Ž )a!Č/u®.!+Oā’ɰ²īʍ=Üøq’÷UV¢¬l÷\7[\TģūüŸįģo|ą×m×ĶōZ˜Šņ"Ź\,2UįJ]Łś~ÆNŌNńø8Ī²ŪźŸ‹ēk¼¹1–p’*_9ž7¼oĪ]–^`]FÖ]±PĀ_˜ł„ē^żś/ŗ’3P”ŽŻ5¾Õ{¾X>pų’^ŽžgrpõżNĘ6JŸ! ČŻI@D!‹FIņŲ~ņĆ1—ÓՑH&Ŗ,Ėr`“nO1ƒę«Sō®(b(εøšEJ»A9Ø“Ś^oįßćĆūęžt±ŖčŽłBŗėjō}“¹-hŅś÷?ź:p÷$Ł[^¾é›'GN?V/„+ÄüI,!–¬ Jņ[Ļõ^5žˆ7[–åW%f§}K™&s1® ~n„Ä©qMQģ9¶'—mēXÅ<åĪ͊“»c;ŰŌū¶_*¶} ,t,EŚ:BĢ“tĮb鐪Ū.jXhȓó|±aĶ^øpvPMÓ“Õć.Ć"Ų1Év·ĘÕJ/×}zīĢźŌ¦¾ĘĖÉ[3ł½ö—¹yHjöĀ\¢ķčq¶%o~ĶOŲś¾µĻOxÕĆ<}éin›Ė¶~‡æڲõ[Ģ9äæŗwÜc™ZżüüźGæ-³¦4IBm•€H3K4ĖŅ0Ķ‹g÷uDSQÖ^¹i°hzøfŖØ\‚“~÷žī®ĮįĮƒ?=ų“åN‡s<žˆ—[–e«E(c+ĀI|¹µģléx‚‹%ģŠ¦«Œ–¹Y=¦~ĶI_ę=Ź_ó;·4ÄKŸś¾Ą·ų…DC†vĻÉ*{Œog54Šī;¹„¢˜€e?»C©~ōŪnļŹ‘Ū–ś·d„¢ąōÆŠžµVÆī¢­­U]EDs\Ży•öõ=ē·—ƒ"N ŖŖžå'žrߑ-mkY5`YVĄVū§qØ śtR¹ŪøA™i1©ļ«ńņ²nĻ’ 1¶ž«¼ūČżŽ÷6¾{%S‰ u—vŹ\ž€hžÉ6E5M=0eHé a£DʀˆB3“Āz½P6X>é¾²®÷Ü~ā‡Ļü?Ļ/+Ł4½iš#'×^üß?®;šŽĆGīw`˜Šeõ֌tKDsƒ×ėõ½ūńwy=Ž+vŁ'§J_Kk+ƒTś¹·ØžiŃvc†S™ś>ŽmgŒšč\ö霿łŸG#’‹ĒŹ;łŚŃ{NÉ;N‰#Ūūi Ž÷ ˆe©Ó–„Ž/Ļ_m³ ó#c@„H“˜›ńS_随¦£æuč\ÉŹŲZ÷«R|MƒŲށĘ’.6ć@±FėĒūĀ•įiß°ĻæģJuėM/eø(Ł0p|ŗbŚ0G]śŠćĖźFJjåµ§Gv?ņĄ÷’éƏ¼ķį1˲²~'½ĪO§Ŗ°;—cN4-āŖ²t³‹é*ƍ~:4…ÕvCS‡-łpœ(Xž÷ņ„Ÿå·ļŚÅźY6Wep—ī<ķ¾ēĘįgŽq±å·?é׿Ó²J!$‘£Cˆö·NžóV&w'bŹŌźÆ? õ|šäŪoŽ6ó‹Ūcłžū»ļĶ€:-ŠƒIā}?Ŗ?ŅpxY…םē~ķä°ŅYėr[īéQ­ÆöóŽ×Ž×J”ķ­¼“¼üƒæłĮcńłæh4 £&›ū2Ē]ķĶĶix_’²x°'Ģįe„[Ä­ŃēŅŲ.µwń‚L%ŒOŻüZˆ±0Üśtéć|¬č³üö·ńZ~|ö)7€¬?ĘÖĄōT÷NŚĘvf-—BłŻY"ė–`üŽÄʙ€ćHÕ m—źw†’eņDäŻļ8õ¤ćU t.ćĶ×v^}ō– nĘ—/rA£rąż§ü½§:OVō”šmū[Z‹Ć޹śŲÓ;ßžÄöm›·wżŅÆžńxĘĒ_żrŃķ/LµmāTē)6-æłu Ćųæ@ÉqłĪŸi++ݱ ī; ļh`ćąČVo1¹dR÷ ļ:™:µźī­]s³Di~T9’g_Čśŗ 3)|yNCQ–®•§«8„Ęfœd2ńźߥĪ1µoh„Ź–K(źL6vŠ“īŚĖĀé=DU+8²`e0RS–Y~׹–(Ł+‘' Ā~R) EIk£#0e6¾įŃ֟蓌ļuĻ}ęæÕ©_¹ø1­Ē“–ʔŽÓŌQÕ*—½mŪ¼mmØ$ō|6÷a*Į& ®ēr5…KŹ^ÜM ™Į( m/󞉛_8ŹŽC’Į›Ö+X³I³ĖWŖ­£øęäR'CwlpŽé ˆ¢tQŚx²e»QõҬFPn I@„Č1Ē’œŗ]¦UTž·Õķ–ž€Y”ėéæk)‘ŌåĄÄżł÷Ļžč3’q¶cķµóR öµ¦m­ŗ÷Äs9††Åŗ‹xĘāOēv‹]/÷pČ„R-55óVpuŪ×xē~€U\ģŚĪ±›L Ø³ŻPŻE»Ń72^ļn„žÄStŖUuøüklBIA„$ rtˆœ[ŗž1•ǽAk Mø=–Æh×ŲVOct=VEwiØ}}ą}hĢlīƒe‘̇XޘaŪ…qściø6E«½Ō•»Ł­(,—ššæĢ?ī„ōĢVWĀM39=Wįåīƒ%õ——°„r·Y°^l%iē)_~’ś=(ŠĆFį“&–Čis„ī‚3ŽÜEóŹ"ģhff/ccĒ…Ņ>óM²ČL™&)U]Ś "½ī^’ĮG7č‹?Ĥ'×ZŽø¼ń_Ÿün×cļśł€išeYŚT¾ÄӂšŽ0'Z‚4/r;ž+“øĖŻ*q±ę0å‘X!ĘnŸĀVQoķēpoCs^&ƒ#¾#ų,ü„‡)ŖŚiĻƾ4ÆD$ •š¼Ž%įyĆ0–ä®ōņc®­“Qw`ōµŖį6žnW<Ņõ¹–Å6iZś®zE¼łFÕXoż@iƒ\Åģmåņ•˾ż÷ß霊Ē?Ų~łźålLŁ™Wƒ¬“&[/Or²)@S]ųT­)“²3ģviōź¹=SXŽIĘ+_õŠ _h€čDżŅäµ·»¤­óSth—†YL@TšJ؄˜›æV“—ÆŻruŪ’g?µ{$³’Īt{Ī®ūÜCžźtÉ”$ä;’šÆĖ>õ×rą©o?µ27;•r{WŪ0ąĻįp*I“­“ō“3£*‹»>uO³§ĪĒž"'ū¤¦Ś„™ cĄ+ zĘĆ%Kóe–Āzx8”yĪM (I\žóĦ7™;róHH"Dī5a”Œu=R€]PóŠ~·qĄÖ Ói*Ž«+\‘@yūȼ“wGńtݵņõRˆ¹ē÷ēö¾ńµ^śķ?ų­ČČŲȦL|ēµ3•IiįŒŌØ żA'6\Œ„ N„\<“ŲmõEŲYädJ-µdō<Ļn,³éįQāį8Ü]éo5V˾Ć*^ż“cļ}>šÄå;‡·d —æU[<€ežgšr=¦QD ā—qǜAyéĢó’(·¼į•·æüŽ—^SŠRMDŽ' Š$ B,Š#eś^÷[µ·\ŠŽ}p觉y&–žžĄżū«ƒĻRW×H*Շi¦p8J±¬8`199ÄŲX-±X32$ćX÷@Ūž?Ą{Ž’žGOŁ»ŌßNr[²jXÄؙIq±1@PÉņŖÓ uc†‡Ęā]QÄVe ėZąˆ$9åsšˆŌP›馉ī¼F*Ńŗäß5=ü÷óø‹œógüeĒ(Ŗ¼½ėž¢¶Ø<Œī—o7³OWžÄ¾ÅīIJ§ž<ŗ’ćN!ņ†”*Q­ČXŠÅUÓq\ŪŁi}¾éĪ-ĘeĖįõ®½Ē&¼/&$ĶTU-“ŅȞO}äÓū^»÷u§?śé(“S“²± ƒ¢›’­„Ą€A§Ź™JĆ"źŃ©vk³ƒĘ ‹ \ŠĀ¢ŗ£h „\ø'ģ)u3$ HA 2Ņ9EeĖŖšSõé R¾¢Eiš×7™ĘĘÆĶķ‰]iScŌG7 ]pŌbXŖož& qh¾Ć¼ŻnØMĒNt=žÄŽ’§žģĻÕnBĢæe„&,ėγ)©”‚Óe9_zhašJ*VbÄq±é_ÖÄŚŽ/čŽÉ‡×{Æw÷|Ś^RŁõČīGxd÷QŽž<ņĀ'’ź“įŽė½Ū3łż3)چc.qā™H03• ŗ)@RUX•ĶøØ VÓfZDUåĪOé4…āÅ~O•—ż!Ūw¹‡i Hje²¬z†:ĪQŁźCQ\÷}*ŽĄ`ūĶĻ”źēž=fœxd®7ʤ`DĮ& w½@ĄŹtķČ$\-–DW2Ue]uŸdmtė«’–ˆŖ›Ž÷gß¶kg&[GSė†źW~nK¤¶³¢Ń—p­¾ēķiM›‘čę¦[w®ūūæł‡įGŽöpĘæ{8Ź®įčMķ#8“õ¶ ø§’œqkT8•ōΦ« &”jū‹¼ę¦?¤&8ÓXĖšÕcT4oŸćū‹ø¼ž²¦8½{—ęP"’,ęQ»°ö©'„cG®>žÄKƒµ„Č{ °ķƒė±eāÕó̊“{ŗwĆÓm[ö~q×Ī=zC`e{][ įņŽ÷€ž~€hōäĒź×¢pYĖGc̘±Ån«%Č©U%ōµs”­˜ö– å«JŠ^•|1+ßĪųµƒóØ­:#]{ ī'ż R B;pĮętķL NI‘ˆ ęŁk\uö‰®˜Ómݱ ‰V–(k©@0ģ-ѬyLÖŪŁ¹›™™ćRÄ"×¹5pk¬XäfL]„UZUaµŖŠ*‘÷ŚCxd~ēŃ©}Œ_;L¤÷r!„$ wjĄ9šŸzņ`:vęüćOģ"‘ż(ŠQ}¢œT\½åJcĶŽ÷pxŚĪµ×ŪüÕ¼rē,Œcg$ņb.ā@Ö»óM&Ę ŗ³ MaŠ<[ ^dČŌąFāįóóL\61Ō1†e„iĶĖ“q„$9YM@(‚–tķ ¤XD޳,}åŁJŻu¤źŅ­‰ Ø*č:t¼÷¹Š ;–4D£ĶD"‡#œ?_Ā•++$šb.ŗ§Ł›2³~.žŅĀ£qz³Ć¢øgš+‹KdDAr2ŚSC*~}^ŸJŗ3Ų^Œ™JGÆ»NmRT%]}łéé8(Øņōt E—U,śĀ·¢Y_~µCJFä—`š$Ą –„ Ŗn·§sÓņ¶ _y¤õU·bQ%¹õc(UĆÅ Ÿšµ»{/.W©ŌģźĪ¦éd|üiŠ‹—£(²Š®°µ‹3Õ^v§c[ sń³e‰‚UĀšÕI*[§Pµ¹Ļf%/N§w3K(),’wIAʘÅ0˜•ØxKŽį ī”ź!*mó½·9t#ŪhG 0"E#ņ«5’:™P IDAT  x/EEūp:wŹŽ²å3£śUƀT’$’U{dū{Ž”Ø.^ü¬pńų2 cvN{ĖrŅß’0ķķ%LO?-…"ī#«Ż+&”[‹œLAQˆ;9±2ˆWIÓ“ń¢«‰”Ž.,kžĢ-#]35xÓ8C*~”xä ‘±9nĒŅéL‚ÕwĖĖ©Ä śĻ‡lO;ĄäĄ1`(cńpø¬–äC,Šž® i¶E“¦įB€Ł…¦„Č ==[ RSsĖ8'‡¢°÷wßXqźĻiłÆ•µ)W*ŃtµjiOģ†QĵkŪik;‡Ŗ®•¶Ė>Ó¢m:Į™"ēĀÆ-+‹8Æ«<$„)_!SéA2>[§T“7ö¬Ł„ĄŗJŻ’ĘAQ/Rŗl£T±Xiņ’UO=y(;ułń'ö Sω|jĖ­ZÅ«“—ų£®ĄŽÆnßYw½¬©éjUKföČr3::-E#ģl0ŗš)xu•!]åA‰¢H›dl;}‡3ž½F²š™‰­˜Fdüöī³S7¶ÓA”’b,~Śź{4ū†(_Q†¢Č¤bŃŅ2ä%^H[Vœ€gČ+‘%‰Wm”¬¬E‘@ŝē,K˜<4‘ą™b'[ęūŁR€}RŒ"­f&vØDsTŚēHµ\/^k¤āĻ£»¶/Į·Ä)mGsŲmėiTÕ»Ō_RµģC%±Č„»®{7|ķK^#5¹A,% €Æé©'uĻ.*ø(/<žÄC›žzRJHäA3ĪrŅŻ}¦¦Õ¶Ś/Ć(„æ’µµ’€»ŠĒ‰/ą~«G—©wŒPę?$ƒ×šÉ?„K0ĒH ā4NŸżn ŹO£Ø»—śk|Å­ößżēO }÷°‘š”£#‹ !ØėNÓΙДB³“Čy‘ČjLó"ŖŗŹVū59¹žŠŠgp86bǧ4bIyt®Üq]Į‰©;fPfXŒi ”ł|Š©āgvUź  LJ[„xx©ųQtWśÖUsłŽą/³ß sUŽ@Ån)ōĀK@ī–•,K×¶†]ī‘ŹxL‘R©1œ¶»)«Gq8f€€Ra)r0rŁ{ĀÓbUūż•^Ž—ŗŲ6×Ļ FI© Ļ™Ōś$$‹”»ŅÕČ?MØq» e„²Å/żFwź²ŖÅÉXƒ^Ć£käĢśRltŻSOžxįń'żØīścoßVłŌ“S@Bä:‡Ć~],KĒ4MI> “bā0-.ßÖęPؼYܵ°Wē9ĆBM˜Ō9øīTē÷d2ńŹ…øÖGšI‰‹¼§éĆx‚éė*U\ė!K6¤æōŗÓ67O,ĖŗĆkčWƓ±'GA?§ź*r§Ŗ¦½ €6§/Åå“O¦ä¹NQfP”[īŪŲXE’㢱8ŪĘā·æŽZĢM!*Gu•.Œe[ĪūĖŗAÆĪÅÅ|^ˆœįō¶SÖäŹÓ¶ĶÄĢ8.›åīŠz¢*»u½²¤ĪOZ§į½9oyźÉéŲĮK³SņJĮŠÜęńtb×1‘Čj,«G IdŁh[1ŽÖ ›WÓ7biĄ%įyMQ#”Ōƒ’Ž7ū ø×÷iƒJž‘Ļ ˆrŸĀĄštķd ž“¢9Ķė·ķ¾éśżżCRH"›|:ē4%żŻm{Ć2žCĀTņšc[Ś·›ŠKp%±U2eó/ō¦cC/¼ķ1Y­Yä6æß“ē@ŠÜÜOMM­’Č&ē<T µ, Q HéŅ“ēL£I‚;§üC‘d.¹o°Wœy~*-õßėsYpMŠKä,·»Ō–ū FÓÖĖb„"ĖĀ.-żėvŌł9¬(¬šŠüoĶéK5üŲO*Žg·Ö¾ķŅ+„K%Ģ\r_¤ķÉÅtJq‰œäp\GӚl¹o^oŅūa©(…kE#„.Ņ:ÕgŸ§Y ]E.é$'‰™~ ņ}3y’ĮdNĮ^óŌ“‡Ó±£?±ˆJ‘‰œ“LÖ1>~Ā–ūę÷·Śb?®^ŻÄččA‰ć$Ē0Ķ Rq GĢ`$ķ‡C"+ ‚ˉ„¼”Ų«ķe˦~~$ uµdlҁ%O@ܰ)];…Sr¦9éʍ=XÖe&Gö˜żŹ²\ cŪ¹t©ĖźŠSRfś/zį$A‰¬(²šŅ^'¢^{ż`;¶õͼH@Žöf6·¬ĢL#55Ą³rh~•¤„IĄ=ē¬l)›.'r[OĻjZ[§ū,=~ķZ€eĖ,ģö\;Y ĢŽ\(Ś«ŻW» ĆXŌEpxp ėĪżH -ąąŗ ]%m³ÅES““Oi rUfĀŹ§o€ŅĘą‹ā!†®4JP2,•Øgø³wą ”†&HSWÄÄLī€=ÖQÕ¬_«Ęśæ~l ėĻ-ĖŲ—ÕhżZv’ņ;8ößHļä O@Ö?õä3gbĖ¢/*Ė*™g20Ƽ¦§ ½3īcƒœÉDś/©##G(+Ūi‹ż NÓŠš€-ceYnLóŖŗ:Šömļ|kȲ¬"©äó<$L6]™惟ŗ“Ł K…‡=Źā®O˜¾pŠī€CŒŠ“ą™m$j~ HvĻ €+m[‹‡'qģńĖ3Īl~ż•göx"Ö»=ß+ЇŽĻŚĆG¹ÖŻCż’ä‘™J@iŒ.DN܁aŲc–§ņr{O«(¾ _°E–„“<2摑{,‹“M=§DŹV„Ź–ćŌ¬£fM”PĆĢ£ēĒżöébefųĄŻŌÆś«rEŃņ¾{§¢ųēÆv8H,Åö_¾ĆT'Ŗ˜×“‚ł>ZU[Ÿzņ@ūģtŗB2…žåĖS¤į.ļ¢$“I<{FIUgP”PFĖEŲ¢yaZL« i©˜į$“&'*ećĒŌśŲt²f‘›iȉ’‹†«0{0R.©Źäō^Dsl[²ķÉŁö”iŒ‘АŒM‚„ą+Ż–…SDV·oՊ•›’sąŹ©G;,3ޜĻÕŹēe՗>ǁw’io»«7e")–Ķõ xzā‡õr–ˆF[ˆD²? ½æ=¦yŽ–1 Ī©,Ē7Jē{¦©KšœĢʏŃfĒõ,ę_ŽŒI4uā‘*ā‘*Rń©Ź”˜iÅH.ŻĄaĖ\Į aŪCŒvÆfj`;į‘,Muż57®źŖÖ­ūĖ5½ųL¾W­­›Łūso™ūłó‰÷<Įēžžop:ļŻS.Ów_K*~üŸ§‡^ūśäl!²,ūw»#Ÿ/»ū`!:;gh¶įMœŠŠœź6ó®wüŸgb±č¢öybjŅüį°ÆŠN—FeZŪf&µ“”Ux8Tģ"Ø)r3Lä8łÜóÖ«šŗ”cŠTĄćz²Üėå› zQ°uėÓmϽõx"Ö»-Ÿ«Ū'>ŹŹ“ĻŅß×OĶżŽūś7æžõ7P^YNßµ>Ū$ Ō ŗ†äŌ!„=Øź ÅŝžiP„ŖźGNu×ü_æńæv/vC#CĆ?üń ¾ZZ`,Į6]ƒQvFĮ£ŃQį”Ļ£S¦(ødŗČ1ž" ‡{waž Œā‘óø|«ÉņĶDEuŗVnžžÖKĒw¼`¤¦×åkČ…’o~ė»_C„aŽū‰ģo¼ó7Ų¼} _ž§Æšä—ŸäŸ’įŸīšŃf¶½«äĢ!„M˜¦‡‘‘ø|¹ŸĪĪzz^`xųPV÷):N($cÅ XwxiWā4÷„Ł{i‚5—Ę©±ąšD]ˆ\I@¬eŒvÆ”’üĆWc™YžLEUU-Ķ÷°X÷Łæą¾ķƒÉ‰IĘGĒØo¬głŹå÷Ź2oķSO‘#HŸœÄK¼ķ“t™å/+“k–pN„ń8IĄĮģų“—Ó z¢)zM k4N(’d  ¬(bN]ū#ģķ_䳜U%t½8ū¤¶gfźśOŗN+Ŗ¢č>‡£¤­¼®÷Gķ®\ķ,r„wꬒŗŖ&3®e“™@ł·žāł}ƧĢ4Ž“*k3 A‹£((×®mƲśIēź“é¦()Ą›…äL“ "nā2-Ś€R@UfŸˆ,™p’uW§øŽ5MוIĘ'ā¾ęĢDœ“øŗ§ŁŻfO$ÉZ^ōš2II1 q»©®‰ŽĮ}ÓĻęØ©źŖź*q‡V¾cķöžÜ?wżĄ?Żż½Ė'āć±±4|U—OŚ’Y*įĮO‚ƒ‹ŁFÖé*P³é©'_üOķÅś‹’4fļDÉĀ`"˜¦įįÓTTŲ÷q±a€ąĢpāć” "²)n¼ņ„”†]Ó÷X=iŹõIˆ; 6‡–ožčžå3ƒįž=]įkSĒSє‘œŽÆč{ŗkmßÓ](Š2é­ö_ók›õ”“}Ó+_×0pģŚ`huE°bKĶÜītłžEQeĀ’,yō ģžž8{ššĀ¦5ĻvŸŅJ)BQP¦§kØØ°ū^ŽĖ±)ģDUźķ“O1cvŒŠāvWæyžč™Ļž(5ā©;Žu“,+韮tņŸ ūū—ĆŖ®Ŗüķ[sžMī[e™ö¹æ¤|ßėŸ ”k HFD’yĶŗ„ž–Z%–Huõ5ģŽ—;™ģĮįDdSåDŠIJQĄ²PŻZŗŽo5āRRBÜnüĀpūsvd#0箵 JŖžu+:KV—æfĪ_ä Łē¦„¢X…X֚Fõ7æĪ3Æ{%–5æ§Ā‘€Äž˜óy’¬’sˆXš£ÕŽcŽa޵RP"›ŠœÄ*<ŲŗkEĀ@næ ńjV׿µ÷µóI@6logӛZ^3oŠ éA»ülUuĶj‘WU²å£æĒO|z~ēlUŽ–;& i‰„(8ÅÅWĮ~w›E”µa°żŻÄ¤)lj(ōÕŗķŽ÷Ć½g®~ūĀ.ę9ŁŹųłįH×w/čž÷ösüHU—ŁÆlāķ±cĖ&.H²ų‹Ÿ?ĘżZb^%ĆQlė}  )(aƒ“°ķx昀D¤°Dį§fż·Ģ„tü÷2ļ'ƒŗ[ļŲš;ŪvŌæ¾yméUÕsüX X¦‚m8¾ņyS’€,ҐÜéVYyU]cŪżÓõQœĪ&)(‘żüĆžāMŒIi‰‚ŲCtņ&śöĻ Nwołų¾yŚšžķŖSsėŻhĪu!\FJV@·U‚śžŚÜŸ‚ČŹŖw1 ›,čSfū1 ±x33JKķ¹o.×uš›Ė™]wAˆl³ż·N—"ėY SNLcĖĮ÷žōņĢhĀ?ߏŸśŌ”uc†lśżŻ»U™ėńŠź‘ąg€”wóŁĻ–Ķå­ °6ąųąŌtr¦č~ļ•' ÷ˆMŚ% "m‰Ą~wlT5J]]v^ Q›]’üD% B¦±Ą—7š°W×w/ķŲ’«’~Ј„ę6˜[ÓĻ£jA ~FX¤®¹ž›ėŻ#I@īaź$ "mb±å\»Öƒz˜ø\×ikÅķŽ)$lÓŗ·°óX$£ŽĻO5… RR"‹m¼›öuäĢąĪļģžjņ§ļž·ż3ƒį{·^u™;ĒIrÆö"“˜ĢoTæ÷¼‹PVĘNŻK*+;PI“…­L&XŸ4é·Ū~)Ø÷s ąąuRJB,ÉUŅ;zvpēŽņOITķ `DnL÷÷üĒ哷¼Ļ_ę²ßéȦ~ScŪĢcŽęB0ƒ!X-‘‹¶lŁ~<ž‡m³?%%'öJĮ*½2IOskN5ū+ « ‘‹ÓenŠU…G¤x„Xā<Ä0«Øj«Ē2Ć>gO‡Æ:°ē•R;ƒ'øY¢”Ū^~2 ą )ayÅ0¬R ±(š6×kÆ.„„r×FŲµ“hÓIĪN'9=åŠHŒ£¦EĘüRb ~ö·cTxŲ©*¬‘’"ƒÕOØńAÜEOQ`’`µ“Éņ)ƒmżš< }ė^”‚Š$œ’HäŪIMÉlĆ»¶öy d«ĢĢČĶag1fzĆŌō†y`4Nķt+np=S;ąPõ;ŲIq‘­–Ŗ T’0UmIŖW{ń7IPrßmÓšNĄVNÕĶv;’)Ī€QHUIÄB••!Xe»ż«„¤dJWĀ.¼:‡|:ŠßA™Gg…Ķ3).ŽĒ9_ėc/°\¢$D”&"š\«ņ©8ļōālŗ—‘U^gŪi°q6,B,@I €żrŲX¬™7Ī‘Hœ 7Ö~y®ĀCU…‡]^6/&%«^L>„Bäs³cBz KŽ`'g¤ŗˆ‰ĒķŪÕillW®I@ Ų4!ĆwČUĄ…×/.B*œÄ ŠdYŌ #n0aéŃytI>„¢ŠHRĄzį‘Œgō0ÕVˆĮ..n“' UŅä”hŠĖÆN³W®łÓĢ4ą5F«Jg“¼\$]°„Xj££Eü¶1 ø°yīßéѐ)©…ČłƒYÄå_Ē»V+Ŗ¢Öīkz°į Ķ[vīg;ļõ^_uąY š½-«į2’Dqg‘H™™Ÿ{HĢė¦y^ Hd’GćšK£A"!Dē.šŠęÖÆŽłŹÄęķ-R4uųĪ—EPJŠ8įtäf×+I@DÖĪ;÷‹ £˜hōH¾ē*P5÷Ÿ¦³Ó-URdŅLŠ­qƒ®Ł]YķMˆ%P¹µvŻŪž~×rÕ”^õßź_»ģ…’¶²FĖ0KļrT*…;Me¢¦Œe¹ž;$"#g ͱō©āb®OZ,«ƒööVR©r)‘až‰×% B6Õ”:wžåė§^JōU]ķßųį]ĻlūŌk>ł‡O?{·6Ŗ¢*f!Ē­©†ó@…$ Bˆūej ‡£jÉæĒ0" Ó{Æ_ŸĀ²q§Ļ8Š<ŃBW±ŸgÜNvęEÓHŖæK¬¢ā„iÉæĒįhcf&Ą… q.]š$=ŒQ`|¶•guÓ×÷ SS„`D¶X°,œdļ•IŗfR\¼1Ɓ ć$:¦h¼:ŲhŠŻŲ£»¦"„%ÄŅņ7Ē7}x÷¹āÖ²•Š¢ØĪbwßė¾ńŲÖ;uŃ*TŖŹtMy3±LĆ+ ÕlĆ¢§§]Oß@lUMŃŠŠ”¼üZIIi¦Īć46n ™|†ŽŽÕtvīEUĆX–pįtv7MRüKćēžxŪ‘ėż×Ü­Ķ4M(˜nq†Åƒ]Ó@ęĖBŲÓ#ū––5Ū +9˜<õ©ƒ§6}xwPsjN‡Ļ9ŸˆÕI” ©šÓ ģ–DˆÅ4üķ"o"Oßöjk÷^•”Teō79[Ø®~𾾇1M’-æU,©ƒ7Š£±Ø¬ł"„smhŖć„†#ą nł£}Ū5—ī™ Ø5¹ł÷ž:õɃĖ-Ó*)ŌłxŽćʟä¤ –i<‹*I‚ĮŪł†ŃŸń}‘;FB!r†eZĘæ=ņ§æ³ó«©ó_>uČįsśŽōĆ_ŽŅš†ę<¾ĪB‹Ŗ©«Čæ'ćņDˆtńzŪQ”µ·¼ žBÓ2ß½¤®®ŸėםÄćR0B!ģNQķM?śå6UWŠŖ¼|·_sjī}_zSżŽśO8.«±ŠSŠĀž¼K¬¤Ź ‘&UUć·üw(tœŗŗM€7ćūāvļ„””_ E!D®Šœš[QķÕÆūj‹jA—Ī]’Ä(ąå¬×_]ÆĒ÷É gIDAT$"­G’:…Ū}ėIĀéLduŸ"‘„ŒBˆ| 'Ŗ ŖY”­Æ¤ˆ<}ź# ˆ‹„(qV­ŗ}EqMĖŽbI¦yž7vJį!„ČMoj½XHæ·¾Š“Š’æ³VJ"ÄāéXÖČmƦRZ–ögŒ+Wʰ,ć%„"/lžčž‡ƒ+CĒ į·ś<œ÷{ņ³ėÕ+ '!ÄāX–F2Ł…ÓYsĖė““õ”•e>ł=G*µG F!D>ł™oüĀīŌLņ:ŃÉgQ5'.ßP“|śŠB¼± yž@!ŅsĘøżXŠĒk±¬~„f‰æ=A"ń## ±,I>„BägĆÕėØcüś+SĶW¶£éy3Mm}%Ē…}y_ŽR•…HƒŃQ“Ŗ›ÖTÕ(mm“iM>††öćõšØŖN"aŗ‰FĖˆÅź±¬m ÜŖ%…'„BdŸ×Ķ„€—]‘HJq‹ ĖĻ9¼§§nI@%Š¢¤wtMSčéyDŹC!„ȳƑB²±µPŚę2]ˆt(-ķøåæĪ„ż;S-„BŲ.}XōjĖ9¢*“JÄ$b±\®nB”½·¼ętŅü-Q®_ß!ĮB!ņOŠĻŖBś½’€±X>ßõ[*5Ц„{ś+‡cX‚-„,æ'mrł±B“ŅŅ[§t8Q”śnm„¾¾gˆÅÓÆ¤f7¦)c¶„B‘ó¤A#2-’=FźU’ķ]Ōö&'701įD×ĒšłN‹­‘Ŗ#„Bˆ| O@„X¬¾¾,k€””£˜ęÅEWe8½¤R!&'7‹­ !„B!€E<ž(.œbtt=–•Ä0Š€‰oQQfŸ9ƒ,ż:ŅX!„’€‘CĪķĄ:,KLŽÅ ŽāŠ5TW „³K¼’²ˆBä¹u$$"½ō”!=—" —«M{M[Üq‰œdhh‰D'±X…–BaļV…„`~dŗČ(+’ҟ1 NQŃ  ™‘õõ£@邶čr¹QÕ$W®l—“[¾łÕoGcŃ®…~~pxpś×÷×ÖK$…BŲ‚©ņō¦‹·½¾ėt®d›$ BdĒÆ!Š‹g§px7O”;ÆŻ<ĒåĖ›_ģĪ%rL}m}ķb>_,–µ^„BŲGBŸāŻyŪėk:Ÿ”jtĮ›•.XB,ŽE©^YŹ4=ĘĄ‚¶633šįäCz !„"£$bŃMxKGU§Ń4?`ĢYźĀVB_ģų‘ł“~«B!„Dˆœ ()åĒčś \®~R©i,köÉĒ„KåÄb‡ē™ČÜ ÆÆN+„Bˆ|&c@„X(ĖŅq:[1Œ‹čz§³E©Åć¹B]Ż(N箹n‰xü33Iāń‡%°B–– ĒJŻ$īö÷€ƒŌPg¤V¢%„Č(W¢š’÷/n_ (Ņ, ˆČ%łÕå'™¬A×Gq8b(Š€ht%]]!Z[c€ūžŸO„ž§³³‚dr—T ! ÓŹ šWgļ½Ž3™ąŒ$ Bˆ,“Śü‡7„{³ŅKˆ…r:oP\ü,ŠRFE…(„E±rų¾É‡e rõj#ɤ4*„Bˆœm£ I@„Č]”¹9NMĶ24-Œ¦5¼r&R’XVņ¾Ū}žT*$ĮB!„$ Bˆ{%£45]zqśŻ n~ŚaY^š ė^¼^·S!„’€!ī­“ō}}U$“§ˆÅŽ£ė›×Ėw8PՊ9$ ūØÆß/B!D!‘Ač"Óræ«äąąģ`ŃĖ—›q:Ʊrep¼üw§EŁ8§mķcÕŖ‹$“Üøį'Y'UDˆĀrtGćĢŻž^ēg*šbƒDJ! ˆŸJ) z€ś—_Ó“qźź*ēµU]…ĖÅÅO‰H\…(0ćqšĒļń÷ ‹.Š$RBˆ|!]°DĮ¦‹L>āøŻŻD"&Ē1ĶvŹŹ^@Q2«ÕeR,B!„ČwņDˆłņzŪ©­cj*×«QRRŽaL Ŗ06ÖBŁņˆxüŃčF ®B!$B¼źØŃ#D£qü~““••Õčś źź®UsŽ–eõŅß?ĄÄÄ ¬B‘ƒY DaūĆ4ēA4Z @uµI(”4<ž<žĘ9oĒ4Ūé蹑Ln•j!„BˆB!c@„˜?'Œ®7”( ć .×U–/¢( sŽJw÷’É: §B!$B܋F0čÅ4Ē0QÕ–-‹åóŚJ8,O …BQp¤$Ä|™¦‡æ’^ƅ¢0ĶėhŚ\>$™lDz,ĘĘ|”—K<…BQPä ˆóeAŹŹ¢ lĘå²?ń9}6™¼ĢĮƒN¾ūŻuX–B!Ą’I@„˜‡Ü„®(ĆĆ%ЦéĘ ŒŽ®%™|†hōĄ=Æ?śQ££-R „B! ˆbn,Kczz=UUg™ž¶ Ćqłņŗ»7‰»|nh“R(„BI@„óćpÜ`dd##28~ńÕ8Š’œwüŒ¢Tś’Ū»»ē&Ŗ0Žćßģ&Ķk›4iZ¢Vd¤0ćŪ0ŽÓĮ’mn¼pģ ‚££ąT¬ÄmB›–fÓnŗ‰:ŒŽ^PJ‘¦ßĻõ>“ģ³ēb{vϩ޷y’$M71€HÆA’T8<,†»d21Še0ųųńųÉ֌ĒėT*]›'I’Ī2WĮ’^*ŗ}*•Ÿ‰¢½Ž{ ?²¹9ĒłóŪÜæĄüüW’8>›-’N_įźÕķö.ĆįŒM”$Iéä½Ӕ©cžĆĆ:ŻnBį'²Ł.…Ā2¼ĆŚŚæwDßŲXįܹ˜z½Ā£GŸą2&’$É"éH¢č2¹ÜÆōūČfó“Ū5ęęn‘Ė ĆE¶¶J“Z5ƒ ƒģĘ$I’ Ņ©0¢TŗĖžžyvv²4pįĀ,IŅg}=ĒĀĀ*ķv‰fsĢŪo¤(—øtéKn޼2±]™]”Ń8źRĆWN’¤³j·ĻŻ0xło³§2d3i>3€H“/`oļR©ˆ$ÉŅéÄĢĶ­1öiµjĮ"Q4M6›°ææĀŌTƒ xŸ )—×&¶+a8Üā]’¤ŌŽą‹ćŌ—KÜi5NÓ ”¤ćs4›ęēē ¶‚ą-Ęćåņ·¬®.ĒC‚  @©t‘7ž†‰Ķ“$IgDÆ÷^}2æ{X_Ʊ·÷™Ģƒ<}z‡vū ĶfŠ|~™™ĻŁē¹ÜU–—ó„į–£B’$%¾‚%½ Q“ÄƇK„a0|¤XXų…€b±Ļīī× ŅéĖĻk2™OYZźŃ鬰¹yĶ&J’$ˆ4¹Nf&&I*@@£ńP«}üü·ĘćŽ_Gż}ę±B½~jõ½^—8ΰµµģå‘$II/Bfxüų:™L‡éé{DQjuB! üĪķŪåņ] …4¹\ŠR)ĶhtH’ĄĮĮō©?’ķķw‰ć[GŖi6«¤R<’$@$½¬į°NÆWFÄq‡\īŃ(!•šāĮƒiŖÕg‹×ŁŲ˜¬óŽćqÜ:RM£ń=a蘑$É"½rgkó½Ń(@·»ĢövŸ$)’ĻÆE}ŠEG„$I2€H:IņgŚ .P.?±)’$é¬q^é’ $>$éŌKŁˆ$I’$ˆ$I’$ˆ-Škę<„$IĒ1¶2€H’$I’D’$I’D’$I’D’$I’NÖ¦Łt?Ż­ŻIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_8.5.png0000664000175000017500000003726214632072346024143 0ustar fabiofabio‰PNG  IHDR ™q*UüsRGB®ĪébKGD’’’ ½§“ pHYs¢¢EŻ1¢tIMEŪ ",2Q“Ī IDATxŚģŻw|–õ½’ńĻ÷ŗgī¬;wvČ&$ģ)²QTÜ£Z;“µŚłkk×i{:Nēé9ēœötœj«ÕW ¢(Ȗ!3„ H ;wöø÷}} Š ¼ž‡īkŻ|®ĖĒćzē»”ÖZ02Œ»ę{w¤[–r>æC{õÖČž§ų½ÖŚäŽąL”  @@@ƒRŠ"€ €ą- B  8Kōæ mFCT ‰@wc3UC¢§ł`MŲ×a§ €`еUmhōuŌ© tZėp°§¹•J€€!čjh¢ €`Hō¶T ū»lT ŗÖе žĪŚ0•ƒNk v5µŸ‡ Kwż^³ćȶ­Zk“;³a„#O »©IDk±÷ŽoońÉń:¼~éķ ؊§'~Ō=ĒM‘pA¢ą<čņö•»āR“ĶžVóĒ‰ŪŚ"£ts$QDŗØ.4“€œė’ŗé„£åęk§ŚÖÖ=8v„ - ēĮ%×\zin‰±ųTŪ Ę[&gä¼źHsä[‚>Ŗ… - Clü•=³VdžĶ¦,§Ś®µ–C{Āæ#|€€s2’ž9}xģßFŖ¢ŽæpŠl£Z €ą¬]’ÆWŻwåŻ9›GO2–©†”dT±óĪĢi£’Ø 8c³?<ÆhņĀ„ļ»ā$”?ūgŖžīģķŽt‡‹ź€3’;)łCīIļļžZDŚĶõĮfʁąĀĀ,XC ¾¼å…¾y9ßp¹$Vź“ūwwHÓĖīų²|śōē¶{ģźÖo]żoÉYö™Žŗąŗ†CÆæž»×·Pu GJkM†Ą„årĒĻĖżü¬«ćæ¢N“Avæśł_¾ųĢWN>Rķö»vŻ£'×X¬b- źĄŽ5¾oÆüß5æ 6£TĆ ]°†HĘ蓼¤Ģ˜1Ē:X½æHHBŽŚ¾u§;_Ńā é÷üĒuOŽ™¬®³XåŲ”¾JÄīTĪIó\ßv8¬‰T€‹Tīų¤»‹&[WØÓ4ŌWė­[7o_łīĻ/¹mz=Ån™ż‘n’ʄc¦+NÕ„ĖęPö„w_vßķ’¾āūūõær¤;œÜ tĮ`ī9nY¼lĪē’G¹.łĖ·W~ęų‚‚Ž ‡ķ3æ¹~Kv”Ģų ćŖõž5W\U¶”¬éęo^ż«M\N—-)#_][ŗ„ūw­µ½/O]’õÓ¼±²ątßåŲ»ž’m/õżėćß\õCī GšĆžÕGo8äN1³k+ÕĘŹ]?ݼįUWŽpŁ×&Ļw|Ēé’Ųӝ£µI…Ņ“ž«§Ę;M&Žśh£']eZ¬gÖ‘åąŽčß’ļŽ§īąīą|c,€d÷Ų­Ė>µč§K”R’[,ó3ržĢ.¾|UZžõR§KĒöē<)2śŲO'wÆJeÉ<›ļåN³Œw¤9,Į„ćü¢`€ĢŗknńÜFż-3W¦Zlź¼µmm”CÕįg“3m‹Ü©ęėŖ_²éO[6q§p>Ńp™#Ų4EDnüžµw„å:īųó7VŽźJHp~ź‹W¦e˘įš=µÖR[ZõčŸ}Ą‘ę°‹Hœ²©Nī Ī7Z@śéŹ//]:m©ē¢UÄß«ė=jbl¼NŁ·)ņ?«ÄŽŸe½G©įń]{»¤ćG·>“ņ†ŗ¹sN˜† ģ»7ŪóŻŌL)HĶŅcr‹eQ\‚NQJdģLė½IéĘĢį>DD\qŚ}Ķg—|öų“½`™²lņ”ōĆ×mčhņæSććī0Ā„ZC[~“ā5s²åJĆPĆīū)‰I“§žéÓOß{҆ļrļ0¼Š ą4Ū?»īŪ“ę¹¾:ĆĒń’œa½Äī±+ī #؊Ļ]ń©é—;~—ØS†āz”  vµ[ĪōøÄd]$VIąŽ0‚Å&ŁK†ŖåĆ4µ¼¹iśC- »ĪōX«]; §ę–82¼ć0¹ēøÅbīKI’’S¤¦ Aö­µ:0ś…h$Õg³U8OZU]‹č~Š'|~ģ?Zź©;^¬ūųę?o9$"ņßwpA1‚-ĮPī„)ónśŹā—³ õ\‹ešz®k-ŅTæ÷pÅŅmń ū3ó‹,T'&u¼-Dšó±ėŻmŖ¾ę@äįühÕBŽP€;‡įNi­©ĄūH›;åņi ³Š’iūlL¬r lś9z8iĖ®-wžĆfk‰0cÕ­¹…}SU?fŻŖÜ}öO__yg°%xÖ«Ū“ķ®Ł7͜š˜?Ęę°$¦ŒrMļn Vżóē«l öņ€pžĢĻĻ^tĒŌd±]a³Žx÷¹­ ˆYYš³²|ßµk•rD Ē>·  ųČāŲųhæĪŪŁ¦^üCÕüļ¬>£@„ä–.æ7g\ü'āŻfQl¼N6,JŌ[Ķ+Z‹tx„¶ö`ųqeQźĄ¦Ś?l’Ūörž@†˜{Ž[ü‡ü¶;¾{Õ_'ζߢĪa}ś# oīŲšń‡E-łÅÆ]2azå­V›Ųś{¼Ö"o® üųÆ<÷­3¹ī?»žSŁæaµ©~uĒ÷õźž7^č¾cåOVÆā Ą¹b ĄčÜŅ)‹ļ_X’?Į¹Hg÷‹ÜPH«ĖF½\¶wį¦ā Ļ]–7ęč宸hāIć>>@8¤£-ŖŖ¾2ųųS’¾śĒņĄ™]?ŒvxUif®LéĻž®8?~nāĻ&\=~[é ¼< € ”HÄ“[,Śq6ǚ¦Öeo–<®”¶\qżßæįŠŗш˜Gš/ōu™UåŪ)«<ø«sK§<śå3’OžėŹ_|äW7fgꌦō÷˜ōl?óź’‘Oó€0DéŪņū/°;“«æėt„ƒņõY[{{bėŽ¼ŁT7¶fĮ•O}66ĮtŸīZ‹xėU鑲ąĆO’ō…’ µ‡Ī¹’üü{ęOœ}]Öågzœ'Ó>ƞb·„ZCQžœ-ʀœæwÕwē^’=ĆŅ’±­ŽŖ¦śœ†µ&§7u{|ŽyĻlZŸōövIKl¼™ŁRglķė2Ė•”ćłÖó÷Ō»öT{ģWžrCYrŗœńJ릩õ–•žūŸžīŹ?š$ąlŃŠOiÓS¾š»…_;“š!"’’,Jɬ*:Ż~‡÷…Ÿ{ō;/|$!-15jīÜŅ)""üŌĄżn’ÖÕß÷¤éœ³YŁŻ0”JĶŽY("@ĪDź„““Ł×O[F»[ėzÖķųǧ\ŻÕŅŒFUx0¾ÆW÷¾¹¦ę?ƒ-ASDšć£¦g¦Ż÷«ł÷õw°ū©d« >1oņ†7ķå)ą4Żæhvīų¤ž·—}<Ę%q""mžŚÆ?{o(hś¶>{čŽ-y³ņTĒ[‚=·üšźŸĢZūSć¦ß=›]\…SR>ēČtÜl šż=N)%żķRķēēž16^ŝĖ÷tÅIĀčii÷ŠČēyšp6 J. >9śg’rŪóKļJ{eŹŪēbćUœaQbX”xŅ$'-[Ė­fL˜Ÿ÷ĆłŸ˜7Ūžj·ŪSģGšĆyüvŻīpŁRĻ„įT¢aÓÜü|חWżnCæĆGņŲ„Ų;~vŻw¾śÜ­„_zāöĶK>³p¶{Ž[2§fd8Ņö÷-6ä7deó“\ė•'Ö8 B4GŗĆ¶ōī’o8]Ŗ_/Ķį°Žōt؆˜X3%0zü}ŅÜt(“:«Č¾"%K—X,›@“Öŗl[ōŃļś£żŁŚMÓs®ø§hMZ–’&¾^ŻÓŻ®Ž&„ź¢Ī6ux’†Īo½śšė/čØÖśĪ5?/œd»Ó'n‹õÜŻÓ%mĻ’śŠÜOī¬ą @Dnś·ėīKĖu.tŗ$?3_϶ŚŌ°īłŃ×#ķ;_éżVćįīM-•Æ•Iœ([:„hфŒqss/OŹpNv§Ł¦Ę»eŒ'] >č|ŃØÖ=ķFC((]©£ōųn“‘ŽnéčnS‡¢Q­*¶wżW /XõŚoÖmįÉ\4nžĮ5÷'&njw%E™ł²ĄłÖ‘B›ZL­%R®vćØŃĮP@Z’3eŗ+^' tׯbšZ|½ŖsĶ_ź/ßšĒMoņ$‚.xö»å‹ݰ'=G&Pó£ÆG:kJCÆ<ōégn£ €€ ŅØ9‰Wß?ėæ“Ņ-—¤Ž2ĒĘ0m&øHų{„÷ŇźęośÓę=§‰±Ė>¹ųĆŖ¬Ļżš„‡©ÖʼnixĄˆ¶šöéŸ-™a|T)-g³ø–Åfʓ׷śOüģŖÆ,[V89é“_yō†™I©:ÆéˆŚåžć~ųųB‹ €Œ†Ķā¤Ķcų°; ĖåŸüĒū’|[ƒÆ;Zėtéóop߫ߏ£ÄbÕqTŠ0ü_nSķ‰!oØėÄĻzŪ}uZĒ‹"… ćŒĒ~²¼g[W›j(ŻŌõZ?.^Œ#ĀÜĻ¶ō®¬5mMʦ@Æy“Æ;č „³ä×ē“3ōh*42TīÖOüīī'¤~£Œćfgݟ˜lx“e…ˆ!Z[SšŲŲŒ¦©„¾²ū*qq3(ī’FĒÅgY®;ń3„Ż®F˜€_õmx|ēj*AÖęÜ4wIB’™A%F.­µŚžsgUkÕ € kÉYĪå4vŒlŽ9ōҶ~‡J€1 `Xq¤;–|lįŅŌQq3SsģKż½Ńf›ÓŚ HĄ#N*42D":zxŸł\B²„0Ńc|£÷'M{Ū© ˜ +wžüš'&Ģv]ėt)ĀĘÕŚ(‡K7õ|{żk[ž&"bļq¤tµtv[‚aŖVģiöÄ}ņśZW¼Š§#S_īžįĶĻ愼”nŖwc ^“„Āaå£#—3F'ĢX>½„J€†½7äoŖ1_£#8CjŃueõMT0"ŌUō¬2Mŗ‰ŲLC©1—Œ£ €€aϑᰄę8ÆW"$$ÕŗµQŖMSK{‹®Ż½f×fŖö®’Ā_š8Ū~‹2Xłc$éhQ5k«^±k]ļÓ?’ŲsŪ+{z© N…u@Ą°āė ·+#†š1h}ģ_G+ō¦=k›æ°õ±ķ„Éć>ņ†śØŽÓš€ó’B¢”Ģ»{īŒŃÓŅ?–?Įś”„$I„*Ć3pż:čt)G4ŖeósŻ’Ŗņ—’oķÓĮ–`€ †½EŸZ0vāĀĢ_Ž*’%v‡Ų©ČšÕX#{V?“ļօ·Mų߄d£°zŸļ©æ}åר  `X»ā‹K®V"fœ'fģ˜i±ŸJĖfL:޽{T§rÓŪ-]žl¹zĶ’¬Ū,"āHs:¢uØ=ÄĖ$ `xq¤;,"ā6}‹ī_4oŁĒR_µŁÄ” % 5??¢‰–ļĶ}®·;¹ÅÜ”7fBĆUŹxļ͇u¤¶BæŗkMż—6’yK• [vŻrķ—|ÆxzāmZiĆ[k®Éȵ\žœ©ĒPóĒ4µTģĖ}®b’ĶkDDb\©‹®YõM›]YNÜÆ¹VöŲŅń­W\æ2Ų4© `ŲŗęėW-Ÿ“ įæ’3u‘Į”ŗĆ‚6µ“4ĘØ.æ¶¹an…R†vÅöL›óņG’Ó£‡“hD¢­Ŗā”ƾx)Óéb 1 /pī9n¹ę–W§Ž’1"dį¢±Ö½cū†żE)C+%¢uŠ2nź«7{Ņü£ĆaniHÜ}ųąäõަ1 uŪ’¶“š|U¾˜ü‰Ī›ØÄy¦E¼M1g(1ą··W˜¶V)ćķī/J9¢MuY{Īź¤½Ū—<ŅŪ=¾IDÄjQb‹R@@Ąˆņ†üŸūėmū“u–Į@óó¦§ĖāŻüźG~'Śj*Ćžž1‰I;s®īämėo’u$œź£b %ƒ”zOēO^~øeł7Ā’ ē‡ŃVkĄvŖš!"ŅÕ1żč”²;^$|`(1 Ŗk’eه/»%ńQĆ ä|čź°5¶{Ė#!#|`÷­«”²õk6«#[ŚU³é© - `P½üĒu«ĆA P‰ó#1)œYPÜŗ(»Š;×0zm"" ‰„³’įÓć¦<¾<ĘUķŻe׌$!bH0 GšĆrÓWÆürĄÆŗ1ā¤"ēO4bųcb›c\¦Ļ}枘X‰KĖņĖ-zv‘6E{›āģŚrĻ#ĢZ±“ֆÆ+\^Wi{Z[nKHRÉTåüˆKˆ¦,¹ö„o‹9ŽNk‘€ĻÖŃīu—6į0¢…¼”°ˆ<,"gLĪüö=?[°=9] ©ĢłaXŽ ¾>ńķŽ2ķĻŽ¦Ł•J9˜rC÷R0šö6¶}ŅM%Īæ#U®ŻU„£Ÿkm¾ģ įC0döošŽßŽ”ōŃģbėńn3óŲ!tūJ½]Fė‘ŹK_élŸZK5@“Õæ\ū†ˆ¼įĢr~yŹāI‹gÅ]2ynŹļNģ„ĮćėSŻ›Ö\’ßĮ@^'Õ\4  ˆģtĻqļ7sÉæ9,Ö4Ŗ2ųŖöēæDųĄłĘpŽtné yzļńõ†·SĮW2„śś’ÉO.³Łć© ą¢ōĖ›_^ÕŽā{Xkj1ŲNq”LŖ»vĪ’§>§Ķ0ļ €€‹SŒĖ¶˜±čC'1)œ™š¹“éA§ę£ž'|½ŗ‡J e(É]>K„f'@ĄEč©?ļ|"ķ¦C'}TŪ%Jy]TpQYņ™Ėßü±EOł{•I5_4jj‹UYĘMyu‰’^U\4zŚ»«F±ĻÉȳ_F5_{‹żhO—źčšZė JƘ<󩛵ų-TpQŲž÷]µ-µz3ƒŠ‡Fjf$/Ęe&Ę&˜‰‡z6¶4eLHØN”2 €€‹FsļŁźŅčZĘD «MĪ7fBĒ‚Ģœś‰=]yķTpŃųē÷V=üŸ¬¹ęĶ׃’ŃÕŖźØČЉq<ń‰‡S©†,S0xK»ü"ņµ«¾²ģł’KÜßĻ­śŗ•W”¶&$)ŗ „·Z˜"QmöõX½U ÖŌ^¶Ż0ģL€!£4ĖŽ€aƚ`U7}ćŹ>³r’śŅĶ×}~ÖŖģŃ2S1Pd@D#bvwZm6ÓŃęu<ø{źśP(«[ėßń}ŽlyhWͦ?n¤Zš’æ)n"Ż-"’yüĻöūü;¾{ķĻrĘŚnNJŃŁCõ=Žż¢VɅ–{,V1’R"£DD kūō†šĪ½ŽęÉM‰Ö”™kZå°ÆWūö¬ž¢±:Zy!ŽokvR†A— Z@Ąˆ±õ‘Ķ•"²čڹfÅ“ĖcŸ¤3 ćܛ'LS‹ÆWuT¼üżŖĒ_’’!æ%!řŌÕäoæhģźŪ¾Z²ŅįT܂}įkÓliœ_ĪӅ”B qVždÕó+[9ć{~ÓÕ.Ķ‘ˆD>hmjéj—–hDŽ3ŲŚŒj]¶-ņŠo}6÷±/=ū/[:%ŲŒztµ†ŚC:5'5P_„V·5ėŚŖ=їƒń](uŒDTø§+¹†' C‰Ač`Är¤9 ­µż¦Æ.ūYZnĢųHHū³ Õ3ŖĀ}ŻŖ±«5RY8I­Ų»1ü‹'¶ś›7~qŁ7S”ŅFN±ŗFD䥔_?ń³—¾l š§¹–3ftLą–»—>4n¦q÷HÆ]w‡j+}óŅæ¶4^Z„”å=/„ BĒ`” ±‚-ASD"ņ…‚B’(‰ˆˆļŠ»}Hk—ķń¾ųµPk(*"ß±{ģjž‡ę,Ś÷zYiWc§7ŌŅżøV@DäņĻ-ł„=ʓ;z¢qłH®]»7yæ·iN%‹pn”¤ćųĻs žmØL|ń­šń¶·Ēڳ9’«æ~mßÕ_]öū‚ń‰—Äų“ó”»ĆŅRu`īI’`Æ×źń¾ÄĢp ŹÓĄØŽ\Ż;ēm¬ö–šf‚Œ“¢µ–ƶv¶å”łś ŪOÜÖÓXŚ~ą¹ożż„""ņp¾LµĄ2[?“ˆˆ%RWsłī÷v½RZkāīb°1 ĄpĻqKL‚q‰¤«CŗœµöTƒĪĄ0ćHwX®¹eĮÆ'Īu~d$~’€?¦9 Ÿōž§u„ač € G7|łŖÆM¹Ģł»]#ķ»w¶Y›Źv/x*™Ü|ü³¼¢g-¼ņ÷_ń¤īČēībØ0 ŸFŁn·XFÖĵž>ÕÓŃ{Øtēüēż¾±ŽćŸ»“v猟Z~«Õ.v«5ąąī‚0Ģtµšūā’Œ,3¢Ć I*Ćb޽I“©us}ü½Ū?ńŲ‰Ÿ+éµM»ń£6‡Ų}½Ŗ»­eģQ‘Rn0†]°ś©”²ūé_ß÷bį†'[>ŖµÖ¹~ØŲ—¹z÷wżķŻŪĘL|ya‚;’."Ņīu—F£)~ī.† - żōā®ł§ü§ˆŻcß0÷śėėR2%OĪ CV$¬#mMr(-[•œkG®cńG‹:ʼnŗ:l ›^¾ęw‘H~§qŠ_7'&u:žsG[Źī, ĆXØ=š’‰y+¦_‘ł`^‰1óTūD#¦6,† ‡Ģˆa(‰„%r`kš7Ožlõ·?ōÆ×ü{|’e|\¢‘“:J—œĶw8\īėĀŌå&IDATŚ‘ß3Ķį“X¢m†Ć* }=ݱGk*&lˆDņ;ß7EŒ°Č±ń!õ5Óö‹ˆø’ó“&ŽšÓ{ūsm_ū’įõæe•B@†Źöēw”/øłzĻ»?ļōJcO§Y·cĖsĒ&ß°o}ķC£Š=sŹ·y¢±§łp°9("ņ’DD>żČ-/¦Ž2Ī8€D£Zśā[*÷{V&zZG*›örg{I£Ż¶D"©¾Ó_]>ycJśŗIvMx"Ģźqyņ“Ė“ēģĻõUõ¦ī`(M¼llz§×Ü­Ä¢“3u‘ȱnQ·÷żś••›~ܹ„SDäłŒˆˆ¬?Õ9=ŃśhĈZ¬by+XˆÅņžļö¦©E›Z7MÜYUvŪjĆšŗ“·^T\Ų0D"‘ž}÷Īö©µe»źŸi¬RĮÄPSĆ|üĄ°¶ā›Ėļ¼ōźŲŪ›Ōž8·Źķė’ś_ÜüųĢžk÷ŲÕ \łåĢ1Īėmv«§±.wŸ;¹#;9­»DĈ&z"¦©%’`kSŗšŃŪśŗŻ=Ż”²ž·—øöź-Į}O=šī>Ī- ē`ĆŚ-}łžE¤÷ęÆ-’¦Õnõ÷ŲP{H‹ČĻEäēysī^?ļś©µÕeFƒ–isŸ¾Ń4;„Ŗtüó uÓ*•$ä­ļŠP €\œŽźjÕńÖæ®ēSŹŖ-VkÄHźl‹9ŚP»hæRŗ¬ą‚Į: ĆŠĮ=—®r8Ķ­Ć¼Æ€Į¢%3ē•iEćw/RŹ™½čŃ»•juQ\(č‚0l²GŠ2ń’§VäiYdXŽż¢ø©.nŸˆ+Dq@Ą€JHŖČČ/n^bĒF™G#¦Ž³uŃSZ»"T ŗ` Ż™mĮ€ß RS‘ńj 8Ŗk0®åNŚ3fü³—9µ‰Z-Œ5ĮP”`ŲH ¬ńęfd—–ōt¦xŪ¼Ókk¬±S·_–Õ7aTaĶāpĄšļycń#½=¹ €\D‚Ü®#U¹ŪDo½3°Ä'śņDDµ'`ŗ: ¼Ž 1hjøčh%oĒ»C;s ¶„. €\$|ķGŹ÷<Óąļ8:čķkŸŻj:ß~!4”xҚ ø  4“ Žņ×ZEä)OĮģŒä¹³Ż¹3ņ]Éс¾ŽĶŽg··$X,Źrü³hTKuł”mÜ@.2ķÕ[›Dä™Äģ))©cĶqēĪ›Z4`A$;ū”Œģśi¢D‹ˆźé²¶Tģ+YÕŪSŅ2XcNĄ0×U·§UDžOȚąI-^2Ē3}t\Z±>בéõG&7­ņvĆ8Öæ­ŁSZäŠ]„@ Ż „ķ"²*>½81µdéOįܢؔ³Ž Į@ng_·½1ŃÉńūŻ®ø²4_ļøŖ”Ą t€ §¹¢ėšś’}©·„¢ž\Ī£”UW—ē­«©ŒŪīėSŻ)é­cƒwļ °:ȑC×lķéLŖsʘ q‰žl„ūģÅžZZXņü|3귈ˆ°2: ]°.2Ė‘„Ö¦qe]ķ sŚ[’÷gåķ™ģŠk*qĘhG‚ū‘’ś#yozŅĒ”ķ¾óIĆp˜T ‰d 0’œ°€ąŁŠFÓūr ·.źķŽ­;\~é&æĻź÷6åīܱńЇcĢĘXÓ^¹Ł „ Z@.¶ £\‘¦ś Ūę.ŻüE_ߞ†ņ½7­1Ķ åŠŒ­™¹G§®ŽęśQ„T €–Īķp-Ś mĶÓjڽĪĆŸ«'1ić˜WeŖØØ²XmŃŹŅńkĆA#:mĪ#š8ćћL3Č;# iž8§bF»¹EO/V†ŻÜüźæ­©\¶-²…ūzsŪ åŠųūb{FåšŚī-Ŗ³Ś‚qłÅŽEY¹›'Pw@pę/FBčč”[^TŹ¢S3›³ē,łĖ's _ŗ“£}zÕĮ}yŅī ZßÜxÉ ‘°„ķŽ€“ʁ€3’œśĘhÓģ²+eŃ'~®,V3}T߄ÜĀƗY oœĆ٘ąp6¤,X¾ö G«wŲķžxŖĄÅé,»`iIIÆ.IĶŚ]$ā³øÅįģJ®­ŽŻÕܐT:Ł ŸĖ-Ü0Ļחć­./y&IōV•ŻōeąāĢg@“äŽ^9Ēīō¹»Ūlj Ÿøµl÷ŠÕ»6ŻńØŪćOoiˆ?čtõ%ĒÅ7z>»/¶„“ÖkUŌœVśØ ć­V_ÜŽmł{8œŁūīF„āCEć^™—–Õ=%2„„!óąĢ…›īDb‡®Ų Åų7QI@.6g°”Ö¦JMßX’_ŗØ¦ņŠŹ°½ļĀ‚ µSöõtفÄęęś{W?uß·ŚZęW(Q2i֎2s iĮ@`!B€ Tańsó“R[Jvlśųļ•ÄD?h___aŪ¶u7ž6ąw†DŁ¢«+’”üfnޘ= bc#ž„ā†Ė+öw¾.’ ² €\<śŁ ŃéšõÅw.æę”jł8‘a Yē/{öŽöVĻĮ¾nwKNį”…Éé”|‘ _|1®ö8揎Ćlnø|ÆźG‡{­ƒ–)—>~£;¹³81)’5[¬y£›’ķNs|GŒøŅ²ŹĒ©ÓJmq.0² ų8Œō¬ķEVk$¦©6i_ŁžŌ5„;> Zzß½_Jŗw åǹ¢ą£Ķ°!ā³*#1ԟżS2Ŗ'VģŸżJoĻø¦c'č³E#ƒĒ·7Ū㌠¹ūzb[Ø.Ī- gI)eqz’FŻō½å_O*ŠK’köcāÉ’\6ēņG?›[øjVf®źjOhģī,š’s4*ŚI:f“ŌżF]uÖ¶»—­å®ć\Ńp\I9 ÉE J\žÜQ“nłeŗ31.yü¼5_;ūźĻ,ųÄÜ«¶=æ³āś/_ż£½ėKŽżÖąļ·§ĪUźķ”D½µØ õÖõ;Ÿ«c?½}œČ±Ļc<¹t2s^Ÿ0fBƕV«X’RŹóŽTM)•Ż{Ŗ}möŗÄp0«»žČŒ½†Åńö,Y†%&Śx$ek^qĖmŠ™_\9’ĶM×>Ŗ$6ĢĄJwŜœ™w³ŲœĒ_Ų{ŗ;v•×¼ pZŹ÷§.YįÉ)‘%īō–M„oŽüŒÕ‘Ŗļ¦ĶvGńÄż×Y­bQ†aĪ^ņĻū¼MŁ;«Ė—nÖ:ž¤ļāöTg¶4¤÷hź3ŒwJ”2ōžwOuåĶÆ‰(-Ņßšń޼6\ńG<"RĻSĄj­ZļĻūXŲ×yCźŲ%© GR·ä—“^öīżü~W÷ټėĖiśÉŪµ‰%“Ė®}æš!"ŅÕįØß±į²æ…Ćc[dł„t(ļńņ€0Ōzšś”R’ū;ÆtŲ§­OĶzurlüÉŻ ”g5ąV˦ūl—.\yO‚;’ń~»˜Q­½I呈+4Pk*eÕŃhzŸČan> ēƒÖ:Ŗ”z!ųH{vAź¤I³šo8q»Åržež8)˜fŠpÅÖ»3²Ė‹ÓGÕMö¤ >č†E©Ųx²6sz~ķt€p>CˆˆČÖĖ?·ü7ž4OAV~hŠzk¹¼¢ź…ŽĘ#¾¾¼Ž3=ė;?{óÆxü³I©Į<‹„’sįęvĪj÷¾RY[}åŽżūšŒIĒŁc6g€ņźÆ_\ó—oÕ.?°ĶõĻ€Ļčq'‡rŠ'¬_z&ē±ø,†aŽžEqŽč-3Ü)”Qg>DD ‹©™cņļöwZŗź÷īęnƒ0 xĖÖ7>ńŻ-w­ł»ū'õ5 ;MSkOŗw†R­1ż=ĒØ)ł1Ó.ŪpsÉħ/·Ūy’RŪņ­VeÕZÄß'}Aæö‹ˆH?F—ø“{ ŻÉ;sĻęļ¢T=%}kŃń?›‘Ń“UEŻöǶq§q¶Xˆ`0^²”²,øńų…r]8š5W{vÖw­Łüąkż9~Å7ÆŗmęU æ³ŁĶxÆĘ'±Õzļo>ūüāł·Ī*)œ’v_gk_ϤyqWqt®PPöļ÷÷ŗšeo’Ģbi‹;åå+ķļhĖo4£ī 2lęńķG}Ā”YĻßÕ՞\U¾’֗Eki>šb{łK?ś‡Ö:Ā`x%"śl޹–}iéāŌģŲĖ*w6<—’ć.xõ‘õĻƒo/NxĻooüū˜i–[C~Õ›(IĒĒ§M-‡¦¬3,ÖH0`÷Uģ»ńU‘ÜŃÆĢČĢ9:==»ob4bŠÖ¢ūzķMž>§Wke†Cö¾ä“Īqm±‡wnüšc¢юš7ĀG·žłŃĪŗ=½ÜU@.Bć®›ßVß5,VĒ’ūݼ2»Ó8i‚”¶Ēį/ßū_JYß~įs'ķĪ;uóÕć_u{Ś3:ŪRœ®¾ųpČҦĶĢ«™f³F¾¾ø–ƒ{._§õõ¶TØŚm=Õrš Ä9c,€ŖlõĮ‘’+ĘęŌŽģ+oŸvāv_o|ż‰įCD$5ėĄ¤#Uć_k®_TŚ\/„""Z›J©cė•4Öɾ÷ö“Xšö=’*į…Ač#\ł+k«#¾»c‹ÖaŪ{vÖöŠ{>Šv8ĢØß’ąŽ—•š±eĢńĻ£!Ÿ„ißó{ėw=µ*c ŠpXł?Æü)oÜõw*”Z‹tµ[+Kg4ą=ĘU“”3ŗn‘Rį` ”§½„¤aźœĒo³ŁMgbRoaķ!÷ĪP(¦ŪŪ4§R›QÕ|ą„ś#[Z'ņ ļ6}Ÿzš–#"ʌʦø=;7Žš7­S|'ī“SøkZ\‚$ˆDeņĢ-wųśŽlĖČīKøöPŚz_Ÿ­ŪķiĻ7Ķ Ń~hKoŻöĒž×Z›Tœä²ūĢæźīŒkĆa­*²ęŻįCDÄf ½½IBR8+.1”u¤2ngeé‚}}%-""G… „ Ż^½u—æ«1@e1Š0ĀŻšŻk>zł™ĻŁŹn±ˆ%>”%ćŻūh3l¤dx'ō"h(ÉČīg·"JD”(Ćn*‹UĒøG¹©, 8ɬ;ēåM} 6A’DDĀ!©®˜»ėŻūOxž²„¤H–ˆH( üe»sŸi®-uĈkŹģw–ē‰ūŪcS’©. 8IīÄäū2rōäćnnˆßgX]ļY©Üp›ŃcĆ9£§|ļņ×µ6¢""‰žHfž˜u³OÜß“čVJń®ŽQJÉĮ“źB叄u“¹>v撐KIß{¦ß=øwÉ+Æüóšļ}ā‹ §Zm­±Aæ­ūų¢Ō‘ż¤ńĪÄĢ8qQe 4”Œ\«3ĒZU|©žč”½_A»Óu8YIĮwļeōŠNėóū^msč°;NéŪżĘO„ĆOų‹Ę7_1nZÅĶfŌļho›Pęė×bK•”āE"RE™A€Ä¦&:ā3ģ‡Ź'Æ%šµ¾ßžZG•ō±Ų¢1ZG CÅDµi‰t¶[Č[gw¶§GB1!«#.āņäg@@€ˆˆ$åĻ*°Ē&‡ū»æ'u_vl|$„»ÓŽ`Xb"""v_÷JÜ”}J&ļZšėH Õm¼ÕIßŸę”ŹhŒ”bSF)Ć¢ū„ŸŃč³öh3`QʱŁLK]uĮvư†E“:¾·-ĘMĮ€SĒ`dI-^TčĪ™1֕œŸ—^cuÄENwŒõ[D’䣝ÓÕ9«ęÄmZ›J)ćķ—Ćž¦2µė±OžAkĶ‚„0tĮ”¼ė‹Ča„”5}ĀņwΌYÉ£ē„Y ļŪ-˰ÄDµŽØ` µėŻŪN ""Žų4{bö4ˆ4Pm@ ""Z눈T*„ŖFMæm樷Ļv&d¼o7„¬:(ģ8Żym®¤P|zq6‰1 #œRʦ”Š‘xѦR†ÅrŚŠb† ѝö>Æ”‰Y¬ˆŽE ĄČö±Ėæó±ŲŌѱ†Õa±ÅøM«3ž“cA”a7Eģ”Óķgs%@@Ą1“V,Ÿ;ėFļ­± ń‡Ė.Y EΘŹųöÖIu11å©yEū.imÉ©źéŹņ†‚…ķ""±ńå©6›ĻŁÕQŠ¢µ;(rl“ĢW'ż©ķ†Å4zŗS; ‹·ĢŽsØCJ©•īÜq1žģt[\¼Ē ™ŖöĒ^¦ś8«ŠĢ,X#WŒ'Ė1ć–Ū˜µ¼ćĪŖ²Y/䍣µ0“<©=¢”®;ģ.=¾iI4¢õŚU÷|Ē“R‘5}ī¦ūmqD"–^oCÜA%GkKr•ß—Š „tń>eD•R¢ā⫳²ņź&:]Ń$»#”ŲŪmkŻųLį·?ņż_R}@.pysī¾ŅåÉ;i}«3>>)b¼Rń!Ćhsj5&ĪXs„µ„k Ė:Ś ĶØa*å™:¢D¬vg·3%½2··;­µÆ'«ćXKČŪK€ˆĶŽŸ?fė̱G—›ņ6yv×T££ujmGͶĄ¾§ųwgƒ.X#HlrAJźŲ„§Z 0$"bšÉ‘};īüē‰ķΆųI—üń®ŲųpJs]ĘĪŖƒK66Õ-ŽŖkƜ[<±źz»SĒT–f®.Ū½bµR±„ø87Ģ‚p3z÷ļ\śt]Mކüāŗ„Óē>ńQ­#ļ‰f4`){ųJ«ĶŒ©*Ķz©l÷-/Ą@ ą" ””CĮĀŽźņĀĶĶõ•fŌUŹŖE-¢|V‘¤ ˆeōŁjŹó^­=k4"‹åżćĮgƒˆÖUXņŌŅĆåK7Lš¹ķƱqfB4*QR ŠšUÓę<ö”ģüö9įšöoS\EŅйT 8›­1.+ÆmŽa1dģäŠė CŪ©  įPl(R>«U\®8Ó}¦ĒkM Ń BøØiɽ}¢ÅŖĪśÓ FĒ™ ą"–š±e̤KKļ²Z•…j`(Šp‘ŅfŲ(æįC‰€‹Œi”“½yEö,MÉš±Š9 8ZG•'uwnįŲ½ E+čé.rÅE=†Įą @p΁£Ēn³v:ĀįŲŠŲ)Æ-LĻj™—̲ŚNhNųē<̰1fāŹĖņŠj;œ·Öʓٔq,k8@Ą€é±MŸ÷Ō­Ł³M‹k¼ż/€€sć:āųüc'æ²dT~ć|WœŽ§* €`PŒ·öŖŗź¼=£ĒÕ_eXX Ó ©™Ż%9…»gļš”5÷żGæ@€D‹hĆp˜¾ž˜›żü/"HŪ  8„zģ±ń *]^цéq‰ŃT*]|bwUCāHåųŃ(ĆæAĄčźßŲÖ[N%@Ą r8ŹSf”ķžśB($A*QV[k¢+¶%½·ĖŽDE@Ą  ŠZ KŠ‘‘S?1.>Ģ`t@0x”²čöÖŁeń‰‘»SĒP@0Ø“™ŖŲ7ńym2 Muć«£Q ¦N vµ»Q @0ų/r†ŻÜ³mĮ?"amR @0čzŗĘ6·6Ē—R @0č”²čŹż3V› FOæ'i„‚1A!€€” Ęū¢Q‰P @0čĀ”ĢŽīŽ˜#T :„ ]SY¼Vkśa€!PW³p_G«³f/óQ¹MDŌ»žśĶJ F>„¬ŗ§3±Ę“Ś’?ˆ—łĖń“éķRRWeJsww€‹ŒiŖč`œ7–°·!qÆRb3,‘pw»ˆ·¦eÜÖēö”Õ塀WŚØ> Ćv h ‰jŻÜ°·|ß„/uwLŖ‘ėDdk{õ–ś}O=P&ß”ę €\““i Ō¹j»·V•ĪX×Ó5”Q”q|t{–ˆÜ$"}"ņąb ŚT†ŃāŠOź,ˆóüŲ»mł³Ńhzßū 1瀋•ÅŚ{Å ż±ĆyśW»€_õõv9ė#«ĻßējqÄō„Ų푸HŲÖg±Eœ‡LZ¦÷QY@š‘p²ÆµŃ½;-»w‚Ķ&¶SķcšZBAܼféõvOh:yė;ė‡h­•z§Ė@ĄÉ ĆaīÜüɇ’S·LŸæłS1.{āv_ÆŃõę–YīėJo ó;ß{†wśY)„ €ąōڼ3«×­õ£üām—8!—a ;#A»æŗręVæ/æƒ €gõV–ްŽJ`ø2(ŽC½Ļ¼ø   @@†!-ZS@€€€ž{wLĀ@0ų]DĆ„n? @ @ @ @ˆ   € € €€€€ @8—Ä@€@€@€0Tå @@€@€@€`YįNņF~MCžIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-11_dim.png0000664000175000017500000001131714632072346024751 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEܶźÉ_`IDATxŚķŻésU÷yĄńēÜ{µB¬’YÄbĢ"ƒc»±qb×%µėÄqŚ4鋶3Nū®}Ż™¾īŸŠi;™ö]2“8gó$™¤Ž—Ä6‹1‹Y%V !”åŽ{ś “\ ;IŸ3€®Ī=Ģ<šį;æsī9'łö?× FÉNõ’š?€Y%™ó—·pčžW3ĄT€€ €€š'¬@@@@@@@@@@@@@€ÉJ+@@@@@@@@@@@@@@@@€ŁŌĈˆˆ\)ugĪŽØ­īź=æĻČ() …̉” WĻżųņµŌņ€‰’Ļt%Łņ›N|š^óÖĖ}ņ0kŻ<×^טIK H19Zsā»}=—zŅBDņ¦zĢ^išü°ź[­5÷¾:ĘIōc•ēæwźX×å“įŌ9Ą¬OČŠĒß?[(! e§}b`|Ŗ½ēŠ»3¤gšŌ›†ĄH‡O|«/;f@ Ił©žƒo“÷÷Ś÷ĮĮCĆwrē$śĮž3Ćł¾kŻēÓ¼1pæ4’ŸWÕm\š¤#’Ļ^žx’^Ć`܄ę¾^ż­ÕUwa]ØM+“Äh_ļĄĮœOG¤¹ū‰]{žzĒ“IĪpOūå#ļä3#΁TęWU·l_²fĆ;‡Žøī€±ś‹É}W¢ēŠ«ē4üqåüx×xßׁŌZ6'UsŖœ`l£œóhØ|ķoæ2°µ"É­?pųF@ )&×Ė#ź£ņĢPG:|yĶ#¹ŖžīӝĄ˜éÉtu]=³’Ąšm_ܘ¤ĶåÕGv\iŖé¾Æ£ä|zżrēą¾ļG$Iyķ¹BDuE¤µ/žō’Ņ‚1š@@Ҥ³p¹ėĄ›]×n½¦Éėļg#­¬Hć¦x0F@Žž{żÜ¹‘/„iä#¢×pUe¹ÕUM/=ßÓßß}ģŠa3`|IljŪņtY!"“+4ē–]Ė>9ꆕ.ąN²;_ŲńÅÅwļĘ;ØułĮ{J‘$‘®XѼaOKĒ/搑Ń8÷¹—×.ĢŻ>;~ūSX éŸ~ūĖŻ}Ż••U 3å×{·gŹś×·V?¾ŽÅȈXŪ¼cOKYRüōėŪÉWTFc4Ž~µ¦˜“ÜpĒ9ś `¶Kb˶ķO-*Ž|-3ś¦™4WŒˆXš¬\op³<Ł/üɶ?ŗ7£Ž ė–幓rø?CF0«óQ¾ū•uõ§o‡+Ŗśŗź$cd(7œ©J“‹}'U]wżĀ±S†0{5Ķyįk­µ™bE\ģØZ|£§}_ćśy ‹«ę¤÷¤7÷ŽĮī3›žģžčĶ+7 `v[¹°ķ«+*“4¢¹²yCD¾žō#×.Šéƒ+ŪÓwóĀC`ķ²¶—›²#_ÉW×ÄŖˆHļ Hgžz±o0õD[bĆŖ¶—Žs5łˆ€t?üĮ± ź@ĖM[Ÿ]Po‹9{é“ F@ŪžhŪ9o‚ū±ß¹ätrģķ$ÓŅjp³<ÉĪēŚvĶ›šqwV Ł%Ėņ ēŒ`Vē#ūōž «ŹóoygR‘ßņų®/ ĻI’–ÅIĪfe>ŹwæŗqE)łøēȂ(j,üœÅuæw“XÖzī˜Sź³Ē¢š^m­ĶKŪśv@.WŅŗü•ü… 7Ž.LŠ«×Ėä`öX¹š‰Ū Žk({2W?4?% }ežźųUļĄSÆm˜·ą›‡ßŁ÷^ZL’Ķ+†N'Ąl±vŁ–—›³£}§¼°2 ŁČźį —ÖݼVW™¤‹‡+ž*–?>üüņ†Ęó “ć.*˜ 6¬n{qé˜ß-õY¹ˆ$ō,؉š[/ĢxfSDD ē–®_ž“0ćM|Ńąh2cėJįpĒČÆ«ē2ĄL“Äö'ŚvO>ć<$bqn݊¹gŻ1gŃÅ#½'ĻÜXóLķ{׻ӂq̘|$?·icu~*ļ' ×2µ­ {ęU“ō“>snGŁžõ+3Ćuń˜!łČ>µgĆŖŠüŌŽ=N@ź뛢?ś#*ņ+*«ŸXZHZŽ÷8Ą ÉGł³Æ¬ÆĻå§śžÆ9OŅśBDÄąU#˜ Õ¼šõÖy™āŌ÷0©›–¤Iæ”LĖģzueEņP—jL" żŁcgŪ;Ąt·ŗqūĖĶ}׃wPHz÷g®+˜ī]½ķÅśĻ`?™R6*&]¹½ķļž:*׬3z€élóęm{.…LÉ+žäŲGGŽļ鯚XėÓƅ8ņéėID]Ść‡0]$ŃöÄ֝óņz¾lMōN4¹Y±’ū÷FT×4Õ/Ŗźŗ6ā»ņ0}ņ‘ģŲ½ySuž”wŌ;Į $MŚĪŅŁ±hĒś[vVÕ~emmyõĄ4ĶGöÉ=Mł¢Įь“ĆæśļÖ=I”¢f×WåsQYł˜®ł(ö«ė—ęņŸå>G ȵŠįĢ©sW×=µ”¹błŁL}UMŅ•WLS‹jžuMķĆ\4XB@®fOœnw՟-Ø_¹ø®˜ÉG¬Žl.?°Š-¦©å v~mUeņ™_‡q_@«*ßśReÅÜ\¾,ÓwėµB_rēū®˜^V-Ūöņņģē±ē;¹œ\m\ܽyye>[ŒbŚ_õ ‘ÄĻ`Yßŗį„EńY߅źÖGŖrz‹ Ķkź*ĻgŅOC‘õX™ĄtŅwõ£ļ}ōYļtžs_®ŒČĻFł•dńąĀŽŹa£˜Y:.}öūlL#¢a{®6¹ši[R{3)éCŗaŃül¶*W“Æ4 &”üʅī£9s`’†zŽ$„Żī' €€ p›ńĢ2Iļ‡y’¢j˜„ŁņĊ-óāįR5C0 „iütżŃÖ/·Teź¹ĪĢB‡O’ļwöč}Øē„XĢĪuČP¼±qķźŻĶeS}V”Ą¬õŃŃ·æsąL’—V ³Xgņżk›Ö’Ńā)<­Ć `VKcļīž©¼S@˜@@@@@@@@@@@@@@@@@@īŹu\źŒ$I"‰ˆHīžžD·_Œøżż¤§ĻČf›BęüpZx ū~tõ’į0¶Į܇Ʒw<ƒ`"IšļĶ9¦D@@@@@@@@@@@@@@@@@@@@@@@@@ųœå–o|üfé›öļßoh³K’–7®-{ [¶Ö –¾“S}! ³LÕšī£¬@&·“Ōf”ņƒÆMöˆ‚ üŽ’ V Ųq €©­@`J)V ü¾āS ˆCXL% 0µ€8„ĄTā·Œr;÷öüšĄX›÷ōcäāGļ¾e0ŒĻIt@@˜‰F9‰Ž“ååG#"ŠÉ”7žl˜pWć×.ˆeITDDä3'*cY”E-Ńżcģ¢?.š#Ą¬3ī!¬4="bY¬Ö1·ŖŽ&słH"M£3ŅčŒöčg' Ń`’rÆćq%†ćPōŒ³Ķ‚Xi’rW]%œįHbi$f Ÿ*¦#NŸ/£~āŖ>¶˜%€€Œ\DóŸ%£1jFٲ,ź­Af„“Ä’ĪĒ;‰~ēĻ‹Qø½ńŲ£ß·!V˜:ĄōĻGŁö\’Z)ɍæŸ[|+£1""ś£Œ•ĘÜh1w€iƬfž#Ł\š$^!^Ņ­LŅč,a«śØ3y€i.õĆ’šŪ“j÷Ä[ސ$½ÓŸSquĀ]-е&0ķe Ł\õ¢‰·Ė·īøėL¼ó'lŃŅHÜ `š»|ä—’:xmāTćo1¢ēbpĀ5Äc&0Ķ%épw¦PĀJ„Ō~&ܦ"}˜`–˜ąfŠ##%žjˆåf ÷ś$.OøMmźK:įĄ‚į®OҁžĮkĆķļ¤iĒ=«zŚļݦÄ[™Üu,‰§cy|gĒ|ē‚Xķē0mœųłĀo6ÜwNüŠw‹I¶1tõųO"Ī^ŗ’]%<‘š^£3:ćüׄ8‘0}œī9ņ˹ū× ·ņ1¶Ģä’”3q6öĒĄøŪ,6?€i楔£‡ “,BÉ7S¼ėH wÅŹEƒ5Ą4ņ›ŸŸø:¹wLśÖ­GÜ'ÜqµŸĄ4’ę¼Ń9©'rd""ŠI>3ŚÆ±Ö‡ā’YĢ0§.łu¶ōķsĒūŚßķ›—»FӍx6–š5Ą ³’ĄÜę-«2%®Cr饔ƓģT¬ˆ¹w¾*ʔĪĘš%ägó¾½ŗ¦“­§ų’~ūˆé…ŲŪ£`ņÓ?!ĆGßøTāg ¦4.Äšķæ'Q¦0#ļ<ņÖĶ’ns5å#Oūļܬ$oÅŪ‘5u€aļ‡GOKX…L9 i\q™ˆk>fŠ4ö’¤żęēˆcŃmĪ3ŠÕĮ£?ŗ2įŹą!rÉwfØ£ēŽ¾78Į¹‰ÜĆügby”G:źÆ>ó˜ĘŽ’ķܦǖ%éēOb8²Qˆ4ņQŒĮ(ÄĶø{SłŌü¦­4ūƼæj©ųœ"3WļĄśŸĢ{„nĢ›ŗ€€1ī8ņ»”¬€0iæ{ē“óiŌ45<. LBšxćģpļ…žŽłŪĖ–%»Ōwōg½1pńźūĆ]Ą$||ņČŽįQĪ„xļƒėĄgE@~Ļ©Ø™WiL: -Ožł’jĆ`’I¢uīŽæhœkL* I¬®ŽśęZ`R‰ˆXUÕö–FĄ$±¢¢ķµG “ HDKŁÖÆÆ®7&ˆęܖƮn4&ˆeٶWÖ,7&ˆĘLŪĖk1&ˆśŲöŅ£­ĘĄ$±$m{qĆ:`’‰X”¶=’ŲcFĄ$±0ŻśÜĘ͆Ą$QWÜśĢ¦ķĘĄżrm0æøõÉgšŅĮ“P, 7{÷~`h”ˆŚāęęO’~Ŗ?€šDB@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@€qż?zxz!š(KIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_1_dim.png0000664000175000017500000002371314632072346024616 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ. s{1¼ IDATxŚķŻy|Tõ½’ńĻ™3k֙ÉdOH\P×*Zƽjµ‹¶Zn­]ī­¶ŚŖµŽ{µĖm«­b«W[­Z•«½n(nˆ‚ HYHB֙l³Ļœóū#Ȓ āćfĪėłfęœ3>Ž3Ē÷łžUŃ€ˆČ²åÅę[ĀĪę·V’#ŒĆD @( @€P P @( @€P P €“ĶLĄÉ¢'O/;±%Äb5{t$A3Ķ]zį‰-”5VS'1’„šoQ5õD—¤‘&Ęށ'@·¤OŒ«‘ށæā¦“ÅŖ©q;ɀpqµ`‰93ļĢü š==n±gėŹä+ŹoIÉwM>/ū I±véJ”=×ų#¢™•ø¢‹øfd”¹Št[ž“iĪ×cš&•§„ZŌ¼Y¹s)"1ĶßéŃuouķ;¦#vLé6×t“-ę·‡ŪHˆ£ “iąŒ(‡ŁļŃŌS®w›”¶ķ¾ķł3ņf[m""ŖY]Źæ®iŪÄó¬Z¦ōɱgķyēØG| ēZSĢ‘=yźuå•ÅUŃ»«»÷”,Śżš%¹šlUDJ–n~¼½B–MéiŒÄ-iz“`žÓõŁe„‚mŸTæuōqʐĄ2'Ļø>É1kY,ā­mü8ŅwŚMŽä”Āwī t„fˆōµŚ2ņfl{*Ņ3?ētŔY¤*G_ō ģ#IP €Į„:¬–€Ļd¶§ę”eNkŽ*ŠH²kā\ļ®Ōy"ö“é—ŖVgQ{wĖ–}ė“]™‰…£¦ņÆXL"ŻĶ[ĶÖ¶*ź`@ĮÖźüe_Q• ³ED)½¤junŲjs¤ŠčR¼8÷Ō®źH0ŠŃüńĄ\¶8sSū®˜ŸA†¤+öLÆ7³4I>üU±%—- õX³ź$c¢LĢ.ļėiłHut7(1‘`k°õ«YjĘĢP@ ōµH?Ł"qpp š2ż‹)kŠ;ūÓWzš{};W‰˜m¶ŌƧTŌׄ3op–k9¹Kō$]Ūæ±§Ā·—ś# į©ZÕ3„_Ŗz5-æ`^jŖŖˆ4ҰnŚ•¾¦ś'/µ8¶¼"”®ź=oź©9„žIS/ėŖŖ}żČå4æ£č"qæIDĢÜ㠌@#uly$Õķļšn%®ūZ:wK reĖ'éžp$<0Æ¶āĻżŻ»ié„1»źŌ>³N™4NŁEāā× °lyńQ#ņøjҬnsšÅīĢHĶĖ>Ćj;t¶n$ܼy×3""ńäi_Ģžh¶›,ŗ²å‘īšŃ’74Ē_|Tg¤‚q‚]XĄ ŌøH“«°¼ōrE4éi'i”~oī,U©}eļĆ Õæēœ7§fˆhzŃ<[²IŻ_)Ņ^ó&æ7ŠcreMMu9Ņ<„£HąŠ=®ÜE® "ŗ˜”¼99söāļī­%7P €į»§žīH‹…õøXm.›M$ŲŪšnĖ–ƒ«‘3~óG”īØZvq$ŲšNķ›ģ@DLzÓ»³n²':ž±ēÕ¦u‡Žuo[!"’?ėćū¶[b ‘0Ą[³ś§yӋGüIžōÜīÖ}›UĶkE,„ćlZ0¬m­hūÖ ĒMŽ,]šÖ*a(`Ų”š¶?Õ½į«óļFįäÅß#Ń7«ˆĮ—V·ŖnÕŠÓéJ¼Oåz00ⱊ®÷‘((ĄÉĀ1ą¤i‰öūNl }1ŃČ`8Żķo­$»°€Ę]ѹķ(#—YnĻ"сQėÜL` @€€P @((£s«dP ĄyŌļ,’öKn~ÉĄēŽ»ńbœ[zQkÅÓ’ķż?ń$qž Gžyõ’ʉ’>’ y‘o€aŃģ¦PܪгŲdłx-y€0 īÓ-Z4©mSŃā¶OŅ˲§;Üņ(©Ą88ōŒvė+ݚš=OL„KƒÅKJĪT­Ž$R#ƒŠĶy§÷4¹NUY“L6«ī,Ī,␢ąŲ45ŁlĖž;mY_ØĆšz BĮŒäŽŽp_ęDņ±° ¶øiāUfGL5'W½”źÓ³<éÉSj²·sŻ/ī<µa§ń‚pÅ1įĀŅ«…–Ģœ™n5Ł™uč=—gźu§e?|Žī §Ķ™*"āt»¬d†DĒ.,`X“xg‡'ŻUhZh˜¬k‡6)ž{ŻĘO}ņ䙞ģ<Ł(rĶ_…T“|³J'@DD–-/>Ž•=Ƽ?ä)éŲŖ$÷¶M½Ü”&妻Žž,oŚpĒEŽ^²P "’RiŻ‘n1+ī’ó–ä,Oįń—ҲóéÅo·“&Œ€]XĄśš•€ˆ"©žs²§:ƒ)wø·ō“ŒƒčĄPĆōĄĄ?ķŁI)‘ī”N“ŅåÜ2ąÓZPSsϊEӋ†š2-+kyĮŲ… Ķ^zqvyšS—”/ō0›&_=se%™ĶT0/ļŒ4§Čš®Ģ9³ŁBj @HRnŽ<{ņš§ßło”Ō@†§dø'õ·ōŽąÄܼs²XÆ`å.)^ž=¼iC-dvdĪ9ó"åM=Fv @ĆŅm¦¤ŒiĆ­īꬕžÅķĖ~Iꌏ¶× (Ą ”pjkj\W‡qō¼uOõ ž]TI ONS—*µŗF† @ĆŃLŠŻ™ŸuŽ¢™†Qŗų¶ł[ż½[»;Iø&`<&[ZIžā‚RuXēīv6ģ]sčČyĢŌŪģŻć ’"(Ą€R²ĶŗĶ¬óQ®‚ÜŁm›?­ŖżėVźq2Pī9§|IULĆ~Ā`ĒŽ¶ŖÓe·÷]źĘ§p¤¤āé’ ķÆ ó øæ·āi Šˆxm›Ū·®ä^0 ĒRduš'\“īJ󘇱7¾ßšį@}4†kŖv¼­óP €įź£0}BęG²bŪæ=ř1aØé£ńŗ·«W«!‘ 9®(¦ęŹķļ‘"(Ą`.8%ĆćpeL-œ„ŠHVįąSk Ś×?ŖõŖŗˆHDv×µlhl#GP €Į¤›xń\³MWŌaMÆH[uĆ*½ēÓ£ģż‘śÕūūČ`(nĖ܋~væĖ¦ūŻžįĪÓµ·łŻ¾ĘC­\4 0›rÕłW\~Ę„Ły Ē5üłŗvłöž·'#7[ZÉ`7\Px§Ē)1ŃFR"#Žv(q+‘‚įp moWŃäüÉķI#™«Æ£}÷g_IĶ#MP €Ø°&“9÷"þwn M µ*q†Ć.,Ś®X×nKT$Œh¹¹ÖaīĘ2Y|EWz½¤ 0l%i‚Ó•”&¢Ė°o|%V§’¢ł•Ć®8š|~EøĘĀ.,Ś„b’~Å𷓌d®ō¬…?™żuk†ˆH©GQõ9,¼jf‰ĀHŌ»ÉöN–f §Šž‘kQG2ŸÅššćšŌ^ķ‰ö(ŁbŅÓāéĪnė7ŖČŒ@Cxv}—ŽY“Qh?ā$ÜX¼kßPóŗ §_-rŠ¹äĄ¼Žx2°…”p ē™4įLĖQR½-Zdšłtém«yUD‘”čĮ½Bž`e0ūk6üG[ć‘åékßņ6g<ŗæ¶æ…Į0(_“ą7·<9p8üąč£½ęömIv/<Ž|]¾ŗ=/©Ÿ9ķŖĖŚį'QP €a̟4żüä”Ćź£uŪ“}Ķ""Į®cĻŃÓßüNŪÖ`§Ŗ¹2YUņ„”FšDc{vós jVwwŠˆhŅŗsŻoźC¤cw[ż±ęvŌ½źPŽŗčcóĪŗ ä F €ü½B–~ēkóS¦¶oö֚ƒķźĢo½„÷:f5vØ=«Ō™&Ļ‘'(ĄP|BžX¶¼ųĄCŠ[Ja÷^U ¶jŗéØ3«Ā>M9åŖ@ įµO_™\ZĆ>’„‘° 8‚¦žö­ņuE$ŌŁ¶åč÷£{FĮ¹žśCÆīh~įŃ ‘•}†’ž;ĶYŅŗIÕDLŚŽ·³O5ęŠø.ŽV{QØ!Ō·ēĶŽŖƒ“µ4nŠĆäF €QĒ)I“ćń”L‹©§qą y’¾]+ćńƧ‰k)“ƒ­"J¤öµCŅwU×±ū `\NõäĢ^fKÉ?gŅeÆ5Uų?s£öś5į}JXDŃMo\WzunÅ ĆapjĪ(V±Šųö¶o×Q<„I%)™""±h˦XƦ֭‰t¹Ż„ˆÕFz @ėėˆ†­v]¼Ķõo…ūsꦕdvל;S="•϶|2pśīŃĆv“ž”Nz0va…}}-"žö=S®p—N8sŅŁvēž·Ū*Ā‘īf]7 ²“JēI `™żµøÆ.ļB÷”ŗU±h4 ķ~„źu5¦č9 Z֛¢Ē(„%ŻźSŽ‚€ ,jŅtÕnĖXūg‹­ti—æŻn‹†—·|¬8K·x&„fõ“łv‹t˜7lI (Aź`h]›:ēfM™tzēʰ·f•тęTM›rń®ĶńŪ–čźŌK³ē$»éķXóKŃĆÅ=»_é „'«š˜Å–ßYIŒ @ć1ŁT‹Hzīł÷ōvV¬HryĪ)<7iÜbsÅ;5kĪTWqziFńĄ“i™KķwøD‰Ec”xXtÕn²ģxbęr*Ę 0īDDܖł·©ī yē»'¦¦ŠDþz÷D³EDD—=;jg/Kr ½œPš¾‰[É`Īōł…ž¢ņĪißisęN -¶#r«‹ß—ģŽk×Üöļ*( ŃWłį÷ĪŗĖįŌ杭9łŗˆœųcĶėV/_J²0ށĄĄę?°ĀßgKREԜü“Q""¶’$øņ‹f\ŚU§œŌĖi[wmż9ÉĀø†U”2ó»ŠxJĢ'q3J—Ö­¾N¶ @€–¬\÷»ĢSNöR9åźœ"Ņ$,—õ«w٧Åb'Éńp8@¾0ށĄ`²Lɞ//šė©yšfƒ›°Ū ¾/ß%g§ńĀ`#?ÆÜjSĘš3z}’5{]#YƒX[LIٳlcüš§øī±“4( ”Ģ”Æ_oÓß¼. ė’zå‡ÜŹĘŲ cŪYڶ”Q$Ż|ėO‹ÆČœf±Žå§Õ­»ćŗŻWu’ó ic¼k)¦?0uM ™Ć(Ų……·ö¶7]ö“.ŗfó“Ö¾ā™B€ĘÆK§ĢųBҤ¬ŁoüKRŚūµW·¹såsøęI“M÷®z‰ōaģĀBĀq»īŪ\\¬ˆH(d±…ƒö¤ĻēzŁ^ߟē¾ÉųĀ•čH8^_Ó¦³ŪU%)é󶑧¹nüą_#»°€^½1“Ö3©ųŖŌ,³śł}j$\’zĆj҇q° ėāāŒIó~—Wfū\† ŗ¬½ē¾»I ®Y|ķ›¶ĻeœŻQ{ė,/·Q„”p  ­£¢³źóųœhtćĻ©P @yŪ÷Üļ=>·m?¼<¼Ķ;žžŪS¤ H(o¶~ņ×`ω,A—ų ļ‡zŽłŃķ_ļŌȐ`¼Õķ£7ėŖÆxbżŠų  S=ēŽ›a!gP @Āń¤; ‚ĮŃĶŪß¹ž­›ć=ŗTÆ÷÷oŖĢ‰’¹īkg’4( ĮLœģL5ņ¼)™Ī‘¾ęŹZ+ėß;ŽTŠäŸęü‚ŪāN#m "į9 ± ó‚ĀPŠ—V |`a°ĒW§ŠIoż@K‰uåįŹ=Ž–Ų’;ŹÆóõĪ<Ʋ›ÄA "cęp`ņÆ’} ĶYR|nN¹IIqOZø÷=“.bꆛ*“=Öćķ0›²'Åv6É0Ž<4Ė|åź×ŽŁ#2=c{cwäš÷lŹļO?ö\Śgöąz›Z*ŗ¶[飻uÆ¢ęž*"¢Č“+=Ó¶’OØUÄmxĆ®O¼@=nµ¼é ómĄ8øćÜ™¦;©<EE7ŪżÖXŸM:\^ß’ū'ļ»oÆ’ĄÜ1ķ‹%‹D,ö-öwš¾ą98ŠQڵ]Łž·@@;bæėŕ·ń€ʉöšp×ČēņĢ÷ó·ļ**^ä*‰uō7oxpÅĮ׋O’¦öDus iż{÷¶T|vn=©Yåq° ć\v”9#·6V[ę,Ž’æué«=ö­G¢aMļ®ų÷°·ā©XØš¬æ2§.¼ÓW¶Tų¼Æų·>ķ-:×tp_ÖĢĖų,ē;Œ jh{ٳĶ­Œg™¾_P~ŁŠst·nżķŠßžš˜ļõ44®ķŖ=ųg¤ņ¹PoÉł„JJKšÓ÷n8l­ū`Ā9X &ÅYĘ7ćą,,$ˆ™ņO˜ó Ė Wœ‡C-ķoĒæŲt¬w—-/²ˆäĻuøö¼qųŠaĶHĖ›x~Ęāæbńöm-ŚwLį™yĘ7^×dßŗPū;wæ\ĮwF ĄøR),¼>tY÷šž`°)Ü„“.q+¦¶ķżū½éźģźi<åK®Iö$³šWžS޾½ęÕžf‘$ēĄ’?|²õłßņEn勀p Āe±e >EÕŹ?’xš)¼µŖI5‰ØGmXE{6?VńųĄa“HxĖ_„|yę ‘Pæ."µ•?żó«¾ß(`<²&ē övKåÆļzżM“oŠĀÖ“H“ĖlϜ•äŁńævēžUZļ§sÄl“L¼x÷ ĶėŽ÷łÕŠ·¹öN?ß(`ŗóy’&Ҽ©ž„?>*"ńss×ķŹŠU~:ΰ\wÕ¤/8rmYvwzž"Šˆhz /9ķčóczŻ[{Žøŗ#f5EMƒ®0[j׼Ʒć`ČßīɘŖŲ~~™7ś‹>)ÄmŗģŌ_?]vä‰Z&%%ķXK õģ~ż³·†×Ģę!oUb³ó€0n„+=GüØŻöļ’2’\G¦+wųKŃ„žż’sų%Yr÷ŌĪę·Vņ €0N}¶>²L³‹ļśĆ”‹”‘nYIŃĀĘu‡_ļ”st @`$ēLæüÕ¼ £™³·©æ;żƒa AB{i{ķØ.éŁæõƦłŒ@``ż ŗŒt–æ{ķÆM<Ż`c‹é#?Q$É9õ"ףš…ōF 0°ę*M7p¢Čä%EńZēĪ÷AĄ >Ŗhß5šł,ꔋ÷×ļhŁėÆé¬ xUm°§(>ėžŽŻķ=Qņ# a“k7ÜzĶ›ź(ęŌt·ļÉ·DD“#yö܌)¹Ē1ŽŒų”]Ū6n–~]Sņ†‘p!!–Ūž£_§NŽöź®iēü’ģ­Õk¾·ņĶīĆn«˜Ī¼ą¬Ņ#§ó›×­Ś±““ĮH˜ņų×ļŸ]pśh‡õžZ¶¶õńϼ¦kłŻÓGģ¦źļä!R0(ށ 1Å –Žŗ>4©ųÕŚÖ£_oi­|Ʀ§.Ō©Ę®9éźä<ā# A8ķ·žŌī8‘ķŖœYņüŃÆė"›e³"’<{ZNY‘Ē ifÄaLAĀłŁŻe·8sF<[—Ö]æ›[Ń;ÄŖ£œqvÉiVsõʏג9(`œK·&„ł+ ~qb·UÆzėŽ+½ĆŗubJ’jéé!wP Ą8ęVær}ZŁäkÓ²lö=—6xzīóŪÉ Ē@¾|ŚżęžjVOĪŅģI3®•;H @šīøóŖ%„žĢ%¦“*04NćÅø7éK'·>DĀ¤ P Ą(¤L!€F3é"€Ō½ģ?¹Kōķ"U€Üū³gŌ­ÕNāéå¤ P 0„æWܱčŻļvļ?9Kkݹńgd P 0oü—ż±|ūsѓšH'›³«›D”q%:ŹĶ—,zÄ]x¢K©^õ§‹*  @`, 3®|¬ō2õ„ĘÖż=7zūČ @`03åĀ›ĻüEZę藠ˆmļ’ć&i ęņĀ Ÿ,Ydõ}uŃ%Ųūń¼ūĪõ$ų8ÄžorƒÕzr— ī}uĶ/ķ&_P @BūÖĪśMv©r’—ōļ}õ½;’·†|A ,Ćž½_ϾÉb;ŁĖ ųk^|ėŽÕM$ HX3å¦US/PĘ`Éż=ÕĻ>wĒVž# HTnėOž)<7Ż3ĖīnßłŲC÷zƒ¤ H̟¼”»Æø­čņģi'Łŗt5lūÆ÷DȐ žķGēß?6KÖ„~ÓOęūBdŒÄĒó@`HńpĆŚĶOĘĒd„“9Q1“0 ,?EÓXüŸ¾ßwóo?ł‚°’łõ0v40Ŗį×P Ąh¤'+„P ĄČO£@ …Sæ9?]āō ‚Ćˆ0”4«j«bžāOłŁóOžņ›+w<ä«ng Hnõŗ/ĘÕßߛāQmŖĶl‹į·.æy”¬a\HƒČÉY±ĻbŪ}¶ æ>m wä…ap 韌5Ö?÷¶ Ō( įx£÷zĒņ|­/’?r$ ß?ūņMĮ1<¼mNŽOČ @€ÄÆź¬ŅD“eė²ę?ŗ|d #Qļ&Ę;–üÕ¶]ueL<łĖV¤ą¬"ėāwIŒ@€„ä žńYß¶±9÷0)9g1 ƒŌ•“®_äœ>V—Ч—\1™Œa\łÖ’sŸHĻWĒšv>÷ƒkČŒ@€„S~·{LėC$£|Y!9ƒNĖŪA’Ų~Bö” ŸrŖ$ H0÷ÜUóüXFтKĻ&iP @Āé©ė£~š ‘3( į<ōP’_ģēklķw'‘4( ŃÄ⑱ż€Ģ’ŪŖnł…;ØA‰%®ÅĒöQež÷ių—k @Ōøū>EҜ巹9 8t‹Éņł|Rž¬_U,_Jā @€”˜DŃ%ÖĘvÕRņf,śŪœČ‰‹g¢ĆP¼ļüʓŚēöÖoĪt]9ė6ūŲ}ZšēŒoŗź’;tƒŒ{aĮȾs˼ūéc·|Mš6=uįt‹„Ä.,Ś{+6>Ŗō­(]D‚ž=«;t=sĘLŽ„ A± †V)·īE$®+Š"ŃX_«»ąDnöŽßkqtģÜū7sŠoۃ/øÕE³ƒŻõ~rFbb Ī­žąĮģ%õėŚßs™¦twĢ\–=s“ĖźŚwϜŒ-5^\A†®ōč"Ėn.¶‰¤ø§MZbÕĶHŗŪ6’W×ÖĒŽ QĒ@é9ø5a‘b®{§æutĖqfOøŌį$OP €µļčiPµ¶M£›[—®–÷Ÿ%EP €Įx~UĶ@œPIDAT%ŌaŅEŅņF·E&ž>ļŠd…,A†²öéÖĄĄæŁFyeH8ī-¾ĪšL– @CŃ Ń,vĻč–°ėłŸ~ū—|żd 0\‡ˆˆ/HŹŻģł‹§ę"(Ą°Ҽ}“צ{ ĪŗA†•Q¢ś”S“ÆqYI`ŠHötuŌĻ É}ĖOˆ`8ŠˆØ®Ģ2óØ× -–}žŪA’0n¦C+Ÿ±ųŠ®ö¦ęæ<‘©—ČBĢę¬āK¦É’…Øw“ l敗ž¦pvxW¶+Ė•åJ1‰„śŻÓ¬'P!I链ły÷¢Õd F @B«ilŚŌUßqš“u‘޽Żõ)³G³¬HøqÅ‘VÜśaÉĀø/Œ½˜¼üĘb›ˆˆ#gĪ7ÓFx%HĄßӍŻ>ßŪė¶{Cä 0”Ū¹‹ˆ¤–œq³m7$ ųŸ\ųŃV]éäéē0ĪĀŽŅW·ńįŠnH²’Ɨ7uÄØP ¤Æ±ņéŲ°/' ·’(tīŲł\,6ōtŗýķä ĄAĶėkž1œyłŪææ“@8ĢŽ;j‡^… ¼YpųźķŚ:ōTŽ4’ą­Õ^ÆÆk°)ś|ūøźÅ•čĄ ‚VIÉlŠ=ü:9€#EŖWžx©¢Ėn¼ōĘÓ Fĕ襇®D?œfš{ś ŖÕE“ź·¢õš¼ųć]¤#a0ų ]kݐ~ł Ū`¢JŁR‘Øöę/…±Ö"W÷a`·5QōœL²ą0ńPøgƒy5wYp˜ g;ó‡žJ“ż;Č €ĆōīęŹd#+P Ó½Ææc8«Ņ‚’t[H €C+I¬ńŻįœīž7{n)ip˜śz‡ńďhŲoq»¾ŗäęė‰Ąøz;K‹ōHĪPSY­ßzĶžnK …^xEx:!("šbMĘŹdvē‰ˆh‰“ ±iEĄPRr’³F0¹Bb`@Dœ§’³y›Z!ŸDH `xjŹ)צegŹęmčŗŖś¼`ŚeĆ«‘Īõ·’?ņ‚‘p Dܔ^ĀŚš“FLMJĪī“ ćyP >•Y¤ūœ*N¾ą ¼Ó†_  Ą‹Ė=m“ó|hP dL°§ js ‰ ""įŠH¦.ŗč¦óČ ±9F2µ#墿ėRƒqpā!p\ö“‘MŸš±ōļ?ŗKQŻ„Q’Ę_n AP €AE#™Z—h,<ė>Grw›ÆŖ`±ōŲćķåæzäÓæfJ%aĀ8ˆ ¢æ©į‘ĪC}€ "{Ž÷÷’@#¬_Ŏ^€F”ī㐟 15Ҷ™ …ź7ݤP ĄˆÅūj_?Žq]¢#"ưo½krĮĒz'&_-S|J÷Æ Œ@MŃ×÷\,_W[g˜Œ@8&GŚq8ČY¾ @_ß®=¤ ĄˆMōœ2…@±äxŹ$å3·RTÅN.0ī…ŒRĘōé“V×v(’īÉõ˜dÉ鑰00ˆ ©» żéŖÕżĘGžēē[æē÷übΜ9SQšĘe$¤’øąVŠĖ9XZ­f£zł’ \›D€D€€ €ˆ"@"@@€@€D€€ € @ @D€D€€ € @D€D€€ @ @D€ ˆˆ"@D€D€€ €±³@€  ˆˆ"@@€@€  ˆ"@"@@€@€  € @ @@€ 7 ‰s„ZõMķ®yRĪ ˜˜˜{¢ŖÕkÓo@»g–Ķiūō¢éńyŸ„.„Bä“r“s_šŸą÷šĶzÖnž)ŽĖ9XŒ†¤„NF’µ}zQzÖ)­oŌµAƒĪ#ŚG?·Wš^;ČY :=“;åµ9AH4OŹtž®WĮeWõŚōo×ŗ8ÆĖų ŗMzµØW֞²¦ń¹½³ß?{Ö„ē~鑹»4.÷`I4q9J«ÕlTĻĪ€* uŪōkŃqԚÜ^Yļˆ#WE¢A2:iÕ·pZ× [ R#§ .×".ē €Ŗ Į%T—{¬żˆ߉…¤‚/ĀOv;ŗõ€āŃ퇯˜\Vu£į!@ ŠH0÷¢n›~ŻŖ=Ö žež»÷‰öƒŪ“L;69ōUŃ͆†€* {NJlžœ;.÷]īł†]Ē“k?bÅŌą«ŽŁūĆ y‡ĀČ ©Ł¤{óGź¶Ŗy…Ń‘‡»MŽ~vä£ū“ł :•줂£!ä†.ĮŠŖvÉc÷µH3øĆČUY s>ōČx«¤i|fØõ€Čܞ3Ž-¹™ ēŖv€Ü{ńßuZ§6ź8z]vrŃń¢`5ó6CFźµķ?¤~Ē”Żk6鎩WÖ{Å.ĮrCŖ×iQ+ˆ‡jŌ{ų©Aeé=3wŸ½äŖwöūŏ7īÖ²a—Q]kŌoŪų¾«×nŌ=}Jé»LBrS£ ÷Õļ8,¶WÖ{ęv¤DN6KČR§Ur'cĒl–˜܂×]°@€Ü°śŸiŻ~Ċģ`Eņļ­Xž’yøUæPAƙūŠŹ{އ€* Mć2zLßUVQq!@@€|'@ne|ØĀ—ūA$aĪįˆb ˆˆ"@ ¼NäcbŖEUæCøS5ģ:ŗK—ō­Eݧ½ŗŻu³!ķGÜy£1{MŽļż~čVŸg_«ž3Ž ¤†€;,>š%Ī원wč;ńŃŽĒórv8bå««o§š0’ƒł9»" (]»V€Ą MzMIź>õļœļNeŃ;1žLÉG™æźSrØäVŸ÷-ż¬xöī¢ĻŠöglWĮžĢŸ øC=Ś Cķ§•¦'ĢłōģHČĄ…ūęļÉ;±ö›q’¾ģDś?Wt„Œ\żņŗ9ļĪ=6`Įžżę˜?dɛĖ/~>}óźW6|;žĢ’c“Ÿægī±”‹–o pg†ÜÓ óˆ.]Ęo™9U˜žŖØģŠ“ß,śbāN|¹ģ¹qÉgÅEūs~:mŪāŻW;‡īSüE$}óŖWś–*¾|ۚhl,<÷Ü邱36FcöŪyĒōūÕ?Iūׁ ö,¾šŽ’#Źo…?»ž…Ķꀡ]äĮGźTo‘’÷LļœEA„$‡]é¼xŌź-ĻÆ’yŚ™…G¦ü6ˆ–A‹Ž]2n憗R"_^śŚœ‘‚ČķŸž×ė¾Iūć‚³ļłŗ0%r²pŲsŪÖLß¶šäšŃpĮŽÜÓóOżMjń‘ˆIč€*¢^›ž-:ŽZ339ōÕ$ˆ‡)[ŸŻ9bå«k‚‘Œy‡§żM$cÖmzįŅ׎Yūā¦y‡§’ĒńĻ?·#śŗßĢz»ąČå?÷tĮåF€īžĖ²h–8³ĻĢwŠ®å<9sǼ}„Ÿdžŗ’¼ƒóšµ‘S…nĆ+@ą²j·LjŲnŲ³Ó“ ކ¬"@ 2FCīkŅ{Zbģ”× ˆ€JQ³YĻŚmĻ›€’^YļEķ9Æōœ½ēĢÜ[vξŅ@ļ™ūŹĪŹ~’ öŸWzV΁ą`i·‰Ūę Ø:£!÷D=v’!÷?T£ęÅzō‰Z«^»iķ‹Ū @€Ź"D€D€€ €ˆ"@"@@€@€D€€ € @ @D€D€€ € @D€D€€ @ @D€ ˆˆ"@D€D€€ €±³@€  7 ×lT×Ī"@@€@€ ø†ižƒ[öÉŌ2uīĄ©s\’׿EŹģ~čėśž“Ū§yRNj YbvŹ93“ĻJ˜‘Ō4>3ńœŒ„čėĒ øĖ£"&澆]GwiŌ==öjbzĶxÆäVG‚€;:@ŖĒN}=œ>Yx5øéé>ķĶŠµœŸ @€  ˆ"@"@@€@€ ˆˆ"@"@@€ D€Ą] ¼·xʎüĆH„Œ€$‡Ž]ųŅōMĖw¤  ~ ÖČU/mxzé»Koi,@ *ĢéSśQŁ …/­ÉŻ5ótJäd”Rį! .Ēś2œ>Q$@@€Tø9ļĢ=¶ųĖI’eȒŻĖ UņńŒ_nų6ķLŽ;³æ @*TęŽ²}“_ZöFJäXX€€¹K" @wL€ŒŪ°iKųƒģo†.{s¹*4@ öĶžzć/ƟÉz­ģ}Th€ ^¼wńōWķīWöi‰Ģ pHŪ”‹gu³~fEč2~Kž€»>@n?bE(vņŽ¢«©Š iŸ‘ @ JDȃפbdF¢.„JE~x³„¬$TN€$f  r¤yRN²*'@’sSP)Ņ"evŖ*)@ņś r$uN_TJ€“ģ“ß_€øĖ¤oį€Ū"@j5©cgĄ] ­ś… @€wW€“ī @%Ȁā!ø®iŠyD‹¦ń™)×«ĶąłÓp]Ņz@ɰ[ŖH€“²`¤*%@Ś [:N€• 퇯˜ @€J £ÖL @„HƒNĆ;4ī1±÷ybÓāb§¼jŁ· ćāĒoT³„¬Ń)į“…Č÷ßs·‰Ūņ»¤æ”żż›ŻˆŖ×z$vņväŠR\x,ŌØ{zlylH«~E#ĖȤWĪžą·¾|Zōļ{nvCj5ėŻØw΁°ri€

@ār? ×n™Ųų¦7$1ķ†-"@@€\&@^½p’’ŌĄ’‘å±1 »ŒźšTp4$@@€|7@&’9@ŗO}½čĮźµ)‡Q:Ū4K€€¹$@¶_8ÉO ]Ų,qfJylP³Äģž)‘S…Če$ŠiģƜčć÷ŻģU{üÉĒ»Oß @Īȃ±—HbžēįG¶/zj`Éä¢Łń½“ż¶C—L(ŖÓ:„yüģĆȹ™²ć{ó4zeķ ?ÖØKŻr˜Œ~Oū+2?Čk—=įoŁ·`HylX枓z%/ @® ]'¾<7x¾FA욾uŽņŠ•$9t¢ØIÆ)½ĖcćZ¦Ī"@@€Däõ+®ÕŃaäźĢ`ĒĶn\śmėōœńnX€@U©Wųٟ„ėµм<6°Ķ…éŖx€tŸśĘ®VžŌ ycŹcŸh?¤MāÜĻ"Ŗn€T»Z€ō˜¾+ōp­Ę–Ćdō{;Ž^7S€€¹ā‰JäTaóäܾ屑Mć3SĀ' TՙöęUƒ sŚęYŃ׎_£ ÕŗMŽnȕ% =ŁmlēņŲŠVżBĻ ?ØŻ°g'oøŁ ­Õ¬WƒŽŁū#Ŗ^€<Ü}ŚĪk  j5ļŻ .ʉĘĢdU0@zLßYt­Šŗų™ņŲŲ†]Gw .ė @®(˜@\¶U£ ÷w·)W€@• ]×|[ܔŠÉ¦ń å±ĮĶ“rś·ų P„ä­¢ė‰č8z]V°ØąĶnpżŽCŪ_ĻeX礩€Ū)@¢?÷—8]£G{d\_€$Ģł4üDūĮ­˜&½§õķ:ńåük•TšEčzļHÕfČĀqHL‹”¼7²Šßõ虹;ōH½V5 ŌČé‚č÷  @*>@¢ŗŒ1/&&ę¤Ā$©šXØQ ±Ŗx€¤„æ*Źy³ųĆōĶė^®Či?|Å“ą¶[Ŗp€ŒXł£uėžvfńŃÉ’>^TQ—ūAøN«äFŖp€$‡OĶŚ:T°/óÆ}1łļ‡/ß¾ŗ¢"¤õĄ’Ģ)Čłfż_¦™ųĀŹW+*@b§¼^xµG‹‰‰y(ŖZ°ŗzTõØG¢j‹FĻ?ž`ŗµ®ŁØnśmė×kŪ?^€Ą] }ŠD†/ß¶&%ņuaEHJųėĀŲ©Æ‡ŗO}½Øū“”Ów…zdģŽōœńN¤WÖ{Žfī+ī½æ4.ē@i\ī%ń³>,‰ŸżqqĀœĆ‘ėŗÜK€Ąķ w¤Ņ$ęn?|ł“#VN¾VMzM‰up€©Ń`ÉøŃŪwu€|VÜÆģƒłgē•DN–Ėœ•`žIĶ&±O8@ ŠČĄ…ūNܲb{jä‹ČąÅo=,šÜ6xŃē“žał×ć’÷Ō•ī Ö/»aÓ åń}яAØ¢>ó¾fīžŒo×}3īßē¼›w"ļü£«’öÆA„dļœūy°ˆbĘö…ļ•Ē÷u³!7&&ę> Üį2pįū‹Ņ6®Ūz=—LMzqÅk%gžjā–…o/;1įŸf½}jC48ņ»‰/,ٹüėō™örńžļ}fäTįån'|µļNČ;T\ÆŻĄ–øĆ¤ųĆæ ā!}Óźm7ņžäšń¢ŌČńPÖk%&m)Ž;óõ¢O‚… öĪüYßŅC„ē^óY$øL«čĄĢæœxźß¦F>æ°~HęŽyū®e„÷ÖŠG:HąéÆ,z§ō“Œ_\µzėł`ø“_zī³į±/ē'Ó_Üųķų3”hpŒY»yóŹ’?¹»ę~±äˉ’måÓžoæyę’y„÷ģkZé½ė„— bbbt Ą>dÄŖ­ėƒ¹ŃłĮeR7ņ#Wżhż¢£“’>ćÕļ ]öęņ…G¦ž]įūÓYvhŚß¬ż‹“?ĪŽ=ū«œsަoZüęÅļ;»ŅūŠmkƶŅ{Rį—”'»ėź@€rĘ='õJĢ?Ŗ¬“pļ¢G¦ü6gWŃįkŗäź Ļs9ĘmŲ“%t ÷§ƒ½±|é±I’5ݶlż cÖ®Ų¶įŪ“3 >›ö·©Å§/¼>9t,tń‘Łoē^°7÷tJä«ļ}OŪ§Mp @9Hōēž¦ń3ś&Ģłō"ät¹FČÕF ĪŽr¬üŃśgOLüĆĢ×#¦mÜšāšåŪW]śš >6žbü™Ģó÷F_óŅ“móöĪ’tŹo—|9įĮHö›¹Ē‡,ٽ,ų¾ā3’zé± ’Ų·ģò³£”£”å_’—Õ?Mū}KĪ»ō³»Oß~øVćG,PŽņ§‰iŅ{ZJBŽ”Š÷ļBµrG0’0zĶ֍•y©Vś¦5/—jķŸžĖµß¤ż1#’¬’qńkž^śö³A|ō-;?żDŃĀĻ'’néńō?¤m\¶#);”ńė`„cžį)’)X7¤’¼ż .Žœ1ė6o~Ÿøeåö“ė_J9;‰=%|²°i\F’ƒŹ9@ĪGHć^“āg}ōÉß3ēDp"?ćµyū*u Č©ĀĮ‹ß~6)tø8˜<ž³3tčZFbR"GĆ)‘Ļ#ę˜98óēS_^ŗėģćį/Ć}J?*»Ü(LrčĖŠs_§’ĻhčüۊSé’+rpĘ/‚ļo?bEFšļ róõ˜Š;.÷ą…éSśińø ė_ n{éÉž%ļ.-Ü7ūė±ė¶<;/fųĢņ×W…äždōŚ­‚æ‡.{cÅ¢/¦ü.ėõ’ƒß”+owįēK¾œōūȇ3ž*ŽŁļ?Žø[} TP€žŒMėŽ;{’U'¦ĻŲ1o0#˜‹q;HĪ®ČGĮvęļ™{<ų;ķłu? &¬‡?Čśöū#/_D.¾Ō«EJŽ  T`€œnc»öŹŚSōC'öżē}rõĖė®xŁVéGeĖN¤’÷ŸMłmpĖŻs}Rł ėćŸ_łjɇæšūŽģÆĪÆŌŽnŲ³ŁĮz)؄ <Ń~pĖŲ);n*Ī­D~ś–GJp Ž“Ė^²dūŹ k‚¬zqĆśŸ§ +\~rĀ’xöų„JÅNŽQP·uź“ØÄłS„4ė6q[žœō_łŹŚē¾J’ēY»Š>»Õr>6™św)å¢$Xüšé„;Ÿ¼ų½%ƒ½³“gęīĀś‡µvĄĄ-@Ż6żwMß:÷ś'‹?æeĶĻŅž­čżœ[~ĖŽ¾„‡Jƒµ>2wüyqÅ~e•ģ›}*}󚗃æćr5ģ:¦‹ƒna€ź“JnŲ9ķ…ėŒÓģY|-wžŗ&l^±}Ć·ćĻ”~œł«„9‡‹÷œļ@€Ū @µ[&>ŃiģƼŠ ‚`ö¹{朘øeåöJ™Rüe(ć•ļ>½äå5ͲśĒÄÄ8Pąv ³Ņ"”nėÅćŚ]’ŽnŲ³Ū_>¹ĆˆUÓ:Ū<ėfƒ`܆õßYߣ2"$9ōUQĖ>łĆ£ķqƃn³¹’¦q 7æ¾ĒńЌ×ęķµfėśyRĮŃP‡+gv¹jʵjŁ·`”UĻ *ČMŠĖ9Xśp­¦uģl ˆˆ"@"@@€  ˆˆ"@@€ÜżŅD€€ @ @D€€ € @ @D€D€€ € @ @"@@€@€  € @ @;ˆ"@"@@€@€ ˆČMHĶĘuķl ˆˆ"@"@@€  ˆˆ"@@€@€  ˆ @D€  D€D€€ € @D€D€€ @ @D€ ˆˆ"@Ü"’Ü ā,޶IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-9.png0000664000175000017500000001734414632072346024055 0ustar fabiofabio‰PNG  IHDR ™q*UüsBIT|dˆ pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<aIDATxŚķŻwxUe‚ųqs±PDŖ" Š€"J’% ķŽŗ„PB(i”hBļĪŲ ˆŠØXQQA‘¢ ‚²ĪoĘł9ÕuvŠė¬3ć4×2Āę8²Ė8:’Püäy>!÷Ž$ēņžq¾¼ļ{N„T:••}Ԉ¹fJ×É»&OMćs{žźļ5|ķł¹ @"@@€ D€€ @"@@€ D€€ @"@@€ D€€ @"@@€ D€€ @"@@€ D€€ @ˆ€ ˆ"@D€ ˆ"@D€ ˆ"@D€ ˆ"@D€ ˆ"@D€ ˆ"@D€ ˆ @D€ ˆ @ä›h۸ƈ[Sč;„ĒČóÆ:Æ®R.ŚEŚ6Ź$śņ²‹Xņjä@Ńŗ“·Sfō.vcźm—õo{ŽĮēÕģXS€€9| cćc-īwgŹõIc‡}7maĪ=‘5„Ū¢ļńX°;śQÖķ/ūóĆ%ÆEŒ]™±.wUtĆŌ'2PęūćWGŸé>>”‡ņ•BuC1鳓fŒ^>`×Ā=‘OĒ‘š’rųÓĮĖś­č8¼ĆÕ”z”*viŅøM’v—–}’:ēµkxaӎM›–ÅÄi'[€tŸr×ÜV© Ę]ŲeL/rä'ō§wÓµg§a3ŅJūŽŹ{8²sį+ū צ½½ōµČ£ ĄŅ}ѳ·GžXütō­Ƅ’¶`wä£ł/G>Z“'|`Ī‹‘?<Ż=ź®šŠnćāćĖ"%&Ō T%p¢H\žÖüƒŸwŹŻXxŽå©ÉÕź_R߀@€Y|TnVŗ-ņž‚—ĆĮšM‚ćh-ÜłxśóŃßLīļ&?}=sA’iMćš6ļ•ß½ox^rq°lܽŃĒŅK“ŠŪg­žVžĮ_ōRŽ•Ćļ›Ų,abļ½Š3\Ö?5.ļ…‚ą±Kś\?¤Ž„½›įfĄ @ŽąÉ‡wRŗ5óæŽGtĪģÉ¢½įĻ6»FK÷ELŪxĶŻ4ge\į¶ü£e”±#ļŠÆµłŠ“¶o›xAĒ ēµMkYū¢ųóĖ>Ń4~\NóĂqmĀK 궉oj ĄČéēœ~FĮ£į×OÄų8Ü@™ńü_ ˜>pY‹žSś^ŌcrRĖ䙃’Šóof0žU|$Ly¼ø’Ü—Mz4{oҌJ;OÜ\Ų¤SvʹĶ:_T·eĻ.t™ra—1Ć/J,œX³Q»śĮTŃ9ŪU«ŁØķ9E€ō+īYšJōƓ5@ŗę–ō%‡WYDŌn™\:¼Óųg ’iiU᳓‡Ż>õ‘™[3̬?=ųgķ2s³\–Ņŗęł—×iŲ.œŠųźk²ź·źÓž¼ĖSŅė“HhlPĄQHp…«2ē \4ąŗŁ;¢æ?ŁććĖäó½-Uź]štńÅIׄ·ŗ2?˜įčZ“sRź‚e7•l’ańŽšž¢õ™o\Ņ+®yšüz­’5ŗją°— ø¼ģµ1Ÿ Ž4@FܚzoѺ̽S6Dß(Łżåœ‘æū(N…ųųŖłBŒœÕ M’–ē_5°ĆÅ=²ūĘSŚix×pĀø¤™—öéŅ*øšW_3ŖQūĮњ®hhĄQH0ćQ²)ś‹S%6Ž&@¾$HbBÕźœYå¬*•«Ö:·ŚĮÆĶ=I@€ņ—«‡\5`ŚS‘Ÿ  B–`5‹krĪą„J§<}ćTZz%@ąŽ„Ŗ Y–:wę–č»(×9Øur›†ÅOežH€å ŒŁżræś÷åXKöF>]¶O€å ”ś”˜¤Āż£ ś—¤ĶģycŹõ‰sŠÖ…&@€c ”ŗ”* Æ<æI³ųęĶ~-<·_Nx^Ƶӟ ’×ģŃ÷g¾żķü]‘pTŅuLüŁw„ļ˜ŗ!ó{‹ö„÷­ æjŖ|šńĖRŚ\–:£ūĆ#ļHŽ1»ĻœÜUŪpŲR³cĶJÉŽ"£ī ÆČ]•ŗēŠ“öÜUi/õæ®÷°~eb]ŁöŠō+ŚŽŗ3}õ”Ē3~z²]ŖW€Ąq ˜Z1§ (é“1öīšC ÷D>łŖ÷ 4‹ö†÷/Ž>p²Ž#D€Ąq č‚¾7ĪŻžąT¾ū¹€$@BõBUÓfö•}gĘŹÜUįēf¼żķ) 7§/öĒyH«äV-ĘŻ—²oÉ«‡æ“źHžkų‡æō˜”y8Q1{GäOˆnPŅ+oę–čopÄŖ EōŸ6veųĮµ™{ ×Fw䮟q’57§.(ūŚĘ1+R¶MXŽŚ<”YĆ`éÖąeżīž·+śWK°€#ÆSU‚H9ų÷Ž…ŻŅķ‰üĶ pĢ䟂¤n(ꦍџ  \äō3kT©S-ųü²­/ø~sęŪˆ.ģ7}ŲwS—¦Īč3nģŹČI“{u=ā Õ U¦ÖēŸWĻķ[\ŖwŚS™oĪŚ}ßU°€æHŹÄ`/łØ»2V®¾ZÖ æ:śLęĀž×&ŒķŚāk¤]F» K³tkų/C– ø1ēŽš‹öž\{>T¼˜:1”!ĖRęOz(²uŠā„=&uoõµ’}GŚ#‹_ģ_¶Ļ€rÜ’:392zŀ—ī;Åī„nN¬émRź¼Ń?Jį!@ą škV½"ķÉS1>,Į€,@’ »gĶ{)üßĮŅ«YŪĀ'Ä,ČŅ×"f@ąT ZU«V¼1üöŒēÓžŗ`wōĆćóvF’Z²)śĖ’g3Ž›ž\ų·‡>¶ųÕš~§Č^=:'Nˆ;ēÅšWĄZ°;ņįŅ}‘  zņ‰næzXūž}¦$ꦕöŗ„tkä7ĆO|(õ‡EėŅ~9ķÉČO¦lČxkīKįœÄHœŠ-”dsä?G/ļ÷ZڬM{*ņ³ƒ'ń³¶–ĻҬE{"Ÿ ^š2{Šā”ėJ·fž6ˆžE{Ćūķ ļ¤ų©Œ_Ēź”ŸŻ¹Sš;vŪnčwūś½ł»2ž–»*¼9ˆƒŽNØ^čŒWœWė°$8ļ–Ÿ8nUō±¼5™›2f'g|ĀŁĪlP“>üĆ©Od~?ūĪšŠ6żŪ4yGśņc ÅĆæč]Ÿ“ąēå?ٽäąUÆö}6ćņ»Œ¹I7'MNŅ3æ[’ŹgT®>piʦ+£=:~ŁÕmŪ¢E÷vķk_Z§~YDQ©r„WøÆøĻŒ{ꄗĪ^>żł!æ* ­‹Ÿń’³ļĪy”`mōedzŗjĆŖ•’é,{}āų®IeohŒåøä_i׬žŒ-Ńwæix3ŃżJāGĒżļtMāÄųœÜÕ©ßf,®¹9偤¢ÄĢCg(Ź>N+Sõ°°R„±#×Lé:yפ@|ю¼øĀ§§ÄnĻĻ}pō®Ļ–—½Ł?ī¾šĘF±k|]rqĻ!3ž‹¾³hoųĄ˜»Ó×,pœ$©°ū°`9ŌW…Åū²+h{>’‹{”ŗ”³rW„¾Z†Ü²0XVõš r؄©ĻL~ĒōJ6 ū÷`Öeź‘Óüģ³:^Q“.śzš{–lüĖéĻGŽKŸ•<įĖfI€rP½PĻGß]ųJäoEöfߑ¶źśM‘_/z%śQJżŃü—Ć'õ×oæ;Wų“ }Ń„/Dß˹7ć鲚ˆł<Ī=Öū1žU€ü߬Čւ”·–Ž7wäĆÉė#oLx(óG„ŪžnęÖčļg•ż9ł‰? ¢*yZĻŃ"*8@®Źl?­qŁ¦&äÄ ś|öāģš¼äākŸÉx§Ļ”Ĭń÷GŸź•Ÿ0dģŹōM_u‘™/d¾sĶ-éß ¢£ż -¶;·ś1?ĄĆƒ†Ü2ėžł/G?āhņ†aoŽø³h]š»½uĀSĮFłE{"Ÿfߑžč±˜™ņMwæ× UN×ūą,FZiŅŌ`–äK—i½98”kßæ/鼙”sOʾš¼>·œ 9čY²fĘų'ls_ī–“…ׯwĶ…ė³Węl·:ė•iżbޮȇ™ ūĶ7xą8ČåÜ^Ģ|q?Hž#ї/0'T/T½y|«KūLI\ž:£÷wštŗ°łńX‚õĻvNJ_½ę–žĻõ.裳D @ʒE·Ž[=bļÄG®y=cń¬å„ŪĀŽ+x|ZŽ£ĆŽ6ŲgŻ–v·AĒ1@‚ ŚłüßĢG %ĻF~Õ9«SۃϩR½J•ÜūÓ÷Lِöėń¤½ž1»ĒŹŖēU=³\šHĀäõ×f~§č‘y;#¾„č±šŅłw ¾eśż£VŽŽ>cːwfo¾—Żłr *8@bjĒT);OČ]•ń|0ć˜öTę›÷/ ī(žÅēŸQÆVĶ%½nŠßśXļū8Vč6ućŌ©‡ž4ēž¼góöƒq«GķZ°;ü·q«‡ļ+Ż6š½q÷f<,)3˜ ‚¤ĒÄn±E뢯—© f=¦?}'ezŸq”z”˜†ķµü’(>T>½jƒr?Ąo “…ĖnŹY=qó5węo~ūč£īūĀØ•£wd~wźCs_Š|Pņlō­!KSę\œxIƒ Ź!@B B•Ė㜘ŗ15K6E’ć/Æ»'üiįŚ“·ź¶®wBœŒ‹éZōR^ĀäĶEŃJVõuĆ …ėż<¼tņš¼Gż$gõȗīĪf|‚šśMĘģä< ŽQ€į×ÆØh}ō’ĶŽłóč^,ݚń—āŃŸå?ŁŻgrō J¾ģµtø¤q̹1ÕNŗ9äņ¼‰Åė®Ė^9u]p“č ×®Ī_;üÓ6~»ų避 ¬ąŃč> ŽQ€¤ĶģSģļȹ'uēŌ'ÓßĶŗ­’Ę®£;Eb]Õä²mNø%HĒ6@vMź>ķ™)I3n[8{GōĻ£VŽŚ‘ŗpęŻEśyįś”oWĘ*x,ņś¹M;¶3øą($ųh‘Ųņ‚CŚ·Ļŗ}Ą†¼‡S~^šhäµĖS.oÜH0©°GnØś9ÕO‹9­JõóėœŖH·©ĻN0÷»7Œ¾g̶ŁŪ£tsįŚ”ł×Ž›¾xöņŅmé`ŲĖē6ķŌŚą€# öƒ:]š÷ptē¼]ŃrW„½ŚcbüˆĪĆc»V>£ņIsÕ§c ŸyrZÖņ1[‡ŽZ¼fųķ%vž“©°ē”™K'<˜µ'~ģŠ)e?ótƒ Ž0@F-OŪ^¹jåÓbjĒ„¾­Ņ6óÖĀźēµnZö=+ž½O?ų9p2䆔;Fߕ²-¦ę…ź…Ī N¬O…’Ķ?–_ųb^óīłeßó4ƒŽāü¼vóøvWF®j>üę”ē†ß”²²ņ•Ļ<„š/Įź»2քg‹š'd†ŖÕ9Ó R®ņŁ=BŠ^Źk“¾d\½–½.4°@€LŖķ³(hÜaXœ;¤€©'n.¼ØĒäg×m~¶A¤üķœtYų;¹õ[õij €©±Łk .č˜oI ŃeŅóŸķ 1ą ¤B4ĻķiĄ @ˆ"@@€D€€ ˆ"@@€D€€ ˆ"@@€D€€ ˆ"@@€D€€ ˆ"@@€D€€ ˆ"@ :ˆ @"@@€ D€€ @"@@€ D€€ @"@@€ D€€ @"@@€ D€€ @"@@€ D€€ @"@@€ D€€ @ˆ"@@€ D€€ @ˆ"@@€ D€€ @ˆ"@@€ D€€ @ˆ"@@€ D€€ @ˆ"@@€ D€€ @ˆ"@@€"@D€ ˆ @D€ ˆ @D€ ˆ @D€ ˆ @D€ ˆ @bŠ @ˆ"@@€D€€ ˆ"@@€D€€ ˆ"@@€D€€ ˆ"@@€D€€ H„—EnœvՈՓWē › £ ÓŹT;m2– @*„"@@€D€€ @ @"@@€ D€ @¼ ˆņmŠjĄ¼,¤B4锯½kŃN¤üY«qķŲģ‡ ņSŹ>Z&— @*ÄłW ģW°=_€€©ˆY³Ś ]™'@@€Tˆ½ŠĆH…ØßŖO«.“ž+ @*bVĢåћs Ѽ[^²R!j]xućŽ9O  ± «rėŌEŁH…hŅyT·®E;ņwÖ¹MĪ¹¦P€€©ˆeX•Z&— @*D£öƒbć ¶ē  1 rf»”wē  āāŽÅH-ĆÜ=¾č„<¤\ÕoŻ·Eū¬ķR¾ź^’ŲØŻŠ»'~“«`5锝|f­ jŖ5œį=@€|KÕnÖ„ö噷Œ’¦wBļ”»qņÕcÖOż:ʍķę}@€| ÕlŌ¶Zė“Åc¾i|įR­ļ=äŪöĘTŖjŁoֈ®E;'  åU.ī]<0¾šÅþāUæ9wϱ¼dMĀ”ē |K$˜ÉhÜaXü³ŪE=&Gćņ·ŃƦ>™õƒeū¢Ż4wÅĮÆÅ½˜—2’ꄯ¦nœśUÆūāe}ä䐱#×L)ļ„SoZpgžccw%?8#¾pūgń’ł…·/y-r hĆČ׿bÖd^ɦ”oe-æīa€ G¤ū“ĒÆµ-ó÷SŸžf|ю¼¾„÷Ī)Ł4ģ­¬ŏ~Łóßµ½·ģmĄõ Ą¾ņŃÆ¼wćžūßń»Ckļü÷oó<ē·/žčģKÆ<ńķO’ō¹eī®ö•GŸŗ÷¾ŪnĆ3ć8^qoēŅŽł³/½ņÕW/īœžę'žłŁę×É!t`_ٜÖļŽŻ™/]ķŽźŚbóMo¹éėo¼å¦“üąŽN[“ó¬pƒńŲW¦­iåćŸ{Ļ»n}ūōŁéęĒ+ćU’0ŻŻŁ»ø}öĀÓē·/|ćĻ|ł·?>ń«Ō[×O€ūŅ“58žĄętš ‡Öī^Y]\õiǼ7Ūg/üdwwļ×ć8zįē¾{ąąŹĘīī|īū_üł_źŻĄµ `_›¶¦įGļ¼ėč±CŽpĻ[7žī…>tāųƒo¾uó;‹’ˆ•ÕÅ0ĻóšźÅŻæ-c/pmø!\‘K—ÆaښN~ęKļ’żę“ž”ƛ>ævpåmć8®,Ć0Žćpäčś]Ć0œZęfąJ^ĮnxÓÖ“zß'o?väčśĶG޼c1Žć‹gžžģ“üāܲ·Æ%@€Œļ€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€d @F€dž}kŗxŖXx‚IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-1_dim.png0000664000175000017500000001153114632072346024666 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ:#dšTźIDATxŚķŻkl•÷aĒń’sn>¾Œc.†!r##·&m—nmŅJk«NMßLZ5i•örŚ“—Ó^õĶZ­“½ØöbmWmi£fm–®ķZŅ\„pM Ü ęb0ųzģsö‚¤„XĢ1ł|Ž„Ų''Ņ/޾~žē<ēDq€[mėg·­ø¹gĢ>ūķ8gI˜K  €€€€ €€€€ ]¹KĒ3Ói;Ąü’2·Ž—¢ŻĖŸü̶¼-@@ ‹=ņÅĶņ5ZłŠ½Éa2]‰Ś‹ö€łĮ5źĄų‘#q!œŖžņĄŁ+®…T¢8ŠC?©ąŽļЁ{V¬éaC%»a¤Ō³ÕęāÅĢÉKcCł‰(Õ|s{{O¶½-ÓYj([ ®<ÉVÊØ_*œŹlĢīzē?®ü˜Ś(ZÖoīŪ¼ŽT BĶĶÆŖ$„ĆĻ7,æŲ}įpcgGĻŽō…ēÆž”óøåJł©BÜ BX÷ÄĀʗN ¼02>VłąĒ­¹ē‘-wvdĀĖĘNo{šHBˆ? ėķYH=Ō¾ äŽst÷ūæ%BĒ!„Šŗ`a_Ŗ»oń‚éP²\C-Yčˆrƒ—6>šńtÓƅŹpH=ÖۛȖ“}@@ąšZ–õ>œ8~ا{ķšĢŅņŠÅ³Étkw¦oM%T¬hņtųAś6FÉĮ#Óo„l!Zæz}ʉ+øŽęę>7Ż5’»cqa2›hhYYīŹ§ä®§³·³’ŠĻOæ1˜!Ź>ö•ō6Y<‘|įÜįūžśd{!÷d׌dˆm³Āė=}kWuēCSņõĶ{œRgrÉcåÉt!ÄŽÆf+J.»³'•­†p¼²·`ØgNaQGńč[·Ŗq坕ŃRs2“7-/…ŖU@@ązłˆV=żÄšt„X>VH4ŸO7TSņ³śaL4”Ó•†pw{Ø$YI®źKWBȧ³Éņ*ļ|uĻEtźÄŹ':ÓÅT5Ź–ÖL4ų¹G 0;Qś‘ĶĒĻTļjŹö¤ūr!ŒEc…¾ŒeĄĢ”Äāµ™ü”ŸL¦;‹Åį7öœ !œĪy 8ėiz«04:‘Ć¢;³Éžtµ\¾³É, 0óńGā8Cˆ^?w°!yĻż¹‘8qļ#>fŌxłÓ£heļšädłÕŸĒ! «īéȚf’øsك+Ž<°ņc›×µW*Ջē.l½ŠŽčĶA@ą:²K7=¾aEKćT!t-ųõčś-N`A½’īgn½7ŽxkG9JW‹ÉBˆ£ŌpU>Ą\W1$‡vmīČ-ļ˜jź¼gѲåS…Š`p3Š‹!%CÅāŁ‰¦Ń±Ż]mUf Ž@`&CĻäŠd%Äao؆haQ@@ąśŚŚléČģ=ńfH„°ī”řą\_<żx¼©’ćkļźŠ’bĮ’ĖśĻżq²h˜Ń¢m-•|©«óÓwō,Ød[»īNI|īċÕ1Ū€€Ą .¼/ޱmƦ?I’ģkĆ_ü«d5dyĖ€€Ą¢ŠÖ%Ņ޽֑m>’ÆīĖüåłŅdž÷}'¾$ p…öĢ3_ūʗ»ÖF‰é±æ;2|šÄ+‹_ś‹„˦†śķĻv-^Ö±, žÆÆ|źļ¾¾jÓ»ÆŅm ½į÷B˜®īłQϒξRē'?ßŗ$“^ęŲ®ō‡[¾ņŻ®ĪŠ…T&ńۃŒL¼|mӒ‹/;±¦ v‚łĄčĢ”¦Ö§ž„«3„É „Ź‘ŸŸ~gt,_É„›šZW=v-µ8«Dįožqł†‰į–…QH$K£{v/T®’ƒōņj¾1[)Ÿ;%§GķWyę |©RČåOż¦­ūŅž³;»Vµ¶§»<Ÿ,uÆ+å^å„OA÷Ūüē ©ÜTūĀöĶ}kwgQļ‚Öž‡¢xzxäT¢XÉĻA@ąjĶķ’tw­c—. ¦“Qœ_rwēņśĖńČ©…÷‡Ī#'“ņļ÷ō“ ŗBHD ŗ::ćG•ź‰Ü„C‹6t,éXxź­”kZ’™÷^ņEQ˜ž:³oكķKŽy”2µāŃDŗ8m!˜o¢ŲĢÅZņ[{3Qgocė{7Ä! !” Ƈ~],”F‹7õś«Įģ³ßŽsv†¹ä>ęÄęU=ż‹ś§/ŲYy÷ŻÆ.‡$ݰdÓĘ?ŽÓ¹I€Ą5<ś…ʆ(;Oķ:>°{ųųļŽ}SŁ;>µō‘8m%˜_\aNtōG!“ģźŻ!TC#§÷?·ä®®ž(„ŠŲ\īøė©}#Ć{nōŁ+Žyp»jč”&ĘsćÕĒ£§Ļ¼1ųóß<ņĀåļ¶tOOnš F9ńVę©XB@@ø=eŚBؖö?wl÷¹·ĒN·,Śšéö•Q|ęĶjB„BGū‚%7öĢ­ÉĒbÆį6•nĶœ=ŲŲ¼zk[wĪ<ń³éŃrgž“XŒĆĄžr„õßF±?×;ŻP¶0Ģ=×@˜Qō-©ę®Õ …‰ ēŠSÆ>wīŌTCWCwsxįųĖ­ GNłQCƒ@@ą}FKå½#§¢ō©ć۟ÜS)ēGCˆBĒŅŽĶ­™¦Élo×Ŗ‹V«Äqū¶±bQ*$Cį½ĖqgĀ™Bø’s}MVk+†B\×¼Z‘ˆ“.‚üć":€€ €€ ÜĘ܉N?łŚMž*SŒBɎ0·|ŒĀķłŸ5W¬|øœĀŗ]āśG 8@@@@@@€śēŻx© ’7÷ q|q ö¾< |Ō¬~lÓ7÷ Ņ’ł³$1‰ø-sĻ0nD˜ū’sM€€ €€ €€ €€ €€ Ģ_)0ßM¦Œå3!¶ŌätźÕóń”%`n9…żG!äŅ=[āœ-ĄĢŚĖɉ}ĶŻw ¼l ˜µ|Ŗš8½kbŌpk8…Åüżķ'Ī Męķµ¤rēā’¬ļ K€€@–“ēwG†Śœn9•kY2–€[rĄĢW‡M ~’ņżƒ ŽŽÄ›€#˜…buāXh ”uéĘ/®’jČZĄ¬ÜUHmY¼lŪųĖūŠgKöYŠĀ†‰ ِ …Ėw¤sĖ),nŽLä €€ Ü8ē°@@ą†ø9;…ĀlEIĀüĪķĶˁ›ĪiU+€€ĄęŠū@@@ą†8‡€€ Pß܉7ąBõܐū@`®„LĄü6š9żęž#”l ˜µRr×ėūBŌd ˜kNa1Æ„+«lė°Ō¬#jķŅvF#Ć”%dÜJsĶ5ęµs™ż/N³·•U›Ņķ³{dĒ¢ū7 gvo?¶×Ņ Üny`Só‡łü£™];ļ°3Ü*®0OM¦wī}{»@@øMU>¤Ÿ°éōĪwžĢ¾ Ü¦ÖżŃ£j’’ŽBj×ɽĻ{Ł·«Ø¹§iaęŠ{Ä+©ØåfŸ¶”ÜuözūDøÕ\DēĆļüēLsyōņß“,_÷ō‰_ö=ÖyĒĖ_Ÿ¾‰Ž–“»†wž{\1/·óné½|„еfќܣüH~¼\øńg¬D»Ēvü öʉ |tœŲžŗx“Z¬FÉj5¹łĖ¹óĒž«ÖēØFoN½ņŻøhM؋_MĄÜˆŹĆćB'«!dŚzī[²µÖWhÅaOįĶļÅ[‚#>²Ź#»¾•ŸHÖųPū+ū¾;™³i—Ž©õŸ8ļżŽČ„å ~8…żšv“ēūĆ#vG |$ŒWĢņē+›čńĀų‘ľœ¶(Ō—ČŻX|h?\Ńlpļ’ĢC+>ų»Ē’o>{ź¤=Įqfy»ßÖ¾7Śūœ|@=r „ŗ6˜Žż“cvšœMæńāĄ!;€€@M†2»~y|æ@@ &ƙ]/ŻmØÉHfēŽw^³ŌčŲŠ!W µ‹|Ž€€ €€ Ąg¢S—ŖM+և8„j\£PCØV+q\>m˜ĮŻ­žŗü§ų·_›Źx+üŠ6 0ƒL%sÕŗDo½tŲGLAq „y””|gß”WćŲ P““ńĮW¬5›óV§Ī°Ōh2żŚ·~eØI%ńź™·^tõjt!9¼]>@@ f'Ϲūj5’=»× P£éōĖÆŌźB8śŗė P³ńņļÖµkkZóŦf;€€@śr“­Ā P³Tµ±Å P³‰Ģ©}V€:żĻĢ­žM­ĖÆžZӒzt¶Ņµ:°„Eż.Ÿż£Ó•ī•Q2®Ų źSXŌ¹öĘŠjØ]ÜKæ=®Xqß×®ÆF!„šŽżė5]œćö‚zä·Dg’¢uł|’Ó§·ēĒ·|õä’~īŚ+'Ļ€€Ą{ŽmŸJµō>3¹rō„D¢¹ūƒw!}Ō›)‚€ĄļD„įq4~zr(JU«ķk*édéZ›Ŗsց+#Ÿkéģ¼RŽ’Æ×ĪG.…‚„@@ą +>¶ņÉT*ÓX(^ø#ž¼Ö÷ó©ĆG‡†ģõ{ĮĢ©­Ÿ_·öņŸā(ŻTĪ…BŖŅ–æÖc‡žūW-Ē[ BŌš®žŚęG?¶ōŚ~½õ•o†\&Qšf&PwœĀbŽÅ“į}'¬¶~Ą%ō8Œę=6unaĮ*Bżq':õ|“RCł_$ŽnIہ@MŅ=«?×^}ĶąjrwŖ²ąš™Ž¾e¶“Ļ<žHņž±I[€€@m?¢q÷ōŹöĪ»£¤- ¾øĀ<°q²m[łT8a p5Z>½ęS«ÖŲjvwfóS«“ŌlEåŽmQÖ P³•ŃźĻXjÖPN®ņj,ØYÖ&2ķvš­Ø|éon“Ō(]ģx{Ū§¶|6ŹŲj…Õ„‡Wo{¦»Ē P£T偖­_Śų„ źpK’O4óSµwKviōoqŁąjŅP~pŃÖgÜZ5KWhņ«‹lsĻ),ęµd¼>¬¾wŖMGöæčd8šd*ėā;6G! Ŗ(x+pėø2Å!T¬8@@@@@@@@€z”2õ®œ<•Œć™3…ŲR p…\ĆK?9yÅqĮR p•d)Ī[źk sĒ),ź^CéŽOÕKwˆøIõµīŽ’š„‘dņf.@ŅÜDœ>ų£8säē16x&Ī>r>8žG$I">ą&”¦i$Ił%UQ·ś™ ®Ć?‹¾SÆD÷±g/¹SąęšewD~quT-ŁzŁõ¦ü¬ń‘žČM¼ūžŃčļŅÓņBtīū~ uæöī9]‡ĻUą²:ö’ Ś_łnŒ v_ņēļy V:9£1Šq ŗ^}&zZ^0¢Ą{:õņ·"[T‹oūläåæw€“æņ112“cC1>Ņ#}ķŃŪņ‚{<€)¹pSzqe4lłx$IęŅ291ƒ]GćŌ®'pMRTQ%5±`õż—ö_FœÆg<€k1Ņß5·Üł„ÕQŁ“%"ŽqzՒ‡bŁ=æė’Z4ßłåH’ÄØÓÖsüł8}ąéČMŒFÄ%īÉUÕ÷FͲ;¢|ŃŗhŲō±čŲ÷}gD€iÉMŽEš›¼t€¼)“-Œ«ī‹ŠĘ‘-®0jĄ5»ā{@ Jk£fŁ.Ē*,Æsi0-Ł©¬TŃø9¶~ž/cćĒ’<–ÜöłH3“Qæį‘čŲ’#ĢL€¤¹‰éˆņ† qöäĪčmy!&ĒGbįŚ‡"“-Œń”žč>öœŃ®>@†{_ĪC1Üūzœzł[±pķ‡cÅ’.’$UĶŪ#æ¤:NųaŒōGՒ­1Ōóŗ‘®.@śO½#}ķŃßq N½ü툈H’oD^Aiō·ī‰4" JŖ#"¢ØjqLtŠCOżOȦ iD tŒĮ®£Ń¶ūÉč|õ¢Ž|śė/>ńĘŠ*bb¤’ĀϦ §>}Ææg[÷DÄ×.¹’Ц/‰8’$ŻdŪ—’WL ÷Ēč@gŒ õĘP÷ńčŲ÷”1®-;’$ożDŌośX”-\™¼¼ĀØjŽ›cäģ©č¼ŠGė&Iā Ą%[aéŻ_ę;÷B|D¼ķ&ōāźÅQ·ęhåŽs#µ+ęķ±įńÆEOĖ‹Fø ²is¬~ųOcįŗ‡#“-¼ø)v|å›Q\Ó¹‰Ńč=łRŒ±ĮīČ/*ü’źH2Łék‹±ĮžČ+(‰E‰üĀņhßū½čkŻ]Æ>c”€X“īįXøž#Q³ģĪ ÷}¼ŻEįĶd £vł.»±47inņBŔ-Zm»Ÿ4Źp“K’$š¶}:–Üž…(­[uŁõ²WµŃL6’Ģ[)Æ_µ+>h“ą&[>ųÆbцG£ “ö=×Ķ^ķĘGĻuE&[łE•1>ŌŃ 7s|¬śšŸÄ¢õ‰žćĻG:9Ł¢ņ=w&*ÖGIķ-W “cƒ19>„µ‘¦¹h߯Gł%Õ1Ņß]‡jŌą&Tµdk¬}ģ?GŻź"ÉäE¶°,śŪ÷EžXuŒėŠ-ĻGeӖ(ŖlˆŅ…«£°¬ī½dtątœxö1Ō}<nżDLŒž‹ö=ƒgŽmø‰-Xyo,¾ķsoÜC~žfóŖęķQÕ¼="ŽxĄUϱgc¤Æ=r“i."®päĢ‘g¢ēųs16Ų}mūĪ/ż £ 7±EėŽ¦ķŸŽŖ%Ū.»N&[ Vč]Ė/ b¤Æ=Ę»#MŻēD4lśX4m’L”×ƛÖē³—ŽƒŃśŅ7£ėšOÅ‹·}:ßö¹(©]6ķm\2@ś^ß§żÄ‘$I,¹ż‹ŃtŪg£Ø¢žš¶•yē‚žćĻĒéĆ?Ž$I¢fŁķFnņųXz÷ļÅāķ×—8RŃø1Ź­‰ÜÄXä&Ē8ÜÄń±üž ›>y„3²ĶwÉ–EÓ¶ĻIJ|5rć#Ī„$ē­Üń±źĆ[~{Ęā#ā2÷€”Ō.‹47EUMQ²`y–-ˆāšę R¹ųÖčkŻķuø•Õ­ˆµž§Ø[ó`$™¼ŻöE2xępä&£¤zm v·DŪ¾čŒŅĖc|¤?""¬žP¤¹ ń7 +?ĖīłżØ]~Ļ… ¾—ɱ”8sōQѰ1Š«O-@Ę{¢õ„'¢ēċ12p2VÜ÷{QæįĖQR»,:÷’ NķüŪHÓ4’$‰Ę­ŸŠÉ±A37˜Eė>MŪ>}įmęS‘WP VŽ;åūdz%ÕŃ“e{T4–ÅčP^”TŻI’‰²ŗU‘ŻVéäD,½ė+±ę‘?‹Ź¦ĶŃwjO$Iā,Ü ŽzĮąś«žl^AILõB­7.ĮJ’(¬ŗ' «īy× Eõ±ņĮ?ŗhY&[‹6–ß÷Æ£~Óć‘-,Ó}O+@ŹÖGyĆÅ7§d Ė¢fłŻ‘_Rõė£zYgŽüÜģĄu«śćX“į‘Čd ē|’Ł™że2QѰįĀ÷ēßĢæ7^0ų£nĶC3ž‚Įy ·KÓ\Œ õšeøT/ŻĖ>šūQ»bj/|_ČųPotžIōĪLĄ<«[}4ßń„Øj¾mŽeĘ$œˆö=-Ļ~ݰ`žÕoüh,ŁńÅwŻĆ=_23µ”47ē:GėĪoF˳_ˆˆ…k4ć0Oš¶~*–ģųܼĘG.7vŃ÷3rdøēdtžItüQ õœˆ†M­Q·ęĖ>†79Ķ™3$0ó’$‰ÅŪ?‹w|.Š*ęõXņó»br²éŚ$Ms11ܧv}+NķśNDD”ÖDՒmQZ·2ĪuŗĢg…ĢV|4ßł»Ńøõ“QPR3ļĒóöų˜V€¤i.z[^ˆ¾Ö=1Šq0ŹźVFūX¼ķw"æ¤:6<žµ(®Z<§oSĪæ`šŽ?ˆśĶG¶°ģŗ<Ę«ž×~GśQ·śH’Ld‹³±ģ’2JėVF&[łEfę!>V>ō¢~Ć£óņ‚Į į¾Öȍ÷E÷k/Å@ĒĮXøī#ѰłńČ+,‰ž×Ÿź¦š(,ˆŽŽS‘_t«Ł€9TV·"Ö<ņg±pķC‘d²×õ±¾ēŃ Ÿ}=ŗ_ū»č>v0­]%µDķŠFIĶŅ oN¬]õHäēŸŽ±±ź(­É7ū0‡Ŗ—ŽKļžj,Xyļ¼¾`pF¤cß÷"æ,bÉm_ŽlQYU,ˆt²÷]Æm_xÉĻ»×fĻ‚U÷Å’ŪæÕKw¼oŽł]2xęhŒö’"Šk?M[?Ł¢ŠČäå_(ŠÜäŌo.¼/Õox$6żV”Õ­Œń”ŽėśXßž€Ŗ ҶūŪ‘dDqĶcQŽųÉČ”¾ūś±$‰L¶hŹ;rfĒ豙hŪóˆ=×’±®~ųO£ “öé;õJ¤Édœė9e‹š¢“vEäUšQøŽõ¶üę}qœ5Ėn?f"ęå?ŠlQUc ÷¶Ä’m_‰¢ŹÅ‘$™Ū™K°€ˆˆåkæټŃČ–.ˆāšmF˜Iœ‹³uŃÕ~Od 0›Ņ(‹®Ž{#’ˆŒįęŠ @ @.š^ø%óüvšŅŗ•n&MŪ?µĖļŽ¢Š†yŁ~i€›Aš¦QæįŃØ[ó@T/»=’Ģüe€€›@Ēž§"I’X~ßFݚ£°|”fĻ›gC·|<¬žPT5o$™ŪēR øÉ“ķłū(Æ_õ‹ŗ5D~IµfĻ@Ē”H’$†Ļ¾‹6<e WĶÉ~½nRišFėĪoÅPω9Ū§ @ @ @ @ @@€@€@€@€@€    € € €€€ @f\¶÷ċ1Šy("I"‰$"yóGÉ_É’OŽ\–¼ł³ˆHŽ\š¼õ‘ HbاÅĄ .79ż§^‰4Ķ]9@Z_žV ÷¶5`Z&GĻEėK=ǟær€.ąš%™HÓōŠ«¹˜3 € € €€€ @ @ @ @ @@€@€ą:—­^z{,½ówgeć£qjדFndIy%±hŻĆWÅŪ>Å5ͳrŻĒ~m2ą—_\«?ü'SZ7;«G’š øä”Li½Y¾Ds s ©3 Ą\ˆK°€¹ łĢY€ø ˜»q˜³q˜³˜«I]‚ĢU€ø ˜»˜³q˜«qšvŁ©¬ŌŪņBLŽ_õʇ{Naąź¤æ}“üśėF ø&nB @pż›ŅMčUK¶Ē¦Ož× ß§¹ÉčÜ÷QR»ģ·+š6×]ėA ÷¶½ö³’ö7išęL ÜäR¹xĖEßē&FćĢ‘ŸĒÄčĄŃŹÅ·.ĶĖ/žĢäõ­Xóó;;N­=8Š·¶ójblQOŁ@ūžåqŌ”Ąkś—`„¹hŪżwūŪö GD4/īÖu[[>±fÓs¹ŚM”ŌŒW.ٶÕt€¹D|¤ē’I':‰4ö×73r>.¹ōlė®W&FÆ9*7•6lžųZSó(ÉÄČšņH’¢ł ĖßSޱ÷{‡ūŪö^ół™laéDEÓ¦MžČ 7Žé戚2wĮ§i:9ŠqąPšę®¹*›67T/ŻQošąż"Iāņ}qśŠ?ķģ:z͇^TŁ8^³ünä€÷e«žŠ»ųŸQ\Ņ2Ć’¾wÕ uŸhßß2æDyĆśÉL]pĢ€4ŖjvEqɱ K OĂśÖØ«‰Ŗšc3 W|IOĖ »ĒĪÉæęYø6YrĒ—·šdø>¶Ä]>wÜ’‘ĖEiłxącOF6;żgóbķ–}‘Ÿß6“rå›wżåė}m{»Ž¹¼ŖzoÓŹõ’p_’œ+˜Źž’¼lZѰ~]’$S óoddQœé,‹Óķµ‘ÉäĒŲhE ęǹņĪl~.’ĢÄLHDÄ{ßcž¦iŚß¶wnbō¢}¬Łņücė·’dƒÖMuOM›«®’ČJS ó'Ķ G~öT$IIüę_»>„eÆÅźæŒæŗ+ņņŅ8yō–ųńwæc£Ķ3 Wvjēßīh?0ööe'Ž®ūå‰# ~~ŗ}ó‘©n'æØr¼jÉö-¦ę)>Ņ\Üń”'āĮĒæ„ećĶKWīŠė:cķę£yEw,]}<Ņ\ķe·3­¦‘FLįżišŽ­ø’V.Łŗ6æ ½|a㾕§Z>°·£õžƒW»ĻŠĘ‹+ÖÕō·ģ1ż0s&ĒÆøN’$12T£#£1>VvałńĆ·G.}!N¹5ŗO‰Ž®„ń^WKMļåé•.ĄzK×įŸģ¬Y~φ»żŁcĶĖ{ļĪĻū›–#=µ»,©Y:Q·śĮķńOžD`ętłE”.Xß+AbĻ‹_Œ4L¦šĀŅįį„qhĻ҈ˆh9²śŠūšö%X¹Üä”Öėo?Ų3Š¾Æµ£uŞö“建ŚW½6Ż}–7¬[•$I?˜Į9ž\tųaŒ;óžė%Ię¢ų˜ŽY{ ÖŪõž|é•Ö£[ŽüęWæ÷׃ēVwM;@ź×ē/¾ķ³›ż‰ĄĢjŪżč<ųtä&Ēgu?³ņ&ōw:}ąé£}mÆō]óĮf s ×'I’ų€™uü’=ŗžāś 471õuÓ47Š~ąPš›¼ępČ/­©ˆˆ|0³Ņ4Īż?ˆŽƒ³¶Ģ[A1¹‰Ń)~Mé)Xo×±÷{»Ļ~55­pżź>ölœ>štŒ ĶĪĆg/<ėĢ‘g¢ēųsSžą¹®£Wµ£Ńsg†V=ōļ—×Æ»Å“ĄõėŌ®oGaE}4mūT$™ģŒnūĀÖŅ4Ž}OĶź/ŅsģŁ—kWܳŗ°|Ń»īlIsć™H’4I²Ī’ĄÜ7cŪĢĪõ/ѶėÉ VŽ{gUómo½P0©{ę©/üyšęå’Lń„©€ėCėĪ’…õŃxė'"Éä]óöęülCš¦ćżķ^ōā[=r¹ĆiZ=jŠąś‘¦iœŚõķčiy~F¶7/—;užÉ˃ŻĒóL'\’†{[£ėą?Åą™ćļĻ9wśHß@ūž“¦Ž:ž(N|:&F®i;ŁłśzO¾“»zŁķĖó J'#Ķ%iš‹HÓ$Ms‘¦¹äeiœ’Y.Ņ\¤¹\:6Ųķ˜ÆæųDV,Š†ĶG’Lļ\ƼH×”Ļ<™äåG:96™ęrinbt2—›ČMŽNę&ĒrćC½“£ēr‘¾ķ+—¦é˜é€¹•¦iUŌGqeCT/»óż iš¦qÜ4ĄūĒHGŌox4Š*£ø¦łŖ?ļĄUéŲ’TtüaLŽ `ö|žĒéC?ŽHÓØØŽĶĖ0„Ļe pµŅ4²…+£øŖ1ŅŲ¹‰lŌÕ?Īõ-įįõ˜YēN†M¢Š†H’qn`ć?ć,`ŚŚ÷~?:>“ć#SZ_€×äij߈‘¾6\_ @€8@²…eQTŁ`D€ŁšewÄņ{’ Ź­6*Ą¬xė= Iu«ˆ$“•M›£ļŌ+F˜„9! VŻI’ÕĶŪ£÷äN#ĢR€œW»ņƒ‘dņ¢fŁķŃÓņ¢Qf/@""j–ßI&/j—ßŻĒž3RĄģHDDõ²;"Éd£nõżŃõź3F ˜½‰ˆØjŽI&O„³ •‹o$ÉĵÅéC?6jĄģHDDEÓęH2YL[ęjV.oXKv|!ź7>j䀣 ˆˆ²EkbńöĻFƦ=`v$"¢“ne4m’\4lž-#Ģn€DD”.ø%–ÜöłhÜņøQf7@""ŠkšcńŽ/D㭟0’ĄeÆuÅU‹cɎ/ÄŹ’("M#M'#r¹Čå&b|Ø7Zwž­Qf&@""Š*¢iė§Žµ¼ēŲÆ0pAĘ   € € €€€ @ @ @ @ @@€@€@€@€@€   € € €€€€ @ @ @ @ @@€@€@€@€@€ † € € €n\’ÅģŖv„IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-5_dim.png0000664000175000017500000002770014632072346024677 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ&[wRŖ IDATxŚķŻw˜]}ęńß9ēö2½÷õnŪ’mY6Ų€mĄ€Įʉ³@ā%¶ ū¤‘@6KH†ećlČRÖÚ8ą6Ž .r‘e5k$¤é½Ż¹½ß{ĪŁ?fF3#4<3žūżšsļ=ēųyŽó<~ż;U1ĖåŽūÖžb[8ēśūä`yØD @€P ų„ā €€P «ē@P €\c!‚9š(†Ŗ˜""Ŗ!"¢øŻ…WØŪ^č.¶Ų|mz„ŒP ‘āÅõétd(8 Y”¼¦wŪņõ„iŠ„»šŸŲśįŹŖŖŹłƒyõåuŠÄƒ±‘LDµ:jµæ½>ł×/ $öVÆżžį"µŚh&NKBį0üņ¹żW֖ŲK×ß©D{ĪÖī)ŪØYMCUS±–'ņŹj÷;lćK…ĒÜÅ„õŖ"bL;ęhH*źīō+ķeŠ8‹†ljyö+Ÿ!YČ*“MN‰("¢ˆrļļŻņY36Ö»ł}¦˜’«6—[DÄ0GĪõµnøŃ›?¹–)Ź%[ ›IÅę)³hÓ ޼ś¹§^÷™F8EŚ(UäOž¼č@’’XŲ'–ž™'OS­¶K—Źź™¤Ó½˜ķōy‹āc†Žżōßż†ß qo΁,1oٶ[¶Ż¢›=/G"±žPW~i~­õ’½`Ń,īÅm_•¢‘üŅTŹQe%nČź eŅV›¦4m³•ŲÜ鱞“šÓf+®·üŅöE<:šŚĮ’śl3ó dqøMDD‘²µ""®Š‚ S cąLa'ońŪ5ED‘x¬’„—~ś`óČēˆ²ŗX-ķāļŃŌŚ­ «‹HĀ®ZģéD6žIf’¾±ö­ »ē„½1(ņ7Ä €É=¦$bĢu]Ć×cqEĆ=-Oop—mŽq·’Źƒ$€Y„‚¬>>ƒŒtšY¾¶ĄhY}^Օ+F7ā¾T<›‰łœž]×ī»E‘ˆ/x®ū=žĆo0 dµ²Zż=ŖCEÉ$ «ģÓ.įhö»¼ėö)sl!“=_Xļ.Ó&ź$8ōŹ>ōX(.ņeā@¬^nOI£za–Č^ŲéĢą‹ž[Y÷aU³xĖ\ŽĖmĮf­Ž2ž—aō½ÕńŠ¾Õž'‚@¬~ŖˆųŚ}½y•™ŒĖ]ܘŠ„»ē»Kė\Åoe£Å.¢Ģ¹•¬>ųFēĮcĶO’+D €Éž”¾×Ķl’±ĄĄš3‘”Š1_&•ē)mZ{£5O±ŠÅŖ]qżd\»+9ńƒm¤ €É!Ķg4·f‰ŒŖ©l¶hsu™Żks+ x-‹ÅÕy(;8Ņ"KHN9š®«~G‘d¼ćI_kł–ü ežėÅS}oå%b‰`ąxøƒP 9H§kóĒü=Æ“æX{]åęĖ/›5’AEuØā“ƹFdąląhø‹ P 9L‘āĘ¢ĘīWĘ:]Åvo2č)µĢņģĆt8įKĒżf¢įӌ ½N} @rTOė–¤Ż1Y" 7$b©@|ŌU”]ØSÉdČįuøS±­k/­?ž½ŽƒbŖ<{’»|Æ}ķ†ĻO=ĄŻéžłŲ’tvØ-Šę©ń½é.¬ķ}ĖŖHB5e§Ł€Y•ĘƜī¾ę‚Š‚JEDL1§Uƒn$ā ŻYaX“>«k미‹«ö’ĒŁßłe(!k"ō‘( $G¬«w¤?œ³ŗ…#½õ;Ż“æ©ŖŻ=v>Ļ[œÆ”zŪ’ĆČÄFe–śŠÕ¤åhOū³‘ø™&QĖ…WŚ.±/’ƝæcH&9v*&Vgż–™‡¦²YÕ2ž)Š˜rź§Cof“æĘmŗN‡»¢£]ƒf–40äCI'ķĶQ½Ē”Xčā3“o%L¦ƒƒŁ@&iÆCi F{Ļ…ājŅ%EHj9Qļ/©RDDOžåƂJ©;żƒŠÄ-ƒ~Ū±ē‡ūI’Ć45­'R.»ˆ®§¢®ĖTHĀ<å?6yŸz,QQ” š¼ć’»7ęWø¬"¦t¾V¶N.*_×+6Åī‰Ž†‡©TõjåžŹuū#g›™Ņŗ³g9y€É9Ŗ¢$Å*Ņ{ŌįĶ«0LE™ž4¬¢š±¢¶ŸĪ¶žMßPš-/kŌ½ EŹĖbŠŻL’' $g“žO?TPkÉ+­+i1äģ3k®Ÿ¼•Š”DhģüģėÅ“”˜Ēa(É@SEĘQgWŽ¦żĮxščÉ’Öo\ūĮ¼j3;~/śČ¹L¦óew­×\FjōH ŪøĢ5VŠ©dSŁBgĀ–ˆ[µā5C–Į¶x 2H¢(\ \-ŖžŹ½bcåFED’I‡c¬÷ō9OIŚŌc³­ē2š<ķąłS/šŃʲ”1±yєpZ’‹tC›øÄįqnžpĶēńo\ny«¾k‹SöjÖń™ I(Ām (œ‘ÕMi/]3Ņ^Ö42"ŁŹsā č.OåNÕī;s„µ āū³ŖsżUWķKD2Ū剠@rD2Łzdäµ>§š7Ü«…¾ŗ³Vģ{~Ż¢™>śmEĪõŽB‹±Öx+2ųLߨÉ`ń,¬%vąöm[Ō”bŠd,Ćz±Å®Ul­Śé öŒö©Y™ēżėĄšĄńęV3C¢(qż-{6Mžm*Sńkī Ÿhū·ōĻ·„²½ŻÆ?A¦–‡°–˜jqVŌīöÖFū,ī¼ślŹH¶üGØĻ¢›śé%”,`K®¬KĀ^@äˆ÷ݾówT)Ū<łMįFCjn{Ź%晴 &‚„„\¹U³Ūźvļś-ƒ}€  cŹą™ž#œŽĄ‚yé0¦M%āŖ\ƹI.kl8cØj*zžgö{<Ś’Õ#ƒŖeųąŠ›d€ĮzĆų EIE-śĮ/kŽĀŖŲXŹoŠŹį+ęb„Ēcײ œQD!ļ@œ0¼lŚlhjÖPŻå›]ÅFf¤eøuē}™@Ģč±8,¶ą@&ÄõX(\¢åģž=5[\wå{†’¶b·ED QD‘¬h=ūx“Ÿ¤P ˜įś}Ū>[Rf^8včšn|WŪĻ«6åUŽcŃJ7zėZķ{ƒ¬¬lœYb‰T6š„/Hb(ˆˆHó[ÕżåÕSŸM‰„gk”īRācƒ)%tŲķNw”ūZSņ7¼śÕ 3DdŪ‡=žr٧&KVńnøĆjM§üĆ®ü¼ül6«[µP$Š“šļüD“æķY.ė°q}Éå—LՇˆˆ+oϽ»¦:œkö¹ŠCa›ÕŖ™ātēU®æĮU–Ń]5d€ rāPĮö¦ÓæŃŌÉYÄįp8&’¶Ŗ…E”±ĪŹėlµķm*oŹ›#=$€ÉŁłĆY6ŸåÉ/ά³;ŠŖ²ļ«Ų^či¼õųƒ#'ČĄŹĄ!¬%6č³;绬"„ånÆÕQ¹9ßcŹP›o eŌķ'CL 9隫 ¶F^ˆH_K:UPøėćĆg«²”!Õõ«YŅ@äRąŚå†¾ O±ä_öžóĀF§=ķ/ŽąŻ°ĪtęE†z^ź}5C‰X6ĀZ6™ģō«sM;öńą`FŸ}i·Ć0M±Ł<Ž"Æ3/GüŃ¢Ó?#GL 9bø'8ą*Õ¬™„”DƒbŠÄūÜåĪ"›cĶuNĒk’ øßóEmö]„ę^]zŽ*¬4,÷ʍß“( $GÄ"žÖ®×}}ŃoQŻĪČ`2”æåČĖ֗mOöÅÅČĘśecūg{–ŖØV‘xø 1/®ŖŁrź_É’3š¶4ÉčéT8|ā’Ź H £Ø®jw¬­ļ ͽé?õüģōƒ…[åUė/·W^ `s§Ņ£Ķmä €É1VĶźrŗ¶ÜŌūFdDF»Ī|[DÄ[ė‰äÆYsĒ©ŽU5¼Ū;ė#š”šIäU•”’$€åĆIō%vś­xb2śŗ}ū~ė½ĘÄŃŖ’Ķk?ā;)īļ|ŅķČ&£žD"8<ūV1õt(!OL 9£®É6ķIXŁ“™M²""Ŗķä·3A39vzĒżvwdz'ö¼Ļ˜„å3z6©+±y @r†×k™čS¢~Ւ‰ČÄŪGNhUfhüÉ»ĒRR¦²ėwŪ^ģ:œIÆ»įā­X5O~&fÓDn/½įĻB'ŸśN3Ń @r…"żGĻ“'ē O}6­›""†Śxµ§Ā4ś^Ӈzāk·½r«ķ¢ Ų­õ ›Dn}`ÓŻ½ēˆœ$QHĪXūīįćńąä§HĻų#EÖæwŻm""ŽīŽēj® ļ~69øįƒ³o#ÜmHŌ— &€„ĘIōålouó‡÷…‰Ä?|„å7Ü2ńź‹÷Y]žŠŽ7c³U„)ņõ?{ść’¾’‘^ŅĄ’SJ×_÷G梦¦—Nęx;ÄGSžs?’¶’ÕõļæduEğ‘N}ńǟZ÷Ū}’å#YČŖ§˜ffę7ZŖõѼšl<Ō;pR½šø¬Į³kß?×øøMžčOĖ×lØųCq’@¬2‘pē‘Śėų§±¶Īē4ćāez_’’©Ā(ްõ×Tiqz+.·ķfłļĻ6 *MüęĶW5xśėŸźÕI²JxóŖ¶õž*©ń–2|āģIß<Ö©©:6õX6~ź1ź®)Ś\Ų0żYY7½÷æÅ}’üW>żįßžž_E|½ę?žQĶ®Ź]ūæ&ĒI²*(ņå|U)ßŌņdÅśÖ§āŠ9צR¹kÓ]ˆHĘį)9ßś“žüö_ÆŪ""kßüłŸ5Ģį£ņD³Č°ˆČš+ÕĻ·8 duŌ‡zĶĶ=ķŁ‡Óŗš8}LĻĢ]"›īnø~rڰjžĘšDW­EėLL$ĒæO÷ėf2>r~j­æž›¢É s ²:źć½÷G­nKńĆš÷©Éł¬Õ’jé&OŃä§ŗė<ł“”½Ł9ž×’Ōxpä?ŗ¦Æē÷“8€·÷,™Ūn’õm¶ø*ڟuY•ł­xķ[So)œŖ‹Ö°yüÆfóĮĆ3ė˜@VĻüay’µÅ"y%’PÆī=¬^öšUõuÕ×D{‡N%ĀłÕ…µłMŽ:M!?HĪŗśŚZ·ę)i*i2Œś[z^ģ}ķŅs †ŅtcÅՅuÅMuFūķ¶ü+æńĆ$WˇCXKĀćŖŪiµŁ½”«łå[īŽö‰²«Ģ‹ ܖæöC…u""Šä廋Ɔõ+•“ dµŪqc„Z\ćpO'¾×śŻõw^ż]›¾\&o CN‡{å•9÷LĒQ°ņpk ŌŲØź±°aNžĶˆGžī÷‚Įnoz³$5"2y0Kɼņw• jćčæ[1uM3ŪZ,īĀ’Āzr@äœuJōāõkn›:®§¶Ž¶'š¹&ÓÜõÉlÜw®óŁ ēCĢ”–‘ęÉįŠ’QĈžųī®ĻęsÄ ĄJ¢}‘ ŽīśØß¾×įŚž›ńk&ć. “>š­-Qt3ć­óVdćĆ-㯵5U÷VVķōĪ<Įž÷M»½uŚDå¶ æ÷ķ‚|,… yŽę€•÷Ü»±X$«Yt‘«>Y±k¬żš?+éÉß [AuØkr74½æØ”ł‘’Wbųā-™īÆŚ19…f×K|ķ ČjõČęķ;,†Čų}©Ųš‰¶g%5>md-¦¢eSĮ©CS”>‡;ŠźĢĘf©¢Œ¦)vw‰2QLłõÖћž&aĖ…s oļüay’^Gvźs ub~°īøĻ‘ļ­ī;x~Ę aÄ۟™1u(ŠG"“ŸŽōŸŪ|ÆĖ®Ž‡[UņĖH²JķŚUēćŅļ7ßY³SdąHēK“E”[-iOeĶ5F&Ō?tVI‰(¦ĶaɏŽØ‡¼”ˆ’ČHbōģ–»joŠTn$@¬Z„c¶ļ#}ż‡ćc­Ļ(O¹jŗ©éż§¾7|B·ļž=—KD$‘čĆSčk/Y[ŗ5<’ųŠÉńe‡‰ØręGÆŌķ$aHŽé?ŌhśäśT5ī1³“S…Ó¹ö&‘ņŠˆxŠv|Ņś“WŒ ĻļUĢ䊳'CŚŚŖ¶Ņ°<8‰ž¶śīś²Āł,QĶtØ`Åv”(&’_)Ż z’ĮLxśZS/ų5^€ $—…ŗB]ćśTŪ„æ+¢HÓ¾HW¬oę÷޲@@DDJÖYm³’¢Č֏Ö\ķo‰‚=¢'ĒČ ‚ †¢•[ŻWŲY֒µ%k 3ā?ó] Ąrći¼+ig˜ęPĒK‰ųK)±ž`§ˆ%oĆ}&ū‚ É@Ēå4%kźā¬ŌUĶŅ÷¼˜ŠCq(NÅiq: ĄRāÖ £˜żGŖ¶^ž¹»Łd*šŽˆ*Fʟ’ ϽŸEQD®)mڶ·™P ¹*æqÓG._Š8œ§fµXͬˆˆKw‰˜"†ŗž=³÷}³±,a­(†Z¹Ū›7×RNoĆĶ3æq•yŖ*7Vģ%AHŽZGƍs–ŒŒtčŽ²Ö ÷€č¶’-6›4Uz×ī{›HĄŅąÖJātWĻżÖĮlڈløŽrÓhėŃļ˜1‘ā- ·ŗŠ¬ZqéMŸ-ŲÜłyé HH®I’fō=u®+-d³UļńÖmżtēcM7”n×lćgDŒlčŁo!FKƒ7¾­Ž}ĒÖRr–ļłŒ§čŹĖ˜’Čdu·=ĶóN};Ņłw;O…HĄŅąČŹC†Ļ0¼óżöŸŌ_+¢Héŗ­×ķW^ÖVŠp[ŽŚ©:÷Ö/柨HŁŗ_½Šä0¼ĆŁ\“cDńš[’:Üć;Ł{"žżŗéLdš…XČ ŽŖŪ_¾cq’Ģ wō¼,'ČČ*”ˆŻ^ŗnÓ]ļś«-3-"¦b^|ˆ*ķÆS©øqżźa™3vē śŁ÷8&Õ¶Rµ×Q„f-īl4 v„ćĆĒg.įŖZūīŹ«ēßź¦ˆœ~}ż.Ū…CdŃįČ0I @V_ܖņ w¦×\ œŌōńO†³üښõ„›µĶ„©äįiįĒž|ßßo0 1]y£‡æ÷9 @V™G¦R!՘üŪSøó#Ś‚·ē?śéĖ7KŃ>q‰a*÷ŻyśgDĢ(Õ.é›:„Ó眪TķĖ'WČŖ§ˆ³ŹęnøŻ]7ž91“šm„ś’ĖwvÜ2žw‘żĆĻŽöEr@¬z÷ęŪśŽ¼ž÷‘‰É£÷lf”ŪØŁyÕĒƃ“‰o¬’r@äBüÖźUėųż¦=Ōõ-t M5ÆžĀöżå?ÜQS¢–®?×FŖ–—ń.+»½qoqÓ±o&† «+ÆńƂʅoCS®¾g×=ŖŌŽröG„å*f`Éye›?d*vwķŽ”±Ųmh¢HÅęŻæ„Źf.ŹĄ’+²ŗZrõēāįŗŻ‘ą/“+µĀ ‘¢mņ™ @r‚¦•”KyĘLėyæ„y¦‘DP 9büłXVå»­ÜE QÄSK¢(Ģ«8Fφ:Āż‰Õ™Nؖ€®(¦I.(ĢaøłČ·µ‰“ļŽ Õūœ½.‹dČĄŪ«°ŽĮ I¦ŪŸŃ.\»9wīߝå6…d0¬ YCUł=mJ÷˽‡B#Ŗ„śźŅ-V·b “v¼lD_łAX(Õ •č8ā;T±ŁbĻ_[ŌšĖ«³wüÜ]±óc%WŁ'^g[²ĘYūÖ’Q 2@¬}o· 5«©¶^qŽō§ēŪ^&¶[½å‡‡ĪģøÆb—eŚ•[™TÖ²łśD'wČ;Z¤ÆļŌ¹'Ņ” ‡Æ]Ļ4Žnč.÷ā·iµ–Ö$ćēžKŽ\’{hČźŅl#o…»MO~õ[?9öloĖĄ×`X ’¶yŪ¢Õ>ų©ēĢļ²–¼źżų‹IĘĪ<µć.Mķ=ś_÷ÕåŹ€OD±:œÉ0ūĄRā*¬·Ķ֍Uñ 7÷Y²±¾#æP}D[žŪv§¦“vw}䚷|>3“ >,1a½m²Ł¬„fsÓG:^ä“¹Dł S]ä„¶±`ļéĶ·Zm"åk+×ÅŽ[Tē4€åĮ!¬·MēļOV5(Šˆ”ūV°ßź¬ßcs§”Į£»Ćé\äü‘vŲ¦>eäåž’@¬:Eī_½'µUķüLézS·h¦˜f&ÓwBĀk…ŠjĖÓdń÷żeåkĪõ“3 dÕŗ”äž½u™øļøÆĶęv–Éīו”®Š¢:Ź×åWVķs-ź9¼Ył?۟h&_Č*v’įÅ¦-!R“eėŻ£'Ū^Čų§~-Ū¶óžÅœ1åģ3_¾c4K¾–ƒöE2Xķ½š‘@¬rŖ"=Ē7ŻcQ§ž½ÆHć­y5VMDЂ {?ƤņJDĢ+¶B×sÓź(UßŖbšęĢw=EF ›,6_{øŻ^Šłŗæ§|Ė®ūę*L‰Ž‘& $‡˜š"5Ū¬Ó.šNĘƁdŅ’VŪóŖ!b/Łń”šėµ9/ŖĪ¤ÓQSįīOHĪČźūu·LŸ-zŽœĪ&Ć¢•m«Ü]¶Ż2=aŠÅ²į£ĒŹō ™ @rBĖ©Ąš{īŸžMķõŖ謌^“„øi>gĀ 1ĢČHū3FŹe÷Ē&×P8‰€YŻLó«’»|Żōoœžµ·ĢoŻp2ŽŽ×œŒ'Ē’ƒZVD±s ĄJĄ£L–@‘õÆ’¹īĄāÖM%‚C)„°Ī„„µ¬ˆˆ™Ÿ€ $GŲ6żŖŪ»øUõŌł‡ÓƒŠI×`ÉI¦¾Øņ0D,IpČ HīöĒ‚:…ĒÄźņˆ ĖšÖsL ¹Źįvä-l`o Ćéźxi“§õIņ@ä¬d&» gę&²1Ÿ£ĄjŃ²Ēž%!?HĪŚW{öįT|Žu“ õ§,Y]$ÆŽ >P ¹ģÉę?ūō‘Ćó¼{Üa·š©…}É’óųƒ®Åę·lAž»ÜŌšN’ $ēŅ/Ÿłń͇æ1Ö3ג¦„#YŻ[?š‚Źå»V0.ć]BßSŽŅ½hMõ ¦"¢źŁaĆM6˜@0Oż‡SbhZVD5,–“]M‘ &ˆāR<Ó’wé=Ŗ™ī/Ø[&lņŖ)L yϧŹģÓ?;$#Š©*ź“¢ˆN¼)ÄŌE,eę© @ £h¢*lÅu×ø*¼ vƑ22±įHĒȹ`njiE1ƒŗUtÕTL²@@DÖ¾æńݦyīĒm’ᨺź§Ū]P¶”śĘÓūūuŻ L[0©‰āNŪ¬qJ‚ÜP 9Ī»¾pūŁ µ$cZŅŌĻ’ČQfwU^ķpļž ]"½ēžń5«ĘŌŅ™¬Ńӗyļ-÷X6YBw~¦Į"¢;4‘¤®īłü[ß0Bćæ8+jwēՙféęlj“ķä#¦~[숒äŪä €YõnśĻE¶©O†%_ ŒéæėźšW&’ÉųN ÷%Ę÷n«Ś=֚ņQ (Ü [™yČ鶏Æ+ž¹DŃŗ¦÷ZÜՊ˜Ņu(xz“C(6oU°[5)+ ē@–iʌøć’%ü­žV­pļļä•(ŅøWöʂē:īREÄä]!(\ž”4ŻiœLEm^ÕźŠśDœåÕ{ƒ=m]‡žµÅf.M’ $WŁL]ѧ>ŖfĒ/^$Ė„w}r§Rź’ź`„ąQ&Ė=qčb̵L&Öy<S%#/L ˜lp}ś'Ss+jtĢrįį&Õ{-–X0mļ~­ńʁcä€Į¬¼µ;>å)LD‡œŹLŠˆ¤"E×jŻÖ#ŁsČYNB(Ģ*Śuäė%kCCš¦gʏ.śNž™¼ÖśL„P øŒ”æ’°Čō“SS·źø½ä`åą$ś;ˆ“@`1¬łd€Į"8܊F (,˜Ė!NR@`įˆŅPH (,¼@2ł„¤€ĮĀw–éę4: ‹Į…¼(,Š@`q¢šR)ʰVģ,,IXxÖ;„iæśž’ ĘO6oź€Į¼&E”śėšn v?ł±ļ<ä%¶(ĢEW«wźŚ[EņŹG۟’•ļ7’” @0ē®q_uoŁö„ĻS"’ˆ’ųµ óP²®r»ˆ§DDdč0õ`„į*¬eSä1¦=[WW³=iי7õwš4y`Į„æų±f;’ØjˆŠ·zӇŻUž3ŃŽŽcٰˆHéÖŖė'— ž|a›4 ""ÉčÖŲlĮĪL¼~Ńśp÷™’W~ՆTļżõ`įŚm÷Ł]“KꕮżƒžµŅKfV’©nc‰}õÉŚŻŽrUDL v7’ 6˜q7ķoŚoo~gļo9.zóĒéGü3&ˆČĖ’VõRIŎ_³ø4ķč÷2#"֘MqzŁóIõ’7–lń©b€•ƒ“čĖę'ßėŽtžųö¹§¬öõļ’nø9“ńŚl/I4š E+ ‡°–Ńæ²¶XÄ“–m:­é““ĘĪū-³¼łÜ”³O=—mģzįџųtŅ@ä|\lóŻõ7\i-]õKŸ'=Ės +NÜwåß5Łż»œČ/42®źČą_ü>‰ @ "">cŽSS6ŪM_’ėŌČ Ąrį$śŠ“W:ߝ’μńy @0!īŸļ’ŁĢó<ā‚IÉŲ|o÷02¤€Įš5“šß’®üOÜK^(LČÄ4u¾;oć"/H.R.żŹP6~Ąbßź† &DĖ…Ėx—ÓEwqšŠ½¤b[ٶyÆn8« q”Žųē Ł!šź.!5¤į&m^Ė ·„Ī)=h=’ß&6Hn3Óå)RęµģŠ›ū9„ĢP kĮ֏•lÕęײöž/]S¼{,Nn(œē((ß6Ļö¬|ķś––*źC­Ū«Ģ{iSWĆL–÷,§‰ÖšTVī’JVķ??Wä!<H.æĶéĆÖ퇒ŗOÜCx(œ—5¼U \ 6 „]`dā"ĘŽ-lČČ!r@ä<‹K7āŃh`žkd²?ÜP 9ψśZóӉѳÆ%7H.›ø ĖLšĀĘłÆėńė„`¹qČņO ŚÖ»źnP°Fš© @Øeū=µ{“† ¾In–‡°–™āŖ¼vak$Āg~Nn(ÄĆ} [ĮwĒ’ĢW’ėˆŁó¢¹ĄunłÄ½$€ÉyĪŹ…®aQÆłļMn’@äø®Ÿ÷¼j [§¤įžÆ’ $ĒŃ3?<üĻŁŽŁ±é×īŪCv(œ8×÷ŹĀÖpŗ÷½H#9HĪ;’t|o9ÆŻ÷Ÿ!7HĪÓc'¾N/h×)»žto)É @r^Ø£ūł…­QXy§ŅP 9é¢Ū»e³ Ū@ž:B@@2”#¤€Į"ō1 ‚…óµł;ēæ“)é$™ @ "Ŗqīń¹ßŽnŹhO4‹¾šĒ?’$™X.¼d…ńwł;Kš®¼Œ"ƒÆ}åÓ;ņ_č#/L ˜ Gæ•ŒĻµŌʏ|tõ€Į Ft¤y®el¶Ż_*aß @0Ó© Ī9]ä­1<$€Į J¦żgsJļyÜ&).2|*0Ē弙 ) @p Óīžć=…r@`–Ż’ģ~īJæėz …”P ˜EĒK/\ž4H×KĻ}“ŒP ˜Mŗå±®gÆŠ VÖĻ!,ˌ;ŃW,Åly4ܳęOńĢļ é|ķčĮāé&#.S!GN®»„ś§gśŠøõƒbX<ŹWĶX>ĀZéŅ­O½š„–‡§µ¾uūĒņDŅ„€Į•'‘T׋ƞ}×Į¬>žŁ”“ß}ä+&Æ@`%’myäÕoDāš7ü:™ @r·”…-ė;õ½DT¤ó‰Ö×IĄrć$ś;©ṕ7Cż„»Ī?ŠL(,p xį©×_!ĖCXļ8ī|2@`ģ%d€Į"Xģ ! @°pŁ(7€ @° (,Ŗ?ld€Įbpé5 ‹”ĒČ‚EH‡É‚‹Ø#m¤€Į‚%ōP ¹nä:ģ<Č‚Eˆ›/²°"pIč2tvA’M0 @ Ņ{ügšŽÄ!, @€€P @(¼-x»9 @@( @€P @°`"X^¦(ó-qĆ$.&Õ_Uµe>Ė%¬g“>ņ@`B„"¶ł,wj°—ś°¢pä!” ä  6’<ÓN (,PFl7ur@`A eÄyų r@`B¶Ÿ=$ar@ąE™ĻRv£ŹĀ tĢ•)®!Į £“q~»€Į yb'ČP†}f’P X !ó…GI‚‹…Ķ) @°@¦Œu’  ¦ˆĶ>ß[€Į4%[k7Żų鶛č jo~qĖžFgA‚Ē™ @°ÄP·=ߊ"…d€Į¤ł•2ó½.%žź|‰øP X€ŠX"eဤČĄŹb!‚•­”²ōī²tkÆÉ0`!<ŗÅ©+ŠF(,Pq<Ŗ$ć^'IXY8„µ¢Å,݇ŪLź eĆŅE˜@0Oī¬ĶJ›™ųéź‚…(6mZ:›n#@`ŽtµŻŻšõƒ§GZf_‚gd @0‹1ķÄĖmĻū£Ż¦>ūuד€åĀIō+ œ98”ŚŽ)įĖĪ(Ćä€ĮEŚc5Õ¤ÕžęófśrĖōµ’ ¹Ź£f›¶vŚ=ÆKš4¬<œY¹ŻnØfBķ>’ 3]ń*C‰XKĶ÷oŽATVąęĮJÕ§Ÿš–Ēƒ‰“6Ž€Įü%L[i8TPÖŽ7ÖLVa­Xn§7Oü‰“Śä^Z@N(\ĚM$‚=aOń&Å{¹eŠo&'.¢±^[Iłępl¶“ķŠ¢hŠÅī!'Ė…s +–M©hJŅQc̜åNtgIõFgŖż€ —L ÖŃѦ’t$›ķjß U[vģ»ĮĮ-†(\,«V–$ÕL¶üzwŃÅæ)®M7Õ+Ž ) @p‰üä:éó;Q’ÅæÕWŗ9x€ĮåŒIiiƒ«čZÅQ–?ó—īŽ@Š|P øÜα'õl&[“”šCŪÆ™ś^Ń*¶E(.»sR=‰ØZœ_¶«¾LЧ¾7õ”cĻ…Ųw–GŅW°ņL©µ':R|3äQ4Å&ÓQ<7ßceó©f§H½šŌĖvF#MŹ×µ5¶U;” æ\RZšĻü€Įe¤ŌvÕnqĒĒÆ,Ł“s@©ŚŁ;ųŅ’6"W(抄,žvEsč[2Å qmp®UJ» wøR}×]·s‹bOXüÜ€ĮåŁĶŃցW‹óL‡Æßķˆm½ÉꉳE9ŖķXŠ Ą²į_@+ž+³¶~Š£ś“śŚ»<Ī®ÓŹĘ×_L†‡˜GÕ‘€å¢˜d°l>šėMīł,—Ńt5&qIY;†ģy=™HtŸ ©ę`ÉĶöžērVŻŖ;Dl}~G¦ėgbzćī|Ր„b59 €Į\ŠÓ{ÜŻåÖŹbu +Qjó"­e½#­$€Įœ“ČŚP¹ÅŌSéŒf×éõ›ü…B @0ެČ6GužĖIgÕ";‰ @°Ei‘:%£ž @,īy³źy¼‘ @€P ;ž?ÖL/TEõIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_12.png0000664000175000017500000001573214632072346024051 0ustar fabiofabio‰PNG  IHDR ™q*UüsBIT|dˆ pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<WIDATxœķŻyp]×}ŲńsöÄF$‚;A‘")Š¢DŅŌFm^äŲ‘÷„nŅŌu&žiÜÉōLÓÉLgœ&Ó?2;žvœŗc·qlGķJ²dI–,K2­…“DQ”øˆ H‚ @ ‰åŻž‘Č–(Q\šp@|>’ń½‹{~śOß9ē¾›¤i€©iΚOŻŲµį‹+ 9Ćšé£„ŪōŸ¾Żæļ¹ƒ»6c €‘¢ @4ˆF€Ń SY’žÅ~Irɗ  D#@€h¢ @4ˆF€ćuÉļ" @4ˆF€Ń D#@€h€)-)ō—E€Ń D#@€h¢ @4§K‰¢ @4ˆF€Ń D#@€hLeI’z„Ėx ˆā @4ˆF€Ń D#@€hLa—ń Ž “\ĘˆF€Ń D#@€h¢ 0„M†7\:D#@€h¢ @4ˆF€Ńd =påFĻ>¾ūéŃBΐ=—ęFό]ʵIš¦=@Į, "D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h€)¬qŽśęŅŖ…žćR ˜Ā*ēv/ŗūĻ>;kŽ×$I’zž‹Éz`<’P7{e¶²±ūęŹĘīÕ- rźšŽBOu!v@ą*P\^;6kŇgĪ»õßŖ}Õ}«“$™”’Æo®"53{2 ]뫚ęĶoč\óšń=Ļöz¦·š”U\¹liåhKĻŻ]’ŻĒē\’™“$)*ōLo²W©Ŗ¦łiEżœÕ•s»ź;®{šÄŽ_|7Ä\Å2ŁŅ\óāŪėēnüŅĒf_÷‰ė żlˆ˜Ŗšē‡ņŗ¶*:»jŪ—?0°’ÅžBĢa¦‰¢’бÖe÷4ĶŻų„O¶­üȊB¼7ÄL353—f*źgæÆ¢”cnec×CƒGwŸŽµ¶˜†²e5c³–ømž-ü©™ĖŽßk]ÓU’„ŚŁ×—×ĻīŽµ¤¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń šl”€«IYMk]ēMæ’Ń¢ā²ŃėÕ“]Sc| GIQ¶ø~ĪźŚ’ŖĘs…že2r ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ P`išK =C,&Ų{ʂ„ß»õĘ[æžG„„ūkbĪT(&Puķö–õ·ķĖ] øīß¦””łč‚ś¦³s+«{g“w>|ķĀžļߒ¦£WķŽH¶ŠĄÕ¬¦®·„®ń\׊Pß±Ż;ĀSo’6 æ|āĆ߬®Ł?ćxߢƒ·®żĘgĖ+Gö¾¾ēųgę-ĢÄK€ĄŚægƶ”Óµ9pbīįwū~l“ihųÜ鲞Õ÷ßłŚĖm–”eƙ”ĪcÉUŗāL $ɦ'Ž­Ś›Ė՟½Š5ó·\?oÉ”Ūkź‡k^{łƒ'I69cLv@ Ąv½²lK.—KöķZõL”g™hv@ €*«w4Żtūƒ_..=W5xzޱBĻ3ŃP&3Rœ-Ī•–”‡p՞¼ś G° €N ō|čĶ::Zw6“¹JŸ< –Ė5e¦É٤iņŸ W‡$ /čłĮĶm/ĻdŽ•zžĖe¦–ö- ^³÷CIB_ļk;ńČļ’uH2|x$MĒ’Śŗ—fžčźKCõHĢYߍȳ4Ķ%] “®µżń%y»gn$BGz—æ¶gGĖ#ĒūJ÷ō«Ūõ^ńBms~¶tƝüɊu’p_nģLQšŽōA; gÕź—¬Ųń±3ƒŁćßXūŸ3™ŅÜxī׎łČй‹^ŁüŹ‹×žąHļŗW·żźć÷§éX’$EżŁ¬ž-}cc¹“Æ·j’m÷žķŸõõÖoŻśĖĻüżxęy6tjf’®ķ³48X}|¼ńB5uĒfÕŌ ·U×m9Ņ^ !„K‰BčģŽŗ:[œIŠ‹‡Ė‹³¹²āßüÜoa6BäY’dsŪ·~ōĮ|Żļ×Ļ}聿»·æ0pbÉ”ä2¢čoŁ××{ņ•ćG–暊?6?^čŸū 0Ée2%¹“Ė^n|„½›¶Ų»iėoļ•ĻÉ.Ÿ‡Š€h€)ļTquͶYiš+čOģ^ SÜŖæū‰w=ü'­m?_XčY.ĘCč0Åõ›±»¢źlóéS-Ē =ĖŘāöļYõāŠéŖžĮSĒ =ĖÅ8‚S\ĻŖ‡>“zƶŻŽł³k =ĖŘāŽx}į/ĘĘrašTm”g¹S\iŁ`U6› ] _ŗ©Š³\Œ€)īš;vmožiqÉ`ćĀeß½=„“Š#]€)nd¤ypĒÆ×?ŚŠ4ŅŃŽŁ{ÓŲŲŠ¤ż±)W‘įö_żüŗÆ½öņĢG7Žł?’صżg‹ =Ó» pUHĀ‘ƒ7½RZ‘ÉÖĻ8ŪQ[`nšĪ„BšÉär§Š =aŽł•ę†O¼±åpQ¶t,ĘrIQqåŒī›ŹŽü÷Ž­÷üōŲ”§.æ~ė}µõßlę±ĻcõśæūlżŒÓóžxčC’õÜŁĪ1ęŗyt¦’ą@į[±ÖėXū¹ftß“śĶ'IéX’ń%{BŲҐ&’üYHBI¬™Ž‹€«ĢŲXĖąO’ésžĖ%aåßžŻ5^ŁŚóh’žē±\’ŚįŠŖ] mĒn ¹łKÜyśdń”Ē’ßæłj’ē 5–€«ŌŁ”Ī[ž¼īėC§«N.¹öŁ÷Ÿ°(ĘZ¦¹Ņź¦\ėŅ»n®n]T3Ńk  Ō“]SŌvķGļI’¤h"×ń3¼@!„¦…778ø!„ščD­a!„É–ęZzīŗ¦µēžy¶ĘDŻ˜zŹjfęZ–Žqkķ¬eÕq¼MŻģ•Å­Ėī¹+I’¼÷‚g@`ŚKĆłoJoZtė̳½ėBOęs%; 0uĪ’ńڵ›¾ńå{źßśyQqłXKĻ]«Zß֙ĻõLc­—6¶.©mŲ;óüļŹėŚs-=wo.­nŹŪ›ŅĮ€i* g‹ķkzeßė3_8tąĘķIņĪkźē\Wұösw%Iņ½4MÓń®)@`šjļxņšk×ķ¾Æ÷źē“äƒU3^厧’$ūŪŠH’Š“čöö3Æ!<=Ž5Į€iźčį»z÷U?w`ļœē-ńw_»ó¾Źź×šĪæ.[Z9Öŗōī5M 7µwM; 0M;;g`Ė_ųf!d³!SUÓß4x²ū軿ųnŌΓuéŻw”ÕĪü_gzĻ^éšūvßö\!¼×›?ź»ÖV“ÆžŲI’Ü„σą’$I&mY|G繁ŽU!„-WrĻ€—,[V=Ö²ōīē­ĒĻö^ \–Ź¦īŠŚsĻI’”\īß ą²5Ģ]W5÷}ø9y·—‡¼üFeåkk7}żßĪé~põ{]—dŠŅ–%wtĻŗö#+.ēžųś¦½ķM3‡7Ļ<°ōb×—׍µ.½ė¦†Ī5ļxwȅų,ą7öļŁ°mdøųoŽźŚīä᲋]_\^lŗ7I’’‘¦éčÅ® Ą[>øaū©Ž—Ņ—ų§ßĶ•\4*žEīR. @˜Ńō«ĪyKŸ»}×+Ėé;“ęõ4¤é¹“‡N¤i:œĻu<ÓTšŽ% MOwg³ūjšfīZŲŅ6ŲÓrO.—†ē~ń±ļ$”|,ö ž€ibъ‡ļiėģ_ÓÖŁæ¦eęÆęb; 0MlŪr÷÷önżõ™”Ņ3G]æ3)Ąv„˜&ĘFš‡†N×÷÷¬zńwŗžäŗBĢ @`©Ŗ9ŚXU;ŅZ]w¼­ė;‚ÓČŽ×ożÕŃó÷ žž{4IāÆ/@`I’¢thpÉįBÄGŽ`!„ę’Ö¶Ÿ-®­ßŚ>‘Ė ”•ļnXuӖ?øö†Ē?—Ė›°Np gĪ“õŲ;ćéĮ“5‡2™ŅÜD­#@€$ec/<żŁļLō:Ž`Ń Dć ¤éPvłõß’ąĄńū÷¾vē3ŁŅźl÷Ķ_¾užm_¹čééŲhęČöž<Ł»żäÅ® @Ø«ßŁ:§»oćɆ{vŽ>[ŃŠ‘«hčč¾”æ>}“ōčĪĒ_!ąāśO,=°ķŁŽohźK’l:Qė $I6Żūśæœču<„D#@€h¢ @4ˆF€Ń ¼Cš™V ĄŪĢ]t’ś wžķ×Ōžzf¾ļ-@€·©­?1§¦ī\[eĶц|ß;›ļ1„yŻTHÓŃä¹§~÷’ģŲ¶÷'ƒ§ö%I>ļn¦¬$IJŖg.Y”ÆūÕÖæŲ¾įĪÆ„kĮc«†N/>’$™4_÷~“€)ŖcŻ66tŽP™ÆūU×n®­nÆm8Ś‘Æ{žĻ,˜‚筟3÷}ø$)ŹęņrĆ4—;Ņvąń׿ÕɁžżł>zõ&; 0Å$IRܲōĪ[ŹėŚó!„ęYæ˜óūü –żzc’TŒęė¾ē 0ÅĢYūłõ s×Õä󞃧ūO ”ōžļ{>G°` iœ·¾­kĆ—eŠJņ¶ūBƒ§yüĒsæšdŠózßóŁ€)"I’lóāŪo­h蘐H˜čųA€Ą”1ēśĻ¬›Ń}S]”ēS@C׌֦E·]›É–Nų.ÅD 0É%IRŌ²dóķ•s§t|„ @`Ņ›½ęÓkgĢŪŠp”ļscg‹bĪ3&±†Ī5MM o^UT\>v”kŚ»~r]&Ó[s®+%@`’J’$Ó¼ųöŪ«š¤ļu݁½·mY»é{_\¹ī›Ÿ,.魎5ߕ 0Iµ_÷‰5ó76_ģŗ$)=v¤~{[ē‰ė7lžūƔ”ģĻėK óI€Ą$Tß±ŗ”iĮĶוTŽ^Źõ;¶ŻūĄ‰¾²Ż„幚ņŠĆu!„¦cÉÄNyłL2I’dšݶ¹ŗuńeüUÅČ ĻÜüķW·µ<Ōµč¹[’9>śK'lČ+$@`’i[uߏĘ›Z/÷ļNŸ\xxhر·¼r¤&„$Ģh~eödŪÉzą·źfÆØėZ’Ų„U—tōź|ölz±¬ģDÓźõ’ż_%!WT”MB_ļŗłžóJŁ€I"I’¤yńķ›kfõŒćŹ3ƒĶ½mƒĖgĪź©®>ö¶‡Ųs¹įLqÉ¾Śę ²3b&‰¶•]Ń8Ó¬Āķ~¼id¤|(MCH’$ĢļyżõßģŚµ£ēÉĮÓ 'Æ[’Ąē‹K‡kūŃž<„ź‘<~ÉL53—VĻŻų„‹ĖkĒ!„P]{¬9ł—żŅņPŽÖÕæffĒkŅ\в™pōpŁĪBÄGŽ`@Į%I’“,½ssmŪ5y9U7ć؜ó?Ėd’P”Ķ„Ńį0ÜūFŪsłXēJŲ€›µāŽž¦›f‡$×īG¦Øæ“{įc74µžøęüļŅ4„“'Šļ+c÷«ļ’łxÖTÕŌ]ٽéĖŠ+źĒ}ōŖ£ū‰Õ —ļžp&óĪ”CūjžöńO’]!$<åH’$”uŁ6×ξ¶(÷ŪµćמytĶ_?R¶;— ¹·~—ÉŒe“Lq.Éē.ō÷1(œŠš¶es’$“ęćfI’MūŻųźżŽŪ¹­żGo~ž¦!ėk~5kŒ—€JĘyŖ¼bwCI鮆·ß³(=urĘ”7’}ä`ÅĖ;_ŗė‰q-”'¦Øā’ż5ė7’ß’°źĘ>766˜­ØÜ:«ØØ·2MG“ö®×ֆ¹3ÉŠ OožN’öč՛<„STUĶ”†’²\E}ɹŁ×oüߟ®®;ŻłŚK]ė›»»ŗīt÷čh’Ū±už?ž;Ū1PčYß$@` ŖmŲŚ¶lõ³Ķd’É„¢Y§® !„ŠźįŖ}»—öžü”ņæ(«8UŃlł¾BĻśV¦š4—ō¬|ź#u3†gæõćё0rx_÷ö’pöL÷±³g±Bx!ž€)¦¢rgcmÙη~–Ė„įåē|·’ĊIµćq>SH&ÓW¾ņĘG>•-NŽö‡*_޽só3!¼ó%„“‰#X0%¤”µķ‰%ĖV?’ÉņŖ“ś­ß9XõŅ–'>ō­$)ŹĖūDBa°ogfąĄ¶!y{ŠTĪčźŖm_qÅ!@`’+Ź©X|ĶĆ·u.8|s¦(yĒĒń¾š=££3†ņ¹ęș“£Æ=ņ—„iś¶Ÿļ]śĮ’ņéBŻ•ŽW€Ą$U\Ü[5kö Kŗ{^»«Ŗz¬įüćUC§““G6m)LÓsEIR6V Q/™€Iؤt_ķŗ[ļ’RMŻhĖ»}’śö¦G^~žīŅ“ī\įü“R“–‡Š`’))ķ­¾ž}’ō{ŠįséČ+[oyųĶų˜Jģ€Ą$ŅŠō|ĒāĻ~°¾qxĪ…®éė­Ż:6Ś28‘s”×Ļ.ź¹÷«Ÿ_öįæxŪē3ŗ*Ęs_“E:\4gī–›g4Ÿ™w”KF†Ó±m[n¾¢n·“ŗ9-­nWl¼G°`’Ø®ŪŽŚŠ<Ōł^×9Xūüš¹ŽžH#址I¢¦öĄ¬’’±šĮS™žō]ŽčŃ»Æź…­æ¼ó“żeƒļÅ,˜$öļŻ¼åŻ7½ŅLnīŸ­ģ˜æė–źŚį™!IBļµ[ž{źcß ”b¤Šsއ€I"IŠŅ¢¢šį4KFĒĪ”=žć’Uié`YQɹā”Ó]Ē’$›·7Š€I&›ķ«Ø­l:R:–™3F¦Ī{>.F€Ą$36Ö:ųņ Ÿł^”ē˜B¢ @4ˆF€Ń D#@€h€I ”éįžę®’÷_˜€IąŲ‘Å{B’I =ĒD 0 $IŪéBĻƒ¢ @4&¹4Źz†| 0©„!„±«ę’ŪÆš’€)htąĄÖżCĒ÷^ń ’$SŪ“š–Š<Ī4”Hš¦Ć!„Ļ=ę¬łŌM oY™§‘&ÜU³•L~ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ł’o<³b‘jųīIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_13.png0000664000175000017500000000115514632072346024044 0ustar fabiofabio‰PNG  IHDR ™Fō„ĪsBITŪįOą pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<9PLTE’’’@P0`•@f=kœBk£Bl¢@½N|ŗK{¹K…ÄQ‡ĒRˆÉSˆŹSŠĶTŒĪUEyĘ=tRNS24—˜™ųųųµŠIDATxŚķÓĒ Ą@ Įsα’bżęZ3%,l)@m÷k䀦|^į䀦ņ¼į僀AĄ `0 ƒ€A ƒ€AĄ `0’š¶5콐Ž@gq&½8IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_9.png0000664000175000017500000003050014632072346023765 0ustar fabiofabio‰PNG  IHDR ™q*UüsBIT|dˆ pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<0½IDATxŚķŻwx•ežšq,‰®:¢4+bAi ½w’sB ½C’s’@č5„$ ؃•"¢€ō"Eé³ÓggvŹ»;»3ūĪģģ¾ėĢč8Ž<øĢƒ# Hrųp]Ÿ L9‰ĻļŸó½īē~īRĒŽ+gėöšIµ£»Ó›d½›v©4¹!«ÜżM+šGÉć" @ "@ €A€ @‚@€€A€ @‚@€€ "@ D€ ˆ ‚@€ @ D€€A€ @ˆ@€€ ÄEą,Ž8ż¹õ”.Õ?1üRĘG£1[¢UŚMź}C…ūÆ3@ ŗ®ģŻ7TnķÖpä†Č%‹Ģ}iō|fŌ¦Ō*j”+ĢE€{«WÜ^3ł‘¢7ž#ƒøTńQų›‘ūšGŗ\_īŽėĶE€ƒJßńšM÷·Ī 7½ł’­z$DŽÉØŃ­pČ-5:V6@l®z\yg^ukõłę˜K¹×£Ī€„w7Ҽč÷‰3@ ŗ¹RŻņUŚOīŻ8m[äŅm2ß­Ņ~JŸ2÷4øÅL±¹źqÕ]õū5®Żļå“K¹É¼fĻE£ļ¬Ż£N° c.€T¶r“;ŖušŁ/!cgĘ„ŠĆߊŽ×"Ņķ·V’†™bsÕ#®R£!-ź\qÉ 4|°ūÜ!·ŌčP%ų…ĢE€ƒŹWiywnłƒ‚§L]²Mę—gÜŻxh«¢īˆ7@ÉXÅøŗōµn?÷$ŽlWočźKĮ÷Ŗ¦ö-so£ŪĢP€P‚AQgĄ²ń †æ•}¶£{.Ł-W5{=;śŽŚ=ź›ŽĶO€P¤įČ Y—ņ¼Ž³Śd>b}侑¤*æ˜żnųƒé»zü.å±ϟž¦?1sOzĖ k&ē·É¼rā÷6Mkß:+2gōŠ‘»&oėżĖ1+Gģi:vcÖß¾ńߗ–Ż•!@ œ·»Õŗūī&Ɠź[›¬rt™½ą±ąļ‹ĶsŽĢi9~ĶųÆ Į)ķę‡(AŖ·øĘä­Éæ V>F,lL[9z×ōwzü.õ™ÉÆ&fīNOˆl‹$F×g÷yjĘ ž›“<ų;¼`Ī¢Ö—NMˆl$DwŁ VGĪ&:ĢxiFxĮ“oF×:š¶rĞä¹óŸ €Ė@³‰ F½š¼yī‘Š±yß ’EaŃw˟öü„M=’=w_ųs$|ņēē +8”|,ųܬ=)ļg½ŁēĒŻ f<{6į0ų…q« Ośy³ßKłć˜×†ģµ|ŲŽ.³ ŸH[9l_ŚŖ”ļ śęčMAÜ@ŒØŪóŃęÓv%æJ\üÆń›śž|Ś®žæ9ÓēN—½nąwš n§Ś—Öl솱/ ‡nsę?Vp8ł³3½Nž”æ~|īŃŠ±±ėūż0uѤ„gZ]i8ŗ(@ī €„ė”vYs~yd|™9ūCMŲÜ÷gŃ5©ß½bšžŽON”sīÓ)å-ĻĻŗ’³“–§.š²4}Õ°÷Īö5 „>Ė~«ĻOZ䬜(@ 1 myņŽÆ' Nłļ tĪ%v‚U‰[ĀæI*œž¼A€Ä€©õ«g¬ ¼XņUä½śhԊ‡ŪLz.÷ōi4zSęĶw× €’¦Ū“ö½Ēæžiq ÜwĆ«(³ö…žŌfŹ 3 F$ j\„(B~Vœ$måŠż©‹&,“$mcBtg†A€ÄĢ5)‡ŠS€«C_Œ¬ļūō˜õM2·dž eļm\ÉÜ %Ttuʁb·dųƒŽ '¾š˜¹7]€ @bHҌNĆĒ® ’°øEȜżįŗē?¶@€ @bD\¹øŚfµJ³<ōNq|"Ö̽=ž§ļ3S_NĢܓžy€lĢ åv)(ś½ćĶP4аj’§’µ4eĆ“įߞ~nGq3·č÷æ±ļĻś-æbųĖ›ęģOśō‘n×0K@1WŗAéR‘U”#Å98ž^ˆĢ;>– łÓŪ­ąIX€ā¬Łˆ&m³Ö†æ3koŹū%1@žņ”¬Ć”Ļ¢Æ§¼7ā„”×LxĄl ÅŠąg»æV’Ććt‡ĀŸ“Ėl™b¶€b žÖų+»Né0xŌ+)«ū=Łż‰1ĖĆļÄR€Ģ=:Ö÷±.‹Ķp©n³٬vJ^§qƖ„—ē¬Oł§üƒ”c):NyB֞š’KžŁ.ģk1{\€K`ąÓݟŸ{46ƒćōՏĮ‹»æję€KØL•o\ŸõFųŪ±łCŸ«:ĮFś¢ųx!žÖų83G€\bu{Õ®Sp(¹ä„Å”ПĒo’${mŹ·Ę­KłĮ˜e”mĮS®&mIłåˆ—’_O}¼ŪüČŖš¾VéĶ;ėæŅŒ ÅióyłųŪņ&•¤łxŲ7“VĒWˆæö“’+€āīęūĖܙ°ä¬€LŪ™ņŪŠ¬£m&G€”@wÖ½óž’ ³ö„ž_!¾ŒŁ!@J GCµj–¤= S¶‡’o¹źå+˜ j—Õ2©šHØD=įj¦ä_ŗæŃü %ÄUßøźŠäY2‚'I•“GģNŚž×ø2qW›# „ÄGĒń-žœż^裒xĘGšČŻų žz…(1āŹĘ]œŸQdĪžš‡żv[\³ŪƕćŹÅŻXä†REānŽ»Āl ÅŌ°%ÉkKņiē¹ūĀ6„OŪžĻœõ)?ūVųżŸīöM³E€Cƒw_:÷hÉ 3ÉŪžSūq­z9P̽I/;{_čĆX ć§„ }’¶"¼§~Ÿz5ĶP\¤Büµi+’ß›{4ōY¬EČńSÓw$’æ¢ČŗÉ¬ ÅĄ÷\_zä+É; Äf€ä ’9%æėD³F€\bqåāāF/KŽ7ļhģ…Ē)« ;Ćæ{°ćC·™9ąź:µcŸ¼÷ĀĘr|œŠ£°óL›Ņ —PÆy§MŚž·ńo‡«·`0sOŹū½ēwfī€K¼ =®LÜÕ]¦“0ü…ŠŠČŖ”=+C‡b-@‚G ÷YŠ-×Ģ ÅL”Z-ę }K2asų_nŗļśĶPĢ6¦[Ņy’ģw“?Ž„Տ”KŗoŽ/­#@ŠßmYqÕŪW¹oüŪįŸÅR„ xŗūsę‹(¦zĻļ2'–nĆųtŅSęŠ(¦Śf·ģQx86žŽ5sOč÷÷&V,o®€bŖ’“]_ĪŻś dŅ–ŠÆZ„7«g®€b¼!½éˆ„…GB1q V’§ŗ?k®€ā»żš¬7Ā߉”Ć’§Ū“vю9­{7Hmš° ŠS€ÜmĪś”Ēց„”cs„Šb$łƒ‡:×xĄœÅHļ+ˆ‘či;S~›żfųŪƖ$/k•Ö¢¶ Š‘knæęŹ.“[O‹‰} GĆĒŗNm7Ā\ Åu#z™ø«Ē, ķ.éńQp(üéä­į_·Lkž`®€bŖĆøÖētH֛įļ ūfč•qR~4sOųżā £_ mŽ/½™"@Š±čź”Cg»¹{ų IkīņPŁ·n5L­_=gCų§s^ŚųČ}7üAĀ Äŗę‰(ĘźöŖSiŚ®šļ¾ģ ~žĮЧÖ$­‰/ķéÆŃtDć·’/Ł&ö‚ĆÉĒŚD›÷5O@17ąéīKĪō¦>oų£y’»Ŗ‘÷^čĆ®SZ,Ż ō_#aPćZćօ~šżfčŃ×S|Ż›Łgæś°(Œn6O@1×£ S^žĮŠĒAlŒ}+ü½Ģ5į#鯅w“Ū²OÖÉ?ž¹7ō‡žOw[ōeÆÄIü­ńqE!Wō:’ōõn>}Ś6ڼoü-ńqfŠ(ʂpHĪķ”ŃgA×9eŖ|ć” Ü­3𤽩/}®Æ9ź•äM_÷mXł“µĶnžQ„UåĶpé=ÆėĢK±)}Źö¤’¹Æiå f€ˆq”ÜN™Ń5)‡ś>ÖµąVUźĻŚśĆ×ĮÓ¹ &Ś6«Ł ³@€Äøų ńq‘U”ƉCÉĒę}+ ³ö…>č:µÕEæ‡3@ ±®Uzóö…‡C—ōQÆvß_>žJó@€ÄøŪ½ć¦±o…~:ļģū(<ślāęäßŌ×~Š, 1ź¦ŹåoŽæõÆ+ĶF$“»« ‡Ā÷,ģ°8īęø+Ģ‹{>ŹĒ_•¹&ł{YkĆßś|ņ+iĖĆ;&l ’āRŻ~U>ŸµŪ"l6€W6īŖ“×B»/垏æœŲž^čƒ!Ļ%-«ß·~E³A€ÄØŽó»ę‡½4¼É< 1®éšĘ‰‡“/y€ō,ģ”W.īāĖĒßT£ć#ÕķA€Ä Ŗm«ß7sOņŸ.œÆN–ū^ųS·‡’cęīŠūs„>ķ‘ß±Ą| 1¦tƒŅ„ŹT)wŪš’×Ā½Ō+!s„Ž}+ōĻuR­e>€Xݐ^.īŚI[RžķRĘĒģwCųL·%ń·Äß`&€Ō|dbÓŌĒ» xŖŪ’ą1ø—*>ęģż¹ńĄ-‚sA€Ä˜ų ńWEdzyĀŗŌ·]Mܔņó9­SÅ ÖĀ£|üõ]&w”µ6åƒżÅį¼ćÖ„ü°WaיM‡&0~cŹOū?™“ M“y·ų ń7ŗæęök®<¾²rküU]§¶–¹&|8suŹĮ¼żē~kד]į’ųt÷ēĘ,Ky»(j¶ĶŚ›ņžÉŃÓa\›d3 ” qåāā²Ö†æ{®qżfųūw}ų޳ż9͆7i6}WŹo/ŌmZ9ėĆ?)Šž83 ÷čø9īŠū[T½+œ×iböŚ”ļžĻŽńo‡ÖgA·Üsł¹= :OĶ?śä|£#ņzņ·?—üR֛įoz5iwü­ńWš§ ˜ŗÆiµ›‡.I^]r ÷ŻŠ_u"ŗ:|ų\žT|mśk”÷Īł0Ā£Ÿϰ%Ż7ĕ‹‹^ēšŪ®±ś!@(Ž‚ż½ęu’³!åŸ.Ō-Pyļ…>ģ3æėģsż]RŸčŗ`ŽŃ³?}ÖŽŠG/MŚ]ט% ˜i1ŗEݤ™Óėõ®Ū`Šā¤%«RöŒ^Śv!±lļ:„õŠółżŹTżĘõ“6‡’ål~NŚņ¤åjÜX&¾¼[­ ÅNpkŅČW’¶oŽó&_“SĢ3ׄ|• ࣗ†7ÅY ßo:,įQsE€SM†%6ĶŻŗØ'™Lž4qp£f_å÷l•Ž¢Yī»į?~ŃĻČ?ś“Ėäv©fŠ(Ęī¬wם#^źņķ‹ Ɩ$­½OŸŠ¬ ļ’ĀČ9ždŠ¢nÆWnvoisE€CėŻ]!gCč_Īvƒ÷’īåųlģŗšztžÜ’©nOęī ’žų āäOē qļĒȗ“v\ˆß7ifūIo_Jšä«Ō…]›- 8®~Ō-?ź•ä­głC‡ó:N "<ńĶG7iŌ³°ó“‡»=ō`üĪ“§ķ’&‘@ĘŹŠ¶™Ķ;UjX±Ģ…ų}Ūeµī˜·?ōwO`žB÷Mf‹(¦:ä“m=qSč_s÷…>œsąŌ’Š‚ćÓ)ŪĆæĪZ›rtč7C/%Ļź0źĖĪšøńžėKw™Ün`ÆĀĪSćĖ_ųSĒ[Gš·ķ÷D·Ā¾u~lŹÖšĢŚūł Ģ éÆ…ö˜+ + …k‹ÜTÆwĆy'ōšŪ%wČsÉ/¶‰4oāWlļ[āÆm•Ö¼m°9=øż*gCč­Ņš56SM›h«V”Y3‚ˆr= €€€ @ ¾i-UźŹJ·¹ķ‘īżūŗ"Wø..ŠŠõR§m‹4Nß©7ų± 5ŗĻ^µćōž•[f¶/ś\£ ÕŚßv쀮”€³{ƒZŖT|•öSś5Éܗvz€¤,˜óLž”Š' “äHždś;įß?ŌmäP›ŃœM|\ż@›ń=£{NŁŪŃuĪĀyM³×ė’ģų×Ī'ōĶōõUŚ ¹ž€ukĶŪnī6½CōšŪƹņ+ÄĒU•[d&%DŽÉ8ż¶«1+‡ļ›ż^ųOyūS>­Ć óŒ+īm2ŗcBĘĪSć#k_ŚšWŅ6OŪÕćwyļ„üqśī’5nĆĄļ}v">2×:Ś$k[ōäļ VP*5ŌŃ|1"īęø«ćĖĒ_Ūoa×ēs÷…’0ē@ų£~Ļ ][µż”¤Ŗ¦&Wķ0-T$\µćōÕ:ĪčY­ÓŒ^Õ:Ķģ]¤OµĪ³śI­Ž9·_õ.³Tļ’788Ėćō=Į¹·ōž×”/„æŻ~Śā9M³7dQ’4wīĀń›R’»/ł£ęćŽņ÷‡Vn™•rķ·^kN€’eā®®z“Vé„K…ĒYo$żó”ķį_Ļ=:–0üē¤Ā¹OžĶS«.€^ §æ(ōéØå&fžuoHpap»U$'>Ö`ų[ŃJ µ*UŖŌ•f&@(ĮzĶė<'ļ½ä?ZÜ}E÷"ŃÕÉß9qTĪŪż~rr\H©ĻLZl>ļ6§`a뉫&}Ń×Õī’JśE…ÜĻe^€¬Å˜ęmfī æ’EOžšø„ļ/.V€Æ;hÉČ­) r– xnŌ¦3}ĶĆį'FVØÖ¦’Y J°šŻkUņ\Ҋ¼÷B~Q|ĢŲŻó?ū>=żÅ‹Į-X3–äī 0mgßŽ]Ÿś£“C'1ŗ;½jĒéJßYó&ó ”PńåćÆģ9·ėŒi;S~ó÷ĪÜ6‚wÉ]œ±ā#¶räī?ÆąpųÓ~‹'- >ŽhĢÖč}Ķ#IĮĮ…f&@(ĮōėÜ3’`ņgg £įc“¶ōżÅą%ćV7»)ėbĘGpHtķ€<łēOŁŽėß„m‰ŽÕ`@K›Ķ1 z—ŁƒĀ ę,Ьz ’@ų£Sn¹Ś“ņ? ŃM™5=Ó^é»zž¦IęÖĢ‹±ļ£Ię®Čßl@?ž4óĶ~?Hˆģˆ@ŒHŪ)˦NŲÜė—³ö…’0ē@čÓ`õįōüBÖŚ  Żę<>æsī“…]rŸ*œ¹§ĒųYc× ųŠˆ oĮj5aÕ¤öÓĻi>īõ‰Éó¦=_p(ł”É?śøKŽĀ¹ā°Į„ȶć«ĶĘnĪź8ó©‚9CŸœvŲį’ €“%dnɜ¹'üūÓWArŽī÷O'Āą|õ[ńŃeö¢üÜwS~’EįqBī¾”?&F7f Ąe m&/™5ē@čćÓć špč³®y ē}Qd«'3¶F£»2šdmČNž[ųdæEV4Jߐ•ŗhÜŖæs†ĶŲŻćæƒ³HŗåĻ{\€.“‰¬|äō@Č۟üńäm½~p<.ž6>ZŽ_3>{]’ę½śØ($ž+očĻóŽa:6ūŻŠG_tŪUĮŹHśŖA‡3×ö’ŽšWÓ7üŗD€Ó{@v§gæ•śĆ fķ }8rŁ€ƒ£W >Šqʬ§¢[£ĮFņÓć£ż“%³¦īģõėSĆ"tzGbę;=ŸžBbęöØ \6²9kčKƒ÷{%msļ'³W6Ķ^›DGbęŽōV—Ni5aÅäæŽŖµtźĄoŽ[·?üAį‘¢Š(2mWĻߎ]7ą{½Ÿ÷Z“Ģ×&¦,Č\9aSŸ_|¾Šž ¹0ļéīłłOŅ;å.ĪOĢÜi5qõÄ/ŗ­K€bś¬}i ѝ_ōŻ+ ĮJI֛}<杔’žµ7åżŌg¢oōy:su«‰‹gymųŽąV¬įÆŪŻó‰ńĖŽÆ€µ|Ä;­&¬œt.›×ˆ Ę÷€›Čæ8BŽMk;eŁŌģ·~7sm’ļvĪūD‹ń˦“Čyn꤭}žOžĮäĻ '_ ņbę[m§,Ÿ2eGļ_]ß’Įjǹ>=K€bü¬‘KJ*œ·šLA²`ÖsÓß æģķ8~nĒ¾ä’ēę.źńŲ䗃MŚÖē_;ĶzŖ°Ļ“S_>qšy‹œ5ZŒ3ē|ß+@1¾r¦ę Ń‘„Œuc»Ģž÷ŲØå}æ}ćÆOŹ V7ŚLZ19{]źŚM=æsBˆą² æÕ"gå’nßé8cĪĀAßµåó'[%¬xœ8äBʇ \¦r²Ž3ę>l<düĘ~?žu”ĆC€Čē‡NxmņŌÉļŽ½bĢö‹D€ @Қē¬?šła;Ņ_ļū½öÓ/ģž"@ g°=Ś|ÜKÓ.f|€łü6¬ń+&·žųĀL‚ąāƀdnŹŗŲń!@äk%@äœ%¤ļˆ1q®źZ‘#@äœTė4³™{U:ו½'ެ—Y€“ž“rrēÜłO€TļœŪŪõ ³9oå$fķˆÅś,"@ø •¹»ĮĶŖ¶®|BnC€‹āī„įͧm‹œŻž÷Ā”ż“—§wĪ}l¾A€pĪīIŁōģܛŽ"穼Äč;ĄÅ ¬}E²+ā,_C€Ų‚@€ @(‰ŅbüŖIĄ× ĶĘ®'@ ø € ĪJ…Ŗ­īØX·Oć³qWƒa‚ąkqgķžõ‚@€€A€€A€ @ ‚@€ @  "@ Ä5 @ D€ @ ˆ @ D€ @ ˆ @ D€ @ ˆA€ @ %$@:ĢX’Ū÷™)Æ4ÉÜ .j€ŒŪŠļ‡s†…ĢY$@\ŌéóԌ"k†h1~mŽ `€’ ‰™Ū¢g=S˜¹;]€ @øØ2fåČw „Ž„›ĪæąkŖušŃ§T©Rם§+ĢC€ @ŽK]4łÕÉŪz’[·9 ēŃ×4žVōŃŌ#ēź‘Og—½·ńę!@ Ē x.gåČ„#w&Fwe\Ø=#'4¹!«ÜżM+š‡@€¤%DwfLŪÕć·‡’?k3ł•iĄE]éžæąń^ g,IĢܛ.@ \¤Ł—6ü•“-Yo ųnbęę,‚ą¢HbōŒI[{’ۜ”O†æ2ģńūž¬õĕ“€svGķõƒh;eŁŌιĻĪ9S “ž“|J§YĻŒŪŠļG‡CĒŗĶy|¾A€pN®/wļõ&ĶŚfņ‹3搞v·ü'žnX4ĻY›Ó%÷©Ā&ų6,"@ˆõ7Ž„J]õ@Ū ½Zę¼>a܆^’Ņ8ćķ¬¦Y[2/ōž"@„īNÖ.!cgFß§§¾œ³”ļO³Ööūސ3ß .ģ¾GƵ‹Žō?P°ćŒÅs²×÷śłø }Ņ4ūĶ‚ą‚)_µÕŻu,ūĖŽęć֎æ©×/‡æ:fk÷‚Ļ Dé;¾éį”§Fž|ĘGBdsęŠī ž}Źćw³¶G-ÉX?ō„QۚŽŻ˜uüćĮęó‹pHĖ3‹~·rf$@ˆ}qU;NļJddīN“däÖ^ ÓŽģš·pŽé¶ærR‹ń˧$D6dw/œ’ĄĶ}6asźOū<5żÅƳ3÷¤Ÿ|^Hą\ć#1ŗ;żī„įmĶH€;ńqŽĶŅŗoöO€–֌o’µ1»IÖęæyV³ģ%3z=‘³lŅ֞æ.<:6ļ[įćę ›s łÓ¾ĻL~åó“ŃßČ ^gčKƒö5É<·'iÕč^8“č÷‹7'@ŒØXÆwbż‘od+§@ņÜy /‰®;Óē‚ŽŌEŁÆŪŠļ‡³ß p"@N»¾’>’ŗuc37d7³:§qdkōóķŒ¤<–·øåų×'|Q|ŌśF䖼ķī3#@ģ¬~\ŁddöĢČź¾ßļóTtM×¼‹;ĪČ{ņävS^œyjxl‹{yšŽ3ž›}āc=Ÿ˜öāÜ£§Ș×FļųĖjÉŲMY½N}±’āōum&=—›±zČ”ąėēģ}”õÖ ģ<뙂ēö$F÷¤ßÓdT{3 Ęjfö=y“y›É~łŽŒ`?ĒÉÓwFś>3ż„įÆdlģ·xōŪ=Ļ~mĢkŸ¾r2xIö6„žsį‘š§'ĒJįįŠgć6ō’a’ē&®H*œūäCįĒFÅŃ5ę#@ˆ1•[DŪ’Mdœ¼Qōļ¤ĀyO¤.š¼4ynįS©ĻLy„IÖ[c3’ŗ©żV­Ó{HF½š²Ėl1čĪ:½ė·<…ŌE—OŽÖū—i«†ļ öjt/(\YÓ’ŪS¶÷śõō])’5y{ÆĻ}7é“čæÕ$sWäÄS±ZNxmņŌ=sbE#ų;’`čćŽ §½ģ÷ČŻ×ć÷_Ł?ņVŹ?š ŻtWķŪź3ūD€“ž“rröŗß»¾ßš[7.1ŗ.»ćĢy ¢;3ĮmU]óžš]3čH×9§>žwąóć^/8”|¬ßāč3ŽIłļ`5cīŃĻm|7ˆ V7¢_S³÷ss ֗*xüó§PŲqę’ÜŽ Ē/Kˆl§Ø§<6鄼ż”?ŸK|²ßLł–ŁbTõ.³^čĢOh7õÅ}žšžĀ°W2×OŻŁė×§?-ė 䨹bŌmrŗ]¬9õ¾;#=Ÿżģčåc¶ē’é dmųˆ¹bŌ] $^ˆĄHˆlĪl5ńÕ©Ēc#k{$4Ö³_ōµf-Οŗ#å?ˆą2S¾J‹ūŽ”łU¤Õ„§ó3w2V·ü¹ 'līõĖąÄō/śśī³)@›‹ v7¢__»’«™ņv«žĻ¦Æė·(ćĶÓ7ŖŸzKÖÖčŌ½žćōżjhƒ¹b7@®x°ūÜa4@žūzšHß/ūŗŠ¼¼gr÷%r@įš’W™‹ †Ui79|ī”±/­ß¢q+[OZ”w~”²)+<ņK“·%½r€Œ[—ņ3 İ{G“HŒ¾“1ų…1/ŗ31ss֙¢”ż“%³’÷Œą»‘5ż¾<Żź\ć£õÄU“¦ķźńŸĮĮ…6÷ųU'Ń[ ß7@ »ķį.Õ²b|żAO~0”ŸV½K^æ*ķ§ jš½bŅÉįŠrüė‚•`sy›Éóē§£ŸĻźĒ°WŅ6ēÅĒÄĶ)’‘ŗ(ŗvŌņŃ;ʬt(85}Üś”š‰ †]W¦R|é;kŽRŖT©ö„»³vĻz_~śłķi9įõ‰ĶĒ­šŲ$kĆŲOŹJĢܝ>biŚ–qėC?6ĄeęKä¢Vø;½Ū́ϺžņµØŁū¹Ń·× Õ,UŖŌuę @ ]BĘ®ŒGS_ŠTi?„ļĶw׿Ł<ä¢k4fkō–*›‡@€\t&Œ*_£Z5ó \¦Ņhō挪¦Ž¬Ń5Xn#jõ~|B„„žcM}1»qĘŽČ…Ū¾7żŽGSź›…ą2Gz<V±^ßAwŌīŃšį”'‡”Š`䜬 ÕZ4»·łš5ŗå¬3pŁßœ’ŻsNķ­;xUō†[Ŗ”5 €[°Ņź X:¦F×9żjtĶļ_­ÓĢ~eļK¼õÄ÷–»æéķėöiV½Ėģ”÷6’ś`Ҍœū[ey8üÄš³ Ź­²{•*Uź*³ \ʬxTķ0mŠ­ułŅ½'5,[¹A¹²•k<Ņć©QguūUtwzÅz©=N|?€Ė4@J^wķß8—×*sOĆ[īNŽóģŸ~µ%Z”jėę @øŒ¤qڶHå–Y=ž”Ģ]ē U;Īr.ū?ź y=ÜĘe€Ėď†k'DŽ9e3yµN³F•*U*ī\_«r‹hĻjg ŗæuĪȳ GS_Ģˆæ¾¬“Š—ĶČR„®®Ü*;%!cgĘ‰Õ[ģųȹ¾Ī­u©Ń`ÄŗHż”oDjõ~ī,Ÿ€µ2ūšoÜr“9.Ɖæ·YZäžVŁI‡Ÿˆ<Šf|ZŃĒ®9‡ļæ¢č{†ė G½Yž÷˜ą2rÕuWŻXī&m‚_Wę®2å*7©TŹ¼Ę·?tóż­Ē¦4³å¬)¬7tMōę»ėßj€ĖHÜĶqWĕūŹgq+!÷$ŽhWwЊ¬³9°F·‚Įē:8Å7n­^įŽ&£ŪÖī’ź˜Ó»{Źf÷ι}\/D…-ļy°ūœ‘õ‡®É~øĒĀģŹ-3’zadwś] 4t\Č īq7U¬Uį6ć{5ÉÜ÷—y0yžŠóyŌ/¾T¹ŹMŹÜß*»{ŻĮ«2ė X½«~’ś®‹€‹ź¦ŠVø¶ōķ„]  @ € € €€€ @ @ @ @ @@€Šõ›ÉĻ’ÜPśĪš·ßR½]•[źRķī„įĶīx4„vŃĒÆv \ˆšøņÖ;>PµĆ“^u,Ėl0b]vć“­ŃĘéŪ#M²ŽM ž®Ž%oŠķ5“jUØŽöąė €s„ĒƒIóG4½)3ˆæ'!cgFĆQ£5ŗ«ÖqĘš«Æ¹ž&×P€ĄY»³vĻz_g’Ż“^µóŲqqe殳¢×¾½VŪĪqåānt|„ ŌHš•~ŪĆ]k÷pžŗ7UŖS¾jĒ©Ń[jÕ­é: ųŹh0lmf…‡<|śž’Ź-³ŗÖJ]œSśž[oq\9¾ҽpÄÕ7^}}šzŖ·­T­ó¬Ęl‰ŽŪ¢Ÿ F\g,@§o‹ÜŁ Cā ·T¹ń‘žĻŒ >Vo芜ŪkU«{GŻäö®³€  ‘öHŖŅnŅŠ«=šÅIwŌnҽސ׳Ź?”šk-@ą‚H į؍‘zCVg’~“ßāńwŌk©Ń5ox“̽i÷µlÓ¾T©RWi³:ņ•ū?ź \žŁžHļ9wÖiÕłŽf£"7U®ö€k.@ ,>ź3«ÜżĶšÅßPī¾Jz4õ„ģ„Œ] F¼©X/5Į5  ŗRwšŹģzƒWMˆ¼“qņĒkö^½2žŹė\w€¹č‚[²īlŲ±‰ė.@ ]żįkĘUjTßÉčņ5¬€dīMÆÜ2+\ŖT©«]{€¹č‚}!•j]!’ąś ČE×8}{¤fļg3ī¬Ū»ńķµBu®Šæ®LpNˆyČÅ ‘“m‘„Č®ŒŚż^žXīž¦ĶC€ @.ŗ†#7d € "@D€ˆA€ @ "@@€ @ D€ @‚@€ā" @ "@ €A€ @‚@€€A€ @‚@€€ "@ D€ ˆ ‚@€ @ D€€A€ @ˆ@€€ "@D€ @ ˆA€ @ "@@€ @ ˆA€ @ "@@€ @ ę!@ €įRū’%śö§00ĶIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_4.5_dim.png0000664000175000017500000000255114632072346024761 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ24#jAÜśIDATxŚķÜMhešg“]’­1ݤfńAčĮ BKK«”©ˆ<ŠV(mhAl)/^¬" ā-(BĮ~Ż¤Ø½µdż¢h,¬»)Ä4ādvć!Z(ŪlĘóž~§į}ßÓ’0Ļ<ļ;3¬£W@'ķŽ³eꇚ ų?Ž{ųĢÜéÄØ$h×#`ÕD©rŪ”ŅūžŽį—ó ½Ū&žé©ä*9I±*/ āŻū6n>ŗs¶5›ÖæžżB±T~v)yąĆÕŁäūˆJĻä+„żK— #µ“ĪI ˆˆˆŃć„’»Ž_ŗŲ÷PaØ·šĮć{īož”Ļ%Ó7/ɋˆĶ(;ū]ė+Æ=ßųķĘ;|iuEVč@€ˆˆØä¶ ģŲ54Ł©|$µŸw½*+ "^<ר6#^xpģJ_±óVD”| €con_śvįü¦ĆżÅõÖę¢ųhœ” •ü†§‹›7Œ ļĖr ŗ<æš¹ĢP@€ˆxmw’ęģļŠŌŽŽwFf“ó!!t_’‘Ś›­x¤Åéäfļ²ĢЁł¾G²>b^;šńw‘ˆ ‘¦d¼AGöT’öõ: ""Ŗ+Ķ_bėśė’łźćSÓņBniĪdYµ05uE÷A‡UŠ}ŅYV­Ō•ą6õ Ė­=ŪJēĻÖĻ}V’TRtāgŠŠ•Nl-æQz¾}|¹¾ųUrżō‘Ó ±g Š•N]~k¤}4Mfž;xQ:dc ŗŅäKw=Ö>š\=õlP@€5Łtϱ;ķ_7±9™ŁĀ‚.“ŌØ½z÷SżOFWZ­łžä×Öl«¶ųåŸg½wEvŃ”kU Ļ”/Ķ]OĒœ;ļWdō³µŁZ7üIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-8.png0000664000175000017500000001522114632072346024044 0ustar fabiofabio‰PNG  IHDR ™q*UüsBIT|dˆ pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<IDATxŚķŻypÖõ½čńhOØQ J±b…®”E„°Ė–<Ļ/@ŲV²aMĀ !Š ÖŖ(ÄYddÜvŖķ9somĒ{Ļ­ÖV{Śź==‚ęņŲIĒ… yœ6/g^ƒ“8Œół~’yĻ÷÷żż***ˆæ’‹ÓŗL?’łuŗ>yńXkĄ×É"@  D€ @ @"@  D€ @ @ˆµ@€€A€€ ‚"@D€ˆ "@ D€ @ @ˆ@€ @@€€ bˆ "@  ˆ‰‡N™{ršõČi- $nn÷TnĖ>sG4ŗy`«„„„µ@€˜ŸvܹoŹ÷:Oī]÷;76<Ö"@b}Śńtn˾óÓ¾Ójšœv @HģO;²öę“ īŸrmŅ”>N; Ä%@næ1Æeæ‚N; Ä-@n›°9»YœAN; Ä-@nŸ¶+ēŗžE#4ļzµy @ˆK€$åĢŗ9¼bRćÖįč£V›%„øHŪQk²®é8®»;ā ķ'=—Ū¬{ĪŠKßt¹Ł @ˆ[€œłļŅ“č~­ ęā ķƮ˪Ӡéeę€!īŅ“kf?³@€÷i7fmV†ßwś€!Ī’w8³iש}Ķ BܤķØ5™ßŗ¢E=s@€ßÉ;œymŅ”>f€!īŅf䣙߼üźŗf€!®’”w(ėŚĪ“{›„øH›“ՙ—Ōæę[ę€!īŅüŽü!f€!īŅ)koN£›Žd6ā ­G<œ™PĖl Ä=@Zōžb.ā ³÷g7nņs@€÷i“öHVBBBms@€÷iŁw^ÄL Ä=@¢_]Õ6µ™ @ˆ{€“łXvBBĀ7ĶBܤeæ‚Tó@€÷éœóröwoŃĪ< Ä=@ŚŽ^“ŖS’ó@€÷¹®įp³@€w×õ/uuū1·™„økŅ!=#ń’Ėė˜„økм[s@€Ā…tBBms@€ @ņ.żĮ!›¦=™ŗ3ó©ŌŻćŠ<Ś+»W_H\L>õ䯒#ØØ“ōhšŸ£ļ²ŖQėʗŪ @ā Qe告¢}Įļ&?ŁŲć®.½C CuźuØgƒ€‰}€|VékįO ÷ļŽŗoŠ#6øH„iėƒm6D€ä¼ä®õ‘—\DrAdٱČéŪÓ;v“I@€Ä=@ŹNF*śäõb“€‰{€,? S×»³ž¶;{SźĖYS÷NŪ¼Ō+«['HLäļ³rč*Č »žļ¶q@€\™µ-üVØaØīµm  q ’ć‘Ssvæ.Ų¼3¤Øw±M$nņYóvE~jś¦$®= V2°Ą&’99•ŗtĄ"›Hܤ¬= 9©˜°zč‹>R$īµųPša›”VĶl. q’c‘‚„ēŁ\ @ā QS×E^Ŗ×”ž $žRr"rzXIr‘ $1rōū]›5 5 …l4 q·ōÕš©»Ö…w5nSæ®Ķ$žŹƒŠiOF\ӱ鵵×ŗŲ¦@€ qņqźŅ96D€\cņĄ§C?óĻŵ.¾(śļMŚ7il# @žIå}Rø/õ7w­ vänŽütę–Ō×ó_Lżłģķ)o‡†Ü@€ü3ŹŽ”śJYyäÆE Ÿ*99żuITō’eÜC)ėmFČ?”ž™ŻŪ š×{ģČ{-»¦c“&ćśō× Q҃Z‡[µ 5 ]v.± @ž‘Ż:ü–«§® ­źK§'# ’Qyb×KźGĆŽüēß³š`Ź_Zōj~­M €łWæeŻ:Myfłk‘O*ƒ `OšĪ€Ł½G&6L¬wēć)[æīS’’ćįŠėīhŃŌz @ž „….– ˜ā#‘Gܓ\Zł»>y=»Ļy)ųõŁNIó‹+BßV2`q«Į­šÖėPļsæ»āęFߞ»3ņ›Æ+B¤†¹śÖ«¾=emx[Y¹r!NI® ÕĪ{.ņ†rAt™Ų„cōÕ¹Č1rÅąeŃ×ō  ń«a(1ó©ČxÄƲć‘Sów’wę–ŌŸńzžÖŌĶ{.üʵ›^iöŖWV·^ÅG‚cŃS•ž³zL 5 %š1„Ļ™šČŠĶ±üRzō [ÉóśŽ2[_’Ų ±vŹ¢žSg¼ü¬äDäćXDHź²ä|³@€šwÕėPļ¢äy}ĒĪŁüŖŗ2fÕŠåf €įœF®\RŻ÷£”•f €įœ†—&ϟ·+üūźHÖӑW#K’§š'„’VƬnƒēļæWŻSÅ‡‚zNėÖŃL |~ˆ ‰ šwmś­+Z4H»'xxٱą£X\FŸóRšfū“öכ1¤†Ŗ}ŁU—6i?ę¶k:ftlÜ&rÓ5Ēu¹9rļ]ó,ī9cъéĻx3–ßYp x佃—‡® Õ6H ņķļ']×:ķ‘™sd§,/]Õmęś‚ĪŁ[g$归Õeś‘Ģ®3^ĢūȤ½ó÷Džӏ–YOE…….¶šóØÕEĶz䄻ĪŲ4wé«įÓó÷ļgoNū·¤¼=¹Ń“dUŁų5‡—‹œ.995m㘟”¾ł$²ähųænM»­µu@€Ō µ.mTūĘĮK'L^7m×ü=Ć~;õ©»öEć#Ŗ×œµE“ŸsrĪĪ”ŹzfŌ杹ņ‚ĮŸī.ĶIȘ•ƒOl˜h 5Hżk;\y[ĘŹé3¶¤½9ķ錓I¹²+#d؊EŒX™·©OAяņ·ļ,}5üq¬ÅZ~2R‘÷lšŚż2/O¼ČZ @jˆĘ­‡Ž|Ų+³Gok€©aź6ŗ”īCJĘ'åŹśb€D Xųƒ‰kĒYp ņēŅįŠŅĮéXÜ)z9õ½!…żļ¬×”žu@€Ō°“ZĶŗē ¾}źĪģ/Hēܝy«'īĖŽ<śõ¢żĮb Q%Ē#§ÓśP­Ęµ|RĆ"䢫ڦ¶k7v]ę—#dūŒümįß~īzyĢŽŒõIś‡>ä#…Ø~ÓNß¹qpIFRī_æŽ.[qߤµÓ· æֆ‰ks·Ž{,{ė‚—ĆžóRäŻčku ÷§ž®ŗRśZų“žÓŗõ4HĶ< 5ķ:u`Ē»vä÷”­Ź}nō/ęķޟ¾eÜOĘ?–óā¤=6e}ś‰é/Œž×¹»‚wcńzމEž0{H ~$«qė”6mG?>5øgńówŒ|³ņ Xe'#‹Ežß ā9kŅVf¾żyu?X8ogź[‰õCf€©Į.»ŗķ×'§wŹŽ;įń©»ņ·§żŖōµąÓؘ»säÆ/+y`ʋcߘńbŚ/ĖŖqš“»ł>ÄiHBč†AK2’ņöē æoīŗ‚½Ć߉¾ +zņqēŗi»zĻ/[‘±:sŪ„5“öG_Õ{¾²ųPšįnō…tHMwCrqŚßފ•³/gÖö‘æZśjųŌ²cĮGŃÆ¤Gī^¾*)÷@vō^Čł¾!kń+‘B C—š7D€¤}öÕ¼Iy;ó.Z~’’£‘æ|g"¤oįŹŅ¤Ü­3ęīõ«ó 9;‚·ĢĀ—¤Rrń²Uć×LŽ;gēØ7Ē<<晞s6޹īĪżBĢdōƒ…k— Ÿš½cŌ›3^ĢųYī³ćŹū/Xqwō!U ł»ƒ·C CŽ„€ gčÅōł{Fžļʈ(z9üįųĒĘ8Ÿ{ e告1«†ÜoŽr։š²!sWe@äo~“µiäĻĻū{ »S’żŽÜžŻĶ"@Ī ½ę®+\p0ųc4 öx{ٱԿT磄 ļõŹźŽĮÜ äK:ēģĢ[x0õÕ‰Ž/*Ų¼,˜göņ…{ ³²žõzĮŽŌ÷b!‰¬6{ˆł’™[Ēžü|Ž|Uiچ”å҃>ū³ō¦¬2{ˆ9k€Tē“#’ÅČ’ĢŚžÉāCĮł[ƒ›æ'ņnļÜī}Ģ"@¾šÖ+Yó÷¤żŸó²ņ bŌ½ƒK$Ö«{Ķ%õĻüY;Ō0TĒÜ 䬗З¾>u¾R“?xļҦuź™3„sHŁē•œW9< ÷杷+õßǬ| @ųJŅĮź%Ė_«Śōh°“yk»Š”Ś×ÜŽ“® @ųJ2°ųŅŖȲć)”†”+ĢB•dņŁŪ«śų•@€På霳/gĮĮaļW5@Jއ+ź·ØßŲl |õÉ}9»p’ˆwŖ „ƅ+zLė–ŃeRķGvjmƾŅ#XłŪĘüā|^æżrzōīHī3‘r3@€š•dÄŹ…kŖóōāĆĮŸgo~y6ēōĪ0ˆł›n37ωŽéØN„ü=Ań€<ó@€æéWōŲāŖ¾†W€ @8Æõ`įŚ²ņ@€ @ˆ€dmŗóP<āC€ @ȗÜ1oÓ¼¢ż#Ž ā QćĖß,@ \I[µš1€į‚HŸ‚ … {_€ @ˆ{€Dõ-z|Ń¢W†ż‡@€÷‰ūšÜ'gæ”öVĮžČ ÷„ž^€ @ˆ[€t™~83eyĮš¢żĆ~ēBœäHęšūŠW—ĘčĖč"@ž[Iy³ĘühćĮGB\äÓ·bžxaé‰ČĒBܤĖō½¹Ł›'¾z¾į±š`šž”Ļ÷›Ł{ ł @Č9u¹cśÜ]£~}>²`š^bƒÄoš=D€|e=fm™Uøoų»U eǧæ×±ńwĶ"@Ŗ$ćŃüĶU ’įOZ žA+³@€*I)½Ež¶ō7ęģõfÉńČéÆ!™OF^Nl˜hžR5y»ózäÆ- V”ž0"ÅGR?8W€ä>œhpż„ī @HÕ$åȎ~¤ņkéCKļ½wĪK£YV~öųˆž|HQæ;Ķ"@b")oNÖ3“Žž-@ŠöE~ߨÕeõĢ"@bēF’ģæąŃāŅįO¾ü¬Č©³īköC‡3sžpāsRTLX=tsØa(döS½ēÆ+Zz4ņ_»’q2R1pvo§Ł›'łģō1d<{UŪŌ[4ļŚ4!!į_¬D€ÄLrńĆĖ–Mż°2B&=‘·µSÖŽœö“_˜Ń¼×ŒČ•7öob $f¦¬Ÿŗ§2@¦o÷Ó运Źß5ė‘ŪĒ: @HĢōš³i^ń‘Ō?GdŃ+©윳7§ņw7 Z’žš k€ 1“÷Āøņh€D_ĶŪĮź%•?æ}źĪ܆-{6·3CKW޳č•aˆFȂĆ.»ūž¤¼Ż¹Ńß5æ#?b- $¦ŗĶܒŸ¹qņįč÷@–¾üeģƓöö)x|ŃõɋĒZ ˆ‰¹¤¼ż9Ó_Čųiō$dęÖō7ŗĶ|n–@€j»)åž)ßė4±ūgݐ¼dlRö–  {?!ŁĻN<~}ņĀtk€ Õr¶“čƚtLķ2iMš|ę“ĮŽ)Oۚv6ŠZ @HĢˆ "@  ˆ"@Ŗ MHHųÖuĪā’ĻØe- ¤Z:޵#÷–Œ§¦ß’ńäŒ3¦ß’¾!ļÆÖēž‘ÓnģŗO}æēō1Ö"@.j @ˆ@€ @@€€A€€ "@D€ˆ "@  D€ @ @ˆ@€ @@€ D€ @ @ˆ@€ @@€ D€ @ @ˆ@€ @@€€ ‚"@D€ˆ "@  D€ @ˆ@€ @@€€A€€ "@Ä"@  D€ @ @"@  D€ @ @ˆµ@€€A€€ ‚"@D€ˆ "@ D€ @ @ˆ@€ @@€€ ‚"@D€ˆ"@D€ˆ"@D€ˆ "@  D€ @ @ˆ@€€A€€ ‚"@D€ˆ "@ “č=gō­ć7M?—Ū§ķĢ Ŗ7脄KĪøō\n“4C€ @ø n\’.@  D€ @ @D€gפCzƖż RĻ„ķØ5S„j¹!¹8-^a!@  ˆ "@  D€ @ˆ@€ @@€€A€€ "@D€ˆ "@  D€ @ @ˆ@€ @@€ D€ @ @ˆ@€ @@€ D€ @ @ˆ@€ @@€€ ‚"@D€ˆ "@  D€ @ˆ@€ @@€€A€€ "@‚"@D€ˆ"@D€ˆ±"@  D€ @ @ˆ@€€A€€ ‚"@D€ˆ "@ D€ @ A€€ ‚"@D€€ ‚"@_š’8mĖóųJVIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_12.75_dim.png0000664000175000017500000000151614632072346025127 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ8,Źé1ßIDATxŚķŁ” ƒ`Š‚AV`:ū0CDga‰N‚l0ģ€%!u(Ō!$Š÷Ō‰SŸłr¹”žN&BWWļ˜—OŪķā ”ĻĒ+.‹õ› $g(÷ń`÷§&ęyp €° īžS?†IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_8.75.png0000664000175000017500000003325114632072346024224 0ustar fabiofabio‰PNG  IHDR ™q*UüsRGB®ĪébKGD’’’ ½§“ pHYs¢¢EŻ1¢tIMEŪ "/«Xåt IDATxŚķŻwt]ē}ęūēŻ§ā ōBAģ]‹D‰jT·Ŗķø][Žc;‰3ćÄöM&žÄ™¹öJĘ3“äŽqŹrä—Ä‘%Ł–(Ė’ØbQ,"E‰½$@”÷~pź~ļ@A¤D@€ų~Ö¢ģvūh­żœ·k­05,¼ėÆTøpÓe}5;uš‰ÆˆēH\ ‡ € €   @@Ąx0†€ €ą B  øHtĄ Wė¦( ˜ŃŽ&Š&F_ĖQ%"]ŒæŽ[éŖ£ €`üYkėk” €`bD{) ˜ż­ÕJ öP@0žŚæ¤Įnʁ€€ `­U¬§łr¼°zö«ėō.Yk¹ø(^J0õD{'6€$"]j«~Y­‡ŸUOĆ~n ÓI[µ’Ń>yƒ™ćś:Öŗź©{SķÕ/«qļ“|ą’>DSš!Ī­üÄ#Ź,^8nÆėkU{õĖŖżßķeź_Œ ʀLAÖŚq›Ž×ŗIuÖģTķ¶GtāÅæ'|`LŃ `ŠŠC0ˆv7Ø­śeÕ¼ņt·gō·ŸP*> ?ż’Æå¦āźŖŁ©¶ć/«åšo$żĘø` ĄT}3F«>õeV]Ņu"µjÆ~YµŪž…VŒ;ʀLQÖZ vÕ_ōł©Ä ŚŽmŃéķßSĶ«ß%|`BŠ ` ‹õ]Ü8žÖćjÆ~YoķüW‚ ö“źo­–q<£-GÕvģEuœŚ.释1 SłaΘ‹:g@@\ń„€€ € € €   @@@@€€€ € € €  @@@@@@€€ € €  @@Ą¹,øe¾>ö?隸āk-Uø īüŚ­*š©Ų@BEiŹĢM鉿;Ŗƒ›Q\±hø Œ1*[֒u^­ŗ9Øs¤ć{"Šõ*¼.LpÅņR€‰ē/ō+æÄ+)%cŒ$éŖ[2“üśUڳe€±s÷—n•Ē߯ĪÖ³»ĆW­ŹVx]XŻ;ŗ) øt=m eäĖē7gļėHʶ$)®HŒø ^ł·mzė˜{Ī}Ķ)-Xæ˜"įŠD ĄepÕ]ר|ž¹æ ž½Č£¼ā2 еĘ(®(“€L°E·-њ{Jäó™sī·Öźä¾į\šė>»N?±@3*dŽ’øDĢ„X €ąāŻū·ė¶‡Ė4g©#óįĆqŒfTU²rEnķ'®Õ²ė³ŹŻń3+>ńµ ( ø0åKóĪżńVRG“«X ć@pea,€ Šp¬Uז)’ŒcĪ{|o—ōÜ÷^—~’ü×öēśõįÆß©¼RæŚźcj<Ł­ßžóo):&%c­„ `ń‹µčŚr­¹3óĒ€HŅŽßĘõć/’ņüį£ĄÆ‡æż!ĶYāČć•d„xĢźõ-mžĒ-Š5т‚É….X¤xN”rJ҆RĀHĘ„¶ŗó^oī‹õŁ’ł!Ķ[f†Ā‡$É4ZzmH]@˜¶Źåhī2ÆĢyš?j¬vnß}Öö«>²Jž|æ$iķ§6裶Xó–;ēģŅå Żņš śč’øGŸžĪż fǤA,€1^֍›Ö)oFH?žÆ›‡ ō’pÆfV~šł5V[žõøŽl=¢’üNy}R0äSq…Ń”½jÆė׊›J5kĮłßĖŠ³žŃ®ß čŃ?š›Ą•&PŠ×~rŸĀł®źŖŖ÷ōhūÖ×tŪ}7hŁuCēæF{³”ˆJEåVĪ»Z8ŚRŹ-2ņx/¬#ĖŃ×Sś—ß{œ›ƒĖŽŽcȟėצĻoT0$cT^%—gifÕĶ*œåU04ŗ/ó‹ßłid÷Ŗ‚ž‹z_įB…įÖ€0Å­łäzżįwļUI¹äń ž Ńü՝ošłXko’šjŹ+ń)\ąźŖ»Vq“@˜J%į©mļ’ow«°< žŁf…²²ōłæ½Q…3'Ēū“ÖŖīx\?łņÆ(€n|†ˆĖŽ1 £t۟ܢ•·äJÖh°ß*·Ų(=ÓźĄ¶¤<^iŃļy×÷˜(ż=Ņ·>üKÅŪāÜ8L*LĆ 0 ž\æ®ĶUA‰TPjU^%edY#-øŚ«œ"gŅ„I eXŻõ‡7 OŪ @¦å›–©h–{īpJg_žĒŖTźĢūsō—UżI£×Ÿ©×öī$żć‚0eÄZc*æ&_|õF•VZy<ć7tÖZ©¹.S§Žß¢Ģ¬ƒŖØ:,óī2œĢ»~°ŽŪaT{8©’ųÖӊ·Å¹q˜ōŒµ–*¼¼YZ~óJ•ĪĶт«}JKćę+½u*Goīųø|¾V-^ż“Ź+dF1ėVõŽ”~š§›k]ōĖūóüZūĄÕŹ.Ģ”/ąQžŒzŪcśÅ’~ö’® @.Ńģė*“ńc+T:Ļ'ŸĻQfųŅž£RI©śP™Žø[ĘT¹ąIĶ®:­ōĢŌØĪļī0zę»'ōś£{.ģŠ=ōĶ;T¶0S™aWé™VŽĒȼݼb­ŌÕ&ÕMČxŒo«ÓīßĶ€‰^ÖąÉA}ģ·kÉZ’ØZ*ŽOĆé,½¾õ3’©¢źE-^U-Æoōē[+½ńRT’ö•'/ču?öķ{µb£_^ßčŽ{¤ßźµ_÷jó_?Ė—Œ1  {G·nüāõŖX”q.ī‹ÜxÜØęČ Ł½Ŗ?©YóŽR(#5rÜĒHÄ­ŗZŖczü<+}åĀ^?K©­Éؤ|tLJ2Œ­ĻÖā;éŠÆó!`"%“®<ž‹ ®ku䍳2ĘźÖ{¦Pę;ĮćƒĆG*)>źj ĒÕ±]:R}TŻ;ŗõ“?¹š÷šŲ_lÖ§žž~•”¾¹„h¦tõó¹ł €L¤@Q@w|įFł£_$“"^õ÷„«ńōl5×/ІŪWz–{ŽkX+µ5>ÓókÅ;/}¦«ė>{Ö~Øō‚ĻĖ-ń˟ļW¼Ł¶pńpī’«ŪµžīL9žŃżho ع”LŽ“R^Q‹Ā¹ŅĪ>.‘ś{¤ōLW­õŽz\ĒźG_j̦ŲõųõÕß§¼¢ ?×u­vlŌßŲĢ€Q*\R¤’ōĻ×_Pų¤ü’˜ņKNœ÷øSśÉ_žZY…ŁJdĘÕ½£[’ōČēĒīßšŃÆß©ÜĀ‹[ŁŻqŒ f¦ńAąB,.ŌŚ{W*K©½¾OÆ’Ēkē=§§µ[©Ōų,‹é·zcKķø®½1cU‰¾š÷׍z°ū¹Ģ¬2Śš»×jė÷¶ń!ą|6~q£Źå菾é„…†¶uwäźOŸśØā1W;uR;~üĘ9ĻµĘōŠ7ļԚ;Ņå8cD|~©ry¾%ŚFBŒ1m—ś»’h½Ņ3/ķ}‡2¤9+ ł į¢1L >w–ŻPŖ’ŁRZśūwdWBGwµjד»%+Ē ·Jųsżśš½C+7dĘ0¤®^}²WĻżąE¢£:'oA–6}v£Ź•ˆķ{©Io¼¹_iƒAu6vÕ’āĖõé“ß¼[KÖł.łż¶ŌYżæŸ{’•ŅAxÆ@Q@·<¼AėļÉQ04ŹY«V}]Fié®bQGƒRóÉøJēś•_jåńŒm뇵VGv„ō½/>1ŖćW>°J·~v® K5„"żV½F9VŻF·vė…ż­lŹźwžņ.U.õ)”!yĘ ’K_ōŌwNjĻc{ų€ Iü÷©°<Ø`H*©°£^õūrč“ö<߯¦S½źnīVõ‹‡”½6[Ż;ŗ5wćb-\_®œā Ā…>e†„ÜóĢb•JYõu:ŠĒ¤‚vL[l$©æWźķ0J„¬ŽļīQt ¦’įe>x €€éćĮ’ē.eē„)”ķؤB †¦Öū·®•k­’q£žNGnŅ*•ņJ¤P¦½¤ĮććÉu­"żF[~Ü ­080 ųóżśņ÷ļSQµø\ś¤ŚCq}’÷I1@W¦«Ėtē×(§Č£‚ī˜ĻN… 3Ų/=óżzmūĮös†ÄMŸ»QŽ×čÉož†bMSLĆ ¦“ė?ŗJóW;2ęā×ĆŲņų\u6“ŲvūW7©rY޾ś“ū”S`Õ|Ś(¼.<¼Š" S†ćóȐ;& ĄŃ͟Y¦/žš#Šō¦ 9ŗī¾°ŅŅßéucäń҇0n üŠ·ÅGlėļŒČŚĢI;@{:š½Šyū'ĻYūz:Œmė”õcc ˜Öf½nłd©:šEū] ōʔˆIóÆ )Æ˜ē™©¢zÆÕ??üs 1Ń¦„…kK•ē(;O’Y”¤·Ē~`*p]«†ź^ 1Ķ9”Lv9s2T:wdwc Ż®¦˜č ŃÖGY=0É­{`½²r\ 1…YkuroBŻ'Ś)`rĖ+ 2ÓÕ×Ö(żę»;)&—@Q@7}śzĢČPA™_ƒż)ł‚^Å£R śLɤթ®²ņ<ŹĪuuōµ~5ļo¢0`,0¹|üß„ÅkC †hņ˜ŖŚ›¤CŪśōŹ‹;$Iž¾€zZ»kQ@Ąäā/ōė/»W”LČT5ŠgõĶu֚-€Ä0ŁX)‘ |LeĮ4«Õw¬¢ €€É/ŽWs-3^Mé i„ś# 05Ōļ“ėŅM|Ź>`:Fó®šM!@“_ 8 ‚² č„5µ¤RVķMC«w¶ZķŻņ&EĮ91 /˜TīżO·jÉZæŒC™JŗZ^śi*Wå뱿yč €€©!Ņ—qXšc*°vč?o·Ś÷R‹vžt·ņf>š˜†\žctķĆė5ge‘*{••CM&kąˆ ZCF©”Õö'{•J=÷//±Ę `jŲųł Zr}‰fĢ•üź1™5ÕJĻ~’€®’Čbeå9Ŗ9ŃĻžt3…Ln·~ł&I¹iš·2]…3©Éå0ō8ō,hĢ¹éļ•¶>ÖŖ-’ēeIR 0 ›“ŠwŅŻ 0ÉІš6b-1müāFmśt|>É8F†±ę—E*)Ū_®žŽ<…óš5oqć9ž'VuĒ­ŽÜŅ ķ?ÜAį@“—?ׯ»æ|“ŖVeĖ«¶:WÅå啚üq9¹®Õńå:~šAIRZčø6Žõ“|ž‘¤„N:¼£KĻļĘx€&·»žōv-ݐ„¼+‡)u'ėZµ6„«ęŲ"µ4®—1ŽBé§“rŻsŹ+Ї“TRjo2śž×žQgu…Ć˜b^0ęĀėĀŗė” *˜!‰%'¦ŗ°voż“ŒqdŒdmL W¼ ÜĀA%F­Ł:ut™Śšē©~÷æ>@SCäDDK‚ār³R[sšĮø¢ƒ~8¼RĘ8Ć» ع¾T`öļ¾Iż½‹†½’‘ś¦†x[\_ś·(;oØūĶ/¾¶æš)Éze’Yū³sö(źÕ®W>Ŗd¢€‚¦®š}Ż:ŗ#¦ņE¹Z¼–oÓ/+Éė*•Ź=ēžž®UźéZM”0”„ĘÕŻ’e“nx(›č—IO—OmŁJĘŽūa3ŗ0xzĒ÷U»ķ ˆ1ēP0žž{äe%˜Įõ²ÉĪIhvU»fV¶Éqś%IYه“öĘļjįņG•Ŗ‘l¬u)&]°Ąø ōĄ×nStŠ(F=.§TŅQZz³ŅBGµjżkJK— K#*Ÿū+YWjkĪŌ›;>+f-LYÖZEzŖÆöÉTy”•ĆĆķ咑•ŅMw’F2īg­ųŌŁV,ź#|€¦¶x[|ųēāe%śģ·7(ƈŗ\.ŽēLĄˆ H{w¬T[óZ 8˜øĻ!%”y“bź0œ>҉CsŌŽrįŽ0anmSgsŽfVy•vß^#„n?©æĒŃéźkŌŻ¹‚b€®lĻžŻK’¤`iPĖo\ŖŖ5Z¶>D× ŒŸČ€Ń¶-÷*E1@ÓG“1*I Æ kįÕ7)ąį‘d"œ8XAųĄeĒpŁtļčV[cæ"ż Š1ę/ÆŃüeÉēo¢ €€ééļ|N­YK-Ę[ (Ķ_ZÆu7=.ėś@ÓTZČ'Ę¢Oœģœ„ JöP@ĄōŌņÖ "ż4Lć•Ļ9&‰šƒ¦”ĒøGńhœBL ¢2¦B€¦—›žą=ųéģ§ÖDH„\I’Ēk“pł 2ź§( €€é£Æ³W3ęłU<ĖO1&@g«_}=F]m^Ķžß¤eW?.«A ˜v’ģMµÖY”O‚’¤ŅB®Ņ³\<š«ÖęReeÕP@ĄōŃRQĶ”c¢'ˆ×gL³š·øK%e źėaqB@Ą4ņ‹æzZ’ń×[ōĘocźi§)d"„…¢ŹĢ>E!0q˜€É ķP$éöÆnŅü«Ā*cé5’±ŹŹ!”Œ‰·[˜’)«>ÆNž­ŗS›ä8ŒæĮÄ1–eGĄ$ćĶņź?»Mш«ƒÆ҇žhfĪ‘ EĘD*)õv{åó¹źh ė莊ĒKemžš1§w|_µŪ”Xū’æ)˜l’½ÉæūóżśŲ7īVŁŸrņ'īĖÓ”/jĶ7@Žć•rņ‡jģx;ÕXŪ­¶–e|š@¤xūŠ"…k’ÆõŗśöR…ó= Œ}I&„śjWaG”L«ć{b*,ó©t¶GŗB_:Z‚2ƂA8ĖĪm—$Żż_īŅŹ›Ó••cå8—ž \×*Ņotü˜ž~ō·<9جü zšµhć}äkó^y $·²®O­M×ńįążlžė§µņĮ•š³²H‹Öe)=Kņ~ĄSu­z»2²†ŗ)«#»“śé7~­XkLść‘ūożĻ7«į„QvUW³«²ł‚WF“I£¾ž<>P˜P BSV 0 k­ųŚ&–§)·*­4rSF½F=ķIU.5Ś’jB}ūYŻ’åMŹ.Č«²Ŗ”ĆÆÅõóo’F±¦Ųy_+mNšzų-¼zźwYźķ2:ōĘ5jmŗFĘxĪŚĻ tŒZ@Ą”k3(¼3^ćև7ŹŚżę3ĆćH$ɟė×uæ³N~{D=M݊wĘGżZ7é&łÓr5gÉŌ!myjk^Ē ō €ŒU(™½~¶«³G„I£ ļē…H;æ¶I³eÉų“Ė”·Ė£‡×¬[›ā}mĆæ»‰(&@.DĶöšq¹nSM›\7kŹk­NĶRwG™"•#öõ5Ņį'æžž3~‡€ĖmöŅņLÅÖ+IÕ׎|Ž®WFŒ ĘD`Ņg€ ^VZ–#3HO—tźčšs: “L ( »Ś %ė§ę<¼ŃĮ4%ā‰Ū¬Mrc1”č‚0J÷żÉķZ~ƒ_ž)Ų€ŠŻįՑ½”L.Ž6kī3*Æ<„Co®Q{5÷€IeĘ\Ÿ<ž©ÕõjpĄØ«#]‡ö\§ĮȂįķ᜽Z“☼~ÉėeĘ+@&žvW9ŽÜ¤UVŽ9kUõÉĘŗV- ™ŚæūwGl7ź×ŠõÆŹ"żF­ $ācB0`”«{õ/<£­µNś£¢ƒVĒ”hļkŸɄUG³T8Ó\ņ äCłĒʜćB=]>m{ī.%“rĪńusvNļšĻ]„@&µxg\׿īµZuk‰fĶ?w‡’TŅ•ćq”ˆ»r£dB:¼3¦Ē¾ż¬~ē/īRfŽGŁŽ f\\KŹ©c!ͬčS čQ*i•H%掶zÓU{|±’ÉŠ÷BÉ”÷<8`ŌP»R’ʫВūžfTÆé<­SÆü@&Źī§^׆ļ=k{w›Ō×ķźą«­*_§ÆŌiFU®Žķ<­¦¾ÅZbĆĒžžRĮŒ ļŸJYE2U}0Wٹķ:yd„ŗ;ēĖļO(™,8ļł5Ē–)æče~s±ā±Ņ”’;K”ÜY£z}S³ƒ iÉ ŌŻęŹČ£¼’”V k„£»ōüęmźŽŃ=tą¼’5¢})„’Īš`öTŹ~ą,[®ke]«Ę·²uāČGä8m²n†d2ä8Rr”Kztw®Š‘7ŌT·œ‰ g&ū*€Éģž?æC×ܙ®Īf£Œ°Ń@ō·>:Ŗsż¹~Ż÷•ŪT2/(Ÿß«¦śr…óŗ”WŲ+ÉQvnR®k•ˆKķĶYŖÆ£Ž°śz—Č˜Ė÷=rgĶxü+Ü|\Z@.Į֗vč¹G%IžßwČėwG}n¼3>üó¬u«āŚ{UW“”›Šiåś'äŗŻ:qh‘ėWŹ(GļŒx7†ŗƒ0- wµ#ĘxåńzL‹Ŗ»#MueŒ‡BćŠĮ: “ŠŃ}×(tem‚b€€ńbURö¼ę.Ś+c¼Z»ń'2¦²ąŠA,€I“=bZrÕ㪘×*ēķ^WĶõ’BŌW Z@&‰¬œćŖØj©¤«};7ŹZ c½Ż%ŠEĻ„ŚćŊĘfŒĖk…söjŽ¢_)ؓµ1ƚ`ĀŠ `ŅČ×+Ļ<Øā™‡ŌםƎ¶Uć6ւ»UX: •µJDķ{ķFõ÷-į€0Ä¢å:}¢\Ņų­÷ᦢŹĢŽH’²²­¢ž”zŗfÆČŒ'ŗ`L;ö5 %Iž€UŁģ]”€é"ŅyZMū~©Į®·Ężµ<Žy½©3„ŽQna 7‚†6€I ķŲ‹’¤ÜŁk•W¹^įņÕ åĶó×ńł›å÷·Źć9Ó’JYÕ[ĪM`ŗé¬Ł)IŹž¹\ó6*\¾ZésĒģś3+v«xfĆp¬¾Ǝ˜Æž¾łć6ę €Lr=õū$IY„‹UPu“Āe«”QXuÉ#ÓN/ÖĀ•Õrœ”žų-¹j8}+įH½‡$I™EU*˜‹r+×+=æņ¢Æ‹–k ×Æģܤ$i0P(ćˆ"ż )6&ƒŠ¦€¾–ć:õŹ?Ŗæõų%]ĒÆjŽĶRmu†"FłEķŠEĆœ#@čŅūJ>y—śŗsLs•‘=(cTµųqUĪJnjP’Xć†.XӌĒsZķĶ ÕÓŁØĪÖ<•ĪڧPF³‚iVYį©įÅĒÕIDATō,å6éČŽĖq cŠ€©d ‹§RE*«Ü©žŽt:v#^µ5—ėõWoUz–«“tWÕ7>0.h˜nʄŌܰXėoŁ®ČĄ>Ū’€$Éuc:yøX%åo) ©„aŘ£`Z±²nB-+ÕŁT4RvĪ«J UK&%×§źC‹”ˆ9Z¹īGZ²ś'rŻe`zŗ“>XnŖGåsŸqüŚžĀĒU[½IÉøOżårLHƒéšQ~RmsåõÅTQÕ¦Ņņķ”\Äߓ„·N>4ō‹Ķ–1”“hŻM?VYåoŌÕ¹JG|Jž`Lo¼z•’ ɈR8@paņ ^“ėöČψķĘćUь•Wž’ĒiS Ų¤@°QīxIoČ–ß?Hń@Ą…°Ź/ŖQAé^I‘{ĮÕÕ¤«„1G×mśµŹ+·*2P¦šcó•Lfėđ( ÓÓŌ±*Ÿ³Yž`D½ $„Ų{dļ=zsŪĒĪTkc¦‚”ed6)ń+‘š(;ēY›¢ō €ąüŠfl•×Ńž]ŸR"QrVˆ1&Ss>ÆĀŅ^%ā®ZKtõõŪ”L¦éŌŃ{”Œ§)+›č €L?Šb­«‚¢W5³āj«o•q|ļ{lcŻrõõųf«„aƒž}ü źh½NFFK×¼®’ņ&ZA0&Xˆą UYõ¤r Zõś¶Ļȼ§ŪÕ{E*µėåū JĘ'7¤œ¼74kŽ>„§'•UÕØć»%åQX@š^݊ dźŌ±»>°åćŻO\×mś•:Ūs5ŠVYåIåÅ%I±A)-Ō©Įœ%¬–Ę›eFŃįŽŚ˜–_óØĀyŻŹĪI*å¶j֜fłƒvų˜@šTXzL§OĢ£“ø$Œ˜ęŠJwĖėMŖ¹.GGö詞ė‹yĪ:.æØbį’Ńp…±nBRDĘÉÕńłÅ5:~p­śū¾}„’Æļo|+CĮ“øśŅ)..- É£`nŽų«;”37cb^sÓ`U-ū…ÖŻü•W>=Ŗ™«z:³ŌŪ={ų÷TJ ¤%ß3Vu'稾¦T‡÷nā¦ć’ŃpB9eŹ›»A”Ür-}čļĢĪŠ¢k·hĮŚ;µįw×k×S{tļŸÜ©żÆĢ—¬ļŌš®ų`ŽµķŸßžŪžŁnŽsŽ;§å–ąū+)ū­ę-n”×+åäÓéĖ%3óœĒśüõJÄJÕpzµO`x»ćISÓé|ĶŖj•u„ŠŖj½±ķnŃĄ„*Xx«Ź®ž¤<¾ąš¶Ž®75cV‹*WękÅM÷Øl¾.jÕ”7”73aļĶŗŖZrPŽ·ŸšŒćhķMæP[óLÕ»EÖfŽ8>œ[£ÖĘ"Y[ Ē9Ó²bŒ£ƒ{>¦ŚG•_tDĮ4W‰D験ēc¬µT`“OĘhéCƜYWo[øü1Ķ[R’ž4 ՟ĪŅžW?#óĪ“»µ£^ĢĻ8ö=±ć“źŚ[¦œ|÷œū»;¼:ōĘju“¬R8oÆŗ;׌źŗnjPrRrĢ™.f5;tąńÆšaĄE”ąXkUŗā~yŹ,“ŻÕ^(×­ъ #•–÷ض`:ŪÆ~pļ:½ū¼Æ‘ŒØģŖ+”Wqž7ćJźÓĀOĖē+3ūģšįŗV‡^/S<ž«ŽÖå’cŌŁ¶\Žg”ĮʓĘMąrjÜū åϽ^%ĖļUnÅZ5œ^©ń=ņßóšīå4Ŗ³ż¼Rżž’8ļõ1š¹ś£ē=®¤ü%-½ź ‚”s÷h‰Gb1‚”ÕT?8”ЬF>ĪĪ; …2Oó`¢µŸxE™Å ”ˆt«`ĮMj<] Šłķg78ŗČ§żī&ļŌiž²#ļ>$©§+ ×·Ž Db4ŠŁ³F‘ŒfJb=@&\_óQc”ģVĄæR„/(=sd7(s‘«X}@±ŗęśĶŹ 'ß÷7eÕ֔£d246įC’1^„RE’NqóAø¬µC!$ś)͜] „kZFģ÷xćyį÷ 7¦PzƒŠgSьzåĘ>štĒc”ž9(ė–Už “%„HŅĶ_ŗC¹…¹*­ˆĖ¼½¶Ē¬¹5jk:­ČĄ¬KH mŗīÖG•S“Ē3ś•²Źnu¶=ÆŗšŪĘöß릸éøhĢę 0F^ųĪ3śń×ėtxWHŃČŠcV8/®ŖÅÆ\ŠuóZļ°®Õ©£łr<^Å¢~?pæ$©|Īó*){KE3”Jŗ²Vč÷kp (kqæņ »ÕŻ‘®=Æ~B2uÕ¾¦·vžPŻõūø© €LG o[ Ž†9Æžó?_+pdļśŽÖ€^}ī÷dĢ™y‡Ā9{µ`ÅvÕ_¤pn§ŗ;ņ (÷ĖŗŽJfÕŹēM*2”£ūnV"QØžÖćŖŪõSµ}ž¢ć’1 ĄuäŁ£’¤ł·.PĆ©¤f/ņŲéĻ>$© ō°NŸX¤–†jiŚf­+c†ĀKSżČ׈õµŖłĄS„Œ”LqĒž?Ŗ¦šäY‹§[›8ū`ė?{SŖKnjPYį*(Ž1¼=ØłĄSjxóqŠŒ1C Ą`ó’y^³Ž«•’µRO§WՇ֌8&-T«²9õ2¦I±h–:[ēkÅŗGåó»ŹĪéWŻÉ°āń4µ5ƓuSj9üŽń}IߣĄ €ąŒXKLŸ’ŽC’5ÕehĻ«÷ÉŚüĒ”U¾©Œ,IJiŁÕ;xCÅ3ū•HHu' š)œŪ)׍©óäÕļž)3^€³Żš… ŗżįb%V'-?+|H’Ļž9+'”ŒģøNWgØśŠEęK’Ž:™±Ž:kvj°§‰ĀbĢ1`Š»ļwéꏗČ0ņx¤Ģ¬Ö³Ž±nBłÅm#£ā™ņū£’Œ$#ćųe<^„…gPX@0Қ_«¹«Ņ•ž5ō{"nUs|żYĒU-~JY9IIRÜń—J/˜#ǐ/-,o0óüē9~Ižóē åPd@0dé=whĶżmJĻjŅ©#W)O)˜V­Īö„JK;¦YsؽµL}=„ŠĒ†ŗ]„g“ĻQO×lY;4ӕµ)–¼ Ų`«¾ŽUVķPF`Øu%\¾Zi¹3åĖȔwU÷ŚO)>..43«ĄŌ•–[ŖÕ}Dkīč҉#k4kŽ›JÄ<Ź-蓌Qż©°ę,jV*iõŅӟUnžq­ZæM¾€”LzŌ֘!£¤Ś[ó4ÉR2žÆX4SĘIÉ)#³F„³ź „äÄÕßėÓ«æ¬Ōīż7ŠĄ•nÖŗ‡Ź5b›7˜©œŠ%2&SŽÓ!kSZ²z‹Ü”GMu•źź˜-7åȘ°\›”lTž`Æņ‹ŖÕß[؁¾Ņ·[BĢš5}žFUĢŪ©ŹoÉMµ5ēŖöÄ"uµÆPWķ.xü+Ü \ŗ`L!éy³U°ą–÷ŻļŗC+£xżć#¶ūƒZzÕ#JĻLØ„¾X'ŽŽ¤ęśĻyŁU›Uµä„üA«źC%:²÷“.I2†{€KĆ,XÓ@4>€±@ Ą4`Œ£x¬R5Ē*ÕŅp\nŹ+c¼’I&")G’•qT{l–źN­P"^vÖā„$Ņ’®ÅĶ™éxùŪe•”SĒī}{µcźLŹčī¼–r`ÜѦ€€\A¬› ø$Ģ‚€ó?4zŪ”jÖģł»ŌVźQ ( XKŒĀ€€±cL»rņ©¤¬NUņ8ŽfĶ³ŹŹ¹›ĘVż­Z¼ŗV’ä8C½÷Œę­ptĖgÖė‹?ü°ö½XÆ?ŚA±0*ŒĄ9ånS~Q½Œ1rœ‘Ė¢[×jŽÕ9š³DŹĢK§X5Z@pææN+×ļV heŒ9kæĒėhf„#ėZc7š¾hĄ0kS ēīėF”JJĻū§ ‚.- µIUĪ\§ŽŻ¢„WļRz†«TJ’H €`LĆGJ+׿T3+:•HģV[s†r–ōQ@0ö|¾&•Īźćq“`Łq9Ž„( €`|$āéJʍ¼^)”į^šł–¼‚ Ą t€iĶŖ|Īny¼?փĮčø“€LcÅ;“ōšCņzI˜“€LSÖMh„L(Z@¦׍)æpæę.ާüācĒŚ”r öŖrĮ~Éeēö*”‘’ćŠņ.9pōÉēķV"‘®Ė_TQi«2²cņśŽ8 €ąR‚‡›Š¼%›5knĮ¤¬5ņłĢŪYƒĄĘLŸV]ūøfĪī~{Z\ęc(-tZŃĮ,-Xö¼fT4)”ĮŠ€ €`œĢYų’źkfiĪĀ9ŗX€qāŗ1”ōŖ¬rļe–†\:L!ļ<ė;N@‘¾4łü—æåĆŠųĄ•Ķ˜>„gF) ³ęnUFvŠB€€ń—™ŻK@ĄÄ8]½H©£æAĄčé^¤Ž–t ĘW pLYŁGudļ ÅćŌŒ#+ÉėkW(½Uż=~ ĘO,:WŽ'¦ā²ed&( ?ĘxŌŁ¾V™ŁIłƒ DćĢŗŁ:~`‰¬K ¹ž©xAĄqm¶z:CLĄƒœć×¾]”LŠ &@_ϵ·dR@0žŒńØśąj¹ Fcļģ „k3@ĄŲ‹Å2•JQ@0ńõv„Q@0žŒqT[]%ké‡&@}ķõźjŽ÷ĖüHŅ£qņī?ĄØy)ĄŌgŒW}ŻŁŹ-hĻ—łŌ;?X+õ÷˜öśīꖦ6n Ӎėšq¹n"!µ5fĖķp<ɌŽNµ“Õ¶~{ē“ūv7¼^߭ߣö €L;Ž'1¶&eÕҘ„c®Qo×RIzHŅŚĪšł’ŹóśKjĄ“e]’˜]«īTX'­V_ĻbÉ n”ōϐ €Lēąa]9N«2sŗĒäzŃAi’®;”JIēīՕ¤ź €LSo³n½ļßž’Ń.:hŌßT2éÕą@H’HßŸT2į“Ē—ŌÉĆK‡Ā@Ą{%yjo «pfæ|¾sćŗVń˜Ńö-·Øæwń{öž™I×Z+cX©¼Ē hĻöĻ)Æ`·V]·]i”‘KsDś½±czŠ‹Uœć gśYc(( 8掶«õņęŖØŚ„@ .Ē›P2ęWMõÕŒTP @0¶‰RUŗB`Ņ¢ƒĪfÄ @€€€ € € €`ʰ² € € €   @@@@@€€ € €  @@@$ÉZj@@@€€\*cØ @@@@@@€€ €˜`’?1Jm˜ųų¬IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_1.png0000664000175000017500000003614214632072346023765 0ustar fabiofabio‰PNG  IHDR ™q*UüsBIT|dˆ pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<;ßIDATxŚķŻXÕõžĄqŅ86õšbVV–#3SĖq5A\ˆ‚¬s~æĆŽ p‡½÷÷qļ…AWóV·uėV7»u›jY©üłi”* ß=Ļė”qīłœēĀūłž¾æÆQmm­õȧ;z'õµŒ–3 h›x€ @€ @€B€ @€!@€ „ @€B€ @ @€  „ @€@€ @n £Ü}aņów’ÉsćūŻĆk@SM¹zTh©ęNzQ˜R ÷ņšŠĘÄ"fAśŽžk rœ7ŠFÄsfž˜šā03Ż™ng8€¹¹K«“4ž‹TEc RÜę…ÆŻč}"é ć׏©‹MµÅŗÉ‰ifŗ ÕŌåS¦Tˆgķ2fę;dϘį_ŗ×yNÜŹ±c¤8¹Ē`¦«TR—h  @m,@Ģt%Zéžś÷²—ź¶»üŸv«×ėš-®ļęœ/ä½*ÖfĶØ~N«Rü,NO_ Ūę{"£FynŚŚążiUŹÓŅĒ䝔>NøæßåTänFģņxׯPWd¦-oDģŃ+r旉łk²“OJ\šF€0¹“ !…EiÅĀ\æ-rBō†Ų«>NW¦ ŁąWķæ_µ=b—ū{ś"—Š\Ž÷]¦Ś-Ļ™>KæĆū ė”E™ٹ³³ æĒBÖQį¼²īsÅüŒ…!ėƒĖ“Ūü©7ū÷Z¬ßā2GæŃkqP±ĒĀŠ±%Ā7RŒÜ(<Ņ‹?†n¬°ˆYĻ @m4@y)‹S+ÅK«R$d~ÖļšxG™ŸPh—‘3;µJ<#ż[R¹ņ›QźŻaI’W ±%.Ÿy,Šm‰ŚćńŽÄøµ—ĀĮunų}‘ó‡į;]>Ź>®øŲ˜UģcŠ‹SRęå° @«äÅé™G…_S*æI«rüįŹ(Pmņz-­JyVz?÷¤Xėµ8b£jc@UżĒ¤V*ČØĻՅĖE§Y©K/ĶĶQ҆šIń…)ī āV{,Œ[ķ27¹@ šĢįBżēʕŗ|°R³;x]h©"7wöč°*ī‚ąnŲā³TæÅifĢŹäCŽßÜš2©jåłźķ×ī÷ā$ŗŲķCŻ6æć cÖ8ĶJYj“¶(óŚļc¼$Żunņ2·ł‰Ė'Doā6¼@€ī¦ŃUŖ&%¤Śg%.™ŗĀæ<¶Äń‹ėÅGīÉĖ{82Ŗ•gʜž{żĖ©Äóńū•_ūØw:dåĻVŖm|$ü± 2!fsŒĖœČuņœųūĢģ9cĀ7E @€ 8@LµÕį;ÜŽ§'Ė8}ŽPPÄļwż,±LüĘgiPńo·×=ŸQ-^÷ŽVŅ>’¬£Š‹ÉåŹļ:~-m\ol øĻW™ė‹"„·ĒGm‹2ÓķÓIoŅHSÅ  CækrbaŠv«Ė?å9IK¼—ļ‰ßÆų^Ś’Q>KµŪĒ„o‹ YļS[źņ©Ė܈õ uaqķ]­2Ž( +ņzĆ6}N®mzņĀ€•bö¹~]ģö‘’ ՞ĘÄ„ó?®8c„K°€“Į= £4„ĻEa[Äé±+¦­ Ł_ —6”Ē–8żĒ&uAö„QošY¢Ū&ż{Ō^秮ھÓóõ‘!mB—nē›U÷5R+”?„ļt{ßTS>!zm|ć$@€“Ł©ßaŖ-ÓH‡ūMŒ[™d’—oŸ•>ß{IŌÕ¦ĄŹōjᜓټ”Ė®¤Mé!ėżŖÆŽ_²9*h×1鶽ҭ|„SŃÓ+~‘ē4ž’,@› «ł/×åjs„ÓĢ)jcö¹}œXęōe\©ė'Ś­^Æ_u™VAÄf3ݟW6ĘElŠŽŽėśŃūC.ź¶ūžtž\ą6/q¹¹¾8Œ@€„NJX—ą2;±Š.#w¦<'zEŠļššnļ%–9ŸJ?¬<+ÅÄ„°8)ÖŗĻ_ŁŠ×óÓf/\y­śźŗ­~Ēķ³¦Ļ$@€ ”fŗC*ķ6Ļ·b÷¹ž;r·ū’…ļōx7r—óGŅ„XDčų½_aŲvs}ɟnµk³&^·ĶćŖMA•SWhwz/ Ł#­Ø¤ō_®Łe֌›Ķ  @ !/wvZ•p6÷š;^Õó\³¶±_Ėcaä—9)Ņuö€ @dŖ)ÖI'›GļuūP·ŻóĶøRēĻ„Ķčq„N§Ģõ»õw*& @m0@ź™ėwé5[Ü’‘^­8/ķįš\¤ßdHńA€0 ¹|PąAµ_”zWL±ėæ¹yMr;݉qó3Ķ“ūµ äŗg†4IŠč*Tc#6Ű€is @€!@Ą@dÓ‚Ąē§¤8ŽIĻŽVŌH;^@€Śx€ōµŒ–3 @ @€ ×=Óc“®RE€ @š=@gÄNJ\šF€ @ø @€ @ @€!@€€ @€@€ @ @€a@€š…ĢD֞!@€4oxt—µŸmä’7ig]„“#@ @ĶĘŌw¤õ+ž#FÖÅĒ}¬€\ ‘ ^@€ŲŅģĘF®s™”XÉ,€ MØŖĪ®péķQŚ=aęįūĀä99s„¼“…żķ½§2 @H“„‡8=v…ĖœÄB1_»a”z[„ĒĀ ½1KR} öĒ;~ī»XŲČ,€ ·mBĢś8×yš­ŗm.’§ĢWoņ+ ,Uä¦- Xå}$µRłCü~å’¦­w1 @Č-ŚÆu³Ę:e^¶Ē¢ bŸ„¾‡2kōEŽ’Ž.vł8¬Čåż¼WÅŚz äęčŹ4VÉiŅŪγõėÓ ?E‹_j·ŗæ¹[ńUĀł™ŒŗI<Ø8#EGb™ņĖč=ā‡y'ÅŚ`ŅX¦Ś2µ”o„]Ƭ馚ż”;Żę©·Å•:ž÷Ź•Žzq%ŠÆģ,U{?ōf“pbŚ*q7³@€Üųŗ;#¼—ŖvM]įS„/rüX9=z„㌤EnŌ*ÆE%¹'„چ$÷¤P«Ž(ԌpŅėÉįOw“Ž›nÜÅøC‡ėWŻŪw5–1# @Čeś½a¶éх¾>•é‡å"v‰§‚×{¼žT®8“tPų””ųøRR¹ųū,ūŁC_2Švąę£‡Õ?®Iś ŹQŽ£ś2# @wy€˜‡ļw›µÖ!;nŁŌķ2rg:d'.¹0-x½ė›aEoĒæł«©—Y#œW­WTĖŗÉ:2 @ČļlÓ³g[%ååOŒ]•0ZW©VŖ¹(Ķ¹ē‘ŠŽ'¢÷:ŅŲšøŹI±Væ]|ūėĮݘ  äņꇾ(ņŹ÷ķ2ņó§.÷¬‰/¾Ķ=y9$n)@.mNOÉLd0 @Hƒ§œ;͊Z£Žäžˆ]ĪŻjxŌ‹­ aĪCŁ÷€¹šYŲ͔ԓ¹ŗmNÆóx-ķ°ĆÅŪ ¬£Ā…‰ŗqrę€łŻ˜š]ၫ‚ŹĖÄoėo«{»ńQĻo±|]§˜  äpؙö Śk‘f{Ź!ńtSEĒ•¢v‹ŹLdĘĢj•4?+¦Xų*ū˜āb“ČI±V̰Jd.@€Šq‘Ė’Üč7©6ŗæWźųÅķÜńźz¦­Rģėšx‡vĢĄ] b~ģŠ„Ī_4ut¤~N©P~ŸqDų%®TłÕĮÜŹČČč^ęą® =ś±‘«¦­õ>ŚŌńWźņ™]zĪģ±›£ĘG­‹3ÕTŚ”ļo›īŁżEŪ>ĢĄ]øbŸ9}f\‰ā»¦Üū”ßéņž”Ō…™×ūžr§q9 €»!@Ģ“åjsż¶H‡ģÜŁk–§”ļkŖ.S÷4 »=?ń%##£öĢ @›ŖPŪō™Ó…¼ōį;]>lź½YĒ„ó.s ŠŽōJĀĄ] U”®ó"×eÖrŽ ›ćĄA}‘÷cĀwF\õ}uU”}'F¹s, @wM€T…Ś¤Ī˜žqDńkZ•pV·Ķåż¬£Ā…¦ŒäCā÷cĀw\C½ÖčŸäų Iļ™  €6 “āóólÓÓē‹\²Žķ­Ō*ńlšzĻ“ŃÅ®’nŖSĪÓ«…s«BöMŒ[pe|¼(Ģ˜ŚżEŪ FFF÷0 @m<@,ćgę8ĪŌm ŻąžzÄ.×÷£v;}¼Īēhän÷÷š">2k„ó+Bö™év†×GĒČi»µ#Št#w蟶»Ēf {Ńvš Ć<#㲓–Æs{#ūøŠd—Yåœj3ŽˆēāJ]?¹.ĪLW©ŗrÕcøß&mĻQS:?=ü ö|hćŒ1¾×}–Õ®ČŻņÆbKä?Äīs8Ż”ūŠ&`™õ;įEŠ#w9~Üw¹ŠŚėö”"7ÖõĪéo“īĶž @mT»ķī1õ30^5j¶zƒż‡©•ŠŸbоiŽųL]®Ž}½ų óŻ ļųų‹Ż™  €6ČB3ÖŅm–eeč:ū·źä½ŌJįlsŇÄeNҲČpæĶŚGžń$³Š½`õüЈ§Ņ ?eÖ(~•6‰7W|$tśrlä¶Čˆ¤×X³Š½h3 æv“ķŅĖĻKw»JÆū3„B8›yD~”©$|§×[’ŽćuÖĢ@Ōń™Ž}½ēŪ”…É?Ö×Ńlrx7xµŻŪÉåŹ&ßµĒ㽿Šé¶¼=†:d6@€Ś ž£z>“Āśƒ” ńū?n•Ū<—a%pśļøČMŃ£Æ9ūćJ£BK5]z™42āg €6ēļn/Yzͳ®L«Ī„V gĀ‹ž#ÕŃ\ū@R+•§uŪ½_³Œ_•tÅįƒźį~›5ŅŪ¦šƒźAŽóō½Ēi “{žhC,u#’-ÓüO9¶UžÆōÊ_šó.XõbK]?±Œ_“ EG‹Č ŽōW­„Œœ¶[Ós”æœhCŒ;ß3>dTŖ6qmZ•ü׿ ‡¬cĀł˜b—Oš"BŠ!{ŠSu™zÓ‚ЧFxæĀ,€܅b¦; ‰ŚćžAŹ!åiSĶ~Ķåæ+Wk·śœlL€¬Rż–ńĖ“³Ž*j•324 ½Ēé##£ĢĄ] U”ĪsāVŗĻSéwøæ—yTqA½Ł÷Ų•›ČmÓęåH‡Žųö½b­8=¾Š*iVŽåĻŪ„÷+ Ž×ŠfōEŗ.½LŸb@€ī²1ŪķæÜ»Śy¶zkr¹ņ)&¼ė7_»—ĆkqÄĘģcāu#$ėØpĮ·Ą§rtŲżå•“J•™¶\ŻŠźĒ3fASŒŒŒīa@€ī²ń\µ>jÆŪ沎 2kğ„˜ˆ-qś<`epɕŃ0.rcLb™Ó—×  Õ]ęD­ż«;_™i©h7ēĄ] ŽK#6ēž®Śd¼ĪæŹ.cV¾“‘\ZÅņ²ēz-Ł}åŻ°²ŽŠæØ6ł™¶Vµ/huš~‹˜Õ ¹ƙöŖĒP—a<’@€īĀņŅdQžTæ#¶Ųł³I «ĶõÅaγ£×¬ņ©ŽŁēü铵åI??ÄunÜŹ›9óćJϚ‡LąłpˆMꢌčb·„ØH>äų_”¹v‹÷kB^ŚĀØ=īļK«©•āéńŃkāƒV—fT ?Ē•ŗ|ę2'~Å­ÄĒ„= £§…ņüø D ēY Ė„I<čųµ<'¦0~æĖē«ĖÄé9sõEļØ7yŸ0Óķ—nÉkŖ)Ö]¾³UUØė\żĘŃŗ]cĆCژ>Čq^|Ÿ ś6”øKD˜µ2ē„p1„B<ė:'dǘš%)±³³CÖ{¾°ŹÆŅm¾v‹Eģŗø?…tŹłÕwŗ2Ū§ó³ęłDnRäęĢ­’ū—Ż—k»ö3ꉗ„įO¼¬|‘ēĄ] ŅFóˆ]īļI« q„ϏZ/Dh;/sbģņäqQ[£,ć„›ė×ĒÖ‰©¦Tó§ ŪÆ ZRšTīōµ“—äҊJ™Ó——VN“;ōC]¼f¾`eīÓń™Ī݌;w¬ó ĢDv‡ėtķ4¢3p7Șš]1Ån’ŖßˆžuTq1¶Dłå¤Ä‚TEnĪģĄßö~¤OūśVXÄ&_ Żž0§Y鋧­ -‰)vżØ”ŪóJŸ—Xīųuö1ÅÅģ㊺÷æ$~H,S~UēĖ”ŗ·ÓŖ„Ÿ<ē8, B€“Q2™q‡ŒiõCž=kŗj£ēėIÅ~‡ń\Ä.ĻJ·Ū½öÄóĄUžĒ¹aėR+„óN^’tō›‘vXų±§é³Ż™  €6Āø‹q§!āĖʏµZ©8”Z!žŁą{4¬ČõŅåW©•ā™5Š  ¹'…ڤrå7ҟM—Ō…Œc֔ęĄŠŌżēl­I*æĶ>¦ØĶ:*œÜ©ų¬~E#÷D†ÄmP­K™ Öob’'ü–»”yŚu™5āĻ­!4®Gæ]|‹™0`¶q“}„K„¢öŗż+óØškkˆŹwmb'‰Ģ €źÜū”‡Ā¶‰o“ęUś=%> Ö÷|„×CĢ €j’pū{ÄĢIGē[{€H²j†ˆ/½Ąģ€ć®Ę2«ˆqIn3-§V*ĪB€H·į}Ѧ’3Ģ€čšx‡vėóX7§»Äč½āĒҁiU¹œVr‡«ĘpŸe?›Y0€ÕzįHzµp.÷¤h0Įq­Ä2į›ŽcžyŠ™hÅd&²æ„V g 5<źÅ— _QźĖL€“RFt2rH² É8ŅŗĻųøń]°ÄZõįHŸq}ŗ3S @­@/óŽ=Ÿ1ķóūåIʝļuɳMÖoßČŖ1Üųø|ŗP-3‘ŻĒœ€“S—Łļ‹Ś#|bnįbźóŹČīĆ­Ė~2ōĖ®²Ž*.>?±Of  ī:|pfpAŗ«UöqEmöQÅCIB™šõŲ 393p¼,¼ÜWL³Ö¹Ķ“›§Z/ęōņ 3ßWĢd&²Ēc÷ Ÿ·…čØ'Ŕn­¹ÆĒ}ķ˜= €VUl?Ź=łĒŁ釅Ÿ²).Jw¹2¤3=#©Lüf ķ.æp§8ęXn6ä³ø§y€éxõ‡¤W·Mēœż!Ō:eOIbĪ@€ZSŸ‘c3Ŗæ¶„‰Ś#~ ė&{€łhe^°~±sŲ6ńͶY5Ā/6±–Ģ@+õ¢ķąīŹ Ė‚Ģ£ĀÆ†qūÄĻ|:ŹŗĖøõ. €Öl€M’1‰•’»“ū6²)nłóėūWÕc]˜% šŌˆž«Ö9¼Óā+Ē„_cŠŻ>r›X萕ŗP:—ä–÷~ģ?”=*3fž@€Z¹vżž+qų!µJų±%$næÓ©Ńa»õ£Ć‡Ś¤ĪĻĪ:Ŗø°ŅūHr…ņū[YEŃmOŒ 6ĪL€“b“õcl¤ÓŠ3k„ó-¼rŽ>sśL)@Ģt‡T®óĀ7ڦ',ö^¢-ŗ•Æ'żo°‹·H‘u“ĖLd™- €VČ>aņ“ę8%=ķ°ņt\‰ė'ŁĒ…/­J:čųµ©¶L-Č6DOJœŸ[āōł-FĶ…Č]āÓVŲ½śųc¾@€ZĻ9ā‚fˆ3VɋÓĶt•*‡ģüŗķ>'sN\"¹'„ZßżViõćŖŃķÓy-ܗqDųåVææ~›š¶¬›¬óŠ ‚׍ØŁ8)q„Ēˆa2YgIßń½{w1–ŻčóŚuhwf“Óń›½Ōéz’»Oł©ļ’©;§¤,Iæze£*4¬Čēõ†önDīö|Ē*éŹÆ 5ӖjW†g浍é³ķgšŗŠÄ|–šõß9É7µŅžUéļĢ#Ā/©•ĀŁŌJńLĘÅłøń”~›ųšf“²RµN¹_»IYP(l ]+p̲‰ö^ _šQ#žÜ˜_ź³‰¶ŠÆYELpõžļ°Ä©Ć¶˜bńc)H¤KøŌėGž5}śoäӃ®ŽĖ\ē&JĮŃŠ×N­Pž6ß~åĒ›é*TSRēgū, ,‰ßļrźf$©\ł?ėH [^#@€šH§Ś'–ŁT·Ō¦q×|›¹ėpļ•”sŸ‡²‰µōtʶ}乇”žīڱŒ[š*żi¾.¦. ¾¹īŖÅĀø5 …Ė؈…©±IóĀwŗ|ŌŲ½*G„Ÿ]¦Ūfó:Š„¼™ŽĢ:Ŗų„%Ä{ž|ncS}€ŒŲ¼nŚĮ 5ž•Ņūc—„Ų¤/ČJ.wjšŠĆŲ·Ę„ļ ūs„TżvYÖęH…±kR+ų×ī'¹–ßbÅŚŗ@ć5 )MI~©kr…ż©–ķfįuYwY»Ęˆ—=OZ±ˆŁēśń券“V%†ł¼ÖŠ÷ˆÜķłĻ1į;ĆZ ©g®ß„Żźżź«ļ"ūķ2Y{^#@€šrČb³—Ņ«~IƖŸM,³ūŠ©ĆvŁvó³)š4>¤½S [nfÄ.cF¾tŗł“µ”%×F„“Ņ”Žģ$ƁKŖR*”ßk¶ś×Ø6V*rsę4"ŗ]Čŗ ņė­„Hļ9×~Æ @MČ·`ōó Fõź4¢Ó}Ņžéļ:<Ž”÷ŪM ūÅSʌ)‘½­m}€˜iĖÕĮė*”324faū5«BöeĪ7"ŅÉčÖ)3¦_¹zr„I ©ŁĒ„ ×{Ü”k…r^#@€šwcŗ‘ūL»yY¼³Õu7qW ?©Ö \ņlćGøæÜćfƒ ҬFė*Unóc׬Pļ¹ōžu.©²Œ[•ä8#mqt±Ū‡Žį|ŲvßWgf,¼ökHŸÓŠ-‚5Åźi+…ķC^Ģk@3S­S–ŻīåVʌIł·śż„‘.ŠŚćö”tė^) lÓēåÜh_ĒåMźėāŠ¼ŽL?,žm(,ō;¼Ž²IŸŸU’ń^K"6žń˜ÅZ§\«åź±ÖĘ]o|ö €4‘ŗ_¾Ć¶‹oÜr€Ōż"°L¾EÖżÖOæ| ÖMĢ>·źćĮ!kfž_Čå³?ŹÕR¼\yŲaĘå9ēŁń+Āwzż#©\üŽifś"écf%-«æ-oŌńƒaNƞä5 eäĮųżāo5@ōŪÅ7»öļx’µ_·ļ„³ŠŒUw6–ŁÅŸŪoā Ż’jˆn›Ļ«—0T\µ.®1r9B©<Ŭ•NH—>?`„zwżæł, ß²>ØüņFō2ēBŻę¤rÅiKŻ„)Ģ@ ź5ęŁĒż–Ų•dW\¼•ųNQ=uŌ+×~݇ŸząÕzū÷S*?ö2ļŻÓø‹ń}ŅJKc$똢vLųęčĘH=iózī ”V»Õ÷øeüšÄĖqR©2ÕT×Lo m¤e˜}ópx/pX!ķįø•I?,üŌgܳæ_ĘŌcŲ]d&²vŅĘö^ęĻ>.O¶RKwŲjÜ%XU”1ūœ?M>äōUȆ©UŅŖĘĶˆō9q„.ŸIM³eꑆ>ĘT]¦~ÉeIč£ż'īšp·ūy hAņd렜ćā…[½+xµüP‡Ē:\Zݘ6ÖćV6tׯ€ŲgęĻPäΘy³įń‡rµj“MänĻw­SeŽčcūX„kŗö6ļĆk@ ]+¼Õųˆ+Q~:Q;ĪZZńøĒP ·CZż°ĖČĻ—Īqž²ōF;2xÆęe÷åŗž£üÅGūOŠķł‰/uėoŁ‹× €ffk%ķåøŁųČ>.ŌZjĒŁ6Åcø™q›—ø?<)l‚RLŸ¢ (×L]&®PfŚDtģłĄßÄt›0ŻVńuķfåшŹw՛¼Ž­Q‡nœVžRįųMżcšYŖŁ1mĶԊqQc¼£•f—Žo™®(£ZųÅ}AĢŚ[ ~6ŃŖ§Gz+ģśģƒ¼€“§ėi5A:G£.N8ēŲÄÉLdŻ~Óeøó ÷õøļކ6œ×}„ń”؉Nu”±Z½Įń@x‘ņ­øR夈©?yü·Ø¹˜\.|å߯ˆ“” @­”Mģ$7ioFsĒGņ!ĒoGėö„µD| @€Z)«Č‰®ĶqĒ«?m@ÆūA«ƒKżšµfŗb @ą.4ÜyŲĖYĒ[ź2¬Ģį¼_”jĻ+Į["wéNXśķĀ;-¹=ēøP;T­ģ;1Jń‚}ŽĻó6iĪr}‡z­Ö˜ioķB3m…j˜Ļŗ°ž6ižż¬’Ÿś»§ óŠ  e‘}LŃb"­øŒffqÕ#£vĘ÷wzø§iĄ„žiÓFNŪŁčż"Ć|Ö«žį=¦īkt”¾Īo_ļf  ō^ ŸŗVÜøBÜP(ßßRē€DģŽ›:f²qćö׿ĮROō™Ō˜ųøCŪ}Ą”žĢ@k yKt[”Ēs[`ćłµŌ„£}Ē÷éŽ˜ĒŚń‰Ż‡łnųĖĶź/¹.UÕKę  õˆqänń£–śŠ'ė'ˆžįR÷_!Ž/??%Õc€CŽ’Su™śŚy%øXŪµļ˜g˜/ €VÄø‹ń}®ÓķŅŹ”_܉‘øęŪ¦ŽŅšĖ’=ųÄĖŹ!Ļ['»½²Oóūžߍźnż-ŸfĘ@€Z —<ū¤øńŌøģźŅ '…Śš"įŻßźxŪ?tŒŒīyj„ē+ƒ]…õZ­}z¤)3p§W<1–=ōäż&ņd«°Œjń§;µź! \./‘™ČlŅĖÉģņĄ}ėĬ€ܹ=ķķā'{ŗäŁfEķž~XųéN­z\)ķ°pv¤ēČĢ@€@1ŚōŻńdÖ1įüކøĶ°OgNŚĒlŪø” ń‡Öõ Å5Ģ @€@ ß.¾ŁšćCā³@>‹Y @ZDČq/³ @€“ˆ©ŠÕĢ @€@ą’k›’V%žnĶāœcǬ“Æx¬Ś Vęœ.¶ĪMčŠ-Ģ @€@""O± IŲ/~ޚā#b‡ņķŃ~#_`FŚ ~Ļ=źæT±>«Fų„5H\‰ņ?ƒģ=Įl“a–ŚqV±ū”Ÿ“† ^„(ī4¢s ЦWC&>ß%p¹°=ū˜xįNHr¹ų¬›ģaf @ “V’­¦&”)æ¼S’{BØu›i»Š*¹cĻ:3mÜPĒ”O†®ŹīŌ²rOеuß»6吚½"Õ*„™h㌻·w̶‰L©ææ“—d%ģ’ūųĒ’ĘLÜĢżMj7‹ĒsO w&BNеŃ{ŏBֈ»óRFyråćė5¦ßsäsż— ė†: ļĒĢ8Y7™±ŪLūœ“ĆāŁ;}—¬ō#ĀĻN96)Očłø×|ł’¤rń»śK«ĻL-Plę<¬?sš$€³P3‹Ų”|GŚ£q'#DŚ›’R!œ¾Žæ×…ČYéDõ‘#_dn@€ y5ÄDvŸ÷|‡„Gğ[Ó)ź †ČańĒ€e¦aĪßcv@€ Ųd½Å”ˆā’ŻéՐF…H•xĘæ@±aˆrHfĄPWC•Żē1Ū~^Fx®µGˆ$„R<ć»Čaŀ)z0? @H:¼0h…|ß»KÖ-6®{ĶsXųä°'ŗ0C @†·/DęæT¾%į€š•”DHż#.yvu’~ꥐžO¾īæ§GōxÄ}¦}vä.廆!Ņ–˜½āNJT+µqgc³``)S" i%äRˆœjÕ'Œ»ßĒ €‡Dkµf£²ŅkžŻņģc ƒ‰ärń™‰ģ!fĄ=ōt§'²Ž ŠL^čś$ @-¢Ē°Ļ Š"z›?Ū‹ €1ŠnŠ@6”@‹˜6N™sB @ ł…®K é@ĀÄĀ· €VīŽæŻ+3ījüPGź~ļf”;ILŸQ-ždń”ß&¾iŸ8iźųóńuæ=3ŠŹČŗÉŚ[GYˆ“Ć-œ"vŠļ'•‹ß¦V ?fQ\Č9.ŌŹ„WŅŹ‡ļ"łJf  {°ĒżŻÓ«æŅ†Dļ?~jD.Ģ@ė^1Öoß2äųų(62O @Ą&ÖŅ)„BüŽPć#®D<Õoāsݘ% 1vš™ ķż0ÄI>(üеæ ĄP˜Oż‚n‹xRŚ bHūArėė”č Ń2™1s`@Œ»ßoaį¼Z±ßV@R+…3®ÓķR˜! ä>Ė._ŗ­­!Eˆj½PÉ쀐a.Ć{™˜Ž™¶JQlhū@b÷)?ī<²7s`&é-&HæÄg7Üó@–)Ö3K @@³QYečgDīR¾7Ģiš“Ģ@+ē:Ż.9­Jń?†¾äņ^”6±Lųvr„…3³Š ÉLdķcŠÅ·…©§Ū"¾.ė&ć®X@€ZŻ HWćūāJÄĻŪR€äœ.ź·‹oMŸ`ĮŒ€“¦n²āKÄSģ§jS+ērŽ "‰ÄÆ^’źÅœ€“"S¢'„»Ķ°K‘'[ilć,}†:½<ŲBm>Īc¶ĆœŒjń'ĆŻœ.Ō:ēŁdÉLdĘĢ€AĉE@ü~łw{9Öq”V³Y<ńÜÄē»0O @­\§Œ’,sź~‘æh+y'ÅŚ“*ńLČ”4zÆųqö1ÅÅ“JÅ9«H 'ę ĄŲĘYśęœø¼'Dś…^ZUČ­{?ćˆāטbēO„s8īTt¤” ßgT+~ Ū*¾®Ģ²ŽpγK™m!\Śßb"k?Ümؐ—ä{uōhwf Ą06Ŗ·÷˜c?_·EžŽŁ“VLԘ{Ū%O[ą83}įÄø‚Ōš^oމųˆ)?1y”[×ÖżŸ«‹vĢ @bÜŁųžś·Čó¦Ž;::¬*Ō&mA¶ĻRMQśańlKHĀ~ń EŖU¤…jģ$ę  «Æ%ś-v³¦›jŖ£öŗ~Ų¢« 'ÅŚ5ņ «(öwø+drā²3Ż!Õå‰ŲŲ²›ĪÅZ÷™SÖKå™  €6ģYó·;T—/ĆŗL½9 Ŗ„÷Dķ?˜6Į¾żĆķļa.@€Śź#£{śŪeś] »¼ßjÉųI Ū*¾ź³Š~£qW懘  €6ģ…+D·O—Pę|Ŗ%Äw‘ĆŹū{ŽĻŻÆ€Ü%ā[ ŽKtŪ²Ž ē[ō6¼{…OūOš8³pWH–O}€XÄ,I•&lé»`9fZG2 @wY€8ĻŽ^^-žkéMčaŪÄ׌»˘ €¶ Žõ¢ŻźżjÖ1įBKHĪ ”V̰Nb@€Śz€Ųg_ ńŃ«ҫşZ:>$™G…_ ķ+d&²ū™  ÷Äq€m‚KœY€ĻŌ>‘ÖWģ²xš ”}Žß‰ųØ[¬üÄ<Ąģ%ꥥ q Č>.Ōʖø~b¦«øźąĮzöÓg&—+潓’|HüÖm†]63`Ązsš¬Žč|Āc®ļęAŽó¦Õ»ņt)L“[¼_kŃCˆēBÖ5›”5ń„ā…Š-Š”I:fĄµ«sļµČó¦^¹ b¼$=±ĢéĖęŌ įLx‘ųŽv³āM™‰¬£ōėž¼YhĆ® ‰]F~~ZµņL³ÅG„xf˜Ó!ėpƬ»Ģ˜9ø‹är„ĢÉM«r<ŻŗVÜĒs€¹ŠrFʬ£Āł¦©Ė„<÷@€?q_³¦.B~mŠšČ=)Ö¦U ēÜņķryī€ ņ)ßŅT§ å+3‘µć¹@€4LW¢‹ŚćžASDˆs®]"Ļ; ä†ü–5Ķ*ˆ×<łtžw @Č Y'/̌-æŽ+Užļ–O9?(~39|Ādžw @Č ™‡ļK,wüśvV?Üf²ł҈‘8ĻN[’sBøx«±SłĻ ”c¬Ē‡ŽĀs€¹!3]¹:~æĖ©Ū¹ oöq”6 PQā»X\ģ½@XÜÓ“Oę€i’r]QSH˜Y#\xĮŖę€iŠŲˆ¢ˆŌJńtSˆtŹŗ©Ÿé+ĢrĖ°©āJ\>k’U“b­C’U s@€4ČsQōŗÜ“B“\‚•s\Ø5óeĘ€ ²Ļœ™Ÿ{¢éÄ|ŖŁę€¹Ī%X„ڤƒN_6ÕFtĶ&į„ĢDfĢ,€ ņ^µ”©.ĆŹ¬Ī–źĻ,€ Ƃhoļ<+„V gūYō$3‘u7Ķ|‚„nœ +"@€«Dīöüg݊÷×Ų}āR+Å3ŁĒS)~”u“ud6@€ßoÅ iV@®•xPüŸĢDö ³@€\b²8#ėØp”9$é ų5€¹Ä!gƌ„.Ÿ7G|H¢÷(?` $t|ō–č„2ē/š28¶‰oų,Ļõž/Ÿć·H>_Ģ“Žd.@€Põ¦©ÕM½āį³P±ˆ9 @®bŖ-SĒpnņē¾‹K˜ ä*cĀ7GgS\lźń[¬(d@€«8ĪL_˜{²é7ū/ @ČÕtŪü7Ē]Æü— Ė™ äwćV'¤U9žn¦aņ—9)K›ė܏Ąåā&ꀳ"7gnsHZ•xz‚jģ8f€©_)h®‘$TžoR˜ÅDę€ õ)ˆÜԜ"I>$~§HµR iÖ:߅Šsņ†9 yšøĖÄm~ĀŠę Ü“BmĘÅÆńūÅS)•Ā™ÜBm|©ųEč:į u¤…3p—Čh]‰.±Ģé˦ ąÕŠC> sģ&{õõō“2™Ģ6~’æßb‡²GeČŗĖŚ1 @wc€Ō±IŸŸqDü©iV=ÄZy²U`C§ÓˆNĢĄŻ ’©+Õ»›;@€¹dLųΈä å÷€4{€H¼—Dn”‚ €f3ķŽ°Ō*å@€š=@$!+h‘½9&„Āń[@€š=@$ž cÖJ‡Žlxd•×fÖČ  @ČMģŃUŖ4[üŽŻL€Hń!ė&ė'{Töh‡ī:šü @Ķ!;ovīIįęÄDö(Ļ; 䦹ĪM\~Ó+ &²n<ļ@€›ę83}1 @- ŹüŒ€“H€LŒ[•˜uTø@€@³ˆ™®B¹Ūó@€š=@$”B Š"°R»‹ € Ēi‹ņN Š26bGDŹ!Ēļhö­«lōFtr{RĒæ0l; @- ęį»Ć˜¾üĖ©‘_¬ ®<ļ@€Ūā83caęń笣¯~Kvd’t@aĘÅłŗéĀó€¹māōœ9.ÓåóeŻdĘ §rOæĒGj„xÖ}¦ŻŒŗ‘ń¼ @šD»Lo##£{_œŅ÷)»xKO×|Ū$·vé¶q“\x¾€ M £BK“ “Ąs @Ķ ’>‘<·Š"2Čq^°‘‘{= łÄT]¦~r˜ėßy~< €fÉ@圠™ÜĻs Ķ fŗJUƱj##£{xž€ YDņ÷€ķa<ūJžg @hö‘<łw÷Q<Ļ@€Šģ2P9'ōŃž“śš<@³HŸ įnģ€ ;4Ż_“}ŽēZdČÓÆųYŻ{ŻLFFķėÜĒ,€ ·­æm†¾×•s—Žf&æ‡Ńżėѵ[Ė~ŻX÷ėkćÖk¬Fd@€&ó¢b†’cƒģ?kb=Ō{­~Th©fTh‰Vś·¾–Ńrf€iR¦šƒj3m…źŚæ'@€ -†@€ @€B€ @€!@€ „ @€B€ @ @€   @€B€ @€ @€ @€B€ @€!@€ „ @€B€ @ @€  „ @€@€ @ @ @€ € @€ @€@€ @ @€ € @€0 @ @€ € @€ @€@€ @ @€!@€  Iż?PōM§*½vIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_10.png0000664000175000017500000003103514632072346024041 0ustar fabiofabio‰PNG  IHDR ™q*UüsBIT|dˆ pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<1šIDATxŚķŻyxÕՁšqZ ķŲÅ©UėZź֊ .,I@‘}ɽa [XĀ’ķfƒ–$dg“UeADvŁ‚ģ¾ķ“óNߌĪtfŚN;3ŗt±BŽ\m,"{ÄäĆó|½—Üš;žqæžß9§^yyy=ų,©ųuećK“¢R÷'|šFŽhc<.pģ\ˆ @"@ D€€A€ @ˆ"@@€€ "@D€ˆ @ "@@€ D€€ @ "@@€ D€€ @Œ‡@€D€Ąg)>¾XńĮ’©¦#_K j*<>wC£®÷5 <=<2eoā§D€PK]uógی@ӑ›’/‡š €Ś9ėqÅ-Å6yØļ‚Ń—Sx@-ó;"oŗ·Sn’ę‰;’/Ēų €Ś1ėŃ āƒ}»GƼlĆC€>ūįQļ†F]ī½?zź°Č”=‰—{|ĄgŌW¾yĻ×īhŻ$~Cņg!<ˆą³9ėńł[ķūųƒ½ŸżY "@ųŒ¹ęĪ–7ŽÓabló„ķ56ėŚ—ųČ S“"Tnm:øµ± \ę‹Ģo‹Öö‘/ŌųķVMG¼šśµ›ŻUńž_©!õ©ą2]d~żżļžn÷ŅaÉ»“.Å-Rį¹śöf·ŗž€:ä«7Ü÷Õ;Z„D?>ü•”K¹FC€źŲ"ó›éżč½ęŽŽ •]ņEāD€PW™ßużŻķ³c›ŽšņiķR%@ucęćK‚3S>ķmrˆ nȕ, @­ æ»Ųi™žręŠ%”õ] fN‰JżųĀõV™ė3[¦ÆĻ N „ -3Ög$¾4ģÜ½1o• – ¼Ÿ¾qŠ÷;LZœ~¾Ļ¬ÜŁŪ{’2Æ,ųīš„I›"S6§†O:ož¼=åŌP©Ōüuū‰ 'ßŃó7g S%­r(aÕŠį[µ*+:}¢Uęœš÷ ߚ•¹©’?OÜÕė?Sמ~ĮĮčć“Ėb޼0ic×Ā™SśĢš“ØKžĢŅČŠėÉD€Päd‘”ŻIƗ&½–æ?ųī)3ĢlœüXįĮĄūE‡Ē_Š;”ņrßJyyą÷Ǽ֒Ÿ‡>Ÿ²12“'ńĆļY–Š­pĘŌ/ŒŽžW|§ōhą£ļWņ×ÆĆßŽēßcē…Ö@ JŻ‹§MŸø«×o‹D ńĖGm²8ycĀź{>7veĢ“Āyį]²ś?“¾:~iņkq‹2ÖtžülįŁ¾gDŹ–PtéŌ§Ó7ś?ye1ļˆ>^xØGyöö>’6byŅę¶ćVe Ąg>@žæØ“ŠĆė4Ś_’Ž‹¶Y/«¾sAŹš'oOnž“5„yŅ–ŠÉėAˆ ŽČéoŃŚ“Ś›XS @-īÅ9Ļö(łp޳阻`r֖~?O[ß’Ē)»’ˆ€ šŒF’y)kŸČx)ėlÆk5ę•ĢÄÕĆö÷&mMĒܹ…±s'<ß9vIxįŗ P·`ķM ½2čJNŚĶjģ–ŲŸv+zzŖ j ²„%s{NĻx!kKŸ_ ?yKފ?’„{ńōéD€P·äK÷_R-3 ‘)Æ„† k“µlBģ¼ģåƞO]Ÿ°j䮓 Š~ā’ÜŹ×6 Ī~w»¬.źŽV)ŻĀ?³± ŌńłŪyžZ~6w·ćś HgAv'zqą‘ō~4hžŲUŃ„Sf¶Ÿø0/*u}zóäķ)•gz@] ŲŖH·ĀYSzĻĢ›ßgVĪ¢šķV•k?JĖKŽŹ‹E—O. ¾;ńõ^’9vKæ7»LˆĪsżä‚õž™³ woąŻ‰»zżęä…ē§ ļˆ•·/śŻQĖ;nmróÕ®æ Hųó‹ V™ė3;ēΚųzĻ’>S|„wĮźYÜyāMoŗÅu ŌéYœ˜Z47~ŁČįķt/ꬢiÓ+ĻžųÄĢĒ‘Ą‰>Óŗ”øŽņ„ĘżŸM°³÷Æ+āÄŠÅÉ£BÆ„Vžķ=„tVüņ„­Æüѐũė;å>—ßsĘ„Åƒ¤¬¾,qsś†Įßļ5cņs-Ó^Č»„Ļæœ.@bŸī:§Įu ®p½äKm3ĘMūhöāX°²·Ęü{D\³{]_ó÷ßžņ×Ģī>kä²ąŗ‚Į*Ļ„Œy-ųÓČøˆū][gt_‡ū®æ#ų›ŖČĄ¹Ż«Émn½ pfõÆ©ß įÅčƒU šāōÉe?¦æüQ·‰O%»¶>”mb›'2_ ¾Y]ė@JŹG-ŽłP‡np}|löcŌņĄŽźŠāĆĮć_ž×ø­Į’čŃ:Ś5 Ōqwµŗóś˜ĀŽcśLé:yō Įį‹ź œŻĮ’½Æć}ßżā _ü‚k-@ØÅļóČ ĮüĪéżftĖļYÜe|ܳŃKĢéžt× āā—ׇ֏ œÓ}Τ]Į’©ī³?N6āłĄ&ć!@Øå¾~ų¢č§žT^z¬ębćŌµ9{owŪv”ń ŌrķÓŪt»9ų³K§3~{š× ®kš c!@ØšÄ>ڬųptł§ “v’·"@¾l,uĄSimzVȉKĒ‚å“Ė‚ļŒx>øvąÜīSśM뚒`÷‡n1€: Įµ >’dJ«įÅG5łožŌyܓ)‘Cš7rķuT·‰†]ŠEē¹{ļ>x؅k.@ØĆŗŽ*®:Ļõ8×,H‡Œ¶½Æjr•k/@؋Z ‹¼3įÅĄŽ‚?— ”—ŌšķXyū‚o [Ųc}ćąC ]@ž‘h٤}F›ąS©m:ĒtŹģUŅ);aE`oMDHöÖąÄĪč¼Ųµ š‘&±Ķļ ŸÕQńQx0š~ÓMŪŗ¾>į®Vw^?hn÷g'ļü”ŗ"d̦ą›7>|óU®Æ€ÓŠˆkŚ©ųHt5-FžK£n÷ßēŗ 8­ę»1ccšŸŖE‡ļw’TRƒė\įŗ 8£'“[uDUdŌņĄVŪš 8§p8¤­ žcUdĀĪžæģ6”}œ pN­¢š„ƏłA׀¼5<¢ė)@ą¬Āk7R׿_•™ø+ų_2Ūö5 "@଺Nx*¾äHąD•#Üüeƒk|É5 pZõÆ©_?ī™®kJŖ¼oʚč﹦Ī~ Öõ ®H|1°÷¢·į=xoČs=^Œōų]®§€³ȵ >ŸüRĢž‹ ŠŚą1×Q€Ąy‰Ł¢čPąxUÖ~\}×Õ7ŗ–Ī©CzŪAyeĮ·«²ž#gwąĪYOŽč7½ĖÜĘ1ļt]œń¬Ä•}U]„^r4P^z,X>öµąĻķõČżß·Į ŻæQ’ŠŹ÷ oÓ[ńē/V~ķś ź ¶IO“Č|5š³ń;‚æĪßųcUc¤ā{ü!}}šĒĆW¦¼ų^ü’čW:gµėSŠy|֖ąæ%¾Ü>½ėųö½]@ōś¾ų…/^’Å/>Śė‘¦łoŽ«j„œjüĪąoŠŽ?ł±¼}ĮwšĘ6½Ūõ Ōµµ ķ‚ēDϵ,ø>o_Ģļ«;@Ī$vF—®æ ©’õśWdm žė„ŠŽJį5#ƒęuŸg uÄwŚ7žFnj¶żs÷ßŗ”ńQšFąI«ŗ’°Įu ¾juĐłŃĖĀ;X]Źų(<xæł &mķ„%@ØCķÕųžšBšK}ėU8xB/æ—śršūm“Z57€Ś¾ī挜Weo üē„ŽOœ¤¾=ę?zävnLµX昇޾$ ĶĆĀļUr$šĮģGŃ”č.<8Qt(p¼ļŌ.…ĘD€P‹}«ÉĶW‡g@JÕĢśŠ°ųKāKĆĖz?7?ŗtŹĢ6cWfwŹ}.æÓägŠZ¤­Ėŗ$iÓŠ%)"FLĢ©’õśW@-׹ŚßĢ|5śßKŽWg|äķ‹y;8µhNTźž„3+ūĄ=献WÆŽĘC€P<Ņė”įŪ Ŗ+>&¼ŽūWsäŸ=>žF€źĀģĒu źßņŲm×em üŖŗÖz¤mōƒV™kĒžo|„5Š™=J€j¹Ēz?śPŠ®?/ Ǝæ£ĻÆ"C;“/$>> Yįł¼1 Ōr½J;-؎ų»„’’ėQ:}ʅĘĒœ9R€j±«ļžź•­FE ĪßųS<‘¼vČį–›Ņ.&>Āīž_ ĘE€Pkoæźóč7GæŠćhUā£ą@šO±s³—G…ö%^l|„}·Ē”aĘD€PĖ]’ą_æ#xQ'”ēī‹ł}÷¢ÓŖH÷Ņ!ĘC€P‹E¼oä²č­Eļ]šnWGåƒę§¾\ńv_·āĮĘD€P‹ ]żĀEn~8p|W`JńģSćb䊔eķĘ/É9[€4ŒŃĀøj¹!ĻE/śŲéę{bž7“6ę`źŗą÷?ÓcqĮĮ?|āō½1o~1~Ļøm=½½ĻæüÜ䲞oõ›;įłØŠ¾Ä–›Ņ:Ož1uüŽžæ™V8ļlrĖc±MŒ‡ –kŸödĒă{†/¼0t~ōā6‰-›W>W’źśWNŲüͅަ•’FōūŸĶX·(cMń‘Ą‰šĢIüņ!eQg8ø02eOāöxĄxź˜×7ų|å×=r:¦‡Ļ’øŠÉŁó»Ny3KūĪžø¤ņ±±[śž<"yĒi·ķm6zkʵw·ž¶ė/@Øcz—vš6zEp{ßi]óĢźśü”cĮ šßé=3wĮˆ¶V>–µµļæD¦ģN:]€4‰ßśÕoŽóM×_€PWf>®mP?:·cJܳŻ^®œõø˜ŁJ‰«ÉŚŅ÷畽rŌĪ3­’x4nuj½zõ¾fµ?<¾Ōt@Ó&żgw[\rōāƒćć»eŹĪĻ\Z7ųXåcižąLk@÷_’T g<µŲUM®Ŗ×wZēg‹GŸØŽšØzeȱšy ] ē”ˆłcų±š{<9né¤ÓȽęެśĘD€P«×{tɞ\|§:ć#<‹Ņ£dڌʸHZ3|å¬Hģ¼ģå§ ļö˜2¬"@>gLµŌ­īæ.{{š—ÕaćwöłUdhGʇqQ–ńj’43²nČŃÓČwŗ4&€Z쁮\3|Q÷­%G‚Ē«3@Ņ6 ž‡Ī÷ķNš“«×o?Š“}~¾5ėŌ¹·Snc"@Øķ ŠÆkP?qe`uHę¦?>9.Ā®|®čpšxē¼yŧČŻO‹6€: ī™n/Ug€¤®ü½“ć"ćՁ’ų±ķy_Šßwj€ÜŁ6£sMžoz(ŲčĘ{46Ž€OŁĄ¹ŻŸ­Ö°ÖÅū[\”%ŒŻŅļĶŹĆ DŸø«ēG$ļü؉跷Lx²F>@׫÷ł[›Åµz|ų+ÉæGoĄ§¤žÕõæŠ%ū©PīŽ˜·Ŗ+>J+"£ßÜ ĻW†EDņöä¼}1o‡ć#naʆØŌõé=gä,č0iféÉR-j >ÜŃ:5ŗyĀöäæ¾‡ |Zz•t™P|$ŗZwĄ*:8Ž6kł„ʰčQR:«ōh ¼ą@ą½V™kĘV>Ž&kQndhĻG‹ŃonÜ«iužŪ®¾­É×ļķ”;(2åo ŽˆąSŌjdTÓÉūļžé,ń;‚æĪŽvaŪōŽŪŚē_#Rv%U~čo•łJfߧ¾÷½ÓmæūĮ,IŅėI74źś@uż»¾y_‡ŪÅĢyźūĄ§č¶fw5,x#ś½“"gOšF- ®ė‘ÓaŌÕwõĖż¦u-9ßų»9ö’µ³.óŌžÆśĒŽ3sž)@šŽz-tĶ-nƆ[®źŻÜøēƏ \žtŗ÷ €OóĆeÅÆ³».½<ø1u]šČčĮm­G·hrņk¢ó:Œ;Ÿų˜“»ēoŸČXŸń‰ž”Ķ©9{c~ßsFž³g Ē‡½œžåknæ®Ŗ‹Ķok>“m“ų ÉgzŸŠē#»ą2ÕuBū¾wÅüö\ńQ|8ų~æ9“ŸīC›1/fŽ.æ³÷/[];ötÆydЊ“Š€ųźÅžœ_śŚõ_ŗ³MzLóÄgŒ"@øĢ\ÜpĪŁcĮņ!‹Ć»[éƒ’«iłož~m’yY/œī5õ]X _ŗØÅę ›^ó.q‘”}‰g‹"@øŒ5ø¶Į•ŁŪƒæ>ē­W»zż&2“=åLścēe/+:x?ń„”S_éóĻ}fMZtźkgެ+.ōg¼ž»īx ×¼Qē "@øĢ5ЬIńįčēšż4?ㄳ}čļ’Ģųe)ė†Ż2}]f湙+O}Ķ}݊‡^ųbó^=:čŤó"@øLÕæŗ~ƒ¤Õ7Ī5ū‘üņ#‘)»?į³7īn?>¶Qpꈖ”…9ņęUžŠ~ņŁ•īķœ{ńqÅmĆŪ7±)łBāC€.S=r:d9ūģGچ’•ŗ=tŗśßéZ88| y…śßø#ź–›éżč·[&¶½§ż„Ą}݊?ŲūŁÄdž¬IÆ<”¼āńąłü\_¹īĪ+ļzrLļš¹!H³!D€ši»æó×[½”ļŌn“ķõp“¬­Į?[|Œy-ö§-36„īC~ćK®nŲōĘsĢbŌæņź[ƾ”Q—{o­ˆ‚›÷|ųœ‹Ķoov]ųV­ØPYĀÅć \¢s;$ßüÕß¶Ō>Qzģ,'oėū‹Öc֌=ĆyI7<ŠķĮźžÆææóŻöynōņ‡ \&ZlUr$p^'ŪŽ—NMFlL¾©qĻ&Õśį·^½ĻŻüHŸfĘ­N®j|Ąe Įµ ¾ž·/šī¹O:ļõŪ¶ćVeŸīƒ}³Q›“oy¬_TøŖ1>¾Š0jdēŠļRń!@—G€\Wx0ś/g‹¢CæÄL/œwŗõį…ä·6‹kž­Ø®ŸéŹo4üŹ]ķ²śE$ļJŖ®ų €Ė@żkźmŅ®Ą’NŚ󻚁§ĘGĪžžæė77{Łé>Їw£j5²cuĘĒ5w¶¼ń»=¦ ÆŹbs"@ø<ććļ:Ži›”¶¾ß?·ÉZ2)nQҦ‚Ńļ— ”ēæüÓØ•#w=‘±>ć“ń‘¼;éŪ­Rŗ_Ģ ęgrC£.÷=Ōoaµ‡‡ \zOķņōŠÅĆvµĶziÜŅCū›'oJ NĖ&2åÕ“šĮ§ū >hš®'Ēō ÆÓØ®Åęį5$ ]›\Sń!@Ÿ²6‰OFŽŃ&¹ómŅŪßŃ:ķ©;Z§¶ūöÉO† ¼½eB›Ū[ŒnÓ0jdė†ńOÜÖ|XĖۚmykÓAQ±>Ė£šā£~Åūtk6zkĘ‡ Ōq_łę=_»§Ć„‘É{k:>ˆ »öž6·Ü˜)ĀC€ź°ģń@ćžĻ'^Źų»U€źŠ‡Łzõ>’­&[=>ü•äKĢ€4eu#>|»UrtųąĀO#>ˆ īÄGż{:L޾÷ӊ"@Ø;rećK“>Ķų "@D€ ˆ "@@€ @ D€Ąg-@"†µ0"@ā" @ˆ"@@€€ "@D€ˆ Pė¤łP"@ —jdxKć!@ D€€ .D€ź@H|!įj"@ą‚ÜŚtšĒ.N¾Ķwēļö£[}Ś!@D€ D€ @ˆ‚@€€ł¬Č0"@ D€€ .D€ˆ @ˆ@€\b #āŸ0Ž"@ā" @ˆ .HDŹėIQ”Ķ©D€@HdŹī¤ŒWc2iWĢļžČ\;ę|b ,m²–Mˆ ķK Ī?@B{Ó7ö’ń„1æm‘¶>ó|b auü¾¢ĆćĮ©Esˆ€ ŗ+2eWRdh[ŹłĘĄÅ”õE‡‚ļ%­røEŚ–ŌKsČp"@؛‹ŠĖ2_‹żIé±`yĢō‚gˆ€ ż =J';tō֖é›Ķ€عé^4}ZĮĄ{ «†ķ»Tk@ˆ ŽH—ü9%¹{c޹"īąč•£^ļš?ÆX€ر[°š'oOŽ[˜öņ”ļĖG,µ]€ر k“µ&+m}ļ7»–>]ćŪšFĘ·2Ž€: 'Ļ* Ÿ2vsģOĆ;c 5 -Ņ^MK^ūƒ^OOXbD€@H`jńœ’#ņ”uƒ 5 ķ'-Ź·­ļ//L{Y€ØŃi™±)m蒤MŻ‹fN j4@z=»0¼ ośĘ? j,@žš°bĀĄēR^±<~wtéōD€@Hāźų½įŁøEkj:>ˆ ŽHāӒ×;Š!gIŽ PcŅzģŹģ6YĖ'\Šš 3 —œ K #ZG€ ˆq D€ @ˆ€K ‘”½‰£W/‹_–°„÷̼ł1Ó ē^źĄh6zkJÓƦžÉmĆŪG@-ˆ”-”Ü}Įw Ž/9(ĻŁóūˆäɗ2@nk>“ĖÕ·7»õL¾ņĶ{¾fµä¬öLn?qQnģ¼ģåž³²&c#"egrTh_āɏ…>ć$@؅ņdöŹģAóǬj=fݘOBYĪt“›š|ĪÄŻ=’{䊻ˆ Čč•£^Ÿņ½`łŠēCėOŽ€§&,›˜¹©’O<;öŋ‰‹öŸŸ”²nČįĄŌ)³ĪōšĪ“ēˆžKč•A’prģ@- nE³K“×;Š1wažÉq3½`^ÉŃ@yE|’“ڗأäłł•³ D€PĒäLŗĪ.±’@(Kč^÷”ŖČmĆZ@-tÓƁ›ŽzŽ Ļ#C{»LŸÖ)w^įéžo=vķ˜n…3¦V-@† @m×=+auü¾.ł³K>9£qį"Sw&w+œ:£ķøł“»ĪŽHŁ•$@| ļōłS¾,/9(·­ļæŽz1a{pZќ©[BU‘šlH’y :ę>Wp·`µ06€ZØßōį9Yé±`ł¤]½~ŪwöÄ%ķ',ɩҌHhob‡I³Š»L™q¾ėCˆ ¶Ȍ…§ČG*BdrYĻ·śĪ™øäboĻj?i~~ǜy…žM];xaŚĖē ͇F@-;£GŃäÆJŽ§oųƖ›Ņ.4@Ņ6 ųQĮčć'̾,aėyH³!‘ĘF€PäéÅē Jƒf¾T gZ\Ž"ķÕ“ØŠ¾ÄšķVįœŻ½~›°zčžČŠ×‡wŠŖ|]«ĢWÓ£BŪBD€P‡ōŗGÉłHچ?č9#’Łp|<9~QnTźĪä6cW Æ“ suų¹Q+†ķ‹[Z7liā–Āƒć™›üSpjќO†Ź¦“Ž33_ŒJŻžrš[°ˆ vHtéłȇ ŌåŁŪśžbČ¢ōµķ'>—ß~Ңܘé…óĘn‰żiįąŸ+_—æ?ų‡Ļe®:ŪĀó”—µbäė'Æ/yØĻü„čv—± ŌBĆV^H€œ,{Gļ_F¤¼žTy@a»ńĻOų\֊~s'.y"ćå1ēZėńDęĖ™ŁŪ{žfÄ £v<>tmŹ·ŸHźž•ėīŗŹøj©Ļ6^hx‰.šlśKįŻ±>\ļqńŪōJ󟉛ßgż5w7æ³^=Ÿ£µZļ)ŻsĪt«Õæ œ6B=7fUU*l6zkŹMŪUtĒŒ… čUŅ}Āé#’č÷VÅŒ™ž³ iMܑüżĮwƧ„W>^ļ;wüŅČ*Ī€<ŲkŽØėīmw«± Ō=‹ŗdWFEŃ”Ąńń;zż:| ś ł£7µ³ī£uÉ[CņęOŚŻėæžv>HąÄČFķØźLHćžĻ'Üš@÷ļ3ÄE½zŸ Ō Į‚Īc>¶¾ćpō‰Šŗ?ģ0©pęéb”ēŒügJŽNT¾~rYĻ·;ę.Č?õuį­"SVeo„<·:éęGz=jČĒĀ£^ĆØļķ”;ä\‹ó]0>ڧw>agÆ’ĢŁÓów^ļż«‚÷FƱ'2uGņéB!q‹7‰ž(B²¶ĘžtäŠQ;[Y;¦rG¬_’·-xŸæ(·]öņ‰g‹&ń’æÕd`Ėół?žu$@®ųn÷Ņ‘Mā7¦^ݰÉ}g‹3’1š™pżżļ¹?8}äćń/§G†v'µŹ|iģ¹f+Āq2śÅ»Ož ©ųŗ¼’3™«:ęĪ)Ž.ū|’yÉÆ|üļ•%œ|ŽĒY¦'ßōpLccó”o|;ņśėæŪ±ć½ę&4ŒŒo/@Ø’§żš;¢ni5²ķćĆÖ%Ļ-SįÅē#WŒÜ•·/ųNŃ”čv˱|ŲžØŠ¦“6Y³ »LŸ~1kBnma\žęęƽy|ų+©w¶Ķģ-@ØM!Ņą”¾ FŸ,”%4OŽ–ZŸŃ½xڌø…ék“×ĘĶŽüŸV™‹&E„¶„|,)»“ČEĖēÆnŲō–Šßæ(@Ø5ŗNhß~lƼŖģhz=¹[įŒi§ŽnõDFx}H™©©Hqų,©’õśŸójš§c·ōūYUO7?£Š¶Š“ŁĖ& @wļSīČ?ųs޾žo·Ź\9®fd_bׂiÓ³$D€P‡ šÓżłŅc.$õbüž k@|įŖ/\1ä¹.;¦ūpKŻš™ ‘”-©D€@õÆ’ųFż/ßüĶÉ'¢÷›;~é§ ·5i\µTć@ć;Ćēyœ C§­ Ŗ]ĖįQ-‹GŸ89@WÅļżp[ݽ‰D€@µ¹=ņކ…ĒOÉe1o^¶6aUܔȊö"@ Z|­į—ÆŹŻüżÉR©ōX°|ģę~o¶Ÿ“$G€زF]Ż>yą§ Ź‰.-™%@TYÆāĪćĪ•ś?“õ‚ Pefuś\’ōR|™ pN ®kšÕ¹ķ3n~ģ[7}ā¹ė\‘¾!ų£sČŲ­±oF…¶….I€4"@ŸŁ¹¶Įuz”ēļü)ī™īKN~.ß)¹ōh ü\6ņ…a{ˆ€sHį”DDĮĮąŸ†/Š~龎÷ŻńxßĒĢÜóOēaye1ļ“L%C€8Æ©”æ?šĒĀC÷Ļ7>ŠGŸx"ć„,"@ą‚äb ¾œ–ūœ Pć–°:~Æ pI¤š`šĻC‡Ö?‘±:+2“'Q€ر9y=ȐʼnÆE†v& 5 a„Ē‚åć¶õł÷čŅāŁÕ9"@äŒ&ļž±mÖ ćˆ€ŅcņQ+GģŽ ķM R£Vr$p¢[į”§ˆ@€Ōx€„%Æö† K ć¶õż×nEE³žĢ^61"åõ$"@ 5ŗ$wOšķ¼}1o…Ļ  rI ]’öŠ K"kkģ›ķĘ/ŸxQŅ|h”q  ’łZģOzĪ(x&*“/Q€H+>8Ńeņģ"@ —Äų}~Ł&kevdŹī¤é[CD€ @jTöö¾æˆ›¼®MÖņńD€ @jx‹ŽšĪXqū¢RĖ܂%@Øåņå!Ļõx~čĀĄ’” ƒX6ś…č½—*BŅ6 ų±5 €:¬Ū„ö£Ā³—"@R^v@€Č% ±›ū½é,€¹4‡né÷³Čó8D€H•• œčVT<žµ%ögIkā÷%¬¹»ļģ‰K"C;“ˆ€Ój5ŖÕĆéė’4fSšg…zĒÉ;Z šŸ“±Ļ¬¬åc·ōž·“ć£ą@š½gęĶ ķK¬jp@R’šś׹ŚõæpÕnéQ:Üö>’–’FšżŸÉZ^PŽ1gžä޹3Kņöż·ÆēŪc6÷ūY·¢YSŖ;<ˆ .}ˆ­WļŹĘ–&E¦ģJj›µ|Ā©aŠ6kÕø¾³6Tu—+"@ą£9k ŌĄ-WD€PĒ$<Ė(Ķ{öģ±°=„KĮĢR"@ Š²/±Gqįģ³…BdhObüņĮš'mM Ŗį¬²„³­łx2{餶ć^Ģ Ŗ ­Ē¾0~ģę¾’šņņŠC]&Ļ.łp ČęŌĄŌ’YC„ÆMX5ō@DŹ®$"@ ŹŅ"mcZžĮ?„Ļž(:x?kkß™ųzĻ’ Ÿņįy Ńļ»K€@5Ż‚µ?!<ūq¦“Ņ F Ŗ-@Z]“•W|ēt’»'š"@ Ś$¼=iMģO žĖ\~^€Ø¦ŁŸ0źÅ„ķ'‡G^YĢ;ye?v-|zjõŸ2L€źr€“Ź\Ÿ9nkß_„Ÿ— ”zqŠ”NyÓ¦vĢ™?Y€ØÖ {"cuÖčUĆŹŅ7öūIū‰S§žķ|"@ Jņ·Šk&<ˆ@€\rD€ @ˆ‚@€—€4ŒˆĀxˆ @ˆ‹€ ˆ"@D€ HU".@D€ ĘĪE@€D€€ "@¤ŖFĘ·2"@ā" @ˆ"@@€€ "@D€ˆ @ "@@€ g ­‡@€D€ø"@@€ D€ @ˆĀ_żóy*P xĘKIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_9_dim.png0000664000175000017500000002027714632072346024630 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ7įĶŌ IDATxŚķŻyt\å™ēńēŽ[UR•Ö*­Ö.Y’e˲eccLĄl& @ CH “„,ә”O:kÓ'ė$ƙt3Y É YH€€mL¼J¶äE¶µoVi)©¤Śī½ó‡,[Ę%[²$wūÖ÷sĒUu—:õ óžīū¾wQLD³øzķjuZä°cĖļZ¬Z•? @€€ @€ @€€ @€ @€€ ž‹Sdįü¹ĖTs:ūښ:|^ ×ČäļŽ'-±źeE.żĀ÷`J‡ŽšĪ޽¦…YĪl•E‹ŹÆ˜cS¦±!­į؁×{üƧå¦V\[š?¾‡®6łn­kˆØ%@ądƒØ.­.[‘5®‡ōŖ 5Ū’n†c¢^ˆˆfĢ»vn¦c} ķx÷”×»b&p P“å+Ė–¦Oc¦tGwģŁm1T5@¬››[~M‰Ū6¦ČvōųĮ×;c,v 1Ż÷°ÆXS¾Š=¦ŠPš†ެ?{­) †•Ķ[_˜¤M£ļŃ«6Ų¾Ķ Ådų ,ŽĢŁr3£/)\T>/yįŅŽ÷zżxG¬VÖĘkĖͼśG$ŚWHF|tGvģŻeź±[Y€åŇ]3<Ääךė^ļˆķŗ ,ofĒź „9päĶśz&§Ķč]ĒūŌ#õŪß0ƒŌ•€)Ų’žņ±:ź0Šē°ø™j2”P?%@ÄJ3§Pž“qé ¶š}J@€øHu"@ą‚Ģģu ­& 6(b8é„Ģ.$`ÕčPó² +nŹOO‹S &¶āü¢…7ē¦'&EdFćƒĪ Ą²/žąå —Ļæ6!+ēœ+ĘF™T©ø&Īīt^Ŗ‰Ó%ā;ī;."ń"8½ĢŪbš¢ˆÄ¹ŠWЬ¶)"¦¤vķnŪ1¶ćWĖśĆ–‡æ¹įc }zq“u²­Æl ŌˆO1u—Ū0RJ“qł`SF#£Ā°µ×™ƒT–`ye·žæŸąp¤•¤‰ˆ¬4Nސc¢ė;őš\ŗėĘæd–Ģľ:÷łŽŪRG¼\„H@LxśPŠ;3{*XéH źŹ©üąvī‹3™Ł*%׿J„Š bÄį_uŌĻĢžĪŖ;S‹Ø( &øū†»gjoĒ’Oę,3‘?ävPßQ §¤°’;+&¹4kEbśĢ›Ņs¬ćŻųŌ¢ė~ŗčåŌY„³°XJ•|ö·EÕ³r“-%é%Š„Vu¦ĄbīŽpÕ÷<ÅΤŁüĆlŻ>ÜöĪ??s˜zÓ` ļĖ]4Ūß”*«t½žY!@—¾tõīūŠošµ¹³/Ī÷©Śœõņ{źN€ø„ŻS{Mś’.M›k»ˆ­ŁČ€’P•ŌĘ|õ™p {ōg—ݱŸŃaJĶoæz7µ'@\ŅJy+ońÅś¶ˆīmˆ{v}’Ó=ajO€øÄŻŗģSļĶʍ#aocdH‹jw$$ęwo÷5g­x÷Ń^ī5Ø9ĄÓ‘ČĮ?<śńŽ€ˆˆĒŽK# neą’–īūß«ˆ›µ§s(ЦPåsa Ą%Źožöį®]³·’Äō/>v}©;ŁØH Q-b¹Ą„ė‡/TŽ:›ūńżš6ģ5"ļCX.aaæ)³Ł9p&8D’ŅDŅę>ōśÓĻp:=įIūek|üÅł®ˆŽüökŸß“—ŖaĄ„Ģ߾ǼHĒĮ6­dĶG¶zR):Ą\qį‘‹9Ž’ąśĢCT} CX.Ynū··”®¾øßéė}|įėŌž€KڽwęW_ģļLö¬zŠCĖI€ø“%•ś½ŻĒ‹<²ōįĻ}Ś‹p/€KŲ·¾éł®¹ļćrĶų¢åē[IŠŚ‹0Ą"6®’ō+¶‹rHÜÓüHU³Š3„ĄÜö«ž5rQ¾É”®ś”§Ą2<öÅ÷½šYr1"dĻĻy€ŠÓ`½į-Gžž¢w‹Š!@XK׎‹qF–čÅoRk€„äŻ Ģž·«Š©5ĄR~x’¦ūf’v¹ž9%Ÿ¤Ö"\ĄBuŻ#ćØxžGæt0ŲÕ¹’ł¬ Šż¢ÜŚŻ•|ķD†G®]ņ·Ć±\o†°X†7pģ/śE¹6a°§c_ć łI1Ų\Ą:2Õ»¾¶į³düʃ’ė?Ø6CX,$ؖ­ŸķųŠ _÷Ą~jM€°”Ż^²&Śēm5}ū2–'åŗf`Šéčß¾q{ƟZ ,eɗUåżŸ™R’āĖ÷æźĶT×Vlücę\eZßyūkÄĒ(&ŃXĘ­…ī¹ļ’,bŌmśĪ]ÆzEŗēź^ūāō®U×儞~J ,ęņIņŒ½…DD‚×ī’õķ½§®O·vkÆkŽq”—†ĻæDĒ0„Ą2ü]‘ˆĶÖ±?Œ Ōü²ś_<¹ŸüńÆĘÆńōžŖŅ»!?¬3ļB¾Įīøć¦“g¼ajM€°”?>érf’ę;Ēü""÷§½š„wążėԊ„E~rüĀDSoyRM[ó«7y ”p€˜ō/ßZõµ Lļ÷żøl{75¤ Ę|õK„mß²eӒ/¹¦¾µ)ŗ±å‹Ä=1Ēcōķ¢e¦¢]Šö##Ū~öÄ#œĘ;г°Ä} `™ˆrń!āt_.#Ō‘sv¼ÓuōĀ·6Lļ‰W?ÕkPG@ )r§«"ūū7’· o’M½~ӛØåę@ďöݽŖŽ[ćŹM.É(šNäOł÷g©ē(ĪĀ ÷–¬Ķ]<½½G½ŠµjŽa @ č׻ޙž^šßų§mj”š€˜rō%}ŚūčŚåvzRÆY¢POę@Ĉus? !nzū Ś]Ž„w~ščW©(=1¢÷č/®ūÓōnęēJĶr%õ«}šzŅSÜń’§Į“;=‚õæūĮ¼CŌR„³°Äˆ{֕Žų•ōԜéģ#~źĘŗĶ^ŠI€ˆķĖ?żš'ģӜé9žĪ×ė6×RN@Œ„GĀ=łžēr–L’Ä©HĄ]¶ØJHS˜`i?|qžĻ}¶!Š qågĪ?÷ŗĒ6?tˆČWē]d®Üł…'ŅKjy®üÕ1ŃŅG›žŲ“ķł­2l‹t錯Ÿ\š)ÓČ^ģ˜`ø+cń£’79Wuܰ™$bH}„Äp€Š`inūvåVE_Ö~ą™ Æ“żłŻWŻņlRśł÷ŻyäK•½1ü|t®`Q)Źź‚’ńČvåTM“†Ķ¹źĮhŸ?¹uļc‘s^øŽ“§ę‰¶}¾Uå Ó`A+Ż~<© sQ¼óÜė5ļ|ly“Yń*yčķāUŃ·1åıõß¹-/Ōi?Žå*3Ąbҵ‡yšcYóĪæf0Šöjō“Ŗjå[Ū£ˆ)#Ćm;æu݉ą—ED±]iz ,įŽå«Ž]ń©Ō²p°ō“9iאWųńĻ&ZZ’šķŗ“‚÷ztĒoōöóLB€eTÉżÆĶ»&bڦp¹GĖ®Æ®:×ųc-»žĢO:¼vĻowSķ1L¢°€Åė ®™J|DŒĶ_9÷T{æ>s‹=ß%>³’hćÆĒ8ōĒæm;÷æŲŚU3ž½bιeU µ>It—¼%™_|+« ŚĆģŖoxŹ•µą^gbŲ°©c]C“äžóĪd4ü¹`åéN¦-¾#ģ•ĻPo€eżż‡¢H$ņ÷Æ?žż¾°Č½Oå]ūŽóÕ·.ž|r†HӎŻßŁłöĆēŻļąŽpČ1ī*vE ©öų>5pÉū쵫~‘a³Ū5‘ˆ1Ōķoļ«ķ~÷Æ?=ó4ݼ”ŪoKŹ’éæMöśńū7\cŲēŻ—ąJ9žęƒk©6ĄR<ńæ.oŽF{BRī‘§žŪŚš¹}§ÅpŻ-›ā\Żo|ü—oQk¦ą¤Vžü‰Ž~*A€¦‰Óx€ @€Ą)ŠŗņŗE‹—¢XśWrĢ“åk–U+2äģļ †{»ƒ~ÓbO0$@`†Ķ/\ö!nØ«’yąČžgTS$¤ kƁaŪŽ½{­ó;Ā€U’Vq“GQį¦‚+ę^k*"=5”£ę»C#Vś„Ģ 9I•·h£Æõ°"å7•ßdœ|ļ5ź­ō[y̘,Wõ%q£ÆM%©HDUJÆK«šīox;­(Ņn ĄYĒuw”ŗĘŽeT$f޾rø 7G¶I±[i"€™‰Ū5·•§Žž™”\8Šļ±i§—Ś5{āś[‚}ņ1dū†{ŸüI÷9ž¢®hėn©ČR SÉ]¹lŁų“\ū[½z »&'Æ0»©“€‘¤}źŽ5’fČ/'Œeõõ•łŚÉ€)»1m¾čį`’ŃōŖ"Ҷ{ßo•ˆˆHŠ’]-/ RlšķŸ[x—¦dnÜŠÆ(¢ˆ"źÉeō?õF­ ɦnaØi Ś··Õ¼JŠ]Vz}Baķ³£ńÖźŪė_·Nmø¢Ē•UĶ{Ś’æ·+11%[æ÷x’įÉn›uŁ¢O4ķ<ō;Å1WV SDdȶæöŻĶ¦aŃ€(¾šķź/×?ß³ĆN-ékœ||ˆhqõĻtŪ“">ՍåĄūv[ėœå¾ė6>ēJ:ż¾·qĒ¦²}įĘĮ.Oė_ĘŽ·Dźžr°ÉjU¢gø!’źļŻzk\üéOüŽę­SŁC֒ā+Ćž‘žV1”#¾ż/¶ö[ÆRœāQ?ūõūLĪ’YĻ‘śMCmSŁKZ©Óét&xņV¶nŚź›¶żŁ Y±Zœņ;W|Ķ6ī½]»ߑ)5’¦bKŃŌü«ŽķÜ]óŽ+MœĒĶąæk÷ć­;Ā'Ćļ{ū±Ę7dнÅō֏¾re„āz[5>ßųŽŗšŒ“M¾æÓw!{qž;ЬF¬\-ΐVbž¼$0³|ÕĆά©noKN_("bHŻ&±ō‰®ŒcŲŹo¶;ĒŽ%gV?`Ų'»­©˜šHłuĪDŻč¬l·v­'>É0B#į±Q,IŹ(Y3ŁmS só3ŖDDNŲūø¦[»Vœ…愶vż‡=18˜Z¼üžŃ»±—Żģml>ßvͦ¶;3ÆųņčMÜÉÖÆ=8ƒī “›ƒŽśąŠÉćlŪ¼¦rīmr®Ė®2•„Ģ%w=D³~„聥YĢø’5}­®ŠŃwžyö”Č9Æ$ww÷¬x8µH;4}õÖæSg éznÅé·Ź9{ ©„¹ł•ćW Žl¶~‘Ā€³(¦ÆŁ߃Š&^7)÷²Ō“3Ę0B#ĤįA]?'ń 旙JŲfØFœ»<÷А#©$>ńŒ„āļWLw¾õkÄD1ļūÉö1īéo9ŻŃŻćžńŪvSŹo‹sŒąP×A[üp«ļ(1ČPl.‘‘@[j6ķņ7h§īgŸY}r¶HœĆ”PÄn‹s(¢›Ēv-µ;# ›]Īś?f-īŖ…įĪfš¾24й[6•øÓŌDģīœE„7ڜ¦ õų;Ū“×d,ž{yz‘裯½KÕ##¾N‡K5Nģ‰ŁĪ¢†žÓ EDsō^CYš±äL=R÷‚iœ8T¾¶ņCIsZӊDZßl×}""ŖDc§JD”ˆ®jćnÄīp/øĆīžĶHa_yOÕmŠ¢ŠŽ?pŠ×č«QÕc±FœÅpĢūȉķżGĘŽ§U-ųhB’"žyū~©¹R ū[jŸNŹźŲ„˜ŪSŒŲŒ¢PCGž{­k†=čļ:É­v:Š×Ö>Õu°ī÷Į‹""ĘP W‰?8ēq¶ĖljŽÖļŃĶC/…v’{°‡ŗ pꠈ¢‹^²J¤÷ČP«ˆõļrE€ĄŒ {CbČP į1®oF ąüŒHĖ{I™MoQ ¦Äō7’YI–^*qCX0)Z‚¦Qz 0e‘u€*Š€©7—!j@fPX O8““tK€Ą“ļ;øuℾ.b–=őę?6ŃR5|¼)6ėĀœ‡j¢ ō@`ʌa…" M‘;.MD¤ÜN-˜‚œÅ‹—ˆˆŲ 9ć^WńiZ’æ‘ś 0ÅtDy(”©F3SÅ”20a¬˜ŻŖA˜z„čŌ€ 0kMb25 @ąaj@€Ą…”`–qHOĆ[‘(GŲ9«²© ēpØMŚĪžtéåB€œCX@€ @€  @€ @€  @€ @€  @€€e8³r–›Z,WĄĘ\ˆ·eĢś½u`JŚ·‡|}ō@SŌ±§cOlW€9˜Ɩg(ԁLQå ÖÕ>ŁžŽøHQ×961M ¾_ŪŠ‰ńŸädŽõĄDk‡l»Ÿ–V Ŗ£ēpóųŃ’ÄHā„kkŖ…‡»˜€IÓÕĀõÅWÅ„R z 0%šQū»ų¤P³čō@`JJo.^ßQG˜CMÆL_P¶qłlÉTƒ!,˜©ˆ8ÜēPūÉ#nc×ćŽÄŠ[<%.ĻG}ˆ*=aõ"{zβ¾ƒ§? ÷‡ū÷üŚ•6ŲŹ,CX•¢]vKIzÕ½G6÷·¹ÄjQL*D€@“ųUזgfU(įź{KÖQ&iIuå<›ŃßnضøcoS&e^ŃĀÕ.C$0`³ūSKØHtL¢ĄrSWŽą1EDĀ”MżŌ“­×ā½,!S™ģHĄ!@ &(ö ̳‰ˆŹÜėż=I…ƒM""J¤e»Ø%½“üf1›ßlŁo +¦ˆ”ŠØFō}ŹŃm=®§Ą©&QYsĖāBõdĆØ%D"b(į“qžU:w}J¶*"¦DŒŗßµķ4v„ąę£›Ōp“½üé 3dŻj1§T_Y^vś]rNŃZ3r*\¼vGø/4""¢ˆ]Ķ®VLÓEź’d˜"†–^©žq[^Ÿvd³•ćCDū10źõŸ\q—–Ø$ØīˆW$ō{ 戈a›{GŠŪw cēpļœ%£öŌöT#Ŗ–³Ą³`Ä_ykÅ-kRņO„1”‡wækńz1„cnųx¹[DĖi9s‰”ŽĪt˜ZīWę°LŸ[÷äč`WŃÕUžU1ĢžƒŻū{jė_ų…“vµ˜D€SF¼ā‰“˜ŠbŠ˜Š{nBŚpæ3¹µÖ©†ˆ”&–ÅŁK–GöøˆÆįE‘9ÕåµSm©ŖdĪϜoJŚÖM?µzµ8eŠk”©¦HīŖ‚5ūŸw—ä­MŹŅāō‘y’ŠSSóE×ĀG’ŗņóš(qŖR¼v°YVÜ®Õ’*’"@ą”-Ćkƒ"Żu™ ćÓ5GoshóP“ˆb¦ä]’ēkŃZŽØøćĄ‹%W'¤^vÆHōŪ*ĘĀōs pŗIŒ»ó3Ł£sg].8:Ø%"āŹJ,nĻļ©Xņ{ō=µļłĒ„ō@ f˜Į›|’żčśō'Ć]Ć]61żŽ]orē'fd-KŹVb° B€Ą8Į>IœĀŚ=="‡_Ļšļ™›„=n\~Ä@€p!!Œć󞝈]s‹˜šgįɆT?±’ŠŽłń€7¶jE€Ą8żķūłÖq¤‡}")%„7šćF®ümžwS,z [ŽtśĻ»ŽŃ”ź"ÉE­»Īœ)é;<Ųu*Nŗˆ-þ”É­ØOģ|_ƒ9øiää½³"ĆÄÓ ōM¼4ēJۜ±×-ŪĀļŪÖ!®ĄÉēxę cü^C-ŗ”šC†ćōgń™¦"—īYźžh;[ņš’¹ģĘŠÉéĶś•ā4^8ƒļÄ s÷ۃ၈­|Žź +¦©č ū~®mWøĘ™ÖßÕŗc YM*\ ‡ēœ”ķP_w›O¦¹ōņŠ„Ńό!Å 7kē8·ŖqŪŃmFX *¦”Dś‹ˆ1½!™ą ŖsßūI›PĶC/9+­_)ę@`ę›V³©fÉÅeķ_ÉĶ`K/_³āĀ·ŽØ}Š·ēąKM}ō@S`32ōāŒ„4 ÷³ųŸ ³„#ØŪ­ūė˜D€IØM!›®ØNwK¤ŲtGlśł·1•ę]‡źé@Ló=Į¶Z‡‘ķ_hģŽYŪqlØ÷TūiD(” hķ V® =˜„\ÉMč­īó źfčą¶­"„9©åYeƒŌœ!oŖ–ļ8{›–Īī~bœ©j}g’ø©†viWŽ0͹é’åYwö†2hˆA€@Œk6ßxvdš¬X1E mNUn”;_…5ß~k?—€ó iĪ –ĶŪ8/ꢀč}Ö® 0u]½ybShė&3}­ĄŠ#·š¬Ö4dtö[»>œ…Ų»Æ®#¢Š„“¦·&Š…•„ŁYÉéQĘķvÅA€@lö@"[^¬UjŪŗdĪZ%.ŚŠ’½:AOÖ³£,‹3²ŻÖ®CX0”ųųŽŗ#Æz<īB F3ēYóŚ²œø(—†ĶЈµ«ĆĶ`B)Š¢öŸēšsE¹bĆÜŹ”°ś¾ęōŲšŸaķ–LhĄ”ó޲Ä4ååģŻ„—•„)""A[\DDDXż€iėģ–Wę.»>-aP¼ĮE"¢+=Ǭž«Ā€™jPķyīy×,HWD¤)š‡_Otę=Ą̰tĻ}ÅX—_l˜ķ5Vz 0ćņ3}Įčq € Į…„@€ @€  @€ @€  @€ @€ LžĄ¹("‰¹ÉIIššœ52øwŸ”&'+cR˜Ø‰T”ęWg̉SķŗbŚõ°ÖäkŻņl• !@`•å„ė³]ńį3?ØaµÓV¶<čķś0ˆK-²æ?>Dl†3RWwõ©qć?_¼ŃL€Ī×xšö@~©rź}AƜҼ’ŲŖ“čpAŠĶō ŗ&5""ŠzÕnG]=Ą$$…KÆHL™_xĆ=óJŚZ[N €IɋÆXš•¼š¦²¤ £ļšŅ `rMØ©f,žHŽ&±iyU T €IЌ%9É"'źüy™É”“ŸW½,{ńĖž|Ļ’yĪŚ( @õˆźĪ»tĘ;¼¬7ļxčK2¶” @@€÷øČ€€€€@5Š<A@ŖOä‚0Y2&€ź’Ļö½Ćė:öĀ’ņ^­ųqīPU—t4«=õĻ łWß°$ĄqT@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@Ä€€ €€ €€ €€ €€ €€ €€ €€€€ €€€€ €€€€ €€€€ €€€€ ĄÄ‰²6@@€·£d*zɑŲ'@@@@@@@@`ŠūźŚĖĪŽūѹĖ#s ĄŲ>·šWµ×µŸń‰_]wM”łöē’ńš‹¬Ā»ĆĻĀ‚©q©†ė®ŸZ*Ū²87­ū_;7,8³¦¶÷ř ¢šźs›ä-„€‡šĶžņõƒ}= ¹óö«^’&[X0E4uźlrŅ—®~ģĀ ,Äd˘¦†-?źńčsZē’’w¶=pÓŁ]Ćæ0“Ģ-,˜BVµę‰ę™{?.w<ÕuJė.’ńm¶aņ¹…SČŗķė/ķ=„öō<~õ•+Ÿ»?„žüóŪ,ƒ€cøłw8÷Æ·lłåżŸ¹žÖ$i86 Žųū‡ķĀ»Į-,˜ĀZsמlÓ ?ĀS†[X€€ €€ €€ €€ €€ pø‰Bū + @åjN<’‰žwewL_žŃeļ‹"Ć0ž2&€źŅT:śäǜśBaøaZĒ’Ė>^ŲśŹŽ86ZĘ:„5‡ęBˆ“ŽšՕZ:„ńēTógŪęÆNĀģc::ÜÅĀ ([㼓¾Üæ3•“•Ī8ļõ7Vū^ŲSģxew u!™Ū،ļĀ‚j~…˜Kx‘ųņßwżŪ.0†^œMųłkĻožµūÖ0†(Õń±7?KĀąĄ“wĘ{ģĀøpMÕźS‹ŚŽ}3Ļ®LeJfA@€ŃLk¼tĶYkk²ū?źßś`&vū iFżgĻZrĮ§6µų@ņƧå%J÷Ž?Ł<{äĆĶ|¾P(¦kŠB@€ƒJJ·Ģm™=ņ«]OnüM¬qž`œyT•Ķ·æõ'±'”PśĻĆрŪW8£ŗķŽ“Ÿi?n’gŻ[¶?Ņ×ļµ N Ą’Āę›KÉŽ³G^ŚŠūłĄ (Ė w.¾¢aZ׆Ż;kkw>ć5"”%Jvę#?=²“÷™‡| @Ł×tūœo×eRx€€ ¼ĒyU&_³{ßļIĒ Ćö@@€ņ ß÷“°ļ§(.;éō„A@€²$!ģŚ’ńrē&”g €€P+0’ĀL€€ UČCt˜R¢š1®Ś¬ą N_=gīč¢) Žø‹€#ՅÖŲ ¼7xSNœ^|ΜS쀀ʵĪ[ѹ2võņ.s ¦œīMw¾–r+ *“J^~Ņ PŁé#éŽF’Ó¢Zgé±uaōĻž=÷ ³#;! ĄI!Fū~äōĮ¤ń>@@@@@@&Z% ‰_t‹€•ZøjÕ÷f½ßP¦Rŗ” !„āPq(¶ć+cØVqĶi×6ܔŠ·?ŗu}MŃ"8å‰R™T& !D‰|ą”’ś0’Č÷SI:¶T(]°ųÅ€€ €€ €€ €€ €€ €€ €€ €€€€ €€€€ €€€€ €€€€ 0®J]ĻuGf@@€ %„Ē×õå퀀 „(»ā’Ö:; @Åi«kŠĶ€€ €€ €€ €€ €€ €€ €€ T࿀ņøįłĆå4IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-1.png0000664000175000017500000001751414632072346024044 0ustar fabiofabio‰PNG  IHDR ™q*UüsBIT|dˆ pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<ÉIDATxŚķŻ tÖåčńY% I„…@X#H É ‚€,Į¼ [ „@@ ĖūfA@qa—ŗO­ZÅ·Ö]Ä„µvZgn{§ēĪĢ=·sī½½Ó¹§ķ™ŪjĒ)÷}ŻŖ¶V–¼”ą‡s>‡äĀ9æēä=łž’’yž£G¾īTĪŲųzķ©”[~Ss H°œÉ @€€ @ˆ @@€@€€ Ö @@€ € €Æ‰>#f˜æ·qĀŚg"@üߣ?ü';æ`Ձf nze÷8©vķ˜å÷7» ®Ņņ—Īūl ¬~<’æņŃF Õ„™6|ŲÜķė?‰œ—5$„ēϵčÖ/Żl8TŒ®›9ņńēÆŌ  Ǥ_^ł¬ĻĮˆ’=įĮn¬y­6·ģĘęńkžśšŠČ˜ŹūN®Æź7ŖtVźéĮŌ”Ó'§½pJƜó £_cfö”pՐYW4ŒZt[KŃśĀĄŸčŸ·ąÓÉ_õhóšy;cŃ)\÷l8{J¤.-iSžŹĒš{åL]öU”żÕ>ŖGļa3&ęĢÜ"@@€üQĒ®É 93.[WÜp°>ū‚śśżF ķ908=£peEŹ Ił}sKfdMZ·¼’˜…«ĪNJK>¦7Ų@ CģßfMZ_óÉmZbhXĢĪ[zwÓ¹y%”Ž)»}rćDæ^4§gvptbŚčģXuœšFö”³§D*³/h¬·āˆMč @NīM38+ŖŻg_ėÜ=5)9sĀy)ƒĻ/†G‹S°@€oh“ėqnīĄs҆ŒIL=$śyjBƁé –Ue×¬Ė ^²2½°ŗ$*4lζ†ĀuĻD<ĄqėŌ-„_‼ņž‹ ¢AŲ½ļ°Į±#vūŽœź?fį¬žŁGG?ĻO»xvFQM€h« ¤ōqƓ2Ęēv욘ż“K,H>–Ō{،…c–Ż @Nī*H×ä„ć—/ī›[RŪ£’čēę…6Fƒ£¶_^y}zįŠĶ£—|sCqżÉ=ł\€ @ųPbŚčœ!]uyrę„ĀŲ•Ļ\é2šüś•­ąö«ĪI™ćĒučÜ­GŚø%”AÓ7TgMZæ0gęåė‚ ‡ź€V×½ĻŠyßlŽGpŸÓ¹{ÆĢō +Ā«Ÿüt³y0ņš+ @Zż6¬ö©C§_4āākš‹ź6Ä"aÄü½kN Æ @Z-<’2ņ‡õ3d֖ęaóv®š°ö™†‰‘#µc«ö7׬ @Z#>ŚõXTR°śń¦Āõχ j„³§D–E?n½äĪČøź‡"ö€€hµé•3õ⢺—>ƒČ‘©¼7b:€Ö 93·|…ėž ›³mӈł{Zœ‚ U%gN˜–WqWsQķ į`ųš§§]Zxė„@k^żč˜5©¶)½°ziæ¼²¼sG•.Ė(ZU32tżŗO"!å#u¹”œ‚ą¤āć¬ī}† 4­yżŁIi=SŸ_=µqa’±‹.NŹ((µč¶#aš…«G†nX%@@€œL€t‹m@?;i@Ļčļŗ÷–Ÿ=µ©vģņū›ó«nÉӍń:~W€ @¾^ńŃī‹?ųüZ·»õČ(Z5õÜóęēõĶ-;nÅC ĄÉH×Ų-XŸäĢ i»§&E?ī{įć×#ęļY%@@€œŌķW½G\”–>aEqūN IÉY…%#KÆŪ0®ś”¦1•÷E†Ī¾ŗ"3ø¦,}BÕä±ĖļÆ @N*@ś[œ?pJų’!3·¬š°ö™šć _^ŁŅ¼Š»ģŠŠ;tė3fŠ“ 5±ĶęEµ/~ĮČkuiKgŽZ|»ē€€8ééÕ9öqļa3ž;źā1)ƒ&—¤åWL8¹na,F–ī«^²»F€€h‰m6?«s÷ރŗ÷:2qĄ˜‚Ō!ÓJśžW23krķÜń«Ÿh6w‡cx@€“J€ÄŽŻķuN,>>ėģŲ•‘Ø.¹e7®g|Ą×+@ztéŃ·¤GæÜåÉY…y±«!±}!1©C§Oü析#@«DHūŲ­X)ƒ&Ķė•3uYFQĶŅn}†ōĖ(\¹`ζ›ö†¬|{å·V½ ?×(@@€œ”n©ƒ‹{,žŠ£’ØYżFĻlX°oė#J¶4«Ś)»nūm;^½ßņōā^}ĻŹĆS/Ż™p2W@:$ōŹ»2aéüĘmÆ_üAÅĶ›īūä(Ž¢śēĆĮš«õŸlŽĒ­XpfF cRĒs:öģ˜Ų¹oēö_üóg÷čžń¾N‰FM®,‰äĢX_›QT³*“§åžó›ļŗ29äIč @¾\4::]Ō|Axķ·ēæ½łł‹uł óÓüųüŸ_r÷ü7—ī›ūķ9§m[>frrÖ°)”m„O¬½§ōķŖ[BĻž:³üĆ«")YżĪ[pc³S°@€üE“k‚®ææäŻŻß/=zĶ˾Ōö#’ē‚kė«}Øś{[.üÅĘē*žqį¾ČCĆęl«Ś×ļų €ÓÜčłēŚüÜÅ’öIdģx³ģ½=?żįĻČīļ—}~¼ņŻĖ^,’×u¬9“ąś­wNŪōšę¶€8͵ļÖ¾{Żžł?žldģś^č?Zž^ōĻ;ß*żą’ūÖ½y|ńĻ.)ō«ķƇŽŪżvéѽļ”ŻžFč½Ųߍ†ŹŃŠ5»n @¾r³łā=³īŪńfč÷W¾²ą_÷¾:śqTü!üXÕß.ŗ±īĄüŻ[oŸ»c÷žYö³«—žnėįŠļb²õµ²ozŖźĒĶO/’ū‹®ŗs»šū>ŠC;Ž(ż­GŹ’½åé?_y׊#‘‹~¶ģ¶Č)—>¼)v{Õ²Ū7>XswĶĮŁW_{ݜm·ģ^uwÓĖļŲųąÄČ3Įš+õmp«¹sŽĮŲ«—’zŪ‘Šļb!ū|ėk„ļÕ?²ģļ ėžĢßµļŗź»ź¾[’菷«y³ęŽČÓs·ß“÷£g~<Õ,@@€|„Ż;ōŲü\é/?¼åźķŠ.{”ģ—k÷/łQż£K’®įŃŹwWß[}¤|ßę»/¹oķĖW¼²ą—m:Æüįe/.ü_k¾]żz<0(@@€gØ`UaY4<>wĀÕŽwBˆķ’ˆÅ»ćĶŅ’¬¹gŻóe×ī¼åņ—’ĻŲž˜śG—üdŽŽ½7œŖų €ÓPÅusīž²g}l{-ō’Öī_ńÖՇüŖåéŖw\æå®Š5»æŪt>Pń“™WܼK€€8¶7“@ }Ż%’%|`éO®>\ž›Ų©V_ŒĻ¾¶ć­ņ÷Ÿ\žnéŽ]ߘ³ķśk§_öĄåĄ10.={ėįŅ÷v¼zćsKžūś«ŽŽ=`š/==ęŹWürĪÖ=7Õæ @ŽÉœÓ.ŻūƒŲĻK?Ųō\ł/šŸ^ņµ-ūQĖw’SŻĆĖxé³’ōÉ3A>+vJVӓKžaŃ õMj|."@@€|„E{gßłē®pĞjۘ¾é¹…’²üö†'6>»ōæķżĮēCäŠWžbūė„ļ—ļ»źoNE|^­ €ÓČņ›ę>ņńń»Ń żśŖCåæŽ}¼ūū„Ųüü¢©¼½ī©Ų1»ĮČku«ļ­{ö‹{C.{1ō«y;Æiӓ°Šė_©Ļ™qYcļį3#¹e7“ĄibÕóžÅÄĪļ•ż>“÷Ņ{«īØ~µń‰ŠŸnz~ŃĻw¾Yöž®ļ…>(ŁuƵ±üg_}ėĪŲѼŸČö7CļÅ"¤źĪ ·e€ Ÿ·óŅÜņ›[ ×?vpYó­’7®:“ą’6#.*Ė(ŖŁča„Ņŗ"GjsflŽŌotŁŖŒ¢U FĢßŪlxµ.·ü¦&€ mu2V³@€¶ ®Ö @Ś @nh Ņ&F €i³ € @μ¹^€ @H›H£@€6 }®€ @ˆp¦HéµnĮ@€­üM“7ņēŒ "@@€œyrń5±éb= $ž2_€ @ˆpH“@€6 ½®€ @ˆp¦HÉ€ mcxɞˆ@€øĖ[ś­uiĖ–D¤“õ@€øWżPż°9Ū–õ]–{ zŌYÖ @Z]QŻK }FĪ)śō Y€ @H|O¾Śé|NļD€ ńækō=śåŽˆ†GG€ ń~öGSdz{ō‰†GRTbT;ė€ ­nōā;{ ęš?ąÆXrVįČ^9SŠ[Ӏ‚eÕmc*ļiŒžæłÖšWnŠM+NõCOņčŻĘŌ”­%@€ÄUĮźĒ#}FĢžf §U€©-æR:ÅĒ„µĻDĪU:'vŽ®u@€œF²v’%Æ\žņĀ’}Į¦/;ā£pżóįžc…œr€1ą“ Ęźę§—żtĒ[„\tõķ;¾ģ‡ž`ų„š” o<Õń{āł€ü„ £ńŃŽś @ 8oĮŠ<™¶éžĖæųĆžÜķ7ļiłNåOĖ®ŪuKÓS•æćĶŠļg]uēöSõŅ'¬ØˆĘGk8Ć6”ÆųfӁ½ļ”]÷ĄŚƒė\żŚürŚęū·œŠų6¼Z—Y¼ŗ*¬ą ‰/†ĖÆŪqėä–ļ6#ÆÕ‡~øQ=y¹”᱕ß_uwĆwŚ$>‡ė²&®]ĪÖ pĘȟ7mó··ģś~č?Æ8øš’Äżō¬Čkµ'×Æī”Š3Įz€¾†;¶7tĶŽg_}GÜ÷ƒd_Š“ö줓īÖ 𵠐¶1ųĀėR²’¬@€ÄUĪĢ-uŻR„X# Ą$mܒåĆęl ·¦Üņ›O&>¢_£žœsGöµ> @€3ķ+h{Ø_kætī‰ĘĒš’] ‰iy¬ €c2  ņ„ddéµį¤ō±Yf ®’[~S$)£ Ēü@€Ä5@F-ŗ5’œU4Āģ@€Ä5@ņ–|³±göÄŃę ®2¦ņžĘ”Į“ Ģ @\d\ÕžĘŌ!ӂę ī’5qm…Y€h›™“~‘Y€ @ @@€ €€ @@€@€€ €h„É ®©NŹ(’”>.')#?'1-op~ē źŃŌ sĪ‘Ó½ĻŠ¬„^ƒ2R2ū™+€¢ŚĘÆyŖ)¦`Ķ“YóDŌ柬«ųÖ¦¾ē•Ģ7W ' Ēbdéµu½†LŚ™+€øHQŻĖ }FĢ>ß<@€Ä=@†ĻŻQŗ˜'€øHö•f  ī’æź±pŸį³&™%€øHĮźĒ#Ńų˜xOĒ 6¼RßgÄE Å€øČčÅ·Gŗõ┃ @ā …++Ģ@Üd\Õžę¤Œń¹ę ®2aķ3‘”Aƒö~€ˆ{€Œ ]ńŠA m ƒ¦µŌuMNļfv @Śā Č„ĘWVu<;)Įü@€Ä}zqż+õżĒ,œm~ @ā 1™ĮKš€øHAĶ捉éc‡›€õĢž8²ßčŠ¬Æ’Y¼zõńHQŻK żņŹē˜3€„V—œČ­UĒ*gꖦ@ ŠŽ¬@€Ä=@F-ŗ­% ‰f   äÖęh€ō0k Ÿ ’]7]ÓņŹ’ZvŻž›ƒ‘Cu½~¤vró üüų šÖ¼& ķĢĄēd巚ßūNŁŃśG—żhóóKžĒ²Ū6ß_¾oē­;ß*ż`ķżė^:īMčõś Ÿ5ٜ@€üI€Lj|!R¾oĒmK¾±é¾=o‡ŽÖ=Róśœm7ļŽżvčMOU½{ū?šŪwźšlĪ @¾tH0røī¢­·ģžy!2©é‰–ؐmGBæ-?9ž>oG$t6g aś‘Ś¢†Ā3ƼkkŻ#«_Ūözč½ņ}WŻy¼W@Ņ'¬X sšåRõ7-^}øü7;Ž,ūķ5?,;ŗćŠūS6<¼ńų®~ģ wė=¤·€ų‹²ę¾Śē¶æQö^äńź·×ī_÷ņģ­·ķ<žų(\÷l85点ę ąs,+»|’„ŸSyļĘ 5ßŲśŁ× Vh>žSyoS·ŽƒĘ„äōJ1g ½ÉŻ¢RæJæŃe„Ē»$³xõ¦æ~»³:ŸÕ޼@€㕒ʹĒ ‘#µ}†ĻŖOH4«SBϼžŁ½‡›#€ųHTßQóvLģŲ„Cb‡ł‹ņG™#€øH’qe éć² ½pHhŲ…ĆŅĢ@ܤ`Ձ¦¾¹óÖtļ;¬09«hBbśŲ~f  .ņįSÕƇėņ*¾Ł’2(ø¶K¾=Ģ@Üäƒg¬Ū˜œU NĆ߉É-»”%1-/Ć<@€Ä=@b²§FV'ge›)€øHĢČŅk’3'˜+€øHLĪĢ- @ ‹Ł€ˆ{€®{6Ü3{\©Ł€ˆ{€LŒ®MRŌäT, ńØas¶µtčŌ5Ł|@€Ä=@‚õĻ4×Ōܜ2pø€ˆk€|t+֑Śį%{"żF‡ęNf €1€ųČNJź_nČ,®©ź–šÓǼ $®ņ‰įswŌ÷1ū|›Ó ¤¶-­!Ü܂%Ńé`ö’©{¹!}üņJ+@€6l8T—3sKmļa3&FC¤³u@€ų_ ©}±aȬ+ėśęĪ›å¶,€i¹å75G$Įz @ˆ§é7ŽGæĆ*@@€ € @"@ D€€ @ˆ @@€@€€ @ˆ @@€@€€ Ö @@€ Ąi EõF”ģi^²;r2N®o‰HWė€ _*æśį ]“3Gć”ĖIźl- ä+$”× Ls @@€ äø®{&’\³2kŅśe'#-érū@ Ä1¼ @"@@€ D€ @ˆ @@€@€€  @@€ € "@@€ D€€ @ˆ @@€ D€€ @ˆ @@€€ € @@€€ @ą“ł ŚĒ˜… @ ­¤Y@€€ @ˆ @@€@€€  @@€ € "@@€ D€€ @ˆ@€@€€ € @@€ €łĮ†CuĮ†WOŲȲZ@€S|¤™¶0eФ‚•œU86 ķ­@€|E€¼Z×+gJ±Y€ @"@@€ D€€ @"@@€ D€€ @`€ @@€@€€8m¤gvpr čr:[ €9&#Ėnhqń5 '*{Jø)!]­@€Ä]nłMĶŃI°"@@€ D€€ @ˆ@€@€€ € @@€ € @"@ D€€ @ˆ @@€€1@€€ € @@€X€ @"@@€ D€ @ˆ @@€@€€  @@€ € "@@€8ü£Ā’„ī–ß»IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_13_dim.png0000664000175000017500000000155414632072346024700 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ9błéeżIDATxŚķŻ» Ā0†Qsy­ dˆ“,”(˜)EJ„b)TIALƒŖsŹæ¼Ķ'¹qJ’°rFqŚ•ęŪ+õŸŪʵTēc“µK÷Ćå! |ÕĒv_zšŹ…1œ €_€€ €€ €€ óń#!£Ü“×õä÷óŻÓm`yoÖ¬š:śN¤IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_8_dim.png0000664000175000017500000002224214632072346024621 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ6ŁŲ­ IDATxŚķŻy|Tõ½’ńĻ9g¶¬“LV²‘BŲø ˆ€øVZi]ŠZnkėr«mļÕ^m«õÖŚŪz{½]颿ÖVÆÖµnXQ‹ˆˆ KŲ“@²'“e’Élēœßl²MČL^O™3 3ŸļćqŽóż~Ļ÷;Š).æ”8õä^”2ō꣦A%ū£R @€€ @€ˆ4 % @€  p“č€ pfc‹ pśj@€Ą0t6R†”©Ņk£ „m}»Ÿ* 63či”  Cg5 @`š«z¬T€°•×u©a3żīa?WźŒź ¦Aūg”¢Wgƒø†ó<Æ„¢zĻ[u*H€„ZŖ}Ó”0ūŹĮ`Å»Ūwš”0zķ;x–įė­¢ā“ÕžjG€ÕĢž+ÜIC}“”TūŹŽŻUNŻOƒ 1@:“ņݬ1Ł‚‘‘ÖšĄTŪ ³ ŗZŁU¾zOõ"@ą°=Õg™iƒ<Ę­–oßš¾¢ZezÆlKKģ’ž vĄ]žvY=•"@ Oƒō ĶJłĘ?2uŖD€Ą Z6—Ø}-ź0›ŹŽ:ĄŽ½Ć¦°T@”ŸęT‰ķē®n“S 8ŻŲL@€ @ @€ @€ @ @€ @€ @ @€ @€ @ @€  @€ @€  @€‘aī¤ūON7Ť"Ųķ×ę-šzrē9§žæÉļŌPÓÉB Dšw`yä†)KLY÷lwl‰”R’Óˆ!,,Łž>ADEę.żAé’FE’ÆßaÜ"-Ņ"­Ņi-YVBIN#†°D°Ö½q¦U9r«-»Ķ)T… ź„7+Ž=v«yĻŁŌ„ Į%ēŒ[pģVѼ“w\¹n/u”ŗČµč·VķŲmSv’‘ų @`×OYņLެćZ© śĪmׯŸx©Ņė„Vpćädjsŗ°@Z2žŗuÉ}ŻS[ńÓĘ¢ż˜ø“ļų0„q-ńA€@æ*Žčīīkü¤£į™»N<źTxčwoŽ’½›ęP¹‘Ä€ˆ4?ļœo-ų®ŅėčG’ūŸßķżČdŪWNÓDü¾u÷’åW-:Õ£`Ė›^ŌūX0P÷^ļcs2xaŅē5MDÄī˜}æŻIķF D¤ _›“øw’£fƶ׏ü}UĮŗźvżKSī\•’}ģ6ŪŅŪ~ąˆužā{n5DŅĘū;sL’ƕ:Ł„¹™L§`4ųā„ĖžÉža9é š*j^IŸļšśÜĀē? Ŗō@D„TµÅ¹ū¦ģ~rm¢ćGÆgükš²åīvŁ$ŽŅN…遈J·.šū˜ņÖ¦MKŻō[K܌›•xUOŪ­łmT—µœŹÆĶŸ{äVĄ×X–;"æVk˜«ļ{üēķĢ~Œ8]4=ūSŪŽŲ'ŗ)"¢*sīUŌwd0ą “vĻüՓ/¹×3eŻĆ63mVW]ó'Łl¶H€ˆ^ķ¾{ߝxŁČ ‘(’˜öż[Ø+ Ź„XoæwöwFv„=m¶Sé`ŅwD1ąŒóõ[/x(!5üēüķużŻ—<^M¤²€(ē,Ωɐ-7oéļ^«cjq*g<@4+×“į£śĆŅ瓸I×ęĶ8qĆÅ]ÆüäF÷€kĻ±Ÿ›‘ZdsfĪt—’ńWī.Z€Ńfē,y(’«=qõ ŗQözÅUĻ»0A\m«{zīėś9Ź=·Œ’zāųųU1Å]Sń¼Ŗ|üŲ+{i@Ä*‘ZėŻ›yĶĄŪø×~²ķ CĖ›=łZ‹µÆūMłš§?¾ÆļēŽ÷МļYś˜ īö¬¹ałJZ`0́8C•ŹēŠ'Ģ(>‚ž=Æ}ņ|žE ž³äƾā#Ø7ģŻšŠņ‡ś{~ ­qg_Ēćfż|A-0®ĀpĘ Ł4{’÷ę®ēmĮ÷ā’N Ż(ĆS¾åÉ}[JåĮ~_į~ń`NvŸ×|™|ńå_i@DrY—]hės"=š¶t×ÖŅTyžńI½ļ5„qgŁĖ|ėÄė§^zq÷„ĻJŅųᩁ1ą u×.śQߣģĶ卛UKŹDgćhĄōtyšāĒŌošģU⾄Ķ7ųė'Ēżvwjn’ż›wn’ßĒh@ꐜpÕŠ/䣜·Ÿ%5ĶŽX:äg<ųČ9w4òćéļŽD; „!,Ÿ”¢ōĖū;ėß{­¹÷=-~#8ō×éīZūˆŪĘ”?cJśoųś®ĀÅK§=»6źWaųŒ|å¼’öįŠ+žtõóK7’u×£›¾Xōé{Żž?3†üZ¶ŲÉwö·Y{ß1ńõ?ÅÅüš±‰Sł CĄ™ę†™æymÉŪēÜƊ*)¹™“ĘĪ:÷'KĻK¶%¹\§-&Mā«…Œ·ļzņ––>ņ¦0ī¾ßłčśeē•ȤL—ķČńÄ8ßVœg_vč½ ŸhfĄé岎šEÅōqj…:źbRżocõŖüÅéÅŚÄ4·=õ½e'æ"÷śÕéötT»Ę·ķßxßsoę]’;ńĘø$mŠ/ŠžÖæžær-F€8|÷¶ģy1ł9ēYFxō£Ūżž}U››šÖWM•R™“9ūā“i©3‹R ŽœnvŌ:2&µoÓÕÖV”+Ū~ķ-āCZš™ųŪ“''ŒĻ¹0&žŌ¼¾)†}ķÕŗßߔ>3.YĮ×6ÄŪžāÅĻ|B+ N»$ķ—ŪĘL‰äOŠŻ¾ļķļ_GK N£©ĪeæI›1IU"ūsx»žūü¶£‘÷å«5ĖožĶ-Ė:§Ųī(Y¦DĮē°Ä4ōśė¶K'cłŁ®±µ[Jž(Å-K€8Ŭ%*>‡M»īOæ¬óŌÄd\¶$6^DÄ?ŗ[–pJ$;Ū:żÕvŠ”čˆń~śV{ŻĒß-ÕmĢ€SąŚ³¾øŗłoµ§9Š>ķ[ić¢ń3īZq×(ŸT§ą˜u{²+y±ˆ)%½Ž 9šņhoe¶20āņĘ~žŠ_J”ʇˆÆūÕUŒ°+:3£ūš²ėÆU­Œ°Ģ+”(’„O=@;3`„øÆ_4ęģ1‹ŗķM~Ÿ#*÷± é{_M.Lš°åg{Ü“8Wa!?\1óŖ˜ØŽž¼i’¦ū×<#āOmépiqĄIvž©&.!š?awē7rŪ:ié#˜0RAot@GāĀbš™0āŚz¾ݟŠ4ĖhgĄ)°„՟OUfL¢• #.Śõ…hVÕͦ†“Ōüs=ķL€q·üūĢk”(]ŅZł÷žō©U]“ó1¬0BŗÜѦˆģ’`ż·’¾³pY[7­üi\Ę ąäO$rݬ©’2a©3-š‚Ćē±ėņö½O½äöŃŹ€÷å‰ēž2”Ķ]Ÿźą¶gÆ]üūäĀ=/žōژ0¾q„I§ŽšĮ×&™‡ūPĒėźXyå_֋øTŻģą4I€).MģnļW.øę«=²7l×õ½Æv79Ē]~ģS„Būßy’ßWģ¦ #Ź©Żņ£’ėD­_uqzQdCö½z`µˆ-mެڔcõ;6ß÷·×Ż-M€Qß¼āœ_§W£ąj+SšvU®iݧ˜vדƤŽ1Dכöżų.Õ*.ć0d%²äŹĢ¢čų,õ›¶žŸb*bh¾”2.lÜZ¹¶µī“ĶÄą8SüÅČ’ĶūlNæ»bĶ”UoÜfOŽłdOƒˆUD§• §@[ĻņIYjDO›w6oü£źŃ9Žøužż‡†`Lńµ¹÷ś™ę@ ĆD׿§Fžēšz·żÕ]¦½x—9p0`öø{:#’STm-µ}ŹŚĄé“ńöO~ßVÆKäŽbxZŖß®å'jOCX†-Ķ>wźŒŁg’1æ‰z;×?lļ}”!,z N‹f’ß7æš—`S$¾÷²7OŒ N£Ņ@ĆĶŻGŽūžų…q—j “ą3tŪŹ–'"o0ÜnŸpÕ9wœ Ÿ„˜‘¹Ū9ĘUHė >Cµ+ŗ=‘ų¾É=—Ö#@|†ž¶Āæ52ßyĘl3–ö#@|F–-ųņ‹Žü qŻŃ“¢…¦•6öĀp’ŚĖóē83"ļ}·VĒ$ś½…—Xćw­PXNĄé÷jMżśHœDOćŒwV¬kŁ›J+ >5Æģ[‰ļŪ¢:ā‹.̜Śķ¦ Ÿ‰_<ń›Ļ}ų?m#óŻ;\qi“į°˜8yå=rĻmÆM0o^W³bqFȐPČčn®X]÷±fŠ‚ĆĮfŠFLœņ­»{Ź>\óʱgG¬ˆntÖ[ģī={׆:Æ›)Ņšé6呤¹w’|ܗ\9Ćy SDNWųhjr¶ˆ6³n{{­>ę@ŒøöĄ’ķŅå’tW‡ŃŠĖW7ķļö~ō‹š²Óūn[*T†bč8s¼X&óļ\|Į£Ī1ƒO5ÄŪVśčK߯Õ\ÉĶ­sVżėėöÓ¶ø/4żī½“=g”åÆ=9kĶļŚõŠńĒMioŅN\ę¶ĒoĶ{šū„āÖĖ[:Ģl_ÕŖ–šŻoł½§ć=†‚]•“Ōš0‰ą”r©¦ķ›?ĻžčÉ[h»źŻeŋ?žÅļ~pė÷R¦(jĮēD¶._~oKÆė \ŽlßMO’Ś©~w­»’ę.?v"d= a8„܆ųäŪ""®d ‰÷†„¦õW÷“ėņ ˆSłĀüw65wœšMÖķłź/yÅŸŚw×¶£­L”‘čˆ³āÓm’āŹļŪÆżüó§rœ½£ióļżn‘.­Ė©ŲøéCڈ€3Ņę®”?¶z§qŹ&jM©ŲйŪ8ŹÜo<+""!Zˆ&]؝ĀWWB [_™f€z‡‹«°œ”J$~ö©›ŸhļØ\Ć> ¹“%ĖgåŌ½¾æ1pųüg0‹N€ˆ&·ßsī7­öSÖ’hŲū¢4ŠˆdŸ;ē»Ī|ź=́8#å_Ɲ¢žA§­b÷kf‘ų܉×Zmšz ¢†»Ō™„™Ś“˜fĆ®=OžŪ:}™Ķęķl«¦ŽĆĮ€3ҁ—ī)\¹ĢįinŸoļŖĻ¹U8/1CĽÓģ”Žō@DG’.ā|’҃cū¾?j®Č,l”ėųĶį;ź>ü£Ł~ģŅ`g¶ˆH{Õ&@D™ŽĄŅÅóž\xö±#ŗ©*Į*ĮŠ–ß-æ’®’vNNĢĶ(ī’öoŹ9Ė®éF0ģīŖ®zßl?.„‚"=žś"®ä«n9ńŁm=YѶß-ņ‘_ż£’ŃĶž¦²×ĒxĖSoՌv÷­\—R²gEØSÄeŗ'>æ’ | ‘jN†{«˜éćELٶüŸ–м,"k=¢»V×5MD—ćW­bšu›«WI¬¹V jŅ×ĻžwÕģ~¹iU.b8Ć}ėĘnŽ–˜ē©½õģļu*·ß•’›«±4)ĒU,zR¦!AĖ®ŚŻķŽŗ“ū­ĮJ’+Q@Ä*‘ŚdéŗćÖńō»2żœ ēĢ0]›¶ÄYTžZS™ź‰™CXĪp„"m"ņą`SM5äHn«nŽĮoœŸ¬Eö­“Ēœ×OŚY…󕊬ƙ±Ōāt` @T0“I‹ó竪HC©Āo{ 0T ™ł UŃĶŅł]ĮӃ!,QĮÓź÷‹črą`ĒŠŸŸ›‘ÅihĢ›Š0zæ ū>ųIz±§¹£2œÕ ÅW¦OÉYąļ)}ŅWO £T°£vć§·Nœ®%ŒIpY}žf+ ?“)€ŃŹ<œ76GÖDŖA€•Śv—Öµ…=¢¢Ł,ŽC'BW5 CX¢@Y‹¼86³ą¼Ü|—>äųˆ·$jšˆˆ.U©!`ŌŖj—³SĒĶÉ—:¤3=ć,1Eń4•­ģibēvĄØVŪ"ƍqŸ“3.Ķ,źwMŗ^‘֝[ˆ¤Ž-+ӝEs ʧ ˜ Įö®ś¤1"=ötu “č¢PSĒo6×rś3+ß«üŲŪ™:1ŠMÅ8fŠq©ŗ žƒŽÄųӖæ(wnHaEz8Ā0z%¶īī˜Óŗ#sZLqŒ=”øīWQŁ šAa聯A{ fwöü®ƒUųzZ7oy"ŽkŪ’ńA€Ąą'ĄPóĘģŁ¹gµolŚj/ߐ<=e,U!@`Šˆ”¶Uŗ÷ū~ĘŠG€@æ“@ż»"Š_1SsĪžĘ˜s<åū_°[>y#“9ØĪPp€QÉ9®õ Å8JŒŒ)ZbC¹M·¦žūŖMÖźCĄh6ą–«8e¼yųG@l)5[švι3ė_såĖzsÕ»@€ō)kŽ-ÉS„Ż*[µż)gFÓGJ¬«Ē ÄM0Ł‹€„LVćw?kt=ņ/Șę=³n×}Õļ{bĘS%=ć˜JRqÖüƒėŌć 6–zź-Ūß¹ÆcŸHÉÕc éƒ ŽIt£JĪÜäāķ*½~1Äßŗéž€¢[C yyĘŗ/®ų§ā£Zz ‡öžŽšĒÕ>¶+Q-ēŻŅ¶§»)g^j¾ˆĻėˆ  æ{ū‰#÷†6e‰sBR†aÉK±Ēˆˆ8bӊj[Ø× Õ¤FO¤o©ćµ˜†ŅŻ«w?8:±žRD遥‘ž†jZ“Ą‰ĒS¦V¼ŻÓ bXuæˆHŻ6GR7æQH@„w#“¤ģ»īĶKĘ3O职»ōģ;Ɯ{āõUõ]Ķ""ŗiO1„棃÷­”öō@DؤÄqÅÉŁWg$¤ĢžöĢo.½ü­}·ż×ęÄEDQŽž’Š"Š(ʧžJī:iSŠ.Ó4×ؚ–®cG5gسa»¦‹ˆXōŗ ł M#īÖ§Ž,2 āĻ™5ÉŖ‹ˆĒ³'ėĀ©^ą*\˜öĮ¾—ķį¼šn/ś¼¦‰ØĘŁ·µn®^/‡_%qL«Ēō{_­Łčšč°] Ļ ”gRgęéÉvõĶyV‘ń—}īČу›·?©˜"¦ōµŌOķļ”{ī]®ōc7Ūėw½Š¶?qlמŅTU ŠˆTś_yŒv  ☁ioŁÆČPEŚ«£¶Y3«Öv©ō×|ÜūŪĢ \½†žLÅ“]fKL>rĐ/‡ZŚ+U³£Jė듨‹Nõ mūžĀēK®ėØ/ ģ¶Ć} %9·ó€ˆŲ²å„>K܌ó{K/™rcLģ±Ū~o ŪįŖxWm€ŪPc\RK „a>g°żĶžŽÓŖu;ęėģæÓ"½†°,Ī W}:>D:j?ųCÅ CźõPz "X£Wy®ē2mmś“øĆƒPMŻ—aysbęqGĢę½z`(ߜUÓģ¦ś€ˆfźŹ>wVÉō«ŻÖƒ÷@tՑ”1!}ZJAÆXPāR5%@Œ–Łšµß¹ r¦+"’7ÆeŸæm .ˆį8÷×Ų¾g8ņĪm+kŲ4“× ō÷Ņ(€Hš—Õ’sŶæū<"I¹ćõż‡ŖXDDrf%g÷7A®Ŗi‡ö/öhu[©; ģ«’ÅMÆż¬v³a¦Ģ2cśzÄä˜Y_*øXs%ē[,¦x»}}Nƒ'&ä šĻŲ’Ę‹ˆ„Ō]ū>ŁHÕ¢żˆˆ’¼śĆ– _Gł5UMÕ·č}’mŽæuMæcÜ%JŠŻV³ż;3Ģ•†e÷ŗ“É6Ūq ›9ÓŪŚ]/"¢ÄLø2ōłLćŠŌ¼%qŚW³½Ā”}­ļ½j2†5 V¢ˆ“Ӗ"f’g®[Œ¹hū«YĻæŚłŁ³S®õu$$Y¶nJÅ{ZČļŻ’ŽH̙֬™Su1Ķī†žfÓv§LjßæõiUÆ ~üTmµ&@ŒbóņtĶžšnūįK†Z÷oųõ” Oās',©zĒ™ŁQēH }ĢY{OSŁj½»YŁōā>Š«°Dµµ•"ęV—uč¶·öČ~Y©%5ļ¶īlŻ)b*Š)ŅRzčøGŪłń1L¢ˆzļ×ŌüłČh‹i=rŌ<ŗ«oČŅā²’‹DDŚĪķŪJ©=‘?żeü×ņf™ŅQ_ńī”#¶ä¼łJ0ąi«+¹ĪźpVov¶•ŹžŚļQ/s{©’YõŪ¶>£žķģ³āE¦ÜŠÓšY VÆõv:óuõ@×ę×øöŠ€£¾<÷ś«BzÅź#ń!bqf%dUnŽ’“H½*fՖNÕ*ę@D½_¶äU›MÕāŽn¬hØ)%GN‚™“¬vÕŠLgÕ"@ą°«ó¦ŽŸ, Uż‘‚‹œY"žžŻ/7ītĖܤŽ 1.…z pŲÄŪ²¦‰ˆ4–ZBGŽÅ$"ā÷”’ÓŌE’Ęäžwčø#Iį¬H€€ˆˆ";ś{Bz払£—š–½½śAŸ7.M‹óuš"<<óįŒ—Xj6TL¢ˆnöKł› Ūn[Šę?rPļ2»{ZĶ$½{ēŠPĻųK&}I·wģö7ÅÉųL)§hHŠ3ŽV³FD‘`˧›Š%ĘcŖŖn†Śė*޳e„"öPņ„[ģėø3'.µ³N ‰ģ{»fWŃ"_(Š©‰H‚‹š s ¢»2^ķgĻŲžĪaQC­öc5(Šˆˆƒ2vćÕĘęLtå„ĒŲC½ļ iŠ$äz+Ż:“”¢H£ņÜc&‹ ‡„!,Q­|æģW,“ rĪ-Hw7˜eŃ %ŲŃūŪt¼-Ū%uŌ1CR¦”Ļ8{Ęy‰Ē ŗØf°­÷ccé9‡zV±‰f*Ŗ&½² U,jąøĒš‰¬F'@@DD±]ś/©qšc8N˜Q ō>C€ "r鳗_Ÿp`MŠgOč8hKĖķ.ļjÖŻ"Ž4‹ĆÓ¤ųEL%yZĄ­ŖŻķyē)Źė¹ńIq® ²é-ź7@4s€č–l_|÷¼¼‘7/ąs(fĶĪq uóż’²fÜn³‡ŗšöˆ½µÜצ·ū½Ŗ¢(1YYSc’­Ī®–wžōģ/©`Ō9ē2×į5ö„¼5 St™hŲŻQojĄPL‹ĶįŹėnń¶)‡79ŃrĻ.¼B4o­łØ³¦Ź÷ŹcŌ± aˆR)©Ž- ˆˆO‘=QĖ0é¦ųŌ†ĶUėZvČ”„"’s~Ńģ1e«ŹV©”cGŃV¢…B]»_Ŗ}?Ń“eĘќеĀˬ1åo–½”†Ø=č“bźm5ė›Ėt]5 M,Ŗ_D¬ީݦwŖŒģ 00_³ˆˆŖ‹._$=5kø"@ L]eŌ \́ @ŒēGĀ>5ĘĘdM¾qś—•ZōĖxą8f¬3'³8’MņĻIŒwŻäöS† wö”kÄTED‘É×,­śåŲu÷¾øŸŗōŃO£pŒsBGPø'IDATŹ,EŌĆ ŅM™¾¤ųW1u”Ҝ3n¶ĒŪĪD“¼B“ķMčeĀÜŃTāĒ=¤—„=€”ä-ŖzŹ—ćuj 0ä¾GÉҜ9”¶–}®ó©C¦ĘgĶQ„ųóŠZ †P čµÄĘ&õŪC”D}/%0ŚeOµ ųeš‰tz Ї䢒›,u a1Ōq—ō@ ,ŗšŌmqģ_evS-ŽŅ½Ķ[3§X¬ĒŽšoųuOĆńż…Å"|šf”>^]pÖ­1q‡n{;¶žµ»5ŌŽ«ŸB| p¢Žk’+o¶=Vu{Ŗ7ŚØCdtU¾GF[™8†-¬ @€ @3Ł‘ @€@€ @ @€ @€9ü @€€ @€@€ @€ 0rų=@€ @€€ČĄ:@€ @€€ @€ĄIś’•Ą4«±ŽµKIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_6.png0000664000175000017500000002037114632072346023767 0ustar fabiofabio‰PNG  IHDR ™q*UüsBIT|dˆ pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī< IDATxœķŻ{”]e}šńgŸsꜙĢdf2ÉLī! $T[ä&j«µj+Z/µUūVmE»jm—m±Æ­mUźR”WŖ¢å®•ˆÜ/rI¹…[ī ¹_fΜ9gæ$@Hfž=sęóY VęĢ™½ł#kĶ÷ģēŁ;IÓ4 fc¦ænźĢÓ.8ÆŠŲZÉj†Ź®ĶÅÆųō„[W/[“Õ PrY ōjµ¾ZÖ3„BH²†>D#@€A/q韆†„4d{术ēB°ææ$„Œ/€„†P«öŽĶš0„   zµj_Ö×?€~"@öŠ‚ž @€h0č%É`Ų…ō°—j}½*ö“½Zµāö·P'ĄŽIv/ö‡†æųC½ ĄŠ¦*ź@!ė€ś—$I)ģĒeŒ–±3‹ż8ξIÓPķ+Ū„ūI€*I’üĮ‹’ź}Ķ£l؟ƒGVśq, #hIcėųdäųC2¹“Õ3·_¼.Mk«÷ū@i-I«•ż0 kØk•]›Ÿ^yĻewd=°›Mč@4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @żJÓB’õĄ ²` Ōśzsėżæėž}üĘ„YĻyÓ×®KÓ“šõ<ĄóPWz¶®Īƾ’ņ;VŽuéķiš¦Yϼ˜= @ŻŲ¾īįtŝ—\·āĪļŽ&>`prØ ›Ÿŗ£¼fŁU×lxdÉź¬g^ž†““֗lxäē[VŻū£Ė·­~`{ÖóÆL€CVµwW~ķ×<µ|Éæ^›¦i%ėy€W'@€!©wdzłÕ÷żĻ½ĻÜńķ›Ņ4­e=°wlB†œĻ>‘ėq€ž%@€WéŁ–ļŽ²ŖaoŽ»mÕżkVŽżßWīŲ°|ē@Ļėø¤ “$IF†’½|ūN›Ķ”~  ›Š€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń šBÖģ…ļI&\8«„½TźŁ€8,Į¢8óÆßtīqg¼ø”˜ōŪ‹ķ›’Ē7=¶}Gx®€®4¶Ō0õ‘īĻų!„¶1aʉ>į°ž<&0°°ĻŠcŠsĻ:lŹ+½§4¶Ōš{ŸYüķi³ĆÉż}ž‘ķiē±gw^Wģ,¶ö÷±a °Ļ~’³g|aüōüŪKcKÓĖėŹ•B(v“¤4†$ŌęŸ4wꇾrÖw&˜ä’W;Ü>ihLF„Ō‡Ŗ0Tx°OJ]„ęO~÷œG›[ÓŃĻ®I~]«†ž›k—šĆ”Qc“ĆBj Å“yDKŅ2s¤iĖnéżź·?zŇņ<@’pŲ7IئµPm(†Ņų©éüē^<ęwß4ąc$!Œ_:|ĄOō —+€}’ÖŅźĪ•īīÉÖ¬gŁ“®r{Ö3{G€ū¤wCoåg?rŹ?ŁöŽm›Āšž8f­öŚ—†ļڶŻsżćöĒł'@€}¶ģźŸéķī-Æ}¦ļ¾ž8^ŗ²öé°dé•KWõĒłg°Ļ¾ćØCŽō¾.nŗśćxłĀkūl4MÓ°źŃ—÷ǹ8\öYZK›š[kY? Ihj)LŹźüĄk'@€}¶ąŌ)ŸĶč{! ©G€Ąć_,°×FĻ=į¤?=ž¤RWid±£˜46ēĒ%™åGÕ¾P]÷ŌęŪ²›x­<ˆxU„±„ļü›Ó¾yĄœ†3›CĖ®ÉĘÕĖkæ˜23œŁ8"WĢ2BV?™üźß?rÅŃå5åjvS{Ė&tąEŠÅb’$ł¹':kĘ“ĪhŪxŲ'¾uö‘aZ®°{õÄȶ0zę‚ÜyYĻBł|Z!ųD†Ć\©«”KÓ“edĒȖÅ8ī#ŸüīŁļ-’āˆ‘µ1»ļJ5ø·_µ¼ryyM¹–õĄŽ± †‰É §“nX¹¾š+åĀ“ŁSŗ¦6yįŌŁ£Ī+6„ĒLH-4Ԛsł$ I¾_N˜ī)]Ņ—üqæ‰¤{śņ„?B«Ÿ ÷,żÅ†ßšŸ7ޱoƒ1 ŠÅĘ?śĒÓ~6~ZqVµšTņ iÓȶ¤-ė¹śK¹'ķ¹ļ†žĻžą3W{": rī‚Ć@’KŖåīŚ¶bchiĘÕS|„B©1iœ{üˆ ĪūüQģ(fø%x5†ņŗreŻÓ=ßXõDrC÷Īd{Öó „¦ę“mÜÅ·O?„5ėY€—g: §żå©‹ē½qŌ……|RØUÓJÖó ”)3ó ;&Œ:(„š«¬göL€Ą0ŠŅ^š5Ŗ3Z(Ō÷ź‡BC.{Ī“Æ’Į—Īłß­ŗļ»ę‹×ż0뙀 PĒŚµ‡ĆēĻ;āą£:…Z؆a°üzŅōäˆIӋGlßRŲ>~žø›×Ü·vmÖ3Ļ PĒ&ŽšųŗÅ‹ß3īźbc®īƄ„BOOŲuĻOwžÅ>wķײžр»õGw.Yæ2wÖsÄŅŲFĢ\Ųųł…ļ8b^Ö³†Ž ½½·]õäŸīŚźņ„{ņģŹō¦ūńĄ²¬ē KĢ{V”†Å¬4MC[gnnZI“¬g܆†¶[Ś>śõÓ?Tl YĻ26oHžŽślśąŽĶ}ĻÜüĆeŸļ}¶·šõL€Mč0,żł÷ßvӔƒ“×e=GŪø.<Õ³3Y½skõ©GļŽxį’’\roÖ3/&@`ZųŽ£&ĻyżÄ 9ŗįm¹\RK“Ņ4„›Æģłų{՗³žxy†©ŅŲRžä?:į¼'µ©}L:)ėyöU­š¦+—ē–<»Ŗū¦}éśčYÕӛõLĄĖ 0Ģ}Įiļ8ęĶ#/.–B1ėYöÅś•ÉĆ_~߇–×—ķń€!Ą]°`˜8ė‚ÓŽöɫ޾ģü‹ŽśŅøRC!”Ę•J­„iś²žo_„iŅ+>`čpźÜ¬Sf“ööŌ:ĻłŲߝx`8:MÓ°|Yś“ĒīŽų„§tž{פtV2D¶T«iČē_<ė¦õaå…ļ¹ņĄņŚr%£±€×Ąmx Ž•Ę—ņołÄ©Ÿ|é/ņ…4 ! I’„ē$‹§Ģģ<±X „†F|ōt§Ż?żöš÷Ģ:füۚFęĘŅQ „Šōų½Ż’&>`čpźTi\©į½’pęš—œ“Ė Čx%+ æüņŪpüo¾.u•Š!„P^_¶é†{@ µ/jļøąŒÆĢ˜_ńQ«¦éK·}ż…ƕח{Å =źĢģÅsFŸū‡'~köĀüłCeoǫٹ=·ńŗ‹–\™õĄž Pg<|āāƒäßYhHņYĻŅ_6­ė[’ąjŌuęŚ/^é ßŪ¼xÕį®Zmčmö¬Vkaūę°aĶÓɽ÷ß\¹š‘{j? i®<÷„Ćfg=°’lB€:US̟łg§ž?kaó§Gu„ӆŹj¬‡Õsė=’»ā#ĖW=yß–Ū¶d=ŠĻŌ¹bg±ł÷/8żļęÓš§…bҐõ<ƦZ­…k/Z{üŻüˬgśŸ%XPēz7ōīüΟ_ń‰ļØ|u(,ÉJ’$“t4OČz``&¾÷łā”;+߬UÓP­¦”ܝ–Ė=io_„ś*µtÓśšL__ZĶzĪ\. Ó擾;ė9€įIč0Lō>Ū[--żÉ©ēŸpóĪĶ=OŽņĆŪ!„ńkn3²ń‘;{ņ܏/žŌ¼/(CiĻ—ÖŅ“Æ/¤ Åä5ąŁ1.YPģ,6õnčķŽß9€ĮE€Ą0R^W®†.!„šŸæ}yć Žņ…w’ė93*¾æ±)“ģķqkµ4„4„\~÷N÷J9­Üń“Ÿŗ’†G®:ł= >×9)|ÓČj×Ī­¹ÕłBRźŽ‘nh:r…P*–Ņ–RcڜĻ璐„¦iŲ°¢ļ”¶Ī¦žų+ƒŒM衋“/jü—‹o›x@zĢŽ¼åćéß±łzvVvLž=śŌ®É…S+½}…Æ}ģŚłå5åj!Z „ s¦vmĖm\ŃżDwCy]¹RSĢ'¹¤!„P\xꑇĪ8²ėüƒäß½yC>öć#7?¾cŪ€žELø¼D±”Žyµ÷¤ivnK¶ŽōĆĒžåīļß÷›§”’<„š©RW©¹¼¾üŪż$};śŹ!„Ļ}Y a÷’°B5„ŠBøµŲQ¼mźü©_˜{ĀōīŚV±ō ź”+ ĄKœńéSßyų‰£¾8Ŗ3¼§ļ÷UŅźć÷×.[vćŹ/Üž’īx0ö|ĄŠ%@€=śą·ŽśŻósļ|įkiŗ{ÉÕÆ®[żń;ƾūöņśr-«ł€”É,`ž~pŪ7 £Fōõ…łBµė€C’SW>næäsם¼ńįm;³žš\^ÕŸ<įœC_?śßæń~±pć#Wg=0t `ƔŗJi_ZīŻŌė—`Ÿ  š×üdR€}%@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @Żk_Ōž’ą%'uŚēę7e= wIš¦YĻ0`ڵē’üļßpYK[éÜ]Ū{ÆÆTj†4­­zjė?ė7­Ėz>n Y0Pڵ‡}īøĻ¶¶7ž’ZŚJ§†N­ÕҰec÷-ķ‹ŚÆŲrŪŸĘBD–`uė­ļŸ7³­£ńÆBņā×s¹$L:°żG'ž3£+›É`ųrØK Ī;¼ć×w>¼āü>ī”–¶Ņ±…†Üäžī¾»r•ŽŚ–|>ihi-õf=' 7ØKć¦9ļø·žžĒĻ<øćĒ÷’lé¬Y¾~Ky}¹–õ\0Ü  .M9¤õÜi3óĒL8°ķšĆŽpōĒ®żź“'…īĖz.īģźŅ·>yĶŪŗ«ņß¹$Ķ·J:Z:§;ŠIū¢öP[Ź·/jĻzD–܆ØK'ō ļ8źō±’Ų֑Œm(†b¹'-oߔ[™†PĖåŅ\µ/©l^×ūä·žņš³*›+}YĻ Ć…%X@Żi_ŌĪ’äI;f\2ł7ƕ“RiB:ż7_§ižXZ¹¬yV³ų€ˆ,ĮźĪ–Ū¶„_^öčIŽ×wżž¾æckŲōė»*—]õ•ŸžŻ–۶Ć5Ō„;/]¶¢Ō”ozįkÕj-Ōjiøėŗ­¶üžĶõĘ?xż™YĶƕźÖ÷o½“VŪ½įµVKĆņ_·ŻZ«„”idį é :>7ēøŃd=# 7Ø[ÜųčkÕŻ7ÜÉ咐KŅ\_9éž6gÄū¦Ī*¼yDk:¾ŌUjĢxLVPwfž— SŚęf=/ 'nĆ Ō¦ö‰„Ī™'qš‰33„m]„¶MwŽpČå#F ½½];sI!;'—†Ŗ›6Œ{:MW†BC®9ė¹a8 @Ż{țNžtŌĢČ74VC»žū/ōõ…ūu›6L[½ōÖ[.ß¼n×­ń'…įĖ, n[sĻÅĒ«ŖōNŽŗōÖł7Żų»J’㲉†¼$I mēŽo{šÆåēZǟR=š yOēĮ'¾>I’d ęž§ö€!«±u\cė„9Ó&ĢKW笓h›8Æļµü|’˧ć}sh5łˆ†ķ…$I~ž¦im ę0„ó¦:>qވŽiŻI¾ššāć·’$“Mš_njŸ4/­õ=Bø·§^Č,`Hš0’ܹćēž=«¹ó ]I¾īļńŠ-cŹÅ–Īƒśc6ąå `Čéš}Ź“ń‡uBiäŲ½Śp¾·FxÜä¦Q“Zū󘡋 `ČH’$™²šM^ų®3[ĘĪÜļ«櫹kF_׬Sėļćϳ’$ÉO=öü“'.xėģBidæ^łxž¹tÄčiSB·üι“4Mū=x`8rōĘLŻčŁožü»&łŽ‹ßJӗÜ”g>ńš·ĢŠóĀ0!@€AÆŠŌŚÕqĄ¢Q¹½|ČąžčŁŗfżožœ$I2jź‘S›FM?rü”ó<+öŸ%XĻ)o_WܶęRCSŪ„¾žmkĒņ¦m“ęŸ4zśėŠ!„0yįžBø<ć1aH ĻI’|uōō×-hé:xf÷ęgVO:źS›ĒLļ !TC”©}’+ °ŸĄsŠ-cŖćēž½£VķĶõuo›ZlÓūĀļē‹Mc’$ ö£Ć¾³ąwäņÅŚļĘG!„$i!äćOõC€ģ„öI‡7tĶ^<;ė9`( {©aÄØjcŪ„IYĻC™= Ą°Ō½eenÓ·=–ä µ¾ŽŲ:nRĒ‹š^īēZ:§’$ɍišvü”P0,UĖ;ÓåK¾|Cš¦=/|}ę›>ó–Āėū¹Ń½¾oź±ļ;2„pÓ@ĻõČ,€yå[\%¹B:¢cŚžIūF€ĆŁKcc/ī±›o(5æGĮ>ńąҽyČG’ !„†ź†„t?žūĪ«HiäŲÖB©łe7Ŗ/O€¼Ų«HZ­ōö•w¾ōA…Ą« Ąšō2™‘¦µŚžæó¼-+īyxķ϶Æ}x[ߋ; Ō! oś½YGē ¹ęB(rł‰“’uū¢öw7†cć ‘¦iZ«&[žłUyĆ#?æiķ×<“7Ļ&öŽ%XĄ ŃŲX(ä’ēW]5,¾ż­ļŸwHĢzwmī[y÷„-ūŃĒæ½fŁÕāś™+ Ą ±łŁīĒ'Mƅ|~÷g¤…†\©kBĖ›CHÆī’³„{Ü_²āĪKnNÓ“/„Æö’)W@€ĮćįūׯÆö„›~óuZKĆ®•„xŹ—DČīųŠ».zl×®½×ŌŖičŽYY¶~õŽ÷_|į×ŚG˜L=öü’d o“¼%XĄ rŻeæ’šc']ųżÆŻūŠ–Ū¶T’éĢĘzzæŸ'׊X0ļÜŁ}åķ[Bwōū €=Jl¬»q‡ž>ū ?±8_QķļcwoY™[qĒ%×­YvuäŪżĀšd 0¬5µOŖŸwĪɝ3ß8!ėY`8 Ą°7rÜģdÜ”gžŁ:~ĪȬgzg@”ć€cŠ}=[ߒ$É„išV²žź•xNēĢ“Ś*ŻŪĪL’äŠ4MkYĻõH€<'ÉŅq‡ž1„ÆgŪ“$ł¹›õ@’ //ŽØŽŸwīa•žm›C÷d=Ō›Š~G±¹£:ažyÆ7ē“éYĻõF€ģĮˆŽ)éųyē.ī˜vtgÖ³@= /£uĀ”ł‰ ŽzNK×AĶYĻõĀ€WŠqĄ±•ī­g'Iņƒ4Mū²ž†:šJ’$tĪ:„³Ņ³ķ“$I®IŻ ö‹x¹|C­kÖ)3¶­~`Jįé¬ē”Ģ€½Ė7„|C£oa?  D#@€h¢ @4ˆF€Ń D#@€hM!뀔Æ}Q{č^Ž!„iyM¹–ńHĄ %@€żväQ‡Ÿ~ŌgĒ|5I’šģźŹ!„3²ž œ°ßŠ…–ޱaJ.Bo¹ø!ėy€ĮK€ż"­„”BH-¾^öŪŖGÖ’ü§ß­žB•]•Mį-YO VŲo÷_y’ĘĀO²žü܆ˆF€Ń D#@€hÜ ąT«; !­%ÕźĪBiÖ楐'@^Į¢/ł@G箃*åPż[ŗÆĪzźĄ+(’\±”+„ąļŠģxµZŖÕZØU-悞ą Ą+øēÖ3.ÉŹ Õrw!©]^ÉzźĄ+č-OŽŹ!ōõlk!ē2ģ'K°€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ Uzõ®jIDAT@4ˆF€Ń D#@€h¢ @4ˆF€Ń D#@€h¢ @4ˆę’Ó=aMĘŻ]IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/bg.png0000664000175000017500000064071014632072346022305 0ustar fabiofabio‰PNG  IHDR ™q*UüsRGB®ĪébKGD’’’ ½§“ pHYs × ×B(›xtIMEŚ =Žˆ IDATxŚģ½×“%Ivę÷s÷PW‹T•™„õtuµ˜3°Ą® [ҌūĄņ…’ņ‘|ąÉ]³Ż[Ø1`ōƒī™ÖŖŗŗŗtUVjq3ƌwēCÄU™Y²«ŗŖgā“Uõ­Ģ{oDxxøŸļœó}Güļ’žŸ¬ćø< ŪŁZ§TąiZŲė ć˜\± Ö>“‚Ķu å*Rʧr ĘĀ^©<Ļj抎iąy>ĪÓ:ĄZĖNcƒņS›‚n§ ‚\ž©EÆŪĮZ‹äB<•sˆ£ˆ^ÆC”X~zwC¶ä %”ržŚy£iļ4(V'žŚz„ć˜0ģāz>OjoxknoR(VOiĶ|–öķĶuŠOq’°ÖözX,Aš“Ö«dĶ”RįzžS[ƞ„żC<½ż#ŽBĀ^—\”ōōö8"ģu r…§ö|:C!péö‚„v+ä_>¾ĮÜD×Ÿ?Šė )¹vgk 'M#lwz¬n“R& A«Ż¢Żī°°²ÅŹVPxžÄ‘Š %®#q=Ēõ“ė—)å€`Ż/ w•œ †dn1FŽ6Éc1é?mņ×Ā(õ²‚•­:Ž)§U‰ā2Ėk}A­œ'Š"<×#Ž")9®ćR.åBE!­N„z8R"¤BII½Z¦Ṟŗ±Īāņ2ĒŅéÄÄŚ¢ŸV³ƒėš}…”įé ÉżA0cļÉIf_b̆ ³Ģ2ĖHf™}•Ąć^DčŻåAI‰~ż¾)›źW<ŗ…!Žbł\¤`¢ZįĄĢ$•R×q"z‘Ļē>åƘ!ūٟō*,“[m¢ČņŹsĒČēs,,mązŻP³Ó hö,­š$HRžŠ°r/<ź6 īŽ1"™=˜ ÆLE’Œņ¼é l²ĖtĶ]Qlŗvd 3Ė,³ €döµż×ūŽ1™Ö4ÕŃļŃ'Œ[“:„&¢Õé¢MRZć8k,҆¼~v%4§Ėœ,Ńé†ųŽC>H2‰RĻu|—‹W’hz„8ņŚpd¶F' éöāš˜d#.‚a‡oaG;½–¼ļ1w`’zµH©P`¢VĘuäĄI Ƙ\Χ’Wü—7>ĘZ‡v$B‚ņ)r`5¹‹ĒŃ73ŸžĻūc)R€­u:ž %š^Ū Eā§g7øĪ¶Ģī „ źuŁŁŽz€ł²w>Šńæua&ŠĀ„’FcĻ÷ńü ć$d–YfÉģė :F³£\Œ zW†£OŠš8Œ!Š4Ż^șCUŽN—醆•­6ķnȵ;›` /Ÿ9Äó' ¤ Õ 1ņ®G©`LZ®e‰ÜXC©ć܉yLTČŽXH1Š5®ršņĪŠÉpöF½0ćP+’÷„üm†N„TŠ^33=Įo½všb±Hi”’¬lnóę'ĖxA!F†Å˜D…Źź$ū“øc”0øŹ’s%ͦŠņŅj7ŅC:ÉRPĖ žą;§č† iuC>»¶Ā„›kģtB®Ž^a¢āóśłcœ9:ĆN«Ėv«Ć»Ÿ\į?’ķ[¼|ö(gŽĻā{xķüI°– p™¬2Y+‚ Ÿż#¦ÖZ”J~k½ļŽĪ©T ØÆ_Ź$3$’ÄĒ@Ąbq]ČT”«ļX…‘f}s‹_|z“FGc…—*•Y&ĶfģöóF³LŒ5–LųCbÄńĻžd $³\±ĘRŖNģ Ä®¹82?ĒH’„•¼ŪœĒę¢?†$ŁF‘f` £GX7‘Č~ā`ģ)ķK™e–Y@2ū„ŚZS×lßZś‘¬Gd @‡Įšl„1Q'Ņ®Bó$Ļd¢ZąšLŻkR®V #1°°Ņą Wył‡łÅ'W°f&*;8ØV°ÖŒ9‰Zk„Ō*Å]ių»ß&~—Ķ]k;ī¾Ń'ŽĢų.®rø}g‰Õ•UzQˆćśĒ#Ž5ķNGÄä]I!ēQ)8Ā£V®²¾¹ÉńóĢĪL°¹µĆŽüœo®qdīoo±¼Ńes»ĆRŲ"ŠbĻTé„Z¦Ŗy^9;ĒF£Ķ§Wyū“üģ½/ØWņ¼~ī„bŽłé:ĒMS.ähģtˆć„BŽ|ĪKĻĻąŗŠC³“Ä)ųø«“±‹g±Ÿ)„hµZ¾O…ōz]Ķ.Ź‘lnµŲŚi†RJr¾G>ēć{B „…v›«·–¹³ŗC/4XåŠÜną&ȗ x®ĄÄ=†ŲÉ£ūfęn“”dŖ fÄd12OĘēzęądv?—ŪZƒėłwu’÷G_ŽuæļÜL‡Ž¢}ĖæÆū]’~%”bĢ™4ӛYfĻҚ‘Ģ2{€Ēdæ tX64QŌå£K lŌįÕóEņ9!§LQ+ł8ŽĆ‘¹)Õ‡T酚V§Ćļ\ā?üč-ź„€~ļEN›ÅZˆāk,JÉ= ;(~ųč¢|ĻC)A»Óe}c‹[Kk\»u‡k7Łhv(ę&jEĒÅwēį(5h3Ų #6wBŗ‘$Ņ–‰²ĒÉĆu ł€Rī—¶Ųh'ņĢ­n“ļæ0ĖÕÅ[]'ĶViĻ“X[za^ƛņjƒėøųA€ć8ƒę‡2iŠ2¦\&悈qf_o'x·#¼wQ÷m j@[““ÕGĮĆYDŚ"7…kC“±įĒ!Õ ę›gpč@(ÖÄqLą{“Ś]n-o²¼Ńf»Y‡ WÄqRīÜß©ĢģWl<œ¼dŠ0ÓY`ż`M>p9>ųģ6Ķ–Ć7ŽĶP.I$:UOr‰ć$%?ØÄĮ÷3Uēä‘yŽūč"’éÆĀłÓĒ8’Ü)*åQaĶxōÆÓķšŽG—ųŸžä÷˜šœDćē¦jĢLTŃ:ęgļ_āµs'°ģ-1Š)óŹsœ<4ƒÅą»ī¾›ücۘ­Į÷\~ųƒ×8vxŽ  RŖ„Ļ‘Üė”Cą¤÷uqyw?žœO.]GIÉļ½~ŠŁ©:ĒĻ"Uv”ƒµ†XĒh“d7*`'TŲ°AƹÉģd­–b¾.ł½ļ¼Äd½6šX†œ˱óXĖĘęo_øĮzĒb…“ŖµĮnYßĢ~9ĒĆ:森ų ¤oDtc<`cG‚6&į’iKv¹ŌÜB[Š(¤ć”¤CŸ-"…Ąw`²ā0;Q¦Z xėÓEš½”ļĈ܄<Ō*Hs§A¾P¼× ķ ه$ü\7•%(šAŖJg »łXcw š°»„ūoģɳTė>=’­™e$³ĢīcĘZŪ__©*Ž™”Óa¬&Š5&ŅčœH`„Żęß’č]”Ē꼜=6ƕ›+¬o·Ø— Ō«ß””Ļį:j ō¤¤Äy˜ŖßģO©”ōXŻh ”‹łGŚ`ś“’’BŽc«Ńd3ŒŲÜŚęēļ~Čķå-*å2³3|ļÕ³” >o~t¶vPŹAōåvIT –1?~óžčwæK&ŃÄĄ÷ųµWĻóŚĖϱ±±Å‡Ÿ\¤V­pā蔤sųčCļøüėßłfź{@–£Žņųž«Ļį*™n°ūƒ)›Źnśžó„ڃXk^Ł B¾Œ·,ų~n’žN÷Œ»‰UÜļ|ė¦Ži5wŠ:JK@‡óĖ2܏Æ¾²"“®‰z D‰ėyXm”‹Į½żźAHÖ%&³ €d–9÷©ķ•bX?Ū_°ūdrk ĘhzQÄū8ļ‘ \n/7ø¼°Īµ;[t"‹éj~ńįu>żā6/œšć„3‡©s©śŹŠ‘–RŠj‡|~g‘[7nóėß©ā¹Žx&#U—ŁÆ.XJ‰«®ÜäÖā*gbf²öčąC ¬±,oģŠŲŽ”Ēt:!ž+ł£ßżu¦&źiX\^ē‹k·łŁ_Ќ§ÓuŲl“r…1|LšVJrA°TÖģ’™‡O+¢¼ ?ÜŪ‹µ%ł\~o]yžt]—•ÕužŸ?’¢øĒ’ü'?ąŲįƒcMGK`FŪ)ģv8<ĻåŅ•[¼õįEz½˜­ŽAzEr¹R9ģsöæb cōg{36żēĄå7†Ęf²¦ģ7fbä,Ń’žĒ8g£(L²`½āē‹”Ŗ5Ā(āČTĄoē<óÓStŗ=Ž’ä"33ÓLOü·æ?•|±­ļ*Y{Æs|Š÷żLĪ}Żüž}w]— —®š£Ÿüœ“GēłŻļæ6$Q#3xōČŲÄQÄņĘ&Ė««4ZšŽÉįē=ĒA¤bÉłģ*„łŠ!O:–ćąĮ¤Ļ^?Ŗ?ė„–:v „Ęč{Ģᓲ_ģug^ ”ź$ńC®‰‰,x ¬“·)(‘"…č÷’B0W/¢£VO'B&ĶšŒfTŒE©˜µMNĻÕłös/2?Uaau‹…å-f§Ŗ¬llÓj‡œ*qsµI¬cź® čĆzc‡n§M!4ۚćs5¾qdĻUŌJRJŹEƒ4:ķ‡ĆX'vƒ>ēo¶^ą•S“tƘ 76¹½ÖĘqŌcx^ŽŲV;ę'ļß"Ņ!§,ßažó'¦QJŽ¢XS+üŪß~Žłčw6ډą‰ć$ ÄH„dßRµ'F\×§×ķ¢ćĒõ2g$³ €dö«ÕÜ»™HĄd„̟’żĻń<Åžś+ó9’’%X\ŁąĆĻÆshvŠ^/$Ž5ÆæpŠ0Ņ,®nńÉ„ė|vłļsöÄkė[œ>2K„\Ū,VGޚ“_„Htć/__ęw/rķęA§\@kCČĖgšƒo'DŚąy§O£ÕjS(äĒ”¹²Ø×£;>J)––Wų矿Ļļ|šÜ™¤–>‚:m Żv—„µ J…„Bc-ļ}|‘·>ųœ£P,ęÉy_Ü\įźÅR‘B”DųIƒD„R £¶ƒ^ _.’ū4žū‡!»eb‡5ö¤õõƎö}į Ļ•D±–Żó^€ •5"åIķó¾/ @“ƒµįCŪ÷Ņ Šä|Eµąs`"O½čÓķöFšĪ…Ī©ņŹŁy¢Ų²“Ž@[ĮWÖŁÜ å‚Ö °•œd²Vd«Ż#Ō1ĶNH„P«¹|k….-pöč ķS%ßzõ$…œ¢ŻÓ” 9Ļau³É_żģ"åœÄbXŪīrłö«;Ü\ŽN²±īW/ĄhĖĀźwVÖé†1ŅqɹĒu”¹<^ŗi­1±F:OŚ““Ņ칟Ś*…€?üĪ)Z݈æ}•….®»„ŒÆ’Z6væēK9.Š&ÖĒe,[•YfÉģ— tÜ[ĶŦ;“n¼»¹þÖ&ļ3ZS |^>{c-·–ÖXŻh07]&¦<гĒf(|.ß\ąęŅ&WoÆp}a-Q®Jū_<źoüā3źå"Żī6åĶ.HxūĆK\ør‡ßżīó€dk»8N/j IDATɛ\dymmb˜ęŪ/}ƒł™*A.š p¾÷*Uŗ×Ól÷(¶[~ņó ¼óé J„2år£5Ēf ¼tzž#gšƒ€8NŌl€dÓ+Ÿh$ķWÕ6·¶łWæż=fL'‘č‘{Ün·łē_¼G.Čóü7N°±ŁąÖā ė šæłķ—)¾ø±Č•Ū+l“-sቩe)bb“ŽėkŲś6Œģļö.vDV{T„"™ĻFĒž‹¶–ĘÖVŅ'Ęóq¤Ā (ś.Ż(&Š Ź‘Xr¤Œ§L•άfCv?'cĶ#wy½āž`å˧©¤5ĢÕĻŌ™™(rgµĮŪn±¼ŁāŲl•ĄSLVę&ĖlīōXŁjaŒåµ%Ö=\/@ p• 2šÓóu””üüĀCŌėįŗ’^c­f¢Zfrr‚›«m¶[=^>S§\ ˆ¢ˆ¼ļE1Ÿ\YęķOoY‡łd0¾#$Ņqš} _DōÖ_њc-H%ŹĒļnsźń°Ÿ•*\NV™Ÿ©į8"ĶTļ# ¼ūŁMžĖO>¦R)Q,–nI9–0C lŒ½ÆÜö—QUģ—:§»2Ū2ĖHfæLĄcƒ‹Ż'Ŗ”’Jķ®÷Ų$RiMŖ2Ņ Ę cĶŃŁ2e‡BĮ§xLՋøR³·QŸIŹĪŌ9:7ļŗüųŸaMĢ|ļV7›üäķĻYŪj²“± n.­óŕk…b"ÉėøT*®/¬sīäAN™£TČ1Q-P*ęĄ&Åū5Č6U›ńˆćDUÉXC·ńŃ„×ī¬qżĪ““ 6Œyåō,ßż|/ Қ86éwÄX,Žćģėföåęvǜ9y KŅå~w¤²P(šĒæ÷[ÄZ³¾±ÉT½Źōä¹oH%Ńi¦Äq<®/~„ėåpʀG >„LŠ=ąćėŅ?`·óŽ'‘•‚ö÷×eléóŸd?ÓR£É<ķND/4œ;Våčl7?]ąöŹ6Ž”4»]ę'‹üžÆęĆĻļšĮ•&ņ>A.ĒĘv—^d“8ÉÖ !%nĖqĪĪČś•4ĒL”īl ¦Ģ*/5#$WWŗ|vė:: ÉGT˜6†c³ž;~€‹×Vłüę·—7YŽl#•C š½#„œā{ĻĻr{µÉ»ŸŻĘS–B>‡1š ˜©åØsÅ©Cuf'ŹÜZŽäćĖĖ\ø¶ÄūŸß"Ž —”j#šżĒQø®G~„h>ČŌ‰>’Éą½]ʇū‰Ų³®~Łõo—I:7£Č0Só9{ØĘÜtG)bcqdĀ+еĮ˜„_Hŗ=2Ķ»3uŗā(J$żęš}Q±ļ<ÜÜ?Ś:`*ՖüŠIčĻĀŗ•䞣Õo2’Ł=é»ŻG"Y(Hba²āQ/łl4»¬o÷ˆćä÷ÖZ\GöŚÜ^6„aÄT½ĀśFƒ×ΟŲÓ·ct”6ĘŠÕm,Ēē'ŁÜŚf½ŃĀw$łĄ!Ž#žųßę̱YĒįĪĀ““Sx®ĖņfƒæuÕµuŽœff²Š#UŅY»Ż{(ŧ1Ā7`å°~ż‹›KŌ«%V7·ŁŽépćĪ7–6q½õZŖ¦„: ĖėŪ(Ń$<šķ6¾ēp{qßQœ8v„T6!ó܆$»“ß=ššā˜|ó]Žz÷^é4^øŽē»ŌŹE;–·ŗ(Æ@±\£™š—ÄXÖ#į}°K%īėÖ¼l „ō³˜© Ӑ#aRŽŒLAG*æ-§æGhc)ēęj>ŗāS\ØQĢ{üėļžfe«ÅT­Ą_žōqSĢyXaųWŽńāé9ĀXӋbÖ6[¬nupÅśV‡+‹ "cLjһ%p­€bĪ”8ıf»Ł„ƒź‰Œ×č­õ7)ÕŃްÄa„›–œ}zu•.ßaa­Å‹'f(K4»„q2¾Ó%‡›K ­6~ėS÷£Ɲ™aŗ^fq­ĮĻ?¾ĮĮ™’šöeĀŲ0;UŪp-—£ekżR@1ą)õKF‡ O}īŅ—Ÿ·"ć™˰?ĒīģÕ(ßēįŽß¼ū½ŻZKĪ“¬oīšĻėœ;6Ć7ŽĻ#„G7Ö“;=¶[Ķv‡f§‡’z­Ä™#5>æ¹E;Œ)å=4Å1V)”dąÄpžŻm ō=ģøz®OŲk£uŒóÕĖ ĻSŒU<5šaÓf¹łŚY@2»ēĆ=¾‘ŚżÓį)ĻĮŚ$jd­ĮUpx*Ēóǧ°~śŃ—n7pTņ=ķN‡?ųÖsĢLYŪjŃīt9rp*%’Ż{Q“Bǚ©‰ ü[Æb¬%ŽbźÕ’ļ_½ÉoPČłTŹzQā°„±¦”Ļńoų:\¼ĮŽxZ¹Č‰ĆųöK§ Ćh¤ÉԃéĖĒFÓķ„˜“ĪŪsŹÅĒē§“ßGšk·Öø±¼C±TDŅHœÓ’ųī žįķėų®åę5~ųēxõüi¦¦&÷ČgöՙŽ"žśĒļšėß:ĒŁĒłµW_Āw¤”¼ūÉžīkTŹÕp8i¹UzåŠ©Ū]rõuķœK2ޜ)ķį1ˆ–õ9ăē^Ģ?}|‡÷æXęœÓD±F„!­µ!łŁ‡×ųöó‡ØWŠs>ĶNwø§ņ†&uĄGĻyøzaæ ŗĀq•R)$[Ū-"mŲŁn1==M¦Ž1<ś0/ž=ŹOßž”+·īpęÄ:6(%ń'AIćüŁßGä@еŻéqsqN·‡Ö–µĘßbÓó—B¤<%12Ō{ČƔüš±ėzr<Ń¬G‡DŻ.±Ž(•ė#2ŁOt!;c,qŌ%ģuPŽC©TOÄi²ż2 ™=&w)Ö ¤ G¤/wÆĖc5Óc*5‰FzŸ„źČa“Ķ‘r¬y“±fЇ¢§cŽx’®«|o(Mėŗ\_ŁįĘ}Ÿļ¼pŒ™z ¬”ZŹ“Ļłl7Ū“Ū!Ź‘”ņI”4šŒŁ» õ_oļ“yżłcäs>o|)ĖĖĖK˜4ļ Ć!%ßył,Óe®ŽX&š? Z.PrŌĄ1±X¢HF1J :Ż$ć‘ |šķg'Łi&‘Łxū"Ÿ\^A(I»ÕZ!ś™tć—bŠųŖ_Š ŅqVXšĶ6q¬q]'[LŸ¢ć­”äūßś&ŚhžģoßD»eŌ6®ēR­Oć(5ą}$Ąƒ»p=öFļ¾v#BæÖ< »|÷õĆ››ąÄ\k-wV|ze‘‹×—ųĪ 'ųWOpgu‹æśé§\[XåĢŃt{›Ū-fŖ“5¼łįÜ\ÜąČL•ć'ń<—o½t ĻKJ¤vZ]J…`ą·Ź4  µ„Ó łÅ…¼õń-‚ O±æÆ³¶ŪµOˆŻ¼[“#yī-bĄ HP‚i¦9ąAĻ°‹Į>„haÓÆRi`hWwu ~ šs~ņ¾€1ČĪżlģcź»+kgG>øPĢK¶v4‘6«Żom,ĻŽŽe҇I°ŻŅ¬l“YXŻęg]!ź†ĢL”ųõWĪph®ž`ĶīņÆZ%ŸG‹ĮĶ­„ 6Ū¹b²‹ė*rž‹6 Ķš{F³#»³L5Ö”ć öõ'¦…PhǽnßĻQ*–OŌWąHŖ ¢°K'ē’/”q“ff³ż2 ™=eĒi?©Ģ¤ńšT_ sßÕy<Ć ]®µįČt×UøRóŚŻˆ­.Ė-Ā(DkƒėFéf*°””Š…Atb“›o!čv-«›Mf§+ģģōųŁ{—˜Ŗ—łāśÖ·v˜›ŖņÜÉCÄĘ0]Ɛ <””{®WkĆ”¹¤„KIɉCÓ(åšæż_Ɵżķ›ü÷’ź»ĢLT1 ³9FkN›OµõĮ\ēhTŌhĖķ„U–V7“ˆb£…ć8LÕĖ|vu‘H–×·‰µ Ÿ/ąø.BHņ…2RōKqäXƒ4'¤ēNƇŽ5ž¶t{=|e8wbšsgįŗŁ£ł4­ļ„QŅ ¬\ŹK?(”\E!ļÓ -R©aÖCŽ—\żr‘Čõ@ĮJ…€Ķ6ĶNČL­Äüt©z™“‡§±FÓīDr>'Ö¹~gķVßKõé£3š­Ó cz±e­Ń¢.2]/ó“·/ĘæŁīņņŁC˜Ŗ!…`«¹ĆĶÅͤ\¦Żćņ­MŠÅ2žē äGį’øŲŲ(<±ux<źxžaI€Ä¾@CŒ4¾Ü‡›–“ĖÄ ;Ž8swėF„‹ÅČļÄ ńcržć\‰Ń,ŽćŸŃ&„«›]Ö6›ų®ƒŽž{ņųŸō;Séę¤9.är>ž#0‰Ź;Ü^išŸžė»üĘ«§ųęsGń='é o‡R҉ĀU’š,6_ÜZ%6Ēx®āŠL‰j)Ēt­Ą•Ū|±°…”G:8®BJDušæ_Gųżˆėt;m”óxy £Ÿ8źöžd±TM›C3ōOŗģ @ė˜8 £×õ(W'RõKżŲf–Ģ¾Ä‚±gÓķ7Įv-ŁĒsBŒGŅ,‰jŠ 'ź¹©2Ż0F Įśv—Ÿ¾/n6™ŸČÓ3‚F«‹ć:؁>’š|“µ;Ōś÷< ×Öø|kĘN“Z1 Z˜(ē™Ÿ©33QĘƒ§$Ż^Hą»{œˆXė“‘ $ŒbW¶š\‡ķV‡V·ĒNŪpkißs™ŖU°"Q»źö":;mŖ„üė”6†ķnˆµ6q˜z!‘±l4š˜ŖńįKäņ„DE’Žūe8*Õ1ؘ¼'‘ĀRŖēČžė†Óõß~é4AąŌ°²ˆĪÓ{Ž\×ĮUŠ÷>¹ˆļēŠZ"”Äq3Õ<×WŚi7{¹§Ån‚é×{@Ņø}Z“ʆ7Ž»ŠD3SÆ0S/”Į‘‚ćó“tz!±N”ąĪŸY øĢN‰ā˜ēŽĻQȹ|óō õ¢Ć‘6Ū–÷/-ŅźDi]oRŹbœē dŁģ…Qš‡b1Ž5ÕŖC)§ųµOpņš ÕRŽ0ÖÄZJÆF›&jZWo.S)嘨Uų§w>ćʝ5ęfj8RQ-8{b¬į½OÆ`-LTKžŸf}«A1—CTŠƒÅ{Ōŗ½ˆNÆĒōD•¹™ põÖ2›Ūmņ¹€f;$—óÓĶ#åx¤HΚD%Ș˜°×Cań=˜«8jްׄX˜™F„cīø.Ę&Ґ»»éföÕg?>¾x…Xžń­O™;xˆ­ö°T¤Ńź"U"³ūu•×}$kˉł: Ė«=PęųüÄ PaR‰ķ$K)čtc<ßåųGŲiuSžH’}5N›ÅU Y½Ū ¹r{•[+Ū,¬4h¤eŽfķó;!<‡é™ÉĹJĖ=×AJ…6ą*AĪ`’@GØ-ĘŹ= ąI9×{bÓ¦ŻóĮŽ7Mwwš'wōsū]Ćż¾gąŲGZw7æFŠĒÕĢq/^ŚśśĮ°/”õ8d$HģmJ*<ßOø†ŒŃČ@ŅévųÉ»W°VS+ę(.JIØ17]#—óp¤¢Ę8R1]+ņŃåeŖÅgÕÉʶ›]NW8x F!p¹µ¼Ķ۟Ża§ÓźÅ ’|ŒfBd ŒµØ](Å£•ī– Žzm¢(D A¾PBJ¾žÅ «"QŲ%ģõƒėśA>md¬³ż1 ™=-°±ŪYŻ`ÄH×\ 61­ęN/(PPŠĆÓE¦Ŗ”¬l¶YÜHx {XĪŠēŠøŽĆķÕ&¾²\ø¾DÆÓ%Šb¾už“µ傋ц™éµRāœßZišł­ bcŃQĢs‡k™©Š cÖ¶Z,®6ø½ŗƒŃG%¦VOÆ, ­f¦^E ė(ņ9w°0÷ÆQ Tc ×VyćĻŲiu9ź0Óõ2AąrśP\”Ģv³M¹˜ćöāwV7YŪlpžĢQ&kå]Ū‡ć컓µ2ļ%ér!ؔņıÅq$÷ÖEåač7C„qLŲ \AĪK¢[GOQ)ųrSµs3“ŚZ­v¢på:Iš[›GHĮgöøM)ɵ7łĖŸ¼‹RyžB“cr¾—Høv“y™¶±ĢÉ_^š‘zoЁäĢŃi\ Aą”” Žķ Ģg§Õį³Ė· s'ī@ņxt½Šc•^D»ẊS‡&ŲiuŲŲī¢IS¼\0h8Ų/wėg<%š<ÉN7YLœ”P&Iū+Ł=I“ūdXvnģęeÜļ³÷*5»ąŲ}^O“–_īŻ·öŪӞPd”ų”“° 8Ž7čQ%M"pRČˆāĒ,¬·Šq¢üōłĶf'*¾ƒ’ŠndžõF›©z‘ß|åóSU¢X§Æ"Ž“”hvCĶĮ©2ž+‰5üŻŪ×éÅ6åóŲ1Éć™/R¬G¹i’ŖGだ#ŃqHÆŪ&©Pp½ ńģ“Ļ8$ē”°ÖŠi5R0, ņ„Hx4æYåĢ2ņu÷īDžĄŁÆ?GŠ »ō:m¬°ĢŌó™žc¢^"ļ;LVóŌ >R vZ!ļ\ZāÓė›hc‘r'Źs]fŖēOͲ¾¹M­ą§Q{G*b ŽĢM–pÉD%`m³Éõ6Ö¦ŖgŽN` “{+U®,lkĶµ&+-¤ņø²°E«2;¹Å·ĪĒq^‡6‰ŌķF£ÉśÖēN䦝UW7¹x}‰Ąułżļ½Č‘ł©„Ēa ‹!łĄc²VayžōQ6¶vX^Żd~¦Né}‰‰Ä”3øZ["ciuBzaČźV‹õ­f"n#UĀC1†Cu‡CSS”Š>¾ėā(˜›Ŗ'|)%®^„Rh¶Z”+•A`.[XŸžóę(ÅĶ…eŗŚ!_(āŗ—äryŠ+Žv‰ž22”_ܑVį(É·7yłŌŪ­’ōŽ%~ķ…ćTĖy¬I:YÆoģš?~—Csuŗ½ė ĖT‹¾÷ź9\G äLĆ(ę“Ė·¹xm‰0ŒxžŌ!ØńŚs‡yž¤įG’rm@ÉT9* RŖ„[…LzD‰ģ©¶–VśŚöWĮgą^RY_’^/ēOĢrīälŅ•ž$“äūn2%%‘ ĻÖY^kėˆXKH‹±ż ĘĆ2 ^Ši·på84—°–^ÆEõpĻĖ!ÕW›õPŹ”Ūi…=¤”ųAnĄkÉJ’3’ŁW <öć¾— …L"ķ&½°—Ü`×Å–‚ļŅé…\½µD9ļsńjD/Š)äüD ¤¢ć¤3P“čoāÅ,!Ųi÷čt{LV‹Üø³ĪŅŚåB€1 żōńC” a“(éE=:ĀZ¤ćQ+™®å¹²øÅrci0ä—^Yø.łĄgŖZd»²¾Ż"Š-éŗ“<šżŠaÉÓV;ęŸ?¼‰£­v8źį(I/ éu»¼wi™óĒgłĶoAŠ˜×Ÿ;„Eņńå%Ö[ÄßąüÉœ96K1šš½d1ŸŸ®šīg·|Š ČE!\^꼝M\GøŠN/b½ń’³÷^O’]łßēœsmšŹŹņUķ čn4Ģƒ!83Ü’³ĖÕJŒ]QŠŠ›ōč’Š …$nl(֐«%©ń‡ö¾¼ĶJŸ×œsōpo𪮆ĢuźīŖ®Ź¼ęg榅#7lįxŠÄ*¤ćńśwy°²ĮĘNƒ³'f(!+;<żŌ™›øa-ÜzČ'<æ vŚXĻ!<0]-z.oßX¤٬łPjÓ8ęʃuŽĢĻP,–2H×u²D¤õ‚”ćŗ„aHÆ×ĆuĒ9œņ|ĪĻžļy¼śÖ{<ÜlāĘ0֒hƒ±‚Ø— }›ót—ž8J±ą–?zī$ÓK5„ص–·Śø{äŽū†yö±ÓžĆĘžŸŚt<*ŪŽĻGŸ’Źļ7Æ"Š©>pX°’ސŹ!Čē¹VÜē³Ē!ĖEʤ1t£”Ÿ¼v“8—ˆītć\µÉ䊊ż'p\ßw†·Qšå„zGƒŠįäńdÆ4ļć¶>Äõ|ZŻń£ONö?Ēõ‹%ĒcTZW|ŹŅŗRŖlpŚiį8.aXD9īHc•Åäß—Ļ”‚$NĀBęĆņ{>|/@*uL?ĢąšĘĆ•­ņÆKӄv«‘yHų>Žć“j FąČ,P.oµųŪ|ĻqčõzœšćÄ\…N#r©ŹŅœ‡E°Vė’¤ą÷§.ōõä3\¬Ö†—/Ģkƛ7ÖJįęÆWJ…±†:Óć%vۚNWóŚ•e޽±B‹TRd޽»ķ„žö:„Šē/ŸĒóŒ¶xžƒ6ŁÄčoŻfq³ƒ#E> ±TĖåŠge³A£ÓĆ÷‰ÖŒ|ū™S™'M,/?gø|å.?žķUR ­nL„\D ųÉoŽ%š=Ž/d< ø®C’¤ƒÄ*„Åh˜›§2VäŻŪ«ģ¶S”tJįłA&3œCBrKAĻ%M›ķ.ėõw–Æ ¤„äfęm/>{ ×Ut:=ŹÅBI޽v;V8¹0ĮŁ“Ēš|’Šõ9=i𲶱Αł#¼ņ⠔ǫļÜĘQ’gŸÜāŽŅf–¶ö5⯌?DēłĻŗŁŲߤķo8†e÷ĶĻ-Bä“äÜńÓ<×ūæļǁœ6ŠķVĒÉ<šöēŪżß7ŪŌUårõ¹+7Ö¢¬Ä Mba£‘ɵ +ń<ĒQ$IJŖ5GgŹLUJœ˜«¢-ÜZÜāįF‘hĀ0ĄXč„yĮ-Ķ@Ü"{}½æżĻ¦E)•A—\ńŲ÷pĄš^ŖG|=>ż{OŠn7ŠI‚„łkŽū¼~:bĒõņ÷ūŁ=_‡ĒaņŅ|؁OąŠ¼/7Ī3†ŚīŻnR©„‘.ŻH3;šż—ĪRo÷ø±Xc}»°QOÄh#ųéė·č>“šōŁŚQĢŹv“f»ĒķÅMv›Ż|ś!„Ž Ė›»ü‹—Ÿ$t~ńŽRØ\·¾¢åd+j„$BŖ½nÅÖ ¬įĢ“O£+mJ%Åśv‡’÷ēļńĮU¬€„Õ Ę >±6Ԛ R929>ĘŌŌ䁎Ą‡Ē§{H)YÆÕ،UųWß{‘BčŃīʔŠ!×wł›_¼Oj®[ e 1=ē˽żx“˜ļ”£ņ°Ł„ŁĮĢd‰—Ÿ=Ķv­Eµ'­-•b9ōźĒÆ~ĄÕ{y±ä&¶Ś$œZØšöõEš­.õf—’é/¾ÉN½Ć„ ^»ŗ‚t”#‰Oū É=ÓļÆšsōńšƒš›’g?dŸo0ƒÆū“Īõą5딓ū¾|ō{6ĘŅØļ†×Gė\ØEņˆgÖ(”/W<ŲBŒTż/ūh0ś~>&Õ“¢SKš¦'мtž8Ē&p”Äs2ćĮ§NĪ`lĘü?æFą)Ś‘Ę9p§·łęfÆMĢPnyTʹ “R”o ōšIļ“O{딤"Ž#:ķ&®ēS,Ur³ŽĒ >©/ŹGæ–Ļ"V~®OżarxüīĶGMވd…v«A½^ēÅ Ēyįāqо¶–F³K1ō/‡TJ>f‡•]¤Ź<7ŒĶŠ…Z'åļ^½Į^»™i|§&›ōH…PjÄՕ']k-JHntłõ;÷łÖ3'PJš«÷VņäcQ Ē%I„ė"Ķ^Õ ŃŸTf„^ī”ī Ė»w60Zć(… GeŅŗ('˜%±–Õ­f^źšķ.RRmI“åWoßįƽ%žł7žęģ‰Y\Wńēt‰Õµ)¤P+^–8Œam{—›–™k·©7ŪDqŠļy$©ęŹķEźķ‹KPŽ‹ć8y3„r2›’ōĢ‹2x°¶…Ö–‡ķŻ&“Õ"¾ļ³Ūlc҈ §ę˜£\,1==M³1]-cMBEApŲ||ĘÅu«Õ"š<<ßĻ@(†ßyń Rmi“»ō"Ķäx_¼³ÄņV ×ŗPŅēņłé“E‡·„iØümgnŃ×ŃuųtIęĆMT³•Į Å2Źqö4{ækóq8Ä;l@•Ųh>ŒEK÷Ų­ķą8ńK<}z•K€ ÅĄ|ÆÅµ޾¾‚• £ ‰ĪĒ•Č&¼X—¤ļ£į€Ķ `2^©6HKžżÅž)˜r®ÜÆqóį6qš`Q(×Ļōl‚)ūӛĮxę`s,K.×;Ye~ŗLšD<ÜhQoviv¤4^ę&n1¹¤pŹ;7–x÷F6Ņ6㲜YØņģó”Bב„7ö\ßu™šŹœ”GŒ”’…é žźÆd O>-ó]‡›÷VŁŖ÷+— ƒ€V/ĮqTīv®2¢Ÿāl…Ķź1ŒÄó”šĆč”Ó„˜?ū£ļ!õV kaącŒFÉĢQŪ˜±6Ć[ĖśÖ“Je\›ĆśŁ<‡RŅétÆTš…6„»Ķ.¾ėRš]Ŗåm²ēņŲT‘M>ŗś2Jśš›lŒ,¤Ķź™AćÄņŸ~v…B xńüqJEk §ŽNSkŌø·ŗ‹p<ܼłPRåp‘|Ų`JdŒHltŹG:żĘ_ęaE<ā™šUV>ŽrāH•ś< ~æ‡dmsńŒcaf¼@©ą±YļŃéÅx^ī±G•ńӅ`Ł„ģ$Iā­fƒńźLFĪĘŠ‹ZÜZ4øn€ČcžG'k-¾‚c³E&Ź>oŽ\E?óķČæŚbēĖƒ1šó'§łĪ×NQü!oH“”ŁźŠķń¾Ć…3óōˆŅ)ī.o9({69(KÅ ²_rĄĶ²9‘ŽŚZįžil’$¦ŻŖ űA Łßx<ŽfĄŽÄŸßm!>²A:Ģ·‡ ČWpJ5ŗīĖč«i×wi¶ŚĢLUłŽ g9{lrdre©7{C)3ńĄWō’åx8 žņ»Oį:’÷n­s}q '<§?C“¹qXŖ ÅĄćä\…ĶFÄn»‡&/°3lØĄ"•$Ab¤Ź‚ŗ±{ '‹Ń¹šˆ„8Mq„Dēۜ>®S[ĖLÕēŸż 墏1–o™,‘ķ6{t£„_¾K½ŻĖ żęL8L”CŽĪTˆ’”gĻĪrdŗ‚1åØlś#ö©¾Sp•.€^Ńjµ( Ā0sˆ‡LJ$—ż«?’cEźķ.æxē!ķ8Sm>†¹AdP1iHT>}ŗ·óŸü:Ēē&éö:üą{/#…Öš4ķ›śm›TŠr”@»Óa¬\ĪŌLƒā§Ÿ$”v÷o/ńāÅÓ<\Żāoś&µfŒR 3fŖLOTøž`%_höķ§0(Ł›¤ūX&Ķ+s?f×A^šņĖwīrńŌ ß’ÖE”’~“1Ülģm:ģłĒņPŖ-”'¹ōÄ<ēOMųŽąßÜ]©ó›«kō’üē Šlń©ßƒktśĶGÆŪ"ŠzT'¦GޟĄ×6ĆÓa÷œ€f”ņžķ&RI7@J=ųzkMīĢ©¦Zø‚“s*Å0ß_«#Õ±ā`#āČ$Ā ”’ŌšnŻ_Ķ`‹–Œ°īdφ<„²!”TøŽĢQ¹ņÕ@ Ę|äFį³>tšu»”ĖÕüyĻ¢īžā’C›å=Ÿ;hKņhT߯vŚ6—VĻͶH±6‡‡ ȗ:©ŪūéšĮčuŪ4껄aČ?ūęÓ¼p~O©A”ģ{?żõV—ļ¾ų$„bČŚvƒõ­&q¢‘:”£»üõ}r1 ‚0Ģ tĆ.€$ÕTKßyž8O›āļ_½ÉV­9X a÷bMå‰Ię' ¼ysZ3BJ0: ŹGgŠ,L(„čõRīÆÖiõĪ˜bk·Ćņf!«k»üć7yééĢL”*+ā'*!‚"Ļž¦ÖŠ1Ęp|¶J¹ąsoe›f§Ėł““ŗ“•"vc-“će¬Č‚s«x )@›©īÜ_åüé#ܼæL„ąz.µŻ… Ąu²ĄnrčXzŸŸĄĆõūė4:¾ęŪ¢aóŃ_õgÓ0ŗnJA”4ĘV7fłś:Q{—׎’wŒ—<|N?Āwæżā^¤1”ĖeV×ÖH‚ßó>m’ēWżR²¼¾Åķū˼sķ.Wk8~+›8ģ“RĘĒRÖw¬×c Aš•!Ÿ>•5vČįČęmĆ-^=&ö7gÖbŒĪ¾Īj< ±#©]v;Ę:X£31† )‘Œ4H$ąął"+ĘŅ„łqńŹs,ĢĻ’źŒtß/†7Ėüģ,Ė+«,,ĢŃh“h¶;Ÿl¤F ‰ĒmՏO8„K4ēĻēÉÓGłń«°²ŻE"1Ö¢ņ²ÅQŠ‚?ŌØ’ŖéGՂd.+½æ ɉźBą”Źl7žżßÅu|ü°€’©äĄ°m/ŌD"Å^XOæļĘE½V؁Yš•j>j<`ŲxdłDēįČp ³ŲjL6±7 ¹F*„k Ļž=Āљ S晬y¢Ķąś;Žds·Ćk<¤§-®üt)Æ+D>ŚK!Ł­mā°ˆ6z$6ŪüÜ䐽¾²ä¢}æłĶŹÓ8ŠPNVŌĒ6+č×kĒœšNŌC)—T§|Åóķ'ń=—Ōč\6Öņ`u“r±@č»—…J9äżŸ’%N_Öš]ÖĒ‘”Ÿ$5„Ē Oįģ‘*ÜYåöRD“ĮŽĪߟxdĆšE©sŠ|°wKŽē÷­1fĄG#š³aĆ=„„õļiĖčĻ6#ä¢ ¶‚•Z’‰Éģ“<>TŠ;l@¾ōIdOvŅ4”Z ųoæw‰É±m,õv­5Óćen-®ć*‡÷n<$5–wn,ņ`e‹F³KµZįĢńiŽĻV’4e²ņ½N£-Œ<Ž»½ĮÕ[ø*›Š `ec‡|£Ē7.äŲl•ł©2cŁ£Ģo£ĻĮ~ÆÕŗ¼}c™éj‰Wž;ĮSǧųėxWUłī×Īóź{włłė׳ęÓ§8öEßĆq¢9:]įęĆmķ˜0šøæÖäź½Ė›c»Ń£ŗ8R°“±ĖĖĻåĻæż4Q’ŠķÅ“;1c„ß~ī ­něW²²Ócyū!ƾ{7#“mAn/½@ÆS',”3e”٬­btŹ­åщČtĒ„G³ńź»o²“^£ÕMN@i¬šń>„·Ž×{ŻÆ°‡A’×@ą„ņk»5žę§ońķžąģÉ£|Ÿwo.ā(ō»KøžĖ·ž}‚n”šśĻ;Ā/޾I½•R-(Grįģ1Ŗ•"Ēf9¶0‹Öę‘ń0h~Ņ („ˆć˜b±Ą+/<ÉsēOŅ‹RšķåH~ųŚmn<Ųą•ēO?v÷UlFö@ły1 ŅZåEŁ”ŗßĢ‹}īåłü2ßΊ=·¾č‘šĀŁĢ|5š½škõP5± Źy Öšļ¼pŠó'&Łmöxø^Ē÷ÓćEfŖ„¬Š3™ł[ߤU ‰±†åĶ&o]ČŅz#] a¦Ÿś{ŻSĮī'eēüĪĪ*„± ĒEŸ3Ā­Ģ3ĀuŹÜ›| ”¼B LS-ł_;·@/Nxķ½»8^Ę“"ęŅéY\~~ł—ž8Źóē“¤zĻöį£b²5–ń±āą)Żäg“¦†±RȋN„÷XŚh’±1ƒž”_\xØx.فßIėa¾)k4ĆÄXĄäXČÕū[™ŗW¾Ī’R ‰N ˆŃx2šŠžą4‡›ÆGo¤é s†‘Ķ_£‡ŪO;üo’÷/­ćøŸF†¢±³ÉŲÄōēˆ•ÄQ‡4I(”ĒŠRŸł!%ķMJ•‰<ŽčŹRšõJŧf‹xž‹1–(Šiw;üŁĖOswy“æ’åūD‰įģ‰Y¾’õ'łŁå›ÜZŽę›ńŻŸDČ &5@hL“¶\¹³Ź×Whµ#D>ĮōĮKŽņ̹#$iJ§—ņ“Ė·XŽlņ‹Ē9µPem»Å7ÖHÅ¤ Õ¢āÜÉyę§ĘH“˜n/³SoņƒWžg~jŒ„õ+›5N™¦R1&ółøyoŸæyf/E¤ QÆĒ¹“³Ü^ŚĪųÜÖ¢“˜ū§Ļsśč ĘXvm.æ‡Õ­:^ŹN+Āó½AĮc‡śÅٹ•‚ŻŚ6ÅRyóčOS²»Ćb¬%ŽbRcńżÉj™'OLÓī¦<Ųhć{^¦ś¢†ō~2ŲS›'ń|Ņh F§h£‰£˜v«0]¦Ę8utŪK[,n6˜+E1­^Dčˆ“„  „Ģ6dZÅ=ā$“Ē‘©Ē¦xžĀY¦'Ē3¤CØÖļÆV×ÖØV+(é$š8ÕģÖ;kiG)Æ^yHĮt¬«œ~ž(1ōŸœœ”ŻØQž˜ółÄ+¦Äq× ų°Ü°·NŒŖų1„ś ĪŃyö ’Žße#ó©ę4”P§Æ’"4!˜ÕŽNŒ­Įh6G \%(ų_æx”éń®ćą:’¾ŖYNææłµŒ’”µ­·¬sćŽķXS(ü ÷nqŠ:ĮMJ}ųs õM*Ÿ°&čæ_GfüĮrč¢ t"NcšŹ•)„Æż@(Ļ>Ž‹1&ƒ5[ĄjRmųö„#TJÓće_Qš=™źāu…Ō N¤„Ā+#‹O•‰iž$mūł£ÕØeu÷ē”?Œ1D6®ļļŁRn@¾ŪģĻ:M‘ŅĮ Å{w7>Šßuų?’ö5ŗ½?,šÆ’äĻĢrłż»Ü[Żaa²œ‘<Æ?dl,¤„Œ•|<×yDZš‰cScx’Ī›µfF”‚­ZƒķŻqę&Ē0ž‡?}Ž•ĶĢlm~ŖĢ™#“l×;ÜZÉ$1k˯޾ĶĢxKēŽā»‚ļ¾tŽ­Ż„‚Ēd„ČD„ˆ¶–(NqLŗ±Ó‹‰Ó©ĄU’DgÓ&×s8{¤ŹŻåm°¤ĀHÉæū»×ł_žūļ2Y)1>Väßy!`³Öäē—oqćĮ:Źs±Ę¢”Dk“˜ ×ļŗĻq8{r–3 “,oīā:Š“G²óŠīÄ\ææĘāzG9DQʵ;+įįēŽ©"—žr_ē²l‡Ŗ<¤‘#›„Ą3“*k,+õ7ļQ,–˜ĒXpCŸ‰Ā(ę«ä~¶±€Ųw\‹cVÆ®ńę•;œ>6Ć×.ženzŠźųŲ`zyx|ĢI+䊷¬± !¾ļ3?UB*™9·cŽøŗD©ēÓh¶ņßG½ĮF·“;”CŌė0^ĶeŽķžs²—TÆ1&{ˆ V)0  c%‰rbąb­&p ”‹™Œ4X|×ć/’ō„¼YĖž{­-éÉ|¬TČć®ųŌéaB@½Ła{·Ć‘Ł gŒ³Q«Ó‹ķgÖ}¢ėČ^śųhóaŒÅ‚ÉńZ‡N’²0YąĢ|™ł‰ĘXb£™/ņgß8Ēљ5^æņ£ÓeĀĄćōĀ8_ŃhGLO”‰’”ė¶YŻīŠKō`¢¬„\™y-#‘Õ}Yåfc'ć•{øłĆäsJÜ£AĀC·Ż¤\ÄhM©Tʘ~ĄtILÖ± W2?U$MS~śśM.š!ŽĪT˜Ø”i¶:ōā”b`š½L$4N’\k?ū™ÅŠē™³Gš]‡å­ŽRō¢˜Z£Éāźćåb蔵e~Ŗ2Q’²²YĆhKč»H)čČ›Ķˆ;68™cR£TņÖµū$IŹōD™o\:C„ „ Ó9yd’wn.S.X˜.sgy‡SG&8µ0‘}~~‚‡k»ŁŠ[:ĢM3’`ž«ļXī:Šb ųĘÅ„ĻN£ĶŃŁ*‹k5ī­lS=.žš'TGxīā¹L†×Xž{ņX†ķoB,œ?9K/Õ,mģņ«w§×QCøČ óu§`±G›Č`#ŅŹĮ*ø™·BcĀ„ą‡E¬1{}ć>¬*«ø²$«,Ö¦8®Cąū¤é·VŚ|pē×|ē„'ł×ß’6ntų }ĀB:՚z“Żz‹™é ꦧˆć)õŻ:KėuŠÅїd8=āĖėņqŠā½ °9ČŌ“?½e¤q‚Ľ.QŌżÜĪ«™|ØėŗŸ{’ńøę£/ŁžźkR–‚'xńÜ/^ϜžāåēO”¤ÄU ×UDqŠ’Šf§Ēoß¹ÅK—Nx.Ż(kQŽäĢŃIž>»;”g„Qc²ąn¬ÉM¦²"Żun=ܠފq]?żśi*ŀ’üĖė“<ŲjóĮŻ5,†B”„N^|jõ½ēˆ¢”Ō\G²ŗ¼Åßžć{l7z›³\ŽŲāŸ?˳ēŽå#G8wr†žę:o\[ĀQ’'ŽO1?S„ӍöpJ”ϟ¾|1Ū äj:ĘX¾ńō V6ź€ef¢ĀŹź Iš­×÷K‰ÜYEŁsyęĢ<愐’ļ··é„b€…^=.É>*Q:“«łÕö§)yS+!2G*3£‰lĻĢ(W¶É]‡“5©Jgņ½RbI1šņęMT½ƒēĒ †JqśÄ1„µüģ7o²ø¼NbO:Āv½ĖņÖ.ńņjķ›»=v;é@oę«>L9ˆtŠm7äN}tĮEĘĘ'B~.ą'‰ ×ėdŽż|óÅ^‡ī½Ķ‡1š‚ÆHĖÓg¦˜­™›,Óé%lĄ…€Z³C£ńė·nr{yG9„a@©\AI‰•aŁū䀳#‡ŠdR0ĄpĮļ­?ˆx.ĢW¶ź=j;5Ē„XĻ&čżmd@c iŖq•a1¤ĢO—ų£KĒ™ŸĖĪ68Įb t{ńŽńŻĒŸw8ퟟTf'*LVŠl·Rn/n?V ł‹$ŅšČ†F€Ö†ŸæyŸVdĮŹ„ĀĄäwOž%S¶/gœ%Ēg«¼tįĒęŖt¢$“ž7†ß^yĄĶ›øžĻĀdĄ³O̰Vm3?UĀq$µÆ_[£xÄi&;­m6“ķ‹UęĻĆäĖ“¬h>Œ1tZ ŹćSXmśšˆß rˆT’;xA€ś9'Ąpwi‹V§‹N óÓcœ=6ĶāZSĒ&yõķ[¼}ķ>§ŽĪP«·Xݬ‘Ėx¹@u¬Ä©£ÓTĒ h­‰’„Z£Ką:¤¹‚HxDqŠžńĶ[(Ē„Tp(ų(¢øtcKQR¢Ó?(ŠétXßmsy‹Äė:$Ś0Y­[—•’ź•ó\<=€¶`SƒÖ–ļ½ųo\}ˆ1‚÷Öxé铄¾‡±™Ļˆ X2ŸŹEI:Qb+č¼ńŲ“*z“Ńģ6#n=Ü ÓKP^o">¹ńѰc ż‘%ģÜV1’»Lźå`„ΊÄcGƹGXiVbL¶„‘RŃNRŽ»µŹdõ6GēgsSĘC/‘›GQŪ­>Ļ\8Ė/ū»‰Ļż„ b#ń‚1ŽĶ–™N ģģ.2QņŁlĘ_ķ>Ņ›į āķ#ś›Hū¹œā¾€«Ł–~žMŽ€cf†Ķ‡Ö)Ć OĢ%šgĪĢć8ÜjϹĶū„{ĖŪüä·WYŚØS*—˜ØV3O›‘Cī#óyü=¹!%æ/ĀīA$ū¬Ų~÷ö:IÆC©X!( ēšõaz}³ŃšRؘ(9ĢNŽ!-<žH&q§Žwń±’šeŽĮ'©¦VošĖ·oroµ‘Ŗ³uŠ`łųaJX÷R’¤×÷IæVŻÄ¢Ģīo,ŪM–·v96SĶæ>Ėć»Ķ“•2Q’¤š$ŃøžĆłÓs¼žž}N™BHA/Ҭnwp\å*V6ėø®ą©cSx®¤Tš™®857ĪX)ĄZĖęn—›‹;¼uk#G|„”֐ÆBb•œƒ8źį(k4&O:—I“6›d ³g,‡5Ć@Ÿ‡{+ “Ö\{°ĪWP«·˜/Qot8¶0Ē/߼΅³ |ó¹'p•ƒē)&ĘĖŌ›mī.mŅéŬnÕyėźC&*…lż LM”ŁŖµ©5{øžOąŌ[1’ūy „¤ś~ĘgPRb”B(ElŌ{ü‡Ÿ¼G7JHŅßu‰ā©\üĄĒwæxó6ķvÄŃŁ ¾ē21V@Ū WśŠ(…F'åżK<ūŌqšķćå×srCĮ”Ķ­„bĄx)Dˆ¤ŲÜŃŻ‘G‰Ģ PJW·˜®ā8¹Ł–9M5ĶV)$ÕrH#²ƒ;"öȄī£ū(,Å"2ÓA‘ż®Æ®„”ĀŲ!nĻ ³Æ"HGZµC<¶‚b©D£Żęß’šMĪ,ŒóŹ‹9u|>ƒ |śz’Bd’—s3Óܼ·Č™G8uü/>wžæ’ÕU®=Ų¦ ௒į¬8R”\)żĆĄö˜"ī£ĪłĒQ:lŒGcÉ^^ƒ1)ĘhŅ$įĘŻ¾óŅ“(%IreŖA± D‰ęįŹ?zķŽfjr2ƒœØ~R#Üȏšw8 VżS”ųö’›aœ­„ÕŒU&š<øõįĄH ‰6LłĢT\’8įō|…éj™^œ>&.’įÜN.]™jĆŹźWn/qćž:N‚ų8ŽCč9ėp3÷aĻė~8ń?õł’8ńvŹ–mŲ2”•Ąóøž`‡ī¬ņßżÉ%ĘĖ!åBH»Óćæüü¾żĀ96¶Ō]jõ6Ė×.ž$ =^ūą·n#”K©XÄ÷=„“"Ė×ÖyūŚ ÓÕēOĶ0;QĀsµV¬„ŽŽØ5ŪÄQś‡Ę=?l@ß„ŒĪN³AX®E1*',ūÜĄĮw½8„މLė\‘KL^pū¾‡µ– 1ZSšI“f~~ŠłŹN-LclŽMRZķ.×ļ®póĮ:o|šn’ą»a°ÓJ@dœ‘ŻÅ]\ߣX,¤3=Ē%(‡Ē‚P”ŹŚ\‰) >‰Ń(7ƒŠn@9ōˆM*%½Tó£×npl¶ŒTŠ‹'ēˆSM¢5½X#•ƒµšź•ūlī6٬5¹tö(3%„,®móžĶEž?’ógŽ盐4Mń\—ŌW·±Ž”Š$Młū_½Ė×/avŖBčū¤Z³Ūģ „ąĪņæxū“ćc„a>͘\;ž ųÖAö XŹp³aćȁ‚RßįCī˜ģD3 < »—ƒ’ ˜R*ń\—„Ķæ}ė=¤°™ŸżŹx{+GQM£oV•ĮKĒA)…ć(ŽĢM ü-Žæ~‡r(¹xj‚ķFLbå‚Tņ0¤}ģ†d’u \• “=lB>äŽUØėiÖ&ĢTž81™™ š”ĀO¦ĢŌ„Öhópm‡»ĖŪD)”J…\Į-ū5D–r)䎏{įH±|R¼—Ų~°`Ąć`@żĻ ŠRL¾¬!‰#¢^?,āx>ŗ/°‘“ĮG`K5„Nd™®(×¶ł·ßĒQt£ä ”õ»\ČiBHĶ6ĖėŪÜ]ŚąĮŹ[µåR™ÉźŅ qŻĢøÖbssÅįŌĢ}$ģżš¼=¼ŌJćĆkū˜ĶąG7£ŪyöźĆž¤¤X*Ä’ń§ļ1Y)pr~‚f§Ėƒ:·žę7Håą»®ē"¬ą?üų]'ćDŽW'P£&§Bą8P.0Ö°ÓJłŃėw(….ßAJ‡T¶=ß§PI’īa:l@¾d eŠ|„5t»m‚Šēܱ*Žߑø®Ąw„¢O¹ą±Ūģq{i›Ķ6­nL¬5Ö@!tš]E/Ö“:qfī%3%ؾIŲn³ĒO^æÅ‰¹-ßĮK³±^k²¼^§›hJå2e„¹ƒ(vŸ.’`ś5‚fV4˜däE$VdÆE°2ƒ™„:Ūź8 R©äøŽ`b¼Œ«īÆ×¹v{u€©/ 86EI7Ņ\ž`„åžņ„bFjou#””\¹³ŹƒÕI𢵦E” !Ż^Āņź ósøŽK£Ż„Öčš÷æ~ŸÉźå"½8aq£Ž#$V9ĢLVQ¹œcŸü.`Œ”YŃ~3„Ēį‡jD²3+³a³©£}ŒDō0XĀņ»Ķ~#óĻ9łwvŒ&‘.7ī®Pš]&Ŗc”Š%“Ö_©"oPĄqEZėl»˜Ģļk%%žēņ`yNÆĖüĢĻa»ŽäŲ¼‡ē:ü§Ÿ¼…Uc9§ÉL„G՜wĄQ“š¼Š9Cą{¤i¦č¹ŠķŻƾs›;K[ŌŪår‰ ‘ŹĄ6…H”ŲrĄ^8čVśČ}.ūŁĶ  Ćū‹ŪLaØoå!öŌ¬RģmĀ‚Ł&<Žŗ¤IBQŽ‹I“A īĻ],VR-I“˜„õˆKO%NÓ_å±ńčo=ā4åŻkw¹zū!WoŽ'J5ßåEžź_žĆXxēś2·Vjh­É2°ĮČĢįÜčs?9Ä>¦Łß„X»·zŌ4#.ę#Ļ‡Ÿū””“#qĪ•”}oĻȩżqm!a|lĻU„¾C³a,(!)–Kł=Öē(‘s8å`PjÉŌϤļāycc餣ó%„¢:>† kõa,?l@¾¬Ie(ć×i7˜ØNšó3ĢMŒ% }Ś@_.q¦ZāŌü8;m–6ėl×ŪıęÄB•J1¤%,Æ×¹¹“Mœ¤øŽ3ĄėAČźN‡»+µ¼č8Jąø~P (ȁé×A";’@ĞĀZ ¤ió12bÄDĢ’q4ōĄČŹR ¦ĘKģŌŪt"«LAj`q«Åd„Ä©…I ”‡+%J ķŪ»m:QŹX©HÆgŠ`ŽĀXK±˜y¬ķtXŚlä„Ģ øiLG9t"ĖŚN!ŗ8Ź”P(¢em»ĶņF¦ęūH‰ć: ©ņµ~n*Ų‡"æ£IāĆąX‡$Šč}’I²%‡re¤öž”°ąś¤AˆNĒØ·czݘJY õW°€Śķvęl¬ćccø®‹)š¢("Š"’4åņ•;<>Ž”„`·ƒĒsĻ߇L‰‡Ķ‡ĮXM’¤ō∩²Ļɹ)ŽĶOų^nJj‰¢”ķŻV·¹·²Cb¦¦JŁĘC9ŁÆĮ@ihą†ŲßDφyLäü>mŅ=ʑ¶oų×8āčvZŹ3[›É+Gå90ĮjKž#2wm|I72%©·»Xc©×¢8āŲL‰[÷W)‡Ē¦1ÖüĮÅ­¬ł¬mīrķī2?śõ{Ä©FH—3'ę‘°Ūhǚ­z4Iq\™KEeĆ3¬ņBŲk¤;Ä“Ą°{Œ®ń#×qOī’ūóڐĆj?Ö=.ĶüxH½“Љ’¬§+4ą{^žz4Ļž›ćŌü?¾|‹Õ.Ž28Z"¬łč£5džŽ"k’­vM”²8żĘLöłLvą$/$}8X:l@¾ŃČGk1:½8å—oŽę[Ļa¬čļYyZkIuö ĪĻT˜ž(Ņė%hc)—|•ńOž˜baŗĢ»·×XŽlāū.*0~ą‡ažHõ•Ä2Ū łXFL›rŹ\A*ÓBw‰ƒēŗ8bdf†›k5Eß!ó‘X:½¬įÄĀ3ć%v–·ŚlķvIóEkĆsOĪsöČ„‚‡ēŗ(G°Ūč°¶Õ¢Õ}—8Ö¬×Z\½·Ś/µĮZ\Ļ…XąłŠ±’Oą;łÄķ-–į`:“ź­-ÖJGåĮ3;éI”’rT.ɗMĘ]ĒÉĢ…ČW÷Մ|üIŠ'KP¶Ļ É×Ö‹µ «,¾Ę×v¹rė>årĻõ…÷W­ł(•Ė„A@·Ńéu(ƒgŒēy¾‡”Š OœĪ6…­[»-:1ģ6 Žo)JHĮ>ī^/‹C(ŃǾJ¹IÕ!Ųśq÷ļ 6ōMf0XšēŽNóŌ‰IŽĪŒÓéÅžWj ­N—ė÷×yóś"‰ ”R(•Ē5„28ļHģ6 NĢ6‚$ˆ¢¾ę°`»ÆmUšƒ!,Š:eļÜ$mbz½.Åb£S„Rø”‹5Š‹"ŒŃ€FĒ):ōbŠZēR©Ł¹™ŸĖÉęÉŅ㣮¹ėfŪ)j~łę5>ø½Dąŗü›¼ŒÖ†•m—×ų۟½ĆŌäR&•/LŃ+M6° ¾"ę !‘*»ęjŖŁŽfdąŸBēKÓ4/Ü Ęd°į 6283ū¾#¤Iū!ńyš§L‚)r%6!²#õXI³Żcm«ĮlµÄd„„ė(6ė]v="—‰–ƒŚfJhEL£Fž‚”)gŽŁ‡ ȗ"įōʱō:-@į|Č=Ū»„¬}DāG·16%ōŚm”ćphu{H™A†”ģ?£>Y¦šĆB›3Zm̐3˜$c ‹%Lš¢!NcR“A³•ćŠhG4 łžĆf†«X˜.17Q ō6jn/nŃhwq'ē˜-ŅŌšŚūwY\Ūa¬Pę̱i_qįŌ¬łŹĖ“‘Ī»ŻˆūĶÕ¢ĖXé(nVHöā„™j™«ŪüęŻ{l·bŹÅŅ łPŹŁs’ī‡}Žž~”0~PCbŒ¦×igpå0?įsza–V·Ē•&­^šmą…ĄŠ\Z5ĶČpś :ĪT „róf>ŪfhmŠ:Eė”$ÕĢVC.šb¢¢D“„kQRą8ŠŠu1˜L¢]f±°ÓS„’…ę½õ¹šŽ£H’”æłį«ÜøæFkźķSÕq^<5ĻxѧŻjw-'ŽĪ1Yē‰S–TkŠĻŹŚ6'ē+Xäžz}@ÖŹŌ~dnč£ŃĘ"ūŠL6sŌ}śō4 ÓeÖwš|‡žę*/?w†™‰2qjXŽØaqs ƒN-½(Fė˜å:ķv‹j9äŁ'S*ś²D±“¾Ć/Ž¼ÉŹF™Éq¶=Ņ4„Žģ2=Qi®Ä¾„ ÷–7łéåtš}’’gzģŗŅ4½gm¼ĖĢ“ŽĮ{Uō,ļŪMEk4”ZŅÜčJ”’€.t”ŠUGH”éˆiET·ŗ[Õ=ÓÕĆ2¬"YEŠ€ į=ŽĪvkébļć2$ˆ«V%HsĪŽkÆõ½ß÷š(i=ŸäKg883‚TŃF 0L~šó ¼c…|ĀąōįIŽ/NbZt(IIĖ¦ŽmņĢįi®Ž^c»Śäܱy4=Ž®4A&iS.¤˜(%łłū÷¹µZ% AvĒŽT©KūUl(„ Ma4P‘­¦®K‰Ū­õF#>°}?>Ÿ›j÷zųž‡T Ć0XZZ"›Ż–ėņó·/ćŗŽc£ė‚÷×yūĆ{”ŠilÓ¢Ötiya$z•¦mFśŠØ+ææūųtÖī`Ŗd,:C\Ļć¹cS”²„œC1—"b£Ž¶Ė¹ž€Ė·Öضü|˜č†[ķöŻ®Å~ū•¶Ė`£÷ļqSČsہå$q]—¹ņĻ›äĮz…†OØiq‡=ꌘ†FĀ6ص}¼0*2M]ĆW*r½R"N-hw“¢TĢrlqš”c1RČ`Ūaą±µµeDyZ*nVv<Ÿł©QŪd¬˜ėƒˆ.%Ӏ„m’Ļōir…t‚V§I«å39–ćĮZ¤…ģ’“•ŒtF2hć m×Ē2tĻŽ¢ Ø·¢Ę¦c™(%)å“,o6łšö&m?ĈGĻÄŽ,Ÿį³«kšOMRcōooŅl‡Ō.w–·É&MŪĄ¶Lri›ķšÅ˜ŠN§ 4Ć聄å{D Ž1.śś=Tż®9ņ;ņ”hqv—G©“šu''ŲZ2É}“XÖ!³-Ƕøuw/ŻĀŠ5&ĒJL—ȤrI,#Ņ0\»»ĘķåNĢŅöCī¬lSkvhŒSœ.Roł\淉“;.åRŠ#sčē@!½¾?zėV€mė GĀętBē«§rwu‹÷olsć^•±|‚™r|6‰”’j­E«ŻįąĢõ¦ĖhĪa»Ž"RI;Ž|¢ÜĖ4Šć.ź6ƽsƒfG‘HŲH)1M“Ę88SJ9·Lƒ_¾ƒw®Žg~r„“0]Ī£ˆŗM]a|ļ°ÕfGŁ®ÖłŁ;×ųāńE’NDs«·:l5ZŗF!›äĻ ńŚe–¶ZX(t ˆ'!ŻFŠŚgÓś“ŠÓ}“Ų‡ĀĀ4‰T†»ė[üĒü”ó­—)d{ĮėŸĒ²Œ§…B„`¬”C)b°Žäų”9.ßZĮ O—Éā˜‘ˆ÷ŽZ…J3²ķŌ Ó6Ńu½g™¼›3ż;šń»'¹v{Ų^ŽG4żP2$m N£”‹Œ4¤”X†9%ł!ƽsÓJ’L$Ńu݈õZ8«]ąc7sæ)Č yŠļ»tZML;…céSw—6ŁŲ¬Po»ø^H»Ó!P ĒĀ4tŠœ!˜MóŽĶ”Ņ0 б׫ЋĖ\ŚāKēf¹»²Ćū×Wøts‰ńB‚# ćČšń÷ĒĻā½6uŸ¼õ!¶erhašSGŃ4 Ē2Ȧ£<.‡k¦E:¦Łjį$“ż° d²…õ»ņžT¤©”Ī’WŸ=B£åŅl¹čŗ œOF“c¢dqĆŌ#ˆPä3Rv÷Õh„ R +ÖTFēéx)ƒcܼ·N³#QšŒōĄc½±’¢OĖŒŽ‡Š!čM$B%č SÓh4;Ü]ŁF×5LCǶŒŲhA' B|/2Ń ”Ō€X~2@ ŌjšŽRņ·bÜɧ€ģzż6ÖŖQų`2£ÕlšµēžĮó‚GŽPu]ēöŻu~ržC„€s'0ZĢŖ1ō®{ˆÄ$·īÆqłę=O—yńŌ,?ąĢ”2–mī·VŃ¤Ē §ę™Kóś…;ģTklm×iMzßon²„„¼yį·W*$“ɾX(¦MN.Ž2š·)øó`“¹‰<å‘|¬ Ė2˜+p`:²4m4šńØ3¤Śh‘t¢Ą VŪåµó—©5;Œ²¤“—oƲYsI$¢<?)ęęŹ@C© ×•nu\^’&•z‹3G¦Ič£Å,A¢iū„٦Įх .\½Ē_żķ˜Ÿeim‡ķ:c„\Ō™®3 IDATarl®ŽYåź½-4ŻF%l 4„G D‹Å°ļśĆŗŒOz󜉘ö t é…8¢ĶĢdž+×ļQo6)ę>ŚążsŠI‚Ó4 „c³±]åĪŅÓå"§Ģ²Yi01Rąå³‡ql“[Kėxž¤ŲvY«“#xiti+Żīń°īćwąćwO~śŃĻūč‚Ļ XœHsd¶D&iĒAƒ}Žūõū«üų—ŃM‡D"n˜=ŹÕ£€‡5Ά÷Ÿf£†ķ$Ń Į‘™<§”iu¼ŲµQaÄŁUµ†Ē…›kT›>ŗ¦Ø¶$µ›+74<”Üeįöży>Čūҧˆ~„.+N,–)fStā ¤ŗ®ŗ.H: Ž»|‹æõäźĶ%N(c™FÉĀexœŻŻL5t]§ŃlUšL?ņ‹×µøČłü鳤 XŪ®Sk6#»’hJ‹³_T.÷H®w]Ū_EĻż*  ŽĻQo¹Ós“E¦CÉ‘Łˆ‚-U_\®é:wī-¢bq­ŹƒžF繈x ŗ®cZFlnO¹l&~¾ĮĒ^ą”>āk†ó]žÄu1žäę9ō†ōyj_äüQĻēī¦Ēo„Łl`;)lKć›ĻŠt > ]§ŽjóĮµüüŻ«,oŌČg·xžĢįųŲĻi“˜Å4Œ8Bą{> ų곇āƒ#”)`j4ĒX!Éėļ\„Õ>N1—$Œm€C)™(1VLQmhzwG„Jps¹ĘVåNžgr4ĒL¹°oēDJ…ih„RqćŽR)6*6Ŗ ę%lĖąļ~yÓ0QBĒõQ7/z_ŪŌ)dhš† ƒ”÷¬é:¶” øpķŪ[4=ÉÉĆs٤f›k·07Yā»_:ĆŚF…ķ:#yüP¢iŪ6Kd+¦14|Ņāū?¹‚ėŠXKü2¶'¼ƒcåG9(«£¶ ķv™BšnDįc‹c›” ©UŪds¹Ļe!Żj6™œœˆ;s„–©įŲ6­v|ł‹Ē8stž‹Wļń枟’ÄéĆsœ=:ÆYmĄ!Nōµ5ŗOć>žīć”Ūę>“‚OšL|ĘĻ”=™ńR)Ś®O£ŁāäB‘B.µē¼µLŠ0tM迉ˆ-ĘEd+*>e°>¢ĀR†’v£ėMZŽå0’OGŻķ要© ¤ ‘J"4AģŌŚ2I\·Ō å·ńż€3‡&Ļ[ä²YZžä­īråö*?|ćCŽ»|‹lŚį¹SY˜{ŖŸ½nNJtļčѤ>š¦I2™d{{är¹žä±Ļ‹ M}‚Ļßżļµ–K&ą÷_9Ķ[—īqžŚ&ŗ­!DŲ Ļ”H„dØ!ż‘ Dõķwe(ł·_?ĪņFSŹ$Vļŗ8¶QŻ… ŖÕ·¬rµĀčH Ė 99_df4E­į2>’E×O²U‹2ĶŖœŗm7ß,Ę*Mč=«qõiļ•śS†'®żģ–}‹ōŽ~£†€Č“ØŒĒ}€öƒ`CD£ÄAŖĪŽ‹ĄCÉ£ŒŸ”).‹ļ¹¤Ņyž=6Y×Y‘(8²#ÜßF*Åėļ\ćĶ 7š„ąė/žäå3‡H§œžsÖ~_§ Ńā jréDŸĻ®śĄĄCŽĢqńź]^ē*æ÷•³8¶5p’t͌šĘŠu„Å#[]CÓu6k.o|pÆu•# e¾÷„“†¾G\/Xq˜`Ō™Óh·;,oVxļŹ=®?Ų² #źBėq P7‰Ü±Mņ)›PŖ}u”Œ“$üĶg)&42ŁC®Ż]„Żńc*ĻĮé_:3Ė;—ļ‚RL”RŒä\½½Āõ{+[œäåg²¹½…©<^>5ÅĖgęųńŪ×ųšś}“UŲŁišēæ’£ÅÜ#›¶|ē')ņ÷Ūq”ŁlŅj6I$Ÿ‰÷d:õżqhnšė6z2žŖBĆŲf9rČśųgŗ\¤Ä÷=žĆ?ż‚o»ŌBß÷©×ė8ŽC:F‚j½Å_żķY[ßį„sG™-ąŲ}G,„ ZkńĘ{×ÉdR“uLŪAéQ Æ¦čŃn…Ų;[Ų=ÉéÓ ÅzxŲNĒIōˆśT×JŌĄųøµķ%ŖW‹t)—R†‘¦k`1 %QܱŲU«?ž¦ļĻžĒæģŅ[õpč¾šAŠ””›)„h·˜–¹]ÄI®Jv©;²?b€'øū¦Š}ńå#vačG®I¶!ņOIü‘7YÆŻ"š=ģD²7&Gh¬o5xēŅ-6¶«œ<4]@×–a`[:+›U.Ż^Ē—žpgiƒ+·–Ų®4™.H86Ļgu³ĀƒÕM,3rÉśøk“ēu«ČŽ÷Ōį^:{„l*±ēŖ›¦Īx)Ķ…ė«Q’øŠzŚ Ż0цĮźfj£ÉģD‰ŃB†_~p‹WßüWy™K7ךCA*iš_ē‹Œsä³Iž9:ĆģDž;+;ųa$jŌģ#e(É%9{d*¢`=ÄUć™cs,ÆWųėæ•jĆåČāō^zŒDœ ;x?5M`¶iī¢S ŪĀõ|nÜ]įÅgbė‚»+یS¼xj†éŃ ®ē³SkÓĖdxÄŌ†Ąww6ŸlqŪ#rą¶ź|éģAĶO“N&¢$ŻWĻ£ É?’äé„Īādž—NM3=š”Õj#eȹ#¤mWĪĢ2^JsłÖ ļqęČ Röײ”’f«…¦ėd²ŁŽaYG'xįĢa¦'Šūź@mŪd~*Ҭ>XÆFY;^Ÿ×Ćyø±Āņf 4“@ N.–9upM@>›č­µ\:Į‘Ł1®ŽŻ$(ŅŅz=Ļ„Ói#(ŃŲ¢œ†¾°\‚óćØŠēĄÜc#¹=ąU<”u €Įz÷įķŲŗ&°l‹„c!xéĢ3cyŹÅȱFʐ{+4mW“SDœPß LÓz"a†{e¼.5‹®ßēĶw/sįŹ-~śĪUŠ „nšķ—NŅģ„ӓ#‘čiķŹ A£Ń ™LF|é„M1Ÿffb”‘B–ł©Q:žĒŪܤķä3ILSGŹČäAJÅ3GfŁ©5Łix1цƒŸäµŁ>āI˜ļv°ÉßXyõi‡ļ» šč^vŚ-LĖŽ`tLÅŁĖňlJeĻ!G†AƬ”ģŸ)C&(jČ*ū£ļēo€ˆŽh:Wn­šī•»Ģ–ó¼{õKk[ĢŽ—Šu½÷ŚÓi‡ YŚØaZęŠzŽćÄPąÜī=cčœ*Ūėd²‘–/Šųڹy¾|n‘¤c÷ĪīŻ×N×4Ö¶*ܼæE«ć1^Źpx®Ü[GBĄ­{kTm.ßZę_ßxŸ;Ėė”Qo¶+fiµŪų¾O”PĄ¶ķL»sõ­YŪ¦‡‘!ŽēūT+t]ǶķĻÄtF‹-Ļ“I›«w׊µ(t# |4rņĄ$“#Y2I‹SĖš)09’ęœ³œX'—¶-¤8yp‚ÉRŠżāC’N/0=Vą„3‹œ<<ŪŻūļū>n§C!Ÿß³¶uM‹Š}öŁ1B‚|&Éń…qLŽ/ŽįX:+›õZRæH¤$ Ā803Œ’ŖˆĮ"» ’8%]„ŠŠ sßĀ}æuü(TÉG­ēv7yv_„"ś½ch|żÜ,/žœd®œar$M¹˜da*ĻģXš„Ķ&^öō6ŻżäW ū¶;»໋ė>bR½ ¾/ōT=Ė“ˆ(Üv‡³‹%¾÷•šƒ€ÆÜą?½q•ɱ"[M‰fDŽŠt“žż[?„uĻĘ)ś“ˆīé¬ w²ūGxŸv/zĒŠÅtƒĶž®ŪGˆĄ>pˆž”Ē Å&¢ĀčBįĖ”‹HE<]MS ±8\šŚ{·©Ō:\æ·Ęźvƒt*EˆA2e÷& Ø Iä2œ;1Ķѹ12©~ČP­?ŽŌfæCi÷Ÿ/Ż\‚ųaģóµUĻVÓb!¶iCīo6¹½REÓ5œDŌ% ¤ĻńÅ2f˽×4h%›NŲ,LäøtwCבńĻÖ5–ņĘū÷q.ßĆ15ī­n“L~ļ«ē8yh–ĶJjĒ2ŁŲ®²0;s?Y‘4š·ė‹Ć0d|“u`BÉ3GęH'¤R,oT(īÜ_įōQŽæµŽ©h†„ĪŖˆv„āG°ļ³’D&!‚;Į(|0+ųµ DēGxėņžįGļŅń%/į8­¶Ē+_<‰WŸB—^xA@ŃqšIµÖ`|“€ēTźM.^½ĒkēÆŅņ<^9{˜ļ~łR‰aFŽtžGµŁB"Ńz"‡~:ō„ šZL„:Ü­š9éģī×]Ž;‡}wzM-"[Ļd½i†ąŗh_œČ1ZHń³÷ī”ł”ĶōXZ‡µ&*.,“Aw›ž>b°€Ń«ų“&ē½óƒčõ'’I„.xõüužčK'łžĻć86ϟ>гŹ5u/?³ˆ®¼k] śō5%»{˜{¢×żÜ}h*;[$ÓĆP¼|rŠC³£C4įż^æē;0ĶĀŌ’×?¼Į/?¼CŹ1łźsĒŃ“äū•Ó|÷K/hu<:®Ē»+üó/ńļ’ü[ŒrŲ¶ĶN„Ņ[[ÖĒOō?ƀcŹ­iA¾t³²>#Ó)#»äsGgųéŪ·šüØ.,gMfFųa¬Ń‚±b¶ž8čf!åRŽæųƗ±b&‡TńäOŹķŖKĮ ‚ækQ<0­žŲ&Ż€ķn”„ó…ćsGgG)füē7Ƒ ”£–iPČ8”r R +²EVŠŽŠt}V·št<‰”i¦"B C‹Ÿ5­—o2H“ß]³}tc{P/ł‘ĶŒįg¼ūž#s–hÆUd&šĀ¹ø™ŃÓ.; —ZĆĆ÷Ś€õD׍±ßb  !źM,dĘi2r²°4?Ō° Ȧm¾÷ģY-ĪąłÕZƒw/ßęßżŽóŒ• ü§Ÿž§ĢO‘R±²Ue£ā*+źv÷:8}1ķąų¼w°‰a‰ æ Y Õµ3Tż#Oķ,>MÓčcŻJ‚xjw» ”C«Q£TžB·Č×\£Ū`4m Ī_‹ØMł|”Æƒč‚~®iHĘ YRI'²Õė-Ā~(žPń¤J Ū§ż*‡¬TŠo<ĒvųłūwŃ“(<Śāö¾¦Å×Z:¦ƙ0D"15A.“Œ‚BµIĖ8•= CĀP¢ é5 ł _~fž³ĒfØŌ[4Z.fœ[2ZČ0ZČb:¦v†ņŲ8šÖŸ:}ģfæĖjī£62)%ŁtŸŖ¶]oņĮµ»¼ņ…#|ē„ćRq{i|6Įf­ƒ’"#ŲJ„.{Ī7»–~Õ"HQ44©”„†¦čĒx1Å„Ūė$”TXlUšln×Če“œ=ŗHHųōĀJEÉ·BŠv]~ņęÜ|°Ā¹‡™+K'ųĪ—Ī"ųł»7YŽØ³Si‘I%PJĆC2I‡©Ń›ṍļ+>µāĄkÕš½7:IR™4æó¹(švÆįh‚!šYżiDD…“=kčh Ɛ\Źf«ÖD/œžēŠt‰‹7–øzk™…‰4–K1kńāÉI.^_&ŸŅŃ ƒŪKZ¾¦i±-\|?5zM£Ż ‡O³øŻļŚ ž³Ż3¬$Ŗ°LMÓłž/’L&90;Ö£Ž*];ÓŠłŹ¹yę& ¼sm­š‹1h‰~0@±bw­¾„”eåń}d@¬nÖ)¤ā£łåA’ˤ803BµŁįÕ·.sņŠ å‘,JÅĄ2®3Ņ ›LŅa“„×M2)Ó4/—©V«t\Ū‰ØÜæ-ŻŻė0 ©T*x^4™Ķd2LMNĘģƒĻ†no„|ńų,ĒŹ\øŗÄµ»ė|ė¹ChšƒÆ{w£3 %–mī;u Zl·ZTŖUŹcc%ūW83ūr‚h_˜Ińµ³ “ƒŪ0H9óSŠ™DľPjÉ@¤’Ų¬¶8e…KĀ0$ćR¢£¢€Ęč€żjŒįZEķūZ‡mÕš§ķį}3ō½”ŠŪóq“¢ŃlńĪÕe\Ļćś½-4 ri‡z›¦+±LƒT"‰n>ę…}X³åūėהa˜ūvūÕ-JöÄĶ2 ‘2* „ 0U‹CSY^:w‚d29$)EŹ!&ĆŠc zD™QR”›·īÜć§o]b»­£4 „B4“H·BhšiF“¼ngk(½RģźāG‹ĮsŪ„aH:ląģ ś×äQģ>Vƒ~Õō»„ƒ Y#@S!Ė+ˌŽĻ¤qšļā±]W8Ōæ_¢B-)%žėŅhT9spš|ĘĘ£NaĀ6h»>ŽĒŹśėŪĘ yęgʘeb“€m›ū:n}’V³!4>¼³Āµ;›4:ėŪ5„$R²I›ŃœĆzµC£åŃå5G4Šˆ¦×j·ĶXüžWN3’OļFQ€–ąĀe~tž–e£Å“ƒnÖĆhĘāĻb*N‚UJ]‹ŗŗ®³²²ĀŲŲŲ#ōšlVj4Ś.ó£ńųõŃĮšó=}?de«J. vŲ©·˜a³Ņą—W–¹~×ķ`Ł6N"Õ»×›ø|҃kHP†Č0Ąu=Z“?ūę(ęs %~põī&’üŚ{Ō ĪåO¾óĮS굿²²Āųų$·¬š“7ßē¾žÓć%6¶ėģԚ¬mVxļź]ÖvZų¾Ļ §šÕg‘K'xėĆ»[ēĮz…Ÿ^XĶč¹° M Ż£'Yd„a€®± @H£ŗC¶8ś ‹ ƒĻkcĘNt;ń؟.0 T ‰ŒIénŽĄńI‡R±Ą707QB‡gK˜–É^»ČH>Ķ©“¼zž*/œZdb4ĖĻ_åŠĢ‡fĖԚvźmĪ_[cc§Mā{¹—/-öLĒAąŗ-Bß'™ÉĒ{ūć=wm†DRõhgŖwĪFičN‡f³0?Qd“a»Öf¬F clV;¬T|LĆ@×ćv #aAŠ’1T»lo­’/Œāūn§C§]ē›Ļį‹'ēńż$O:6’į^ćĘŅ6^’4’Ė÷ݘ–ókćB_MÓŲŁŽFč:…|¾§3ümśč&Ä7ėu Ó$›Ķö'æŽIŻÆ ²uMCÓ­f›Z£A±P@}‚Ŗė£®‹ŪéP©T˜˜˜ŲK-zbÆ_ōµ²—Kņp3‹.pŠ4© ÖvšüĒy× Čę =mø¦E]ģ³’ģūn÷S 7¹‡ Ó}Ę%»šóC_«” ń\?Ź2Óõ^Ó¢;AÖ4Ū{‹Ø!®‰«d÷uRŅn5±l»G/Ų}Ņ€ģķņļ*’„Ä÷\BÆEą¶‘A‡“óyž?9K„Zgl¤„aš±KQøē&EN’Ļa\xū~@±åčā 懑”Ī '¦98åłćS<|†É¢…;ذCĒ z”/!%RI‚ č}ĻP†Ø0ś{ßõd€aš}p n¢ŚsŸŠŒ»~ŻØžHÅ<ä0 Q2ˆĘ]ŠĘö IDAT2†JRÆlóüŃ 3S¬×\Ā@7 ģŽEžķ’¼›ĄÜuKź¾F]˜¦ĶŅz…kwWøs•ŪĖ\æ³Źż•M¶ėMlĖBÓ 6vźÜø·Ź›ļ]fe}›R!K.ü•Š\Œ²œ<8Į”™؀zĆCč&ķŽĒŹf )†a LÆā ”’x®Ļw_>ĮģxaĻF:xPä’“]õfü h=ŚA­ÕįŅõ%*õ&é¤ĆŚVŸ½s” Šł ŗ&ØÕė¤3é8 0N’„ˆ)‡1×ßC®ÜZāķ‹70M“B.‹ó?ŽĘ²ėZ¦ ĮĘv”bnr„F¶pż€Z£ĆŅŚŪ;; ¦ŗ£GA{œ.ģš5¬÷ vm%įҵ[,Æn²±SƶMĪMš•g2?U¦ķŗŒä#ŖŲSŲm¬7›M'éŲhš ™HpgiK7ļńß½ĆŚĘ&…Œƒ†Ā2mī¬lóŽ•»\æ»Ęחøpm™ÕĶ:”0zk‚X_ō$Čą½źłĪĒ›‚ēv°©ß\ń‡ źūkQ –(FDF ¦ 0øžGĀ2HX—ÆŻF×ufĒ‹”‹N™Į¶ n?XēžŹ&’ö{Ļ„’ŁrńŃ,ŗ¦3?Q"›N„QŽP!›äÄ|‰@†¬m5ś{ž~Īńb/8 ?¶ovöLK>‰UüĆ®ĶŽWD)ƒ4ѧ ė†I"‘Ą±ŌŪQ“£é+V¶š¬ķ4YŁlŅö¦”ć˜:g2YL³±ÓŠƒėv ų»ūưxæŻjā8Éč\S’„mqśŠ8…L²W€=¼m×ćĶ‹7©·\PŠoæt‚ɱü¾…Ö00‹šG¾ļ³³³C«Żīiŗ~?|Ļc}c!™Lę”×ī³ō18”ˆtQ×étØŌjČ Ą¶ķ_©žš<ķ&&&žųõŲĶĈ“fź#)ŁĆĶ‹čĻA(Éejµ:«ŪLĆØåõĪ|¤”Fƙ?·ŻńGwjŒRȘ-¢TģJ÷óūęO=ą:šü‚–ČšGļÉ/ŗē_$¤²jēį.V `ė¶c÷,ó#›æĘžĄc|ÄÅ“”·ÓAx5^89ÅĮ¹ RéTäĀ ӓ½īć QßŃt…¹),ˆž;M÷&-Χ8“0nī/Ʊ¼¾S|•z‹Kü0āיŗ “00 ķ0 ŃQųž ø“žž¢§9Ś^[ą] EÅ® ń²ģŃѤ”($ISQJźų¾OŪmSuu:ĘD)šÅs'ęA_ę—–£×o“S£vj-…'§Dl*#i-1kC*C©¤Ķó'g+e(fó©\Š¢EīYV‡\6‰ēł{RÓ?éŖ”"’Ą“˜ŗĪóĒg8{h‚õjĄ„»[Ü[o`˜Z§(PčBąw=d€”ATk‚ŻĶ-?ˆl÷*„I[£å‡żi—8Žƒ M.ŽÜą—ÜĮŠ`r,Ē»—ļ  Ū1¹~sŻJĘ®`Ń=ōƒØų •Bh‚vŪƱMŽe¼|īŗ®ó×’ų³ć#|÷Ėg™›éŁ~œó™‚éń\×'C:nĄŅŚ E„Ž& |žš•£4=ÅŪ×·iz!¦±æGų'¹G»7‚~U­Ū¶ųóožaj|”J­Īļ^ę’æĄŸ|ēf§Ę(䒼X:BµŽ¦˜Kļq {ŗ…HIč»Tź „¼{ń*õf‹o¾ņ ēŽ.0=1ЦČ0`uc‹ėwWYŽØPmt(eMځĄÅÄģZ@ ń+÷ėųȵ²ß^‚ ęJÖ©"ūŁ}ļ9Gvéƒ ¤˜¶0 ƒåmŸŁń,—o×9vØÄ™2•Ć„įpžĆ;¼|īNō<²)žčėē¢lŪ$‘0‰$‰]×čø>k›5Z®‡a¼sé·—·H¤²˜ŗŽmųJ`Äś;1@łķŅ(D£ābļ¦Ę<ĢEźa÷õįöõ{'ķƒ!f] ‡&$R ”&£*‘8¾ßØźOŹ C‘utL•ȧ-޹¶ŹŚv+*Ndü““HóbH‡ŁÜv}†©Aźł(A†V‡Ž’Ó‡'łĀńłŲŹżć-€›­f“B.G¹\Ž(ŽÉ»ś\L9ö±2ćn§Ó!į8ŒŽŽöīĒÓr Ä`cĪ0%źµ®ė’ˆµzs½:™t:ŗ&š™l˜EtDÉūWļ泊–š¦÷ōi–eļš<ĘūŠ.ŹR·ń‘Š]ā)ńüˆņž0u&ņTm*õ6~ ćģ‘^3³N,†FHĀŲÜGb˜é%ŗŁ "®;Åp®}¬~Ćt`ßS )©tžFm”iXv¢'ćŲ}ŒįQ^_LLﰈƿnĒÆĘ—æ°Ą3Ē"Ur7œ„śxącšóĆPī3ᕁĀW!x0Z*1>6:tXŁsYYßı-Fņ9 3źŽµŪ.Ż^ćŅ-jMĻ÷¢"_č(ŽeEŁ ƒcїJJ‚ØbĘ45\/B™B…˜:$LAʒ]g4Ÿåśķ%n-5A‡“ańÜ©#œB)Åsǧx’Ę µf]ÓÉŚ|żģ,?æp‡K÷¶1ub6å(…H:~d 'eåJģB˶”qęŠ$c#ŁŲ‘AŅluöµ^³-v«3$āś8zH¤Uᔬ„čšĘÅ[«S6c#ŌŪ.7—v0 »W€øAĄģhĖŠx°VĮµ,žśoņļ~’y&FņqŽXfD³Z]]%“N³¶¶ĪĻß»A”aÄÉķŻ¢PÓtR©4‰T’ĄķŠźlVZ|š÷?§˜³ń[ j-/h·\¶k Ņ)‡ÓGŁÜ©qūž“cE.\»ĒT¹ÄŁ2…l†[K[ŒŽŒ +·—čx>³ć% +:¼?„X–gįHй$J)’ ›Ćsc“Ū-Š ƒ‰b‚+÷v0bĖWöIŪ~¬CgpĪ[MH,ÆPČgI§Süį7_bfb”+wÖłĒŸ¾†āłS‹|xć’óó]lėéė:–J%4]'ŸĻ3=īćņ@čd3™hóCˆ)$£#%ĘFJTŖu®ÜZāgē?@YyŅ #}/÷īFüiø`ķ-`E”WņļģS­”źN¼%2J‘² ĪžāĀÕū™Ésńź=ŽĢsxaœ«Ū”óc£cŒ2“;>‚ˆŗ;VŹ¢ˆ:«Bˆ­”ĖA·-“Ć ćüä­K\øzŪNPL;* £ū¤L­&x¾‰aŁ»čX”©ŲgIÄ{½źm»ßó'›rtęŻkŅ/0ŗ½-­gžBOūƾHĒ&B ”Ņē‹]A!Ų®µłłÅūlÖŚĢOųź™i.ŽŽ Öņhµ=:^5ƒT ¼0Ä÷%ŗfōhÖJ†ŗĪŽL0Y.öŠ”z¤TsLS'% “#= ŲĒ=;~Łż³YlĒéāæŖvń³>dĻ4bSTėu4å/č†Ń›?ĶMŻ÷„!zX%ŸIR(äXœäąÜ4-O²¹]ĆI˜ü÷ü5ŪŽćó4䃖”†ibŚvDkņ¼Žõģ‚źµmnŽ}ĄīŅ–‚4…t>āĄ论…ō~|×' BDģ¦ņ4ÖVƒt«”&V—3­$R…” I|/ ±0Dˆmœ;6K¶Ķ%8sd† 9:ĻŅņ2A(c“5P¬}|1ęz_8±ČŌH&śśŠēžŚóÓeĪ_¼J)'øxk ?ČE5q3M`hQöŽā]ƒ Åī<Ż cP*†R“‡§ŻėŖK×IŚQ‘Łr‚nšé¾Tœś¾“Nß}qųgu÷]Cף®{¼zžIŪąŠt‘ēNĢR.Ebš¶ē’fǧRļp­ĀŚv“FŪ§Óéō” QRrżŽ:;uŽĪ•Ķ Łļ׳–adU*”¢Õq{…[w_w·šī~Ó0H$TėuRRbYŗaō¬—»”ŽĻ éŚČ¶;dāł>š”G£kĒuI$O„÷=ŅõRŹĒŅøuæ§®ėŒŒŒ ¤¤R­Ņlµ°ē3F]Č%łŸžōK,­UYެ±¼Qåģįi­&ŁT‚\6ihH„øõ`‡z»ƒ”iŌ›Ž‹’°0™ēųĀ—oÆEą+iŅl·Č'’Tėķ((P)lĒd±™)ēz—WpVĄ3‡Ę¹·Vey£ĘŚVƒj«C(¶‡’Ćčӎ»{Iל§«Įīī?ū5ŗ»’Æė&¶“Äķ“bĶĖŽgW’ޟżÅ_ ”ļ:0bw«0Ą B:ķ6Å“ĪŁ£3ņ¹hcłŒÜ话‘żœL¢Ōl¤m0SĪqśČ§ĻqźŠ8¶P­·p;ķ¶K§rŹP”!Y˜ĢņܱIž9SåõzƒNĒEĘ”’Édņ‘›[j T“ÕnÓj6±m‹„ćĪd™ž(ć$ŒóģŌ;˜:^›Ł± –.@H¦†T!ķŽ;6Eŗ>Ó°†lÖˆ»?ąŲ„ Uäīw|.Ļ‹'&˜Ļ’° jM—¶ōlčÅõʆ%‚Ņ}ĢQŗ¼ļ ”QdŻ@Qo“˜ɑĶ$šƒČÅŠ5RŽÅH.Į”™ŽĻ†•ZŪvh“:”ĻŚf•ŪK\¹õ€r)ĖĢD‰ ؟ĘŪ-Ŗß¾r/lķŌ9}x]Óšü„õ-ŖõA(±-Ū4†ĪI˶1 ƒz£ADŁ.®ēQ«×Q€iš‘żžē„Ōj5ß'“ɐĻåH¦śĻ¾ƒÆĻŖŠüQöµŽdGJ¶mSČē{EĻ– i·ŪhŗN±é‚ž™:“¤ŒX6ć„ “,­ńµgRĢŚX:LŒ•HŲf;0•ēČĢgG8¶0ʉÅ2§Ž3?Y ›LPo¹¼łĮm޽ņ ēbućž*ŗ€Å™ŃŽ@4¢š)Bż ĀčWōēh’ČgĢMä9±Xfq¢ĄL9Kąų2¤Łöšbm…!½üžęOĆ.Ó“a€ļy==Čą=Ōæū'‰Š»‹Ä÷üaą!d€)BJƒNĪqha?xśx·xó|Ļ € ”bl¤ČĢx–„ ŗP ß#š:č"ą„“3”rŪ“ŚĪ_IJmtĆ š=l'‰nB»H0ØżšŸ&2ÜżR)t$#‹BŚ`y­Šm€ėvp,‹ć'+ä0 -īźŁ“ŪVVVČår4šMÜv›l6»ēŚ? ŒGö!n§C½Ń N“ĶdzEI—bŪ6‹3ćXŗāšÜ/ž=ĀādŽrŽęŲ\‰BŅ@u£ėõAb:Ö@…æėŻéŲ€»×Pū`··Oy–”$›48{pŒ©Ń,IĒ@ؐ„*Ͷ?Ro¾N˜$ķ(ˆNŃ·ĒļŅ„•’Aˆ¤lbĘÄó=\/d³qļgʋ±&®eL§Bą·k[œd²\DŹ0ŚßbŖBś„B&¢ķÓŲŅ„ Ńjóīå{t¼L*AŪķp{i“kw–yżŻ«,ÆoįłĖėŪQމmbzoż†A&ĘŠu\׍Y†A½^Ē4Ķ8šöóAĒJ$4›Mlj'_źŃš+Ÿ=øK‘ė>[]:™ėŗ1E;ĄsŻhŹÓn÷ÅōOą¾AĄśĘŗ¦‘J„°ē3Öŗ×CĘ@ Łī0Q.ą’2™Lo †@šż°ē Hüµ’b6ÅāŌ#9īÆmQovŠ„† }Ī›¤ózšģ ‚ØIa¹”ĆĮé"£łT,P4Ū” {ŃōŃ’M|ōD_)‰m%šÜ2ō1vQ±ōļžÉ’š—Ż ^)IŹt9>[¢\H0[Ns`ŖĄŽĶ27=Ž’”Zs.X%%†iž’ģ½ē“]ē}ēłyž“oŽ#0ŠQĮ¢‚5’=¶Ė»³µž©š»†ßnÕī›}ēŖ ćՎ]»ö”5Ҍle‘”(ˆ "Ē:÷ķ¾9œ¼/ι·o AMķ©Ńltß{ĻyŅ/|Ć@MÉó| Ż`z¼ĢįłQJY|ŹĄT=Fņ)—70µhC-rčŗĮ»§ĻÓn÷ųś—ž„T,ŠķŚƒĶł^z}‰ā ē 3ŻżP%ž„N<15U23žēĄt™©Ń,„,ćå,O™å‹Ob¤˜%“Nb;>­®G1cqģą‚h×%^ē¦ēxŌ›]n,ošėS9{i‘‹×Whulž:ŗŸCóH!łéo>¤Ó³YXŽāĘņ&•Z“•J‹ k¼į& hv’ ƒ±¬ćŗ“»šŅhtčtmTUĮŌµČĮU“QwdvŠf«ÉF­C)—äõwĻóÜćŽ¢ÄIR¤Ąk•-ž?:ÉōhŽÉr†BÖbe³A»ćü>\Ļc¢œÅPŽ˜AS•Ū2tMQØŌ›,¬ŌŖ†"¤¤“:ķŽĶ•åŗf`»Ė•:ĻįÄcÓ\ŗ±Ī՛k¬llrxß4ķ®®©wķ‚ōĒŠv<:Ż—–¹tc‹Ķ¦C³ć DdRŲ‰ĖE‹"Ük"²]®”FTMÓP4Ó²øhŖ$Dҳž>4ÅŃӑéÓ#ŗÖ•xžī„žDľ#¬© šŖ"‰4Ī×6¶ø±¼Įėļ^ąĀ:él +‘@Q¢Ŗ™¢ØøŽaZƒVń­¾CŸĘ³Ų+ ČķśpČō*$—T˜(XŅ:™„‰Ŗ)“Śmri‹}Óe,ÓĄó¶÷¼žĖ(Ša¦5V§C6›„ŃlʐĄJ×évļčžģŗ.Õ­-’©TŌ=¹Ee›» ÉŲČ® j:łL†D"Įųh‘ƒÓEr–Bxų~€ć‰8Ą‚Xݦž%ļ—4z¶KωÕ½ ö@Ų¹@}ßCāÓs\®.mń«÷X®42"°:žƒėx˜ŗäŠtž'”éŁ=*ÕA½nĀĆPƒ€n×F×ūĒsĮĢXÓŠv–ˆ’ÄTҤ”KšÄ”)F )R f»Ēf­Åj„ĘŚF±R–B.}›*V˜††ē8®Ļf­Ķ…ė+ŲŽCŅ4xņč<ĒĪRʧyó½ ¼yź" KgßĢ8n\€Ūę JLÓÄ4M,ĖtFTE‰ {;ł†ŽnU«¤S©½QŠjÕ*žļćyŽćąŗ.¾U»m×Åõ<\×Ä\¦®“L§?vā8 ĆźĆe3éōuT>±V;,²ČøPŅétČd2»šŽéµR ƒłÉ"~45&J^~j?©„ł@ć8č&ŝÕ|ĘbŖœa¬BWĀ0 Śč Iłīęé!n+“ļÜL#A· `ØŖ>(X©įĄ*@.'•xįéĒqzNF×{(Y룸˜‚  gG“wrl”Łé –––™šœąęŅ–eb™ÕZE‘<÷ŌQL]CJĒq? )SŹł4c…L¤Ė·ÜņŁ$O™įōL™Ÿ¼y–³W—)äS˜ŗF·m ŻžCw ŅäŅźŲÜ\Łdj¬Čćg(dÓLOń< ח947F„ÖāÜÕE†AµŁ!£ ]UÉ„ ęĘóȶKÆērna“ČPč­o (e-¾ųԁČͼ×CU>¼xbn™‹×WŲ¬włé›gxń‰ƒųįnʉNØ<±„CscllÕɤÓœ)sei“j‹ŠaDÄ’óWŽ8-LC½ķ.,oBŅjŪŗŠF•X!%ėÕH˜&ž"TL*ĆÉsK4޾ĄFµÉ7_8ĢõÅUŽæ°€ė:¼ōŌᨫv—”¢D]žķ01’'^((ēōŸFĻė’`¤ĘŚŪƒ„s{ī¢Ä³k5"üøAFJRJ|§‹źwyįécØŗĮĶÕ HZĘ ÷Ø]ŖŖrńņ5FGŠä³Yüøā%„`«Z§˜ĖPo¶Øl5ŲØ5čö\6¶¬m5i“]<4r…ŠŖ e”|HdR(µ>ń÷n÷ßåėV§Ž~ņįłŗ å¬F!mK'°{c9ƒ©Ņ$ćåIÓÄ÷ƒmbc<‡5M£X,R­V „ •LŅjµpgŠ^š|Ēqv%° )ń}Ÿd:M*™¼c Ó’^&•ĀuŻķ¢Š 2Żßž¹If'GY®ŌłšŹ×Vjt{>Ŗ¢¢i!a_y 1ÖģƘ•0dn,‰„hj”`UŪ=V„”@‰9ä­®ĖÉ +Čó+tlU‰‹OĘ2ȧSQ§AÆ>= ĄÉ3×cÜ·Āc³eFņ)2I×õØ·{äŅGęFH˜­Žƒ*Cņi—ŸŲĻÜTUQv ÖśĻe||Ū¶YY]evf†ńR–‰rޱb†w>¼ĘŁ+‹DēL„w–$ÆøĮZµMÆē”**ŗYDˆŲā`wUĒAĢJ@*+c‰me,5 C˜`b÷ڬU«kdRI‚PÄŚįŪ~ŸēĄó}ü Ąq=z¶ĖčHi€a, Qu+Ę%?Ló›ż¼¾pė¶„Wn¬ŃéŚ$ k•Ļx` IDAT&’å—ļc™ķnljĘćŸ*%ŗ®¢…™ń"³“EĪ^^fq½B£Õ!i™2)^zņ 3cy>¼“D£u]CS5ŗ®Ć‡WÖČēKQā*$a Eˆ””²Ēö13^`e£ĘĀŹ&ÕF‹„õļž_!+¤łāÓyźšģm¦Sa"ĮX9‡.CZ]g`ęs}qƒÕõ-|Ļ£œOEPÆK!› ×ö€Ūõv»Ėėļ]¢R·I$“˜¦mRĮJŖˆ  ėQ0ź˜ŗŹĢhšRf ×÷1u…3—łéo>@„PkuyāŠ,#±€Ąn‡;@*iqōą ćå,³› z¶Ć¾©2V—½uF×Å0 4E© ćαņWČ6żV2ģ­ ÉÓn)BüX“ĮiWQ…ĻōXž­FśĢM–ĖüQ ŗūÉTüčÕwxęųAf'Ęh4,­mņLMޱQm±Uk³Łhć”F<3•DÓ4DL2–ƒæåĄlp`8x¦ßÕk{žEkÕ4T %ā¬U\®Ż\g“””Zm¢(‚—Ÿ:”ˆł b×@ _(Dęw¶=0q«!™HJ„v%å†A$MkŪ6­v›d2¹+Wąnć:üo޽Ēģx‘\*ÉÜDƒ«u®ÆÖ°mUUQU‰$Ć®ę›õ ¾ń̾øĆŅhŪ¼­ÆrīZĻž€"*¾ļ£(2źÜ–2™/SŹ%)d(Š Śč†°Ri0VLcš®ēóĶē’NT7ŽĀXł¦k{„Ąį¹ \Ļej¬€¦ČA@tē3%:-ˊ Y^TŒŲ7Uf“az,G:iQČfčŁĪīPø 6*õ¦rse“B6¹CD ”Ļš…ćūxćŻ l5ZL'­¬ēÖ½SUUZ­ ĖtĄ>ks0÷÷Š}øžG.›%•H`ŝFC×ć$x·Üš|\#Ļžo7 Š…‰dņ‘ é÷?£mŪŲ¶}ūæĒŸ]Äó;“J=°‹½ēxģb<”0'ō~Ąh!ÅןŪĻĀJ•«5*M›J½‹”ičzä•ōy«r˜·ŗ3Féæv"•„ÓŖE把ŚĻO"$Æ5Ų¬Ÿf“˜āÉĒf( Ų®÷ȵ·>ńÉ4hļ6øĒnŽ£“™]^Xåō]׏“Ż A£I’*ŖD(Ł„ÅōhŽF«ĆJ„ŽPļ]øÉÕÅ5Jł4ć„ū§G9ŗzĄs˜+ :ūēm Ua³ŽåĆĖ+ŲŽ‹"»G‘Ó}b».nł±$ŌÉåkŒ—ó|ł™Ēčõ\žžŸßbžš,s“eʹ$óS#Q¼ĖĀ ‚0ŅD/å±7"—&L~ńö9Ī^]FÓLöOęŃ5ɁÉ<¦®Ńn·•€3c¼sf” 6ƒHTœEAĘŚėGę˼xb†LŅ@ 'Ļ^£\Ģńģ±ŖõēÆ.³¹Õ䯾óz±āŅīŻ«+ųćå<ßó‘"¤”3( j»G³ŻCÓōHN:Ö—q"²żšŪ‹üVģåö¦(†¶¾m9ŁŽŻ„6/äYŁØa膔ŅīŚ,oT98;ž‘†cŸśę.š¦°nŠļżämÖŖFŠ “Śmj.ՖĶBÅ”a˜&©l5®2õĒ6J:¢¶½Œ+UĆ^¤~,!€ĻYā!† =--Ąuz8"ā*TlD$ėCs£ŗĘģx ×nS>ŗmų>ŗ®0ŻÕj•Ķ­-Š…Blbxgu6Ć4¦gz}WÉżxĀ0‚M&ļav,ˁĶ<›µ.ļ_^§Óķa˜Š”ƒD?©rśś&/=Ł!›0‘ФIšņćS8ŽĖ¹ėTU‰ ,®‡*a$—`n"ĒĮ©2c„Č<Õ "č¤5b!é„ĪćĒce=CSéōœ]ēldŒ*98;Šąś~DLæ‡ēļS­VÉńa׋„<ž?q †“ŗw-˜†Ę‡W–iõ"Wö¾~ŠĶģx×õšƒ€õ•g˜/\w3¦­ĒjG™tząØžyZg"ēīN—ļyØŖJ"‘ŲQˆŻ]zZ<œżFŹ­Ņėįz‘u:t1…= Žh`™ęąÄķ'bQĮV ®AšĄ¼Ā;ķ›ŸDRģJ˜œ84ĮÜDžj£Ēµ:זkT= ]GÓĀø,w@—‡ć”mˆ­ÄJ¤čvZ¤Ņ9ԁ 3 &ž¢p½ŅāŚj…„ ĒöOpāš|ģpž;”„Ä­3e(ąŪ+W:iņÕēŅu|¶jM¼ 26R5’¤0tJ¹$#96ė혼¾Ź•*ŗ*xåłcŒ²ŽÓóńüøj%Ļ›Ē÷#ÓÆF³ĒÜD‘µJ•F«ƒ™LQŹ$Ȧ,”Żė±¶Õ`’d‰¤eņÖé«,­nņõ—ŽSo“Ø5Ū|ķÅ#<{t>ĘZūÿ݄ӓ°L‹0īX•s¤&­žĒł+‹Ż?ΉƒSč»ųXō%ŠUņŹ GyķŌ5Ök=ԁ#½ !DAˆ€A:„sp¦HBWéö\4Åg¤ĮCV*MC¤¢płĘ—o¬07YĘæKšR‰x Ŗfb÷zhŚńƒ‚é17R"Ÿ±0’&…‘|š/Ü`z¢„ē?:&xa SĮ›ļžįģ•„‘¢aK¶kH”`šJ£śPµ¼ļڵˆķā6ĆPėųnĶŻ;ĶĆ{= ‚~āų9ėowßBĀ jŻŪŽ‹+#…~ĄTŃdj$%³aˆķy•–āÉõ!©tšĶ­­;śoÜų& LÓ¤ŁlŅl6I§RČTĒŁī D| ĆP90UbßxČH!Ņ®Æ6byōŲ + }±|’TĀ)X­48}iŪ Ø¶zQ’ā¤L|)Įd9ĖÜxžb>‰*ĕAʤ„!L]y%»$Ć]żū V Ć ™L²¾±A*•KĮPuīnćh+5œXŻĻ¶]’†q;ŸM Ņ–ÅŚĘŽc3>R"™00oŁ»„”‘āQĢ—ų<Į"ūūŪ^ŗUÓčln’Īd>q@!½^^/Z7})ęt:½k”ņ³Ś‚ĶŲ—$NGk&Nę‰[¼^åˆ+ÅŁdAŠų|å óyVjœ]ØŠµmtMGĘŠK!bæ¢5z6}3oM7h5ėŃ<¢Ÿ~ ŁÆ' \Ge±ŅbµržŽmóÕžø­ īasœź~ä õ:…øź¶W*œAUÖ§ĒKtķH_܏ īRHt]C¢i šŖ ä3IL—ÉgL”¶X]ßąęņɄ1ą ŖkAˆėö•/|’ ƒ'MМČQo4Éę X†2 }AH§ē ( š*ł½ēŽōÜ7km@šöū—yln"Ā?ße>ķpŽĒĮń|ŽĢćy>?{ūĖ•:ĒöO`ōĻļņÓc9^yę?yū2m'^(}÷Oˆ=9Dœ¼I¦†DŖ3ח7©¶VĻ,!ĀšŖĘĻ~s†’į/æ†ē»iō„!ŗ¦”* ‰ä 9C6m2ēų8Ż&ĻšęźŅ&+ '–BIʈp?”„ÜZż¼Ķ-b\Ēe®¬37U¦kū¤- ŪõÉ$“Œ²ä³©øšūčl„†®ņó_æĖ[.Šq‰D’¤¦Å\wvbĆ$±Óz`¦„øŻłśVuAÄ}T#wūq1ž>ovOt?"ÄHH ‚ŠĒ÷B*Šōš\—ÉRš£sEUDœƒŲ‹č~Čüżłų>~ ¾—3ˆ÷Ļób§ßį1ƒ}Ę»‚ŚöžŽC’&óäS:7ÖźŲn”Š…ˆćšĀńYtMem£Īüē·±Żųż5UÖżńż#žÅŌt]Tp<’ĪÉo\ėĻæOāŠ4ü#QŒ ®ŌŽkå5 CLCgaqŸ¾u–õj ×92?Ę 'öE!Ć uR²vœōf$T`Ś`|vģ•A@”P V«įyŗ®n:‰ŖŖŅķõöDPŚæE!ŸĻÓh4ČēóŸxr¶U«‘ĖfqG”Ÿ°=ˆ‘į'łY{½###;Ģ%ļ?{Äl6ŚWC\=ļÉr†BŚÄó=.ÜŲ¢k÷"™]E÷‹{ˆmõ°Ó ‡®zėŁ×ļˆ(Rb%“Ū!g.Æ0;^`njœz³T’ÉĐĮŻēģ C ]§QÆG•Ŗį€BQąS ‹ Ė·ŖŠ@U5¤Ēóq]ļŽŲĮ>žÖw¤€TĀŠĒ”1ō¹’ų~8p¶•RrtßgFy÷¬ÉéK7)Ļ&w` o‡E‘wˆ*IZz$…éls‡ MČɍ—r±XLČcū¦ųG üāĶÓ÷¬ųs›óp¢Ŗjl`Ų!ŸMrpv46BŒ}H45"=ŽņRHJ¹$­n©E¤(1‘†Dmߞćšė÷ÆsžŚ ŽėÓhõXÆvP¤Že“,?°YƵpāĄFU"U-Ū‰$3w Fū\qĖ=V-¦ĖI?2ĒD)É?½~™v×' {čšN"a„‰Ü`ŻY‰bŠĮvŗH Ua4"JĒš9CWéŁŖ`WU¶ĻbSWU•N»Ć‡—–pBt&aļ%āsō»C…”[žø R„±™j“"d4FĪĻ”p‡s-Ųå«[/‰ÜN}Åż!sƒ¾„ė#Žżč·Õ#é×pŠ»ŽCŅŒ,LSG‰ żē°Õ4mĄCųhå·ØY­×‘ŠB*‘øeM„,®UHXÅ\Ļõ „@>Ą3p\?Śo¦ œ½¾Ią{13Ąó]ŚķnßJZ  ^« Š~Š_,•:é©OBė#č4UEQ%õf‡«‹ė\¼¶ÄfµÉŃżSL–“]‡µJ•³£åĮÕ"§ĀsOģĆP#=łžXµ»6Ææs†gŽĄ2ōH„J tEįĘŚ&æ”tią5U‚@"E€.ՁéW€ćŗŅ/<>K:aŅķŁ“:]~š³·©6;\¼¾Ä”ł)ž9¶U•ąG-l?†§™ŗ†mŪŌźu<ׄ\.cšÅR!Āo‡šūåź•5ęęēq\—s ļ†Ūč«Ū•…ī8iŖĘVC!\^ćĄL™|:Ķ͵-’¦ĪįÓX†ń© ś|dtˆ Ćt4]§Ónóę{gø¶ŽBO$ŃtEŃņ¹9ŪP›ŸżVcFAąū(ІaZ„O@ˆļ…čRCU†¹³Ū!śF{įPBŻ7p“ŗD%&L‘ņ"h÷=ŠęŪ£•€ģ„ōõ=?†’Ļg4«óÅ'ē)ēRqēųįU) ]Ƕm’©ŌGĀ.TUT˜bWn%&Lƒ?üŚóüēŸž†NĒę؁Yf§G˜+“LDr¶A¼¶ļ$ć+… iœ—£R©ģ)ųU’2-‹f»Ķźź*©TŠ^Ƈ'…Ŗ¢ ÅŅĀgl>)¦IAŗŻ.kkkŠÅG*Žģļ/Š”QBęyģåhų£ÄW„Q‘, |锩33š£7žGU%RDĀƾæĄVĆĘ0t”žłUpPƒ0DěµļGīÆjčpxĢbzbœ}S£¼wī?yó"†eś*" łłļ21’£ćĖX©„¢>-ĘįIg¹¶mZ>NeÆĻ‹X]ƲYkńĮłk\]\§ÖīĘj=*ŠŖ‚©±"OšĆ“ Z]›³—oņƒŸæĶ_|ėef§FŹÜ?Œ&G d’ŗŖŻs5ä*nR0RČ<¹ÓaĆĘ’ķ~ŹźfĻółöWg|tŒƒ³ćüč÷i¶»üźŌelÕ@×õ(·Ø!õƒć8rŗrx _Šs\Ļ–ųŅ“ūH%b—O9UįąÜ$?śĶiNæÉ鋋¬V¶ųóo½L„“;=6¶üöģ5ę§Ēyź±)ņŁģG„ k†¦€˜&\ŗźÜøĮŚf›žÆˆj÷÷^e‰Ē7ęGÓ<üqjµµV›r.…¢Ddķ;m:ŸÄ¦-„ Ó³ŁŲŖ1RČbYVaq]ź:§Ī]įō• RK éF$ݧ(E W¢/ »I»Ž8Ę’&#E±¾ŹŃĢH’±\’÷.ÆįxZĻOˆˆó¾w"ŽtU~ļ‰Y‡_Ÿ^$—¶Rą‡ŪŲW)åPr$čxTŲ¾ZčvÄfdĒę')eRōuˆōżqļ#Bććć™|ō÷°B>O­ZEQUtMŪ‘@łAĄ™q²©$’÷÷_㇯æOĀŅH§,ž<<ĒŁ ŹłŁtU•øn¤!ŠŒĢ\}?ä—ļœåĶ÷ÆÓv¦Ī_|ż8Õz—Žćręņ2›õG÷O \E”˜M rˇ™ }œKUU—–H%“ćĄī£zTEņģńlV›œ½t“ėĖk¤’ š‡ZŪę„S|ķł£dÓÖ¶+üĒÜßūc«©*®ē ø„{µ Ņļšz1zd/%RżĻZĢē ‚€v»M"‘ĄvCŚžĶ÷Bį¾øVwŒ/bƔn·K϶±{½ģ†~V”V;¢)xAš‰ō?©±Õ4Ūń±L^ĻŻ –©óüńżœŗ°ĄźfR!Ͱ~ÄD9͟}å0ļ]\åżĖY*Ärˆ’ł’üY(„Äq¤ßaŗœßå÷æņ R(ųĒ[ļćW§.cźZģšŻā…ćó˜e|t”TŹBUŌGžĮöz=<×ŌUļ’ h6›øžG*AAEy # CÖ«už×’š}žų•ēYZ«I„H§œxlĻõ9{}·?¼Žķø‚3 lĒ„˜Kńo’ō+äŅɇVE»›™ĢŻ.×u©U«ŒŽŻęįq/AÖGĮČś<„@Qśäš 64·‰æ÷³wxķķHX“£EĘŹy×kōMӑšŸŖŸ„‘§Ā8Łģ“¶£D3ˆeic™ĶĄĒ¶]¾ōä4OˆōĆŲ}? 8łĮeŚ]‡#ū¦ĆĖŌ)³¬mŌč“ŪŲžĒŽ8Ėźf‰‚ÅŸ~óy$!‹kuŽœÅ4ōĮBo4:üśżĖ\ŗQ!‘Ź‚ŌŠ4uØ Ą®UöAÅ:VB ĻóéTošÅ'ę˜ebt×uQµOƚŲĻ÷y÷Ć+4ŪmžąĖĻ`{>µZƒ_¾}†3WW1it=fč;\ĖEßN śG8Ń÷Ūäv“ĆLąŗ.§²\_\ēŁĆSĢMxķŌ7֚„@ŹŅhulpd¦ČFµC:a°øV„”K15šff4K*iRoöø²“Éo/¬‘L$bsĆm®į¤ėQ¾|ĻĆqŗhŗ‰Ŗj·w?‚Čl/š}|߃Ą#c©ĘĻ÷"“"C×ā¬čž4ņ÷rҟXF#Rr]FĒĘHf³ļ©lÕ(²ų~ˆWß–+¼vņŖŖ°Qė`»ż šĄŠĶVF³Éæżö9r`ź”?ūń>xä~.Ēó©×ŪX–ĪՅV7«£¬ÓuųŪ’ņmg„ß <ߏ…¢Ī™ķųŒęÓ|ēkO2RHD/ś‰K†4Ū=2©Ä›}’kQ* vÆG­Éa–K„ūJŽīų3ż¹ż Ǯ벶¶F*&«#ķeźŹź*ććÜ\¹ßXaĒ>āū4›Mŗ½„bń¶5ų ˆē8lV«LŒ?’¶żēŃjµš}Ÿ\.7āŻ+ćŖk ’Ēś篭ń…ćsüÅļæĮ„Dź"ß±Č'cõǾѵ"p܀’÷Ēļ±Õ²I¤r4ė›d e”?śĆ?žėæü꓄‘~õpņFś’Žēįy~ȱ1—G×q9yś Ļ›CUäŽC\ÓvĀś’ĘŗÉévz.Õ¶‹ķ蚆*8ŽĒžéQR‰(q9u‰7ß»Ģ/O^@7LTĶšd’sKAŠŠŻF5 ¢dJQTõ­N‹Ææō4Õé¤õ‰­½rćröŅM–+œ¾°Č͵MźĶ6WVø²T=E2[B3Œ8ŃīRķž|Ü-Øßł’`Ķq¼ŠÆ@čÓ IDATg²”ę™C#$- l5:¤,®ķņŚÉ‹ĢåPɋOīĒ÷Ć]ĒļwŸUI½Õåæžņ$’ųć·xóżK¼žī>ø°ÄŪœßeßōų„¢ū¦eÕj•0HÄ{õnó1ŒAČk'Ļ£ŖF¬°¦Üz5=P4¤¢ ųāSų£Æ§x‹Ją6LM kź#7Ö}ŲĻśś:¶ćĖēÉÄ]„ūIŒ?Ŗ;ņI$E!•NÓnµš\Ć4÷,D‘’z³Ėļ-yį»}„$ TU„VƓĶd>V‚ÕĶ­­­OTś÷a<EQh¶ZŌk5ˆ9,{”Hßߏ?6Ėå›\Y\ē™#sdR :=‡3—QI>›Œ) ;E‡¤“»ח*8žpęŹ §ĪŻ`£å”ź&„ą86¦•@m¹ūƒwȧtr)}Ó#<žŲĀŠēVLõ£ŌBž,&Öš=w:Śķ6„Réī[Ż„#‰_ÉņŹ’ł'Aœ84ĮæžśÓlU›üąÕ÷¹zc}“Er™ĒLU&?ß׎y'Å_|śåBŽWßł~õ]ž=q€V»Ē?æö‹Mž|z U‘”ņY¼ĄĒ0-Ī][GÓT“»lžčU¬w{.‡§s™+Pkõ8{eƒF»G”˜ œO²o"ĻX9U?wQ’ŲmųA@>āė/<Žöīe~żŽe„T1 …J£Ē[^į+Ļ—b“˜å_޼ˆŖ&#ŧ8ńčsV†‰×w‚ õ=„ )ŒtžėüüĶųŚ‹OģÓ|Ųµ(ŁųNČ«ļœg«ecš&ŠŖś!žP›Š»#ń=*„ĻĻźPݚ|u`ī0¾¶ė’ĖdPTuWĮ@Ķ'ø°°B»3¶… Į'D„ (‘š„€JĄ¾É餉ėś;įŻÜČ—ę~­²¹‰iš$’Ém…¶‡ōY?${ž722Āāā"™Lf»ū²×ā!īŁėfÆÅJż„WSՁŠŻQ²²ŗŹŲŲŲ#-Uā’r¹Œ‚J…0 ÉÜbNųYĢÓ;‰j £l×ćśņ›µ¦™äłī‘Bāłš|‰b–’Æ i’0Ų1Dd“M«Ć÷~z’ZC7°’ L+‰ėŗŲŻ*¹ĀŖnZ€Åj£FŅ8¼ovG{åN›‹¢HĒH`R‚ō*ś£JŸžœ§×s EõEQ$×–ÖØu=¬D2N:ć5/4%@•ĶVē®]lu÷R Q¤äąĢ(†””©‚ÉRš 7·827ŹĖ'f9yn‘³ kˆŲWØėüųłĪ+Ļ0RH³Ūqł(ķĻBD]æZ½ŽļyØŖJ*N>īęō؟}Im©(B:{ģO"‘ˆÅ>ŻBEßŗ”Ńź¢©Jd6Ÿ©żżw½ŚäÓ×°’™ń“‚0ˆÆüˆ{+$ KėŁ?…x;*?}rz:“¦ć©X–Ž¢t:- W,#„”o|ēÆžZŖdc«ĪÓGg¶µÓū’ņDB°¼¶Į;ļŸćžė/(ņ” ¹=±(>ėÖl1ŗŻn¤²¢ė«āÕ’tŅā‰#³<÷ų~^|ņ`„%lwłņŽ0VĪ>Ņ^+Ÿ4k·j^ÄŅр®«üäWļņžÅetĆąÅ'Hq¢Q–©s`ŗH>cŅhŁŲζīŽ’ģ~ą“65^<6ĮÜX.Ö¼–‚ćø¤&[6ZģÄŻÆņßĖųaTÉB’Ė&yüą$†&Ń× B˲ø¾ZåĀĀ:zŸ ó vv¶”Wwo±3J&r±ö<Ēs+epdĀä7ļGUT ŁŌĒ®+ō%KWÖ·ø¹¾Åkæ½D>ŸGŃuTMÖbüŁ­D© Įāāū&rÜäCėŚB„T˜*'82ćąt‘C3ěøm÷śĆŁČ8TįĢÕ%>ø“†*Øź¶ŹŚn›G”Ė1ü™‚ĄĒ÷\¤¢F¢ Ćr»c;䬀“yž;>O1—~  b·Ėq}žĆ?½>ąŸōē{’s%ՀÆ=”©‰Q–yē½F\ׄŪé`Ę×ęp÷¢k;\[Śb«Łf¤˜å…ǧ803ĀüDMJl×Eˆˆp¹²YĆP"ÅĄaÅÆGńr]wü„R©,ęó€bč'WFƒf«EÆŪ¤š÷Ƚu:|ß'“ÉÄ>@ā#+Ö{1"‚Øz®‹nT‹BP­Õ"Æ¢ģ)q+‘ J‘J„ØT*“:<ĒĮó}Œ|§œ»Ęł+79mä3)EPkvx㽋üąŠ  =‚@GÅĻ’‹õŲ®ĒĀr%ö “¤ćDFUN_¼É/Ž9O­éD绢ŅiÖ1 T:æ’¬J!Čėjfųæ¾÷*Óć%J¹$Žć±°R”ÓµIš*ū¦FŲØ·xćŌU<&‹i2©æKW?(1M“‘ŃQŖ[[4šMrŁl„C}€McøZąŗžąė\:A!iź{ž?„7’ü^w#ĄļŖE hšŹåėk¼yź2N‡fĒ0 ¾ĒĶ ° CnŽX"khü«g'±±ų§×Īow”BēŪŗ¼gŪŌ[]Übzčˆ×kŒ³hšĀßżš-ę&ŠØRšņS‡ī=0Ž)T}gą/=}ˆV»Ėėļ]ęü-@’J±:×ōź6(ŅŻ“‰q˜ )‘”aˆ¢ŖtZēĘųł›gYø¹B6“`­²ÅĢx锬ß™ŒLĶlO²Q·QUm`śHÅGŖŚ¶üńR&nQŗś8p‘ķ×QP…«KUĪ_sq\ßīņķß;ĪŌX‘LŹųȖÅm{¢)’Ÿ¾}ž7N]'›ĖcŹžXo;łpūļ0a$ŽCŅR BpųųqÕöačż'MƒžzŒÓ—WsŻ«oKįæłÖ—)—pļ®ņžAP,XZY¹«\ėšŽ¢+‘Ї©ėll5ųå;—Hš„|šēŸį‹OĻćz!Wn¬ÓīŁ±gĢ£o×ķvQeł<¶ƒā†”K„XKpsqń”*n}¢c#%­N!%[Õ*–ibÅ|Ņ ¾·Ļ ĀAQ4M£Q«!cGóū)T !Š ƒÉ‰ ®-,°~~oĮĻcŸ=!“““A@£Ń QÆcč:ś§Ąż ĆUJŽ˜ffr |÷Æņ·’ō‰¤‰ėƒe&I¦3ؚs厮b†(¢jøŽĖOß¾@Æcsxß(ų„$Lƒb6I)—¦ķ“BI»Ł •Éb˜‰ˆc;t®ŖżJ£¢Ŗ˜"AĻV9}½ć®Ē8ś«õ^;Ŗidóe:½R‘čFTĮōø·&!Š”ds9z½ķvß÷#)½‡°Į·š€ß¾MT”Žšä·V9ś] Ēń°=„®#€–ÓćgæyŸZ×'•Jc»ŽŽēÖ‹v§M*‘ P,²øøČÄDž‰¢ÅņV)"s-%öč:>?~ė篭19š£ÓuXZ«rce“®ķbź*R\_®ś.ć#9öM2ŠŻ%ĄČ ßB\µ—L*AĀT‰ ŗc®Ę]“®Ņļüž¶KxmŠ^WŃ5^}ē\¼ĮŸ}żY\Ļg¼œ§k;q"÷1Ęø¹²É¹+‹ŌZ]Väräœ,TTW¶ŸÓ-›[‚Åūmß ±=("”Q-HH,ĖB× |ßĮ³t~ś›³üėoL&i”(‘łŽĆ2eUÉŹfK «DNŽ‘“µļ{$ ų“/§T,Ńė9šÄƒl:ĶVµ:pš¾ÓūkšŹ×^8Īcó“¬T¼}f•Jƒæł‡W+„ł½gsd’žē³oŖŒ‘Üö°yę#ø”¢Ŗ*Žćąś>jÜMś\Į|‚€ žZ×4lĒŁdīĄ÷)—±{=„ԚĶH•, ±m›±±±ABņy(*š†ŸJEęŗņż UJ×ESÕ=9_ū.īŗ!>Ķ÷ļ+ؚ¦†®ŖüĮW¾@£Óå·gnRo;hš†Ŗ©CĀ/Q²=AdČ(RA×5‚“Ļņf—æłOƳo²Œćł¬TšHUā»>élŻ0wŻw”ożéæūėØÕCJt]Ć2- ]GÓ5TEĮŠ#ź>ÜHS4–×*š£4ätś(_‚u[¢($, ß÷ét»ØJŌ®ś]"č÷ÕƂ`]^Xdm£iźčšB·ē dŌŽS…3—łĮĻNRmōøŗ¼É/ŽŽä[3é4“£Ež92ĶX1»£ż«*Ūõyķ3hŠB£Żcl¤HŚŅ™Ķ’Mé,m4‡„Ų¬NHŖĶ.Wnl°øŃ ėXf‚d2råV5Ó0Q•Ī_gßō¦®įūAdģw‹’ƒøžųH©Dė)N–‚0dr¤€ķųl5» äm°«>āA BƒĄ~ˆą{.B®/ońäcSĢŽ) ("ę/|Ńū»ž‡ėś“»=Žæpƒļżģ=®,mį… F ™ė+)‰˜€’ØČšīÖõžŚ÷=|Ļ…XmĢ÷<\×#ō]žŪo>I:iqia ĖŌ?ühŲ‹" ×ć»ßƒ¶n!ą{YSņ_<ĀģģT ]¼w•&!ŽmcYÖaXĆĻ"—I05šg¬˜¦Õė ß¹ÉåB:†s†ƒæå`~øŪį8N¤ā¶Ē‚¶{>‹!‚`Łv$}ŗŗ BĀ8ń\—žmc~ ė:½^L¬µ—“ĘaįĒq(äó#ōER©kkkƒqŽ«ńR§Ū%aYäSāžl'ķ‘O¹įĄō(a²“ŽDÄŹź @ØŠŸż¤Ÿ”H)AFc¢i:ŗaQo»tœ VŅ H„sØŖFln0€R÷Qź›,"ZH?PņQB5ĀK čWÅ|ʐl&a惚w.ąLĻó" ^ƓĖåvšBž’ėžĶĆūē°]‡F³ĶʖĆĀŅ:„B–L*gו†CķĀЦį».éLŽT2ĮK'fI˜:§//1VL3^Ī#„`³Öā×ļ]ę½+5N^x‡ƒ3£X©,£…$„œ†Ŗ@ĀPč¹Ūѹ”*؄HĆ$SĪQmvé¹~_|!b®”ō‘ĀBJ…ļ~’uŽ?6M.•äŁcóčCę~ŲŲjpõĘ*Ål‚r1Ö Ā ŚTUrx®DµŁeµźÄ]‹ž‚Ż–¾~pÉĢį.HÜQŅi“­z‡1Øč>Œ.žēł8ĒFµI½Ż‹::ŠDQāL‚v¶yļĮ{śł—čw0"1EJ6·¬W¶ųÕ©+T·źĢNy|’ū§GŠu-vŌ®5ۜ:wµĶÕĶŽG:&„ėƒē)c [Dæ‚t’Ņ֟Fņ±}€ÉģĘ|x膆‚ēø<żŲapīŹ"žļcśœŪĻ÷i¶ŗÜXŻäķÓWiv4]¬=‡é¼ąO¾ł"‰DŪvīė½)Y\[#›É N%×܇ŗĪŽ84óķžƒē$L ŪńöŌ~Ž—#īs­øPöy<“<Ļ£Q«133³ēīQĶf“tLŠĪęrlT*SßģxÆ(Ē|ż ±–8®‹ĖŚīÅųfø"„üL„ĻÓhwöĻyėĆō<R${‘§ĒŠł<$LĘ(Pł^EQčöŚ(ŠBŅ2Č'”ćŲčŖDÕtŚŽ $QB£ ½A@BA*!!2’#•!ŖhHš.a2‘Ó˜Ė‚P/瘟™0ėWƒķ(Њ’^Ƈć8L“ś4AB…A?²‘ŗŖR.dq\—©ń£,Æmņęūy’ā~ ÉårhšNą8Ŗ¦ų!üš×gi“mŚ.ōÅ£” iV+MžžŸß”ėų¤“ I–*-žžG'ÉgRL–³¬l¶@1"c9Ąõ&J)¦ĖiĪ__#—Rq} »DÕģø“Š×ż‰nD‰ū{ē–8:_ĘfP¤Ž·\…"Če’4[žå—ļpp~’—æpŒ©Ń–©ÅFy‚•õ:–2ʘ ÄžĻƒ$·qAB,É+„äŚj·>øĀKO ›Nnė8Ē)čtl*õ&ח·ø¼é·K”ģčl¶ŗśĻōa+óÜž:"6ˆŒ+8ŗØx”ŠK®Ø±Zė±üęyŹ™(ē(2xžĖ™Ė+,nŌ±¬ŗž PŠ`ØRŁ®õ•Źś]«ķÄń£:ƟFW~q(V¹" üH^W]e’¾2RQČ$ Ī^]¦Łló—O 0Ķ÷½ļ"£3åŅĀ*æ=s›k5¬DMS ÓP™(Yü›o•®ķā8ī}?ß÷Ÿg«²…빤S©äNĻ·’=×óqćdDSäžK>Ÿļx_!Ÿ_(oąūŸY0÷0ö„f,éßæņ…ĶFƒĶĶMņłüĒ6ńū¬ć )%™l–f£A«Ż&ż’±÷^O’]łßēœs]śĢņŻÕ 4€™ĮcČ%9³Ć!¹ŽTpwµĮŻP„VŠąƒž‡}֋^”ņŚ•b¹µ»\‡Ž…x n“wÕU]&«Ņēͼ÷ž£‡k2³\»B£{Q@—Ėŗ÷÷3_sŸH “@*›AR«V?ĆćGցHƒł/ą¶CŠ1D”įšl…›kŻä{21 žä›Ę>ińGü>2󉊢ˆA·‹cŁxł2ѰƩÅ*ķVŪu˜Æ•XŪźsuµEh°¼źžéæž7R*DB¾eĢżÜ"ąŁÅ2O-Všż Ó¾ūŚó¼ņāN;Ät-VzR*ż ĮŚub AE±Ņƒć<“)׿N*XR0{ā’ĒƧÓõiwzōż¬¬$(»’k>(ÖöI)…6š©J‰ŁZ™ŽÆé‡ą8JŁ ‡~ ƒŹbø‹rČył\‰¦Ńöłń»ŃĀĀõ<ŪĘsl¦§JTK%!“z±2GœÄĮiģwRō?äܵ ü”ƲTKʎČéāL¹XóÜfŗ’#—ó°TlHwB®mqģš łœĖ…«||i‰^ߏłJ`KÅłk+œ»^GH;VP’2©¤O¹ī÷¹ī$ńC„€A) Ū¶|:½>‡ē«ńß¾ßy˜l¬J)Ā$ųåG—¹pcƒ\”ćK“ī@J²Œ„„Ć=q¢¤$ɗNÜą!¶#­Ń:$ †$Y8Śh”(iŃńC–VꜿŗĢå[F’Ļ{X–Š7h˜HęÓ*‘Ńc"tČÖč(¼ĖG”ĶūƒND¶w>DvéDQN†!‚!ŜĀQpx¶Ģ §9ŗ0E„˜ćčĀ gN"ŠĢ}sR%l6»üšOx㣫 BA”XĶ]†ż³EųöK'yīŌ×}ą 2V`“”Ė%Ā0¤Ón“Ėēļiżˆ'Č8ņ®•ē/’«æJĒŁõ<šÅbń‰+ß÷ ‚ VĀJ=Į„ ĻcŪ6õ­^ü¤vA2“: Œ" ąŗī}æO†“šMŽ=ŗgQåI™Æ)mffCÜ­McÆGsO1,–šĻ¹œZœęęźż$ĪÜj ĶN.!ZGōū]Ē%W,%ń°ĶÅ[ Ö:†>[Ž-T1‘ļ÷Į*`„ˆĪN|PūŸŠšŚ Ē)W*¼šōQ\ĒEI×L(M| 3JžÖTJ%Ö762Üń£z6i„|iuƒJ©@µT$J»Ē«ß)żęņg/\£Ó󙟩1]-qxa†©ņƒoąę ’ŗXk)%ĶV—+Kėhחė¬Ō{1ē²ŃQˆe9ø9/iSK¤Œ*)%××:\¾ŻĄu=\7_{~‘¼ē0W+re©Ī{Wq]'#)G„$ĶnČĻ?¾‰RŠœēbž†RébĖų’N*Ŗ ē®ÕłųŅ2ß’Ö³œ\œ£Łķ1S)2?SE)Å+ĻŸā™“Gxļü-Žżō*ē®­rüšgNĪ„†|”ŃI”#†ūį}Ü-¹‹o7é‚i‰“āMd³QæøĢ™“‡8vxF÷„­/¤ ŁīņŁÕe†AČg××q¼b"* Ęd“ķm©Ē…ķŗ_3šūcÓMŠm5pó90m¢X ƒ%*Ÿ#7~:īk4"é”RM@ęČš®£ß6{>=a Ņ•ź Śč3~ŻA¤OžŸŗš­‰Ā0šÉĖĻ,Īqźä1l%Q–ŠÕłŒ” āz[qk¹Īß½żKkMņÅŅØšĄĮo½öž=}Œ(2qBōĪÉĘÄļQ«VŁŚŚŹö–_——T ­5A/Šæb,c R):ķv¬$ō$v©“ĘŻ%ŃNÉŹ{ž“Wß÷ LMM=0Är:Nö¼īUśžq›³Ę<×Ekƒ?h4;hc˜­•± <ļ'}N¶„·ļŌ)—ņTKyŒj)ĒāL‘F·9:·»°D&V"„$†ų~×õČy"£A,„ØÕ*ńĻ! æżp×ušÜ ādŽłQ‘·"NŖ!¤E,Ū%ŌcĀ/“ŽżXJ\×Å p½$0N!8Ÿ÷3°Łģpéś óÓŖå"‹sSčøÖ‹%,pöĀM~śöĒHӕ'ŽĢQĢēāŽ XO)‡õū~üīy>¹x›‹œ—£T.”, K*üp€eŪ8n>ie&•g#ŃBĒŻmcĆéþ÷Ó„ęģ•n­6P©×1üi*ļąŻŽ!ąŲü4 Ó,)hu}¶:}ź>R ś~H¹ Yœ©āVėķ˜4.łB𸾼ŵåM®ÜZć̱9¾÷ķÆP-å@fjEžńļ¼Ģ”¹?’ąēolŠķ‘R`[”‰I^b›zŅĮĢ#Į$cƑ¤Rø®C$”ŻīćX ?Łļgž*)Yo“łčüu–·ś”K%×I<>ĘMŪčaĄ"%^¾4–ŲÅP4EäŠåäPÓŁAa Å4qŁõ'jb*»J;"é3Žēs¢»u×õE­­:Qā‹yPDē¤sF]E ¢a‡ZŽP)øäóS厭ˆō¤Ńęƒ^R’Ս?{ļ"Kk-/‡m;I7:yV:d~¦ŹpųšēL6g… ŃhPČē³{ųuąē„“¬’+xn !ų>ĶV+sž~’ĘÖC))ZÖŖÕ]ĶŽŠė÷ŸeÆ}ļ2ó= ƒoY®ćŠn·ń‡C0†œēMŽmļū¢ēFzžäs96Ö×jĮßś˜V»Ē‘łi¾ņĢ1f§*øŽ} Sm[XR²Õźņх|xį 3UŽš¦VĪS-čśAŹÄmocecH’ŲkÉóņ™${Hš”[H,Ź3=UMæÉ±I›ˆœņ[/=Åéć‡48µ/»ņZS)—YßŲ ±µE”Px`ūdųźs§xļ“Ėüš³ø–Ķ Ļå/Ę½~s—oņĪŁĖœXœįłÓĒÉy‡ējŲ–Md4:ŅŒ>H4c§ēóž§×xļÜ Ź„*…b!dŸ‹aPJى═¢¶‘¤b‚”„(žś/>øĪ0y’Ā C#ȹ±ßƒgŠ|ż™y.ܬóŽgw(ēm^>=ĒK§csŗNoĄźV—[wšŲ–¤ŁéSĢ9œ9>K×ųōŹ——ź ‚%%Zn®¶u„ėøv§ÅłŁYŽĪUQB“Ļ9b7÷>ö°p˶±,‹F³ÉĀüüĀ8Ø—ėŗ :½ÕJ%†cź{+p„ß/W* |ßchµZ †Cœ„#iėyHbh[šōxŽsWž×CÅ^É\”É™ e £–’į$Å÷}„T|zi‰æ{ėS¾łņ3¼ņĀi00 £‡N@Fē;øŽMDÜZŽ`im‹›+›\¾¹Nd›ķ5Ī]Ū`ŗZ R.Po ćxUģ,|n‚į€įp€ē屝ŚDIw$uRaF*u鹓īIƒ…‘Tų“֘pHµdxńĢ F™š‘/źŻ‚$ó„pMŅŖE±PĄét:h­cģń.ĮĮ&?aą¹SGø³Ńā§ļ^`„Žbe£AFl6[,Æmņ—NóGßū–m…a$P‡‡R=:*‰!ēŲüā½ ¼wžµŚ4®“¹q&Ę|`’`6U2£‹#I„ŖNR®Üiqq©›Ły[eW-€©¢Ķ‘™"ē®­b0aˆkĒI·?DIɑ¹ GgĖX–b†XJE†©2ĢO—(ę-Ī^^”Õq-E.ŸĻĘÜĶźVŸ[ktąć:Š K ž:2CŲ¶EQYtƒ„$–%ĒĆąƒ›'»x“H„Śb©ŽaķĶó 'Ļćyś<ŅDŪulJ)bÆ5Ęł˜$ԁłqhb “#™cD²šIŠ”˜qOž%rŸčNŠ: ‡ČJéw ĘŃhÜö™.„š.Eš¹é)Ź„"ʈ‰€õ`:0Ąqb.VŗžEŅqŅĘ`Y7—×8ql‘½”j÷v~H)ŁŚŚ"ҚZ­ö¹šj§@VH¹ė.‘vęE"ł«Ųé÷ū˜¤">ę0³l~*…Ž"¶¶ZŌŖµŻcŸÄ§­”Ė=ŃJXʬD‰­Óķ²ŁhÄē|×q•vń\ĒÉŗż„Kя¢øųōū}¢(šHźZ ?Õ¶ķĻÖä:[­6a¤śƒ!«ė ¾łņĪ^ŗÉé£ 14y))Čē<­µj…ć‡g9}|N׏U°ó=.mnYŠnĻēŹĶ5®.­qce“;›„PäņEl[%°q…‚z+V“‰ V|ī„~cś}¢0H’ctvž“ž¤2';į\ńūZiŠG8KšģńEZķ·VÖ8ylń XœljŠ›ķ.nr±ˆRr×õq:PŅks]—|>OÆ×£Ūķāū>„R)öt8 k5IUUH‰mI„Pœær‹×ßæH¤5…B ¼żéu Ž-ųŽ·_ä7æž<šżĮcÅćI7©_ž½Ā;Ÿ\G+—œė¢,w;2O9‘įĒæ+Fēķ‰ˆŠ“×\.Ÿ²¤w¤MZkn¬4ń—¹|»c+z¾Ļ»ŸŽ ”w™*†&$… DdØ£l.*)ųŚ™EŹ—/-³Rļb[vęŻ!Xy›‚H—šū]–V[¬·†x–"ˆąé#5Ķ”łäFƒA8nŹ'tŽĘ’ßGKŅZ†|.Ļ`Šē£Ļ–Ø öjÉę2“'Õcvœ”ŽXZŪBH‰‡]m“~ÖźHK$½0ĮXymcr©ģ/ü ė*ˆ`³bہŽūQķ·ļķö½ tŅńŽ¢ 9zų$RŁxž‹ķŲ`©·ĄŽ ¤dm³É•:‘&ńGQcN»!b ŽóWWų{ß|iŌ|`āä#ŠØŽu>•?sßܞ]¬1rÆRY58 ‚‘ńåXŃ.ēy撰3­5µJ¬–8 2(q°žuęZ-‚į/—#—ĻķĪ«MųY)”.zBČāø.%!£ˆ”Öt:d©tO*_ü˜$É,‹ä!H$~„Rō{=Ā0¤X*Åź„RŅė÷iµZT«ÕcAŽ’ō ]ŗE¤ įP3ŒBź6·V7YÆ·9sāPÖ%QĪ^Xåźe6ŚCfjeē§čūŃz¾¤˜j„čõüāƒkÜZŁb³Łe«ķc;.år5>Ē|=D¢Ō(e<Ē+ī|žæóU¼\!ęāźhŪyš.æQ³[©Ņ°F8ēd`ÜŁÜ¢Tt)ęsX–ĀhC”Č3~®"āv‘‚w?žŒf»K1ļpüČį¬zŖ¤`«Łbnviŗż~¦“ż8%!«ny = CšĶ&ÓÓÓcń±Čęƒ\æ‚VĒ'2®ŻfnŖĢß¾q–wš±™Œ­¾’ķ9}t!GMc[*Ó»œ^RJzž€½užHŲ佘l®TbZ—.1ŽØcŸg=¦‰HŚÜcAH!iō"źķ­Xš5ÉŪė­>ķ®ĻÜTł®nć‘6xŽÅ³'ę n®6ć¬mćXqĄe«8ĄU¶Bė!$^®ˆAc+ĆVw€”-BmöģÄ\×fÄ’H²"[K–eƒ1ÜŁźóÓw>ćw^}–Ć 5„‰“Ė’“ŗ>Q‘˹;ŗ®/mpc¹P^ æ’b'÷CˆĒf­št®ˆńj›Ų#é`ߤć~ļmb<‰”Æb˜H‹ī÷;»UE÷7;4iʘĄ° Qs’BrkyN·ĆÜĢ s³YŃ生³Œ÷Ŗ¾wśFBrōl…D*IŅxߩ⽶ÕDŹX®ūqM>Ņ.Ķv²ńn ‰R”Ś€·Śm¾„Ī.źB–ee•DZp?IWdŽ’V.—CYõøūĮƒöĪ]‘m}c)žē‘/&’Åķg¢—ĖQÆ×™›}ā•Ģ„‰åZżĮ™x=Œ J“Ž'0Åb1īŖŽupKÅ"ĶFćĄaˆy×įŹŅ~žĮ%Ö¶ŗ T&pń<\\įOžąÕŲ1\ƐŸ½{žwĻ^¦Łź’/™©–Ø•ó}miĮ泫+¼õį%–ėm†!ä¼åJ%"įaŽs1ćāc]ŌQ÷Ć9O :ķ&JJ¼|!6‹ŻE(erŻī?†–1)¾9DZX¼q+·ź¼üĢįC§# ¹år)#ь«+Tņįy.7o­š£7ŽēĪśžc‘s-,%)•ŠXĀā?üåßQ+åŠÄzń/?’‹‡1 ¬*ūøT „č(Āqr¹›[[„aHٳó}ŸrµŠzĄėõ\‹Õz—^Ļēo/ÜąśŹʲ™›.S+(=¾õāI¦ke"­ Ćč±L>bŒøāƒs×E1ŸGYŪ$[ĒMÜęŪĢNĪÉķ‰Č„¤z ,…”.ZG„Aˆž;¹Ąā|-Ėņļ:Ž&>4ž9>O„\ Õķ³ŁņYŻģR.ę¹q§…e+”±o„(©āo Z½ˆfƏcŪ‰ÄxKóąš«^‚‰Ņē(A’AU”1„”ęĘj‹Ÿæ‰ļ}ūyJ…ž`ČZ½I»Ó§s8²0M>+z() £Ū«uB£°“F°ūńųWģ$ |č$ˆ”“—wɗ÷6…^÷Ņ}I}?LRó”E·Ó! ,ۊåŸl'·N;‘Ų‰¬h†‡g°” Ņ÷ņüÉ:sJ)†ĆŻnǶÉ )łqJx£(¢Ūķ2‘BP*•2振*åķv›~ƇLŒU&) ‚×u)äó™”ų^<Ē©H—Ķa`8ˆ;ńʲyl°īƒÖ:“)MŸI³ÕbąūDZćår ”””’JŗyĢ»)DØ\«Å å>כvÆĀ|žF³Éģģģ]y Ņa{dɦ øwĪó°,+;obŸĪęÕXR/S#ĒŚĻŅ÷-äĪ]^ā'ļ~FĒהKå89s—–¢Žčą|?ą/ž!ē.Ż$Cœ|‘ĮŠ0S-27U!Œ¢{\ŒxüßL¢JŒNkŪqpŻ\›Ż)ė?NZæŪÜB` F¤ōK›Ŗ” ©sÜ^YåćĻ®p|ń撝o±±Ł Õé0U­ą=€–ó^ÖulnŽ^ęĻžźu”‚ō½oQ«”‰¢¼ēāŚ6ļü)ļ||™B¹ŠA0äҵe¾łŹsüĘ×_¢ėū¬®o²07»÷&”ąćdbĢO”ĻO„jÜĮ³X,Ņj·ć¶ ee„éN«E­V»oWc Žm17]aŗZ䙓G’äKā¹6Žmc)AĮs ƒū®¾ˆīĒ›_#ēę35)™|d]q׍7 ޳’nR-B)Į耭V›ž`ˆkēI˜Å÷“9 åā a¤ ÕĶļ}¶«+iE¤DFü–ĢŽŚ¶­Ä+ĮÄŻGY&%w1…:€:†ó4€œŲ§½\LRÆ·üäķslµ|0­N‡rŽć·^}KYhĻ«Ķv©rž+[HĖN6äČOšPfŠOr¢ro#1’>RīP•ŪΉĖę[bķ.јm]‘]½€2`ś>kŌ›¼ņāsZ˜c±.ż1†rĮ£VĪ³ŃŚb„q-él›Lc^"ˆrž‹?NšĘ!V–R([”cĆNÆĖÕk70Nž8†zĢ rÓkO+Ąµj•Į`@ÆßßQÅĶ‚ķf3SJJÅ«dæŒõūsY°nī‚RxœÖZFd źõ:„b‘ Š2žJŹćČH!PBļ<Ē”ø†‡QD”PĄR*{~ó¾"¤¤×ėQ(°“1ŪėšĒÅ)īÅ;c<ąŽĘŗe_“ų@Ė CĶ&RŖ 'ė^Ič²§Iz»Ż¦Ūķ’s],ūįÉŻR ržĆķ;[üüƒĖ¬6ä¼\LrOāClØ,”āÓ«ėx®ĆŁKK\½¾Œåxø9ÓĒęyõŁ£ĢĶ”“ĪļŹ”"“ŃXRį:]€e)üA@!ē0ĘkÄsmn®lšĘ‡—YŗÓ Š•JCI52ʕ ”“ø-įŲOÅ×óʚĶ:^.ćäöŒ?ŅB©1b̼p]U+żĮ „ØGŃŌu@j‚(ā…3§X<“€mņp·Wī`Ūö$Ł„1†å•U~üśGœæ¾Ź?žĪ×xęä"Žå Ē*zGńÜSG腊¶!•Eµ’ćÆ_’˜Ķ­Ķv‡ß’Ī«xžK„F]G1©G)E·Ū#B\Ļ„ßļgÕ£Ļ= 2†r©D“ ¬bmmr¹¼o%Ąģ’(„Ę^Žm!‹b!7Ft'[ĘģæĮ„ćĆÜłĆ;*%łįO>!Њ¼„2²łd֞Ģqd{.±[ņĆ Ē›ņ»eģi9A`ÄXUVŁÜ^k±¹ÕaŗR ¼všpF$ö…œKŽrcyĖÉ1W˳8[āŅõ;“|-ćötifŹ.~Ņhб7‚ddzxšót¼‚o2ēät6ŗ®$Ņ+€Į@c4h汎ņÓ÷/qce‹o¾xŠZ¹@ζxćĆ«¬5|/?j÷²¦ōĖŒ qi’–‚·ܷؓxģB­łÖ³3œ½ŗ†ÅpĀ»VŸ²µ1[ĶsņČ<›—ÆßāäŃEęēf ƃ“\“¦Tšų½o?Ļ«­ļ_øĆr½ƒ2 ±•a(–-¹pk“’żĻ~Äį™"ß’o¢”@ėĬKIl„čłC®Ž^ćĘķUnÆnE±źõ[·łÆ=ĖWΜ¦P,ŠėĀówų`2QĄqlĻóp‡V³IæßĻŗ ć‰f±XäŚõė=z”|.G”H±šŃȂ̇yäĻh4ĢĢĢdŻtŽg$ÜmĻ0J–mx«ŪĪžĒš€®5…Bz½Īp0 \.™½ķq–žpČĀÜÜ]»[RJÖ××ć³?1YššĀqŻ/d ŒĻåA"[I8YB]u80 p‡r„‚J÷9Cć.«ÄhĆėļ]ąķOÆÓõ ł|!éäXH™(m “pw4Q8ä^”ŁlS¬Ō(ę\žš»/Q+ē(rń^ŸŒ’ŪV|zå6•‚ĒĢT™‹7Wųäā-–×hbCʓGēųĆļ|Hkžż_¾Éņz‹~Ćw 7¾–¤Š“Ź“®‡ß#ö/TÄh"C³Y'_(a;ī¾j®i<t·Š:Ą)L!ÕžA+6jņĀ!Į7^y ¼õŃ%޾°Ęy…µĶ.ß’ĶÆįŗ.apóöęēfq]ßXÅf|ĮDQĄ{ē.óįåž:vˆgOĮ¶l‚Hć8ߏ3Aehv„8ž*p»ī³ÖĖ«ńѵ:ƒĮę_¾ĪWŸ=ĘĀģkõĆ0dvŖĘń£ („šr^¢l·Ģź›x™ ¶ŲU…ā :$)tmūfiŒ”Z­²¼¼L”XÜ3yR’Ļē±·a@3,¤ż0 {mpZkś¾Ļp8|ØūKõŹ&¹½ÖĄI”+²E³ē‚1w½×Ń˜ķž…o7yB¤$äų9*©h6;ÜZŻāŲįéūv}6ĘDšn@«ēc[ńĘ“ŁģŠīōhw{„”4FLJEæš÷ž{†««m:ż!2‘®Õh¤–™æÄAWś&p Ņ(LŗIŌ-–@Åā![±RēÅgŽņÉ—xé™#£q½\F2oõ>¬™āÆźk\%k\s`·NīHŹ0żžfc«W¹2'q¢Hesk}‹’šWÆóĀ3G9óŌ ŠÅĀžŻŲĆ.c'ōūĆōgK—rŃ£”÷ųł‡7YŖwQa›n§‡S^@J…“Ær§ŁduõGyśÄaņžĶņZƒ­V›·>ŗD£Ń”7ćY“ø×ƒ¶Š¼łÉuĪ]ŗA…üŽo½ŹKĻ?żŠ’ƒŖĢ|ŸõŒ „ń=øŽ“ķh–e1 ¾ļS)—i64˜T_©ĖåvxO\÷0¹’TŃHŻĆes. "Óq}’ö˲˜„ŪķŅév)ķ掮µ¦×ļS*bųā.IÄų½ÆÜ¹C!ŸĒĖå0Ir¶¶¶FµZĶęĢ1ļūż>½n—™™™G ³,+ƒ%n¬ÆS«Õ&”°ĘU õ]“TØäĶ.ńÓ÷/¢,×õ°l„l“‰»q×ÕÄŌ…ČD |„,Źå¶­ųŽ7žęŌāLŒV‚HÓė)å]:½>?yūkwƒUI·€ ƒ{!@ Åłå6›±•ąÖZ‹|®ĄphsöŹ:ī/(— \¹¹Ę„›«|õ™€§”°ĻAu/›ˆe)$šw?üŒw>¹‰“=^łŹIŽžŽ•¤lÅūŸēēļž§;iYt{’§¹Ó’/–1ņŽ!Ņåh6z}žś­‹8®‡10ųį:óÓ%¾łÕ§9µ8Ļ•[wøµ²Ī‰Å‚ÕUĶĻO$!R)zŻ.Ķf‹Z­Šėz„›‡i n^.ĒĢĢLÜ*Ż#Qčt:q&Ą×Į`Ąp8ÄK½Jā0±lūŪ½ā€ŪÉeP«qÕ¤!.ßk ;J:õ„!†y„Ö¶Ztū>„Bž¾Ÿ½­$¶r(ē#J—­nDØbUŪĶcŁQPЧśāéy<šżWOńļžęü Œ×‰R‰Z]Śę£Õ1ĀĮÉŁ1$6G¼yö¶%p¼B#H™AžS.Š)w:šļ›¦*“A0 ×iQ,×bƦ{H>2 ąä™ÜS‚‰å7-ÆŹŗ¢u„ń*XIå3Š—ļųčå>‘–”«óœæ±Ęó·WyéĢ©}³ń½1łq«éņµ[üŁ_æN?T8^‰Š'x÷ģ%J9‹“‹óüŻ/ĻrłöŅÉćäbWń©¼d³^>?"IƒJŒ¬lŪAGŬ…k„"PnÕꐒļļ>£ńCžįoæČ™“Gƈ•ÕUjI• ­(K1;;ĆŚś‡eŹ÷šœ}\N„” |²Z7Q`QJe2]ķxĒ<ĻunćtÄ\ˆĻŻĘ*…»L~Ļģ” ŒxźČ4ß~łåB>›S÷»J'7ŻnŸ(”K%\+v•3tū>Ējø.t»-^{vžŸ|tėe+RՊƒž‹»uŽ„˜DŪŪ Ņ O­U,qlŁhcč遥r՘ĒĆøX€ąĖ¼ć’“g'ĢDĒc’Ü½Ē¤HÜ”b®…Ö³Sež;Rбō¶Mīīż$…`«Ł¦¾Łäéc‡īk=lÆ"®n“ųŁWŁjqs9ģ’ﯓ‰1Ļ+ <½aĄphˆ"É⇦+” S•<N«K¬m¶‘~ū•ēyńĢI”„2¾ÅƐ\rŒ³¢DŅå“Ę²,J„õ:¾ļĒdźb‘œēe˜†ń`- Š33Oü\oµZt»] …Ā=y“<‰šĶ¬ĆžŌic²5Śļ÷Éēóäų÷^Å Į`Ā~znu»]Š„ķV‹~æO­R™PAĖø3¶ĶĄ÷¹}ėŚņł<ÓÓÓT<~W*$Ėå2XēAĻ'KÉŲūBɌĢmYżĮ%–“Żūż9×FH %įŹ­5žŻya÷<~ēµēˆ"mI¾łņÓōżįČī@‚H3?[eIz¾ŽyŽI§!°l©,tĒŅ‘€Ą8}xŠß|łÓÕBĘŪRRotłōŅ*Ž—§Ž‰PRc»Œ“ ”‡g‹1_ŽQ2‘ł¢L$2Iģć³9‚Ŗļķh>†ś‘ЁßeŠļQŖŌb°{ģVķV½ŪļYieRHńĆLMÓŅŠh|XAČ\e†™J „R-įDĪ1ŁHŗ.…b!Ū8}ߟ°…¬mlņ—?y‡­ž V-£”0Ēgēø³Ńä­³7ąPØĢŽ© C:ä.I*‹” 7—' “Kk„åņƒ×ĻqīŹ2æżź³œ:ŗČŅŅmTR‹³3Ō"#Y^Yan~>Ćaź^ŖŸ×&1*¬œJĢž”£ż7j) B›„·’Œ©6µ³ņOj÷/™ĮÖĢXŽ1H`„Žāk::_e~Ŗt×öģ^c›¾÷üt™æ’ڳüÅOĻb[ e0*‰14aQ)8,L™­XŪXēłS “ūCŽæ“†Ö©7…@H3Ó9č.ČhLFD2!dŹ+·™ŖŠé ŠŅĮö<cųį›ē@*åŽcńõēOEõF—vÆĻé£ó”‹yĪ__ēŹķÖ¬~¬;§£ M1¶&³ĒéæÉ Y8®÷… æ‡ćxœ/ś0Å9DŒv½B„›ø³«ēr˜ĪUlƀ yĘtĢƟ³ŽWÉr“|O1]v9:WfŗV™Ų bŲ•¢×šš&õ‹it“;=^>sāž ›i ąXN·Ļ^ć­O®Óׯ!  }ꋆ߿Ķørż’ņ¼F)ļeÄüń{VRŅét0FS©V÷%ō>Õ)AbœWćżåĘ*ā»]ÆRŠb±ČśĘårł±ģąķ—ģ„ó`m}©DéW•6®x•r™¾ļÓl6Éåó4·¶2äĮ^ć-„ĄqDB,w=łŁYJ„Åb‘ °”ŹüAĘ Ā;TćĘ>Ā0LÄk7ŒJʚ­aeƒH>‚ äļ~ł)’é'āG!,ĖĮv<,ŪÅu=zƒŪėMĀŒ“Øw¤åŃ4 Ēv(U,ū\«–ł“?ųķī7>¼Ä•MžÓ?ä£ Ė¼sžŸ]_§Ł ±KÉøx"ƒ~/öĻĀd°Ź©’Ķ÷Å1Iż÷yµŽāoœćđyžä÷æF!g³“ŽB%ŖvR&Dņ11žf5ńyĘõP1ŖB¦Ž";˶'!Ū׫RŠvk”PØ$ļńłļ›VŪ!‰sIƒ‘1‰&Ć"K‰Š2֋G’s,Žūä?ųÉ/iõAŚ9ĪŻü„w>¹Āמ=ĪĒ—nhĮOŽü—ž;ÉWærf‡‚©’’ ˆøug“Pƒk+$eŪcß(ŠÉŖ¹ŚKfT!4±Ł\ŹĻ“”Ų–N GŅh“Rq–,ćű¼ÕćĻ’ö}žłļƒÅÅĆ\ø¶ĀĻŽż„’ńæż=6·:$s³³¬ÜYevf:Ó’²’{P›”ąŸżī«,­5˜©YZkņ7ļŻ ļ„Š ič$Ē )fG2vPcbI(ę<×!|ȊMjƒ!Æ6GŽuČĶĻ377DŽ˗Y<“ĄkĻā‡ļ\G$•n™šUеW•$żz ‰‹‰āīG2i·q"ĀńĆ%JæŗÆ‰®GĢ0LąmqĪ ‰Bė$DIm84W¢ßļQo ŹE ˆwļŻäöē=føØ”Ā(Į §šŪßųJ\=Ō£ueY±«ī’żWo²²ŽĮńŠŲĘÄāR`"=aŲøkT |ČėŸ^ćķ³W/–q\w¬›)Ęīćū¬7:\_Ś Ÿ÷X­·8kkkč(bįŠ”»b …|žB>?±_cØÖj{īŻ;¾žĢc ÅBf«E©XüÜ%z3›ׄP(Ä~6Õź’݌g@ß;w7>ŗNµ652+2“™Ķ:ļB0ųh­qÜ\ņÜG¼iٲaĄ’śg?G*…„l4š\±=ĖsĒgéīlö&ŗ“\›{Ÿ”†Ė7ļpķĘŽ…|,k+Åņzƒ’ėæ¼A½5Äu=”;ż¶»}Ŗ„‡fkwŻ,©XYßā/ÓöuĘ5™0M&RzP/Cžł|ƒr¹Ģ¹‹·ø½¾‰ēÄü”R1Ÿ%¼i%“ļū1Ī<į²=nAmÖŁIąG‡Ś‘äļ×±‡0¶ŚmŹ„ŅcsoRJšõ:®ėā&pėķ~5+ĖĖ ȓ˜|ģ*i?>VR2ŁØ×BPKŗ=:įü”K%Źåņ¾{āD'zT3حްo—/M>:k««“;dņyµZżÜ!piĢēōū}ŠÅbęYsæēčų=n4;üŪ’÷ē|rå•J¬leŁvF W‰Į”T#1 •ÄõRd„¬$Γ⟵ā{^Ēq±mĒŽÕ„”„ "GŒ©;¦ä~ƍLģ§‹üŃļæČß恔^2SMĘWŠa)±¢Nj.8^eŲ¾aŻĶeūĪīŲ¢PäćĖwøt}…?śī×8}lŽ0Ņ÷ĶĒļG‘&Œ4‡f+üÓļMį:ŃXÅ9U5Łl6™šš"ēylµz<rŽ‹K›„Am<»sc>æąi·®ČŽG#;’£/;w_ūʀcK^yŖF·?ąęŹĒē+[(Fö€Ÿæw™ó77pŪqFU<©³¤pæłŸu¤’±±m‹byŠ„f—ė?śˆĆÓ'įöz‡+·Ö°\R0Rćyyžźēprq–b~’ÄQČxŽ”°ķęWĘY£ v$­Š1Ü\oó?’o’ §0…ēyl®4¹±üś/ž>ˆ¶ĶM D‰/Äć<¾Aāū>K·oć:Õ= cū­C„ƒÄŪąqx 'óé©©XÅ«Ń L$FmĖŹĘvįŠ!ŗ½n—ņC™uņa5)‘ņÖÖ×ÉēóT«UŚ„b‘bŅeŲMhāQģ‰iÓj69tč–eŃj·™ŸŸ ‰yVĆĮ€ŪĖĖŁó'ō9ƒb?‘€æyżZ>‰””5į{1NŌń`bE1£–• löڃeŹ)ß,w/ī¤jWń’ seÓG¦yå¹#{,‡ĆĶfŸÅ…9Q"J‘tTF²¹bāoŽėł¼_Qc·s Õ¬ćęņ8nn_Ļ-ىÜD$dTdl®"FK:vP±ū®ńįG”xjĶĀ\•|.OFD‘¦¾Õę/~ų×V»LÕŖYČsr¾ĢL­‚AŃlzČ’żānr`Łõ3ĀĆŐ-;+ƒŃédŠÆ=®Ø ”ŖźŻžrĮ£wiu|Ž,Ģšē?|“Æ>{‚ž>B·ÓŁSÅāa7·‰ŖŠÖ÷(…óä'!㯠S˜ą%ŃF£’d2VfH]%Q¤'ęȏ]±ŻZŅī$ķ¤IŹ„"ĶV‡_|p‘JÉc¦ZĪT6ī÷% »ėXYīŒ¹Ÿf׬5‡øµ“ÄÜģ,µr%‹ü‹ß}‰’ć/ßEZRF±ó(ńš(}ĪŅ—°«{O>Ą0üōż«“{CŽĪWųęW™›*a4\ø¾ĀŚf‹“‡§±øUßź é 4ĀØģ=ī¦÷.R¾Ÿ”H£@ ł‘ėr§ŻåŹŪÉ{ ÅJŒ 3`II©čŃj÷š› &öR2J•ZüaH ,‡xłŌ ®%ųl©Iʅ„X|"ę_i$§Ž¢øųžĖ’xVž…پģģ %J;2Ł>®k©X¤\*įū>ż~W#½Ōdp/ŽZ±X¤ŪķƊGĮ¹ī±žēQ©Töü9­u|ļż>afŻÜ'i߯xÆ,/£lEX¶ĶģĢ A°¾¶†mŪ”J„,Ųž"ļ#]›iē””šŽ>ocĀō½]×e~v–į`šĄ€) æēxóĆ«\]iP.UāŽÅDWb’K6:%R±©Æ“2NĘn Ģ0.ƒ¾3YĢ@³I“Ūļs“bųö7Nšā³'‘JŅJ½;Œ²\Źó?żĖßeŖšēżóKüā“eж3ŗī]bŽūY'bõ ^„5Ö^®€ćęø™Żƒ*¬’ŪŚ·­˜)į$ I3j–H-“LQN“‰¹'ēņĢT D‘& CžėOßįģÅe"+Ļ‘ÅC|ļė'84[”ŽčrhvŠ>»†‡Ü}“{õtČj|iWČ>S½XMH›‘“”S×NĶæ’Į;œ91ĒL„Č;_å„g£ō®ć°ÕlÅ®¬ŠRÜos Ā0ޤ“@W ?P<`Ē½ŹT.y[Øps½MAJ,KbŠ„a„Ö…A°sė‚ķ—ˆL:„›U摒“¢÷ø|kƒ;ė-fkåēLh› Ō^AB0U«į'øjƒ”ېs&Jŗv"N¤…Y(!,šóųŁ_·¤cē³1`Bl/Ē÷_8ĘV»ƒ6¶m1 B^xz‘Æ?w×±ŠĘą9Š_|tƒ÷/mÄ’Ś£6šž#ćå$J)©Ōbšär1G/†3ÄB”6üʋĒųńæü»Ÿj‰r~śīyžŁļ}kOwįq£Ō“ė\šž?1Ćå[›„įXP§ aرM’ž¾ĀĀü —omšg?|ŸŽ0ĄŠĶF›B.·cÄŽa}īøå‡Y/afƒÕj˲£(«>fÄģ½' JJ†AšP¾MZÅ“mĀv›v»kŁcc SSSܹs‡………¬ą2ńœĘĪćĒ’'"ĶMfēęb¹ä±—ļū“;Ųė J ¶ÆC„T ƒņż Øõ£ø6c n—^ÆĒōōō}bŲ”ĄĮf³ĆŸ’č=–×ŗTkÕĢ}\YVʏœ„ OŌĘąūrŸ =ATlSœx¶f¼X!ÆĄ3§Žˆ¹Ķ{Į*S>ŹĀt™•z“÷ĪŻĄQ¹] U£k¾[2~/ć8žūQŅķ¶šņēóO>öŠĮ&ż`&ydłd6¶±A2&Čhaņµ§ŖüŽoÅ6ń­våµ:^Z”X™E©˜ßxį)®ÆŌyė£+ CØ ?¤ĻÓh6™›ŻLųÆaPÆ×©V*±ZD"aW*—QIuļW= ™–i<[šŌb•gŽĶqx¦J«ėóÉõ5īl“„š( VbF¦3Šn‰Čž s’Da$e\1±‡Ū ž:6ū@ź!÷cš•ĶSĢl\mc Sü«ų žėŁč±d¶Žé$™€b}ŁyxüēłŽ¹) ³iu}Žųč*gŽOćCЁĄV*ö\ń‡XJ±ŽõłųŅ2½¾Įór1¼”»ė½¾—x»ŒŽi“R(“Śg§ŹĮ‘Ł /ŸYäN½EØ#Ā`ˆmYœ½°Ģw^m1]+†»wĆHÓóh­qŻø:ųį…eÖŚC"J˜¤Ŗ¬ ‚ßz~Z­Frl”Ę÷æõ ?~ēĻ\Ų‘|¤÷T(é“Ū ߄ĒyīŪŽƒēyø®ĖęÖ?&ĒJ„(•Jä/Ŗ½ :®ė2 ›ū‘BĻēi·Ū4 *•Ź„rąŽBŒRĢĶͱ±± +ŒER×Åó¼$ĄTÄĪėčõū#óą±kq‡#‹‹ !9śBę`Ŗt5ĒM×jlnnrčšįGŚ5‹¢ˆN§ƒć88÷iTœržĀHsõęžŸæ~7W 6]CIs=ŌČń{Ōż©l–Ę}a¹£& G1“ÕŒw&āĪ‡Öš(āŠĻ?ż Žcǰš{ˆOC­i“{¬·†ĢNF{¢˜x0E¼ń}? ü^—\ŅłŠ:zdÉØCd¶/Äł„µßŎ>'kGeŒž±€- 5JDäØU]~ćkϳ¾ŁäŚĶĪ]¹Ķ…„MŖ•¹„čæ×—īpei7Wd«k(•«(ie‰ĀŸƒƒ«ģNŽ_šXɬ¢ü ĻĶńŁMž>¾Į‘¹*ēÆŻįw^{–gOę—^āčµ’K·ŪĮq܉–ņƒ^kjJ˜źe’:W‡„”ü“ļ~•œėDQd˜©åyśŲ kõז6øÓ°²Łg Ē vKDvOFRŸ‹TIMG!F€’‚(%Į¶² †aģu#Ł”źöyÜæßgjj*«X·ŗ>·W7‰Vń§ˆłMpĻü—/_G÷cŪžŚ¶:åŖE·7`iµÅ™ótż!Ž=ź“ ›ö½}öķ~€RĘD`dvxķך߱Ÿ&~NF¤¶0[ņü±)nÜ^cn*­ŸŻXŶ"wārł’įÆßāæūĆß"ē¹; $JJ:=KIf*ltB,©øøŌĄv\,5ņŠĀˆ²šüÓdz@%҆—Ļēŧā8 īŚAĢųˆ&U¶y<ē½”Ƕi4Y!•¤ ’āS†Iy|£ ƒŪ¶©×ėŒęq™Ēł|eY¬­­‘Ļē÷L@Ņ{²m›C ·}ÆÕj””¢T.c˜šJ¤fS‰ķ®G5Žš‡v»=!£<oł"»6©‘r¬ā¤@¢¤ˆłØ’t,lŪfjjŠĘÖAÅŚūų}%o||™æ~żÕڶcÅÄńq™Ś{BˈDōJŽ·ó™(qIĒh†Ć€¢ņżæ÷Gf3.ē½Ā„ 9…™Ć0ŠQ4Ä,ÄŃéĄĻ™`8`0šŲ•‡Ö8AĪüҦĘXdÜzĻä#%å$ƒ`L ‡ńlĶ©¹Ļ?µĄ©£‹\¹¾Äžé‡|v}…Ł™yęęŽdäaˆ½9”¢Z`<ŖÕ‘jĘH‰KdéAūnl'⤓K"ŃrDĒ·€b©ĀOŽ»ĀkĻa0čöÜø½ĮŅ:}Ą×ærŠ01.tՄ»a[ļeƒŪ«j’ėHŽ6Ÿx|ŗżĮŲꯔŽ^|f‘×\‹77ųå§·Ųhś(˲Rs¶ųą2b\Īn<Õ3c›Mü¹ēHŖy#$+ė-?˜ƒ¢b©hÄ~s{rLLLó"nļ+„0Zc ƒgKn,­óÜé#ä\›0ńĆ>üģ&ļ}¶„6¹¼=Ų0{UīɁ€āŚĄB­@ĻšŻ×Ī`?›cóSįż Ėń2ų’Ł{Ļ'»²,»ļwĪõĻæ|鑰…ByŪ]=ŻÓ3=£īކ#R$C"CT( )BR蛾ż 郂 ш"E gČß¾ĖtuyPUšH¤}Ž]wŽ>\ó^ ‰DUč@LęĖkĪŻgƽ×^KÖ[#.^¹Ķ7_|*‘‚L@¤M³;ąā•5ŗ#eZHĆÄ“ŒŌÜRåō­0Š8{ŖŠe[¹BH[GūS2?;Ó[ĒI:EAµ|æŸļŗ.ĖĖĖ;’Õl&¢žVŖ»^©„i$Ŗcćń˜ķķmfgg±,‹ĮhōX¬ēģ~ŽS‹™z×óī;ĘŻķžxžGæß§Łja¤ņĆ^Śņƒ€į`Ąģģģ]ĪC}wr„BÆ×ĖŅcwHÉĀü|>•Ѱ޻+Å1Żn7ɋ¤¼/4q77ųüĘö‹‹Ģ4IGĢ4óĪGīQ'žƒē{Žw­‘÷øōéxoĢČān«āXįśüŽ«8½¼@Å÷ >õŃŪ’üŃo>Ē?ż‹pÜ\9£2 (~MĒśĄ^”ˆiŁĒ>²‚:m䗖æ½r—BĆŽ’Z”4„Aˆeh 4½A‡ßłÖY^į,Ćqȵ[ė¼õįeZ¾ÉlcŽrµ–.”dc’B Ōź³¹¼ūšß2t~Ų ¹{3Ž„ Ą Žžä•¢Ė§×68³ņüł“ÜŁlqk½É‹OŸfģ IÕ¦\εŠsŽņ1Ł0õ¦¶ßŸµÖ‰t0Ėv ¢˜ēĻ- ¤ęķoŃ„ų~"‘V6r]šO‘ ģHB‹%5g ŌK×ī4‘2J%¼ņ¹™2–e ļZ§&TĆшb”€Öą:6æ’Ż—ųÓČ Œ B]!*½Ī»€' äqźz°söHė|ø5×q—’voČl½€Ņ0‡øŽIkڽk[mŠžĆ0H -µ6’ĻzŠ> ÷H+ī$¤­‘ƒõT†Ī/S):D±Ā”Ćq€ų„aH©ą¢m“ó+ .œZŹżC?äŹķ Zݦi°ŗŃ꬝6Õj [Ź 2Ł9$ 5šqģ޼źb6_šąćn*P÷ø~y—󙄐Ēé(Š©—,ŖuŸņüéÖLżłį¬owxśģ –iģ |ķ>‡»Ļļµv¦æŽ ‰āÆXĀ0¬‡.>pÆw[éĢ„}ÉN\O4w(dAEóU“ŗ'©-īlD*ężK×YŪźråö6[!Åņ,ż8ē쓗qZõ¤j±“p7E½z8Ż{uCņd± „Ū#ŠB֚}TŃŽłĪ«O³¶Õbm«ĶŹBƒBĮ„VŸa»¹Åp8¢R9¼N{4e¶õ$iÜ?0gɅÖ0œYœ”TpŁlö¹³Õ£=³ŁDI¢…Ģ+i“óIąŅ@+nmōørk›õę×sˆUādūܹ.œ^Ą2dhōžÉŻĢƲAµ™ZÕµ5¼••üXš­ņ÷~šot«ė=‚0ÄNÆ@H#ueå= ūÉzz¤ĄZļRWŃZ§Żd6f²®m²4“€Ļ½ż1/œ?ɅӋAĄhšĶĪņāÓo}|‹;ĶA")®ŒŌؒŌ,’»&ņ“5‘OցNØŻž˜‘Qń„¬mwųÅūŸseµĶŁåY^¹°ŒaH*“‹Wļš½o>KEÜø³ĶæųįŪDZb&nĮ£^«Odww¼*łhÅęv7Ÿc9hµĻ’B”Ą`8L§ŻÄÓEžēa§^7ūś@)f śż>ƒĮ€ŃxL©TĀq667ŁŲŲ`åäÉc@ßM}Ė‹v©Į¢€#߯“ÖøŽƒ—vV¤aHÆß`4c›fāžŸoąū j‘0»æćqĄĶµMN.ĶįŲ÷7{ؔ¢X(Šļ÷÷ É÷z £¤¤Óķ&žX†1e@ŗwm†ĮŚV‹Ė×Öų鯿Ąr<,ŪANy{LKÕ&kDģ™—ø+ĄAü}œ` ]4ŽØU]ÜT ä¾Ö@j5šŁĶ5~ųó)•ˬ6œB³›.~š1MK(­(KÉĢØ~t3Ä­~G—kw·cĀu›l”J%›d,× ~ćł9nŽŁf„”=›Ÿæw…ž8$Ņ&^©B¹ZB254Snzā<©Uš(”S»±ƒ. {< Žc:zō.2M®ė†~Hw0āå gxēć+¬n¶(yõZ™(ŒŁ“ń<÷Pķa™Ŗˆōz=<Ļ;2…­ÆÉ+:ÕØłz‰åŁ2/=µH«?āņmŽ»¼JGXv‚ü£(N@‰iąŚÖN3!„Ų ®ē$„xśŌæū§Ø•<‚čhĮ‡Ā Ą“¬­5ŽėR.•čt:¹iT+f*E~÷§Qo^āāĶJ+LiaŪ¤`Ŗė#ž€Ē 8'kVOł+%Ć×Z)ü $ L©ÓŹnÄV+iÕ·{}Ī\@ plƒÓ'ęŠZc™’JĮć’żń'ōFQ:’”t2“–SńōĖ”T&›lšask}›ZÉĮ0$—®Žę„§WؔŹĢÖŽxń Qó/’ü6›]Ī®ĢŅī¹¾¶ć–Ø܉ńėī ·ŽŃˆtÅ1*NĄ×՛k„A„m[‡’ė“Óo„£Ń˲Ēt»]ūŖŸVĖ*xÅbqĒõ-ĢĻÓlµ’ųwĢ|žŒ~”y™dē+„$ eČ{I2¶[“;ęĒ@ĮK| (,m IDAT*• £ń˜N·ĖÜÜÜĆ~8‰zYµšÓ$fÕZńłõUžųÆŽāśÆž.®÷­‚i[V>^*—‰\³×qč÷ūI<‹"¢t¾É›¢é%q,”NōŁ ~ōĪ%n®wp½"Ņ“sĢ\z'U?‹§āŽžG2 nB*®dĄ £ĒGQŒk;©yšż±R|üŁ*„r…R1”CĀHóćÉX€ēD±& U2ļwꏻevGĆA”Xy,öżżrzó^ą#VŠ(ō)XqŒÓćĆĻW¹zg@g0& GŌŖ38…ž”é ¹Ä0d¾łd/Æ€±S"7 šŠŽ˜ Į㔽;Q ļ0-­Š˜k«[4ŖE ®Ķ›|ĪŅlßż—ųōö:žėpźnʦaP«Véõūōz=źõś“¤ń>v+¢(¹OՒĒĻ ģY„±Ā¶ T¬‡1­¾Ÿ^ßJ(Ub2e&‘ŽŠ:fy¶ÄéÅ*/œ[¤Rt "u¤ē„!aŠļ'ēµz}‡ĀVŅ-²u+…!%ēO5ؔ‹“z#ʁāęVÓ°°l+>”égģ•č}²žŽ|dąéJšN»Q³PønGp eL)øµÖäҵUΟœå©“ 8¶Å ėć|<×"Š%KsęźŗĆvĪķ)Õ¹ÓØr·Ōō4ÅVēZ CB{ąséź&ēWęp,“NoĢŅÜ ēNĄÆ/ŻBė‹KƒÕõm¾øµĪ›\ačkźµ /_8ÉVkH³īœĶŠ$4S=ÖbĒödāI“yĆJ«E•ū->IĖó3\ß%Ā Rī™}Ž•¦ģHŪ½€Xé}?ė®ą#ŽzHĆĄ+T@čGó¾ģēšSFŁ“MŚ?*¦h)Īž(ćX‚Ūkl4C®ÆkŚ#E©\£:S! \G⇙YLźF™ŁČKɤ½?ŁF,¦LŌ¦ĒżœüĆBgłd@fJ7=˜nŁ #Ö¶ŗl4”¹r{›A€V!žcšģł³XVĀc<ĢŠa”K%śż>­v›r©„e'Īó_ÕÄ1 ąś!?×i0+Åsg’9£©5ę‰[ꇟŻĘ"ŽN«–!8³\aq¶Ä‰¹ jŅj0pdŻi¾O«ŻĘ˶éu»“@¤5†i2 8yņä¾Ō†“K Ο“čŽĘų~ÄÅ«›ŒCÅŠ’Ą„3 Žņx}Bž{ “D? ˜TqL8źqśt…—Ÿ?Œ) x¶Éå›U֚m¤\»¹ĮG—oŠķ8»²ĄŁ•¤ 2öCž?3Ē·šŒĘ>o*yŌӒ“ū»1ėyL~i­±-‹ī`ČhPp SņÆžņlĖ`®^”ŁéóĮåōśc„e³Ö`™¦™ ¼Ę*JŚ•Ā÷#J›“ je—nĢõõ~Øözœ[pyćĀÓĄyŠSę®:M~²f÷P/”Ź•“Žź~˜›u&=ŪO)FÅb1—åć˜rź®}ŌøYŃC¦ Zæß'Š¢Ż_Œēŗ”ŹådؘD:^¦ćō ŹčY-gš²u”ēĒė `82?7÷Įßäś¶Z=>½ŗŹėϟKīŸ‚#€Z„BĒܼu+QĄzDĒ`8d8"… Z©`;N> /„Ą‚OÆ­ņē?’i:ĢÕkQČ\Å„?„” M5ɲåĪm=Dź={Ü‘Ūqš1邐z“ųAtWéńéļB`›FŖŅ Ļ?µÄÆ/ÆåņĮ9-<=%CB«ļćY …$ÖĒ’„ńž¾?»=>†Ć–ećz„ü¼sߟwāKŗvf‚³Ķ1­ct8$ %mEglŃ B,Ū”:ć!S•*Ēq•Ā“d®rE D2¹Člo›īnÜkĄü^VņĒÖ’ŃōD›9"F!Ķ­q: åb‰žļsńŹžš{ÆÓØW‰cu` 5żõ†aP*•ŽFt{=Ē9R×õć<²9ņLĖĄ”ĘC2Nx+ˆwm²ÖZ‚0IJm$“!PĖ1øp²Ī3§š£˜8„†µ‚J+ŠŽė&-iĒa4åĪŅY˼>3“pL÷Y§–a¢”¦Rš0J‚…™2Ķ>ļ¶ŹŚÖiZ‰źœ”H½'äÉq¬&Mīš>ćń߉Fm„1K”XÄ ©Y?Œ9½Xć•ó'ųŃÆ.³Żéć–%xįü ®c1ł„±be”ĪüĘÓ\¼¾ÅĶžÄdžtŽIfń}‡mģdĘO„T°L•J%3$Ūķ­ī¹z…o<{š­VŸf¦7séŚ:z™RŃ£äZlt†tśq¬é†(ĄµM^8·Č3§ęØW=ʇž`LōNĄźVrÕąéS3\8·‚”‚v»*z„²äŽC±X<¼‚Oę2RK«ę«ĖvĒ“Z-¢(²,„”¬ÆÆĒq2Œ›Ī¾Ö @fÕ©‹ā˜( ‡9w?£g‡aX–…•ś9dIx6æ_wõ8 Ī”R‹ÅD%¬Ń@ńĻBŠjµ@©X|ČƒŁŖüÕ/>DϜ=1Łī³sÕjµ’ó”’r¹|¼QnŠ^< čõūT*•Ä׌½J\Q¤xęĢ23Õ ¦eŅl÷ųŁū×x÷ӛōĒ!Āp‰#E¬C !±m Ė4&Ņ»©Ėœ0e¦q4ęĶ;c§! zƒć ¤v/z«Ö8®Ķ„+·¹xå•RĪ ˜¢•„ō«“ū‘‰/ł1aŒ4’īqųha„żżrÖD¦{<īćøÅ„†ŗKIːņ8<1Ӝ/1;”ČČŬ²Æ4aE1RÄhæ‡2 ųQĢ`uŒmŚ‹& ‘¤,½fЦxy)”{ŗ÷JüµJIv>JMu†„@Ŋ0 (U*4Ź3‰,ļ8@)Ao0¤člw†4»}Õ2*åwF d„¾Ÿ“½„ÄKÖW%yLųĻįź­uŠžĖĀlķ˜;Z»hrĻD=(JL§7äó[[¬,ĪLuꎾ^ū¾ŽćÄpŅIü\×Å˵²ŁcrµSį#yß 3y ›·×›†äÄ\™ööĻĆ4QŖ†ģ±zr_Q#—qT+źņżļ<Ėźś6ž³ĢÓgWSš0ö>¹ŗŹg77p]Ɛ†Épš×o}Āļ|óY–ęgņŸńüS œ\¬ńĻ’üC†a<ŁŲ4H%óxUZsļ›tÄIb©RGq$A¬ŲīōŃZ17[į?ž­—!’ģO~N”Pąϟęŧ™õV§Ļčņm:żEĻay®Į|­ČL­ĄŹ|jŃ%Š“Y«jŁć·^;Ē``›P*ŲłfiŁöd»×aÜĖ>4 ŻÜÄv]¤tǃ/-ōYĖn¬¶óƧØo€ķøX–“X )ŃH ō8ŗŹO>øA„ZĆ0,”e#M“‚µßĻŲi’“čLż«”uļnĄćX‰Ś³`…Ą°M Ó¦`›|ćŁ<ŪāŅM.^Ū@š£ń„b<Ū¦;q{}›3'ęwˆtŃg\ę±ļć‡!N:|÷UØ`g\ŻÕm.}q“k·×łžw^MdĆč@ńHŸ/ŠØ™©ŚŒ‚t3Õɹ„‘āśZ›;mN-5ˆ’dŚć(‚)ī“Nż?ī¶dė¢Ż`Ū&Ķö€w?¹‚c™|óÅóX–I¹čŃźł“{«„QHĒøŽƒ–™ÓDõķÉńšcÉ^śUŅŁh6YØ9½\ǐ‰ĀK–ÜI)h÷GüĶŪ—GąŁ6#_ǚ0‚«·š|ć…C ¢8łL?ˆ±-ƒ3Ė>ų|kŖB˜0¤’;¦Ķ5:™AŃ:§))„ńĒ# ”#ÅŅL ×2Łl÷hŌJĢÖJRš÷ļ› .j×6‰½8u–ęźłü6óµ"„‚ĖL­ÄŲ bĶ•;Ū|vc)5o¼ųÕr1Łü•:TPξζ,fj5Ć!kėėŌkµ|£zœļķ8šĆòš„ÉOŽ¹ÄŁ•N.ĪŻ_ņŗ[ZkĀ0䏾ū ŻAĄÆ.ŻNō죐”Rtūc )Ń::ņū›=³b”@†ŒF£\Ć> ģ†aŠķõrąŻkDzL¤!łŻo½D½VĀ”q¬ņ$c~¦Œmš˜†d³9 Ł””Ų᱓ō=9Ž3°¤æ­‘ä’üćŸńś³Ė|÷×r~nņŒ®cqb”ĪVw”`¦hó½×ĪŠØ' YՒG“ϬŁÉÅf+._¬v±Ļu±gĆ4žė¼ŗ=)Y?ų³,ĢĪą‡ćшłZ™“KQ¤0 ¹§Ē{|fҵW.zhĶæœz‡Ņ.šp0Ą9¤Æ4 Ö76PqŒŠcŹÕź£_ Rę ³P($‰ß> Œćœūż@InJė-—Ė4›M‚ `nvöLsæ,q;n­Žć`F"A›ėŽą˜©…N Hć ąę­[8ŽƒėyļÓ~æēā8?÷?üÉ»lw†œ\šć?ū[ߦV.$Ļ’Kī£ėŗ„ARdŗ”—é9Į`Ą ×£˜vŽÄ„/ŸČ.‡!­f3ļĀ4RWņ/-ņ„fŗBśż>wÖÖ0 Ó4™©ÕŹ”RŒR“ĶäłiŪB8½4‹c™*Ī)ożé™Ó³(­ųÉÆæąĻ,qöDƒµķ.®)G*”k=q’{ŠõEī՚ŌiĒ„7šńƒ€bŃŹ TÓ`“>»Éµ[›”ŠĮ0NÜĶ õJŠœ"‹Ųėer/ “Ū›Ų–ƒē–2„F¢99_d¦äšž•­D‰6óCļ‚Ś!æ~7‚—Š;”‡Ž]X»LIMć?ˆyķ©9“”¼ÓŚd®ę²T³1‹åj*•;ĶEģm\‰]';… ÷¹q_õŖźnÉŅÉ )šÜ½0äżK7xåŁÓ=;]ō‚ö0¢ßsz”ĢŠ÷łāśgWęU¬8:°ĮÖō m;aŅét(•Jɐāc줼ņģ®ÜŚäśj“V? Ż³²ųčĻm¶VąņÕŪæÕFJƒįŲg0 ņa͇µ¶Œ“²»¹µ…R*iė§Ļ3CFć1ćш'NģLäR†!%zyG²—Ń62%ƔD*" CL[Ę.>š“žĒ£Ą h…6]ŌxĢŹņ<~ä›zf˜%ŅżS ‰iJ$Ū”,5*Ȕ®³›ž0ōCŖ%‹’ņ_eD¼żéZ>ų˜wUµ‚8d®ć96JĢĪT£ˆ(®äRģųŲ Žw’ĢŅšG›|J!p‡‘ļćzŽ”†J0XXX@¤]†»UƒmŃš‚ēŃn·éõzTRÕ¢,ђéz¹\Ī ¼ä„aŠj·ó$RNUæ.3aŁPz­^gc}=§Ł=h‡bĒüÉ\…eŪ Żŗß'ō}D±x gt&Čžė°±Żį’ūĖ·h÷G<ž4ļßdi¾v×īįi×ōżč÷ūøaˆ±Ń߯®§?0™O÷ū>35yĢ|‹šĶ&ssswķHīž³išĢĪĪīPĀĢŗžŪĶ&¶mc„³Gy¾„¦ik±K,ÆįÄĆįŪŲ–A¹`³8Sä³ÕN"ń­“.ČÄfīśżł·f ƒÓ“é }‚0¦Œ Jē} CņOžĶOXŻźƒic›6–e'ŅÕĘD%V¤!qŸŌØéó^g):ŻM ‹HŪcš‚×ĪĻR+Ś“>WW»X¶HAĪä3ōŽ\^č/éfģüC¢Ŗ‰Ó9Ś$_ŹĢušĒÄĀqL¤į$üI)øv{“KWosęÄü—JķvmÅqĢĢĢ Z\ĻĆ0Ķü%SA@«Łd~nn—W ‘Tw˜Ģģ— ŽˆnßO‘…ȇö„˜āi?™yĮEųēēJ “”]3}–‘ĢM“zC>»±‰™š]ŻXļąŁ&Ėó5ŹÅ»SK,Óą·^»€ėX@ĀÆž³·ÆēÉSb~ᘊo>{‚å„%ü Œ’™Ņī[Žó}Õ@s{„uņ®<€¢ėŗČ”‹®µf<)E)u">īؘ•¼Bv§C0 ^Æ'óZZ'Ņ„©»ūƒœßtEšt8¼\.m…(2ZO©TāśõėHÓLÄ>\÷ łvp)†i³KKŁį9.žÓ_ńWæü˜•„9žĒ¼A„äį8Ö¾ącZŖY)Å0U™RRI%nr˜†‘H·ŽF¹¼ó~ŗ¬8"¤ÄńLiLf­¤IGej՗u¬ŗķ-\×£T®—k“[ėh ³óK„±ęķK¼v~–ļæv‚÷+.o~ŗŽk›S $łĢ(ŠsµP™³•vš;fÆņū™€)3Z«Į…sD:ęŅ6Ū$ˆāܖ4/žmp¢QäēŸÜ”Õ ‰”"PH‘©`‰¼š½ČčŽ›ŠŻ Æ[PƒĢ „aR(•Łźör@½čŃźÉŒ†}Ö·Ö)/±4W§Q+ €LßW×ó‡ G#Ŗé&ņø‚ģ܂(ę[Ɯ§ŁšĖ÷æąę&acHPń#8±“Āč:6g—gø¾ÖʶŠ­LĖ 5²Żīsneįį!Ó¤T(°½½M«ÕŹA‰‚BŚŅ×»0Āni»»)Ėi •’ĖÓ§g¹z{“ķ­.vZ‰†D ‚1„r'Ēń¾‘ߣbōłŪß’[˜–`›&Aņńg7ivGl“śŒe'åŌRƒ7^u …¤ąZ{Ø*KL ¢϶ó!ķܗRŠJ¹œÓ°lĒIŸ¤dķĪVNœŲA;žż$y—Ėå2åR‰ inocŁ6³ƒ”B$pž"O\ŗ]śĆ!•tßx~[ĒćĖ•J¢"†loosje…ų$Y÷Ūs³Žä}A™t·<×į/~śkžź—ó?’7Ū’ŲNBåAļ?KcAŅŽŚ" C Å"3FÓ³Bżžg”PĄ’v·K¹Tڧˆµ3ĻC)j• ·WWyżʉf«E§Ż¦R­R«Vµ“ÄÜĻyO†ŲĖ 3¼öĢ õZ‰(Œč|6ۃŌ3E”µĢ7Ģ8ŽŅœ8ō»ŖsŖ”ČŸ£–6Ž˜0Ž‘ŅĄ2 .~~iŲHÓĀ“¬x;ĮGV̾wpš‰ÓmoćJX¶‹`X‚™¹EĘ£wn]„X›æžl“ß~y™ž(@ī…Ń9ųxžtzŁįƒ+Ūōż”óķ„6‘²RZQöLlÓd£3d¾ę²Ž£•f¾ęńƳó¬·”]‹WĪĻóÖ§k¼}qÓ0BšĖOÖp,ƒÕ­>q6b$×nNR›]Óž»œrļÕü:Kzī] :o2Ł®‹ÖšvĻÓX¶“!ķX˜)įy'g©— )z|€į>`¦Ń Õj±¹µÅĢĢL:«šxšleŹN*|ćų|ļ›Ļņ'ó+Ž|ļ2?ųĶ—qūų7Ą<ˆĮĖϜäĢŹśÓø~§e TšŹ³§yķ¹3„aōP« (…ėy,//ēėėėų¾O½^?І9} ™Th®Ænņļžś-zI½1‹eŁHĆĄ¤ÄŸ ‚ć+PqÄkϜAÅn©@†ü»æł9Ÿ^]g½=¢Ž˜Ć”&¶ėą9&ß}ł4Æ^XĘā“z–hÆģ–łž¦įł~ČæūÉū||u ĻKA‹€ 1Ր—Īž Öų1-dhĶüģ,ėŌšÜlĒÉ)XrŚø.ŽŁnµØW«ĒJHܳ…Ą¶,ū>_\¹²‡fū Ļ& CŚ•r™jµšWŗæŽąc‡1›Ölmnrbeeb%÷€×<żżƒTyź~÷ĀX)Ö·ŗÜŁhńާWųąÓėüü„‚“ŖŅé fś÷±R4›MF£µz/Ķ?vē)Ł›ƒ  Łjåkā¾€—”øŽCąūSó‰w»OJkś½żĮ×u9}śt.+lr¶IĮ ?ā³ė«DŃ+hĄul*—~sˆ„S6”!Ņ1ī€ģuLy÷K ‰W,Ńź%^NåbbĀśö'7ķJf“«ģ—@§¶*Žéu[‹ ĖŚ1/"…Äu‹Ģ/¦ŻŚd£ŪE©ežõO®«Ė4v/“g(8µPįĀJ•+wŗt'独m÷‰ŅLĄJ:3ų÷~ė) !¹½Õeq¦Ä~}ĻW»ÜŁjóÆžęc“0hfŹŸ_/ÖŪĆüĀDf]$-0žšü×’KBĮŹŠ¹ÜBöۜ¾t±?āxÅGŗŃĒq˜̹”’·÷š§ ĻÉ}²MÓ²ŻO3o IDAT‡©d¢Īń-ŒĒ>µ¢‹!Į²L\Ē:“Ųō°§ēyH)ŁŚÜÄó¼¤ru˜LÕĆ9`ėö0‡k[øŽE±ąŃlwY^˜Mi"{&Q„?ī”(™æ@væ žÅLµČ»_§Tp8½PĒsLVgņł0;DÓļY֮ΨvĆĮ€ā—(¹d §!%¦aŠķŲīōłŃ[ņęÆ/ńņ š %F~<įŸJ‘¶t¢ū’Ø„Qb;Bą‡Ų¶»#mf4Y{H“K×nńł•ė¬ouųćæ~kC ·Œ’R©–EĆ$c®ŻZćgļ}Į»Ÿ\Ås-F~Ąf«KŃsrIēqųē’ž—||uĒMŖeq¬}Āa›5‰ć8œ<±ōX;„gē”™™=ˆ ßī÷, źĆшB”pģ“Ö=]ˆŌ¹ßļc™fR\ŚeņwŲĆ0 ŠÅ"ƒĮ€Ķ­-Hē¾Ž¦¤;<Ÿ”¢? „d{k‹ŅPϲ{6 yńčĖī£4ŪĶ?÷"WoÆńā…3üĆ?üMž=»¼Ó4Żć666FōZķv®t5?7—ļ÷»ó³ūÉ-²Æć˜V»Ķl£‘Č/ßļ½Õšb±ČĘęf>“~7ŖB0év»,//ć¦]}qČ"v¶× Fcž÷’ēoš#0„ę©“ x–ĮŠø²ŚJ%¦e®x‡!Z LÓ:0ŠŁU·Dé Š‹Ģ—MΟZ 7óÆ’ņ=ī4ĒX¶“Ōp0y^“9ėū’( é÷:KU ĖŽŪ•JA‚Ēõšż!aąk…ķ8łų|•ן?GĮ±Ø< ¶‰Rš,Th˜HKĆx°ĪWŽqh™Øl9¶Åµ;->ŗ|æó)±UĆõZ[>d>ö/<Ž­ė"„$FŒGCJå*F:»¦õĪNwBKM·%°-‡J½Į°×„ŪlR®Ö»ā¦!$ŻAˆÖÉ|čzkȍWW»Øx×~"4ļ_é¤Κ?}ó:H1QGL9A"UōŅB§ KNŻ»ōk9c‘;”’‡ 4BÄd@‡d`Ē4•ś,żn‹AæƒėQB²4W§xr†æyē"µ¢KÅ|’Ū/2ū,ĢÖŲjw™© –ēÕJa3v›śĢĢcoR(„Ą4$—®®ń̹%¤|“穵Ę4 ęźeź"­‰¢/Mģö}ü²Īb¢‚tļ ŖpåęśÓ"#Æ<÷4ß~õyJ ?ˆŃBb¤ņ®šT¢pWĖ’kÉl’čtßÕ `”iU¦]¼i³BĆ01 3ÆŖ*­ˆĀˆ—Ÿ^ā÷æu>ĘY1CĮķ&c?$ėf[¦ä×ŸŽą®ņĢÉ:æ÷W™oŌ‘f2ė‘ubāX=öĻܐ’™Fƒ;«« }ćˆä»§ĮO:EE¬olp"­hļ·Å¹[ÜDJÉ`0 ßļÓh4š<ļČ}žÄT‚+EcfÓ0脉īQKń>.Ą5!3ļÓn·cGĒɝŅc„ču»„qL©XÄK„žwwŹw$špąīQNłŪ§k?_ÄZ3 ˜K•£²NĪžŠs÷·&w'¼JkZ­ĖKK‡š«RJ133ĆĘĘ‹wńӉ¢ˆ^ÆĒB rÕķ§q¤ųąŅ Å$Ń/¹.žc¢“¦Vv™­Ųh˜¦Ī wcaX“õt!)‰ÕĒĀžśżUåRń X¦ "Q…’9ۘšłøg§,Ežx@ąūK¦YJūU²żEȤk"¤A±\# }śŻŽWĄóŠ(­R›¬+1Lč~ųĪ ¤˜ŠS³Ļ–H0’šśžuµi#Ė)‘ŸŌŌW¤Ā™œń×·ōń@ČdóŲiž• d)Jå£ŃAæƒa¹Ų¦Ķ…“sĢær†Ė76ųāŚ-Žžą2•R‘Ī`Lµč^.!Ļ£Łl~eŹŚQ¬˜oTxķ¹s¼ś6=`–ÉčYęńlĘ{¤ٹ9eæSqBdˆŒł—Ć ųŁ{Ÿńß}ˆc'Axiy‰ļ½ńēOĻóÖWx’³UB'eUuśŚ 4™ČבŽń8$AÓ²‡¤]Ét£Ń;0•Ҧ4 t”FbĶł•ßzn)$kŪ~ųӏøµŃ¤ģ9¬owؔ:ż1A¤Ņ ;ń'8æ2ˉ„‚0"Śehöøw>„Ä©gyıBģp…OĒ¶ŁŽŽN(Y¶šÜ #„2śb•0Rfād-„B…DL@;mŸ€‡³¦’įĆLIO¢…Ž”L’fH‘ ši™ąĶ“‹eĪ-•ł‹·.³ŁźcŠGH«Č Š)WjD*¦\v' UŀFźˆj„H”¶ÕæJĻ5`ķ“ŪQÄbZ­}XļcÖMī÷ūōĀV+Ÿ )—Ėļtõ ļŹ4/Ž÷}¶··•+))‹Gāõq ų#%ÕJ…^ƗKŖ~=ĮZ9c“RŲ–ÅöÖ‘RĢŌj8Ž“E;©T³‚›·o3č÷)–ː®;±k0üČiĻB°¶¾ĪüÜår97’»×®Ņš^ÆĒp8̩ٕJ%Ö2-ŹR`„TŽżŃ<*±ĶV‹ŁFcgń,}Ÿ³³“Z­œRv$@M€ēŁųq"éŚķŠqāž].9Ģ× |~«IĪ5Ö¤ŹbśČÖÕ\ĶćĢ\K7›Œ"Ē6õ­”Šāä’t,&ĘÜśĖļk0”ŃJå/•9ŽŁ™ŽI2óĮŒ”*u‚`LæßM|W,D£ŲaŗžŽTs Ø&Ŗœši’©.‡ŗĖC˰ˆ–¹ńāņ U•=ĪĢ1= īõŁ9:Ķ-.__ć³kküöėēyīÜs3ef*Ežįßž.’÷æ’9_\_#BΟYB"łSJQ«VŁjµ˜›ŻÓ6>Žą~Š#¢ÆDöØļYv½2•J}’ņužÕŸ½I«7¢ąŗ–…Ö‚ÅF™§O-²µ¹Åv/¤ļ‡ÜŚčó«On" ‰eZX¦• «=Šå*Zi,CšŌŹ,ՒĒÅ+«|ė…Ó)łė_}Awč£M„Ą²Č«Y%ćqFžz$B:!i‰Š‰kÖUnR%eB‘ŗt}ƒ‹_¬!L!-‚0Ę0,¤Th%S ‚(F)ˆµĀ•Ļž™ćÅó'8wę$~J‚ņ‘Ž3)é¦ĘyĖ‹‹¹IßĆXŸÓ ^¹T¢Z©ä?iw»Ø4-–Jx®‹eŪ‡hõĒcŗż>+++9)W«Ē ü3”‚ о¶V¤;hMq"ĄŒ}ŸF£ć8Äq¼gžAi‡lnnę{j2J>;ј=Ņī$Ō˚ČbļībLwā(¢ŻķāŲ6ĖKKČTRwsk+ –eQÆ%Rėćń˜v»W($¾:xī®ė2ˆ¢hGQmL»®Ėx4zĄqTC„3J! ƒ”TŠ!%+ Un·hö£|dŠōg‘ÄnƐl4ūܼÓÄv]lŪ& ¢Š'²L“²ņ9S•ĶżMgõ_r–mcŪī}8&3#"÷ļKTŗ¦æOcŪ.–eÓimŃļ¶q ¤ĢX»ļSŗĪļ}¶ūƒ öĖö?M”XĢæź 9ĀkŚ1“”*µ¦å0tłÅ‡×ø|mæóżW™­–8·²Ą«Ļ?Å?ż·?f~¶Ź(9¹Ō`¦Z"ŠāUÖĒI5}’¾­ō>×q˜ė~<žĆĪĒćVÅĻŌ*dJ³ś>ķž_}ō½QČĀl#U͐ÉPX³Ļp|ƒ|ó)ž=w’foĢ»ŸŽäĘz0]B āX£TĀżĒ>Ė3UN/Ļ0<ūŌ lÓäĆĖ7°-ƒ’'(øv‰EąGI«_¦*Oŗ?FL‡g!¦ßĀ µcŗĆ* ƒB”„R1*V(#MR1Z b‹š§V||½ĶŠ }~ēµ3|盯Ę1¾~åži¦¶Óķõ8{ö,Q>TZŅną%Yl]Z˜ųu{=VļÜaa~Ļ;øÆ“,ÓÄ4 „ēqņäɤ̲ø±R ū}–––ŽtĘåq)ōÄq Bų>ż^/¹6)9±²‚mš9ń^Ō–b”ūcLƍX©|®įHŸ™Ö4źuš­µju2i¦ü C¢0¤VÆS,R5Įˆr±Hµ\Ī£Źh4bkk+_˧NJŒåšÜµÖ˜¦‰ćŗ‰²Zŗ®×Åuœ¤c˜®k!å]‘ːГKʐX–…)M” i÷F8¦d¦ģ±>ó#\Yh –”1 N¢¬Ŗ£Ń8nR„aS™»˜ź|čDˆūĻaäźŪ^ąĶĀŌg„ćx˜–Š„¦;!÷Y¬r"™źģ¹4ƒ‘'äˆ7® éI!P2I6½B‰Ń°‡WŖ²ŻļóæžĖŸńŸžĪKœ91Ė}ļ5^ī ’ņ‡oņOžĶų£ļ½Źļ~ū„WÖ“Ö¹JĀ}æN© PEŒĒć_·ó€Ī²GR-?ń£×¶1 ™+C<Źdz?7«ĪIÅ|üŁ Žüčsš­–mńüS§8½Ü V.`š½”Ļ'W7h÷}žÅŸżš.lóņ3§ųÖKgā&_Üéa™œ_”Šut"s¼2_”\t`A¢’’śs§™Ÿ©`I£^ıM~łį Žż|;Ł„¤LLJt®\ńˆxŒw‹ķÓń¤T,2č÷wN©¦Ēł³ŚÅ‘>®{l¦i2)Lł9|Ußż‰* d80Ak"„˜ŸŸĻ“y„Ō—Ŗ>ķF§ć!Ķź!°m›¹¹9:h˜Ü„s!Ņ0°LĻóØ„āYg÷zĶī‰ķ8,--åńezģAĪ=‹iÕŌT`8į[Ķ&z  ‡{čWw•ķ½€¶Żīsg»O£^ÔШz k[žü­Ė”<DZ±,ÉtU~oŁõ0׫£)MT ćA-åjƒn»‰ÖqŚ•ž‡¾?źu•Ź•ĀõŠ˜–ư×Ę0ClĒĮ4̓ß'½_=óؒ_ņŽ= Gü2¤™Œ K„LRĆ0°Lƒr¹L»üõŪ—Ø_ŗĮļ}ū9ęf*üćæūŪü’ęĒüųW—˜©UłĘ‹ēūĮfAF£µ“•ß Āqˆ¢ˆž7ŌnÆĒ¹³gwlžĒšH‰‚VoČūŸ^ćÖś6K³uЇŁz…SĖÄ°ķm¦ŁZˆc…iF>~śīEžāēļS©Txõłs¼ņģiN.Ī`™2éfh…ēڬĢUł“_|FX©p{{Č͟\D‘ø·‹… S%R|¦apīÄ æżźSŒĆh"W*ĆqĄüL9’ó­.ļ|rŪ+ęķ|„R)…š ėa*ī.w¾“ÅK:«Ē„Šk` IĮ±ivnj#Mä¹4;–fhĢ˜¢4!łŖŽ'•š®ĶĪĪ>6”,Łģt»IzIą( ĒTJ„Gj˜ŻćJµšb'Üpė+ >”Ö„¾O«Õbii ¹jp¤ įaܧÜń\JĘ]ėŠĄøWg?@ņPŪLUpĻu±-‹­ķmßēä©SÉąóčŪ=<’eŻ÷Éæ ®ÜŚ X,"¤Ą³MUĘ~ȕ;MV·=mŽq]/•SŻ“Ģķ ]¢(`8ģcY6®[Lę?¦£öc(ō±Tdž¤Z›e0ģ0 °Ėvt¾÷zf÷cŠł€<„‡›qI‡M „0ŒÄ‡ˆ-ĮźvŸ?’ÅE~ėõ§p,“gN/rg£Ķ»ÆšĘKOŹXPšÅ’RR©VÄBą‡į#©– ™ŹÉ ø¶ŗÅĻż)×W·čB>üģaQp-žūōN.Ķ¢”NŖ`£×F¾[€ęā•Ū¼ń*ßyży¾óŚ–gėDJ1ū“»!®cć9·×Zlwŗ„¾Š…¦i糓źDŚŚ‚²gpb¶R`¦ŖÓISœJ¶J!pm“Ļ/±ŻŅėéœ:iÓ>Ē/öżŠ‰kQ/DüÖ+gX\h`™×n­!£qH­ZDiņJčWżˆĀ0”)™ę#ļ²NĒ9)’÷+3ń;ĢēÄqŒ4ĶŻ©ćŠO»NĮó°m›v»Ķh8ƒ+×ץæųÆßs>0Ŗ¤Ā¤†ĶF‹—Ÿ{œ'bie•8Šš}Ÿ$Mq›‰JĖ «t{ƒLrråxĄCU$‰e+ā8A5Чžk³ŗÄśV‡‹ k¹„m)¶š<Ē"š\jÕ"É©‹‹tū!OŻGl kõhj|P?jUŠ!§Ģ¶mćņĪ…5.-5™ž(0S+³ß®ė|朧ū½o†>É=:ŸÜϾÓŲø³ė‘$ ᠟%!iJ©Xܖå½Ė×÷ƒ óbč÷‰ćŪq²‘’Żį|—9÷§½­ŪqTŃjµˆā8sĆNSŹÅ"N'‹įĘ|.ž½DSt.A;䣌Ēg»¤”ų¾O»ŻĪŒ.¦ø®›™_Ž$°W"ćƒeęÅ?łĶN]\„Z­Œņ)×Sģ›,e¦vŹq€¶Mz%išäūxo~ćķāĀĪBŖÖš°ßEM±l7+;k_ˆ¼US(WŲZ_įvZVcņ9!Č ! %Zf–’Fa¤iń›ÓW9qxŻ~D³Ż£Xš(ƒ].Õw˜]×Åõ<źõ:Չ‰ęŠ.„Čf‡ėõl¶vį- CtšfęŸRāoųŽ-K²±Õęæüü>¼¼DećÅJĄtµÄL­ČŹf‡0É$ņŠ× č†ƒĮ€‹ «}ćē9ydžååŚķ6„r™B”€mۣѧļ’īBžęgﳓ¹‰I’\e[5" 0B”Ŷ–{§ńŹ[WHŅ”N/«ŠV—r`qłś ¾ēń܇YŪjqm¹AÅ|’[_B˜k4Y«g*“3—Ęė3"£ a0¹;­±|źż›-ø²Šo ?4ÉWž>Ędm⑯øŻilBPo4˜ØV©T«÷%™Ü- qēÉŗe)”,ÜXfyuT Ž>@w- ¼ól( ųA@Ētŗ]µ‰ „”4 ¶¢hDŠžŹeÜTL”Ćsq‡+ųķŗ?{}m8Ėßj·±†‘B`[VÖ•ŅŸ?æ›/ā>s„r™p0ÉT:¶Ź{§ŻFę¤ū{¦eńև—8}q™J%2/ĢŁJPpf'‹ż~Ēqp\,U? Ÿ?2l҉œ•t­eöļ6]&'J”—rĮ»+ēāBՉ Ķ&«ėėĢLOß÷€¼wdēxA)ŠhµŪ÷ÅłTH(ųϜŹ~yŠĆū&$‚f7«P:–ĶF’$åå§f‰ć”ó ™¹Ö  iŠĘĒ ½~^?ĄA§œ¾pƒv?A 8e‰s—ÆsžŹ n¬nQ(V@f\ƒńz4š‡ ÓQXįĢÕ5ęēfؔФšG~Œęvń˲,śaČ`0`vvö¾Ŗ<—ßœŗČŚf0JųĘsOP«so3RĖ“JŅD¼łĮYV6Ō[]V·ŚŌ›MŽĻOšµēŸåšžY ?ćŽÜćū»Yā5՚$‰YYß ŁpśĀ—7höcJĖōŁk4Ū}*žēæ{××5Nbŗ.›.–ķpØ\ÉČZ–•Åéń…ų“^®ćŠķųŪWŽdm³ĮуsX–`j¢Œļy$IŹņŚ&J)ź­6Õbļ|żĖ{&‰–eŃét(•JŁOŗDēeR¢ćń‘Č>īļā8™J©=eŽG ŖTüųõŠd`U* %BfZß³˜©ś|ti…•Ķ6ķÆpu­C“ēZ “‘“Ŗ‡ĻŌö³µķĶd0 ³‘/ōś=ƒ~PĄv2²łųِϒó/nĻ'’™é$K öMUń\;÷cø;ĘHCµ\fńśõQėža}VŪ¶ ‚€n·›ĶNŹĆK Į”ł)Žœ!IRf'+H•Ļd†A ińÜńž?9cK¦&JÄIB'S%‹Æł’ļßæC¬-ž92Ķ“‡§8{u“'YXi€HGJV–cØwR^?³N)„Ud uR>ü^„$µj…ÓgVyżŌeŗčE!Ź„€$IY\k†„µõ6“ÕāńW”Ź*ĝF‡Ž Ā‹s—opya…æ|’RŃĻ}ānõ!1¹øäÓuÓl„øz}•üģ —7łÓšµj Dz°­<‘Ō™MĪ25Q"šŻŪ>'af#8yg(7žE2Rü¢Ē6„Żn#ņł^ ×ulĪ^Yb­9 Ō|d`B’ķĻA”šĮ„UZ½˜É’—.ä(ßJMŠ-¬Ń¹–=&b‡¬ I5µ’Ē Œ‰RčwŪ$iBP(cŪ.=cņy®dN“B‚ŗvKłßłž}OĶ )%‹×ÆS)—©V«£×UR>ōĻ:ģx$ZFѶŧøviŖGĪšŹR£ƒ;š3RæÖšĮ`€I:ƒ„z+å—ļ\`i­1šżūj\^\įņõUj•2Rh„”ŲJRš&+ežzģ_zü0żAų©ƒĢ­fs·~MßFEDzi¢ŁæÆŹŌD‘kMšķæ|÷ȀĶV‹n·KµR&M5®csžŚ2—V™›™ Xš9~ĄĆ÷,śaċĻ˼E}~sź*ŽķŠ Į²­|¼o[jP™Üša·¢Ån9Āķ¹X@Œex?‹Cyge¶g·4±#Ū'ć U6:(5¶„)OŌ8uöGĪāūĮCū RŽžč^X`³ŽįŸżWß”TōG’Üa,ó}Ÿr©DEßæē„rx]mKqįŚ2ƾqŽ­vˆėł‘ß¶Ś/=uēŸ<„ćX|—¢ļ”ĶŸˆļyTĖ>ĶVµ&OŸįwæńūÓ«*Ą½>æ|ć=>¼²BŖ)År%­ł'J’Ģm9L‰’ˆ¹Z@©Šķ‡€Ąwķ=ÆÓpTiu}“Å„UŒ“ˆRxśųAŽŲ‡Tņ?Ē=¹Tßfµ:ž}ņ'ĻĒéĒŖ%‰¹©P"óĪp¦Ś•$É=@Ž×gć†÷qČGj7h­ń‚ą–ū?ģ|¬oµųOƼK{`š}'ć}äą#‰a E$a­NžŒČ|D˲l؃łÖ}a²IdcņĆr'(ģF$YKJ‘Y[õÄŃC¬®or`Žy(IZÖń4¼ńĮE–¶°m›F»ĖśV‹8Ixęä!ŅTßŃõØT*t:VWW™™™¹ē8+¾Ųıf€ķyŲ–=ņёŹęģÕ“Ö|żŁć€ XōxöńCLOT£„f§Ēėļ|ČóĻq襞ė“$Ÿ~ō*‹Ė’ž äĢ•5:±MĮš\)ÕØ"Ē)fŖ|ż™ƒXRŅģö©7ZœæŗĢĘV ) /=ūųmĆ»’’fg€åzĢTĖüūżšÉJ™'Ž Œā»Vļŗ×E ö½—¹xõ:Qœd×½”­öųż ét:蜫bŒ”? •ŹŖŚr\,y䋬łŲ\½^Ļ:ŠiА2BŲ|X,­mńW?}F/Åó}¤e!„•U čõŗ”+ÄqĀ‘¹ _ś?~ó2 kM¼Ü PęĪäq†]ĻĒX¦†¢ońÜĮ ×Y[o#€A*č4ėK,ĖŒČ= &% “ÕśewG•)±¤diy™r¹<]ųøJėĆX½n—n§Ćōōōoł/§Ļ/°Õl””@Ł6ņŻg™­U˜®F„žRą3?SįŌåU¤ĢTYś”ę»/žą‡æYXn°°²Ę3¹€ģ4#ŹHģw7o¼sŒ@ÉL6Ņø.æŗų!\X”—@Ńóų£ļ<ljC38v:|ǦŽīńįé%>ŗ¼Jw , Ūq²–“”¹¼Į¶ģąØć!ī›"ŁõyĘąćĮƒ¬Ó¹d˜LÉJė]F^7’ Œ¾¦A”98?KĮw2‰Źūō^•£9ż!_`ē³!„¢ą{X¶ƒeŪüōõÓ4Ū]f§Ŗ{@§Ó!Žc¦&'3²²1T`<ó9ZQ²¾¾Ī¾™™\¾V$®oŽ5Ž­h÷üąēPļ%xž5½’ !­śFf’'$ĘĄV«K­āóŅ3hæŅģFxŽŹÓĀŅ:„¢ļ:w|Ÿwt×6›¬m6htśœ:w•åõ&–0?]ęūß|†ƒ³5”’Ō[}~õėÓ¬·zŌŪ}”t1R”,)‡ķč ‰[ŖŠwzϳ„l§čĮXfšĮWw‚ Kd Ā`0:ĶĄGšŽ¶ gFźm™ń¦6)Ž%°› (dßw|3l„h÷ś,­794[£PšF ų(~IĆŅzc$¹ŃŒˆbĆõµæy’ßłŚ3wō,ž;)9rō(½N‡v§CǹóūhJ±ŗŃäWļ^bJ\×CY6*ß/YcŠąJEš$,­7ˆĶĻß¹B”±²DY@PpXm…üė½Ķ±¹ ß}įIöķ›Āł‰ ź¶Å’4åÜ„E~łīöĶBJ…R*ŪÓRĘ)æóģöO¹¶øB«; R @€%$ij8~h:ė|݁ä‹Z„D„\`}«CƟ211IFō!åRé”u:3*ē® bCIŻ8ޱr§xy›Ų:^š’Ūq²qšÜćfÆbŒ„nÄüÉ[l¶"<ĻǶģü¼S%innPŖL s·¬˜ ļ˜.ó^8Ī«ļ^fy³‹ļ¹X¶MEist¶Źz³‰,¬¦ha£,‹^«AjRJ•*Jīć³p @¾Č$ūŸŃ4¾gs§S?BJź[[ …m‰G((g’– ×uxd8‚µ^oÓī…¤©ę«O¢x¤;œ”’Ķ­6ƼyŽĒNsåś:®ćš;ĻƱ-ŹEA!š‚ĢoĮĪŖ«› “6\[Zćgæ9Å÷¾ł<ÓµŹ]aU²ÕšÓ×?äģ•‚B(Žń E”ķsh~ŠéZ ĖRDqĀ~å]ÖZ!J*¤å<‘i(‘͹f^2bG›»­Č¾ßčqĄ}Xūb虼£ˆ,©ĻÄ’8!I’€ģčNešX å uš¢Ó„$M)\”ČL+?ī>~’ 0dUzǶ„!’īGÆsia‚g󕧏ņŻžĘuķ?ōēł÷’Śd=ϲH’˜ÅÕać¹qņÉ ūPÄĀVŠJ„B¢õ]¹kc°”`a„A³ŸP*óīB^AĶ_>“ŻĪŖ£g®71 „å!„ĄŚĮ-#wa–J±°1ą_żå/xį©żüīĖ_ĮsÜlœä.÷Š”’/=qŒŖ ?}ėŅF!ŽmńĘ©«*& čõūų7™=ˆŠ²„$+ėM67ė8¶Kx»ÕÜōėÕ7?āŸüŽóšŸā’ųæ Õ‹p-5RdÉi!¼{ę ÷Ė÷ŲØ7ó±ø,5Ū=¾’ŗēšu…l6ZüąÕwXXi`¹>å‰ ,ĖF ²ÄĆv}–ÜXo2UÕüąēļ³ŃNpwDØĖ”üßł/€4‰±l'KOwt[īźQźē0ń>vƒ­S’T“Äꬂ°±±± h¤Č1e»™ś@ž}u?śżG'°mµƒ&r«¬å°x”Ä6ĻLJEšwS2/ɅK ¼ī×VZtCM”XBkï޽Œ%%ß}é™ÜŃ:+£œ<2Ļ’üßVłįÆĻpu©Žc)péś’ߏ^ćO’&+%Q<ņśÄēLĀ~Ÿ©ZķŽ’į¬Č HµĮ ±¤=ź| ÷ŠČ“I˜‘2Ž”rON äNp–ĒrdĖęõÓĖ„aĀ?üÖó >q¬GńįNkŪ±9ytދזYŲźP­LŒFj„1hŪ坳Kœ<¼°Čæ’įėNÆqcuį„/?ĘÉ£Šę“„8‡]—Ańć×>āŚj›B©’%ER””…¶„P8¶Mœ¦üõ/Ī ÓŪń°=/Ksą1“;žŒ(©2źņMąCē Ećõˆlū›÷f>ʤuŹ`ЧdG?\į»/=KÆß§Žjć:–”“»}–Ö¶ŲjõŹEz«G’¤¬n†„ę«OÅż˜qĒį³”µęƒó—ųĮ+oĢļ«rāš<Ļéq*Åæxó’嗧H“¤P(ćłVžv5RY¼įß~į)¤­vxĘŖÅ€?ūŻgł«Ÿ}Ąµ„–eS,–YŚģńæž›³ŗĀw^|Š#óS#‰č½öĻĪÆÕ¦¦ø~ćóóóŸהDIŹĻ߿ȵ•-\߯Ž/Cš1ģF"0*3€Į‘‹Č 1b»C•°ršR­Õx’Ņ&WłĒæ’5f§'IS3—»®ĖšžgīövŽ ßī>H‘ńŲ~żžžč›OSōRsēž<{uøFq!æī³33Ōėu¢(Āó¼Ń|~’$T«UƒĖ++ĢĶĪ’ę>Fwā=r»×n6›Aš‰­›āĢƒ]=N ?Wqnxļ-!ˆ¢˜8M ¼ķb™eI“†Ÿ¼žo}t£lŪAŁ9ųP6ĶśÅReŁ`rÓ` R°i¶{øŽČ;Ū{+«Ķe2ū_zü+õq’ąyZ§“[”+5”•)Ī™\ųG9ö’/źĘܣ✷'ŸźI¢ļi³ļŖn~ʛf˜ą“ŚmšĶ&årł”½¶”ƒ@Y’s×Vųö‹Of<1ČfģsփÆ}é(ßžźćLM–HS= `Ϝ8Ä’ņ?žI¢™(Hy„g÷õŒ& ÆÅ„…U>øøÄTm2#Ō忤²HÓ!$ŹvPJcļH Ežķ;Ēö”ČvšÜyŒĮĒ£µv»šę˜:K\Ö ś½o%š0NP–ĶŌää(Ż f÷MŻ’€ī¼Åz4Ęuū$-I~ńĘ{üõĻN355ƒ“$‹[)—W.ńź›ē |›~¬š‚†Œæ%•"5†‚mŃ„4ŪmV6šœ›ķ ‘›Ś–ä™ćs\ø¶‰mgsū¶ķ"„Åņf‡’ų÷æįĻä«ĻGåNĘW8‘łŗÅ#˲8}ńƟŗF‚Ā÷-¤Č÷Ģ^‰ūM‚»ĮĒp?e²ŌCņ“,•‰ ÖŚ=ž÷ūŽĪ•łĒßū&ÕrńŽDD††ŸR*\×Aėž°5=€c9¬mvxķ½‹|ū…“8¶uOć¬{@ Ÿ“źNnĶM?Ū¶m“Ö,-/37;{Ū׎yöˆ|6?MlŪń—WVØ”Ė¬ol€1…ƒ~?KžņĻ.- DzP¶MąūX¹Cv8 ”ŗ³®Łx=qNkM½^Ēõ²"Ąf«Ķ_’ü½~Č_|’eöĻŌŠĘpõś?üõi6š‚bǶ3³Į¼óŃjnį%,Ū=³Śh\©łēüUšŻ‚ēŽ”ö„(!h÷C6=R\¼A7Ņ "ĄG!•ź–„Ųi<īzŒČoa›Ä™jM…we>mņ·Ūķ2ˆ"”” …;ƾ>ĄŹĒPē~fzšB”š©[ųwōŚŚP*xN6N•&anƒ„¤× ©UŠ” «›-Ī\ŗē8\^\åõ÷Īqhn’śż—©”‚=eDļōóh£Łju)J#šaYv6ŪjY91V”¤ŹĖ6»(pYā““ć!ÄMžl'G÷0~5^Ÿm„0#QjŽæ¼Åć®püčį]ϪٵÆn)_ÜQĀyÓßā8•‰Žļ!‘H%ż›!E_¢uJ ”²@)ž;6C­hóŚ©(eų×ū’ģæĮü¾‰Qå|X84[£Vńé† V®\£r¹µĪ Ļß¼ś§/^ēūßś s3ULjF‰Øø‰‹°±¾ĪżūR~āVĒ,®lŃéG”ŹåĢ]l8ņA‘_o=­Üķæ’Ė›½Œ;sĒķüųm[\Zķšæż_Å’ōß’ •rńćõ¼‹b“¦V­š•'Žpuł=ā4@H“y÷äū\*IŖmŽ>wƒSē™›.óē’šÅ‘±ė§5iÜ tܼ*• Q .Ē’R²¾¾NĒø¶MĒ` IšR›˜ P(P.—1ĘŠķv©ÕjX–5z?IšGqš²¶¶†ė8y"j191‘īÄG*~‰=øĆ?GqLÆ×gqu“++®,×q\—ł’¼Ā¾É2 Ųl (J„ ŹŹÅT6Šė4ń\ĻĶĘ©S"0”›?łĘ źķk³¼ŽĄ÷\*E„+-~ų«¹²\'p}‚B@±T„±¹iJybK‰<¶Š…‡ń³5 æ%6›}—cī,Y7ZS®TōūcŲÜŚĀó¼=å*‡£@kI„PRf C’ćt‚$M²_‰ęń“‡q]ū–Ń/!3ÉŽ³W®ć;½(ę/ō:F(@xųķēųĪ‹OR |¢ųŽ ‡Į,M ›Ķ^®ęaećW9!V I$²PZ “QŒGD°C^w7šø9ųƒēē§ü0C"yP(qńź"'Ž» cƧ=w~ÆmKNŁĻßø€­”%Bm+©±­Ō¤SŠ‰’ĒKOÄ yóÜ*żČĀńŠüßóß~ž$/?w|BŒ1—æųŽsüĒWNŃé…’‰°…¢ƒļYŚźń/’ķłżÆ?Å7ž=ćŲ·½Rq®¤÷±£M€N5¶eaŗˆC§Aow0‡RĒĆ/īÜqR@›ŃčÖĶžLC ’g Fi „€µÕ.7V×(— ·½ž;÷«Éóc÷ńķēćgļ_ƒå]Ę{B¤„(zż>¶›®$IАdr”XąCßŌQūø˜ÓjµčLNNRČ ę“1„ƒĮ- {Ė,„°|Ÿ@ŹÅ"ż~Ÿ•µ5 ¾RŠ$IĘ1ī;ŸwļŚŻ.ĶzłłyW6łÅ[ēhō4Aą”“K)¶ÜB@E}’$Üęj Āą¹<æBŒFž 0Sń£„õ~Ét%ąŹņ&%Ÿß}ń žylž3——Y\o&Šn³Ž”(„¬ĄĄß5cņ[‹;¶grß;·Ąļ<÷ŲŻyJĄhv7Žc667o©h “ ūąĘzƍEƒ0Ä÷ż‡FŒ“„“Gfyg²ŹņFƒž:B1øÕE 8}ž*?ó#¤\_oR)—©Užyl?Ļ=u„©j™AŻ1ųŲ+xɼk””ä÷_zеĘ{X¶"j{&]©<Ń(!ŃŅģŁ;»ęŸśł}čd»E!ēE½n—~æOšf&\Չ‰{zo7?B Ā(b³ŃAHĖu2Ž‘Ź}¹Ó7F@šŹ\…H“hĶÕ:©6łhŽDŠ ?}ėķnŸļ}ó¬|¤JkĆt„Ą÷ż8m•~˜°ŗŁāāҶ”% ¼×vųńkb¾ūŅÓ8önyN€¹¹9®/.ršŠ”½Ś\ĒįĖ'°²Łe¹ŃĶ8Višs-¶Ē0µN±•¢Zr8ypŠ’oÓāTć;ƾ{a NR9a×mŪę&!@ ŠÅ"g..püŠ”•ļń=⼐’0 iw:Ō&&p]›'Ķ³¼Ńąār?(Ž~nęc`0J!¤ÅÉ“œŗ°Ąkļœg’L…?’ƗIó@“'xAĄŅŅóóó·ž]@Ē“Z-’4evvŪ¶wqF\ׅ¶W° IDAT½£Ŗłčžäą¬?ų>åJå”tŃĒė.Į™Q¤mŪXJ±ø°€ēyø®Ė‘#‡łąÜ"’öæ¼F„<Éü„æ½/†¾U2óéPł˜ń6Wk(aņ½0„į€3W;¼ųų<’āϾÉ_’ā ““5І½v–WŽ>O1(—+H++„ķ&ŽąŒ'ŌÜŽür¼Ęä‹>vL% ½AJ½Ż#šœ;2.ß¹aŅ4„\.S­V÷ŠÜX^~hŸ+IĶ&žēQR­Jb—¦š™Z…ņ/“Ę!¾k§1–¼õń>øo’ĒpįŹ _ūŅ ĪMņŻŸ Ն8Ičõw•Ųﬠ„QBŖSŒ†8Myå3|Ÿł©«03ˆVœ‡ąĀ 2O’ĢmÓā1šøÕSe8¦tĖ·Iś?īg ęįZPIÓŖoŅēi·ŪX–ÅäŌōŗ] …Ā=Ļ’kE ­^Ÿ_½ł!§Æ¬S›šE ™u愬}d¶Æ`Ö5Ķ”£Z½ó‹ėl5{#ņ*„@MµZįŻóK¤ĘšŻGI™y6(š]Å O$Š^;u…ĖKõį3kČ*ŹÕ*ƾq†/=~ˆūj#YŪį¹1†B±HE»äʅĢĢw‚Ō¤ĢŌŹœ8µ!Ś®8I™›®²¶¶N”PĒÖ-ĮEkĶT­Ā?ł/fźQʐ¤ ½A¦+~×¶¹Œ`„„qÄŁKĖ,,o°Öčņ^¤qlĻó‚ ÆČ.I®×ń‰uų{ŃŃ’BWŽLęįö{{o÷Õ'^Ł›–·8Œ?ø8įÄ!ŻN“É™yŗ‰dfz’0Ź”šZ­BJŠÅā]w/‡<¬v§ĆłĖ×¹“øŹ„뛤ŖĄäŌR©Ģ#ē ĮM²ÕcJ Ź…7™,XRē|Š”bL©\įŌå Ī/lpd¾Ę±żS|łä”’DqŠT’—ž9J­Rāģµ5Ö·ŗōĀ({]4ĒŽģ§øO#OB…#ģ4Ip''Ń:# ˆ45(•Éw:9 ŒcŚŻ'L3]-°°Ņ$ÉĶćT³Łčņųį)¾śäAR­éߤ88|¾J‡rĮe~ŖÄZ½Ėåė[ÜŲh§š4϶M”µąčü_ö?“‰r!Z­Žmˆö…b‘n·;%š¬ÕX[[#(xģų1b-Yk\¢Ÿč¼ƒ’'hRįŲpįzo?”v/ey­Ļ’łŸ^å/žšLVK$ĪļŒ3žė²²²Ā 3SAŪFŖ,~īŸ›Ckż‰JY·p|ņ@8”Nóq-ßó(—Ė™żÕ·ĘėSĘÕ\¾Ż qœL•ńvjfiš’$ ż0dvf!%ż^¹ŁŁœĖ„A@„T"nFXVĪåQÖHN~4Ś8ä;±ķE“ՁÄČØuč—64Žć”æ{ķ'ķćČüæ>uv/ĘŚp’8&Ž# Å žēŌÓĘąc @~k—»3”Ńh„Éd5 ¾;J>>ÆÉ!äzżC°õ7w’8Žs[©Ē,€jZń.|t/ļUˆŒSrįź«› ”“p„"”PŌ vF6—Ć·U€ ƍ\ĢļģąžķŻ?»Ÿ»&…RN6¾yݜÆĖ› ˆŲ£×d …byD6~°F’$!v“RµJʤ©&́F’$DqĢT­v׹!ē+Õ ?ųék¼saƒr±B”4‰ķ8’h>ņ™ė!×Čäž$ĆėćHĮSǦųņc3LW ü›}Ą.BeŽ:O^J„"Išr~a‹ ×Öé‡O„\Š:3{öÄOŻĒÅė›|pi™ÅÕq’ą:™ZÕ°4³ŗŗŠėŗxAĄää$żAˆ„$^—ÓÆsłŚ2ö€bĮćÄį9ž:¾„§/,ņź[ēhwB<Ēā„/?ĘKĻcj¢4ņ=IRM”¤¹‡Ź­ü€4Ķ’×¶8<7Įc&3ž]«G„LO°mÉF½‹ēŲ—8Ń»ˆŚūöķcye…‰jßó2b ”2°¦)J)öļߏ1†~?䊞žŽźpśŹ&ŚHĢPżA*…R!ą±CÓH”)ł‹KėLM”X”iųs-ĖāšįL ! C–––(‹LMM}āó¹‹'Ä9ˆQ–Eš$lmmej‰ĘP-—±]wŅĘqļĮŸŁJ 0‚³W—łõŪgŁ7Uį«Ļgnf‚4ݾ·Zk’4„×ķÅ1ӓ“£óŽó¼LóA%œ¾“L£ÕĒqü¬ūaeü)ՈĻ(ņ8ø;?ÜR?2;, ŒĮ±%ßzö$s“ķ%—f/8 µ”X®`[ĪØ°±3łƒ1łķL¢nś©³µŅ"9Œ¢ˆ0 ³‘‘‡h%„ ßļćŗ.Åbńc÷ŻIǧ[„1ƽwž­VČ@|Ē'(°ķaŪŁB)¹ģ!†b\;’`sG•ČßöĆ2ū}¦D¤l ŪńɅĀnŽa³ämī»y( O Iā>½N“R©†Ö1išrd~r$ć*rs¼”ōģ]qĆd¦äō«7>āĀūöķĆRNžŲ)³d Ļä'laF’@HA£ÓgŖźćŪQœāڹ$ķŠ4Üo&ĶŖövIG1?łĶyN_\ā¾õ gk vŸ®¬āيļ>ŒwĪŽąƒ‹ĖÄqŹ Š© ŸĶzb©ÄDµšĒĶ^}›oæš$›?žÕ)@ „bµŽåŚŅ&ė[™$šŚF‹gޤPšƘ/BŹ‘¤ķšēIū;Ē*ĒįÉ£s4ź[\XŚĀj™Yéh`ךõgOP-śÜX«S |\×"Œ“6†uóØ/dʅ³³³Y—ūĶX‡Ž0Ščõz@&ókŒarr2ć eVĒ|‡O-%‰Ó”ó——ų«WŽb£ŽåŹŅ“Õ"‡ę§Š©FY £ żAŸN·‡LLLģ²°T¦>¹ŃlńĮŁėüģKŌj™ĻĘPŁJŹķŃć½DUnŁߟ¹\‘jƒĘX‚Æ>±ŸŽ ¦\ōĚ„­+h£I}Šb¹šżvw=Ęąc @ĘkĒFŽ:\X\ćµ)Žœ¾'?Ga„iJ½^ĒÉåöµ”Cn@Nö¼ßfWŠNŅQ7£Z 2„Ą¦`;YЕà+wø0Ė[ŚĄćuwwd~Ÿ…”裓{Qž¬ė½ąž€!"Eė[Iˆ{©żÜ’’Učz6A1“¢LSƒ-g'2/Ȓµ0¼'õKYœ¹p™Ÿžę~eK 城-Ølź˜$г}ź•É©™ e²žÄHV7ŪģŸ*āy6.Ś€’r\„1Yµ^K4 ¶“É·vĀ„WßŗĄ×ž9ĀGf¹ŗ“ɏ_?Ė Ö|ķ©ƒLVЁĖV½ĶÆŽ9Ėļ|å1ŒN™Ź“›įżųčā —ėT+…‚6޲0&Įs,ž}üOŸGe䷌0&É® ī§MĄ6¤7ŃŪc|Ÿ­z8Ž ‚ ćO¤é®Ž@’$$iŠēzH!¹vc3×¶ˆRØųzDöĶČī g.-13Yf~ŖJŖ5aōp•”†ļŻqīÜ0 h·ŪH)™Ķyż~ĒułŁńĄ÷Žxķŗ‡ĘĄĀņ&ē®.óĮ¹E‘avvŠēNął§Žƒ(Ih5,­¬āŚ'Į¶qœŒž%%õē®®pna•k7LMNb9™§Ē.šq›óļvŅĪƉŲįh¬ŃŁfÆ‘ƒ”px¶Źį}%>¼“‚ļ¹Ė•\Iė֑«]\Æ1yÄ3©Ń¹=’(%ƒXš‹w/šÄŃ9¢8ü\šČ «W¶mć8ĪWŻŚ«~-vTsļļgŪNR70P)plŧ.ŃźDx~„,¬AwhȈp·3ųęs.z¼-īī>d×,Õpl¶ĢÉż^?»F½Žō<č¼Ūd0:«ō eF~äćF£"–u&I4 ×ķÅlV9ÉFƞ>>‹ē8DIš™x5#Ļ„»y_Btó·?·XŶ,”å`YB‚J»<1[ęµ³m Fļ L·:„‰©JJ,%³NžŠŪ¤Q)324£Co\[iÓhŸ„øTĖf'it#..Õ¹¼\®ēńö©‹wųGæ’;X–E’$£Q²śGßą/’žšk-|×ǶģÜā#“µÖF³“Ž`¢\Ųsč³H6Œ1‚„ Āp4j2ōK†tŗ]’8†²Į³‹\^\£—(f¦÷ecn˜‘"–m{üķÆĻņÜÉYęg&ŠéĆO¤ī…&„d«Ń`²–’µĪĘՆźX愹į=“¶ee#W:Ż>ł÷o²ZļP.–ńƒ"ūjE^žŹql[qśā .-¬°¼ŁāźĀs3Ó,ouyźų¦&Ź»ć_æņ6g®®Q)—™ØUw·7ƒŽķ¢ģ.žŁ6Wš¢ ƒ(Į¶U^Hߑ¤ZćÅa"°+įŗY2x¼Ęä·äŌŒH†RJ”“#’Y%’ó”-Ū¦21A·Ū}Øčƕęź,Ćń•ū]1²•āĢ•DQĢįłiŽ=s•j9ą×ļ_Ęõ|¬‘ׇuS×#æó{ßq,¼g°‰6‹jŃĮµwßsMĘCJ ø¶¢Rpiv"¢Tē232”ś$iŠūóüH’8dŠļąłŹrŠiœ%źJšķÆ#ŽįęėēņŚśžć$MI“ÄņrWai€)‘äür”\\æœKIe¤ŃĢ|ĻÜr”KŸv?āŅõ :ż$'­‹‘œfVH1 ūO;é6„b@’&œ»ŗŹ?śī³ōƔŸ¼u‰8Ķ~90+OLrf±Éä{g9qx–}ÓSŪ|ŠÉ2‡L²°ŚĮr,ĖŹ}J ļÉr1ą»/>yKgė3‹ó¹/Bo0Ąq]Š…z %QG®ē!…`Šļ³Šź°¶ŁĄ¶\“N3óĘ\“ĀŹ¶(ųKĖk\½vƒƒęŗČČ'ÅČŪż9 ƑéąĶ?NĪ’Rr}e“ÕĶŽe±Zļ°Õ ™ŖÕ²"Pš}Ö7Ū\ŗ±É{giw™ņ¹±ŽāĀĀ:µJ‰©‰ņŽs׹ŗ„R)ć‚ ½­rNĘŠ|sūÜ;ÖŽÜåņ>vżŅ)Žcį8™`‚(NYßź ¤ĢųfjTŪ½|Œ×€Œ×ˆä&8Bf®·½(ężs‹¢ą*˜Ė“ Io=b¢ąhtcŗŻĒqŃiJŖ ė[=×ˉåÖ <v’AęōĒÄqœuH ‚  ^ƓÄļ½ÄņVŚtõVŅ\$ 5pyµCåĢUœßÅ#Fœ”‡é¾Ób8’wsŅgYķV ”¢\*=t¹ėń„$õć7Xktš<—8”K%¤Ź¤ø-%ˆ“”×N]ćĘzi{LŌ‚ģ,×1Im¢B­RĢĢüņ.…‚?žĪs¼~ź\\ń·Ē¢‡čćÖīŁ-²ź{‚=RDӉę+OļĒV’(É '×Wė,®5³˜"÷®źĮĒ#|Ž/ĮgQ!3;j…R c$?}ė<—×(™«łē/LėQ ōaVē ąäź)­v{ŠŹ§[qœ°“ŗEo±ŃhF1Ē̦ Ēv±¬ŻJbš!õxņ1„€A”²øŃĖ’a±I'öWŁWučōCŚż˜0NŃŚ¤šXkŅtŲöß=Ļ枙į}NӘ~æ‹ķøŲŽ›Ś;É$5üĶĻ>`}«ƒ”ąˆćų¶Jn÷zŽcqśĀe֛}„TWĆ °lgō<ŗ¹ėø1f$<üµsä –%YŚģ±øŁEŁŅR»oB>)‘č43óK4ƒ(a„D‰F ɑłIŽĪÕųšņ*ēź˜ 8R*‹–”‹7ųé/ßę£s—ųįO_§Ó yī©#|ė¹cŚWĀČ,™±, K) ĖĮ¹ž0&óļĆl4°T,R.— ‚€JµŠēŗ¤iJ±X Õéqia ayɟķ{°ż8lĒ”R©ąy…‘kżŠˆ6Žc¶¶¶hŌėDq¼«ćp?Ÿė½’;tŗ]6×× »bœ6†‰‰ „”DaČ ßĒæĻꁤXņ$†^–ćf\ÅÜŌĮFkĄr=Ä<×Ķłc6–m‘¼üåǘŖeD©L¹NkM„š{_;ÉṉNwĖĆ{ó™¼SV}7ųŲڤhb)ņ˜(xöä~ā43<½“°Īū篃“²Ł’1Äż|¬qäaʀ§wfØ%&›“T¶M«×ćÕ7Ī’&)Ž„˜Ø3sĀGPe‡Pg~»ź`“Ę÷<\Ū¦Žl²Üė13=f݇j mY(2æo‚·>¼Ź”ż3|pįBJ,ŪBJ+S¹’;L•ĝ9—åŻ‹³5t’P*x$Ā!#Ā(f;rīņ„¢ĻĮ+śU‚ŽńuoR0 äՊ Xf ܮ뱸0Ēl½Ęz·m÷+)ķ×L2:'ЉĮ$†z„ˆÄš \ĻcP©»t«Ł¤×ėQ*󾋇M~)spŗsžZWE»Ż&C\ׄÓé •õ’Čm¹\ĪU··· …iäDžōGßäō3 ƈs×6YŪģ‚°UH×qHŒĀóU^½@Śgģ8Z’X3&“ŚŪø®k•į„U‹s”äw^~‚’ū?"ѕ͙‰mćöõ1éWmĮGœh0 Q3W–$‘Ćė/Āsq¬ ć˜_ž¹Ä­ęßuIā(‹Ŗ˜“zžŽ)™Ž<Ų”B µI©Ó©œ„T8ŹzH¬o÷yēćK|ļå“x®ūŲØ;7“$Ži·ZTkµGOæJV„Ø×j“;[[”J„ܽ÷aLkź&™Ÿ«Ć»Ÿ^ćĆOư²ŁįZšØ²F;9‘…™6æķķ\ĖV*5„¦<ÓfČAČÕõ6›!nõB ą(Į‘Å2åĄįāj“Nä±×ąCė„aƋćøx~0yąŠ19V!) –ē/%I¢Qę‰āä¾®Ėw®¬ÜäÜWŁģj ŊõÖČ«;ÖĮŪNLs;źĶ’4`L’m4F'a•ŗb` ųž‡M®‹ōY•£™²gÖ1%9{ń&ēÆm|xž3į…#ʂPĻ/Šé{(OŅDZ:Ą”„E¾ø¾A«Ó柮9oƒ éG}P.a,#ŌF“Į ĀQ’8žjĢėņēÄah›¬Óą»?ŲļŽ3O™z—ž9ʍĶOŲL}1 …b.¬a²ga4CE śCnmlPÆÕp\×:E§nń”ėĒ1Żn—fźT­Tī „dߗRŅķvé”K%“1 … ŹÄ0 i4› Ŗ• åJ…[kkč$A¦Mę­vŪ-Ē>ū0ŠÜæ‚ÖtģĶŠZ3[-³0Sa&\¼¾AR÷¾÷ŅT+Ÿ_Łd­Ń³J|a‚ć¤ēšt Š/Žäܵ5’8& CžüĒßf®n-’Ds`®Ā÷^:ĘĻ>øŠėŖ“’‘&ˆ²½zxš ś§ēš0Š©•}Zķ!Q8äĘĶņƒ9qdĪ@"p|ĒV?v8Ŗļ\cÓy6 Ó±KÅ ćöJ)1J”©"”fv¦B±ą1†õ2Ą`0 Žcā‘{€Œ‰Öø®ĖĢĢ ĆĮ€^ÆG³ÕbnvÖ6Ø?¤Ł I]b×6š˜DóŁ• ”_Ąu<›+Ē”>Œ9OvŗłķŻóMćc2”XŪ‡0f¾Rģ‘:“żżAóÖŁU”T“{!RķT³ÖšA·ƒtü pŪõ›”¦(„LE(¾ēŠģš¤ą½O¾ pq…¼ö2BØÜƒA¦ēqļłļóĖ_Ā?ų­nŒė—R'm»8'śŒ 6£ ±6`4JH¤mˆ¢!q£ć˜aŚŖ°Mü/Xd¶Zążsk4{!¾ėZU,`£ńļ\¢^ŗĪ+Ļāą\G Œ‘ µ@ĘĻssš!³ Dī+P¬ĢąĘ1]XįGÆæˆHM!ßūō:nL” ‘xžO©ą³ÕÖ¢H7Šø¼ŗÉŃå9ß#N’\‚@)…ėH ¤R)ܝĄSH µåĖmö~ÖÆ1©ĆĮ€ķfĻui·ŪDIB’'ŽæMRyT%‰9qģ ’CµĀv³ĶŪ_f«Ū”P,¦3ŚV>t’'šOĪ_ä›Ļ¦^ÆS.oėņ}ßRR£­5½~Ÿµõufėu‚ ČēÓnū“‚įpH«ÕBA±X¤ßļ°ŻlāHIōū}¢(Āó}fgf,å+½™’Y£Ń P(EZ'|qń2µzmB=mŗ?>ŗ=4Nm“KsU¢^yęĻ\Ā‚ƒsU­éō#Žłl••ž›24› m“ū$IĀf³Ķ™ó×ųį7ŸMiƒv¼xr™ĻÆl²Ż‹‘2„S„{u6ĻÖLB€ćx R°8S¦^)x‰Ö”÷>æAg€H”č ZŻ!ėĶóŌ‹.ƽtœ~”„ŹĮ>ʍȌ@j« čøJ9t†]žżß½Å7Ÿ;FµR§Ł‹) HĒI+ȚV³…ŅqˆCĶÕ[üķĻϰ4WåäŃ%źÕ‚½ÓR²ŻīröĀu˜ćécĖ ÓĄ|ä-iuz 1ėœłü •RĄįƒ č{PŗŒ1¶ÉŗÓ”ÕnSÆVq\7÷üH“fscćŽ~.™Č…ēŗ^šēŠŅ‹óuŽ:óŸ^\'B”„" ‡Ć”Ł27Woįzž•;ßeæĶ•ū\U( SPŃn·)–Jx¾›Ü{VIn4›Ģ¦fŽėā„×Qd3ėµŚ×ÅėW4ʰzćQį(5|ĘpšĄ"Źqø±ŗšVy Ӎķ+Hä!ų֋Ošr”P)śHD* žšŁ•5¶Ū:”­€H…PŁYē" ŠłŽĖO1[)ķ8{ĮUŠ'ÖłÕg7q][}•¤ŁŃV«Ń©¼®ŃčD3‡T‹U n™o<{”ŁZz„&vŅyn`«ŁįĀõ ÅrZł%§^[S2÷,3 D2*–ć…Š~h›J„ÄęĮ §Lœģ{#øÄaH±P X,>Y‡ń€ĻqÜ4óó°W”gŃ„dy~×s9u›öP§ņ…#Ś•Ófóż~®&½ĒRÉɒūdzmRÕi|)ŒK#‹²6ńŻ IDAT ¤F|ęĮ{†ĘĮŃ ×Az0ŽZŁZKæH®ėэB’’Ų Ü"R;\½ÕāśźĒę­_Ģ;g.°Õ¢¤k³~¶-ßµ÷#½žNÆKɃ§ĶP­TؖŠ}—¹™R \ĒŲQœŠ„øŽmčVBęTŃ$ån«“ĄĆĖO-óĪĒ—Łn÷PŽ—Ć@ĒQ%& 7›!÷Öy“?A»"ÄČ×%„üX÷(”ėÜh†üÕ?~ĄĀā"µJ‘HK„±2Ć®ė¢(“X'v„XßīŅ„¬ÜŚęw>ć_ž‹ošņ3ĒpÅ{g/ņ‹/’$Ÿ3S-ņē?ž.‹3e%%ē.ßą/’ęM¤” ¶ŗņēüŻūRÖRJqćꎒĢÖėxÕǰÕĢβ±±ĮŅŅI’ÜQ‚4I+Ēó³užą;/š­ŗ¬­oÓ YZ˜”Z.įyaų2žļå&mwóēŠioH”P@9Ž„ʶŪŌRµµńßό/“8Ę÷ż|ļĖŚ•R¹ĒӸ٬óqPR¢¤dvÉzŪd}EŁėd“³”"›™NPz„“.ėL}Bö+‘Sš]Š…$֚Ÿ¾wŽO.ŽB*Ļ*c©‘š£J“ Ņ-q‡s—VųŻWh«…;$ŠĆ8“ĪåŚ¤ÉU“J£÷o6O½a¢(”ąĀÉ#óTKēN…ųāDóŃł“‘éū§Š[łę¾·“Śé˜ßŲlī(R(e0Fį[Ķ>ļ~r‰?üދР!ŲŽŽ¦ŪķŚCfŸ?ėŗ•ÓčÄœśƒ|Ł×2nl5łõŁĖl·»8^1÷łcę‚Sšń2xĘ6N6›ćØc d˜ ĢaŅßa”tgT°y%EJA©R³ļCZkŠåźēĮČ#K¦Ź-„|!H”ƒŽcā$¶ŖAĆzćט=Ļ…k›DĀA?ż]™kī;©šM¢ żž€0šć×OšĢG-0‘™ēPJ÷Ō£ Šõ}‚į0~ ÷RR.—©T*ūŚ“±óy\}Vŗµ¾N¹Rكgę«üÉ^¤’°ÖNFMo#> ćfKÓ±_ĻVS›ēNeö‰k2TĢVL>1¤’“¶·HœgÜa8č‘$ •źL.o»-&o¤ĘÖ]¤F2 x‘Źąz>Īš­ēŽŅģµõm|×õrŌ{Ōļ98ėóü‹‡©–Š£u>£v Ś„XZ¢Ónsķśuž8~<ļĆø±•ń 茮ļA„-vŠaÄišļø.ŽćŠķv†!sóóö=•²&‘wq”»Š·*„››y•ēNóIkĶāā"Ķf“Ķ J„RŽōīø.ÕJ…Ž`ĄŹŹ sss¹kśtģ]üa{}bŽx÷S.\Ū¤R©ā¹©Œ¼Éȋģ?c~+Ÿķ0“Ūö7‘>_“+źŪ§§­yhœÄ­I“&Ń 3EĻĻpžŚQ3[)Ų^,³C9R`)£­ÅĄ„ų ÅH„MäōŲéx0’‡I"å†K…T×u b~žžE<ĻįågŽ1F÷}čø®K·ŪĶ›bŪ‚b!%½~)åRéK~GIŽųÕg\Z٤;ˆ~)Ļ"åįx<2py·*E&īz{4łÕz†ŒÕįé^WŗDįruvWšqǤCŚLŌvķc7µ”)|ž9¾Ä“Gš{ß1¼ńĪ9¢(¦R (}nn¶ø¹Ł&‰Bž?>Ēš Ź„bŚ'#v wzÓę{÷sŽxi“ųŚś:&„@-,.NŠŖ Ę¢ĻzaĘ}īęzķ8sss$Z³²ŗŠ#%KKKł}œń}„1tŗ]ü ˜ŹöīįŽiU+~ņ‹9sī&ÅJ%„HŹ E©¬·ŃdÕĖ˜$ŚpśŌA–ź9PQB1Œb%øpmDZ”Jc4¤¢Śž?>Ēw^8œWI3€ńŻaжbŠœhXW)µō£ó+¬m6ųĮ«ĻņĘ»(UėiZĘå”Ósx @¦ćA…Ѧ`3³–3©Jć{>­NÄåÕĻ<±ŒRĪDó䯆”ņ¾U\~‡"o>—Iˉ]堍f~¶ĀŁKk„ZRJݜ™Tž{pśÕŌ ō”×Ķm™Õ PÜńg,ą¾3č`>†=†ƒ>µśüĮĒnļgrUŪT)vœZk %Ÿ“Gē £ˆ£K³üş¾>‰” “[Ū ––ä¼ż¬Qs?؀Mę‹k·n1 E–DI]ŅMVÕe l;^ÕĀ“¬GŖ‘«:–†ń«Oo‘č›®ä™ćó4Z=zżNhp\Hū RĻc,÷|RźÓŅ?ŽĪ×ų7?z!ąć‹k¬nv(–Ŗ ©p]ƒ¹ÆŒj¦€uÆ~»8Ih4ĢĻĻē½_Åŗ ¶:^©ą¦€a7ƒø‡éźv»iĄØ&æ'%ż^Dė‰dP&ó[­T˜©×m¢lģZ„”Č1“éŲ»Äēź­’õŻs,ĢĻēI 0&ĮG–<°kQ!„)Q)R¹ķlnwh¶»|xī~PLA#h,µŹ‘šź©%^{öŁSv”•—ҶØkm{ÉŽžš Žšci¾Žć8üÕ߿ë/>Įų‡_³8[āģ•-‚R'mŽ7F#v,Öģ,˜Ž)™Ž»KyplŅ„ NZ/Š4:>ŗ°ĀĀL•ÅŁ ®£¬ś‰6w ¤ÜT‰eEøJżÖŻ_“Žõ%zS„øŽāWg.ņĘ;ŸŅĘT«3‹E¤tr)Õ/›¼×õM{JīĖķByŗo yŸĻg”±—DQŸ^·C½>o•\ø»öü®’æ1©’‘N’X9JWIž;¾H1šfT±c‚µz•A8ȍdzĻ{9gŒ18R҆üūæ{›Į0¢čŚFaQ±² ĢĮĒØā’©ĆŻO”K¢ŲÆ×pÓĻ|öJ3­Œø•ś)!1©ģ§HM)mææŁ!łiøŗÖäßż—w#:żĻóqTB‚N©w7Ķ‚j)k·nQ*ók½SĄ7 H’dĀ—č‘ī‡)Pj·Ū…‚5DÜŗäa€‡HeŸŪÅŌü0§)ÅÖę&Zk<ßgmm-§Ÿ <ϳ4įkp«Ń ™_XŲ3Łé˜œ“‡—ēųŸžķļóĘ;ēiv#Ēs|\Grk{ĄŁK7ØÕė$ĀJ+„ŹI ²ü†ķÓ¹2 ÓqĮŅÄћ:< ¤Ą‡VŸŸüās†ĆG–ź|÷ōSPē'o}ĪÅ- Ž›g7²ÖF“/h»Ø„ø®Ć+ Ī_ŪB)I¹67V†ķöĻ/ Ć”ł"žūĻÓéG|ve7Ž>Ē0Š(’ņ÷^ę©cųÆļ~ʱ„fkEĪ_»ÉÅkÄĘ'I#©T*VÜB*¤²j”2ŽČż?¦ ”S2æLžŻr •r@@@‰U¹µ=ą’/æ`i®ĀŸžš4Ē–n+?Ž”›4Åb1—:ÜókēĀxōŠ…Ā}ńŪGąCpöĀuŽxēS:½7(VĘRJk>(ň3;ž­}Ų”óņöėzŲa:l.ßmnd_%GŻvƒźĢ"3ęź,&*ć4€É@ό@ĒšŠI‚ įå“K|ē„ćöõ k?^›A—üŽė/ryu‹ÕĶ.I<¶Æ(Ņ™Ė$[*ֈ^eŒõIĖEī‚lQJt ,µ"ļŪ`2PĪhf6öČŖ-ć &­ e*u†Qǽ@IRž±†[ Ėóe,Ō £]X8Ņh4š<ååå ‰ā»Ż{„żf“¤ZżŹ‚¤Į`€R*§H}™÷‰Q’ ¤dvnĪVīwŒR±Hc{ūŽ•Ęńė„aÄ”å„\-iŗļķOr&I ®£8ydOÆlųcĶć¹"ž_y©3ŗ”Z«„{—Īū¬²ååū ) 'Īrś©EžŻ|‹µ­6QqśŌžģG§­:„–ŗÕ‹XYoQÆłÉ/>§ †­5…BN§C”PøkbB _H>ųü2żÓ3(æH”\Åq”J˾Rå›ßøéŃĆŽg”-ż&{ö»W@v60O7ŲÆ"Q …åņ·ŚŪTėóØTį(ҚQĆhģģ=2c= F[btBGxŽą„S˼ōŌ„Ą'Œ­›÷=3X×ė$ĮŻĒ9"„ Œ"^?}‚×^|’wĻ^įĶ.”cK'M“F*+į©2€.ešŁM%.õČ]uī `ŒĶ¤ĒQD‡¹$Øż59Ł7•ėxXš×ųõf>#&­ĘŒZn S„§Ńū{JńS‡ˆāݽ:š­a²°°`)®)€¼Ż-{?˜™åę­[\Zz$ qēp=~æ’„ū)ĘÕß|ßĒė÷q”ŹiæI°TPÜ,ēŠa©Dæ?˜Ŗ_=‚=M)Åņ|…ٲĒ0‰m%ėā"ÕĄÕ±ä…£u“‰ųüZ;­ā’»™+Gņ£—pźčR žāĻ^ēżĻ®ó«O®ņĀS CžéķĻŁlvh÷Bś!¼łįŽ:s å‚‚cžA ņ¹JW*ł­ÜĮ }:ļ1m}L6‚q:Oīœ–mÖŹA¹.Žćįŗ>•Z•ٹžéķĻéö†åG„ĄQŠŽ`°§Kņ¶ąxˆ<†#š<†Ćį(üŁå:Ē›.µsWoņև—p‚„B×õp7Æ~ˆ¬ō+GœŲ‰{’šw7§”8Źjž 3 Zu°2»ĶAæ×”\®į»Æ=³ĄóśJ¾ƒ-`™ÜĖģĀÆĻćå¬ēCkā8A*Į|ūI¾óā1\G1£{öåךJ¹L·Ū͹õūFĆBE Z¾sś?~õO,z÷IŸ¢b¢: £!q¢ćč\<#&7"KHtBœÄ$q„I"<3 īō’ÅI“$­m„Č$‰ķ ˜053cļaæfYt²÷ĻŖ-ł5¤•\­©\NY¼#šs”"š}„”cĖūóįĄŲ¾>a ŪĘ„ƒł£h°6éūg•·½Hš ś}nܼ‰ćŗ”Źå]偳æ;÷? ń<R¹L³Õ£ŲLĒ^Ļ…ģžk­)<^8¹Ä0ŒķÜHēėnuaĄsļ}¾Āū61cqŠHĮ£Ö ė[Mžėū,…TĄ±ƒ³Ō+箬óĖ.ńĮłÜÜjE©X¤P,᫸žćXyhŪėᤔõRcU©ćł×~L+ ĮŲ)љń¢­>¾“šśbč QØq©<.^_ēō3GņF1c ›[[,ĢĻOt„ī|ćž«:‰1&ē¤ßIŁeüó¶:=>ųģ*o~pĒ-P*QŹAꕏ“,¤ÕŸ„`{Œׁ￰ČV+äćĖ[9=eZżx\&yFŽu¬$„ēJč3rö¾ćšĖ6{žFCžč['xby†AŻW6}D”Hņž€0 qg_iXV†SÓķ ˜©UłoŸŽž ‡6†Ą÷i4š|zńŸ\Z£×ķ•Q®ƒ42WŁ{A“ÖÄIB…syįÄAŽ,ĶS, ‡C6[žÓĻ?eÅD‰ÉyąŽ“’›rĢĢ5£IMlIcž#ć’6i„ÅčÄą™'‰ĒžwŅc …[J) …ĀļļŽć°¼¼L»ÓaķęMźõŗ­Ī>‚5=ž9ĢCģYfĢø0Ūł’$”T,R«ÕvuxĻ†Öš„ÅEn޼I·×c¦^ßÕ6 Cn­Æć:®ė’Œ©bMĒŽĒĘ@¢5Ž’,Ķ•Y¬i bk‰ÜAF~Ę@µZĖ…72€-t‚µ’|pn…JĮēōS‡(KŸĖ«›œæŗ‰ćl#…¤R­ęU&b›ńjĒŲ÷Ę$½w¤?wČįOĒ€LĒž‚“¤5¶„„(”+~ś«Ļ8yd‘J¹0‚B€B į®ņ½;uŪć8žČ’å¼a!ōūłĮ`°Ųć÷fd=0“%’—¼Õéń’æw¹°Ņ >3ƒļy6ėā8 odtCi~9`0ÉY7Ź—zŁĒs>½ŗņģŁ×Ģöt<ČIJ½ƒ0ęVńÉ0²śõ»f '$N3 b+IœąĮĮ…2Ń}Š­²×ŅZĒ1ż~Ÿ(Ž-=j8¤V­ī+ B “„n·KÆ×£>3CYa¤©Tk|÷›3¼~ś$gĪ_į'æŗL±T³4#BēĮBV…č÷z|óÉ æó­PJŚž sµ"?śĘqV6Ś\½±A0Œ:=ŪĻ „DeYQ{“vÜG[É•„dT„Қ$‰‰“‰ęŲR$1·ķÅI’äT«0 ń<ļ+ć?_­Tš\—v»“Ū8;“ŖŻ[]j'č5ŲØlS’ŽsĻjPöóóó¬olŠķv©Õj»$JQ«Õ( ÷Õ[3?Ā(b£Ńba¶ĪŁ ?xå’ōŽe‰Ę“fWfĆx’Ełż4#$Žė‘$1®(ņÄĮ ³en5:œæŗI”TĀwŻ4Ž”v ÷:¦ēį€LĒ>‚‰Åž—,’YeĖ^<ϰՃ/¬šśé“yн²¶Å­­‹ ufkUŖ•"q|÷`=I†ƒ½Į m%>ŠJ¹Œļūlnm1SÆēŪAµ\¶“Ēō ŠZēYįŪ²ŃāDsęÜu.ŻŲfvvÖJ÷:N^śĶ*BÜŻhl/†T‚ę€ŸŸ¹IwĘSķūĒuH!0B'Ges#;³'ݬGóÜ‹B›„(‰łŃĖGؖ‹Äńż E$c Z«1;;kēłHoßz@‚ķf“$IX>x0ļׯ,XWŹåЁETop£ŁI©ŒŹQ(!så0­ ½n‹SO>‚Ūś/m8qxžSĒ1ā(į³Ėė¼łįeŹEŸ$1„±¦†D‰¶¦€J"±ōƒ”TpqK Ć˜Ö ²*]h’("‰ž=¾Ą”Åśa”W’“$a8†!qƒ1ĢĢ́U{ÕØ @A@Ē“Ūmęęēs5±}ÅXiņ0ŠPƒn ¤ī>ņēj NĒ&tŅÄT1ķ3¼ŸĻ¾ŗŗŹņĮƒx®»«0Šćŗ”J%:Żn^ašV~÷/™ą{.ęźt!7×·Łjv™«ų\Ū€£0FŽ–TŁi`ē•@"ŃČhxJ1;S”Ū éö#¶:}<ĻĶM;­×óatäɞĄcŖ 9 Ó±Ļ d|qŻFÉB¦ŽĮ©į“1TĖĪ|±ŹK§ŽP <Ąąņ—’łēŌĖϟ8Ģw^y–'!Œ¢]%€Mzøōś}fźuŠ©d¤‚Ķ­-Śķ6B”ćPI„3īōW¹ÜĻ{gwn'x:Żo}xr¹‚“õŚģ>vsžņŸūv“<„$·żT•GLL7ÜĒl­¦1“’ļčģœģ!oŅĢśŒÖ˜$ę§Ž|Œ7čFQDĒ,..ꍩ»+éķĆē†Ć!ĖĖĖw¬ØŽ¬ÕJ‘ļž~‚wĪ^%ÖV«7釦ŖÉ){½Q¤¹~cƒ™zÕ(;^3ŠāÄfŁ%šŌ‘9gKŌŹŽfk·š¬mv cM·7¤7 )<-Öxśč<µ’‚µ­gĪß"J)]~©H„čņGßyĘņÕNJ’qÓlµØ”ĖĢĶĶś'ĘTvĻ{brÆż_×:IØÕj4›M666ņfś{¦0 é÷ūyÕķčŃ£–Ŗ¦5®Rc*p÷؟„Äuœ;Ŗ2J!p]f«Ķv«E©PøR8Ż÷6Ńéŗs¾Ē|½Āµ›\łõE»?e½T旹››ē”uąČT`Wn6éōBƒ ƒā6%«\b1¶‡ŽtLēĮ€LĒ#Ų$&3„Hi]4xžĆÖv·?ü‚ß{ż9Œƒf™[ÄU‚ĪÆŃl÷ųŸ’Ē'‰¢h÷ĆIk’$anf† Pk…¹ŁYŚķ6v;_…Ć0Ģ·w£¾ģ‹ÜöŽžˆ&Ŗwū§ž8ĢÉcĖōū}ڽ!××\_osu­I·›‚ ‘FńÅ,&*,iš3S)bŒ”V.2[+ńō‘yzƒˆF§ĻŹZ“[[]Ž.×xžÄJJ’Ō“u¾^äš|Ž "Œcfj%Ŗ%ĶēĘ«\53CÆŪe0Lė{rŸS’c“u_׆Ę}Mźh­)—Ė„axĻŲn6m£p”`±Æ÷ł}‚v»ēywüłl}Š–Ü4›MŚqLP(PLéX{›ü™Ęć÷0ŽGrp”ŹęÅĶ\°!C 払€ĄšŒźTŪŒ8Iø°²Ķõµm# …\¼%WČ«vģÖP¾Ūó>óß0¢VFņösPģž/qēŸĻf<® Ź_§Mb2•=‘i F) šZµĢ»Ÿ]ēÕŸ R 8qäJI×”Z­ĮęfƒBaw_„ŽćŠ R ’šč )„T«,ųŁ'ū»kßy?śĆĶF›BąÓķ #¶[]j•"Q¬‰¢ƒaa¦ĘĮ3()q]) Źqˆb=į­ąŗ®ė}sŠqwš±·ye&ĘĪĆ6ćąMé_!ųČõ\ف,F4;.‹ °§źK:ĶĒ‘ęĘzƒåłś„×ČųóUJ‘$ N‡(Šš‚€R©„|„AXÖūŠėõ(•Ė÷•łĻī[[e.ÆPb”XęąŅ"/‡C>žü*^X”ÕņŌĮy^8u'•½÷sĮś…`{Šā“oĆõKsU/Ō¬?€Ö„qBœöÉd÷«Z)0[+ē"É*Y^qßóče=/õśžģ}Łė ŒNX½¹Nk\WQƖ( h½÷k=«¢mnnR,qīPżßĢä2k4ßIń»•JŃķthu:,8pĻł¢“G)ęēév»t;Ż, ąūųA0”l8Żæiµ{\\¹Å™s+\^k3—Ņ:ĶN$zĒē=‚H”qØbLŒ'%±—ŌWœŒ!§Õ®Æ’™9z®·SųvĪ'öŃ::fēŌQ@Ņ0h—ļ[ ‚±;dōŲ‘•ętģQ¶bBi'!Fa”A¹Ī]Yć;/ž Ń '.ņÅõ-”“śæžčæūżoŃė'»8„¼Äź IDATr™v«E’$¹YUöž:Iš}Ÿ ņ†Ģ½JJ”²f‹[ĶØWKmF1ž«H“åŒƈµ­&ļ~r‰f{HEŌ+%śĆˆį0&Ö1‹3U^|ś0O.—®%|tįÕRĄ÷¾ł<‰”„HA½Rda¦ŹP‹Érš—ó}óW`ÜK„hŒž˜ų’¦ņ£_w#Ź’ÆģPWڹ¦¬Ū„}~ŚčÜūCė$7pĖ*’ćUµ,ƒ8 H’„$ŽAęęęéÜ}”‡³”’f³‰ė8TŹåū&ę±ÖÄĘĒ1RI^~žK‹u¶[]Ž,Ļć{ž}(öķ0ÜI‰Ō›„DlEqwŹFoǚjy²ŃY¦ÕńŠÓ`0@J™{*ķebIAoó‹÷?ēŅõ5J…€ŁZ‘ßyõyŽ\JŃŽ>ē^ÆG0ĄŌ]ĢS1 Ā0ÄuŻ®xgׯļõčv»Ģ¦ąķžÕČ«{„R‰(Ši¶Ś‡RŠnÆGE„7Ēļń}ŚÖ˜Ķ‹ß“=8L¤¼ņÜqŖÕ«ķ±ē}=BöłitJI2ļE”ŅÅGMåwSŠÕoBŅ\0ō0:AyĒĜą Źqo+›Ż6s×é8śi’](V¦OdOģdč*…@§.”F*‚Ąćć/n²0SįÉCóüĮkĻQ-_įŅõuz}ĮĒ_¬ņķoōp5ńøsŽvš)¼[ésÆ7zmlļ­­mVד{®­m!‘,ĶרV ¬ŽŚęŠbēNfq®J­\ąO.3 H—b©Ą0×÷š c4įw>¹ĀźZv§ĻåŪ8Źāć¾všA[*”œ82Ļ™/Ö üœć½pūXy˜Č”™Ž/RĘ䕧›ņ£ĖäLŽsK"kcX)ÄXæ²N?‚N8䏭6Ķöż‡Æq`a–/iٱėżŃĘ0HŌn;÷µ¶ēÉXųY©TČ;dD•Ul7›ŌŖUü øo„ģūż~Ÿ$‰Y˜Ÿ%¤R ś}śż>Ū„R ×óņłøWūcV¹‰ÓĄÜQŠN·‹Ńšr„rĒ–Æė7_ư4_ƒō_[k¦Ü|ó‰ŃŹ©\=œ4«»õS ”Ø¹ŹžÓņž`i:ķ¼ ‡ƒ“ĒČŪŃI49Ēqq=?݈öśšŪTR¦c/‚"0&±‹YJ$Źvó—ķŽ€|÷ .Ælņćļ=O¹čó÷QĢ××ht†l4š?¼DÆ?¼ķ¹$I’*TČGņ9„ Ēß}|‘ĪÆ0ˆ :1 ēW6)>ķī€sWÖ¹¹Łba¦Ā­­6żaȑ„9V·z ”õēyˆėyÄqĢ嵞ĶĻ/Å?}ļ<Ć(ęūƾˆ×Q<ūäŸ\\iäēn‘Kvīļ¾sń~óū§ćžWm“ŃųŽ¢Zö¹µÕĶ›ˆ„9¢† §ÕxžÉyžł£®Żj#…Ż £8¦Óķqt©Ī^9‘S»¤”4 «Śęŗ8)%Ņ÷ż “½ÆjT*VoÜ T,ĀXuōĖ€„$Ń$č˜ß™ƒŗ™ōyĄQ.8sö ž:¶Äl­‚1†8Šy÷ż³üĪk/ŃļtØÖjųž7įx¾w{ ¾»(—J(%)•$Wo5ųåŸņ‡ß• ģ™BVęeRÆV ‡x)č&Ļuó¾—ö’‚ĶĶMß'(XMHÉ AJ„R^ ō<Ēué÷ūt{=āV‹ł¹9œ19ą/}.9Ż^~æŸ_w¦„”ŠÅø}“B“~B°ŻīrīŹ-4÷ļ,¾{åĀ*gīÄ;UwöS&IL8¦±Ķż‰N"ō4Ī|¬āTG9øA€ėł}ēøgŠ5ū6ɧcoļ„ķ•°””ŒŚ$1®”lnwi6ūøŽäÆ>Ķ«Ļem³ÉJ«Ķ/Žū P;4OꛀL{>ä~KAƒ@ą:’+77š—O.\ēó+héQ*ūV¦3S2šz=@ĶŁ+[8כDQŒļ9”‹\/e\Äø§†A9.žļēYg)!‚7?øÄÉ£8“¼ F³P+ńä”:WnuQŽƒ12§ŗ„śä°¹£‘WšužŽÆb3µ}W™„šĶ§™Æų§__% \WŃh ¬¾=P-ŗœ<\§ä)ĀČ®K#¬¬N"¾÷ā1ž{ņÅĄĻAļÖÖR)J…BNsĢ“_1%ĮL–K‡šĖįĒ‰ćyėżĻł7ų:ƒaD³Ū'IŹ„Rź-b`²O'c ®ćšĀÓGøŗÖąŅJ×q@B­^ē̹¼ņB“£³—g­©”Ė ‡CŒ1T*•ݛµ¾/ĆĀŻØJYŸ‰ĀĪej_ņ9Ņ9×n· |ŸR©”WɤTŹe\Ēa†4 ¤”Tk5Ü1 r{/ŻÜdŸqā——бė¼üŠEEFŁŅ‡OŲ½Nó½WžćÆžįœæ|“G9é/=ū®ē$:oPßϵ' õ Ļ<±ĢŹzĖVŸ…ÄQ.żaħ®rpqĒqļź4ž ļ™ *T«U†Ć!·ÖשV«x®{Ē×¾š‘UĶ„”l5TŖÕ¼ĻäAÆŻcex„¤×ļ3-ĄPŠ$­Hyž‡ēū ]—^ÆĒĘę&Ž”ĢĪĪ¢ĮK{W²óMAĒlol ‡J©„r[‰‚^ÆG»ÓĮ÷}üōµŪ÷+• Ż~Ÿ Ś­ÅR‰Ł¹¹\pēėB²źŽ6š•[ †”ĮńUīz~?ńüäŁó5µFĒU c|.ŻV闠“'(Ł–€N†ŪĶ4Y÷uSņ5Ü0&nšÕ*Ė`,Ē< ū,.Ģ \»¾BŁÕTĮ”ł*+>×ÖüõOßćõ—ŸāŠāÅĄĖ Ä‚ @9Ī>V2ųó‹+üäĶŁj‡(' (”pr×q™fØ&ÅI'ZāRŽē5̘o†Ń–®!tJъ”H:ŻõZ0øJqäĄ ī§«h­‘Ņ6ә1Ō³“’3­ģżöds¬ųUŚ'ą@½Hą;Ō+ķŌsā•SK8JŅķ…\YŻäßÖ|qc“ęÕSK˜«P/˜Ÿ)¦²°ś6µ!)åo æ|æś—¹GvŸsųżļœę'o~H¬>üģ2g>»Ģ;NæpŠĮ`ø’ʀĘ`0?8ĻĮł[\ßhQšmb©R.óžg7(/={ŒŁ™[A»‡ėųż‚×umc°”ōŗ]ÜzŻR°„&•R­:ķV å86źµŚCƒģwĒÉiˆ½Į€­ĶM„””K% AWU2EÆ8Ščözlll ҵ$… Ž"œ`)Ē”X,’h›*ź“ļ X,ę•Ęäę³ŹĖĀü<ŪŪŪ8®‹ļylmmq`aĮU~Mc‰aņö™‹¼÷éuæ”ūtdg°y8 uB£=DŖŻ%«ļ.a/Ņ”ąCRéD&ś1S2ūvOpÓ„åń*åäŁm|•šÆ’šU ¦P,P(žäGÆš·ože£ŃįŹĶÉÆ/šĒ?(2S-Y—ÜōÉ7}ŌŚšŃ…ė4ŗ±®‡ćø©÷†² :ÕŻ_/“{›Č²ŒU-Ģør‚1ķ²ŗ¶Į±#‡ķ!„3µGT¹¶ŁO3BeLīŠ:RbŻ[2‰{üČųß%‚ĄwĆOžłÖ€X'^ØPšŻaHæńžł5Ś?zõIN?uOIČ)·Æ­¬Ē` pĶšÄšÅ¹:õZ‰’ėoß²ŽźQĢĻŽ=Ė©GPŽ—7!ļēuĉf¶Vāł“KluśD±Įu$Ž’hÆČŪgWy÷ģ5^<1Ēļ’5„R£Œņ¤”BI‘Rž’{ŖMerēåR‰Õv›śCƙÄn8R«Õi’`v= >vžsŽćP.I|Ÿ(ŽiµZ4šMū£ˆb±ČĢ̌ķ›ņ<’()!±FFƒb±Č7X^^¶t.cHā˜8ŽŁj4š+Woū'圞52 ču»:tČŹS7lll2;7{OŗÉc:’ķVČŪ_F9…4hŹ•£ĀaŌjīb2 ¦ć„Ųqs@·s?›īkÓ1 æI™Ąü/£”ƒ(įgļē»§Ÿ V-1 #Ž.{üą•§ųė7?&I$+ė-žīēšGß?ͱƒ ŠE¶67 ƐJ„bÕPö0RJrs}›Õ[-¤rq\/õqPŽ Yeƒ]Œ‰vŌAĘ@ĒØ€Ȝ’hĘąłEn¬·ņĆ[kC)šxśŲ"—Ö¾ĻGkh”Pł{[Ć%¦•ß®ÕFFÅ3Bė„’ņÓq”¤Õ S|»¶¶ė3cĀ0¢^ņ98W"š\ā$±ŖĒDV(•J¬®®2氐»E?vöoŲ\O“懯>Ē™s«HGPō|6Ś÷³włļ’äG“{żGv[_zś®#łłWč…1ž£š|Ÿ$I&1’ō« ¬7ŗü«?ų.ÕJ%oŗ•R°ÕŲꏏM.]½Į^{™r¹|_•“Œ~ų>ėėėĢĻĻß·‰‚Aæoϊ”µS¦x/(c9ŲIć8ł{i­QJŃnwŲŲŲ`vvO)̘HBĒ(„š}Ēq‚Ą¾®Ö8Ž“KKk­oSÓ@y_H’ž®Öšj¹ĢF£q›9ĮcRÉ\ŠEÅüüżs$Ę”ųH堓„vÆa+ Rbt‚ėļ >tbJ \gt†3õņ˜Ž{ĄōÆžāq\ļ7ōć ’$²r–~šÕmB0ģ÷š‚Āž-Ęń@fŠļįłÅ4>)85»C>»xƒ·¶†1ĒĶS)śžĖ„ÕJ94Ś}ÖÖ”Ÿ¹z…J¹L«ŻĘõ¼œ»w›ˆ„G]\Ł &ø®ćøiÖÅJ1AÆcŚį;iW抻żA€0#²PĻ€Ń\¹~#OšCkƒ’6³ųÅŹÉl­Ąb- 7Rp­¤d¬ķkģM6GG!`„ź¾ŖõĒ‘•J¼ |æ‡Öš8Žšüą+õĆAĻ &Œ0ķ=1Ł­b ō@¹ųAß/ąŽć£\7ÕĆįēŽĻńÜÉĆVŲ`¬Ā±ĖbĘó<|ßgsk‹0 )•JĶžŃa©ōé~«ä=Ź$Žē9ÜXo²Õ¶ ° i4Ū=ĮįCK¹‰į~Ž[ŒķM[ž«R)ųÜŚj3ˆtt»ŽK‡tBĮ{}ĪŚś:ė >ųģ?żå.\^åĀŹ&}qƒ­Fƒo½tŹŽ{œJ)¶¶·é¶ŪA0¢=Ąŗmw» 5¾ļļz6ķå³ŚYńɲõ~ą#€F³™Æm įphJ§CæßgńĄŚ­ĶV‹~æOÆß§ŪķÅ1^Ś÷1~ŻB4°ŗŗJ!ØT«ųžG¹\žųlŻn—j„ņµ0^6łē2Ü\oņĘ;ŸqöŅ-JŲ=‹]—$õź©TźøžŲ^™Ż$®mŸ%;Pb»=œØ|<Či÷ß¾•U–źk¹Ÿģ±L„d©±Šłf7śz—źĘŽļ_ćĘUNR#•B9.‰ōųū·>F[›é#”uHw]Ļ/¤ī»CzĆ8Ķ™ūzÓńõ_c£ _:7Ӄ[¤}W#Ź`V[3ōś=ž>:Ļ+/<‰ėyy/Õ½Ž+ĖLŖŌu{~aķV‹õõõ]ē÷£NZÅŁ)qśµĪĄĮ…žb™8mFü€õķo¼żnJ)Ło ›5t7Ū]¢aG%üŪ?xcj¹I„t®ēćx^P¤PŖął‚B™¾ś ÕJ‰~ØyóWć9’BĮĒw]\WŁ%‘Ņ6boooSÆÕØV*()ķ•Š€¤rģJ)\Wį¦ŁļŻöW!:I‡Ō%||’Ļ+:iuÄuŖ• 3õ:s³³x®Ėāü<‡BC§ÓÉ?ēĪód¢é\Jā]ś:ĘĻ–N·k×Ę×'«Ę0†|rž:Q,p]…Ź aGa2%Õ»BІø~‘½cLĒo˘V@¾ŽY»±Ņ§Č¶>cHŒ”^ Ųjö! Œ²j # 4†ķ>ÅĄćŁ¹ŗŽa£Ń”Tx’³«¬ŽŚäæšåÅ:²Xd{{ūŽZźuŻRbÜÜj1ŒuNūŒčT;ƒūį1ļ¶éMPéf)%F”©$R¹||i‹Ą»Ģk/ćüµ |߳ד}@‚µP÷” Ńb"؜n“æ¹klg€3r…IŃIuēE q¢™)¹Sõ*RŲ}CĒ)×o/!…`~®N§Ż§Łī°²¾ÅĀŹ:’ōž]Dęl½{żUk5¶67év»”3æŽĆ\“:#y‚,%Õj•õõuśėė4źu¶›M¢(ĀĖL&æ‡Ö’${^ÆGæŪevvvĻ3j°äö^ÆĻéS'?· ā”V„mø³“A¹TF…ÉüÄDj2^[&CŸ›īc*?(īÉMŽöÅ£ć€üŚ”k!Ն/žŸįµgfyć£UŽ»¶šµB‡æę»‚©z fkEž;3ĆOwŗH®_`a½Ć’ńož’ßżĶ—łź+OēcIźš]ÅOŽśˆw>ŗ‹r\o„§!īæ±ģgó¹W’‘O˜¬ b$R:–„gļ}¼ÄõÅ V¶ŗK•l#‚éŖ‡tkŪ!RK:aĄóŅA?Ø sԃ|læ¶#boœĪ¼w¬ŚZš¤”*.„B‰|: 0)‘*–JøžĒęö6½~ŸF½žPŗZkŹ• aęcXæ lƒĻP­ųŹKOšÖG x®ƒėz4;!^_䕞:“Ļ' _zī ×ļ® Œ¦ZōŲhEc÷Ü®AƒR’ß~ķOŸ„Łźć»J¦ų„:M'5“vīn®`X&IRŅ8FCɗ”E§“Pbķ`Œ•RE ĄÄS’oÜāłgĪEɞųź:…b¦9éūaFĻoąš>UÆćū>ÕJ…­f“4Ž-ē0óį™™ž¦R.^ˆ$Iš=oO‘ĖCEōC >éģ|gĀ””dc{ƒå§ˆ‰JWŸ®złÉąc·oŠ%¤K!R””ƒ6ŠĶ®É‰WBR õjĄÉé"żž*;=ē‰ā×½ÕķčųÕ{ļ³ŁµĘ4©N‰Ć.S'§˜™ŖęŠĻū¾φłŁYšĶ&ĖĖĖLMMįŗī”Ææj„ĀŻ…z½år?ūõŸĻõ+ɋēOšĖ‹w@”°äļ(Ń“Z]J„Ņļ–ƒzĒQՂC½ZEkCŃwųŽWžęÅslj²1?W)fźe–×·Łéōs­ēM*Ė‘Jį8*WTjōßWÄA)™{3)å ]—Ø×įŧŸ Šb¶¶¶ŲÜŚ¢ŻéXe©fĻó9•4)„U—[_'MS A0Ü72)į„åe‚R)“76ōŗ]Œ1ōūż|äp÷=7vZ;„aHĒŠÅO›øßspkjō}„€N/ę’žć²¼Ł„šÉģK©8ŖĮ÷^;Ēf«Ė•;,­·qėYžfšXµĘQy݃‰æG*Xāž©`‡øā4…R‰(ģ[#$)Œ»cŠ©&M"Šå*ŽWęgŽe½Łį÷æõw°ŌYo²:ĖHnBBsæ »ū{¶2%€Ō>‡Łu0zšU£Mīš`ēYc3ÆEø¤FӋLX“Ł<ōh€?š}żU=&­? >,)»ßļrzĘć·æž<~P|ąŅ­ƒ×JÓß÷9>?ĻĘĘFœ‰ĢƒZƒ£ŠCžēžē±•‘™m©c/wĘ`9$£¼‘G ˆ ĪC)ÉŁSÄÉ%įŁ.ˆėóĪG‹,ož šW9wfŽ$Ń~>:Տßüņ³¼ŌÜį™§ž¤PņīD’j¢8É9n©Ö”‹>’äw^ćķKwø¾øI³Ż'Nc åRX3L1 ¶{®A~Ģ0NŖTӏ ÆošÆžä/˜©ØU+|õ‹_{AŃēQ‰ƒ£rĆ„LÅ*'ĪC…ōƐz£ZĒ1išŅķv‰£ˆ©éé=²²ƒ*„r$N¢Ø”ˬ¬®2Õh`ī³Lā*Žš~Öēw¼8bö-„$IŹŹÖ’ęĻ~†Tš)$FHŹÆ½|š8Mi¶Bn-7q]gPŸ Ņńś=Üļ÷r½ūčų”‡s‹ä‘_0?ś@ļłų^° šŽĢŌ$ō:mVÖ±\*qåī6ń_}Čß’Ķēxņä;Ė6QHmµµ×üń÷ßąüĆßD)I†8®ū™\n\ŒBĮ·]°SD, IDAT„Į9Ž˜īVÜSuŚ¢Œģl­YA!są”uj“$ ÕjßSčŒt§µĪF,d>+«„`m»PVY &MŹE™³«Źtd¾ō+ż“Źīf£WIšā+83_§\*FńĮK¶³³³“Ūm6·¶ØT*¾Ÿ'ł BGš¦”J%zŻ.Ė++())JŠŽćjMĒtŗ]śż>•R‰B±ųˆ+”“L¦vV«–Łh…¼sé&ó35Ёąs’Bā8įر〠Œ4įX¬“‰6¦GI¾ń…§ųö—Ļ'šŸp“_|ø€6"SĮ²’ē£*ƒ»ńČ`}ƒ-ä© $˜¤Ģ„;M‚Õ.ßłr„¤B‘•vgÆuģ# mēŚJńÖŖU¤”Üŗ»L§Óēü™Y6·›„QĢ1Ļv¢ż `ff&[ fO’/„ œuL’$Į÷}Ā(Ź»N“>÷Ų5Čų%ŪŪŪ”ŠEĻCf÷O{­C©‘  ™Ӕ?žž›\¾±B„VĆõ½lā@b(%86U„Åō˜­V%ĘhĖ2„F •KoŒg ĆļyŸw;Ńß+Mŗ7-=Ä<|ņIź‰ąQ’öĄŸ1„ +v? ł]Ń60‰LžW(•ĖģōR~ōĖėl¶¾CIČBP Żjń§?z‹?üķ/³½ÓD ÉT£1јč“īæā8Åä n³ļĻ8¾¾L¾QNž»)~”H”XF‰Ö6Y<Å\£@½čR-øTKžŻ”ÅĖ›mšķ>Ė›]“1ØlKHaĻY‚Ę¢$¶Śé"Ū¤īSM‰QČ0Bo2™«©-ŸÉq=Ŗµ:ZĆOß½NŖ5Ēēføqū.Ēg<’ō¹\=Pd–‡ķa–ļē¹nęsa?¦ē8ō”`}»ƒŃPɌ?­‡JĄčs/ 1č`TŹe–WV˜j4(Ø€™L™Rg|0u–‚µµ5¦ź Ö7·2vĆģĢģ·k?kÖu®ß]”č{Ÿ›¢F„QzaĢG×¹µŅ¢13cĒš¤Ź%éµ)$ż(& ī¬6Ń)øž"ģG“š[¹ņŚŠųwl§Cė” (āŠVlŁ[ī9ż$°ņIĄåčxŒȰ5JJāTļ»R}“>ß5ߥÅ=r“{!óź‡i ż$åŹĀžėāūĘč‘`åJ™›ĖŪüן|Ą’{_gii‰õ fēęrŒOsģtCā8å^ćž»“‘aKŲEÉ9»?o¦t…¶#g:MҐ$)ϜjšÅ§§)øo®ńĪ•»—ƾxš©Z™Ł©2Æ©ć¬mwųÉ{·ŁīDÄIJ§Ÿ@*QŹŲŖ’°#[Ryٹ$vO‘“ŌBīŻ>>ZĒą­ŪÜĢv?¤H857M£Q§×Õa`śvl~ž­­-šĶfN‡Šžƒ‚Z½N±\f}mJ„ĀŌŌijAY­^§Z­ŅÜŁ”»¹I±TĀó¼1īŃĆ"ƒ÷,|~ļ[/šĘ‡·¹p}•(²qÖq66›ÜYŽęü™cī ²;ΟR©ÜĻ!ču{“;¢(Īų˜†(Žń=Łéi …ÕŖk^XX Žć12žĢ­r”BHhwz\ŗ¶Ą“Ķ7Öø¾°N’jv:1®ēQ«Vsž*/Śż_óž•E*„€·>ZŹ9<~±”ƒ•1”»įDaHöäŽ+æMĪ&Ą?‰:)‡::S2Øxž¤ZPl“5F‘²b¤„{“ „Üē7ó87“ŹHuFÜLķeōI—Œ’ķ õj•Ė·V ƈ'N°ŗ¶F§Ó±œ}óą3µ‹ė]Č*c¹ÖŸ°ąb”Ą•ƒ†ąĆ˜4Sq1¤#Ęhvµ„K1˜_v†Y`xj®Č•Ū›ÜZŚbc§Kbr»G„øFĮߢV Ø}ŽĻTųĆo?G«rsq›nƳ¾Õ'LR-q¤£ų¬$)˜4Ęõ•e&b[ۘń ä“@ÉŃń8€Ż`Ę%Ņ gēŹ|ż•ó„Qzčql“R«×‰ĀĶ­-ŹWä0ärĒ:±Z£¤äŲńć­Ēø0 RÆ×1Z³ŻlŅė÷) øŽc«ų¹(•ķ‹ßłņyĻć‡o\ĀQ „Ą÷›„:ĆšēµÖ8Žƒć8–ϐżWo.ńҹӘ4¶cøū4ÓårÄqlÉėZS,‰¢NƋ£s'g‘rü5ŠjI’ŲÉĒ!M5qb;W®ć°ÓéR)²ūl÷9'_ī‡1ķøĻĘv›æyówV›|šń…ēq\É쌃TRÉLhEe÷]ęE¼8Iłé…NĻUqżĀpD2[sygt¢ ŗV}?M&m½bS’&ǁɏ“!Ą>Ź9EˆI5½nL†iē(kEE;Ō¤zŠx3ˆūŖ¦„ä”L†q°ńc%iĒ*÷ʎÉģŪFi“V8®Ė›Žą[_|†©FƒŪwīP«V'nz÷:×8IyņŌ4×·čF Źø9I^ ö¬‡±Ī‡ĪäNSMœ¦8Ņą+E”čSœĢwAŠ‹4­nߎLŁGĮ…æy’ėĶ>Žēņ„óĒøzw“vWšęÅEā8ĀsS%^>wœz) ø*%)Wk\¼z›Ÿ¾}™ėw–ØU§ø|c‰j„Č’š÷æĮū—ļpńŚ›;]śQ‚ėłųA@­^ Źõ¬dņ€ƒ#dĘÅ-#+ĄXy~”$„čpxl„r¬Ūw˜#tö}ķFŖįōt‘Æ??Ē/Ƭsm±…£÷GäEm²ī“’0Uõé… Ż0µü×ÜĆé|üJįę'r¾ĮķõžB£ŃLÕJ4Ū™R„0ł¬äų8øc/Gc>T>“ŗūWLzģ8”‘CĀālͶ–“$eŖŃŲw÷c4°8ŽĆł3³,nŚäȎLéÜ]z$F9z@ųbfj>æżŚY :RcHSėH¤’ōū}4¶*etŠ6:'Śn±”fw„n ·°@Ėó|\ĻÅhCE\ŗ±ŠĄą{.'fė|é¹ć¼§\ø¾ŹŹVķvŸõ«Lć;­“‘ö:Ć®9|‰0CÕ/ūœ ķ&q_Žž‡Gų·;}Žųą&Fƒs³DIņH$÷I’…B„•œV‹J„ņHɤŽJ €HĒ“[-¢8&ģ÷ ϳNó‡|ĪZC)š˜­—lqp‡„w–·˜›Ŗą8Š4}x$k!;­Ēęē'‚n7ä­K·ø¾°E£QĻU–ā¾…¬½€d0Āk‹QV%Ie¾P >ŗŪ$śÉĢ6Ź,­nrõöĀ+rķī*ßģĒ”ŠźP“WĒqh6;ą™Ÿ›Ļ •• μ,l®ŖP*„o Wn­s|¶Ž_(Į¾9 £×,Œ"Ņ$aff†ZµJ梔ŗ/'v>¶v:üן¼Ēµ;ė$f§¦)VėDQL„RĀųąź"k­r±L±āZæ*©Źŗ›+ǵ*gb($3øßb“1²Ū#Ģ&톉Ļeüļ(6cDɤūaF@’żs’ję%¾śÜ<7–š¼s£Mę/ņŁŌ³>ĻzJ‡óżŻ Äš3I»$$QČŚV! ZōŲj‡øJŁŃ›#šqˆÖ(™ü@arBĪQ$iĢ|½ĢTcŠ$Žs‰ĀO»FĀ(į…sĒXŪīpńęišd¤H’¶ū2LL&ØŃIB‡H\•Ż~œ×2Œ1øžĖūWøpm‰0ušƒ"R:vÓdüacH“%Uęš:ŲL4Z ŒŌxžĒŅV…Õkœ9Vg~Ŗ‚’×¼śō1¤,nvxóŅ"wVŪ\¾Ū“×JŒN ƝŚQ+G98NV8KE†x^`U•v‘éŽ€Č£’,¹^Ūė›üųõ‹ü“ßūę#åk1XGӍ;;;¶› Å °ŽŠČ(ńAG)¦¦¦ƐN§C·Ū„×ėYu/ϳŻŅĆ$3 1Š“ceRC#xćĀ-śż—Ÿ=C1šķ9%W !lŒÉ‰#+i|1K›Ļä?ųŲŻ‰Óš†ŚE.•Ä“8åŁ“5ž:YēŻ×YÜčį8ņАįŃqļ fü~f­O#¬āS“]DŽىp”ÜĻ<1üÖžb­Łe}»?T”1)Ms³·4µ@C­ä1ཉŌßėG|šń"[­>„r%k£kŒ¶ć]6›üļ Aīøjyš:4Łg|ŸÄ±Ź&o,sįŚ2a”ųÖ)8ŒSz½.CÉ÷ųā³ó“»!+›-ś­cósDQĢŹV—n B[?i%L]ĻÅń\F;>»Č#šń«ŚŁHāēŪb†ÕD„Ü  iŅ$A¹Ž¾„ø®K­V£ÓķBšŅn·­U¦¶óØÜQ āŗ.SSSōz=śaH«ÕBJ¹Ēuż %%®’˜ĢAIŃ÷Łźōł›w®sge‹ßłęĖTJEÅĶA‡“rįI’ŠétH³‘«Z½>&…€n7äķK·øpu™©©~Į?ĘüCöļ™`ĢHE]Čƒ>ū:5§A„ZEĒ qÓ©ć¹źĄ×™G^ēH‡>ŗÉĀfHµ6…ø½gœ²Ä| $!„ķnUŹZ-Ć;-ŃīFüĪw¾J=Sؚųl­V‹$Žó}Ŗ\* H&Nz‰ą?’ķ;|p}‰JµŠ£F’ÄzXžŸāÜ©)óÓ5*å/lŁQ« €ŒŻ[ÄčĄL0™Ģ‹f8“ĒfHž~øÅ°LŻS6vB¤Œ ŠŽ/Ū?*!YZoséÖßūāNĶ”YŻź¢5 ‡3e‡óyŻN ßÅ'ÄšƒbV5ł5 “ęG‡ó{CҦć(¦ŖOĢW­žśZ‚c\ŽōHIx’µfEF@A‘K·ÖłŪ7Žē7¾šA”@?Œ>õC<0NŖ–}ž==ĆźĘM’|†S ‰’÷ €ōĄóg¦IōxĒ@II«’¤ 71Uzo'“ź-_JŠFYŬl,j øįÅŚv•ĶQ’jƒ›)‹¤©Įq$¾ēė˜•Õ ¾ū•§iu§ŁŚXēüSOE ­. km>ø¶F?68®ŹüE$ĀŲŖc¦bG]™¼ ˆ•ƒølöČw'f O:2āą;’Ó%ŠÅ"ż(~$‹ Žćä<V«EÆÓĮÉfÓ~Ś9\ß …Żn—0 iīģŠh4r’ū®ģhL1š36ņ®p!ˆ£˜K×Wؖ|¾óÕpu Ļé ±lµZÄQ”K+ĒĮs|ß‹޲±EIj½Žēū6YMT3žß¤żū^{ū sk™7ˆU*±E*©ķ0+…Āą{·×xåł§(  –1†BĮēƒKWł/ūA©J”JŖµ)”ć¢gHÄĪųYŪ3ĶN­\®Š“’ 77©¾õ!æżĶ/ć¹ĪäqcŲi6©×jvM vÜźSꤓ»=~öĪuüB _)¤r0Ā —ó§gųŚK§˜ŸŖą8’µĶ6—n­£”;ģ~Čag}ŒĖ™7&łRķJß³½v²‡ūļ°rø£ņ"?vm önåäl»\ KL“±±ÅĒfŸ_\\äÖJÓŹCK•}N‘wAü³;BīJ‡Vœ²×F?9Ć倌/ō!Ź+;wéę‹ėmV¶zV1č(§z$¶=Ć7¾ņ2a˜|źÅ.„ &¼tī8Wn®rsu: >ŽijHuJ%“Ņ(ū|ėÕ'85×ŲCž“ÕøL½ĘŪĪb8ӚoԌ“ļķłŪįĢǤz ŗŖŽCĮ󆚬ó&)ż(!5†›Ė;Ü^ŽāŁ3sōZ[ap]Į©™ 󍳵€[Ė;,mõŁéF8 ²¬8»ĘjDfš|<˜øG}ś½.R©lŚĄ0JG̶¢Ģ Óģ1¶«ļŖ½„FŠģDōś}¤£8UŹĻō\Hʾﳵµ•w§§¦>“ Äa­5Aąū>+++ˆFćp ‡U› |E±ąE1¾ļ扸ė9Ėe޼p‹WŸ;ĆÜtż@NCJÉņź*ßϽ&üĢõ~ˆ EĶvŸk·WčE,GFu²źż=]ŗļ ĢćÕ"­r Ó;Jpģå‹k+$qro=ņ°®}ßeqq™æüه·†tŠTJ>NÖ!PJ!²Ļ>”Ī+=yGT(ŠÅQ”pńź¾õ•—*>ȵ“UKlķ–W6©”Š{ó”ĢɼT(ę£pŸe}jc89?…2t^Oc k[MR} G*Ž»ŗÄ[—(‹C…+!'ŽÓ{=;łųښ1fūµē^zzŽf;äęŅVfØ8jō+ņ®Ć!?ż»@#… 3ęū1ģšŲ?'Ś' ‰–|幬o÷ø±Ō"5&óWb}ēūé~rX¹ÜÊßć_w_ē >ō(ėŠJC€ĀA¹YBČØ¬9#^ŚbǰŒĄ ŌOxžAÉ*aņÓīšńuϞįģÉ9Ŗåz~bøæ"ĆĄd¶QBIÉ©™*µR@§ĢĻŌp#%ÕR@Ēt{©1{*RĀ0ę£+“Cpż€ŃĒhõnšūłC‘n™×Ųį“m²iššäü/„ˆ’„łFĄ‹OĪZ•“WøŗŲG싉ś=\?8#Ÿ5qEąy.žļ£ÓŸĢ]3“ų8yu;>‘ RŠ8 ŁÜn£¤$yÄÆ‡”’b”@Eōz½G? M€‡učT>ƽ|žZ¹ČOŽæÅN/Ęó<@ ”‹%޼x›/>†©Z™ä«bich4“»]Ŗ•Źł\%%¾ļŅluy÷£Ū¬ģō©W«ĆīĒQ™ū(]ķū{ļ‹%<t6Ņ$…D:’8ÉĘK`·ß’ˆŸ¾ū1[](•Ė(åā8ó½¬ć3āi‘?߻Ɗa¤u W?(køpõ6Ož>Žć:{*åJŹĻ=¾ØµfnŗĘūŻ/šƒ7?&ŅƓ3.ŽÜęīŚ[®du«Ob$ž—ńy䈲Õ=<.&‘ēód8늦iB„šõ³Ó‰xł©i®ÜŁäĀĶM ?ę6)¶F=ėžĢģ‰Õ£]! N4o]Y”Vņłī—Ī2W/±øŃ¦Ż×#ŁĮQŽyłc.‹œ}Ż»dă £‹sŠ#Fwft›Ɠ«Ū üüżŪ” ’ßłęxžé'éöĆ}յΤ8„äé3s¶ż¬m%x3Ņz½ź ]ĻG7R)č†1Ż~ ŅĶ*t#ŹVFŒ-=p^ĒLNr2"… 5’·Æ®réöi¢‰ā„0HåäėøI.ŽÜ"JS‚4MYi¶łųʧO5ŁhÅtĀn6b„čF)BH’=qĻ•üō÷łŪ÷n‡B©ˆr\å䜏a—€1~Än.ǐä/l§_KĒ”ø¶°FÅ8®3v­!ØV*lnnS©”I’ä3]K; Ļ>qŒkw×¹pc Ø<‘.Ą IDATN‘l4CŪ­—^vƒQŗ!ß|’÷Tūž&šzŁÅuŹCą)®ŽŻ IRū;Ņ*e r¶ĆźŹŅūLŗ£ąRJčGšVÆÅŅF Œ Œu.n3 bަ ąžåC¾Cš”µ!Š-§Ēs$B€”ė8ś¶-¹wąĄHU‚‰•Ę£ćį'*ƒd^½¬ź£”‡ėŗųžO©TFłERU`³ śĆwųóü”f³I!šš€ĆqVÖ6ųēņ~šęĒ$ eĒĆuÜlģŹbųŲķƒ3ĖŀS!-wÄw}k² ¹`ƒ1†’÷?|ŸR±H„Rb}}ż½>> Ąʚ[_>ω™ Q[åĒLøĒõ<\w>äpÄ8#8īvųŽO¤ŖŽnį¼`•wB$Žė±°¶u®Õg–mŅŽ:–KE~üÓ×¹¹¼ƒTš³ė8öóĘ®+TM®rßėÜcŠ 81_Ēsœ\yģÖķ;¤Fóśūó·K±Xdm}$I,yü3|¾Š->’ą·^āß’š=6Ū!hĶöĘ*åjß/dæ»»C»æüiT Šƒ)Ņ å¢Ÿ›}J”(ś _A/5رi‡c¶łÉß##XŁ}Ķ&7śaĀĶ•&wÖZ“zўż[ˆ#r`÷n† ä)ž:V„^öłčÖ6€Ü+1ŗ—āĄQ"õčU’†zdęRbGšLĘ„ŠvnVŖ x":õH’„ÅfÄżš}Ņų ^:wŒļ~żꦦHµĪg„­¹Ćf³C£R“3õIB²KéjRPuÅņF“;ĖøIIR‰/!‰“•ŒĢŌ„å å`ęWŽŁF‚Ö®Y’ģ'ƒG‰ĄJ:cPĀ*Åx¾ÖĒq3Ą@>O›æŽ. ĮŃqEÄųx¢ČFÄX&lźb¼ź>š'=V[ ~PÜC”>z†öq›“”ŪO¹±“ĶĀŚŽåõD)aœrz¶†ēĀŲ pĘ.Āćšū&ap„ š$śŒc{Ī'KāS­éõūŌ*•GR‚w¼ś-­PÆwh€Éz%„aH”PČ»¶©6ĢŌ‹æē:\æ½Ź//Ž”Pią8žUz’Ö‹HŹLiJ G®äH—u÷čźA¬Ļ!@CĪ ¶łN¤YY[ēģ©ćŸ*N ĄĄņŚ:æ|ļ"ŻŽ$&YĀŠ(åēŻžųrT|dŸQ™a#†ļė*ÅÕ+\śų6^¹Å­µaźS(Ń:%ģ¦Čll«X.>½V…Ąć÷æõ"?’&o_Y”X²œ¢n§ 6åj Ļ2E>å}rā0†Ą•üÆœ„¤ŚŠķEüųĀu>¼±Fu]Ę\Ó9 ū @šīMUJƔ•­.k[mzQtÄ”<ü;4vÆÖ¶{yQϐ ¦ 0a Q&= K^ńčųģ ŅV‡tž˜M"ŅnŠRiLš’j„4®ć¢‹.ßYćņķ×iŌ+” Ė;V"5Øš^”ņožüüĮ÷¾Ä—_x‚(Nī±9ƒļ:üĮ÷^ć÷¾ż%5؀i_³žģ€¤×ī†üėæų€(ÕønĘÉIķ“_’~nń“6ą”ȊĄń|¢V ”¤#g026ł‰ķČ ž“ŃŸEø›.±ŁŽĘ~~ō ķ?J qbŲé„4*>_é4õJĄśÅĒģt¢ üѵ§)yā™$1•ž<}ģ;v#q—BŲnc£µ¶Å8¶¤Y) …C1õūĢwKJ¶·¶čõz‹EźµŚ¦A¼K’„8Ih4¹ÓxŖ5³*gOLŃė/Š¢œ6ˆ#3õʽ« ū¾w™)¬u{ļ_½ƒr<|Ƙ©ŽćfŸŪÉ×p$•=>÷z.w_!Df¬(šż€XĆD]./wš‚_’¦­ÆĄĀņ³Ó Ѕ¹ł³]ßü|GI~ㄳ\_Ü¤Żń<Ÿr„hś6½v‹R„†ėł÷įB|r(Œµa}«ĖW^œ%њķv—Ė·ÖŃĘĮ÷(ą<.ūM¶ScXŽčč”81Č#éCŚg3±śŃNÜķ£epŗĀ~ļ¹MRkYöė<|t<š dŒČ<³ė`nĒVt֊—HiŠrŠŃbŒ X(įųB¹“#(W#•åĮX–Ėü«÷XYŪā÷æóE¢8>£j>ƒ6½MS=’ŽH­)|žŃ·Ÿe½ÕćÆß]Ąč$ųģj×ߏä¶{SČCwV%…uŚ5mäD ŗ{%?b‚\ęčĢņźŚn±œ9Ø­ŃO³!•h|śDƒ×ž?N½ „@*Įv«Ÿ‘å&m¼ ǰŽ"GšåēŽQ«Õ Ć葉iBJ676RŅét(‹ČL@¢P(Ų±GßĻÓŁĆŗ½ĒęęP™ĘAW^GŸ7g‚Ģj'üĘKO0?UįgÜb½Ł³•šģŁßhīŲbŒŁ_÷t¼J)¢8åņķe®Ž\ęŅõe¤ \×óre+™1ōƒČ¹CŽŁXé®Ūī×̹Ņž—ėŗ,ÆG¬®mrźÄü¾p™Uz¬mµŲźĘŌSø®ķüčŌņ\l÷c\éŹr.Ę~r 9ĄlÆ£D)¾ć¹ “±ŖP2MHėśtŗ}ŁäōéS™0ĮƒŁk1xžäüÖ ü?ö–:1)J9TźÓ¤IL§ŻBČ6„rķ3˧‰ęĪj“Ææ"I!M4©†Bą2Ŗ§aFž³Ū'éъپšRբϗŸ™gŖš’żĶĒl¶Ćq~s4Ap[m’ÄÄqˆö­ņØŽ’ Ņ!Nµ>ėz\@R[kŸ«tt<ŗ`døQΌQŁ|¼%ź iIÓRjŒ±„;ēįz>J¹c­““z5R)„R¼żŃ"„bßzķY,æ×ŒmÜūµyõrŖB/Ž £=p½f±ü>•3qÕ=I‡Éx3éˆÉŌ>7 É<)ūgæTäģl‰kKķ± ēQż¤li(Ė\<*Õ­6kŪ=.Ż^g£Õ·ĪɃ¹{E@§Ģ–ąÕĻĒÉ#uķ“$!IjµSĘH1ņühżČ®—A§Õjį{Ņqņ.Äį81g¬ ?ÓZ[ÉšÓs¼šŌq޽²ČO޽N«"0ģ“#n/ÆsęŲō'€ŽaĀ+„ĄhĆ„‹¼uń&w–·H“!š‹ŹU×£­c×Ķxvj"šQVR%r~‚ƒnø`jz–ūŸŹ’śĻ~ĻóöY3øžGął¹Žr=GåŽ&»ĮĒ癨ģcó]ŒD"2,Š#Óü½Ļē­®ņ{ßłJ¾6äśG J¾Ėé¹ ė-k°kVR”ćPŸš„×mE!…BńÓß'ĮŚv—wÆÜ”&œ;3Ė|£ÄŻõ …ņˆcz.T>BõķFIØ=®/mó^4"a,™‚ų~žÓĒ γ\©”u:Į€p\ŠĄ¹W2÷¹O$s??:~5a’>Ø‹\byĄ‡y1clµŹn"ŽćŽ,Ī!Üh+ĢH)ł›w®³¹Óįw¾õrųdÖŽŗlšūƒaRaǶ )oWģqż$ņū½²÷ō°7 ×qˆ“ĻóīŁ5x”73‘-ōÖĪ'Ož|(×S0tŸtŻ­I"Ķ+Og¶^āš­nå:ÜYÜąģń™1)ēŻĻ·}¦5ijå)’śĶKüÕ[W)E Å R)ĖópŹõPұ¾ B¦ƒ×Š(ĒE ŠFŒqóšķŽQ¹źŸ”–Oį:ģ$.]ćµW_ųĄ}pŻ|Wį{®½™ÆI’›”"ŌČ}>Š%°±ŚŚ•Ųē_+0*[Ńhm78ĒŒIiE‚R±ĄņŹ sss{€Õg>—AĒJIĪĢ×YŽ\Ās½lĻz\™]Nåūˆ&Æ>+%é„ ?~ócžąŪ/x.Sõ2”‘œœ­±“Ń”ŻKqi²"ö(ytĒ7S gē*|÷‹§Y\ońѝāT£¤‘•L¼ū¤üqįLē9Z&ˆńIųĀ9г‘æ¢Ē^nrŁ^!F£­¼,pPR)gφcŒ±NĖl†ŲŽ|xs+·~Ąécu|×ć…s'xāų4d¤r%ijI„÷3~üę”D¹*ˆŲWMhw?P{0Ūr”B€H3fīć®}~Ōčõć(Ź„­~žG ņėS‰ćø$qDŌėer“Ö¦?ą§a;­ķźÓóøŽĢ%‘GĘ«k’¾Q¼uń.ÕbW_z.7Ō|ŲÕ4„ T*±½½MµVC}F‰Š‡yōū}”ć<” ל#¤x¾Ļ“np>a”p|¶Źļ~ėžņē—X݈¹šńŪµÕf pčĢß MR.ß\ęoßŗL»”¢Ń˜Ś3b%…%˜Ėe’44ĶĮ±Ö ®ėS,Uö$ą‡y½&[1ŅQRQ­Ty’Ź-^{õł}u‚ ×qš}h@0—ŅJüę²źšńł@WGōŗķq>”¤IL­>“ÉŸ¼2Ø4„ŻŃ\¼z“/¼ų ĢĶĢ%1:Õø»Ģ ?[ś$ؖ\k ht..°ćŹbŸźT抖C¹a!¤½Ę®bu³…ė(ā$ęå³SĢNUyźxėKM””¬5ū4» 9BŃų!„`½ŁēŹM֛=’Ō „Ž“]Ji‡Ÿ?åĻ&å :¹XŚ]€uųreBæf@døŠFrć4£°DńA }øJFģVJtj7°ŠTÄiĀ­•.a“ÅūWļ2ߨšģSĒyęģ1Ŗå +ėŌ*Efµ{a)XŻl#ŻB~ŽāSš{€™±Ļ<ųŽRŠ0Œp]/{3öüŽ$@3ł½Ę¹)›-KN^č#“Æūęŗ®ćå+Ķƒ6iŒ ŅQh³T"ķȕĢó 9Ѥ’…€^ÆĖÕk×)—ŹĢN7Ÿq&ūU “fŖŃ`ccƒ„ÅENŸ>żXTĻF“?+³ķdö8‡ė¼œ¦)ż0¤Ńh|"I_A%œ;=Ėt­Äæü󟱼ŃĢAź čÜéGÜXXeu³M»ŪēśU¶Ś=JÅ2A”j‰åYlY÷wĄqR”*v]f#ARB…$QüH$%{äP‘(i0Rb”Äq]V¶z¤ZļĖŻPŅą)A¬ķµQBåą+'ŗ~Š„3ߋ$Ž ‚^P€Ō 2’’śźRfSRƒ¶ÜFc$B)¼ Č//Żå՗ŸÅhC/Šł«×?`sk‡æóĶ/pbnŠ8I?ūˆ¬ŸŌ¤Ł5Q±B°_}ÜQ„ƱUvæ|e97?|ó*«›¢0įµžyrž©²ĻūWč„րŲ(“±Æ¤śaž²ŽY?¹°” :ˆ\"zČהņb‹Ī:Ŗ£†¶“ĆŽ„ü€Ē ||Z0r°DUfŻ€Čī…–›ŽVʐcŠ"Oō²’mż7„Dh‰–™*\Ē!“Niö#žś—ó—?æˆļJŅ8ę;_}ž©/Wq”Č ź£ē§3b©žUŻąc|öՌuxČÜÕs™V#ū=;>q°lvƒŃÄw4õÕIjAM~)c/ztģĒ»ļ—Čę‡ŖCùś”Y®ˆ5+c›wJ­ZäƽBgŻ”‡>ĘÖŗÖ‹E¢("Š"KlõżĒF³`}cƒ¹¹¹CM£ÆEQ¦F¤H÷AŌBE õJ‰ųŻ/ņļžĖė\¾±Ä©cSÄqJ?Šłé;WyżĀu A×ńš >õz!'•¹ ÷tČu+ <0ąyßS„qJdF‹7)¼·•,N1Śdā# FJA”*VW78~lī¾cXĘŲ$×÷<üĄ£Ū·#ģøŚƒ'”c‚&ą M/ x!I¢£A:0ą†#sGråx“z! K«” ½^Ÿėw7£„f«GµŅGI‰ēŗ x÷s~J _ɼs¶÷—>ø¶Ū±DHk +”¢—¤L×Jüī7^ą_ü§_ruq )śę/?5Ē™ć³ÜZm£±#ƒŠŒK7däŹŪ’u¹lzœjtšā:j¬>:²7Žį>Ųó·üÖ{ófFGźF‹·£cv»M·®ö¤ēöhėč8ŠÄo·a—Cķž €iT®Ø%rIGÖŹrDŒĘq\‚BjŅ4”Óķ²“Öbec›“s½•›ŪmśQ„WšĒžūŠI€`,ŒŃ#ź]ökŖ5ž«˜­h÷ KkŠE$š4µłėԊ Š“Éų÷ģ”ė“iB8GJūCĄ1½ĖWc>[>ŗA ’žxå°ŃģšĪ…ĖĢŌ+”ŹźµŚē–ä|PŸŪ÷}¦§§ŁŲܤÓķņÄŁ³¢„tG©Xdue…3gĪ8°6#ŗōķv›v§ĆԈüī~c^ĒĒheIv~YzČØ‹¹ĻF³7·öԈFEQĘŖubŌ2 „øŽK >¹|‡Ķ^Čf§ĖF³•¹*? ‡ēyčk|m_ąó¢9OCNŲéńĆśÖųŽB딼»ŻŪ5—o¾8Ķ”™qĒ:Łļ1lY æźū½|ā+ŅŽ±w—n.sóī:µ’‡+h“5ÅƒŁ™"öórČ409²ˆłg44‰Ż.ÉdżyvJ.±eĶßvxŲ#q¬GŲó’NjšĘ S\1Tć4Ö[ŖRt9¾æĘDŁcŗīsźČ$õ²—$'G“śŖ {ĒŽńŒ£AtZ15™‰œ]crĄ ‘GĢWS&źu®Ü^£Õż”’ņŽ¢Z.?[t3ā>bņ‹Ä–čI†Ņ$Տ0ŠPĀp|®FÆšźó³Ä±ęäŃŗķŻ~H«/8õü1Ž˜bßD‘ŁÉ*śŻÓtz!Ÿ_[āŻsót:]DR©QRį8ĆĶO§ŻĄrŠ=ßÅhaõą±@Č6z¦ŗv“•ÄÜKģB¶c?“c¾™ģ¤”c•6‡Z­n­ Y[oӌׄ\,}‰FBJzŻ.N×qš|ŸJ„ņģ›ę6×b±ČŅņrF…zRc ½^~·ĒōŌä#ū:cØW‹üg߃F­ŹO>ø‘@JKnҐŖ9| ĮDÕ×Sµž§( ĢN–š=‡‚ē°ŁźE!¾_ ßėZJ‰”Yp…(Ē}fy6›.²ž!$¾ē³Łuųš³‹|ļŪß Ć­*9ĀJI{žG߈!7w›|é㌠HŗŪł•b9É6›-‚YĄ«ÅPAthؔ , } IDAT,ƲøR«”‘i­bõ·—[|vyž×OÅuDŁj8žT¢ųh°MśWn.ńłÕ»\»»IµZĖĆœQiĻCß{lĮ&ĖĄƒAk˜Øų¬j»Īi%€Ppbn‚z„€Ž#®Žqčõśœ:2ĶZ«GÆę`b{ĪšcĻĖü5}×P9ß䄇·WąLÆ;/4#„ٶēr»5;a˜ķĒxØėR N—hT<ĪŻX§7²g*„äöJ‹æžą‹ė^<<ɼq˜æūųŸw׎ÖÖ^=²wģ» DFšęHˆ’ęa‘ųŒˆd£ O£^ge³IoÓØJā$‹ųźó‡ųčĀ]¢Ä ĒöpŲԚ%8lĆĢĢĄŽ­€„q„Dóõ“³|ć…9V6:ĢM×RŠjučööĻĪņ×"ļŸ`²^bĘD±FdžrÉćä‘IÖ6[,mt©” ”<— Œ¹¾øĪ Ō®+8±ÆŽćłøŹaauƒf'dĮ7^œćź Śż)ō0ƒæBhl휽}`ÕndRJ „ģ®X*iµB~ōóĻ0BņŪo¾ŠĮRęī÷ŻOźX]]åŠįĆȤæį«>ņϤŃh°¹¹i©v9ŲÉÖ`³Õ¢P,b°žźßǚĄD|ó•ctƒ®-”\Å”}“ÜW#Š Į‹Ēf˜ž(ǚ8©p脆55J„YÖ³ŪŚ¤T­#S1$R:V gKĒö·(“‰‡źU)Vʔ«UĪ\œē÷ŽśZŅ5:ĒtlPRP+ūōŪŪW=ҽąq®[ętc›ēļg+r=(R)„†żSeŚ4{1„¢?“Q”ˆ…ę³×0ŽķŸfßTŲhāŲ[öś¾øµÄĢdł…UŽ’|žõV@£ŃČ<±ņ4¢ņeć —ōn ‘ńv/›Øŗ<7Waq½‡ė$õĀ‚”«·– BC¹ ųÖéż|šłßżś žöćDQœHB Š Å0U’~׊dQgō«0™›,šŚs³(„Ų7]%Œ5B Ö66Ų?;K§×ēĢ…+q‚J¹@él³ˆ¢˜bĮćĶ—35å¢KÉóč \ø^ęör“(Ņkpl’SBĄGē æ>{ mõ¢$ŽB0Ņfk3*ĆyRŁųķĘ”Ķ:É åJį£ ó<‡“'ćū>qüåPŸŹå2ėėŌ$`łj)¦­©×j¬¬®Ņj·©”ĖO䣂Ļu™šš|l‡ųTLJÉļė4Gę¦PRphv’rŃC'ŗĻaÓźVRwģ3””,­·hµŗhm‰r]J„J޶$SQégfž‹$:ź÷lå&«Gaękb”DŊf_ržņ NŸ™}lfi(Q Ū«ōZW[+ĶŽ’IߔŻSR——jÉē·_9@»ņWļ^§Ęø®“{ž;'Ō¾jūżoyP£Š½ć™9ä}Ķlņj µB(»m(Ąń|~öŃ Ž Z.ņÖė'Bńņóslvŗüüƒ5¢(Ā‘V’‘ÖxJQ-¹¬·ū„”ĮQVsß+ė×ķt)Ī–ˆb£ō–ÅK)ÉĀŻ ~ńį%–6yżä1¢(yŸ‚Éj)ń;Šh •b7OāŌр0ÖLÖJIŻžüł#ū‰“m\\mŃ B"­lČŽ0R–ōŁż`x“ b’*œ“·])ĻWŖ•kķ&žó³“{}Ž|õ”•~~ŚĻĄ&&&ø}ū6õzż++Ńl’ėX\X V­fnó»ųpét:Ōjµ]ć„!8ytÖĪć(¦ŪluDßęz•,®nŅķ뜿„Ś_°ŌÓg­ņa“Ę/sU?»łJׄ؜ÄÅö‚JĪ|~™WN?GŚĘoG)¢(ā“ ×9{}Éj‘‚ꋪ5®5£ $åó?nąeåXYŻŃtžöqCŚ\ō:<—ĘÄĶKkYP®¤@ČÄwB¤ŽRJśƒ€•Ķ~Č«'㺊•7ī¬`d„õ>åJĶö&īļR*++ÄVó<¹}šÆ~¤}9q¬©”\^8XįĀĶ5Všо—Č[pA£Zįō‰żDƒˆs_Üį䑿TĖŸ}±Ą‘¹Iā8¦3ˆĒzLĢHs÷½‚ćmĶ|·._CöA œJ/š`¦Qd¢Rą?¾“/īlګĄ=!Ćge¶œ[¾ F”uB÷’¹¾Į( ‰Ā~”HŹĘĶ?Žb±œ%³ūõė iŅVA%†’©Ÿ™ēgÆ®Ņģ 0˜Į†QÅL³„zóUqLß«€ģ_¹pŪl“®Ę†B±Č„[”\Ćī®6łęKG8z`šcūŹųæõ?=sé(×Už©rśŲ4“õ"­>ĶvĄ„ł–6:` ÓķńĀ‘ ^;9‡ēŽNv»Ķ ˆ¢˜F­Ģ7^:nĢwą’ZŚÅšgiæ@©č!D±*x AµģóĶӇA֚]Vš=ī¬öĀJņJō…ŁüæŹŗįĻjdų’€”¹Ą`4TŹUš-xēĢUĶķćčĮYL¤ŸžłJI½Ń ÕjQ«Õ¾’óŽ:Ėļö@†I„j÷(jé焹äƃ~¶ė*n/m2ˆcœÄQ{˜uM›‰å37§1øž›ĢCbZ‡&Ö1q[„p‡µf')aȧŸ_ęģÅėxŽĖĢD…—ŽMp}9āīF@Éq0±ĮØ­ććŽó€cEJEŠļŃél¢”ä¹£iŌ*œ:¾#$·–7qw˜—•WAJ(hŠØ–X\kņī'W¹±Ü¦X*į¤b+R!ӊŹ6ń;µćoõ¬²yÅģk94]äÖĀ&ėķˆRĮ5 ¤`ĘÜ]Ś$Š#6ŚĪ][$5ƒXPš/›į½‹K„:W‘ŗŽ xä›ć%£^MĘĀ0JĪIb„ąŚMŗżHkfj%V6ŗ)¶­ų¤‡ķ•Üį~å$n‡ß=¬”<—NŲĖt=ŸB©²Õ TXų¼Łąš¼†ņ £2¹žØhcš]‡SG'™Ŗ˜?ß$c\ĒéQĢļķć j“I’įöż{ł”쐽cļŲ!=äę[C9—õj¹LGHb.ßZ§7ˆłoĪ €o½|œR±Äfw@«3ąŲž‡öUéōüāć+˜®ńµ“‡8<[å§]åŅž;4Įļ~żū&+Äńh¶Ōó<&''ŁŲŲ`ff†üūo2#ĀÄ©ųĮÆk{jA'øŚn*—®ŽBye¢8Ęs]\×EĒ1¹µ'䫘yƒa1B L6/™TCŒB9vØV*¬­öłōüL5Ŗ‹…,köŌę‰1”K%©×ė_Yu“8Ž 676Ø7‰õć_c¬2Sf0ɗOQ3Ęą:7ī¬rćī:±Öø©ź‘0 +œ<4ØyŗĒ0y¢saę餏8ō³Æńņ©ēčōśœ½xæy’FøH”™Ø•ųÖ×NSŗx‹öq:é×\»}F«łCŅj®”uŒėń=—ŽĪ†NSōÖZÄŚą(ƒÉ)ź„ž©?Š”’ėwVłÕ§7XYļb¤Ās=DҌn‡²}[dźÅ}“$Ć »gģ›(rb®ÄÅ+¬¶bü¤‡cXѵ×'…!Ž»pi4a ‹ė\%łĪkGxįš‡ö58{}•õv<…Éeų·;§­Į²Łb°›ŽćTqņµÓ¬¶śÜ]m#€Nsłö:asƯĉē%X‘‚][ É×PTĄĪõA˜»ø IāÉÅpÆt¤äkĻO2Ó(ņīłE–7ū()ˆµaFČ~˜0#r~QZo Yó÷Bd±‘g”‚+.†£¬ŁØZŪ^Ŗ¼’ŽšóĶ~ĻhUäAÖžķcŁ {Ē^@(ĖÅMi ksMgŽh©Ø*‡åõ?śŁ§˜ščēMį{Ż^ˆėJnÜYē½Ļē¹µÜęęĀ‹«M¾żźq~’Ķēq„ę„ēę¶Ę<ĻĆ÷}č}¦U$ō+ńŲ™…a¹Ś­’äū_§T*ŠźüźÓ›“:}Ź„ ioĀ–¬Ėvw{ģÄGsy  ČśAņ˜Ę/•XZm2č”Ke"=ՀŃ$J]_uYfĒu™žšb³Õ"Œ"*Õ*žē=rS}ZZ^ZB)…ė8ĻĢųr”äć ó¬5ūųÅRę9“ś6¤Õg-°S ™ņ¦² „4Ž_įķ÷/Sš\ĻåŻĻ®¢e‰‚ļ㨀F¹@Į+ņÜŃY®.lpm©0CYtÄĪ•€Ē3䔬¤Tō{zŻ6žē#dĮĪ+Ójuéõk|Ł™Ɯ˜åĢ•eTAd“&’ėVÉgz¾Ļķ•6KkmZ= f¤CŠ‘ļ#‘9Yśm®Õģp’3Å'c@Śķ&ē®vŁčDxž—%ß¹fcĶc :2¼uś•¢Ē•łUŽœä„ćūš\„3ėķM›ńIĮ‹ĒĹܒU26DŚŗŪ;É÷£5Zj%oŽĒŹF¾ÓmGńķ—0Y-š‹ĻīŠć1e1ŖÖ1łJa¬­Iš Œłī×aŒį£Ė˹ÓĪ>Ńf(Żļ‰÷ø N™bj¢Į¹ė«t–c”2³½ó÷čĻóąH ‘ÄFóŁõUœ›‚N/B)ؑ†÷<č0ŪRó&ÅyåķĻsŌeż ł’xHi{ųūÕ®æw<“įHp˜Lc¤¶Ax¦¢1RćRā‹»-.}±‰pn1ŃØń­—pāą4ZknÜ]ēöJ—bĮ£Ūėc„¢Z*P(8|ēõ”‹~&Aøå»““J! ™ēĀ®ŅE­ó™é:G ^p432ēWųųņ"Ęõm_HdI!³ OŽl/ćķźxĆģUF ųŽ‚kRhĘA9†r±Ģņę ‹kM¦¦&R>v“󣦯īż@©TĀu]¢(bss“ZBåśŅū²¶¾Īž}ūh4»īcš(o±ąņį¹k\š_F*×Ņp„„Ÿ<ĖÕĖķĶ”÷Ā0Ą‰ć»L:õ<ϧ;€žā»œ:<Å/īgz¢L·?ąšģÕr)Œn‰`¦Qāņ­Ķ Ö½ĮĒ(eĪ(ų‡¦K¬4ūl¶ĆäcLRķłčŅ2ėķa¬ČŒ„Ą ö5Jš©š«s ˜“ī0“ÖH%‘ n0DqL½äQš}Žī«ńś‰)aĢ™Ė+Ä M0P0@l4gÆ­qéV“n˜ģ”ą*Į±Ł f\[hŅé÷0FŽØdåĒž8T>·Q)Ż<QHzĮ0vȒ©Y,3¼ŸéäŠbM¤5Ž”8*ߐOÖ“V^ī Xr†Ėϱå˜^·I lņ ē'²ń“wģOeó[ŠE‚H£“É(ŠŚJŪj£0¦N³¹nÄ_’ś<÷ÕųĻš÷78s#Ąu]VÖ[,o49~`†‰z Ģö™!²ż>…Ba$˜s=.mĖŽ¢X“īū¦*Ō+>ŽR¼÷łm„š1ʂ¤É/›$ʈ„IäÕLöśE„H  Ņ`ŒĀu]āb•’ų«sÄį€×^:I”6(ļŻß‡÷®kĶGĆ8f}cƒssEĒ:|ča²±±Įōō4Q})ĻÄ+± "¾˜_”Ū©TJ ÷_½ å;šåT>L.™lr™öaa%„q)„_P`¬dŗ@gUÅ0Š9~x?7š¬­·Ēšžwć"F㣔=›k”+5ĒA(Ś Ń™5Éf7¦ŁkńöłŽ7NŅéÄqB%rÄé§ę\Š…Ā 3Ī2 2Rķ[֜­cT =ŠD"ĻŠ¬6Ž#ĒEŠQæqÕy4Ŗ*Å'—ęŃZ3æøĘÉ#³¼łņ1%3撓G¦yē󻐰4šTŠc‘Wā~Qiž?Pęw_ŻĻŁėk|ņÅźõ8ŠcĪŻ\· ­& Al4?’ģ6¾+éĀ „cč1GöUłī×pķn“//F1Óµ"æżŹ&k*E—ó7V9{m•0ÖCo•l0Łߏ A<`_£D³0 ½AÄ/Ļ.P½Łe­Õ³*¹9kƒļJĀ(N€É06¹*IŽ 1߄.ņs|¬3~Š‹”:˜Öœ.3;Yāör›…®TIܓ÷Rü®LĘ]ŽOżtCöū֞u#€J„‘(r˜G˜Ż{ĒŽń4‚Į”œ]ŗŃ ¬¢…Ā. Z£Š¶¤^(’»k’ś‡ļŃ 5×1¬nöųéWš¾ķ0;U'Œ¢{;Ę0Ńh°ŗ¶FēĪį¦,%Zb©ōX^ Ūo<¶<\*zģŸ,Ņėw1 ¾‡1 cŌV‡łtįIMžō̌óF÷‚äwĆē!rż FüB‰^ך’żāŸ^šē’“·ØU*D»ŠĒš0Aāȹ'Q‘łŠ”‘j#P)•0qĢĀā"“#*14‹E<ßgmmµ &źõ]mDšėĻsłÕ™Ė\»»F±XĢŌR£Ņ{Io> ó`˜å%”¬hKžĻz`<^5’I/’1£ …b‰Ąqø±Ņć_’ŁŪüń÷ßąÄŃC™ņ“ĢJ;Žƒė(ŠEŸh0 ŽcšĶM‚F­R2H„žõēœŻ_)©×ė“ŪmÖÖÖŲæ’CU/ņćZIÉäÄĶf“¤ÉŻč§«X¦”āīņ:—n,j‰ÆœŒ>9LČgśł Čv팓ę~żū&KüŸ{™N%ĄwH’±F²&IŒˆX#DL·ohw£mŽ‰ŁčōDicžn¢čuŪA€fƒ‰ ‚€B¹¾%č˘BXš+ Ūļóė3(9/­ń[ÆęŅĶ~õŁ-Ā|9¤T )2CŻŃX3„$`ž:#AØ1„ÓCæŖxh­ £ˆFÅå{Æ”Õłõ¹;”õͰæ,Gś@„°Rōadpœ‚Ķ‹€RĮĆSR n/mrīŚEĻGė„*F̈ąXFKī”HĄ^«ńŁõ5L¬"'m6’pV†Ę”&$&ŅLVKüŽkø¾ŠäÆŽ½A?ŒQŹJŻaĢß~| HŽmJŽÅõ¹ĪšŒµz®Żmróī&Q#¶ńƒŒ(Š$æ3ˆ-Čč±ŃYå£ō8\ö86[åģ5āČ0Ä>bÄąvēž¦!ˆõP!L Į;īņ܁²ĒF+ŲҐ>¬–XsÉßzi–ÉjŸ|<ĻķÕ6¾ć ¤B| ƒč¾3HÄšĘÜssŽ;öާ B$£ez™¹§(×IL§ĘŹ”GjŒ5Ķr‚0"Šc\OŻSÉ(ėćYæ`†J] ØÆ×j’Ÿ?V#%•R‘zEņūoQRóįł[ų$Kļ(ß/ \…k„0ÄF'‘Ģi©ļū©aęČ֘*OIš8RŅ ’öGæęė/äæó ”掚Åw#H—RĘ1å¢ĻĶŪ+üķ;gYśó_3cB­ ‚c4j?üķ×yóõ—éĮ®žĒ“žćé¼ź›››Ōk5¢‡p!JQ«ÕXZ^fbb‚č)Žwc ŽR,o“Ųhš<éä«2˜n?Ɥg3Ź##ĶZ'!č BŒĪ7¤§Ÿ®É9/ “@9‹ė]īÜ]B ĮÆ>¾ĢķõĒós”œ]™Į eĀ £\<æQĄJ1ōt1&«6˜\oE§µAE­iÅ1gÆ­ņƒoļ£ÕŚä„3DA—Ÿ}ü›ē¹H‘>W»# $&ŻuŌ00b²;4¬©ŠÅRvNZkŒÖhėĒüį7_d¢VdN.ßXįŚb W¹8®ż`[y²ŅĻĻc­ÕAG!žēĒEßēüµEĻ6˜¬ńĘéÜ»¶ĢJ³‡ē—$Õ-‘ ’Ē“ ļYÕ¹Ne H'•!ą!F+~yōer÷Ä6Ģ'֑¬nüÕū7čbŚż0QØŹyxÄzXiRb(АA3֌/“ŗóŃMž;Šąų“×ųŁĒ×ųüśe°}Y)^V¹KĮüą&ŚXóŠō]×ēµSœRا¾nÜ€ KsyśÕĪŗĪC»ē?°w|Ł Œæd5O³ØRŹQGŻäļ2m&Ó68ŁŲ čō”‹b.;j7.š|Ÿf OEt:]Ķ §ĮI„äóf9y J?“¦µrϳ¹ĆO.Īs{µE;ņ@””ų:¶s<” 쁐LžnW‘©%Z’A4±'(åšįåe®ßżkžÕ?ūø¾›É,ßėŁŽ4"§nйõWJėgÓė…|rń +||į&®W@© Ŗ(Q¼’Ķ–öˆ’÷§³“ŗĘ÷¾óĶg<Ć>Ź·½P.“¬­Æ®­159łPF…ć¼zßóh·Ū”Ėå§BŲSA§Ūē‹łZ½€jµfÆóŌ«1$ł,?§d\:Jņ³3óü³ß;É?’īIžÆŸ]&ŽM.ŠȌ2"iÓm±Xd¹Żåż‹PRįJų…*&čŒ–»³o@µ6A»¹Žr\<ß³ćȐ˜ÓZéÜ`DRŻG!Ę@crEōƒżHʆ ßćĘĶ'ļĆó?’džĻ÷pcAåH†čća’µ ŲKś=“Ž“?šĒ“»]¾ūŚQj•B—}ļcL^Yā‹»›4;¾'J"˜x@Ų·}7Ź+$ćSį|–6žĶŸH½āńʉż %ŽėŪ%mF|6ņōtgM̾F‰?~ė·W:¼żńn®gĻOŖ/g¹/ĖQ.ÖV³4ś”*5‚~ohÆMNTA€4÷6Ļ)–*x~a/ÓŗwģzfzKÅ.!gUJ5#cló›¾_IA·Ņ#Ŗ F³/dīĪ»A}IÆ1ÖÖÖ(•JxžŸ+§•—˜‰F„`’Ģ ’õŸ|—wĪĪóŃå„ĢČIŖ¤g&©„ĄŽ||±¶ÅL‚Ō#s™¶¬GP’‚Ąįśß’‚ļ½ń"ßüŚ)\×.Éq¬¹rk™÷>»ĀõŪKt»2£b ³35Žxé®ėņĪ™+¬lt(|ŹåŗUķIŖ|©¬gŗ)ŁęsŒ;IÉ)`8RŃ {€Įó DqĢźz‹F­„—Čw>U0"ķN­5ƒĮ€ 2žżss8JŃétˆjµŗ#ßŽÅ>·>AŠļõp”zā’¼™Ŗ—£ųb~‰Īߥq=›‰Y.س½_‘9h,Ē^ ĆĖĒ'łÉWYkø®uöĪ‚³œ‚ܰń:1[”“D9VŻÉ i€ ’ŽŲ{"sĮ§ėˆżˆ ŪĮ/•m‡”||ń/™ā·_9Ė8ŅüÕ;Wøx3¤¹¾F„Ž@ čV›¦'«˜(‘I Gę&9¼oė«h­é÷6‰¢0Iō¤!ĆĄŌ䒲q3537ŅŠmåB«Apā@™Ę Gö7æ˜Ńń~īź]>æ²ĄZ«n‘µõM<ßĒqżįŽd F&Łf#-—©Ɛł”H%-ćŁd3R@k”„ĶNȵ…M4fHNM×C B) År}3.y$Č;›“nā„ƒ ß±6)†æń^IB)c"ĒŽ‚“Š‘®+JJLœØJf@kTR7U²Jßc)_r"EŖ;%r•"qĻÄåJnµ²””„‘IZxF«ćyÉā-I!éö5?’ōNŅߓxĻ|‰kĖ}}@¤RTŖ”:€tZ›8®EĪ„Béx(i5’ļ¬vé ā”üœÉ ¹µĶE AÆŪ! –S(4{ĒŽń$Ŗ"#‡LÓHr˜µÉMęœųƒ8²‹š.ĶScsz;”Xļ£8¦P(099¹­D©Č5ŪÅIeówæqœrĮįŻó „į/5ĘM@ȍņa«]éęfń‚@šTį^ Q…ŽėńöG7ł»/ņ­WŽįūeŽ;wv@¹T¢PjP,‹aF<Eƒ~śįUė›ą˜œš¶•˜xä Ͳ€–¬’ µ„\4»]~łÉU֛-®Ļ/rłĘźµ:•j…ł…U~’­Wxėõ“øŽzŖć ×ķŅét(‹Ōk5|ßßbjV.—llqNž\__'Šcj• RŹģŽq ×\l ŠÆ”֘8¦T®į [ģ LيhL»µ‘ ‡¤Ł\+„Ŗc“Ž "Š.üįļžä¹ƒSvŃ£)+ĢŌłéĒ×1²€Œ# åJ.ˆMæ?I%†—*ė!L£t J¾K;Š’,¼Č™ėå”A(ĮÜd™ļ¼<‡pgµƒė؜˜ł}‘|ˆ£Ė\1õݰCĄ H%F|S¶§©tzK9ą7Ś nAH^¶^$"łĪš"ĘŽsÕ#‡€„Q?Žq%¬—)Em€tÜ!…lü‹Qe:1žų” '³ŒÉŖćā {>)M%7L“L cp]—0 Fņʱ ~ē•9>æ±Ę»ē—ˆc†&p ļŽč­|rm ŽćĒQŌĒq¼g²Énļų{D2@lÕ,²rń`Į±«žš&1 D¶¹}×Ēŗ¤ä“nƒ(āõ“9v`‚÷ć³D ’]Š”›ĶˆŽśyH"’­,É*ŠÅOĒÖŚōŠ:ęƒĖk“›_°oö 3Åj–!”YY}”lDb4•‚1Rł‘`NKŅŁZJ*E+xūć;V¶²ŸfЧ‡Źu>ųü‹«›|÷›/3=Q}j÷R'šÖå8 vŚÄ攜­<A@¬µ­z83ÓÓ¶ņ±Åµy÷Ęz¾F1ļ~r•÷?Ÿ§1Ń@)gŌ;OĶłJM7ƒT‚łåMŽ9³UžÅļæČ~ufopŸQöɤ/dłčQŗŲń¹?ź³1FS­O°¾ŗ H\Ļ„XšųüĘ ķ^Ą?ž½—šŸĮs¾’cüÅ//"ŹŚ­&FĆĶ»Ö6ŚTĖÅDĮĪĆ^0`F Ül¬im"ĪęØI æv|’÷®¬!LœõzY!GQ®“Ž‰Āˆ(šśKG9<Ū Šõ¶}cZž·?{›v hŌJą8+¹*ĒŗS$1ģĶŁ*/iwZ œä1č‘@>„ļŪˆęęb‹žź ×:øŪŠ}¶óĘČ?SyĻ~ā¦&2Ž#¬mšŁ·£½&-Ņõtü³ņźcr,½õū³),,łźĒżĒÆŻKĻ©1ņ)¶]b»Jp^ALä»vD®fóšūÅćČǘ±”JeAˆ™_īp~~Ėw6­ŒpŹ5"ćŽNōį’+×CHÉ FŪŽ±w<į¼Żvp#ćā›œtz‚0ŚÕ8 \.#¤¤ÓéģJ“Ī'' Ōŗ½^¼īōŽį c™zµĢž‰qe&—|ŲBņYZ!­DoJ³QŹĮq]×Ću]\×£ZoP«7p E\×Ēu}<×·×KŽļfæēø.®ēā¤ļq\ĒE)ǵJ!•Ź|%lƒ³BJ'{ćX5©©“Ė%üb ĒńxńŲ&uŽ’ü&Wē—rŚ’OxnCµjŲĘĘq=ÖóXXX`uu•Å„%īܹCæß'ŠcJ„‰ PróBģ0w|XEž?æĪĻ>¾B½^GI7{NB«_Õ¹&D±įĆ w„¾ćP*8÷}F)E1Mw)F_&ɾŽ»!eæ×ZĒ4&§č÷;„ƒ$ž1ó Mžē’s.Ž\LDLąÄ”)žå?xc&)•Ź 4WēļšÉś™@z~ad)S&WŲ® ŠbŽ??ŸHĀ“ųHŲj‡‰-Ż* CĀ0 ś¼qjŽ×_Ų£¶Ļ¤K Wē©V+4źu<TČXlńI?njōC+5©-¹c>ʤ4ēŌō¦Ŗ¾}z?ż ¢ŻąŖ­ā^I„×ÖÜ1b˜X£ ¬ü{óÆQ%3ZÄXĻØ}TÖ1KīųŁ[æ?5‰ɽ•Äæßųc&K†æĆdfˆCĆC(ś ßµżƒińJģ?cÆ“āšū±žŖ<ųŪīcW@äPŹAhM»ņÓOīd†>i-ļ²8īՐ 6£‘ŹAė­ćÄ f{¾w<Ń0ŃrJ‘Į3Ś6õ­ Ƙ(ŠxćõžJłķĀŃėõ•Je×6Pc ßĒhM»Ż¶œÅbf8·łŃhR3Y+r}”‰ć*¤LŖ—˜%ž= ņ°•įęœR²l¢W`““Ubi¬ō³Ö(ĒĆu¼D”ƒ\0ŗSóā0pé3Qył&ć/ “iLj46źŃa„t66;¬µŗŌku>½tƒ×OĮ÷äS¹6h‹˜››Ć÷żGV¦ ‚€b¹ĢäÄÄHr+ĖB?aÅ«ü¼‹bͧ—nņ“w/R­5,Xtš!d®b•G_±±ņ¹©2’ų_ćƒówų7?ž”^®#G­-v90;PµŒ†ŽźOROkĆDc†õµE۟źHœJ‘n_ń—??ĒÜd‰Z‰XköMVł'ß{…_ž¹Ź/>ž‚ęę&ļr‰c¦8rp†0Œ1hŹ©Dx˜ZZśW©F–°¢cAŽ­¼®Ąą»ßń8t|š×ŸŸĆu¢hūq¬ LÖĖ“ŗ!Ź‘9 R g)u‘QąĒ³’Cp4@9BH\×#‰ģģ0«Ÿ_„¤LÖ ÖŚ0"ž!vNģhāø ½·r«„žIAF×¾ļļ2źģ5ėb·ććU–\Ć?†JĮå_|ļn-·łļ\£ą8ĆŹĒČ5ŌśƒmŸ°Ü©²ņ8ęÅņń&)+Uśżhė(+–žQŒUxņä{VV,LŖ fĻ@}ļxJ™Ö¬8™Ė4a %_ńśó8yt6Q1ōł[&­”Ł„•RīśõŠE\×%tҜŲZ­VFEŁ.ób œ<:Ķ`0 ŽĒŖ c‹¹Ł› ¼Qn­†dP­ÜjZ”PŹAŗ*«J('©R8R9Ł{Ę_R¦•™T7TŅ’."—Ż‚š|5&«ˆø.(ۜŲ€ć‘RqdnG©§6/& ÖÖׄį#š&AæOœŃWōƒ³'u é<‚3nš—æ8G¹RĆsݤļĆ>31®ĢóULķŲk_\ļā&ŖAjnžNßŽÆ{‘»šœJN·:1E·Ó¦VPģ›,£”D:>’Ē_½—yīD±F É×OāÅcūØÖ«tļ~rž•õfҼ Ēę&Ų×(ŲŗÄq”ī>(±˜Ēi¢$E!Q8ąÄž’Õ^åæūGošƒo½HµRŲ|€MŖMOÖłĮ·O›ńčÓ$l•t6¹“SŽJƒ[7iBOߗī'˜©ū#>)éßo.6ł~~™+·7xłų3µbFŅzœCnÓd~æźÖƭ׳—ĢŠo&iCŲÄl‰-ņ¼mŖ/ėY4j*¼ŒccĶŻµk­~f-0ž°ĘāŪW[Eīóņ½Dć/cĢc‰“Ø?śg’ż’øÅ’žŽwƒpŠO6M%%ż ‡ćxÖyŅ ā‰ż5ž;Xgq½g%|Ē2®y$kłŠab,ćķŅĀ"ˆć­5®WąK<‚ ×Å+操Åkœ$¤u’²īCōq’€źĖ<śżæh›ÉV=“¶åķFŁåo=Ē·_=†ė8œ}Mm Qf¦{B\×ŻŻ¬;6Ąµ®×M:ĘzA€×óvĢ – >Wo­FĘ*‘H¹Åa|į|Ü,¤Öš( ńüĀ—6„ż.^²Į>©jČp“Ė—įåˆCr4°{»Éʬa=ż}¹]`&Ē©¹†÷-üŸC§ķ¤ó©¤ż^¦¦^82Ķ”żO…"+„°4“(¢ÓncŒ”T*=ŚgIIŠļ³±¹IµZ}jkpźųņ…• Žłģ*æųč *µ:žē”'S¾’RĘÜø‘ņKß?ĄXQ Ąu¼ߓ¶pltś|öÅÆ=?ĖKGgørw#ćłĖ‘¾$qĻ n|?ĆĄzU(g×ļÅv™f%ŅQÜ]\&Žuf”ׄÄQDĮsؖ čŲ6eœm „Ą÷}>»8Ļł»LŌ*TŹE¦&*TK·—;tś}܄V™‰ÅД۵Ż3bt#M€ż~Ÿ²'yóŌĢŌ Ā8éłø÷z,„ ֆƒūüśÓ«C„5©FłE¹Ā ćģ°\E$µbŠqD§Żdj¢Ž’†“ŹÜZéeś!6Šģ“ŗ!×[Ü^éÅÖJČŃuéQž©Öš8Šp\oW]ĘĒ^”ų¾øž’@4©„xŠėāĖœļ½ßš!ˆ50ˆbÖ:,¬w S`:¢ĄHVżĪß÷įłv𠄤’ÕdTÆ”°ĄV°¾]σĪ#¬Cv3dJ„2ż~©*vqA 5œ:2ĮģD‘ 77“43¢ 1Šd5ž_¤Ūm†•ŻkF’Ķ®LÜēŁ?ją›µ¢‹„r•8—jF1AR›-3U/ŃD-“kŒ”Óķ ™ŹĪ ².³»į‚¾]°ė¬¤uT«UŖÕ*½n—nÆG§ŻĘó<¼ˆŒŅ±ąOæ’*Ÿ\YäćK ™źŒĮdē搯#æ)ՐŃDZu¢²²meL<ōw?q ģ°*óeHāĻó]/į}ŠéĘÓ Ž‚ååe*• GŽAHłPT©t|ʰUŖUköTBuė+ä8еf‡Ļ.ŻāżĻ®Ó"źnB»J+" Ł™ņU+øJŁž 3”Ļ© š,Ņ«ĒĮGŚ»źū>õzƒnŠÅóŠr™·ßæĢ™‹óüĖ?ü&ū¦j ¢˜j©Č¼ušf§Ļ«ĻāÆy†żžŽßśś‹¼łź LŌ ų.Dq“„ļ ퟰÕŪļ1Ó(šülł•݁KĮS˜©Ó„ōƒU䏐NāĻ±Żž× BNœāśB“Xƒ4ŚŅAµ5šĖdi3æ=\jcp•dŖźÓģE„‘Ę é¶›(×ē­—ęųųĀ>»¶f3ņ¹Fē“:į¹ŚĄŅF%ÅŠŌo÷õ߼dü& ZPüĖļŸäÖr›’ūg—)dęS3 †ū)Č ’ŻR±¶’+éB ĘŖ‡>ʳseqĮ¤žŹĻø9āvē@n¤īfٳ4"Ó³7ĘP+łœ›°t’§Dæ+ ™ē£ōi!čŻn— ™™šŚ¢¦³Ūć4½7®ēpwiƒŸ¼ū9Ÿ_] QŸ`r²Š”NV¶ąCŽŠ*vSVöéŽėdĢ$ęmF€ļ:œ¹²ČZk@kːb÷,̟ąŽc†:©` X*Ē!qd×ń7Ѭo“y’Ü5žé¼AŌ‹‰ā˜X Ź%ŸW^8€R‚Ÿtw>¹Āķ„MŖ„ŻAŒ' YßvRżˆcėń拳ŚWåų\›Éz«G?čwcĀA˜ š|ŸÉ‰‰©Ś¼śQµäóGæó_¼Ė§W–0Zkp¤äšž*EĻa­Ł'Š5ż0&ֆ0ŅųŽāŌŃI*¾ą“kė 0ō:- åxLT<ŽĪÕ©–ŠüģÓ;øB%wiB#ńæ ņŠd˜óxąvo_Łˆäī'†(6lt%ńŻÄgL&1QÜa¼o§ 8JƂƒSE^8TēĢĖ,oōq”“W½‹„-•9“ÖŠe¢ ”¶Ō¤¤di½ĻĀj×UzŁé$S <ß/ śDŃĒq÷Ŗ æĮAڽČÖLīƁįßSŁßœ>:Ćń“4ŖEśA“;%])‰“¦»±A½^Ēóżąń$T‘3Ė‚Ņ$ˆ›šœ¤ÓnÓlµ˜œœYˆ¤”lvzüäŻó€]¼ˆ‡¾>YhĪU{»ē¶#żŽ±Ll„K˜”ŽücT–ä=[zņŒ1øJPÆi­v?I4Ł@& C¢Pcü§>ŒÖLOO3??ĻD£ńHąCĆfÓrš÷ĶĢdnźÖКāIGEś‘)–Ū'ĻåŅĶEžī½óÜ\h2==ƒRj<”B ŪóĮßš1šœ“# 5ƽ°ÓG§ųɇ7Ymõ³ė{–Čč¾2ō‡2ĘP©N°¹±B§Żf£Łe_½Äśf—Åõ6q£”“4-¬’•RŠēĻPō].\_äӋóĢ/¶80;I©TE:Īt֓a{”Ž˜ ŠAŗ>Q§ĆD„Ą`¢”bbr23]\Z Óéą8¾ļĢw„$Wn.rõö*3UšČHźe—“‡'9ud’jÉćīj‡0Ҭ6{(G" ^ńpĮ/>™§Ż7DAŸ8Œ)Uė V7»œ:2ÅŁ«ĖÉ$÷\’ń„HœÉ“ń24ę»į—YmXćb!Įh±cdü4Īė^÷*Œ5 «mŽīo0U/±°ŅEś‰ĮdęSræųi4I‹±rĢõ²Ė”é Ėė=V{8*I8ŒÉ ?č=pvkĀś…2›ėKŹ%Œ‘É ĒjfPÄ=3ŽēÓļumÄq÷‚—ßą -Õż—Bą:’ ŒGJÕ»YēǘTː0 ©x._;¹Ÿj¹H0ˆwm!ѱ͌Õėu\×Ķ@ĮÓ22³Ā(¢\©°¶¾n=tį$ąć—^DdžrĮ”Ūė[‰XßÅĮ:­ęūCuķŌ0ä=ėĮČn¼ļA2‡£ąĆĪ…(Š9<]å;ÆĢqīĘg.õ³GkC±ģ=Պt Ŗµ­VĖRØ‚ )¤¤½±A©T¢R©d™e„¬™ā„Un-¬R.8~p–JŁg>ޜ7ĘPō=®ÜXąG÷ ­~ČÄd#p3 ä”C}^ē+>ŅM˜LŖÕčƒÄAäÄiąYV¹Üάa„6Ikc•ĪĻÓØ–q=—N/āƒó7xåłC(iū-„ÄqŒć(öĻ4ˆ£˜ŁéŸ]YfµŻĒ‰ĄwR “5ōfžĘl4ūT+E …ÅR‰\ė8&­Ś+E©\& Cƒ­v›™™œ“ā” ²ž’ģ½×“$םļ÷9&3ĖWµoaĀqi–Ü ¹~ļ^n($]Żø )ōrßõč]’"”«m\¹!qÅ].¹»$A$Af0 ĘvĻLūīŖ.Ÿę=œ¬¬¬īß3=&`ŗ{ŗŖ2Ļ9?÷5’üėßؔŠTŹ>/Ɠ$!æ9æąbƒ1ųZ‘K½ŠØčöœ»ŗŹf×qõĀp@¹ROQƒŽkxįśK«­TlĄ½Į$vT?*»B¦¾F€ÅąĢnĒE9ą|Ć[p{čļäßxTIæ!QJßVjÆx(FRĮ‰įŚR›bąńź©9¬YcµÕĒ÷Ę\Ÿ¬IįrcČj®I»ķ%’ÄpåV›g×92SęŅā½AŒ’©śŁ= ¶O?Ų1³ó @{>į0Äó é‚W†b“#·©ü @ĒŽ€õ˜TWž^OεC ƒ–™ZĄņf­ōDæÅrŚb…TĶ˜­'לzT˜ģi`Ó)ĄHrwæ“ GJ44 ZĶ&333!X\Ūäēæ½€”’Æævšåõ[½˜ÄĄŅF‡~£¤#ej™#G3IbĖ{‡ģeżōzųFŃöŽ]&³,ƒ(a½5 ?ˆĒā ÖF1‡gg3ųÕc{ŽÖR)—¹rå ĻŻ'y\aR­Õ2|‹”’ž äĒæüˆ[+›,­mął>/>ĢkgOs䡔›Œ<ąyUH‹’ļēÓ -ÕJ „½TÅ,§N¶mźq»†ÜļkOI.Żjāi„qVpˆ ńdĪ]ĶD„@ØÖ§ŲX_&‘EzĆĻw‰0Œłö›ĻÓFŁßwFƒšÜ©C,­5y’ĀMŖĄ÷čĒ6ė,gp¤œŖ1pqa…ÆærŠabS®ĘN‚¹I*„ŅŽĀüŽ”Ė†ƒĶΐ©Z „<„’`cоā?żō"¾§s…æćD*%)ųšÆ}¤„pЧT®:.£µ=ÉŚ¦“Õ„1AĒZ{”4ž®°Ņģ³Śą)Aą+ĆŲP{-eF¶LNĖķ®ó…I*ŃČī!1 R>JųÆk^H„œr™ŻqĄŅė¶©7fQZ=¦µ¹­ņHwXbįņĶ&¾|ēµ,ntXmõˆƒV€‘äyķ®ńygƒ@Į0ŒYŚģqØQŹ|gņUĮįt'äJž3< !w6„rvsß/N,”Ńq—é«ū¦ē 6Šž3hzŚ9żr!£`‹ōĪa½Ł¦Ą r A‰¹æ±ēH%Źf$sĒ}ĮK§ą)MĒ{ŗŽ“ē‹4[-6ēŹ¼o÷×*• [ƒĮ€b±ČV§ĻłĻų÷’īĻ©WŹžmą)Åf§Ļ?żęŠV’fwH«Ū'Čų,bŅĆ@°«Ų„}Z”ų)!PJeŻčwŽż˜Ÿ½÷ A”„Æ|”įś­5¾öŚ™;JyŽķņ}ĶÕ+üšŸŠźŠ„J{Ūųbb|ńŠ›”°Œ…ƒSe 1UY IDAT^ī Rj>¼“ź`…ŁĒ~²?óä3±ä„y„R(é@‡Ć‹¢7 y÷ć«4jĪ>sœafkQI‰R‚‹×—YZkQ.ś˜¤ˆ‘NKŽÖƒ%S7”_XÜąŽxŽ8±·]ūY–øÕJ…AŹ ēæFžø„—ŒO+|ßD#iźbąqh®A9Š,möč ]¼ź÷:Š„ɦ°‰ā„¹©+­Č­trš$†nÆO…?Pęā:³õ"+Ķ·VŪlv† ć)\s hĀČ`’qĆŚŽŗņŁ’L~~cĀpˆ—Ŗ‰9ļ$q—„}|å½ę BąłAŖZ¶3I„Ųjm¤õ˜Öę˜?č&Žƒ%„%YXió‹s78¾¼Ę•‚ĻV'̊¾ķM­‰”‚ !Ä/²‡`‰7Dk…P’$‰'i^aēn®[Ļ 0IŒÕ:U?½¾¤Ż[ ah˜_jbŒM1Ū®€R?X i›‹Æ%/ŸžcŖV"ŽcS²Ńō£lmm=QA×ĆÜÜ[Ķ –×6xó„Óīż<Šx(!ø¹²IŁüÉ7ž'ŠZݐ•ĶóĖ-–7»X#ńķ¦#y\;ĀAĀGιŪ:X£CĻņŌSd?:ÕÖZāh@Å7”Ź7W;ōz# ŗĆ“ GԘŖ•Fż1­ß,PIÉÜģ,kkk |ßæ+!}ō½Ä:Ż.ķN‡zĆÉ£vūCjµ:Zi·źĆ/?ĖécsōŃ}ļOc­+Ź·śüĆ/?”Ջ)–Šh’Ķu*³+vņ=¾HÅGę)&BRJ¶śš¬lö°™aõX\ęI’Ģłgć”Gqäå£(‹œ=Ōą£ĻoŃōłĶ¹yNš%ü‰‚!Š /ž>Œļł\½µĪRs€Ö Xš!ƒäŁ}ˆWž=€ÖŠV{ĄF«‹ÆAĢ ŪAyŽb”6—ā®.µR!„C&(„1ĘŅ ¾ 9{rŽ—Ÿ=HĮ“h­8:[åłcS\¹Õä£KĖō‡!Vf*% Œ“ŽbßŅŹ¹ĪcœÜųøhÄQHGTŖSX›ģŚčŚmś»Ģķ\;eŌw)Q.捚”Ly}{srC…hĻG ›Ķ°+0‰ŃīĒ\ŗŁāų”3µ*W›t7ūH•b@'Äʤk/7ńc{ƒ pHDŗaB{Š„ų±]į1'¬Å|›ū³xĄ ČHk—‡lŒ”\®ÓėnQ­Me%?¦Łé¾»Į…«‹ųJłAÆĖT½D”T”;H2Yzw†k¾śāļ_ZÅ$ä&.Ł„1½~ÅÕĒ6063µ"Ć0äāuĮV'F*‰I Å@2ŒcƘ“‡ź!˜_Ś$Š-ž§ŃZ¦"k ½n›r„ž%&¤Ķs‰4@’¤<0)vXp ›`…ŗė:øļõj]q¹µµ±§6tʘ“©‘Ÿf“N€$…bO¹"ī7ēyå™üń'ųé‡ h%łö«Ē9w}‹óĶģļ8EP f’ØžMApEˆ›*ĖüVΊ ‰‰RFdŹŪŪ‹Į‡VĮŚmń'Iœ‘& v­D·?X·HTjN˜`éŠÓėÉhcR3„°ä‡›2+>ī%M®Æ¬’ĘZƒµ†aĖ™G°Ōl®Ą6O‹øļ{œ}ī$gϜ¢\tž$›­WVF1ķnŸ?xå9'I< ':AÓµÕRĄ‹§,ļ_ąĆĖ+ 1‰’®Ū5*Bd>ńŹ‚—3jKŁ®ØÜ…Čžōzt{lĘ\ø¶BeµĆŹZ‹aäq?š]hõ>¾xƒ¹Æ½ˆī¹Œ¤Ų•ÄqĢ72Å8ŃīɉŻńŗ ÕJ%#·Ūm$u®ŽtW„JĄŸó+Ō*EĀ0¾ļāĆךÕf›łõy.\_%š‹ćāCM» >¼Ē½g¶ {Œ“?–Š8ĮuŽÓod~3O`Sę^c‡Ą™C*)Hbųäźŗė*—Jlµ;\š_įÅgQ.HrĀ q’ •ąō‘ĻTčö"žšÕć,­·yē“%ŠéŚ`¬ Ŗµ‡‰-­NĻ%œ$wÜĻRJ6Ö×)Aąsea™[ė]J„rfŽh-hOR)D±ĮӊNα“Žę'ļ~Źõå-„R+<’8d¶>§%6ųĶžĮX§ŪuéĘ:IlĒ f,’dŖRāĀüē®­q}q‹ļ|õ4/=s˜0ŠQBÄ a䌢–›Ė”‹ķīgŽĢńķW¢“¤Ū?Čgók\øŗŹÖV„ēk”V$į„<ÅN¢ŽHźw1.vSj sõSµ€…å6ĆŲlKč~—ģ˜bä!«÷_ˆXŹ•Ś#Žłć½g’„~·ƒØ„u‚«­Ėfėśƒc ŻaČ`§h%ēńĮ®Č¦ńē{~ˆ,‘J’lmf\8Źv’ħ–žRY¬ż^)%{jG-p#ér¹FÆ·E©\ŻÖAąŽ6(k(•kōŗ[(­ŻX賓痲ų æčoīvģ6†µ©āHb:ŻŻž[+œ>~0“SÜĖąeö)IøÓ{SRņ³§ÖdŹ*•RĄ÷ˆCµp`ŗF”ģœ Åq‚‚BŃēŠL™‹óIĖé# ×:¬4»’¬Uz6¤h­š”Jõ ŗĢ˜Œ9)Éųtņč‚€P>+Ż„Õ~ˆš ”|H’˜8аŅy=‹EĪ]^āųį^8u€Gßw^ķ #QÖR(ØV«YĒU{Ž=õF{ݹ=K6›MßĒ„BÆ¼š —–±&FJ×½’÷Ŗˆ’˜Ÿ¾w+7›(ßC{#ĀłHj÷ĪÅĒ^ܳ=ėŌ>ä„`2¦ē'“ßsŸR5ē÷%ŠŅN°ĖU1>Ćhˆ†b±ĄśÖ[ĖM^}ž8ŻĮpā>™ÄųšS‡„QĢŪ\äϾ~–ó×6Ųź»õhEohŹbāX°²Ž%š5a!F\ 1Q¼7›M P«ÕRR-)KŽƒ4*x­åč\ „Ę&xZ¢¤b¶^āĄt 76)iŸ((_¢µĒāF (`¬bŲķam<ŠÕvģ @±4Ž4Ū Ż~ˆÖ “ĄFgĄ~ö oæ‰ZŁ5ŗę¦+ųZ1Œ" ¾¢?L˜›Ŗš·žc®Q”\ ĀR/hT^:=Ēüb‹µVł„Mnn4™ž=Č :Q”tņ.„› œŚÖؾŚj±Ń4᧐±¼¶āō2‹=ĀŲ%ѓ Ž;eęļÕ,Yiõb9€Õ†AÆė _Rŗ×µpłV“«·š;PęŌįiV¶čöC',²Ėd!+į&ņņńw²ĻžĘøfīŁE1Óµß8{˜…Õ6o4IŒČłʇä€ģ¾S‹č“›T*uŒ5•čĪ'²Bd‡$ÆV˜ÄLøŚ>½¾¬…Čvć¶ū`““øńkD‰å—^壋×yż…<źšž "'Ł1ŚģOJąŻßjµŹāā"„TIEk…ÖŠ‚rĮßµųČ>[:Ī_^ŻäÕgpśčŹ%Ÿ8J˜_n²Žź³°Ņ¢Tš™ŖI \[jŃź:HŒ’*%D7žM-ņŖyO ‘Gõüéø;XKą„0!)ˆćŌ€S “QÄŚē~ń1µņ[=8E’°ēPÅv»”’Ł©)lŽÕyG湎§Bŗ…™Ā(įūß}“™©*ož=‰”ąi}ß¼„ƒaÄ’żæįśJ‹Ą/ćé„tęn>Q|X1?Ų Iåüv·†ŽćOŌ‰{īrž~ŪĻń’ĢŌ5X|L„ a04¼óŃjå"GM1Ü6] 愗ž9Œ‚#ė[\¹¹Ę×_:ČŽ»Ž1Š’ņ»gy÷ӛ\œßDI‰TĶ^ȕ+ Ć0Ę÷4j)[Ę8ƞįpH­^GkĒqŗ4æšÉ>Œ„¶üÉמ'N a󫏮±°Ōä?ū“7yżÅ£l "Ī_[ĆóGfĖō‡Ņ “L nGÄv½×7c4„Šeś½A±½X6źJĘ©ēŒźŽŽ±1ˆƒ>²¤&œCŸ^_ąŽģ.›śvśß÷hĒSøT+åcéfźEŽž%Ž£ā#Ū©ŅV!&ŒŸˆ ˆRlmm1 čõz‹Åœj…3°ŗćż‚a”šŅsĒR5‹%šϟ˜ćYcyóÅ#.PK›ūꋇłäź æśä&žöŅ)¼X“ä1!·ø_Iյؓӳ9ƒ~8̮ʩ6I©|ŸžĄš·?ü5’ö/’€c§ŁĖ„,„d«ŻfnvÖyGÖč.Žw{žRJĆOk“‚B±˜IO˜©#¤ V)Ž­¶īĆ_ÄZ‹VšĻn.²¾5ĄóŠx¾Ÿ ŖLķŠLéEä:’·vĒ^ 9å›\Ce¬>c[ņ“?Æ·›£ķ<ĆɊßǽ¼ėūMį¤R)ŒÕ$I‚§·Ö»¼{ī*Y/Q*„Q<žÜĘńž9:Ē»ż†µfįU0"įķß]āÖĘ­F€ļCoņō>Qć)ĮW_:ÉĖĻēżóWX\mņõמgey™Ó'ŽP ¤”t{š)uźB?ź:¦ėe:½Ę–7; #C1š Šœ<ŌąņĶĢY[)‰n`mŒ„Zņł‹ÆFKĮßŸgm³O½/œœfu½C£VąYÓ ^ ųŃo®0漅‚ĖMźå€?=õ"JJ –J)ąµŽą{’o¼r‚C³µ“›¾ņd ()PRć+ɔ٠/ĶĪńʙ,¬¶øv«ÉņfN揧}Rgy³Ļ„›MŒ5Hd֐Ń~Žę;i`+Ė“6V( ©»§;€j%Ķń¹ —n¶ÜØKŽĒ¶łĪČčæžŠėlM8ö>M@¾= ż±,®·Ałųøāva#t¦“å^É'N$Š˜0ŽųŇWłÅWHҦīÕß²“øÄóŸćGpya•^o@©ąEv¦b-ƒžĒ’š#¾öņ)žąå“ŌĖn­“h¶»ĢNUĒ»¾L£RDŻ~„Vr¢{æ}š'­`?Ŗ‰3tÄdM+¬)]¢,½Š€Mč\_G…±dRŗ»mĒ퓇 ™`ÉL3ćŲ°²Ńåā Ķz³GElnõ¹* «›}fź×`ܮ˨æś/ž»’a“Čļõš‹¢aŠķöīŠ%p?'µF •bįo<7ĖėĻĪŅéĒ,ovÓŹ|¼™wVsŽøb’„½ū<“IāHNž_€żŖQ…`ŲļįŠūvčZkIāŲ‘ē”Ž·ū Ió^«ī‰e[Qr’÷Ó­AƇW(`MĀ«ĻĢń½·žŪsŽĘX‚1¢Ón;'ˆ€.„du}ss®KüŸ}ūsøŪsÉĆ)ėåGfk,®l²ŗŁ¦P(O¶Ńį>¹|Y#„`8čįū…}“Zk‰†‚byw攇\‹“B ćļå%&­±$&N“jE>+… N,]øŹĖéŌėažÅčY6·¶čõzT+•̬ļAÆ¢ļó“_~ˆļi¤MØÕėųž·co?„3š5—®/qīņ"±•ų~€Öcč•KōFńl:ż£ų2˜³cÕ¢ęä” ė­”CV˼ŅŌ^NAŅ)%ąi’®M£ķėj·³ūA Æ("Ó¶ŸL8ģ»ó*§¶$¶©›)„YŻÜB+ĮńCӎs‘Ž ³ŲŽżčZ{9£J•āYR)bDIå8FŚCj„=7EŚńQā„_~x…÷?»ĮµÅ&żŲD+™6vpžY±HaxńŌA.\[ęŅĀ:‹+›9Šą™£3TŠė­±„5Q<ĢÖøRŠõ­>Ÿ^Y!6”Ql‘žŸ~WŒ·zKėm”焲·ŠįŠ)+^]ÜäÓ«Ėüść+ĢĶŌ8~pŹA£™źa–ĘŠė÷3sß÷Ćó¦*¼ō̾'¹µÖ"Œ’ģLĻŲ¤B§Vg.ōéW””ŌŹ<)xīHī0a¦“Üōq¼ž%Qā ©XĄž4l-–įp@”˜ĘŅL©j$“6yŅ÷8‚‰Žš&ɰß#(–vćyóBĆŲ‹d³3äśR‹~óʳslu†Ä±!š4?’`„Ķ^®±(B†÷o@„Rck«I­>Į’D†OÆmŠÄ\[jŻ5Š¦)ÅR…ÖĘ2~P@ˆ§Ę„_¶iČż|żŽB©“ģy€œ=5“© y‰Ģ=ķP¤›ļI" ˜œé⃼·ū…ĒLhė[ĖL£Č_ūE~ōĖs\[iQ)—Óŗ²H©0dŖxfIbõ囂ä“üóņŽ.XŌ±®A„Tź›ōüĻ’×Ołļ’Ūæ$ŒxØęŽ‚^§ĆįC‡&ąW¶·Żæ¾šń§9õ§ßrŠĒ=0PTJŠļG¼wž›ķˆR©”:œė\pŻćāc÷z›Š}óåC™.3$ĢÆv‘Ņę’¬¾—Äeļ )R飑‹ Č5ųÜ=(•Ŗ¼{nžÕ-žāŪ_a¦V&2‰S‚rźŠžX›“0M›4¤¾ R¦Ž#©×ƒI°VM$ĪQ8¤\.±ÖMPʧP ²bFJ‘Bq‰·VšRjTX|”ļ !’ü›Ļéō”‹Ż­!ņ±‰Mł~i]¹&bĖŃŽ8ŃĶö‹Ä*ŹŻ§ļߌa„5‚R©BGü§Ÿ|ČOJŸR­|åłć¼ōģ”ÄĘÜ×¾ĶĪ1JHŽ8s„ēŽĶšæśœ›ė=ßϚ)Ņ‚•ćCĆāĪ6—ŹE’ź{g8u•+[Ų$Ī©<Į$RdYū„Ō™“²H}AFNńŅMBy”rRŹłęæČ gÜž2Ęrx¦Ä÷æyšO®¬ń“÷ēM—xółƒÄ‰”äkjÕ7VŚt²£=÷»Ø˜{X •Ę7zŃ4*ÜZļ°öłJJŠŗū2Ö"„½ŌŲG>M>ž^{¹qi'\æµÉѹi"’Gāsął>…  Ó餋żĀBĀ(ĀKƒŠćLźó\œ$©Z…ļ÷u>üō*VĮ ĀPŠ^PHr4ģi#āĮÄŪÆü(? “RødČ*“v)~PšéuB~ōöGüé~…$Ių}²bžk’‘pse(UjKr­Xkń“ĒoĻ_¦;ˆØW‹$8¹é *(ńŚć£\Ÿ£\õܕ Z!Ė›=ä>n…ķŁķ¬/*trāsIFī0Ā®Vk\_éš?żļ’Ā_÷+œ=})eÖ9OR2ļˆI`]7ĢAgŅEķö£DJƒ©łīؑ’į OP,”ż)Ķ7«zHi'!üģ‰9†aĢF«OĮXŚčņ·?ś€×Īåģ3‡xļ³e¬‘¹%F$1„uāRČLF}7 WrźQ®(xžHEGœ’„V½$”½Öćókļóćw?ęųĮižč­™mT°»(X’#Õo?ĒlNIqŖZā…ćS¬5»„a„ē„p,!ÓĄŽóLqb)<¾ńņQšķļ~›_„ZŠÅbźQŅ(ū€b«—¤Ž'b‚‚¾[Ųu?¹6enb#·¼cilc ÕĘ ›+‹4fݦÅcQJ°Žźóæżäsß×,Ę*®-·'¦,RŽ`_"‹)£iĖ:”ß{PńżŻv“…Õ.jkm¤÷3OčF†GO;ŸOÆo¤ Āaj§ėeŒ5h©0šHœŠż  X*±±¹Éōō4ģ³ÖV, …‚±‹żƒnXėF»1†jµB£ģ#’-’Äw‡–Ż^?Kę÷J%XZm9ŖJ!½āBĪį[<–næ‹骚€¬M&ÄQõÅ÷d·ulY¶ßņĄ®…µ‹I”`¢I¬3xÓžĢ Q’Χ“·ŗÄĘR)łĢĢLc­D*ēßģ†$8ų˜Ó3~Q›ėB»Ūmšƒ€^ÆĶpŲ„XŖ¢uąšéōx4”H0‚8Iųį»—āõJĻsŻ}„`£cXm­įł>^ąc±h? N/ģöŠł1É8S„%ē `L[E)PüĮ ¹t³Eēf‚ņ,&Q#•@iĶ~ö!ĒOshv*óG"·÷°†ā8įĄLļgŠ­Ī€.ŽbaµCÆŪ¦+??ĖæqĀ)|„¤ź[kmžĆŽ£ŹåJ¶—„€(–ĢÖJœ8X士›¬o9NR8¤ —ö¶qąq#v×ę€óuŚå'ÆN‡µŌ¦gŁj®QkĢīrG\"”ķxMZ‹;›lc3b9ę¦ä÷G>±@P(qmq›«¤dģf+nPī C¹\£ßŻ¢\½?5!›*ésŃQģn|÷ōśb”ˆ¼ˆąŚĶUŽū$ąĶ—N:÷ī=6Zż®ĄRtY IDATóˆ†CĀįĻóö5š©©)9|ųš“Xk1V0W/R ‘IPFb|Éāøļ÷š]Æģ뻨ÜöwŚ}“ŹøCqč^)¤Ć  —,)£ E6›Žzå†at’"Ų!æū°Ļ3N,48~h–Į`@œ˜mŚ’¶&KŀbąQ+z„V§)¶Č)·[·[§÷»vGÅģ„z™ [łéą£Nöw‚2ś“u^'ˆæh‰Ākt>Š­‘Fb­ĮW„ÄqB±Ŗ±*%ĶżWoįiēåŃc®Žj²ÖģńžÅ%”’Y××ӊRĮ£Ż ĒÆ%]W¹P,Q(;ÓĪA·Cæ×¦T©įūĮN…2é8µz-]?ĪŃķ?t&#=r¼ö<Ÿ~æƒńü‰$v»Ba¾0µ^lŠ/“B`„ĀJĒźkŌ|V6»¬o ŠžFB$Ä XįÜÅšmL¬·8ŽŃZßóó#ЁǷ^;‰‚’õ‡ŅģDüŻ/.š’üģ½ŗĀĀŅ&I ė­«ķ!q")‹(5–wh &¤Ā›>Ź XYŪ Q«273E˜Œdżób)»›źīŗnö(ĻŪ®¢x»ĘĒe³mZ€l!µB)obb’As…źķTļ2O’]Ōńī;bČl”Ż=0ŗFX¤ö‰ćp¢h›ŗŲ‰jńv–÷Ę:eœÜÓ¼ė5J¼ćxxO&pAæ3¤65ūtXšŗĘėҌ7.h­©ÖŖ¬“Śüć;ŸšļžÕ7’d‹k ‚€0Šhw»T+ģCw÷¢ \__Ē÷}õśÄˆ{æ/c-Z_ Āh˜)˜< “ķg@… ś=‚ äP1Öįó<·±øš~Ƥ\m€5OÜié’™&‚ŠAäńī‡Ÿógß|õ¾§ Ö¦gfču»¬­Æ3 Ü“0ØT*¼×ūƈżŻ·0>ŗp…×_zžr¹ųĄ5¶r`ŖĀĮŁŻ{ś]“p„Ū?ż;ĮóRz+fŪĻmWŗyIŲĒ u®8ŠyöŲžś[gųōāu~{ĶA,_lŲōv)Ō±GHzoŅ$ÜēP-„Į÷’ōŪ+ō‡!ł3¼pź R Ё‡§$o=‚Jg°ÄqB[ž=6ĆŁ“h÷†\\X!I,k›mšˆ$tĆIP;ՙFœ!(ײN•ÓF…džTnSWrRoÅS‚ÄŽ`K;Ó±|S¹\ŠŌŠó«]”’ žTĢ/·ŻTĮĘÅl&„ &±åų‘„a„1c“½r©ÄŹź*õZmgŽ(qƒž)3łc%æ=?•A 3c¤ķā^»6RJ‚b‰R¹~ˆ+†ZѶӌż  ¶=iPi¤“Ņ4†BPds+äÜē ¼ńāiŒ‰÷ŌÄZ‹ÖڹJ÷ūÄA€Rū'+-ÓīóģŃ£O”?Iv& q*˜c9ņ$#óĻN*ĶĢT—OÖi÷">»ŃrEČD×KŽõĢz ¬Ż‹÷qWWJ‰‘ćžĀµežųė/;p{’æ»\©P­V³Daqi‰jµśĄ{Ķƒ•’ÆåY>ūü­v—j„„~o…4Ū]V6ŚDI‚Ÿ=1»« J&um &‰o¤Å]ųØ{(vœeūļøS~°²Žįƒ ‹\™_'Œ|GŌOŽłņH‹k'¦.is²ŗÖŒ“Ūz½NĶŽžą*æ9ƒj9ąÕg3×(Óģŗb¼V ؖ|*å~Ź… ć„j9 Z*šĮÅ[”‹EN ųģŚMā(Į¢@)*•:ÖXŒOK’Ų›Äƒ-$€M Ę$(ķ”ŅāCČm]qįø,‘1Ō}ÉTÕcy³O7’“‰¬–ŠZp īŒ ­\ėA!õfGĀbpŖ§£BāėgOņ‡ÆŸąŹü XKl,¾ēēe>© ¤"Šcn-mpžņ ŠŸ3§S |ŖåI"xõ¹cō† ]^¢70.ŸM Ŭųrbś3J”d…B ߋ‘‚RĄ§óMOb…Gl k½H1¢Ä’—Ļ£r÷kŸN n#ĆīN/*µ:ķÖFŹŁ™‹ļ–:Ü~˜;y>éŃ9ÖmoM;“ź,–@Ź{ Ź£…äoZ‰ŠI⋵ĪŃ5uhßõ}šå¤¬µÜ=2Śżę?½G!’¤X©PX¬5ųÖ§ŪķņŽ'óœipx¶AĒ{ Š„QÓétØ7ūšN )‰ćų”żöśpTBŠé÷‰bXģļAžb-TŠšĆ3E ¾āźr›Ž0a’Qf?÷L>°¤É““ĻUH!h÷b>žlž×^8ItS½ģ|7#ĘŖh”G‹c‡f8vä?{÷žęĻæE¹TzØuŁØ–( ›$c†;Ä@‡Éo%‘KvvÄ×\Wš1ן0½Ū½©’ŻĒ›ŌŒ„LƒBnÆĖOŽū Ō§¾\Ŗ•»ĆZrž0Ų”ĖęŠÖ ‚rµŽI ĶnĢ?¼{‘Ä$¹W‡fŖ|åĢQL•ń“B š”fŖZäϾžµr‘V«ĶpŠevfšÕꀍöŁFÕĶßCICuŗĢ LŲźjeŸJĮ#Œ ½0ĀZ’-Z Œ ”IØ|dŠī‰ !$‘% ¬8łß‘’Œ5xRA’$Ģ/nŅ Ūų˜Ceķ(¹“ž-Æxįä Kk[,­oq}i!ą…S‡2yŽŃdžAqse“śÕ9®ÜXGkÉŪæūœF­Ģ½y†Wž;†P’o}å4§«üææøN]ʍ­<ōLf°!;aĄgqž.żn‡AÆKŲŌ*Eެ³¶5¤Õ Yk¶yīŲ4›]Įj+ ¾§£$+ÖlŽĻøSÉɇŁQ>Ƨ5žW ŪmQ©4vį`ī~žYc2ČįķĪ'=ŠģÖ$4¦§:ĘŪŗŒbņģ³iĄøŪMŪø „½n›rµįø‚ģA|·©ś”;Ų·jĄÓė‹å”|ćN®Ą"‘R£”„X*rkc‹w>¼Ģß|ļõGcJˆ;Œ{½įpˆļūūr?Œ1T*Z­©©'J„É׊ł[듺}<]™Ÿ¼]ņµ’ Ģpk„É?÷{©Fz„t¢3÷õ¾„ŅūźĘ~·ŽŁō=ĀD+<ßg³Żs’Ÿ€*Ģ'lžÖ˜=€&Zk‰ā˜×_z–·õ­Öš}GĮ}/1FA»7`Ł4yĢ9(ēƒvZ‘ž\µ>…5 „“!•Jd›£ĪšķjkR—ˆūˆ¹?é„4ÕŚÕģ¬5lēw~)š\Ū÷ĢHM.m€ÉmÓĒqāAą„kŹy6$:Ɛ’ś"ĘX ¾Ę׊Rą!„ƒf::Cµä±²²Ź³Ē¦é÷q,ųźs³\¼±É™ćӜ»|‹S‡+÷/.³ŠīqģD³'gD–ŵ.ĶnŸ86„QLĒHĻB¢Š0]+rlŗHµ •F ųtaõĶ.å£tŹ…Š^ä Īqc¬¤xŪd„'7\‚ŌwH ųįÆ>g³Õ”ßļÓģō1qĢ…«·ųžwßČīCœ6-V6¶ųÕG—ŲŲr`n.#Koõ#~üī§L×+?4Ķ ŽyįŌ>½¶Āg ›xĀ œŲ ŒcŌÄm20KŖ'Ėä Oæßa³=kؔ|“’$6ą·W˜«ū$Ę59_<>Ķū—6Š‚œ2Üć‡`ķŖÜ†A°ĘP,x £q'Ž„r™­Ö&į _,aMrĒó&‰#7„’ įy·…šéü!j’“bä­Ż¹”¶’’;¹T»CNü¬Öż^7•ūĢ …ÅkĻN#|pyž0F(ūä ķ¾¬Ÿ^?0ø)ˆĢČQRŹb­BYCXŽhsķęϟ<Č0Œ÷”ģl­„P(0†!A”pOü¤G±žõ:ĖĖĖ ‡CŹ„RÖ\ŲÆ=1‚©uś=–šōC(ū»wtŸ$IOGāōū}ŗ½^&»ėšhćvŅ=½W!)–«OŌ“$O,„ NQĒłOxRņÖŁSıٓż1ź’= /IAƼōģq^8}”n·K§Ū%ŠcT  ‚­ĘŲŌčVÜqmÖŹ%ĻÖXŁģ¹}bŻōTäą£ā1+@„Å$„-GfJŌK>Ÿßj2 ¤%4÷&|"žXj‘SĀJŅ?›Ü{_ŗ»s2nʎ¹!ieĪćČü¦kÖZ”µØ @ą™c7BŠģv £!J*~}nO ’Äņæ¾RS/ūüĆÆ/sl¶Āf»@ń‹(>ƒ(¦TŠ,,5¹¶Ųd¶^Ä÷4­vŸVgĄ La\ŹŸ‚šśó‡iT6Ū}n®µł|~V7J‰4#~€;_@y>j"–äG€ćū1Rڳ9¢Ķz'ĘŹÆ ™õK$IĀzkĄ~ś!Æ=3Kg(0‰Į÷]/Żó”ąłžXßóéõ¼żĮžü>3 ½AÄwæś,ÅĀ –Ö;¬“†TĖRHśį_ŖLĘX Ć1łrōqĀBR0č÷hv#za‚ÖB**•21- ƒČąÉ„¢/ćI8ÖćŽė‘ń%“$TJš7Ī̲øÖćŹb t| Zm°µµį zZݶ=‚łÅ±SlӞæk¼Öv$7l¶6W|ˆ œŚ}‘fŒĶĢxF?/%‚"ƒAŖč‘~x­„Ą”Į“ؐĒņ`&Õ ž&č_ŅŖÄa>mźo` … `³ŻęŚ­5ž=q`σę8!Ķ„<÷%ÕB0C’$”Ūķf]ē ųqòœüŸ"Š"~óįē\]lāł•±: ā®r§ū•dxŚCW;”Dņ‚…VÜÅ|Uø©Twk“bµęĪŠ'sĖøĻ’KŌtöī2{T !†!BŠ„A”@æßgŠļEQqua‘Ó'ŽR­”ļT­u*7/œ˜ćŅMŚżķ鬁Ē6ćų )’K Ī«sd¦ÄŅfž°ļųæbŅėį÷%Qߎp°v{nO¼æŲŽč4 Į ”ŲQŽeMvÆlzćFŠń *d-H'o{ß÷(–*.†¤°b“:Œƒ±–Ænņ»ĖėNUĖ÷é„!G¦KźÜgWy÷ÜēķOĪ‘BŒ;× Š>½ĪóezżįC} K%ŗŻ.„=Xƒl"p”ŠE*å2aŅļ÷łčÓ«\»±Ģæł×B?UįŗŻļI’„™© §Õ¹0æé Tr„"ŲiŗG®™ŖsW7˜_iÓģ ӈ³[Ā6šŠŲ'޼r²)I.I›äyęŸĆ—i°;A} Ér·DaĖŗFDģ‘‚•ĖXekE)•Źę:eP™&Ż2ķŽ+ šŹŚķ„’U„Ė-NŖńµ—ńócĒWMļŒeƼp¬ĮéĆ5>½¶Ā;ēn°ÕO ÅŌŻZ›ÄM-¶A«Fź¦/$[ėłˆ7 ģĻöNzNJ$VŽĪG7Ā`”¢¬Śóˆk Ū}*ÕµšŹœŪÉʦ§|¶ŠÄŚK¼vę(åR@ąkŽœbnŗĀ?žź2‰±x"&Ź“ēķĆIj@šC‹ēūīć j<%nvL×$Š‹,‰MHŒĀ אŲm/囏ܰ0§Žf¬”č+n­ux’Ņ2ża„ÆeźęŽ›Ņ>žÓėnQ­4HvĮŪ:ƒ›x$qL’„·Ķr2:Ö"•åõ³ō¢ˆĻšųZ!ģØxøwr±;+%ķ6 “öxž—½įV/Ģż]ńųT3vĮ$>½¾lt bSŅ”¢X,°“ŽįŹ5f§Ŗ—PŠ)³ĄŅét ”Ėå}_Ž—ļūĢĶĶÓkY]]ŠW-u!aqįŅ5Žžš >Õb1ÓĢ“:óOJ÷7/¾żē<ŽöcŽžHĻM²ēa±œ»¼ČkgOR)÷nśz›Ø8=5ÅŅņ²“ŖĪ„čę.0©{}fI’ µ¦^Æó­Æ½Ī’ņü’öūrW³@!%Ļćµ3‡čt»,6cLJT‘ćrä%rEŹū°7zÜ\OI¤Vc•$#OŻ!Ę~’`‘÷šXļžžvś¢Č/)Üąö¬œŽšMIķ¬&§2õŸ‘;ųb“ŅßvLņˆX6»1«Ķ ®Ülrä@%•œ—# ,<_ćiĮĀŅ&·V[,,oI!šs>©³zfĀ(³3p”æŁ4·“ķ…Ü’[¶qŸŅ–ų„ź›Ź|n„ˆTᮤ¶T!ŠBśŻRŠTC¦ Ę1RJƒ1†©zł•.›Ż«}ßWŌJEŖ%³§šŁµ56»}¤ņ³cNJ‘ł{ģ¾Īs”ŁŠÓ©Œ”łųچó*ų()8s¬ĮŅę€V?Ģ=ćɆ–§$Ęę}EIŲ ZÄĘņõ—Q)züę3ųśŁƒĢ/wŲģ Jf0¹B±@·Ū”ßļR(•SŗÅvæŌ2CYĄĻ\Šw@°ČÕ¤¾'łÖ+‡Xiöų|”I'iõĆD'ļa!AąÓļw ‚’$ĪLlÄ6©Ķ‡3-ŗ·L犠§/{1"Ņm­4}$ēWyęŲsSµž‚!ˆć˜­vŪuqŅ$Ŗ\.ŒL¢ö1‰¶ĘL„…0 ń}’®˜ų½ŚƒJ):.æ|ļ<ŸĢƏJ„ŒTŹq+„ŚdŸ(ĒnŌfsćlż‹?…#€”ŠvČūēÆņĒßx…0Œźā$”7°¾±‘™ōyJQy@iŽŪ®}k98[§?Œ2ģŗeģ`/”ŹŗĘq U £ˆjŃg¶¦Xn9˜4i¢—eR9yy)éu¶²ī2B»³’%“E[1ńZiüBį‰\;÷Ā£æÆÅ‡µ6•fB–u/ī•[nLLF©PŃ&²õ16 TR9a•ķ½ÜŸ2Wrį’~Ļóš<“®-uŠžKŽG9—0 Ćõ•qb |Ļ—érĢ9„K‘zĆå źÜkø†QŖćeRIu›r.O:Ųfz(DʃÉOŒ…+)œĖ§f­”čKŽ5¦Ų(;6{̤sqd!$F$”Ė%†qBoarc„ Rrā@—n?"Į˚ #–ι^؝ė|$,3.øĒµ•’bPČP±1luŗōĆ8}†ģąUÄ3”’ń!s“\\hāiĮĮé2ß}żot‹ß~>Ų¶ˆ%ÅR™^·ƒ Śówæ'B¤|‘ŪēŲ:_Ƅłš&Ēę*üÅWOpīś7W»xZMH•=lĄ–©‹iœÄh„wčŪÜ<ūWŻ­‹łōś²"%¦£ćō+ ,®uøx}™FµüŠkÄ$ ĘZŹÅ¢ ¾Ojr3Č&Ę SīĒćxOī5 ×o.󋏮RŖĶP*•PJ§śņŽäœwš~RöģŻ»æ÷ž żŽ$aŪäóS*ÅVwø'`V4ŖU|ßĻ ‚N·K-5ĢܫσxZ!”ĒĻßż/>ŠĮ`@”P@)…1†Ųż>Z)“ÖxZS,•éōb†Q‚ēŪ\FąkéĢ÷ŅūKÄQ“{ģ²v"k”<§ń½ō»ųAį‰Ößim’¾O=„ō;mŗƒA RwoūP÷ź®g‚Č-“\M*Ņfnę°¾ū Ÿ,dķ(Æes„J«qĘ%F£!1ąłž.g®ż“KĶM=L’°¹ź¼;„THaŠ6¢x ˆ¬‡ÆZÉĢ\Ōą4‰ū)iYfEˆČ•č#Œ¾L”P«h¾żĘ)~y~•ė} *§Š7š0(;q~łRMų÷!X݊ŠJćyjĒC(ł„ķ~“Ķ Ōīąpmæ•¢Go˜¤w]q}µT ߓ·m²g¶āQžē“VJrīź&Uóśē÷ø¹ŽŻ½XQš P¤ßļQŃŚ=«»TķŹÉ’!I Ÿ^ßD xėĢA.,lN.ę=ŠfwŻ2‰ļŲŚ\'š×įĀŗīĻ„üÖ6Ҧ”DĆ>–Ę=ńPžOÆ;®Ų%”OA”RH„łŻg78qhš“‡gF6ŃZS.—é§°+gN–Ņ/įy>žT9J|Ļ"RņY(Y1Lwa µĄēČĀŽ-÷¹±ŚÅ˜”āZbČDƒE‰¬ŗ™žÅōžJ ¬ōY½A‚„±6QŹ”R@’wļø’Óét(ł>aĀŹT.— v ×)Ī}ˆKž“`“ł™vWóÉłg‹=56vņżĒt;mi“½{źtÆø³¤”Xsīś&7×zlt(%÷Ōš„7ŌŹŌŅ?¢Į4Ŗ + Ž.šĄŽQ˜lų”É3 M0Ėź_ĘUA”"J¬mnšåÅEęg›ų¾LśeÅ]ļłR¹ŒÖšĶMšĶ&›źešÅŽõžĪ_‡Ī=%¹¾±Ź™s×i6ęPʵæ9ZŪ|žĆņpW,6m†}‡ī–Ā@,hķt^8q˜8Ö{pm"Ügó,ó>ØQZk9u?šłž›/ŽŃĘ×3īT‘ŁĀgŒ„^ P2¶ŁżŠŗaŒ”†Šä½ń¶Č2™ ~Zc™Ÿ© Ü\ėq¾™³ų0Č}Šų­5ųŚq’Æ.-Ż·$Ķxū!†ŗEnggFYٲ6©Ū~޼}J æŲų° G«E:"£d?[Ó3ō8PTėe„õyįä<ÆæpŠ~ŅķGl¶z|uy au£M«;`aŗĪŚĄ`­"@†c4õ2|ū„c %óÓŹō"/eFƒ( }&©,‘‹<}ęb[XøYėĪæŗ}/°ęŚ@#|ā$ˆ…ń¶TÄ}õł ˆ`HfĖBjīÄ63—é¾ ʲTŠ IDATzŻ6Ż^‹J„‘Qoļt/{)ū@F©Ø$ƒXÓŪŌ(™¢ŗŻ;AP.'ep9*M3rp¶žŪķP‘“Œ±Vļ°t’ HQ'끄RcŚJd"L$­B)CµRå½³—8rpŠž>r×g «ü%wķń=1z__ßé;XVÖ6 cĶÆ~÷5żHŠ œ˜•TŹõ[Ė|.l;-¢Éŗæē$ :Ҍæ1­5„@ń—?z…ƒMō.µ«Œ)“ÖŁ¹ Ē4³{ńä±y¤(%*Ē0T£¬4(yŅ šżTBha,Ų8F ¶ŠJ¦:ĘŃ~÷ś}¦§xéÄA~žŃ®Ætš=ßeSå0Š›¬¹±:ę§ļ|–Ä÷īĢĪŻ}Bl»”ņ°Źõš~…0 4] ±qŹķI;±1ĒŌ+Š?yķiN>u7ćk)ł>R9’—j„ʁ™‡N' Ž0 ųūwĪšĻ—Éz½ēē'iīu{„aˆŃ–łŁ:'Ońń¹emėģā0Š#Poėļē×.„¤TŖ0čw UĻ ¶µUŪ“`4× ¼īR ļF±lQćZ¶ņCū°#„ė4GNO' ƒ‘9„H„°!t67v|q!åīD°&ėÉlma3JŖŪYD>Qšī§˜Ÿk27Õ ¾‡ķXk“Ö”łj'÷ć~ōkkųō«K¼wöJłT*å„+ÜĖ™L†ę>ĎiĄ'köEŖIŠĘ˜l†éß|†§Ķ%­D»{FBJ–nŻrĶ "Wo6›{6’Q\3:õz‰ž "éf¹£ó@Ęk‡«…’/DŽF‡üR)Søv™bM;ē+Åü\ –7ŗÄ‰&OB&ė#łCGčk”Ń{¬|³’‰ƒƒņ¹ ¬ė(ˆ#¦$ .¹ė*…č89ūc4qņģ¼āWN'rF&¹u­žī=Ü÷r)@)I§Ūēė ×Xė€_I•Ŗ“÷yĖR–ŃšzÅćŲ‘¢8¦Z84׹ģł[Š5É0¼ČÅö6ŽB‚e”@ä6 §›‚Żj/¬Ž_Ē1( ±3 ½š£”Š)e²™…v¤4¤¶y—RneŒ]žOģ)Ā~Ʀ°"ķ!!6Ų~NŅK„вŖŚŠ‘g,Į޵8Y‘vo4Óm£KÆ=» āVŹ£ZkŒ”ڶīØŌ˜H!‰×BŒ™:OZv·XŖ–I ×ĆJ¹Āłė«ÜZk1Ó¬ßÓŽŠŚUįR굇ń> ƒūĀĢE†ÆÆ,ce€ņ}„5xž—T>ŠQHˆģ•ń}dž1i™‡†¬ ½×Zsä@•WŸYČÆwķ ( 9“°ßƒ“%kν”‚—ž>ŹłK×yśųQ¤w0cÕJ%ś‰ k-^dĄĆ$Aš–©ŖäÄ©C¼pāa¤94S”RR¬·¢„‘+ńwāįŪO–0ųA Ļ:ŚpŠ»­håƘ`Kc±·yģ%ņVĮ$27ĘU9śƒÄ1Q¬±Ö%$“Žńķ€ēNžF Š:ŗ–±™pĻćżO¾äćs+XÆLIŠ‚(£L€{įgĘ"0Ģ6Ź”K%zGņą+§¢ć8ū¬Ę §6O.ó0īŁe `b|lzū9>A’ʐŗćφ6,Ö¹ÓßŪ}ā5’ģ–¼b”bHkŒßS !̰øØĮR.×č¶[t{=¦š N®sksĄŹfŸTsqÜ5ĖüÆrˆˆ 1¦½ń9ßōݼ¢|} ę€ |b<ųHJż‘ŃŲdx×$ŁdĒxŹŅė‡ōū!a;ēh\/"ˆę$Š×RŗF’ā “TŽb¬Ö ×m3ł{r²»yÖRdŁ)“T ”$3Ķ*ĶzĶĶE݃ó) ¢=¤7‚V§C£ŃŲ—Lóp–”§ü¤ķ*9›ł3CųćtŪxŠ-NÅÆķØ~ļ0Żzmi°”9yhŚ9õ=LŚdmPRŗ/„nė˜w{īO9ĄĻß;K·īØh1”Ź~¢ßQškY_y”U8A“é\‰5Īwu»=ž:Xēß8E)šˆ“f¦Q”ģI“ŽŻ=.dX»ļŌō“µƒ=óˆvĆŻn_¹ˆŸ5ī{EDQH5¼zj–ßéQÅ!qĒqŌē{/ęŌSLjv@“b­EII„äÓjm²xłƒAH&„] k°ē ^!in­„Rņ)ū’N·GE®ÓäUŹō3żĢĻŠÄ]&Ēb{ąr§×-V{Óē‡ƒĢ}Įnmįčµ¹JHRõJc æ÷ü<łū'ݼ[Öj‡bu€rµ &bss“Ļ/.ŚĢÕeV·¼”!Ė– ;G…÷†¼†o¦MŌ1ĒæĒv©%šG¦j\¼¾N£°Ń`ęßżä4Źüņ“«|ūłĆ¼sö:7ń=/ć©N&ƒŠ:Ź[^FrgŚn%å*Żå%ŖµĘ$Ūō„¬b„.Ģ’¬L±<:ZšŃ—]PņŃzg-zéŅZÅ1Aģ{€/ĘHJI†”J„ūäŗÄFŖę›PE$TŒ¶8…ĒyÉ!p1Śršf© EʔūuOFŪÆ°i«…!֚…¹Z¦Õ±_Ąg\ęn/÷«Ļ?ĶÉc‡č Ō*å;Ū ZOY¢ŃÅij›)q£cĀ0dŖźsāČlžˆ3PÆUšŻ  šĮŹģ~OX°|’Ŗ-—5܎3 >ҽkŒFė˜éZ@ÉüŁwNS­”fŖ‚æ}ėK¬ °X¦ż˜ļ¼ž"ƒHļČNyJqkł}u ¤O¹Z͈‡¬±Xis"¢ōŗŒĮXK¤M®×” sÓ5¾óŅSōˆk·:\YjQ®„š@Š-ŗLwc{Åüz§ŸmSJ€–LbŁQ›øW~ 6³^YĖpr”΁é ՒO»e1s>{侟T ?Ø…DŠ ŗŪĆSBÆ^{bK+Ęī%ßų°Ł»2ZŽź2¬šYDƒyõ#Œcžųõ§8}tŠĻ.­ńāS3¼’å ¢Ų2ÓØ°ÖvežéF‰f-@Ēq>@O’Uµ•šJŪ¤œ—æwž¹Œ1(©JbŒŽó²’d=Ü`>tēƲ” ]†¦Q­ņé¹E|ßćßxßWwœŹĄ‡1ÄqL½^φč– Ś& š››YŠæßóOÖBŪ„nוÉӄA±ś: ǵ½~ˆ!MŸ;ŪXŠ ~@ĆųY2Ɉb5 sÓ»S>›O¼Ļ÷^@£VŁńļic887CIB·sæ'¢‡ŚÕŒŃ„aˆÆą¹ćsĢ5+śJwėU„Ä#Ńā3YųČgg³*§Ökˆ¢˜@Åüłw_`nŖŠNZņ…žyŠo.\eµŻgm³Ė„Åu~õŽGüž·_ßŃŸ·Ž’Œ„µ.„jƒęŌ Bʤ(²šbÖ–„ĘQ¬Łčō‡ģ ēI^~ęR zżˆ·>¾Ģł›haPB`­ŹÅ¹’ĢSwJņ¤FfŚZZŻø0z0ÜBv/×:®Ū(-¤-wł¼åo~s‘ZÉgy}ɰo.śóŌöū=§%ҘB2‹łļØbļ€Ģv:(S¼©.!v±ÖxŠØ¬“Ńfm/†œ% Ķ#Y”|}u œłś Gg« ś!?|ć$ė­>?żĶWü۟¼Ā{gÆń›O/S.I¢c’¾µ\Å4£’¬L[Ļr60c µśö&ęLL*!O–eNĀ )‘Öb•BZCµÖąĻ£üšĶgń•Bß&XO>cÖ6ŪĢ4ėC ŅƒóRŅn·‰£ˆĆ‡ßt)Óõ2·6ć„Ļäķ b8Ė/ós·µś›8w“ß)óģŌnœĻnAcqˆ:Ö1Ļ>5GÉóćx_®g’yšļŽŚ9SųU’ÅÅ%z±bkK—1:oŸ3nö+Ž5FGŌĖ’o={ˆļærŠ(֘¤’jhmxöųA®,wi÷õ°ƒž¬ÉŚ£UœŁ|ćsE4ßzęõJ€ÜT ĀDü÷ńC®]æAPvĀ›;­ņ÷!’ā¾Ėtó3Ž={(–©0#ՊŃj"@µäe+Ņé­ S ͚‡11ĀljœnŠøo6ęīm’ ›Ż>’ā»'ųōü:ē7©–ŠČ{f#ß „—]Ē1HI(ŽxīsĶ ļœ¹N»aŒå[ĻĢóĢŃ&oŸ½Įźfčq–]tEyq4HŚ³ģ„žó Ė3’Vøł%=¬“ĢNĻņĪǹpķńĆo1?×¼mŠŚ·ß?ĖO’é]žĒż~ļõ™‡¢K$śŃ`ĄŚŚO?~ߘߔĢ4kÜlåUä°cxĻZj…“¶ŌĖƜšįņR‡+·ZųރÆĘfk1ZóźÓ‡‰÷aĻŲ‡p õL[Ė/?ų‚NßR©zپͪž)#6haŒ¦āKlš/šJIQ”Øø×lµ{|zm™•õ6Qģ€łdMÖ~%€Ņżšƒ›łIµNė˜^ĄæüƒÓ¼xjc¶2¾cų³Ÿü)%Ź÷9¼pĢ‡ķäü¦z;?žžLO׳Ł{߈ =tžŲĶž£ <Į©#sh³Õē¦Éļj9Ą“nZ* VŽQNāaˆó„ōCĶĻ>øD[¢8f T¢‹Å]÷޶xå]Iʁ“ĒæÖZtlłĮˇĚ¾ZBIG'\©Ö‡iĒ“ē7Ū(ń“׏1ˆc~ńįU–V6†Wģ€Œ2Qž|ÜæķH¹3¹’H[®ÆthT6Ś!%ĻC[ƒŖą‚‡/ŚātC„•,Rø¶„Ķ.’Ó_¼Įļ>æĢ’õ_Ēæ’ĖļąŠŸæž’ī_ęÖZc,3€JI±Ńė˜™FĄSóM>üj™;p#"éP¼H(ɌĘ÷K ś=ü 4ō¹' äńĪF‡ƒ)-ÆB(š’“?55Ķj»Ē’ś’‚ļ½zнł,Õr)cp²©•³–RąńGß•~ņ枘™™&§ž:NĒ6˜’’V«E·Ūåȑ#÷eoē%ć%†7&Mīd*ų€ß{ī ž”\XÜÄSF(utž£ųēÓĒŅ£}Ł7ʘŒīAŚÜŃaM)ąŸŽż˜ė+üR-gmsœmyĖU¬©U$Ó<rŽgŽĪ`ŒeĘ9×L”m«QÆšĶÕ%>?“éé¹L1y²&klšų06£Õ5ZE!µ’GŸˆN·O›±1Pš“J[v¬1™žĪŽ}®µōś^~öNYą«sWyļókōĮ“žÓįHŌŽµvąF”)—¼mK±hV)łŠ~7Ä()LʔZ¤Å½]<ū R=¾°ŽÓœ\ØQźjzŻnĘRuÆqMqČ=e‘uA®S)’’/iw#^<1‹ÅņĮ—·²w‘øsśČA~üęÓōƘ(vgŽóĘÓt–Åt½F½^Ēó‰„sņMN°łdķŁžżY‘ń*Ž#ę§Ź“Z§Ońż—æE/ŒŃĘą%lt;÷īÖ7DQD©\įĶo½Ą·^~†’ųWæ`} & j×X+xA‰8 ©–,§OŪ6‘g-Ō*>å@²ÖŹ5‹2…ō”’ėžē?D”×ßSl“zhc‰­Ar÷ķ§If­„RR¼zj–óU~õ»ó„žö݋ıFH›U Ü/'±‹M“‚ö āļßæ„OlÆ·2F =ł©ˆĀ0Ó(Hģ¶qųŲvš(•y÷5×zk@«3Čt<²kłl½„ä+‘Ak;ÄŹµŃšæż—˜®—ųŽėOóW?’”’Žiž=>ĒžÅ§Ä±åßžäUĪßXåŅĶ ā8¦Rņ±ÖŅźRkĖkĻ-€œ½ø‚±&Éc ¬H”’9&ąćIXĆū[dJ¬)±)õŸ!i6›h]åó ĖüöӋüŁļæĢw_{†Z9 ŃAH»Żāčįyõ:ń>õĢļtI)Y¼y“™™™ üß7V%½^H«Q®)gŠÄ~ø;łFšK7ŪØDŠéA—ˆ2ᵤ ā ŹŁŠ½Ü;ÖZJ„õFƒå•ęfg³–Štļīw"Ø>“1ōz=®-.ó›æāŚJŸŚŌ A8Šī„¹-mi“Ę¢µF Ėó'ŠÄwLŅyJqīņ®Ż*Ģf i+c“źĖÄMÖn}[ž ĻŪ®tBpd®Ź?ūŽ3|~n‘óזX{jžƒ³õ$žŗ3YÖFžēńg߉r¹Ā®ń÷æ¹I½Qc0VóĘóG)—*ōƒ±×kĶģt¾~’’öī9ŚżŠ×¬ŖZ¬‚H¤r÷A¤ŗ#Ü’jHŚąžģž°Ł³ĪīI”t˜öwøÕĮ:ä³s7x’³˜ĶvZcŠÅÕ.ė@')©“{‘|NŪ}Vą+™i‰¤¤Sw‚K©5¦ŁÜX”Voāy>y‰Ky 道1wlæŚŗį ¬W€’°ŽšŸ~y©„Ėö ‰æ8'§“ö©ļæp˜//ƲŽéÓhŚŻ>RJ|Ķ©©ū>ŚŻg¾8Ļo>ł†åĘŌ4Ķ™9”ē””—ż ,$L=ÖhNmrp¦įÖļp­J –×;ō"‹ļ—’÷—¹0šå¶>WģPća²žT?6Ÿ k²%3qŒ‡ęäBƒƒSUĒę8u|–©Z­ļ/ńE4ĒŚ0=3Ķęęč bĪžæEl YW¼śü)Ā8ŗ-LiNšeŖ~…Ķnč˜MLt.¢ ma­A*£õüż|N鵤@D‹ē+,ąłeG°‹!ōāŸ-–“ MŽØqęü-V7HP«nFH²H’c„Š×--õĄ#Š ƒųī4μ<#*hNĶŃŽX„\­įeŅ”mąų\•S‡ź|quƒ›«=”7 .†äģGūéÜ»!žR(•«S RåćBū•1LÕJLÕ|ØóϾs‚ė+žĖŪß8 ĀX>æ¼Bl,_\^f³Ż§Ż»ĮūqĢŅZ‡æq’ŁF™śč2§hV|Ļ©Ģö1o¹Š1–Ž ęč\?šXŻģc ōm‰ÖĘ µZ3¹óbbԟLѰQHAˆDH›Tķ$VčLąŅČ!333„aČOõ ?łŽ‹Ģ4«t»]¦§¦ˆļĆŌn‚¾}Ͼ ˆ#ĆÅėĖų C[ āOpĄŲJ ō䩿ĢōiŠĶŹžRĀ&kƒŽŻ|žŁB‘č_d Bą{~…!~©„īviµZT«Uü¤ZæēAJI»Óēož;~{öó ‡Y8Tv C©ģ»LZRņų$y– é› Ę“%D¤)ŽT0·šÓ­ś\Ćģ”·£;“ ?¹ cūYŽ< nµkŌF…½ž€Al™jT åĮķ­ ĘXžüGoņ{/­rmi•SĒQ.UīčO­µ(OQńU¦bĮJéķ³8U¢T"j4Ź ²ó~łßQ&Äaą5_ŠXāŻ&QŌŁŗĻėĻĢ1?S„ÓķÓīÅÄĘ"…LŖiktņKb|¤ĻęČl?}ó8_^YćĻ¶‡Ų>a2€8Q0Acz–ĶUŹÖR ‚Œ™j¶Yā¹ćÓ,®õX\ī TŅĒ hć28ĘZdRuÉzĘū\ī}ŒCĖVę~ŻÅyŠ‹7Z“»!­nHɓltC—…–$œĪ†N_óŪ/n „¤\ ˆµįēœG)‰/%onrk­K·ńÖĒ—R0ŠŽ†®^ ørsm\Oܟ|ū)źeŸ›k]ÖZ~öŃ5”ņˆāߓ‰™óĒbÜ#qæ*m:ć”°Vŗ9†,u-šs××¹ž·æęĻæ÷,Ē R­>šŁb [)—iµZT*ü ČŅėūŗæ-\¹¹ŹĻū5óóĮ&Ž€a‹'9K™ļĻaT*ØL©Ź‚^dųčĖ˼łā‰„ö|wKJÉŚś:R8_‚ųJaĮĆXk‡&Žć=’üÅ®t Uæłä>śś*ęęØÕė ż®‡RŹ h¦Õ†Eź,a-ė­.bŹåiUp½ÕgÅŌ‚rŽ‚%¶Ś«QF›qĪķlŲÄo=žvävBŒdZ퀇Ö1qQ-)UŲ[»³ ņ~,c żAD£9ÅKÓ3™źN„ O"LŒÖž÷Z€i\V?O•ņ^’ؐūē o÷¬†Y8ݟ„€µŽ)(ū’čžŪįlnk[]Žžä §«\Z\#Šqķi ų™[#ɰB+°tĆž­nH?Ņxb¼ĶŚĪžä3 ĀfRģõĘ öŗćö-•±ĪŻŲ`y£ĒźęĻsź¬Š¦ź>'ē›\]ī°Ö“€¢8Æa ź‰9ŪŌ0ŚĖ/øøń„Ü\ļ#¬åļßæģśƒ}‘q«Œ—=›[‘mćVŸˆ’śėo°Žlpü@«Ė-ŗ}ęš¾óĀ!./µ8w}04|ō͵²ĻńƒM*%°”+Uz üé9¬±“6¬' ¦Œœ! ‚@H›+“ā°ŅU«CÆ×įƒ³ēłŽ›Æ°Łź<Ę\uqzf†7n8ōÜ„ҾöłXc¹qkZ­žd{Å{šäī±,s ˜!a֝ŃNØ.…¤T.óļ}ÅĮ™ĒĶÅ»ÆīEaČŃ£G·¼N·Ū„V«”u¢K°ĒU»¼ņ!XŁhńĮŁ‹¼’łUfffQBā)”JzÉ ŠbæŚzf,Wo®Ó£„žóöĄku£ĶņFŖM7t^¬€Œ'~n‡ŽžsM@ȓcGFĘčŸS–¶tčÜč˜p(ųįk'yķł£t{įC㫊×įČĢ]][^{ž(×YŪģS¶@ą|ø‘E²µ»e·gfܹNjƒÄq,œi,­<…µx.¶Żm&Š Ÿ+Ė]f«¼tņ_&Œó{›u%*  YJJ×ŗüē·Ī#„ČŖ'ć¼w"ŁĢ‡”‚Z}šngŻ –*tzšĶN%“LorÌ1ž­óū//š›Ļn²Ń ĒT ņśķ²})XɆƒČ˜ŸpOÉ` ‹°…i«8'‚WƐxžÓb8z ĪO~ļ$’ōń–ÖnЬś,ĢTéöB.JIŽ’bc 3ĀČ ’røŽ£ ØM՟<þ5ó˜Åb`ҦS Tjčžņ‰ „aųP¶^?vŒn·K«ŻĘSŠ0Š2µö}ÉųHI„ ¤Ź9ĢPõ$J[Ļ&‘qūšž6IHœßJ>?}ėSžżæż‘ĖŲŪŻæWQ‹&ż¬år9#nŲÖ-!Ü,ā[kü×·>åāõu¦§§±Öe‚=ßK>·Ū³2©„ŪÖf $Ÿw“Rņõå%^~ę±6Ū¾·ļI®ŽXåęZ›rÉĻ↺ÆäšļŒ²SęŠĘ`L^©‚ ųxÖvĄct¤dBŻ®&Ž5Q4 Žbž}zžÓĒē ¢‡ |ģvim˜nÖxķŁ£\ø¾ĘZg@? "p;[*!y€mŒA)µ+{¦uŒRŽmbˆ‹¾ų\ósœ¶eµŚ}¤WŗĒē“&ßė•2Oš”ä+Ī\Z!ŠE.<Žų$iò)ÆpE[¬ĢgŚõw^ŽvhMIAµÖ¤×i1°†r„– ›T$Ś})%×VZüś3Į囌Ż.#ķkˆ ŁžL# ɾrX$¾oœš§ŻųģŅ2Ē^"…B)ēI./µł‡÷/qķV „×V:üģw—Xk“ ‚Ąs•õNˆ2Ė^A™Aæē2ē5"cfC‰t-YVa”‡ŠĪ`ĄĘf‹JµöŠ“`„Ÿ%ŽcJ„•J…8ŠøvćĶFcG½ė÷ņ~ƒ(āüµe‚4 ‹Lę ģC)@w’ŸĶx–ū9Ƴķu G»(­S+‚€[mĪ|}…7^<Å`5AīV©|7ņöžń IDATėósWyļÓ \¼±ĪĢģ4¾ cµ„\[ʐꇀѼDŚ/ļ¼’ä«‹7xõŁc®Oy[Ąe¹¹Ś”ÕŠl”óįó}˜ƒlĒN™W)ÓuŸ06tś1JNf@ž2ŠZėŖÜ™pرXaĢŲ ­NÄ13Ó5ŽØóŹéĆA@ŏÕ^±‰źū÷æu‚žžēü•U>æ¼Ģ͵>ž²ųAˆJ2[c`$1ŒIbęŻ4ĘēQFIžla¦Ś"¼2ŚhŌJ䝶–ŌVō£˜÷>æ‰6–~h†sėI–u(ŁZ°5nĪĶ •tÉØ"ΉĢģŌ* #ō£€’Šj­AÆ×¦ßėP.W]’œĶo¦’‚V;ęw_ŻB)YąD·cˆ{pņ››>˜¼ē,l‚ķ³kJ¾ä^>Ģ•.Ÿž_fŖQāŲ|å·ÖzxJ²ŁųäĀ ‹RŠ82lvcŒŁzmJŻ8)%A¹B§½I¹RIž’d=É@dl5$!Vfź­R)<<Ā0t-$ég1Ęiļū·hŻĶ’RņɗWųņŹ*³ÓÓƒ1fl«ÉdmŒ?Čkp_ „ Ę(Źå2o}xŽž>ā²…ą#ģ‡1’éŽg f¦¦“V++ݹ–ÉĢ£ĢzœÅ–äZ–aN@‚Ö†C¦1vū¤ƒ’’åõ·Ö[xžļweZĖ…PG^ĘÜc\šāX:-SÕņĘQ®.wųõŁE5õĒj(d„HŪ©ņxŵXٌZ7Ž ÖŗjGą ¦j%ž=v„$µ²ĻģT•łŁ:RˆĒ|d ßZś”¦^.óź³‡9t Į—–¹¼Ō¦ŻwŸŁŹ“Š™ƒ/ń‡»iĮņżą6Ćęī’T|×°Ńv#[énÅŠwaļķ>`óXWš=ÅĶ¾c§ÅCŠŚ¢­q³Ļ¶8įl]³źs`ŖĢāj—^؇ŖĀ£Ąx»ūēßÜ"Q“RQ©Ōéw(—k.h(<©@&%&!ŠķVģ€X ]d~øĘTL ƒģÖ^ßB?2üļ_”ĘH%™Ÿ­šĻæ{‚÷>æÉājO*< ^bø±4Ŗ%žšµc BĶ۟^#Œu"Īb0üdÖÅ$śBHāX#£>É*=ś£Żƒ£¢…Öęś ² bV«”yXqkśY677™žšŚs’‚ųž ä½3iŌź”JøÅ';ņįxDZqϤ„u¹ņ<Śż/Ī_ēO2½ F ĮĢŌŻ!„4÷”kĮŅĘ Ę‹\„¾čÆFUām’õlÖ^yöXFa:ī¾zždqiė·6)å”łįaNQ¬³ „E§,S•«­žcßBÓDD‘žlÜĒų,ft…J˜µ¹ŲžŃn”ÉĀL™(Ņ4k§ŽĪҬś<µ0ƒTŅiÖ¤źāÖ<¶ńLVńO×f˜®ńwoĪźFˆ,åĆŽ$r£ķ‹ćüžNßw|5Ū™ Ŗ5ÅóOMsa±ĆõåVH°n@)7Ó\œēQ¾·ćėéÅȐøÆĘ©ČĆt3`aŗŹ…›®…4Ń qžÜņĢ‘)^ęæ:sÆ®¬£’Ļ®\ņųē?x…’ćļŽ§Vu³J Œ l–żŚ6   &m-aó£oŸbŖVaoKsżį†•Ķ~ĢtىęՏ‘v»Ä:ņ^}śĒÖyēģ W»“:?ūč*&! ˜ ūĒÓßdķéiÅ#ζV†Ż~Ÿž:Č '0Ż(£µ”Vń™nøŽHģiē`sÓĻÅO)^ö7WĻяB|įā=™h0„™±¢?2Fcóź÷vMR²Ö°¼ŽęĶÓsx ¾¼²Æ,VH¦«eZ}M<&V¾“%^I_ĶŽō'Y0ÖšŅS3¼|b–v7äŚJ;›ū°Iܼ¼Žćė«ėl“C7w½ĶŻ0iåx'dGOV©5čwŪō»JÕŗSP˼1 >lAQą„ĮæqļéŻ8.äāGc‹Ó_eg£ņž—7݇L7KVlqj*ƒČ°ŗŁćśr‹X»~I)į„Ss\¼±ĪT½’°.@·æIx÷Ņ˜\«”Ž_žvłekĄZ= ĄŃ­XĀtŁb R²Žź03;»…G»Ø;īų✈Hžd¶öz_ø HÓėõ˜ŽĖ÷øŗøŹ—–™™™FŹ„Ę4ZKE”†ƒ¼Ézų2Æ©8Bi"Ė›}Žżō<æ’Ś³tūƒ=Ē"9ŚeÆõn>›’ƒ³ j›ŠŚdÊDsj{ž“^E1Ɯ>Č«§éķ«ARJ6Ū]V6;x~T?DFs¼}\“¼æ…8Ö« ć8ĖØv&ń7“ö«Ēń ė2ҁ±&ŃÆ0ō!Ņj^?=Ļ·_<ĘģTÕ%®… *‹ÕIń„3ĘZsāš ß}é(?{’2SņNŪ±Č×6ėĘcZ"wB\ljĮg—ÖŃŚņŅSsĢ5*|za™ī b£Ó§±¹7~˜±lxI Ri¬.\^r c£3H®ŌÅČXK.ßÜäĘņ&±(„†ALį6ȝč€Ü„ f¹ZgŠļŠļ¶)WėY5`ō¦ŚĀ0ŗHŖÖ@³źó'oåśJ‡·Ī,ų2{°ćØŹ¶hé!JgERgQxb»nįīXÜLąįŁ*ĻŸe¦^fy½Ļ Öōś1’ńæ}F/ŒØUJX£ō:(år-é'ÜZ͹ŻRŅŃK¶6Öīxčż  T®1é…ŌEQ*å`‹į°Ö"•"֚„„%<) J%””ŌŖUŗ½Ż^k-µj•r„‚Ż#€i(ÅŅҳss{®q“2źU+ė-G£*e"ą&S„gčIžö‘Łł,ˆTéyˆ8ę½3—8}|©fÕĒ;ŅĄ€õÕU7Ōh-÷›g0ķŽhpc-"ȘČlĮ‰l'ś— ūZ‹Ąņ£×žĘó<ō6ēÕZ‹§+ėnÜŚ¤T ’óŠļīäųņŹ——Zlv"—„¼}kØży²‡3˜µü!°B`ĄĀLÅ•6חÖĮj*Õ:$ՋQ𑵒Žü=c Кśō,•jr„ŗķWP*.ė««”J%Źå2–×Ö2ÅēF½ĪśĘż^ļŽŖĒ;Ja¬åʍ”J%Jåņ®ĄMzEf¤Å2Š5ż³yūĆsA åŖ² p4ŁņL6ՋIÕJJ…’Ļ÷iõb~śö'2’ƒA²8šĄ‚¤ĄW¼šō!¢(Źs¾›ĶоŽn˜k‰uČT½²-ųH_#Œb®ŻZg­ÕĒ÷2„łŻĘžŪ‘¬©Eʰю¦¹ĻÖ1˜žĆŁŻV¬5„QÄńuŽØņ­Ó <}t–Rą0¦MÖŲ Üø9¬ćó žj“Ö7‰£”^!M,1č8NZłÅ½æ÷ˆWJ"¤Ēr+ā½/łźĀͲ¤Zņ0v÷ķ”cõ¦²ä’˜V[į4TœMÉg`fŖüÅ÷NšęsŃ$鵉āÆļčz½{ż„J•AæK·Ó¢Z›ŪęŚ9†ÖīGüĶ»‰c톼Ī҈”¾;7‰kƒ”O:FĢ†Ņó?ŪŪ§ŒŅ–-)臆Ļ­Ēqę^fšeŽxvf­ÄWW–Š:¦15ƒAžÅ÷bkš9Ś.ęūĮo°–Xz‰Ą£½méj²RG1Œ` ~`©T*ōĆxKÖµŻnF#s²Vćüŋ^X \vŁ—¹ŁYn-/säšį]ĶI¤æ×i·Łlµ˜žš"ÄP°u÷Æų¾ļ£$t{J„ߓüņżÆ8sįE¹ģeķW„…&{żQpŲC¶MˆdÄ £KķØ!o®v¹¶øĀįł“6;Ś?Źó(ĮÓ:ĒśxųĄ4ŁPłÖČ’N§ „QLgx޶É×~Õįęjå%Õ%†ĪÄčēĻļĶ0Uč(M?Y…Š”Ąb2_õˆĖ6S‚ĖŖÕĘ"2U ųĪ‹‡(—×Nž€)»„ūŖµå_żŃkxJņźé>’ĻĻĪP«V“ÖP5D·ŸérØ{[E“×Mtļ¤!|Bcø“ŅCÉ  ķ™»“čÆiV$‰²[VZ‰Mœvŗ!Wnµø¹ŚuCū_Fn“vZńīõ !(•«ŠļŃiÆS«OćyjØÅ] ‰Öńp0Ž Õ  ‘1B'ša“„HŽ<=Ļååז»Cģć²Īwd e1‘HE"%‘Ņ9Õրæ~ē·ÖZ z]¦g$T”åy…Ł“|C‚JÖZTĀ“?Nķ=ÆŽŒ»ÆdĶÄf>ÉĢp¶S#k |Įk§Ž•ęIE.eņBĘōųŃ£x¾ŸQzś¾ĻÜÜׯ_ēŠįĆÉp»½pē”6Ūmf¦§)•ĖŁŗŪ×J[¬õ*œ9Ē;}F m`”WqąÄKČpŸūd«?z{Ż‰ŻŁ,Ū.D,•GąC½Zŗ;G9’­}“1śĮxĀ*ć¼õĮ×üé÷_dVźĆ:ݐµĶ>ļ»ƒ­ķWi‹ ńE&’6žU2õšńxžæźZį†Ļ1‚•JpÄ fņœļī¼ÕĮŒ€N»ėf.Ņd‚"3–;OrĖ3¹0*EA0MØ+g Œ±ųŲĖvŹ­É sŲīg±1hcńdĀl%Jy“š_Y$6–’ü9žNēϼ{½ų"BŠŽ\ƦÓNéƒ1†©Łƒ¤åė-FpH/$æĮi‹“1–Ķ2ĻŸ”Rö¹¹ŚK$čķnČø:p:Ķ6k<³&•· ż®K-\¾¹ĮŚź23³µ˜+qāł„!'nšąt…©šĻµå6½Č$Ā,[5Nn_”Ž`‡ńØe§lA0Ó&ĄT£”šÆČŚÆĀ©”ÓŽ( ž§€ct?AĄXZZbzjŠZµšQ~ī”ŽO)ÅāĶ›L5NTsHUyēCƞ’”ŸvÆĻ_żćū|ųłEĀXą%”ōʉxŖ¤2āę>’ʇ”µ=˜T?­½žƒF‘°-J„0Iū3®‘~ōęz“6Ü\Ž@H/? v'™ĢįÖ„<Ī^XäĻ’ąe“Ńcļ””‚NŸ›«-šĶ©\eż6ķ·v$™%ÄÖY‘Qą1ŪtYX‘°r:’œŁ©„’7i·»W’žĄS¼öÜa¾ŗ²J„\ĮOϘCōµZ»n†¼’÷IœĢļf%„\C¼HõķruE&Ų½{¾[ķX®r”Éé£MŽ:{ƒ(Ō` k+KyŠ&5ļ)ŽˆH)øŗŚåg^eµ5HĄĒöHnŌČ !ˆ¢n§å¼ģ× ¶ˆ} Ym43¢„r*“2Ł2AŒĪ( Ļ›āgņwļ^ä«+HO¢­a~ŗĀF'"֎a«ˆŒq!¾’Ł&0¤³2YūdČ÷'E•ļ'k‘Bab3vnnnā'­'ö6Y’āļł¾ĻĮƒYYYauu/887·£ CĮ`0@ AP*!¶É†ÜĄH‰”‚Æ/-ņ‹ß~Næ[…šjŌŹ)ČpąCJ/©šØd& *-2OÖ£—…Ķg lBG‰DŖlr{gÆ÷°˜ ~”.éääĒwA,Ģ_H µRĮög²×¹¹ŚBȄ’Z”ĻcŪg,Ì2ć2Æ·³“õ˜ąS¦µ–Xkęgźo¢¤B3¹I»°ižRüÉwŸ„Z¾Čł›D …¶@#PŽ O8ą±ū$Ž9Ēā6 źa”޽J*l÷ūĘĀ OĶšĢį_^ŻąŚr›©éƒĆ¦PøéœÜÉ%V¬6ō½æ·Ū‹Ļ{ ·žŪ08`6<£³%ƖPō^¹Õy]»ķŚņs£ń‚€z­‰16§Ķ)Łį ƒ-b “䑶œ_Üd³;`q„‹µŽā÷¹cÓüųµ£\ø±ÉÆ?æé©Ņ!A äĆæžĮÓ\\lńĮ×ĖHń ņżsLņ>æß]}v±ĖWIRH­“!]OŠlVņżŸĢ_llnŅh6©×j;bŸ*-%tėaČāĶ›4 &q@ć^OJI·Ū„R©dĢN+'ąTSūaÄ?¼s†ßž½H¹ZĆS>žēQ.yI+™* —Ń•‰¶ĢĻÅ|<āĆŃąŪ=OåD³“fimƒ³ ōCå½Żn4Š5ēÆ-ćū^ŅUtü’-Ś#Aaźó¤Tlv»ōĆ„äa‰ÅSŠ•õ6ÆÆ8M­”żjŒ5ÖnaŠŁ ³XńlOĪŁć· €mhTʾæē,†OšMKĻi„šć7Ÿįšå[üĶŪ_3%%ž—$$¬JžN€t/¤0ćŚM‹öh»8yėł>ÅjŽ>s/ÆT¹¾ŅvĶ”ROƂ†6pŠņyg_Čķn‚ŻĘ Žūżāæ {Ū€üĪ=Ć)g¶- īQ`Ū¢PyfėŹ af®qÆo±(%ør«E«ņ§ß>N§ńĖOƳ“Žcy£ĒõÕNęāAÕRĄį¹*Q¬łķ—é ;“}u¾Ę±µģ‡īĆm6 Q4 ‚‡"ļ)¬„ÓŽ ŠĀ]ß› ōč£ Zk¢p€/ JĻ>o8†!ęę(•JwÕž4T$‚€łły677¹zķSSSŌ«ÕDps«3 £ˆj2`·“÷-Ņõ^½¹Ā_’ģwÜŚčӜšA*„J)—É•rHŪ£ČČć”įÓśŽ$(z<²†¹™ĶÉż0āĖó7yķ¹­"wŹč(…³į_^øĮ{g.±øÖ£Ńhf{tG¶8#Xt½ĻRJ¬P¼óń×üä»/8VcR „«v¬µz,®th6§ņ į˜ö+¹ƒ¤Ä¶6brĘū„”äÜÕ[¼|jž¹é“ČŽ€„$§äĒÆ‡¼õéUšĀˆ«½e¤*Ś£ķbĶQę½żžRŅ-W—:ŽhD:ŚgA±“GdBą[ģĶ~ ”ļę†ßĪ`•,^- ßä”yŖ~/Šä£TdĆ gėūo’DšårMY”lvCžę×3QØŃē³Öšž·/č…ßWX{œµ‚pЧŪiS*'Łł”¬›É²Ö{ń”ŖHĻĻ#˜å$q”(Ž˜™=ˆ1÷ˆDŗ‡…u}:FĒ1ƒ°0šŠØ”=.•ڐß-ąOŪ¢fgfŠĶ&ėėėt;fggĒ »}{¬ŠjóÅłküģ½³¬¶bĶ&JyɗJœŌVŠA€ä„“žōĒ|8cŠó|.×ĘŁ6łӉK)ŁŲģšö‡_ńÉ7׊VŃh4©Õź91„ĆŠĮ·Ł·BˆLĄŠĶu•ųąókTĖ%^}ö•’Ē Š9{ńÆ.séĘ:Õj-# "§²,ś¦{9#“sõ¤Ģ ć˜0©ÜŸ¢\ņ±öɲC{¹ßsÅsKą+^zzž^o@{słVJ„”ÄŸĆķP»yÆqqé>ė~œI6gŲKӝ2›CÖIg@īåYģ;±ģ¼d\ü­t6$8Oۓ䖐{}šćxqNåvó%£ا$퐒ō«s™Ćņ„ųŒ3ŸóO|wś&ö¾f/ž_¢ZĖŪv ØŹ"÷ Ų}1÷z` <×÷ś‰Š:Ö&ß 4ŹÆ>wœ0Ék­±Ę$U ½4˜ŽŖzjzšĶv›Į`@­V9a9ŹŻŽ÷$£{seæūåGtPoŌQžc“RJ¹9BkÕ0šŽUšńxe GOR >Ub÷śżš”½ö+7–łß’ßŸć—«T« üĄĒS9YB>.CI©­>!Mąd•>©š|‹„ĘĻŽ’†_żī+^yö(ē.Żby³KµV£Tń=/a†+“_ķŅ·M֓|C)š˜žjšéWWxśČ §OڵNŌ£2öӏ8¦?ĖT­Ā‹Ļ,šÓ·æ@ą9ķ:‘~‰=Ļ›X(ŗĆHS¼Š~}'Ąé{ŁhĆė"+÷ŒƒŻnĄqŁäķ@Ē֒YJäć)€¤ß7‰e ĪD)µ•ÅDÅŅŽ ČÓiG„¼}ļNrsŅ©N·IŲĖ iHŖ1b_ųcē ‰„@®Š¬µĮó<Ā(N@Ÿ č÷ū™ĘĒ^ŻO “[-¬Ö4ffˆćxhß­ļŚPXkiuślvCšĶi<<„ü¤õJf—:ī ČOÖ# F( ¢;īüH[–Ö[œiīH ä~.„æxļ3ŹÕ„R Ļóšį!eˆ!q[cĢPęq‹p!-‰µ ߇Fs Μ_Į÷fg+1ƒš2g…K“T“5Y;˟”ML bĪ4ø¹ÖāčĀ„Ą{l>¢oŽ÷Ń©T*LĻĢ 1HīuĘęēēw¬^¾SCåy óó®Et»]':čyLMOS*•v¹·D %ʧbX4mBżłäŚĮŌØČ„ JJI”Ųč„üöĢ~üķ#KE9MmØŽGćŲ»ēÆŽĀW‰ŽG¢]“‚Ø;;išö9“Œ²Ą0XdrdŪY©‰½¬Ū}k‡c !¾ē±øÜ„7ˆ¢= Z‰Gfłņņ*֚¬ā›·įļߜ¬Žc“‰ó‘Ļa)ń<UŃÓ÷³[b¬ėg*!²‡hq«Ņ{.>7šG3į–ŃĄš¾éēū‘ęóK.{¢†č‚E y źc•)±él3N3Ķęštŗ!q»ĮóJeĻ£Ņ×Ń Å®’’f³™«ŪÜFœšŽĻG@§? ĘŌiæśØŃ$k;YN¬/ ¼•R –³ē–8qųgźl¬ÆS®ViŌėYk…”’0 ÷•Ó~|¬±,®uQŖ”T<’jŽ¢“{ó¶4ģ 1šÅœ“-NÖNm»D?4Tk””K‘W?īÕ±ŽOJķÜwLĄĒdķh/§: Āø}[­Vx÷Ӌœ:2ĖÉc™l„½ XŒ…j9ąĄtĖ·:ܾ*ŗ·ČĻhM½9ǁf‰#ӊå–f#ōø~åÜP¢c/c™4q’Vs­…JÉ#Ž5‘vB„Åłēݬ هąļ‹»¹V‹k;@0tGśĘ†PJʐµ7GYE•j /#| /7€ī†Ó¬µIÅĮšŹéĆhmˆµ¦ßļӨׇةfP%¬·:üć»_pīśSĶéŒr7ļ9› ‰Ż”o® ā(É•J…µM~õ»sü›?yƒ©F™V;«ž¹ŁŁŒn?Ŗ©XgF¼węļ¹L©RĖę>†(wwi·ÅK¤ā=YIHœe‰nok©@ś|ņõ5ęēš”KĮ¤¢¶7Ö! ŪYŪč 'Ž·ųæ½/; q¬YhžčŪĻńžŁ‹||5ŚówžßtbßilSņ?xy•VŸß~±D Tņ¹wLČŗ|ĻG՚Ł|ĀżOBJƒž¾ńv?ųąŻJ§’”éöśŌŹ%Œ1„QÄl¹üЊD eaD‘ęóŸ_XfnnvHZ0 œ&kėŽI[P„”XR¤24uÖ×V9ūõUžś£JåJ^),0ŻģWĄ$„@y’_½ū%ļ||‘Fc:ŃąP¹‡øæĢž“³3Y»9gŽw3§zRR­–łčĖ«|÷ՓT+%S7{ß,XŻģrmyƒ³³E$x_b OIn¶,æż|‘ĖĖ! ¶¼uŚŅæ›}•‚(G¦ćžlŒÅ*ĮĀt™„ć3»®½0aņäž,§ś‹ŗoNRJé„GĀ“ś‘Pńjc’’öŽóI²ėLóūs®K_¦«=†p@’CĪ ggv¤PLL(v7VŅ鋾żАōUŠÕFĢ*f†Ņ—KtC€oŪŪjSÕå³ŅŽ{ĻчkņfVVwuuUuU÷y‰ī®ĢŹĢkĪ{Žē5ĻĖüR“ĆS©ŽÜՈŻ4“Q¤).FĪĻŽę‹‹sLMO'‘b•*e čvf›4.Š“!]*”Ņ­qü€…• ‹ĖLOMå™ĄQU•Żų~¾ēpłĘ<œ¹Aµ^OÕÆ鯁®½Ÿ-öæ3<üƒ0UBéH"“d!-vż(bu½ƒR{?cE)E·½ĘlĻåŅõ9×ĒM%Ƌ H&³ ņ÷{_*n4Ś$eÜa¤łł×éöbŌNū„öö²ĘģnĻėt˜sńˆG—Ó%Š>Ę03QባSÄF£ć˜8Šö’÷—šéŁ«\Ÿ_ęƒ3רŌj…‰Ķƒ©ē‰‰²²”ē"eė ‹ŹfscŹ„2 «ęWq”Üõ`Gf»„„‘ęwļŸĆu¼$ó«TJ>%X»ż],,vŚX #ā R QxžG»ÓŪ·®ƒ)%­v[wVš\wHż1 pl-²-IkŹÕ®ą(—+x®ƒ‚Zc:’ģ<ˆƒ”ŻjR*WAoē3Ót“UqžäÅ£üųõÜ^j³ÜźķøĢ³% )Š%7ćŁM-ĆĶųncÓē²ņ«”a=q¤Įt£FFtŗ]źõz.½»W)Į¹E~ń‡/9å67[”‚å8„’ž”|ÖĆf‘ kKsAd*É+•ĀqZ}ĆÕ‹“ŪI4q·ļT÷?æÄķå.*'ƒū9ėżHę1YXŒµI3:˜Ō&'Jn¾ėqyöż0z ēׂ<˜Ņé†Ģ-­ćøN>Tz3µ<‘žRÆß£“Źī‹(r\rµAubŠj}"y4&ńƒŹˆ® ßė"„Ą J£·üchqlؕ=ŽNUPé`Õ'xö{\–x ēu_T“R·ētē‘ˆüMĆM2¤ÓéP­V÷åyM¤I%:6üśŻ3¼xś$_^žĆuK(å$ezBåż3ūXß'ƶbćF&Ҍ™LIˆ¤TŖšååy.ĶŽĪ˟vĆAŹÖj%š¹r澝E)Ēu‘é=- 儃A²–P[¬}{ą'eX~ąńŁ…[tūq*ō°wū$šžėā{É#<Ź%×QŽej–Śś”Få{ąpĻXvMdJ>ZĶ5č®RM–ēŁn³H~­MRĘZ|€²½ĘÄt;-*Õś}õŲnfó“Ö4*—o®ņÓw.ée©;q)mˆ…Åņ1ĪXn@9ķ^Äd©X†¼‰ź)‚nÆĆ÷Ÿ­óņsOņæż?ļäĆūvėüK!YY] \­oŪŽ6•ĒŚšēƝd¢āņ÷ææ˜WĀĖlw¢ ß ‹±Ńƒ6ä =ō÷ZąĘĄŅj;ŸwbĢīKļŽŠ)¶tĢĶõ6ķn0­‚ ”ō}d½B°)ė¬YlĄC•EL®ŌSāāģWfē945±ó÷1TJ>_\˜å×<Ėr+"Ź8Ž3čeJĖU2Ē@J{?[$ŠGƒN„l0!iĘ1š>;?Ėw_žŹW;»¾„Ąs’5¤ŁóˆĖ³·ųć'ēøtc ”ܼwTCjĪ][ä©/.sģH“Gg8qd@)5VšžaÆGc R V›>>3‹ēy¹`ān“Ń žēńŃŁ[\œ]DHµkmÆÉ9’tŪ-ĒĮs}“Ń;rŽ„Ü\hFżČ cŲ,Ųd ˆÅpS„#e LÕĪ.ŖhĖʤ܌P³¤÷CróĪ2ė}ƒėø®Ÿ%TŅt&dZjlKÆ,ī~nؘ¤H›e“R,%%øsĖMŚ.„Ąß‘č`¶ö*%Ÿ ×ēųõūēRņQĀqA镔…>7ģ,‹‡³(Ņ>4C-” Žwn§Ķ֖ē&Źq|~‰…•5jå2k­_»JĻ(ĀX€¬äŠP”'č…gfW9{cÅeŠ}¾óŹižäŪ/#Ó”£kP¦TMĆŪć@Š#ż0ęņĶ%ŹÕڐķ،•jƒČ hĆ”Ć<‰ ÓtŗM“‡1šA£ęO)ĮWP³­uįššļ7냱ÄĀāA7‚f+ä|o €~¤·–p4ƒĘhƒēØdŠj©Dsmééé<£²čõz¬5יœhąŗī–ŽŅó>ųņ*By8ž—7éf$Č”t«Ķ~Xleó.’ńlӖBbL”'7|wĒȇ‚Ąwłüü,o¾w†µŽNɇ‹R.Źq ³lČɇ½Ÿ-=+Sb„Ƈ(%vdm¹®Ā÷\Ī\ŗÉo’ų·֐ŅA9qÓķ*Õ2ŸeS§4Sg x^2KĒ1qŅķ ~’ŃŽĢLóņsOÓĆ!Ūįŗ—ÆĪ²ŗÖäåŸŪsū„¤`i­ÅĻŽž!¤¹0 «XŽ<ņH!šü šžzW†« ©X[ž§V›ŗg’Śf6nøēuąūH!‰µ!%yŁźĪ% ㌹„Ų:aœ…™rx‘g”Rn2żaąÕēžĄdQ „čv»»ęģ$™ E·×gye•é©É-E“‚ĄćÓĻĻqżö ÕĘd%Īę~›Ī3£c5‹»®›‘ŒB2 =ĢJ‰’zÉef²ėxōĆšTbHח’šöĒēyė£K„(‚ „Fę}K>,©`™(4Fķv­ŒŻg3tĪ^¾ÅÆŽū’ÅÕ6R¹(Ɯ©$Bʔ¤ (• ŁQč“H÷EcPZ£cÖŽćŃi.\™åŌńŹ„qēėQ ųéÆŽåš”/æšÜžŚ/!‹«-žĻü=Zx”Ėå”räb9ŅØćoībw–$Iŗ­u”ė”\db»²‹›}‡¢Ķžn"™‚Ž@†K­Ņ’eЁEŃ›±80“†3•,ę{؉Ö»ŃšŲ€Rƒˆ‚LĖOśa˜” ģĀ÷ŌZÓjµéGš Ćš®æć{._œ¹ÄßæłŹo¤ƒŁT”LEä»EQ,,ŠŲ8•wąš»Žb~1äŹĶŽĢL"„{_Żõ^ ¤ĄQJJę—ÖųÅŪ_rav/(øŽćę*nBfC4ÉKÆģżlńh®=FšŅéćw-łĶ}YßO&!EŅūųÅś̭t)•į}BH¢(!p<1“Ö)ģōé€^£„Fk‰¢Śąż3óxīüł/ćłI9f)šųč³/¹xs•gž>^ 2»ģŸ¤ē$ŒbŽžų<Żj5æ@>dN°rg†½/ßĢü’N»ÉÄō‘üÜ G‹ÆgCFzŌö‰4u–•V™ ~š(dŽw®tÕ ‹ ‹[õ#”“–!Ø ĪRįI"Na4_ś(q,xsϛф ąĖ‹³Ü™_ąÆ~ų:§NÅq\:6·ļ,ā*‡¾¼ČĻßś”‰ÉCˆth”ēŗĢLUY\iÅß/įł¾›Š&dżKŖH<6’{/[<¢« GIĪ_g²^¢Zņ†ģwF<2"š»÷Ļš³ž”J©” ­y™īƒ®ļćśå$ۘe ó}ŒGÉzK6"fE7IɎɬ”Ądµ<é2ō*\¼~‡ēŸ>ĮOŽ|‡³×WŹ|’µ“üīų“ļ¼B„\Ž@¦vcHr¬c>ųā2Z:øé9QjóģĒ^īyéUg×óŅWŸÉ2Ńų(Yɔ&+£Ž %gR(Ų‰ć¶Äāq¦Éā2‰ä®  5»Y„#}Ńƒžc4ŚāXctĢōd-Ææć˜N§Ćäıֻb¬L’7ēäń#”Ėež—’żļ(—Žxå4?žŽ«ųKÅLŌj,®¬ńÓß~ČR[ā—=“Ž ‘āb¼m8ßÖux€Ć»ˆ«xĒ(9>‰”©õ©£,uŚüŻĻßē_žąE:æzē,ķTņ1JL:B­Ń›;„rµ1˜ć!%J*D–Į“E„+Y˜tn›Ī-ѵ•kń J%ŸO/Žį_\įæūėorźųt"…Mā¼bą7|É[^@HÅĢĢ‘¤ «į/®¤Ļ£°¶r ė¤QYŹ8YƒJÖŗ¬ś×0F ĄdY„ōs‚ZŻ’ļ/ßęśBH¹\£×@ĒüöĆó¬6[üŪæłąaĄ»…86|röFŚ÷‘4Ÿ‹|oC•{O>æ£ŪnҘ8<’‰Øw:"ęšd‰ėwŚÉµMżf«Š}+›•¾Ž­a}ÜļYbaqߟĄq]VēļkA0#µ+­5qE!½N‡ļæ8‰N^„6†N·ĖŌä$Q¼;ó@„DqĢĢō’ó’š7|ųŁ9Ž|ļ,]XąÓó’#±†Zą‡r­AP©ā8Q&Ž”r<<ū( Ž#Śėkč(F¦²­ø“÷ B”«I1÷'cƒAfPž‘KĆõØIEčü§·Ī‚ņÄ ©ņ/%͵%\ĻC‡bVBF RZĪ!‡HĒ@±e'›&-,öŃF!\–J¤ Ź•2®ėņžĖ<÷Ä GM %ø®ä« 7øz{•ru%³õ“8ŲCĆf3åŗ<‹( NxśiR ~Ļ HÅ8[¬Į,@#‘’Ģ*P*ĢÆE¬Æ­QkL¢ąhµĒģķ*µ)šķƒA’jצ© ėķ.+­ÓSU¤Rél•LDCÜcoܝ×Įg ÖÖØÖ¦īś1}mū]žÕŸžęŻ/nqķN Ē‘I6ŠAv¤HB¶:3l§a ˆÅc ƒ \i@eėvCdN„H¢ ±Ž1qLõé÷{Ŗ{¼ńŚK„±Īüͼ…n7!Q#„ä×^ Õ łÕ‡ؔ§id)“Ł*‰fIG”µNjī‘ ĪŲłķlžą7ŹH©’²ƒ1D"ŁČ²{pĆM™¾—>ŠēØĮ‘– ! H®”ośPršŒ ł’ ĻõqRŅ ›æ§(4AnŒŲęŠ[)ń€¤ĆĶ…6 ’!l™|bVӛ:€RČTzq°Yņ±3nAQžŠčd¶Ģć$;NęqŲńH›RĶF‚žĢ¢qQŅdŒÄ“™IĒčgŪ{ŁāQŽJeŚ·1ƒŅ¦bFD © rPr%G‰|d -+±ķÉ`f6 Õł5ÉCdżRą—ŖGAĻ/!„"ģ÷ø<æČ>ųœ’ą[D÷™æ_H!8wuŽJ„šˆ²ØdŸ¼Æģ‡aGՂ‹„WėkK”«õ\•sÜwd™ūy{„ĖĻŽ>Ė×NLqźpkskų®›”–erƒ"#„£Ņ½Āf@,,öƃ™Ø…dä£×ėó쉮ē„åWėėėōƐ£GŽEў,čLéäĻæ÷ „Ąćw_K&¹fź@i½|^¶"hctwņŽ0™¦ŗAk(łŠĄuhvśh3I|ĪõpD Ö2§C˜±1 ™’c)%HĮųį»bSŅc³Ŗī™#)Óą¶A偎1e6ÅģįPvćŽkk;Ä~Tq)ϰäMŃ©=Ą0učX"ģ¢5qŲ'ŒB¤rhŌ'8séł£ļģŹŽ~{±‰ė8•ö¼śj¶”żŲ•BIÆ»Žė8CŖWbŒŌy"w\ #Hf[LÕe—Ąsš\I§'b ©ų@Ņæ3¾A}·÷(i—°…Åv9HāLFaŒ+B~ųśóÄiĶæ¢(āŠōōŠ<=‰Œ A»ÓeiµM¤*ėłŖ h"s£•5ZņńĄŽö†X?Œłę3‡ų7ö4S5ŸŃ10ćźp%Œ/4uj­‡"oŌ”kĪe bč±™ŗ‹…Å£‹įŅD™—Ų¦ż~…ł2Ÿ# ’ŗÅÉ壽U×Öv××f¶ /—̲9™ü½! ž%4å:ų~OĆ{«9js•’ÜYķ \'?7B•ƶpÜ»żˆćˆ^Ƈ”ólÖøŒL¾õˆAKIA?Ōœæ±ˆļJžō'yžäZ‡ÄqHĒÄQLĒi •!™Ż½š,±°øOƒ5˜kŅ äM~ōcLšyI#ŽģYö#ūœ3ÆsęŹ<Ņń J&„“v‹¼AW[§m‡œ€āĻ”€f'äęR‡0Ölœ„e R<ÖQēcģÌ'wsŠ,ń°x\£a›9ō›‘ūQŅqÆuµSkė^¶ Lˆ,‘4Ė+'ée\ėÄ\ž½ļ{īŽž])IĀg6>ēŗŽ’ł$ųåµuź•Ņ 1Ÿ¼^–böcOƧ“[kA „ܱ×`˜$śv2?Å:}ĆDÕēÕgŽ2Ż(Q ½^ŸN·‹1Ó5OIŒŃ”öäxm –…Å}DoŠŃŽ,J`Œ”8J¤v•RDaˆņż=!R<ĻeīĪ"üā*k=A£į$ó!ƒ öF—ŃnĆ`×Q|ta/, S(6‘B|Ō3P÷ӗ‘;BܽmĢ ĘØOm}=ŽūżŻ^W›Ł‚\²W‚Ō-Aƒ1JŚųüć/’Čßüų›GųžKGh QcŒA)EærėĪ2“õ*•²O%UŽR„QĢÅks¬4[Ä:‘Źæzk…n%Æ8ė„­g?vōZ&Y¬n·‰#%Žė¦Ŗ››e?Š%½i‚(wR4:†~¤‰ęÄįo¼høts‰åf—“3¼öÜQ~żĮUę›Nź#ģײÄĀb[īf–&6ų~ĄÕ›ó<ūµ'‡õ”ĖeÖ[-J„R®Œō ̆†Ātö’‰’IÆŪåźE>ųā ó+=ŖµÉ¼é¹m2ųöRīä¶ŗńGRąÉxOZ E𗾐­Ÿ½/-,¶·¦¶jCvc°ÜĪ|ļŌX $ĆK£ „R™V+ęŽüˆ3UšŻDrfŖĮ‰£‡’iī±ęĢ„|rę*§Oå;Ɯ&š\¤’¬·:¼ūŁ%Žūā2«k]¤ćą:„j™J©<jÉ3A°—§&;QŌ'쇄TŅż.×tÜōņ\ Ē\GR+{D‘Įs/}ķ0Ļ=qˆ„f›‰J@9šhw{čČ`¼¤'d0³Å‹GŹq?čĪEńL^w†É Žb³y? ‰vØ’CJIs½ÅD½‚’’HkZ­6­v‡f«ĖņZ‹;ĖM®Ż^f¹Q®ŌQyŹ]Ņķ{Ķyģų‡VgŹ71νĪÅ+7ō.Ų~ ‹Ż"ųūqĶO‡„Jö 0T+5:go“9wķ“Ž˜®WųęKĻšÄ±CĢ-­ņūĪÓļĒÜłōxż…'YXYēÓs³||ī¾pčPĒQHé l&J¶_nÜ3·ŚŽ9ō:m\ĻÅqÜ»^«ĶKxŅ C¦j%MTˆÓ×t{‰rd²†£$Ÿ„Ӌ Dg﮹% {źŸ=:L*×QE8sõÕ/h”Ćz«ÅŌÄÄg?"ųĻæy—F­†rŻ~D»Ņ醓{!k­>””JeŖõZ>ūcTJŠ:µ{{‹ Ī·)²”ō¹”QbCŠ5ö:YXX<ŽäiąT§6R $2U•(A•Źß÷ˆcMv¹¹¼Āڇ—™™œ§Łź°ŽÕ8®CŲ×|pęĖ«mn-®³°Ö¦Z­ćØĮ@ޤŃ]ęõłČ²[ĪL?ą6ŸT9(z½®Œī8Ž|“Ø f3Ȍ1()xīÄ4ϟš¢ä{¹"ŅŖ‰ė·—X^kóγtBšµē×Ū KCīŪR ’UX\ėEJ9ch·Ūų®K¹\~` ŽÄŠHGņ›÷ĻįZH\åćł.®ćQ®VPŽ›4ķeJ'i:Yę½¼ÅīŽįfC:ŪäÓꍤhøI‹½F# ¶Ÿ$źĀZ%I4 ¦„D)†F­†ē—YiĒ<Ź•%””‰ā˜ó7V@*jµd–†6$³±ņĮ¼Ć™1¢ū½%;|Ÿ “qd" ūDż>^PB*gSq˜aņQ˜9•JcPĄSĒj¼śü Ā(¢f=2’åf‹·>½ÄĶ;kåćzžČqī;c ˆ…Å}óSPį5DQÄsOLāłƒE¼Žj1Jš>°)ōĄs©OLćūĮ`ŗyŖ’)‡H•5Ń%V`Ū‚ IDATÄCä“n·aP-¶½FB³ŚęŒ±6LÖ|–×ū(9ŠĆ·äĆĀĀā±Žc ż ¹ż” Jģ§ioH2ō7r\\ĻGĶt=@ ø³ŅF PŽƒ1^>ķ]#xęXƒ¹•±!Ԑ2Ųš“÷½ ÖeŸÓļ÷Žƒėś «›Ż|˜”ĮČF'’īE!ž™e~i—NćŲĢqœk:½˜^$)g÷ł1ļ` ˆ…Åö,$Y*$ģuųėń-”¹ģnŲļć{Ž}e?Ę)‚$Fŗż½E©vĒuÓĮ‚Ά>‘ŽŪ٤[! N°Ķ~ģCݰy d'SņĆs'|ćkÓ||i‘‹7ÖP Š ‹Ē3†3¼OŹĶ %0:¼Ø“Ģ q¤6“»aRfäØŌ›B¹«@ Aæß£VrYķDāĮĆ!“Ö Ąu i —›Čīn$£ ±Ž‰Ā(ż¹a±Łe~y[ +üčõgyśÄ ®£˜_jŅī…x¾›÷¾f€6»–€XXģ3GSkCÅ9|F Ā0Äõ¼m-^„$hē'ÕĆ(JåuMÖé ·@@²!‚Bf4›j:lHG»Å^pT3¦¦9ßé…1ž£č÷ć‘×ŪsgaaaIČ( )Nl*±•JĘI5€GÅ:Ņh£éõ#dZ¾,XĒh-ø<·F½ģ‚ 0$Åa§Ūs¾¼ÓÓ 09 BlzNrņ”“z ­uŚć”9qØĢłŁ%|G ”ƒŽ5«Ķ>ķnĻUÜZXįÓó·hu#‚ }2Rz¶WäĖ ‹ūr*É£*C¤5ß8}„bó°1×uļ{ć8ĢŽ¼ĶO~ł“õ o¼ö<Ļ=ƒŁ…&~PN/ŹĮś=>~K@,öŽh>*D$R“Ū<7ˆ$„¢ßļēCŌhvbęV—¹6’•ąSbBŗ8~}@>²ˆ÷”Ų.²ī^o c.±1¬¬÷ÓiōbDĖĀĀĀānĘ%d<&6tÓ½+Ā›?/ ~O NŖŃØś¼üµĆ€Įs\)©V<Ī\™c„%{ć>'sƁ¬“ģJ›œ|DQHÅLוß{åI¾łõÜ^XįĶ÷ĪqØ~”rÉć³ó78se×+į8NN@’ dŁ½‚% ÷y…”’?|v…c3Ÿńևgxé™ć|’[Æ¢ć)D޲ÄqĢĢō%ß§o4FytB9‰Ņ•ćyyę#W·ŁĄ¦Ķ£76ė±_6ŅACz^N ÉÉĒĆ|eaaaqõDÜkā{&g{åö2OkŠØ•q•BR,“J‚>Zk””˜“üišÜżc7ø`1p8D>LRb¦ćG­łĪ׏ņģÓD:¦Qńq2JIÕ*œ»É——oE,\<ĻAJ™«€1&ˆ¹~ƒ“·µ…Ž#0£%4I«…¤ÕZēśoĄŁ+·™_‹X\^ĒqQo+kƒ”†8ÖŹ ”‹ē łČÓ„é$™F†.Ćż¾–|ģ?›5¤'÷‘ÉÉÉŻī9 ‹ĒrCÖ@X%y~ˆó]ÉŁ« \ø¾ĻæŠŁļ £˜( Aäć„÷]uĘ蜏!ņ”ä#Š"¦kß{ł‰DįJ›üϹ…5W[HåŅĒĆ(×uPJ””BØLzx£Æ°~ƒ% Ū6ąÉˆćG¦¹rc庸Ұ°°Č‘Ƈ1Ū@č(—’ń_żĻöų×õ*3u™4œĖŌ`H‰’)“z×bY•%ū†±n Ņ‘EšÄ@@@H@ŽōņŲ¬•………Åx{ÆM¢Œ5æ“N»ŻCȁCļ:ŠOĻĪrõö2ZėAąGģēcĢ$v‹ä#&Ņ1½~ŸēŸœ"RĄå› üüŻ3”Ė”£pœd²ś@Ā_ČĒęĢŻÄćQ‚•Õ÷Ł€ā>¹ŽÄ@·ŪC‰Ńł§ßc½µŽ”ņ¾g€cp\‡ß½÷ēn®šĀeÖŚ!N©’d>D2¹5K—£?¶ĢjŸÜŻZEż„ ŽćZ½Ÿ !šĀʆ,,,,īŗ’Ž8ŽĆj«K/ŒØRˆDę¶ÕīÓģtQ®?¢4%ŲėˆĶ÷‡lO7ł¼1Jķje>bz½ĻšāµēN„O%ė>ųģ Bz8®Bʤä*yØ!µĢQåÅĶʤµŽcݹĶ&Zba±ć–/łŸÖš“‡k”JR ÕŖ•2Ż^;wīphfę¾² ICsņČӓĖüś“Ū”+U„H{>TQ*Ļ’żĒqбKæŪŁĀ-$RµD}EdĘŻb£©O£ķIµ°°°ŲźĘœFš„Pø®įźÜ_]žć»Æ”<—;Ė-žļŸ¾ĆT½‚Ŗ0ł|x’7ƒcOŁf̏¼ēC'Mēqó_’ąY^xźHŅkšVD4Ū]žįĶ¹¹Ų¢V«zF„J}ˆaĢFšĶDl–nį8.š¤t*ū½R„ŠēŪŪ3ķMka±=(%ø6ßężæ~šźœ>QE)‡F£Į­Ū·©!Ū*9š\‡Oæ:ĻĻŽ>ō«”+%ĒM¢éBäéŅŃAu–|<|$ĘXā%ü ¼­t¾ Fµ¾ŗd3¶õ}d׳…Åż[ĻAOˆiõjßr•ÕV—oæų4æy’ “pXXń™–3 †÷Ō‡E>LŽ‘2Üļ‘”^ÅDQD…LV|žöO_„Võ‰ •B@«r{©M„ZA*9Č|l ƒ^Ö­ŲĒq™˜œØ‰’‚PT ūā0oøÅß ‹]µwIT ZŸ`u9B)‡v§‡)e”InkjĘ”’\浄”ҦóĮPR ‘;Ń|æŻbhŁy0`ĻS~Ę͌±°°Ų‚Mх”H£Ø7&8w}…Ļ.¼ƒēyų~ ĒM‡ųŹäĻ}!=Xœ16Ņlė˜8Š(ł’ļ¾ś/Ÿ>†Ö­¶"Қ›ó+\š]äŲLÕŽIg…)„R2£~Ä=} ¾£łwł2+혒ųęē ƒ:dK@,,īĖBäŒ!w”R“Ūė<ūĶgév{ø®‡‚0 Óz~qWā‘„†Rąć:Äh¤„WEiɇ…ÅĆ% ;’žć#®£’̲`3ģŚ·° ”4荔HP™š‡FUŖ”*•äi5Įš _ŲĖ ąćģŠÉTŚ’‘‘(ŠĆ>ßłś1¾’Ź)„DqR–•‡łå&?łÕ‡ÜøÓ¤Z.”«ų~A9“Ńć¼?BHŠī,5éDm<4b ˆ…ÅŻ(ĒøšņGČp¶ĮÄ\ø2KƼžPRr}v–'Ÿz ±IT;{o™-¼5?Ļłėwˆb—Ą—ƒ ˆJƬba±ūk¾”Ü ŗk0{ĻDGƒÉ¤µSCęŒÄh4ĀH»ö-,6xĒi_@6Ó\"ŃŌYz‘—4'åZso²+$“ĶIÆātČą7NĻš­N`Œ! õZ•R’_½ó%Ė뇦§PŹÅqœ\5S|ˆb“żvlX·Æł»¾†ąI V6Ą ‹·kć•©Q˜TOA{µI«¹‚”łŚGłę7^bqi‰õV‹#‡£„ Ö"Œ1™4Æ·ŗĢŽ^ą³3—h‡ × ĆCiKÆ,,ö†x ­±L34Tt'Öał4†N»EŲėŌÓ Ś Bö{¬Æ­PkLŪ ea±łŽMŚ!ӊŲĀŚM?F{*ęŽ:¤BE±÷#ę•Ó3üąåSøŽ$Ž‡æŸ”’~?fi­K)PŹA9™ŻTńJŒ ¼¢•¼ĒśŚrž>a拔’ Te;ż–€XXܧ…0¤Ń‰T©ÆJc"Ā 8zdm “““A@«ÕJ’Ŗćȇ(!łźĀŽ|÷3ęWūx^…ÉÉ œ¼^S‚”©I5)±äĆĀb·ƒ ¤N€Į¤Š/ŒķėzõXĢ~H!(×ų¾O¬)MfD„9u„„…[é“f»ž-,ī¶ŽsīN"1;ČgJ™“5¾Ÿ{&34cč…'§K|ėėĒń<‡(Š7Čć:JńÖēēYļDTk)Q ™f?Ž! Ē}’Ē™½¾19“%h‹T“Žö¹³żmwYxC«-ż™1†XGČhérČŹj‡ļ¼xŠj©œŌmjĶÜÜSSScex…(„øqkŽß¼÷‹M˜ž:ĢōōŽć&iS••`„)åM$ņ,,,vv­&ÅČtźØPȈ>øĆbLQ°@ĒG¾v“ĀįFf0ńxąŸX” ‹1īūH3õ`®G®Ž%ČK‘¶Ū ±;¬)34iøŃ¤‰yīä4µRKģķ“ė*ÖŪ>=w“R„’O7OŖ'TaŠ-Ū&EŸĆ zš0ŁßĄ/±ÄĀā. o“ü cˆcMŌ]ēOOšśóO””ąŠŌõF}h‘;޳©³ ¤ąóóWøq§I­VE¦u”YźT¦ē‚ĮTlėxXXģžZOžø4±6¹4¦Ö&]Ū Ė;"y’0ÖLV|¾óü /?5ēØäIa×¾…ÅVI}qŖ÷Š"c8°_{Ę*Āq·VXYk'~ƒ’(„š=—…å?’ĆW“ś1®£ņŅ+!‡åvVsżV`K°,,¶`в?µezŌ¼ˆÆ?ó$%ß卅E¦&ÄqœæV)u×oŒ”^­P.ÄĘą ™ŽA½fZ‚nū>,,öŌy!:øJpģPj­ĘÕ¹&‘ÖCP;².Ķą½”Ń,5»||a‰•õ.Ż0DkƒR®­¼²°Ųb0a+ės1ÖŚæ’ä*aæĻĢd…SG'91Ó \ņiwŗ¼łĒóĢĪ7©Õj(åä=ņ€K@,,¶dŠŅ“gj“dÜ"Š4_]¼I/ łŽ·æA£^#Žē¤×ļćyŽ]œX^}į4¾ę“ó·éözR%%X©šĒ8ƒjaa±7DÄAÉsxł©Iõ ꖦ4Ū£ĢĪnźta„Įč˜nGóīēkH‘–=q蔵¶ĘĀb›dä~ž{8¼£”’RŠ CŗQB(>:sĻ/ަVńX\é°Ö©×ėI镓TÕė K@,·?Č_Ž €NäŅķ ~żŃč­ńķ—žÉ!X^]e²ŃŲŌaBĒ1•r™ļæö‡§¬wū\ŗ¹ĀZOšęös¤ĘĀāQ÷^ Ż łäājµˆN?FģBѲåzÄQ0H)Péē į‚“[M‚  ¹ ż^ŸlmÕžŗ…(e³8³Cā8®6TJĶNÄŅZ—…fĻó©V}„”yßG±ōŖxgģēõh ˆÅžĢk4 `4Ź+Sr’r«C‚^æGŔBŠn·q•½K$3 aƽų5Šw?d„ƒcė½-,öƒSĒpéf“JU¢T]Ü©PJ®¤A DŠĆóN©$ż^—RµśšM |÷Ķģš%"[Ē`Ą©”!;,¤D"š=Į…›«hc‚R!Ė!ӁŠb„| Öā~_‡–€XXÜÅ9Ė LLÆŻ¤·¾L$?żÕ»<żÄQ~ųĘk“×ש„iQ3fžĒć£5żŠŠZo²Öź¢]’Ÿ|¤Ķ©Wįz*-‡ŹŹÆ<²8T«ēÄgŲŚ` ¹XÅŽŪA‘e4‰Wļ”^v|EYāe!L*ešŁĒ“(¶°xü‚&›=А"FœŌHéäR»C³>ä°Ō0›ŲŖżėķXXr”øåĀDĢĶ7)Š•Õ>ƾp:M…Jzż>‰‰-9ļręāUŽłų"ók!Ź«āJ•D@luƅŞ®ó¬E BĀNmō[j($iéWłPē$D#ÓɈćäū™dZQž±„XŪ%!£*˜ÜÅH¢ bŒug3 ÷4‚ĄĶ„N9ľõ2««ėŌjUęęę(ī]ędļé:Šæ¼Ąśķ'\[č"Ü®—*`I6ÖaXXXģź:›Č^ ež‘(¾f'fó?{ÜĆģ [`ņ³”5”\Įįŗh¢Hu,ł°°Ų†=""łOĘ>D:+¬8PńAƒ"{ ›±°Ųźž›FžÖŗ13‡¦8ul†3—Æ1æč†=*Õ*FcӍ·čd„ż3g™[īräč1\å$éÖ“™l`xīņ•Ę|ŽŻō-,œ$&õŲF 6śĶĖŽ:ö‹É+Ų«¼ēĆ@l ՒĒw^8ĢüJ‡^?bn©ĶÅnR"¬²°xc°e»°Õ™'–€XX<± c •ĄćPŻ„Żķńł™«<õÄq“ÖL6›:&ŁĻb­QRŠ Czż˜ĄpR ļa)½{˜qXKH,,v†„cf¤ āqXWķ‹Ą`@Æqķö*+ͽ~ČRK³+Åw‡ óHÆæƒİÄĀāoĄ™Jž0ōBĮŁ+s¬¬®ćŗ.•r7mӛ(_%TXZZfaq‰µVČģUü †ICYŽp&†›aG¢QŅ1xc ‰%!ŪŪČ7“ lד)%KĶ.KĶ6 ŠqŒr\„”<ģ9%–€XXŹńń=…r\é1¾ŃµHˆL”,#_7˜W`ɇ……Å}sB9Zf3K"„“*‚’N.šØaYXX< ĻĻ•4å¢Ķ™ZXŒĮØŌe6JĄĀjEĢL5ųćǟc \»vė³³t; „SJJ—Wxė£s“ā2åś®ē£Fz?’_iB-¢„˜¤Ķ f£dgņ0ék†æƒ………Åż``Nķł 4!TĮmĢH± ‹ķ’zIøżˆW/Ų ˆ…Å8f>ŗč…ČŹ/ŃīVyśXĄ­łEž<žOœ<1†~æĻźź*A©”×FeäaµŁbq¹…Ōq•"4"ėū`#łČŒQQ‹_ƒ1iTŅt¾é›Q’™JÉ3!Ö°°°Ų>1 Ҥ4…ŅĻģļŁófș²¶ĒĀā~|ÉāJ!\Ļ{“Õ^n ‹{nĮ ¶WėxT—ŁłęVC~śĻŃétX__Ē“(ĮlÜÅ94Õąé“‡1F ”Dˆ¤tA •ÖQ g=›’€åĄ÷ p•!š$ǧĖTJ Ļ‘˜8 6p“Ķ‚XXXģ€=4Fä1™$Č!ó@ČhęÖĀĀbė0<æŒėy|å‚Ķ€XXlfF†’™< ¢XY[Įńk4œ§Ļõ7y’“Ƙ™žäµ—žŪš^a2?‡V»…1 P!‹}¢ČWĘõ žbŠ«»üÅ·Ÿå‹‹óÜ\lņßüš®Ļ­šĮŁ9n.ĘŒŅ i ‹mӎčRqNAfV,ł°°Ųį5÷ˆÆ!K@,,¶øų³”`Ś&ė Õgi¹Ķ­ÅuŽ’ä —n.jĶj®_æŽć8łĘ­‡'OĒ Źüģķ3„Ę ņ*2Km HČų |Š€^$'f|xö6 +-^ž?łŻ—\¾µ Ņ%(L&~Œ™……Å.ŪD)Ņ9EfS{iɇ…Åī ø¶“1>Øh ˆÅŽm^é2öŪ'›¬4 ż*Ėėė”Ź Ŗ½O:ĮsĻ<ĶŚź*Źń9vü8¾ēb“!ŒcVV×ųéoŽavnz}‚v柱ŁP 9>Š(ņ¾ŽŪĖėÜ|w©¦Ŗ’ń—Ÿ‡rµ’|ӔĢB÷Ā1ŲéϰΌ…ų”b¼ų…]Ǿ¶²=ńnäć ģ›–€XXlĮĪŹ°0É0.Ēq©Ö넽.‘Q,ƶ(ł>»0Ė;KTƒ€?żŽ7‰µę·ļ|ĢŅŹ'fzś0+ĶR ŒÖhc„ ³1[1J²fP#åJ£“>õ¾Ę-Uń„D˜ĮĢ‘»9»i µŽ“ń-ņ:­cĄ Ģõ1[Īaaq m§ &XXluĶ€Žc“R›™Œć>Ry›ģÆ&f|0֙% ÷pØG~D¤¤×ėā›6~PęĆÆ.ńo¼ČæüŃ·Ø>ųč+žéWo£‡Åå&’īo’œćG`∷ޒœ÷Ī,”PZcLŒ02‘¶Dl !Eć’e4ŒIs2”£†¾ÆH“2 ¢{y¾$ĶՅĮ÷ø»¹ĶKŹ\×O槌DLĶc …nańØB„£¢Ųž ‹{ķ:Žé÷ŗČ®ŗĒ«;›½ ®ė”«pjM,±°Ųŗ‰HJ ŅŹ)?XoöNH£ńևēxķł'¹vkžĒóĆæų>’Ēæ’'^zö –ÖY^ińÄńŗ½Ž‚v·£“LP‡tČF¬,3ÄLŁGAö2wųsņ1~Hį®FpŅļXoL!•ÄÉĒ;³Z£ś¾£äƒ ‹åQG®PŲ é›ģ›Ę „¤R›Ųö2€Öšµ•E‚j-f ˆ…ÅĮ7C¤€¤]A„RGE]Ä<’Ō1zż>OŸ:Ī“ĒgX[o£ęÓ3W¹2;ĻæõF^zöOœ4üĆÆ> *‚(F„SŠN¹[ŽUTž)üktßš¤ž0œw­ ˆń9ä¬ĢŖx^µNzƒ¤Li•”¤Yņaaqł‡1éŠ×™]2–„XXŒåźÅ2ļmś)¼2GK@,,¶`«<œ’„!J4×G¤Ć'ńĖßČēgÆrüČeOQÆUyé¹'yķ„ēh®ÆFšÓ§Žšćo>ˇnÓė÷Š®‡'eN2„0›Īčķ#K)E<4ņ±uR—M‰‡ÉŖ‡’Š•õ½H£¤Ł@B,,,”įĢĖD(±°°ŲÄĻxL` ˆ…Å}Y‰t5i/ˆ Ę­ņįłōW·Ø•Ź(Q+{ÄÓ„‘fīĪ_ž»„ē*&ė<×绯=Ļń£S|rī&×ļtčö Źqš\„Ģ#!÷#£[$<̈ˆ›:É÷ÉĀ¢) ¦ź'fŹ\Ÿo±°ŚEJK<,,,,,&lšĢ ‹3$ʤÓB  5I¹R'(W‰£ng­3{{…gŸ>†ć8LOŌŠZssn™^æO_ƒ#%ӍłŻē8uŽ«s+,®vč™ RÄĘĮP«DŖż}/£V ¶Ēü c żn)å&ß yfC'2,-Æ1U/ńŹéŽMś,­uķMgaaaaq@œ„Į¶ĒR*K>,±ŲOėó f዆dŠ.™ž§A „r‚ ķ–ęöź2ĶÆ®Pņ£ ~PĘhM¬õę÷A>ˆŃ€‰QĀŠ%œ§8ik½“‹ĘĀĀĀān{ŖÅž@q»Ņ`·/K@,ö›#8°•ĄĆĶč¢ŠT™’tRŗ#Õś¾ £.ķ~—~+ęóó×éö"&*7ÖhG7˜[\g¹įz>Ņuń=ߓtBJpŠ(Ęh‚R9镣LȜᲲ(ģÓn·p‡84;å(¶iÕĀĀĀĀā`±Aå:C>ƒ…% FžF$aGIˆĄ`¤HKŸ42(ėŅķE}ī“śh-ékM§rcń6AP¢>1…ćŗČt¾ˆéCfĪśA:G™×½ÉCv\ƒ‰¬—”2-ݲ†ŪĀĀĀĀā`ū –€XXģ 1éP!Ņīt“:Ņi6DHƒ”®ē”µN¦ŸėOEŠk朎ćęҳä“#."')ֈ[XXXXXXbaaIHžZMęį§ŁU$+) ]jFŹA©$Õ!ņģĒ@Ķ*Ė<*Nųę²Ąb„xˆŲY –€XXX2źʲȳ!!SĻJ„2„Tx‘‡*!ˆ|‚ł@B÷ьžo8wټŠ%dF,ł°°°°°°°ÄĀĀbÓY£DDHé Lž‘B¦2}%†āōĮū?ōy{@BDFB¤Dh=D<Åc·°°°°°°ÄĀĀbǜé"2"’ś×æČ’-Ӓ£ä÷7›āū<Ŗ™āI1#Ēž°f™XXXXXXXXbaq€œéńeSE2’8Ū"s!68ŽÅ÷xœ£’–xXXXXXŒ ĖžK@,Ķ9£ÓŹĒ‘ˆ¤Ł<ėū£mōßĀĀĀĀĀā@nüöXbq@ˆĒ£2cˆÄFˆ”Ć-ć²ÄĆĀĀĀĀĀā€@`³ ÷ė+ķž™:SuŠš)8sń{ I“>ä2DÖyxųhÆīĶĶ×ävĶC"±OxąC·ūe²ģę>ø)öÅõ°ūĒų»Ā<ĵ±ܦżįیīk}ģ‹‹ņæCRĮ †POÖIDAT÷ŻŽ'ūĒÆĒ’$¢Z•i‡mIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_12_dim.png0000664000175000017500000000753714632072346024706 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜ9$ ŽšIDATxŚķŻYl÷}Ąń’ģ.)ŠĒЧD‘)ź¢HŁŌEIŃᣲkŁŽs“iź“vą¤h“(<4EЇ-ņ”¶A $E" mڦ~j;±§v\7ŠeIµl]–b¤R%R¹;}°É:H.I1åīēóÄ]ĪĪóĄ/~’ŁŁā@>ėŚ¼yĶäöp~Ö Ļ=~ć³ §€‰@@€Ū›ō ‘€`@@@@˜bĄ€€ €€pēE€ @@@@@@@@@@¦N<ŁD€ @@`D€ @@@@@@@@@@˜N)§ æ]ŗ|xdr{‰G27?ÅĪ-` @@@@@@@@@@@@@@@@@@@@@@@@@@@@ņŌ¢¹e„@Īj?üTggMõ~SN-@¾kJÕl­Y6÷‡'Ϛ@ČÉģLēü_{ruW4…’õM ¢>QuOķŅ–żā” €œĢéØŻü;ė6GI9Ŗ‹«ŗjZ›_ų`Ņsˆ  Ą¤²mU[>·vĆdƇ˜@ q s6Vµ6>¬ß@NŠ3+ź¶<±jÕÄļ1¬śDåżU‹j^ģ=o '%™»ļrE«€£(4U.¦€ €€€€ €€€€ €€€€ €€€€ €€€€ €€€€ €€€€ €€ €€ €€ €€ €€ €€ …+åĢ •›>›ÉżuóK  %‹šę”_ś’ó÷XĀ@@@@@@ČOq$ 䌅®ūr*- Œ”tކÆ,ŲtķqͲźE„5õ«[ČNė$ā+mf˜ŠyU­züōźćß)­é?ŽłTiõѝƧ€ŪčŽ=ō7ēN\{œ.iäĄ+%įRļt.+YĀ˜ań¹_„‹×?Ó¼aÉCs҇_MÄÓłw˜@f¼C۳ѱ7§=dN<ĄĢVR·é+Eå{€Üž‘„fĶžžćZĀ˜į†Žæü癋I ÷†$µ„§ā¢Ö­óV†;¶øeČSuĖŚ>…“ū·’]ō‘·÷ĘQŁüĮSѰ  pfŠhĮ¦ŚŽńl™M„Š{ąŠK}‡Ļ¾ŻpwČÜ÷|­óń‘äd?‚Ń0c”VµnØļÕæLfGß®~Uė¶½ßļŪ·÷¹8Šnŗ¹pąT&>ytė_œŚõīæ@Aź?ųƒ }cå#„Іtcż¾}!D·ø7}AW*JĶN–¤&yuD@fŒ({š…ńl÷ŽóĒŽ>ßs»kēŽœzÆ’ķW^ģ[ ļ$³CĒo‰ūÄ®»Ba²ożu@@˜2qŃ솩’ŽtČ{+÷ŽÆÕ¶Mõ^]DČ{ż‡JēMłĒ½ @ŽėŽ9Ō?Ō7ÕkX–°ņ^ū§»~~ēTļU@ņŽ‘72a°_@ČQqy*,Ü" äčōރ/§j=$ ä$3xš•š–Ę-#SśĘ)(„„œŻńķÆlžrm»€“Ž÷f§ŖZŅ‹²‰²‰LŃä÷č>€"¾|ōD*3I”lQI!xłōńĪĒÓMożĆʧŖ–¼ń×Ćg  œ=žžČėÖo\ŌB‰Ģ¹Ć!„(„( SpW”€Ī 3ų“ÆgĆŹß8¶ļ• ć–ø<«ŗqc&»ō‘ó=Æ#‘Ģ¾  \>óóææ0°üL.P`¢øwOo}k ¦'@@˜.©R`·Žµ\@ČYE¶}뼓€³†äŹĒ¢¤€³„uėļr–Źvtv,r–ζ?8æB@ČYSъG£qwA@ų„eó×mĘ7w|lķ—Š«>ü¹(Ó¾¶m”€05+j;ŅóÆ>ŖĢvl+םéPŠādĻ{?ūīÉwÆ=³ xż£Ń8¾±P@ Z}ēźĒ›:ē¶-؜½(,kZ³A@UßūŻouļXö™öĒg×]}nV¦cżŅ¦±^é „ ŚšŁß !™(Æ»pśŚLQ·?œž§‹ĄØzŽŗqIja隇£ēāųöƱ„Ą-DqŪĀÕkGŪB@ø„’LūĘEó€œÕ†ŽG¢b g­å÷l‹€ŃĢŖ]ū‡ ]7D"^¾xå*`UMuķu+n|vv¦}KKŻ­¶÷6^B!tļžVļс’Ÿ/ K~#śĒxD@ø„(ÓūnOüŸßKŽÜā—Y·0gį⇽tę`ˆĻ‰/ļ5®“8J/ŽŅµmóīŖ[žŪ+M ¬acć}ēϼ÷Ģū?>×sjƀ0Nē{Žžö„ ‰K!œÜ™ėk  W.,v?e&z-Ć5€‚“ģ±Ęõėk–L|&€‚“ēßO’ļ… göO|Ž0¤ģŠPĒgš×M|P Źj+źĖ'žzKXźųĻūŽ\’5¶ĄøDń„“Y†²„@ˆ£Śöņ& GÅÕk¾Ōł…Ün ±„@øŌģæ{’Y '‰Ģ;Ļęü§ € EĒ)@@˜6®²©Ÿ8zģĶāŌ}n½éRz&±÷µžą&õĶ÷ ;ņ?ÕŁźÅ7’öü¬ƒoąfēŽķ~śü©DœĖk€ˆ’,ē×8mL(:N€€ €€š+“Ķ” ĄĶ÷lś“Ņł@ŽŅĶéƲźńnķ³°ņŻ8G…l“ėŸ÷’šā©Č@Qń¼å森¼iÓW›×^:ūy ÆmøÆ„l<Ū•ĶÓ”nÉeĻ–°ņŲ¢ę{:’ٱ·‹£3Ē~ņĶĮ£¹L&€¼µ?P™Ļ–5Kļ’³„÷%FrŁ»€ä­u÷“¦Ē·åP’¹īrŪ»%,€<µØqóŻÉģų¶½xņõo$²¹ķߐ—¢TۃÕ9$!×|@žZ·iQå=‚€ä”–śe«SŁ;{ Č;Q²ż”šģ>Š€ä®-śČ'Ze’Ą˜Zź–®-Ź\’LżŗP. Œ*J“=TwĆēYŲŽõGw?‘¬nkĶśÅsośW?Ņ÷nć†M_M¦§ņHGš«—®+¾Å’|¾ļPIŗ¤2„8šŖc @ވ˶ͻõo†w?³÷ŅĘQv–€pƒUk–ŌßīwN\ģž”jĮTĶ > O4UnŚ8k”ĻÓķŁY\·ņ÷BņhčŪoąŠ(jŪ6ōųŁ‹Ż+ī*½r‘=“HĪ™Ģ4bČ «V-nc|ŸĒČP¢°ō“U­‡_X÷Åāōk_ĆPĄź+¶lž=ę×A•ĻB%³›Ö7¬C2œŽ Oü˜–°f¼(jßÖ0ŽÅØŹęk’ü“aųr÷[“9Ŗ `Ęė¼kɂhŒł#šÕ²±¶óź£8 ļżąčėPĄjĖī½·tĢå«Ę®¶ß¼¶čŌ½cĒw'»% 3ZīŻÖ” ńXŪ}šÓĮSK?^ՒH„B"•˜ōǽ»0³•64GńŲ›%ā3ūŽüŪ}?!„8œŁ7ł ĄŒŸAFW\¼ņķ Q<ŲB'÷¼’_ĄØ’éMŗź #©ā†Ø,5~,„‹C»ŸMLĮ÷ŗ×ŹŖg•-XółōĀ/œ9T±8“Ż÷Ćg§bĻĒŹW|6ÉĘÕ!”•÷tæńW%„ēŽL; oÅQūoU.ųšē‘įļ†0Ü;Ü;U{w  oĶŖ­\ųįOٰē{ēLķŽ _Ķ^õd*łį§÷}sŖwo /Õv¬x¢“āßO¾³ćéńÜ+ĀéÄń½Wß\ŻŚ˜€‚’(]ņė­[æ¼A¤ļpvh|Ƽ0ņćć+ońżųēC„€N<Źēu,}“¬śźć”“ŪG³ÉDfŖ$ y$5gƧē]{|š„½ĻG—īĢoŃņ']p}>.ļ’QtéŽĶ ČsZŚ>UÕ|ż3§vѹķ£2ł‰/~ņŹĻÕ„Pādć֚%×?3œŁó\®{©ˆ+JĒ»­%,€¼PV_³š£ĻœÜ1Ņ'( y”¼”(=Ųķfī·ßłž=¢%,€¼pbūńq¶eMĖóCčŽ¾ėŁhX@S§.ĒŃHÉkß,*)*ŗŠ›ˆļō o$JÓu½©ĢŁKÓr}B@ņFs Ļ=ųxĮ»Įā)›ūžOƼŽEw“«U§rżJÕc«ÄV(­ćwą3bepå¢÷BÅĒ•ÄHŃį@ńüCOĀ/…ē½ś)›C?m=,®‘p^dꎹŸę½8:’pą“>e^Æ\ąœ„ęō˜=qCč_ęJśdĀ3½’½y’¦‰75¹¹fóž÷6ņPā’Qõ}=ū•Š·;e“o%@@€œ“ś'Ķź²,ynĻł75½¹ĀÉ_ŗ¼ēĪvćŚŪąœ [žųXŽÖÄß'Ļķ¾8z"V‰«}-z4ośŗ¤Cݲ;ö @ĪŪĀ”÷£›ĶӞ鿃ĢēGF<Ņ÷Åč׃³{„g÷œ$@@€œ³÷÷™=~·pWāGŪ“ž0ysāoÓÖÜ÷½Œēæ3žéĄ–kj|³R×H»ńĄ9‹­{E`VĻ“Ģē“wMŁś÷io…~=sOšsö’·čpą“Žy]‡–öæƒ@€\š1ryl•Ų«J\[9öś¤]ļ?qOˆpŃ "@  D€ @ "@  D€ @ ˆ@€€@€€ €@€xD€ @ˆ@€ @@€€@€€  @@€€ "@  D€ @ @ˆ@€ @  ēōM/&ęź;:å$×ķY¼ŠŌé^00>sG¦@€”¹īŽaėr¾īæä_Č Ōd_ś€„łkƜü\Bx×­>t/|lΤͩ?L^\“¢MdoFׂ'g _ ńį™ƒVLZ×9ļžE“7'’rŹŅkÖ²Ń(‰~½sž3 ‘=ķs_yŻ‚w‚Å3võūmųåaßNYœ’”šÅ‰ģĶ,,|“`[⇅%‘’fŹ/½*ž½?š—®Ó>[ÉČŁ0ä»#Ļ^yuČw ēmķ’³‚ķ)’5eĖĄŸ,,łēčĻEĻ1y[S~Ł:óõląsX8óщÆõūé¤Mż~6}GŹū“^ōƒyo?žüzŹ’k?qķŌžK§=yuđļ‹ēHžšÓČ( ŽY{Cœ'*łudÆšĆ~KfÆLˆģČ @ņi€tŹ[3­’Ņ™«z®šŽĘĀʉiĻ {§čpšhö†ž’VŸD*6N%ŗ22ē@š/½g-](@@€äų„ČތŽ“_œ’8’ÅżĢ:²¾’¢+E‡gŸ+Vąwż,xR€€ČńšPųåŃOŁ™õņØC¹›żą³Œ`ń¹ÄǼC”æŒfōžč _zH§)/äēlšćé;œm|Dß²•²dŚźčÉY6”€ų‡vö蜂ķż~}f{>‚Åy[S:pyžš>ó–.ŗŲćC€ @J9@¢÷Œ~jģŽč‰Xsö>Š·[ōNą“…GNóĪŲ“üūŌåS×$Dvgø Ąiƀć·Dā³ŽųLdk8°hފ‰SX"Ÿ[ķ(ŲŽļWƒ™ŗ¶ēŒGę%„·d—„𠀯š-X'Ko w›öČ”Ny.mŻ„ķƒžŗ¦ĖŌµÓŹbt@)HĆą’ܦCÖd_hš ]IųšOĻj6l]äę&ÉĶü·€8?żńĶ Qł[ī®—¶%ņuÅGBÖīŒ-­x[Ė›ü·€(ć*֊«łuH|Ö®ĢI÷O®T»mJµ½ā+×ķTĶ< —@€ō˜>’Į>óŠ–}UńqĻĄUį[ćĒLŖtgūn×T®]½B¦MĢp‰H›¬Ē ūĢ™žčWÕöućŻ}{W½«[·ėk6æŁ —Ų[°:N~lęW ©ēŽpGBėėomQż›kVŒ‰‰)g€K,@:ē?Yų՜xõlv…Ķŗ}ćŖėn*‰«Ė]]¾Z…Mo-wÕuךĄ&ōóŖÉą'§ÜŅl@jÕ»ŗ%T©×5”ZĆ^«ŌėҧRķ¶UĶ @¾üųÜČ®Ģv9ĻN=搔ĻL¬X«U°$>j~ś?„Ļ~\ar ūŅG=9jO›ģēóĪ4@%/˹ńīÄĮ׎X’¦Š·µ¬~Ćm@€œzõ#¼+sÄŖ±ŪZgmĖ:‹= źt›:®ZĆ^ż«ÜÕµż5Uj»’ @ž±ĪłOOOˆģĶ8ć} ‘}鷷ϚX³ÕŠ“+Æ©ģös€)E%R£åŠ 7ÜŁ*xUł›®3€ł‚ųĢWrŪęlŹ9×‰ĻŚ•Y»ó¤Ģś}ęGŖÜÕ5Į  ä '^„,É|¹Gįņłēc¤ÕųĶ‘šq#«Ņķ-bbb.3Ą% ‘ŻĒ÷tōžµ¢ØCī‹SśĪ[ņĄą‡óŸIY\°ś<^F˜}]ĻpIČʉI =8ṔﶉģĶčœ÷B~ī¦ŌĪ?ųdį»Įā¢wBGG¬Ī^~oD_—U«]zĻJw¶«½Ä, —H€tš“|ޤדX8oy4@śĢ+Z Eļ…Š§nļ’‹ŠóWDļž(MéBKĒ×é^ŠÆjƒžÕĶPę¤UĶ6į³z®œÓµąń™}ē-^<{š£ń5ņ‰{ū/µjŲc“Ÿ±:÷„”ę={ߜGęŸļ¹„iæęę€(ėr{‹Ū:Mz`aßł —NŁüMßySŸs ōį±™{ ųŃĀ#Ÿ}ž©’ĻĻ÷Ū±ą’ –·vÉ[² ‰E‹Z‘¶iśŽŠ’Ž“ĢŚ›ü‡„š–l€ą,7”;kGÖ ė w…ž8{čĻ'ĒGt_Čą‡óזĘ^€øÄ¤ćäuSĒ®td요oīmW% w?»f܎ź Ī:@Śę¼é2õžE“6§ü|ꛁß/x糓°¦ļ ż>÷õŌ¦,ž²&!¼+S€ @8·‰ģĶŗ2}S÷és–}vņUŚĘł‡‚G¤Ø$Dęģž¹čp xź¶ž’ÆŪō'f g ć_’tSyēü§§÷(\>ŲŖ±Ūŗ,]0{_čƒ/ۈ^ø+åż“^ž"@ œ–ŗ]źŻ0ä”Äe÷Mķŗ`ÜŚŌ÷Ę?›¾5üʈw:ē=13ŗĻcųć9Æ,śŪ>…G‚Ÿ:1B¢÷‚§„KV»Aó>YšNš“ļž=."Æūv|Ö¶¬“uCߙōzź²7 żN’„SÖNŽÜ’g'Čä̓’õ|ŽŽ.@ ePlåŲĖ£;g“ə“)š³“ß^5so胞K§>Ż&{sNBdSNtoČ ‡óžYtŅ©XE‡CG³^}°Ļœ‡‹€/HYŠ}ÕčĮŒ{*šFžĮ_œó†>м:ü½ö¹sćĆ;2‡­żVBdWfBä­¬1Oß6sOŹŸü{fģNł]‡ÉÆL N\łø:8»ė£ó’zŖ[Īӟ³ēļĒģīKOˆģ9~ēGūÜóf¼)żHI“¼ōÉĄ‡¢+&gńY»2  )W©\¹qOõ}ūÄż'›¾+åżų¬·²Ž…ABööš±é;ļž%%æ÷““dÖŽŠŸŅŸz¤MdG֙DG«ń›#͆=i<ąŃ̚q#śTØ~Ļ5ę€(C:e“ė”2æūC“_OśÅ—Ȝż”:N~ńųńŗ—åÆ æ2ä;SŽHżqŽÖž?;UøDOČ Ż?oÅéĘGƒÄEc*×ķT+&&ęškŖÜY¾rŽq%Ÿ_fF€2¤|Ėņ1Ɩ÷]]t(pōĖB¢čpšh÷Ā՟^2=ŠwŠņ óßLżé©Āć˜io„üfČŹČ+¹›†|?mŻų§¼ü„{BZŒY¾-alk«Õ½Ī< e\£ū6Éx®Ļ¦½•ō‡“ļõˆ* ˆļ%Döß÷=kÄźģõ’,@޽ėŲē£žŹŽšeŅ(“t|LLĢf€(ć¢÷~ yØĒĪ“ĆaīŪ”?ēlņ½Ģ—FNZP“ģųžš¶pæ%sVĪŲŻļżÓ c«(ļ>IZšĄ’“ć#nĀÖp–CĢp č•×92qcā/Kį³š8ų8}]Ņ”vc:LˆK{#|b,$„ßČ.x+ō»Łū‚žøi=ŗjņ…č'(ܙņŪ~ę­łĀ…‘}鵌¦¹ŗĀ-•Ģp‰ģ’h;:.u؊ū6Œ{:ōj—¬}c+Ē^QéŽ6·~!@"{3śĢ}šžö¹/ä \–·6okźOņ·üϜżrŖ™µ'ōĒ>sē-‹ĻŚž¹Ó°ā3wdŽŁ5/£Zƒž#æUłŽf€ø„Żš%ņ÷•™©Ė§=5žŁq;F?5žĶļœzõcaōHŽ=ĮG?™¶5!¼'£å˜õ9õūĢ~Sć@“oU¾½ņµ7Öæ)&&&Ö3@€\Ņ’pŠŁ—>į¹±{Ž­xĻ?<ŗšŻ`ńģ}”&mJżQĪĘĮߝōśļGålö/–Ķ|<.żpVƒz\[­^Ī |N„;Ūßö…‰ģ͹:²aīĮĄ_ē }TšVŹoŗM_5»SŽŗ‚¾ó–<}›UļŁĖ$„·‡O –ĻŽŚ})·Āõźx¶¾$@Ś}.@¢÷ lÜÖ¬—‡½×£p՜ĪyĻÜ7ē”§uÉ`d_zĆĄcÆ»¹^EĻĄ¤v»ZŃ#r?·q<¼#3!¼+óT”Ń|Ä ŁĶG½œż÷½"»3ź÷™7¬f«a Ŗ7)ļ¹ @8ķłgnm=:P­AÆfw'?4”鐧³%/ĖłV„Zu=O’$@Śžq€4ŗ6|åµU®žjUā›å®.­g €ąŸŖ\§Ćķ§ ę#_ 7HŗtnłCnm=ŖkIxDš¤®ß;āłÜŖõ{Üķł @8/ŅrģĘģnļó—Emł›ļ®Zņł5j4½„ä敞€3 ;O½R£ÅŃ%”q¹ē€༨R·ó§ ø“7²$.[Æ×¬Õöntu…[®$Ī~¤n§Ś§³ ½ÅØWĀ÷ \•ućŻ}»•»ŗBUĻ@©Č1%¹ŖüU<;gž¬z]ļŒ›šęiH\Ś™5ZM8¶1g ]Ī(@¢ZŪ”Y«MŚčoU¾£‚g€ T$źī”“ŖÖļ^Ū3@€pFŅ:żĢ¤Å˜õ‘j zu÷V,§­ź]ŻźœM€Ü;āłœk«Õk\”z“›ŗgD€ @.Q÷čŅ“`{š7ik 8šŠ˜Õ Ļ–DÉ ēõ›}LĢ7īč˜°€øDU®Ū©Z“A‹rę žeŃ{”ā掄ŠG¬ģ³å<…Ēe76źSÆ~ā‚Qńoe Ą%č†Z­oh”¼l\›Čތ)[R|b€d>|»Eź½5ĪåĻæžÖę•no—Ń­~ßłĆ[ŽŁpFw‹@R”FÓņ ’īóŁ_ų÷„ēnōƒdä£ĮUēśv«ŚsGŸé…†PĘDļ⸫ϼæHpćĹ‹…GBÅīļ3ėāćņ;:åZglĻ €KłnLLlŻž…ƒŪDö’Ė~ņāy/<<¾ś±ąŻ`q·œŽÉgū՛Jh¾ķ ńŃrģkį»SʈŽR«mzÉ?o @ŁrwvŅ’Äcp£Ÿgožķcń1’PšÆC—÷~µZćÆ?›×øīĘś×7üŌā£ÕøMŁ•ėvź~mµ»j4ńBvt3śÉ @ىoŌī41”Žż¹;8 =]ń8q’Ē„µĮ±•ccĻęuŹßŅøjóQ/ENČ±ąi1f}¤AāĀ1 į=ī@€”įųøāööY‰_¶ā0ų‘üg&mNłł‰’·%ōÓ;ŚÕ*–ÆuYĶVĆ{ĒgīųōµČ8ö¹= €²—ßÖf|ĻSE@Bdwʐ•ŁÆĢ?j¶Ž1nĀÖzn|֖ģ¹żŪ&ō;NhßéL_ÆBf•k“Ö->sg¦@€\ZńS£Åą6­Ņ¶œÖ==g>2oĪž¤æ.x'X<{_ą/w“ļŁ§Rķv§½R£åV͆­Ė:Ķå’0„2wdF’ŒčG€øHÜҬ«Vć6ö%€'æ:¹mĪśÜīÓŸÕuźšéŃż͆®Ķ¼¹iJ»“Ā&¶D…Øņ7ß]õW^SįĘF÷ŻÓ(“tÜé¼N\Ś–ČŻ)+Ņ$Ż?ŗN÷‚¤ŗ=¦$.=¢·AŅ¢Ń՛jw[üŲöÕļŲź†Ū[W0KĄīę&ÉĶZŒYŸu>ŽU #¢›Ų£÷‡ÜŚzTŪś}ēh1ꕉ-Fæ2±å˜õ9͆=łō-W_²į<>kg꯿VLˆ†Ę#]j“wS椆‹˜ĖOŒšJµŪÖ:ńē@€\Jž‚wóQ/—=Ÿ®XLx3|{‡¬¤ŪڌIŠÅéüžč÷Žx!£zóŌø’ØøŅ\ eŠśŌæwųsē->Žóō„­ŁRæŸŁõ’ģčI[u{LO­Łjx››īNl`&€2ŖZƒžw6ŗ6ć|ĒGūI/Mžs ųē…GBř/|»[Įꙉó/N^<÷‘žKg­ź6}õĢÖ™Ū²š|)\«mś}ŽF€(ćŖŌėz[“ĮOž÷ųˆöŲ¤N¼!=zJV4F¢ŸG?Ī;üØ`{ņÆ;Œļ4Ņ, e\åŗŖß3pÕ„Ņˆ¶7gīLłÆäTr7†¾[-Öź ¬ŗįöų÷{8­4ā£Mö¾ō1k2¶œN|DMŻśElåŲXs@€”A××l^¹Qhéųó‘½=g®œ›õņčƒ Ž ~rŗR°-ō«’¹Śl e.>ī­Ų éž±ŸƖģųšŽórņU`įęnņݢÁӏcfķ ~xM«+› Œ¹£Cøg4:LzyJįīŠļs7 śaBd÷9mBæoĪņ³÷'’éLĆćø#”āŠÜž3ĢPĘŌī<éÓi7qż¤é;SޟųŚąļ%Döœu€“Īz3ž¦pgčb+Ē^oF€2 ŸŻ:žf8!¼3óÜV?–-ŒÆ{¦Į±šŻ`qÖ É{G­ >9ī銫ĆVōy®$@Ź™ ŒČ9ĖŁ’=ķ­žæ:ÓšČXÜ=čĮ¾‹b«Ä^i&rZR–Ģ~ģŒW>ބР»g™@€œ‘žKg¬:ÓՏģWC’§w~÷ Y @Čé”÷ÜŌÓ=żjā†äļōœŅ%µ\„rW™@€œ±v7Nœ³?ōĮ©ßn,ž8šÉ¤M”·_×ó@€/•Ł•Ł9õ×÷f¤æ0fļ—ķń˜śfņϳ_ żŸŽy]Ņ›&ßÓ(¶r¬UĄ„ ķ&®Ļm›ózĪ)¤$.ĀÆ oęīŠ:ē?[šeæ&uyĮÓ Ž ~īÖó™{BL} OQĆŽ«yÖbīźŒŽ€^°½ßÆāĆ;2ŪNܘ›Žõ¹»@ŗM{bĘĢŻ)’3{_šĆ®Ožųµ¶7gOx~ģ®ł‡ƒG?·Ēccč»mG'Üė @8®N÷ĢÄ)o ų9‚ÉŽ0ģŪ³÷%0į¹1{‚÷-ļ^øzV42²7 ’v4*RWäÆ=1>:L~!/wÓąļ}Ł~‹śĢö| |Nż>B“·¤žxīä£į0ļķĄŃō燼½Ķ<’́’™Ł“ŃļĮ¹+ĆÆŒ:Ōeźŗ‚ŽS^ž2fMÖė‘WG½3gčĆSm8 ¾ åŠ#ę¾ųkĮöæ²2ļŁ„šĘœ6ŁÆē„_~dųć9Æ|~£łžŒœC¾w:Ēģ _p[ĀŲīķ³fĪn5恼&ƒžČh2čÉĢ&ƒŸĢj:ų©æņtøé5‘īSg.Yšnš“.ĢYśN‡ńmZxĘžž 3&ę%®:ÉÕ'»¾ęõÕ2Ÿ<“›Īgļ~0tyā#ė\ū-ĻĄié3­GržÉ’y&ńqā= S¶„ž½w~·žå[–÷< œZlÕŲr¹Æ%’lāćDó’:žéĄėĶRšU÷\ œbõ£ūÓŻ÷q: w†ŽOšŃcøÕ_0ņ±ąĆē+>Ž):::ö‰ąĖõŗ6Øč @ųT‹Ō·L~=łßĪw€“æ5ł?zMé–čY @.qõ»×«œ³>ōK+>Žļ y;ų—į+«+Žyķ7=wĄ„øń¼Jģik’–v|w$T<éµäķ”ѱē€øÄtœŠ.nĪąŸæ²ł›9B z°ļ¢r•ŹÅšą1śńĄ _u|üżŽ`qä劻 £› Œ»³SŻźÓw„~ūuČ13÷$’>e~ļ©Ń·ƒ™   ŖXēŚoåm žē×ĒWCŽ §Æ īŗ'Šø–ł @ʘ®‘ŻĻ焃ēĖō”ßg÷œ[9¶œ9 @ʈąģyE‡C½Š$*F™ĻĘ ie5P4Kn7ņŃĽ#$jÄŹÄēb«X @€” ±ÕbÆČz1y’… ŃS²Ę<x­Kø]ßŲŹ±—›ą"7ö©Šój€St8t4ņrčHæ…}&™ą"U­ń×ī ż÷… ĒLŚś‘•ĄE*z yÖ ”ƒK€LŁśÉš‡+ŅÖ$ķ* ‘ f€øČ„f÷ /ŗ£cŚöŠÆ JfõČķ”Ž®kóĶšŽxĻM·–«TīŗŲ*Žz€øø6ŸW޽:üRą»āŖGt„£f«õ„ ,m@ŚŖéŒ=I’[ōNš“ k$XÜĮ}3ĶP†”oY>¦kvŪi%ņŁ_ž\82m{čŅŚ¶3'@ ‹»oŹ}­ļīģūќ/Ø£v·ßo> Y3³@€”ik“öDßņ=ijīą‡R€Ģ=ś0õ> £ūUģ@€”÷z&kß?NŪ‘ō§ł‡ƒ_hҼŒ^:ų«į$®1/ĄE®jĆj7 ]Ž{óŌ7ļēo žb΁ŠāÉXį—B‡c«Ä^af€‹\¹ėĖ]Ö8©ń]#ķuhžįąŃ źmXCĶŲüĆČG“ÖE’=Ķ PF$Ķč>qŹ–ąĻ/”Ó°fģżī¾©]GÄV޽.¶Zģåf€(c⇷j;{_čOB€ 8°ÜL e\ź’¾ fīNžļÆ;@&nżKŪ±mī1@×srפü7ƒæśŗ#$}]h»y @.}§uO‹ƒūuȤגæ[5¶œy @Źør•Ź]y9éĒ_ė= ļ‹;„·ėf€2īŠkÆølȲ»¾ĪS±¾,ī>±S¢y @.&$‹>łŚäH°ø÷”®Ģp øņ¦+/ļœŁ®_į®ĄŸ¾ž ÷)č>Ä, —ˆņ-ĖĒtĻéŹz1ōöĀÆxSzōõzMé:Š —˜Ų*±å†?’ųŌ܃”?e›ŠK¤ēä.ŸČß~|£AĻśĶJ>^]ā2s@€”q}¦u’ūZņ÷–āęō9ūEW?¦lōo=óG®ØßgސI‹Ę4 .I»gŠć¹MRWgÖķ1-µām­*™  ģƆ\9~Mąč&ńó½ēcĘī”’÷ĢØ½ĆVeæšŁŃ&{ś©4Hŗ?­ü-ėG—FĢP–#¤jl¹‘%½“ąŻą'’((ę |4żÉ¶9o†{@@€€@€€  @@€€ "@  D€ @ @ˆ@€ @  D€ @ @ˆ@€ @ ó@€€@€€ €@€ @@€€ xD€ @ˆ@€ @@€€@€€  @@€€ €Ó’†sY‰ĖĻVÅŪZŽ*@ œV|ÜŽ!kT£ŠŅ“³–üŠ„„šī €ąŸČå ’ī÷uǃ@€@€@ Ny/ä÷šłš¼6Łū€Ņ „ČīŒü7ü|ž”ąŃ®O  „ø²/}ģŚ“m“6 ś×¶9Æē „æ$²7Ć 6” € "@ ä”"{3ā³¶e „ ćÖ¦m›¹'ł÷ĶY¾@€ @(ÕIaĢŽ¹ƒIœæä€ t߂Ž•Łnā+“¼ €Mčf € € @ ŒHż¾Ei­Ó·e €ąt$¦JŻĪµŖ5¼ÆĪŁŖZæGėø [Ć@©«X+®f\Ś–ˆ@€ @@€€@€€ €@€ @@€€@€€ €@€ @Ģ @@€€ "@  D€ @ @€€ "@  D€ @ˆ@€ @@€€@€€  @@€€ @€€ "@ D€Püwø<.`źä²,›ź€ķČū¾qäŽ{ī9ż]½ł½ …B.—{śõF­5±ģ¾µĒķ×kj'¦’%X@Ūär¹Ü‚ŻvO+ģ],ž’ųH)„bw¾oĪļM’Č©WżÅÜ_ä æÆ÷ØŽī7Ÿ|Šž½GõvGĻ Ärh«½Īõ¼mįQ¹óü¾Ļt÷vŻx[½Ś\7>VżõКźu#Õś7~uĻO ¾÷ł³f÷¾­Ųė)Wžæ_č Ż“b]eEÅR-Ų  #Nŗāš£vŁ£tEW!ßæé¶F£•=¹|ōšéżŻĶŚ©gN”šō¢Œ,Kib“ŚŗöźG\ū¹ūք tœ‹Š€Žh„l¢:ZŖ0³»?Ÿz-V–„Ōh4cƵ»_¶ū¬#[­VjÖ[é·’Ė„Ōl¶–‹Ų~  ķ^tŲkę,˜vV”+7|¤¶¦^k®ĪåS%kfÓz§wļ;mzqß\>„B>ŸźµVŖL4Ro_1WĒžz¬ņ®ōĘ©ž €N @ŪÕĖiuĻžÅĶfVQź™ŸRšæÉ.’u±yo_1 WÓųH³ņ䊑…wķķ±Ó‘Ü h»oüšŗr±;?«ÕL¹-ļR³ŽjüšĀ_ī~Į{ƽ¼Ó³SK€ķ7-eł\.ßl6‡·f÷|±P{Ց ŽŃūņ^ßM`;ēh»ģ‡Yu壞xhŻäO[­-?ł¼fWß. fœ{ÄG÷^10uŠ{ż]‹Ī½ćƒėž’ūÉńś/ŸkæźdcåŗÕćēÕĶ_ō÷Ļ艜ˆ'@€Ž)–³õkĘ49^æö¹ž=VģŹĻŖüūW’õę?ŗüų› &@€Ž) ”ņ/ß«tłœy}ĪåžżzōB1?}öܾw”Ėž|;tT.—ėŽŅ>}Ó»ŽzŹ÷žDi “UwĶ^ŗrĻu:ą…:ń;‡,ŲmÖUŻ=…¹[Ś·ÕŹŅŲpõ{åõ“gžó®knŒ˜ˆ'@€Ž8ž›‡øĒ>s~ÖÕ]Ųy«Žš›Æ$µjceyCåÜŪÆ_qžOĻøw¢ƒ#SĄ, ķ>xÉ”»ĶŪ„’c]][)„”{ś§»·ų²³z>°ū>svķ܄ĄT @[•JiĮn3?[ŚyŚū¶ī9čĻŌlfõ'~ļ×?pż²öO·mJ„¢ėR ½,ĮŚź„oöū{ģ»Ó-Å®ü“ē󞱑ź­_<õśƒ§ā®XvśĢŲ÷5ó>99^æeb¼žäĖö(-Z³räÓß:÷ŽK˃e_š  ŠS=°}( ”ŅĀO ¼·WĪ9żłĘGJ)Õ*Ķ„ū¾f~_Ji¬ćmVi T|÷ Æ=šÕ NļŸŁsdJ)5­T(ęÓü—ĻüĀ{ćn’™RŠš¶gĪ€mń”KßųšŻ÷™sk±+æÅŪīnNÖŹR„ŅX99Væģš+śŌm.«µkĘgsŠq{õż?ö»dĘģŽæĢēwµU­ŅX56Z»xdØrĆ„g߾ęxaš¼œtŇ ł¾ū–>yó^ģ¼ļ.Ƙy^_÷Amū€,„±ŃźŹė+Ż}óW’ģ¬ū¶éŽX[|äQ½}]‡^šé›>ńl˹J„®·üÕž öŚēsf–zŁŅõ*㣵/>ćÖ×>žż'+Ūö‹ Ą6{ļł’}—ż^7’öB!?-˲B±˜Ÿ™{–³ķ29^h“\¹lżSWŌŖĶśŒY=ówĒ­åĮróŁö/ ”ņ’óó‡ęó¹YgżÆk(–›l/žš©ƒĻžŪ÷¶bqó÷äɲ”jÕĘų]7=±ļæue-Ų!¹ °MJ„āŽĪż^OoqA±+?»«»ŠŃųH)„iÓ»ö™·ėŒŁē÷ē=šŖ×’Žż»ærĪM'~ś —–J…ēzO>Ÿ›™Ė„žy»ĪčŁt[y°ÜXüµ{ŽÓjf›=«21Z»cÅ£CoYõųš1sęöķ֎ßvtĪ€ŪäM'ŠČ[öüi_÷Ał|nŹž™™e)MŽ×ī©Uš7=¹b䢻nzā”GXWO)5SJ­…’8šÕ¹ ś?X©4ī­U·4­•ݽÅ×·šŁS¹|Ś)—r;ž®?-óÓ7=v³ŃŖ U¾üą]kžyń)K‡ć;Ų~ `›•J…“>{Č¢™³{ß=Õ³¤”R«•„F½5ŚjeƍZóį”R«^oöMŒÕÆčŸŁóŽž™ŻŠł­¾ūēųhķö;åŗ?tĮ9“Ÿ%XĄ6+–›­f6Śj½8¾Ÿēó¹ŌŻS˜Ń;­ų²žY=oģŸÕsx£ÖZrń·žóųCėßyßŅÕµjs|k—Ė„|ņ= :Āš¼|ēĀ_|xķŖ±OõĻe§łÓOū»žć/U&µļ]zß=ĶFėæ–RmnH­Ś\µzÅčūžėwą… Ąóņ𬨯üÕš¢z­92Õ³<›É‰śĆåõ“ßķź.äŹƒåŚ7®|õŹĒŹo’ĶĻQO<>üēO­ū·“IŒ4­ńEēŻńĄŌL Ū?OBž—Ņ@)—RZ»÷;_ÓÕ]xēTϳ©µ«ĘžiŃyw\S,§”RŗņŌ„ėRJWżv{i ”?és‡|hÓēT+k6½m/Š>.B¶Ji T8į“ƒĻźķ+Ī­V›twž(ŸĻĶéé+ī×ÕU˜3ÕómŖQoMnxjü’|ž­?ś×M·-üĘ”ī¼K’‡ēĢvB.—K­fVÆ×›å|>WzųŽµÆŗųø–MÅ̰#pŲ¢÷_tČ_½÷£½~ś¬ž÷ōMļš7cŖŚ Å®ü“,„±M_/ ”Š?ó°Å]Ż…łÕÉĘC½}]ū4›­ę¹§ż|Æ·’Ķ\łõ{¹ųø©˜v ®¶čāްØ^m^ÖÓS˜½ńė/ö…Ógt’õ~ļ~E×&/7õÖŖŃįź„Ć*_H)„”K…ŹD½ž•cÆ½Ł­w”³°U¾}Į]·/dčĶc#Õė'Fkw®_3žĶzµ±vŖēڜžŽāć#µg¬ų(–³e÷Æ=vżšń/U&f­,lØ|%„T›¢1a‡"@€­R,§ņśŹ?žĪƒĒ¬üÕšG{¦u½¢»·8÷·Ū³,Kµjs“՜śĶfVĻZY*ņ]ož‹}÷Ütū¢ææyłż³æ’­ūo«×[ƅb¾č¶»Ć5 ĄV›œØ’³W^3svļėņłgŽ>jr¼¾ģ¾„«ī’śł_ėŸŁó;_śCeYqhCeI«™õõōę>×nÖNŌGĖ•«źµÖ]‘ćĮŽL€[mńÉ·mxϹæ}æ×Ī»²Ææū M6·Ŗ•Ęźz­5Žjf)_Č=ė1:©Õʲ‰±Ś’‘”ź·F‡+ėõV*r?מåĮr+„ō7#ĀO€Ū䲏ܼāØÓ^}ŌĄ{üG’ĢīCSJ©Łh5&Ēė?(óėś¦wķ4ń‘RJåõ“—œ’æo\h9¼x¹Ųf?žĢŻėļ½mÕ1Ck'Ī^·zü¬Ē~¹žˆ/’ĖM'/>ł¶ućõoOÕ\¹\šāęA„@Ū”J¹ž'?韣sxäēfY–źµÖšc®’“‹žöŗ»#?Ų6–`ķŌÕÕ]Ų?źĆZͬQ­4Æ×šĖ—?2ō‘KžüžØĻž“S}r¬~sOońĻ#>lxhrńu’łč߯·ōÉ  / ®ڦą„C€mÕÓŪUI¾ Vu²±ņ׈޵čÄ›Ėż$ ŻŠVĶFė‰ŽŽ‘+õv§ņ­Ż…®įpäÕļo]}cs¾}Ķ@X«tT¦‚h]ˆr#ģ\w{*™+fūvÜæO¦ƒU»æŠķėµÅÄōČžń©“?ž,öm]ŪŌ1hš @€kŃōéƒĒĆ0œ½x»cč¶ĪTTÓ£?YH7µåņ­«Vŗ×Ļœ™d*ߞŲõš`O$fƽ0qōæ_‰NYˆĪē• 2я.‰d¦¬–g–^5™]:¤Ų{]1‘·õj,ß¶*:8‹'Ruąqi|,‰‚ 5І™Ł3‡ßš= ¢JX˜8śÜėWqå÷Ś‚£§Ų»iŻ™×Ÿ~ņģ›’9¾ņęϲZž~»Š¹®oajdŅ#ø½žō—m½¾÷;7qüt“œ¾dėÉ ė‹¦ąCqįƒė©0 ēMĄ{ECG“̤›:ڃt5VĶĪWĪUŪ‡nkĶ:ŠA<™ k•reajfīģ±ŁŁń7—Ž–äŪV&J×÷4u¬Ź:;‚D2¹ķsßHĪž=2żż1“š.ŁŁd¶ŲSiüŲp¦ŲӛLēśóƒŻÕłé ¬×¢:)± \ƕėõj%Ńŗjg²^«&āÉtŗ¹{C&[Z1Oeė“o½X.O†a½Zž=e² @Ž1°ėįÓ„ę-=khK$Š3‰t~< g£x88īäįÓÆ}ļ•jyzéķµKæė¢ ėļzōį¦Ī”Ryz,sģ?žśń©ÓGMĄOI¤2ŁÅ©éŸxį±×¢¾˜{?ē,}¾£4°£«uåĪõCw|u}‹‡'^üūż•¹sóÓ£?7U ļéŲ³ūĢ’]ūÖū:~Ŷ{oŗćoŖ•g'Ŗ‹s‡Ļ¼ńo’8{ꚣ(^.üīĒ7 Ąņ?“o’Č«Oķ‚cęg×9¼§3ÓܽõÄ’üĆÓ¦ąYœ;7s„cŗ7ݹ¦{ó§ļœ?wü-Š0;ÜZč¾eźä+/æżĀ·žÅ¾a( @–_׆;Öd‹½»Ļ቉£Ļū<€† kÕÜŲĮžŻĀō˜_?ŠXgķ;` @ @ @@€@€@€@€@€    € € €€€ @ @ @ @šĖ!‚\†ó& !š{6ä3…ĪžRß¶]ƒ{’ Œ¶3 Ė®Ų{]W”sxĒĄMæ¹-[ģY?“oŌT@€,«¶Õ7vęZ¶®łųļm(ömMĘ)o»°üJ+6÷vo¾ūŻ?ŁOekŃVŻT@€,› āђėßõŠ–Õ·~éśŅĄŽd“U3 WŌ9¼góųįg„aXæ<4.īu ß¶2Sčj϶¬č¹īž?]‘khɖzk‰Tn)ų+ėö–ā‰Ō²¼ķŖ^)'N½ņä³óēNœ1a ĄµĶaN_r»)ÓܝŠācĒŖŻ¬»šū€ųłu¬Ū»2Zö:×¶d ]ĮŠķ_łlqŖR¾}u-žĢˆ ˧›Ź¬¹õKō]’¹ętSŪBėšŻ™ ˆūj] ĖÆgż½7§›:šŠ½›ĖA<‘޶BSЉT¾ZźŪ¶` @ @ @ @šÄbŁboWēŗ½ŁK·k•łł‰£Ļ€e“)t-l¼ūkw^¾?qō¹‘hyĢ„@€,Ÿ ˆ„ņ­‹—oĒ“éšį€€€ @ @ @ @ @@€@€@€@€@€ F@€@€@€@€@€   € € €€€ @ @ @šŃ45²?V]˜®.ē}ĪOž\4Y ?åüŪ/<ņĢ_ż«I€ €€€ @ @šK-Śūox`ĒrŽeµX_˜™¹ŅqsgM™€ŸĖüä‰Ńƒ’ņ'ß6  € € €€€ųa­’‚ ų>­†a8gb @>°¶Į[śnü'~÷JĒM¾õ£SŃņMš„r„ŹŅåJĒ%Ņ+¦   € € €€€ @ @ @ @ @@€ @ @ @|ōUę&+ђ1  wźåśöāÜÄ-¹–¾žX,Ø%3MM„ėÓAMĄ²šŁ?-?øx;[ģĪmųŌ×)õo‹›€†Z˜ßp×£#Q€ō™€†›;t¼sżā@<™®›€†:wģł£+¶ßæ7׌æh @jnāųŌü䉳(@¦ ŃÉLA|€h¼B×ŗęT®“ōU5  Õ6ø{]®„_|€h¬ ’›>óg¢+† ”ń‘Üóå;[WßÜŻō¼ @±•7żÖm½[?3O¦k& Qńōl¹ggļöĻnO¤ó>ū 1šŚW÷|łŽīMwu¤r-ā@ćt ļŻÕ»ķŽŽD*ēmW @«¹gćńąC$’ž‹@€@€@€@€@€    € € €€€ @ @ @ @ @@€@€@€@€@€@€   € € €€€ @ @ @ @ @ @@€@€@€@€@€   XVA,=ƤÆęœĶ÷ż…Į€øz«ożāžöµ·n¾šsŅ…Ī Zj¦ąŖ$RłxSĒŚŗI Ąµ+“=ŽRl9ÕyęōšŪ±XūB, €Ę(Ļ·Ļvnxö¶ [Ÿ{xb¼ėå/Żżż0l)› €å*^~š;‰äčÓ[nųĮÆmÜžĻ÷xéóO €+š?rųŲżĶĀ՜Ӻjē¶R’ŽŁ—Ÿ{š‰\įx«)€x_N½śŌŃh9z5ēl¹’ė£% ҵłŁįqS @ @ąZņæåʬ“5ŪIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-3.png0000664000175000017500000003245714632072346024051 0ustar fabiofabio‰PNG  IHDR ™q*UüsBIT|dˆ pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<4¬IDATxŚķŻw\”÷įĄq£¹Ó, ĘX›YŁG4 ¢ˆ ūīLdļ½7{ļ…ŠØ EQAaڌ&Mbf“˜h]qńćŃŚŸ1š€²łüń~)åĪ{žöuŸ~W§ŚŚŚN:¦ż‡ōåž PęՒśµĮõ cąM @€ @@€ @€!@€ ę µ®ŗ³ņ§Ŗ—źŽŗæ÷TéØī{Jļé§ĘĶŅ74 0ŌčĻ­ß­_wŻOõŅUõT=Š{Š£éžtŸ~u?ū×rKcsĒųņq\¹ANŒ™6ŅÜuuEX¾ōIH®üAh¾|<¦Hś)p—ų~HžęDzµX›Q#Ö¦U µIåā…:ēc뾟\!\J9*^ŖūŁ=6JåT³4³cÉq®6YJ²0ņgžąc÷éŖz«ŗpĶ @“£Ńó/ö¼3Ō2iAĘß¼@=’ĆŽ×æg•<ūÉ‹ƒ¶™'.MÕ8āå±efi\‰|R1ūMI ‹+qÅŅĻŹßļ†)éu®­ü=©Lźū¹7 @4C€Œń-ō}ĶgÆ’kŽ{żĒųšUF?n\4ī¶Į„4²Šį‹ŗ˜ų>0gŚ?nwZį•}Šžėß}ą?&ÕĪŚ<­"®D<^ąų‰Ó²Ą,³øŌł7ŽF“6Źč–ęÓīOÜߓūĄR÷Uw¬yś c½ńÕ×ķzõ1]õCöšōā±Å刲v#åØöJ|‰|2(ĒéķI±+’ōüŠÆNæ2ŠŲ¾Ļį³y'•Kē–{åŚĶ\[,’tÓTØ+7ülP®ĆGW§Lµ²šPFZ’Ź… öƛĻ4qŠćÜ3 ž„JG„īż¬Ī#z.£_³Œ0ž>u‘v®żl‹y¾ŪäŅÉó&ķ/Õ^Pžž°|įCĻ”C²…‚r¤ĢćfĻÕó/ōSC™V•R)]øńĆyj„x9śŻ7^[gY&-LĶ;?Ą"qaŗėæ<%F" ķNxmu:[lūCč‡C÷Ś~¶×ęėÄ#צ[5•ä ķåߓxD{)ī°ōŸŌŹkk=āKÄSQ¤įāu~X<„,pW®+RŽ —¢Šßyn l3,cÄ3ĖH“ÉĻ|²ĒČ’{?ŸŸō¬ī@Ć}¹· @\Õč¢DĒ0›Wž™¾Üzgxōyr¹pQł~uų|xŸµAÜ;ŽCOņŪażypžŻgĮ¹6’–^]”Œt˜',I Ģq~[Y¬ż»)J5Ź~éLčž)’²H\œ¦ēČwŹ2’lælĒ÷šÄB¼^ ę)Ūæn¾ä)żæ yŁśķxO=Wˈ‰¾rŖyøŻl‹T›T³ mœqŗUŌ„ #_½šžØnØź©ŗĒ:ĘĢĶm“Ķc£“Ūw»\"&™»^­cL}ƒvk?7ō7ę¶Ń×[ÕE98±ĖC]īQāEŻGĶY# @;Z³Q÷!×"|’½ē&y_DōEä~ék’,©zÖz«7]WYŹ8Væš^[Ä÷±¢2*åź‚pĒO|³\ŖĶŹ÷Ś6łmæl—ź˜"»ļžpAw¹tŽ{ūĢņq!›#„×ĆׄW‹Wš:<‚sä÷ߊ.™č?.C3qĮŒ•ĀfÆĶR~ŻćļīßSv¼ŗqŹ×ļĆEŖ<Ļjņ^v¢gŸ¤#⹿ļæC®¼ńż¶7±ĶB”Xė:Ę ß+ż{(v5hŚRa¹–\š/š'ɓ? «‹@’l¹Ęy‰°Ä*ŚtÖp»‘Ćꢤ+÷.Š&ŻŪćŽ.…’›CCłzĘ ė|—e„ū¤Æ’(D”Óƒ9ÉæŸ"„ŒpD°żĘuƒsyŹQńb}¢ąźV·•Ā•ęłÜ)½œ+’«ī9Æ4d“$±L<ėæCŖŒēićM|¶Ū”ī–Ž½y¤Č/ė’äÆ#öµŠ6r{rĢć=U½U÷‹I¦qBüÄÅj]uO·uÖU\Ź5PŽå¬)ŃÜļĘé] ڌĒG=ńhxųÕķvqŠ-’~ņŁjżQĀńģķ>Gģ¾ż³ķ­u§Ŗ†Ķ?3 Ÿę“Č";$W~_™¶u»8KƖ.Ė)Įļė|ƘdW,ž Ś-Ÿ¹RÜ®Œ4ģ”Žš¶LX5m‰Õ®[MO»ŻūØüg§.Š, @ @€61åj°fš3zģ1UoՃŹcRŠY䟂2 )©\øŲ"ān(ē¤UžöĆ[.h/Ļ:αJ~Ńā•Ankå½JŒ\ÅøÓēŽ> ˜¶D»LYo½ “ŽÅå}Ō]Œųøœj3ł ó- G“RŽŠ—bJ?ø,×nr[+ä¤V‰>.KÜaé«(§EšeŹ…w7ā"}<}©°Ģi”v£žę~€Zw|čŖÕ3Vhv&— ”ƒüRŽJæ†ękæ%šFd”ō„&ÖhIĄNłķzv»åHĖ嘃ā÷>[µļź<§Ū‡{hÕł”Ž6Ī$*`§ōöĶ»8%WHæ*ś +¾X:)%OÜ”LæŗķN_eāłˆłDüańdj„öŠņõōeÖŪķ^·˜ļ“Čz„×›ĻMr¾E„±“ŗÆś>Öy@€­Z÷'čī¾N<W,żÜ^~·Q…ā÷éUŅå[r(\ōÉ“üWd”ōķ7<­œ³āµY8ź·C®Œ> }¹_śŹw»\f›n¾€{hõ,"LdåƒģŻ,tFӋ-–~‰-’~VÖį(Ū+Aruėį*įŠē&M•žŒŃĻs?@€­ŽØÉ£ž Ȗžu@:_*¾ŗ…nŻ‡ŻŗÆæńĶŅ|}P{šh9Ź“7×5Ś]N Ķņ}¶YüŪ,Ōp±ŻlӜéKM÷hbĒæ1hā g”Óč¹— @€¶³č¼ī¬²š\‰‘ńc U:*ݰ½Ā‰ō¦cµų‘Ćā©į¶Æ˜‡ˆ_ßx=”0QĪõąž€Ś~čŖ;‡ķ‘>%Zž²@”²¤Z™j%œ2_“ī¾VĪ”S-‚»öėŚ™ūhóT=U÷xo+€Ö#±L<;Üfė< @€öåY时ŗ®w±ånk ķ)Édį€qOöę>€Śęō©£†Ł¦YFL[,,œ±BX3}©°$8G~Ÿü­Ģ1©Ö‡š®”—™JG„āŽ€Ś$›TĖtš·āõĒ®næū³²C™iš„)ܳ @Ū^lŽGŻ5p§üö['æ,Ķuר»ZWŻÓĶ @€vĮŠk‚qr…tžü­ļ6ķ;ź¾j¦\@€ķĖ“„Ś|ąomÓÆÄZM¬©÷'Šī<1f@ļˆ}ņ—|šo=‚s„OĒL3€ūh—,#M]Ņ«¤Ė|ųo£VŃFQܗ @ū]ŽWŻyÖz±€hy>[Åjµ®ZĶ} “k/k†?sHžžhɅēRyĻæ=ų ÷#Š! 澜‚Ž2R+Å˼ ¹ @€CÕ[ÕÅs³TD4æš鋮v½—ūčPF8ŒW,żL4÷ĪWŅ{Ü @‡d“fž^#ĶČ?[®äŽ€:$uuļL±\ł`œxD:wX<•q¬īƒņ1B”é ĖGø÷ @€ė%«’ę»Mxs‚ĻųńݟząaĖČIn¶i–įŽ™r”¶\“X&!Or¹xn̓ѯrļ@€ø³‰¢MŖEŒ×įHr…p)ƒŃ‘»ę)•=„?Ø/÷€Ūf3¬ÆŪ(kĻMĀįĄŻŅ»„Č݉,~š±BXo’ŗU¬&ÖŌkRŠq“ÓØ‘½>t?÷€ØtT=#÷K_w&­JøœcyŅc£ÅńčŅ·ŹcŹfu×ÖEÉFī17"¼lžP*œ#&īœ2‚”V-Ōśe ﻯ³Ŗš¹JČL*Ļ¹Æ—vq@€ø‰&nRHüań$1q‡S°ökŽŲ'žšß”łĢaŽiŽŖ§ź‹c§ŃĪ#p@€ø…AŸėo—a¶2½Z¼BT4tD¬M*Ļ)[{l’öq?@€Ø‡ć ›ŗĄlo|‰xаų=em‡æ_"]VW„ä _ygŚMž§™3eõ•ŽŖ÷€›£÷TŻcä3Īr¢ßŲ`ÆĶV×qŒŲ/’{ĘJ튩 &łX„šYG›:;-ęym– BņäćKÅÓū„5±Ę±r²ypŻ÷ędKWօ$•‹æøźęž€p /Yæų¼Yčø¹ĪKĢJ:z|$”Ź''Ļ×,ģõĢ#Żo÷~©u՝Õ}Ō×yčĘĒ{=óŠżVQĘÓ'x˜p_@€ųnś/LšŃ÷ōĻ–Žźø'œKēL&Xp?@€hź©X:ŖĘLĶdęJ‹Ŗ¹ ¼F¬uœc•½ °:Ć;SūfzMĒŚĖs“X¤ī«īĀ= ©uÕŖ© -v„WK—;J|ÄK漬y¹×@ ˆmše“ėjķNeZRGY¤\®=€ę^ŅKuƱæA°ė냣¦ õK*Ļw„3>L 5\ͬĒȝ†ƒŸ³Œ4Üą0×4?”T{”½Hčécµ®ZĶõ€Š^¶zé/“ߘTč0Ēų€r؞2BrTśµ½ˆÓbķ®;€ņ“ž€4qV*£±EĀieˆw¦õéķp=ˆņo34øī ZČķąŃSš–FTF@Ž[4oĪZoõ÷ōźkrżĻ¶.©\¼ŠėG¹ī Zˆ‘Æ”&ńˆpīśˆGl‘xrøżŃ~ŽIžyøįŅ€Żņ>Y¶„¶ƒiYįŅē]ūu½—ė võšuŒ‰ÓōeŚ„żĒ‰ć=ō-åT³„Ą]Vß¹otxĖm£ć›©•B›?ØŠw›TĀõ€ЊŒš2zØŪZ«ņW„ĮƒG:Ž‘ üē„8-w9äµÕ©&£Ÿ–>c…ø–k  •ļ1~ō“%Ā|m¼¹·iČD‡ēMFtß"½±Īq‘ovĄ.»ćm9@¦.Ō¼Įu€Š ØtTŻmRĶC’+¤ó³’»=­JøāŸ=ķ˜IōĀT=æĢp· S«Ņk¤Ėm5@^·JāZ@€h†Ū/„X„H)Ę[œ[ōĪ$”Šg”īJˆ„ļsüÄ/Ūé­ŌŖ¶ u~óæūoc꓇¾¤7żµ×\W‹™.Ė­ólÓ,£_† Tj䮀Š =Ēj’Ź…«'”§U µž;ä·^‡‰¾YĪĒ¢ ķæŒ>dū]]œ ŪēšYF=#DN“rźBĶ\ē%ŚÅŚ8SŸŗ³’+O9*^J«.ß“eļÆA»„wÜ×Łäŗ®‘69-2Ļ6pm̽ ˜‡łFԜU¦_]’}@śvÖĘYĒęNŒ\’ģ¼bęĒ…^»Ūź¹ Ē~ū÷“?łw¤UI—c‰?;/¶Ś1Ā~ų Żśwė̽ łN0öŚ, ɓ?ø~(”ņ!<¹B¼`‘°8Mž›²Ųq‘G^H¾ų]{;!ż6‡žź³Uó¾ZWŻOŻWŻ…{@°Ž1šē³Õścæ,¹Ņ~¶Õ|ƒĄ•qśe^ ÷M®‡c_[Ņ^%—Kgż²“OUéØTÜ š˜śu7åĻż‡ō垠ćž_±Ļ¬Ķӎŗ®ŸZŁ^ć#±L<ļ¼Ųj½ŗŗ+÷€f¤ģõčKĻ=?Ź=3L ƒ aA¹öŸ¤TŠ—ŪSt\[ "Ō†äIZE™LWėŖYē ¹ 7ąIC/ż8Ķ“ßœ¹Ī«`śjļüČBńēÖuÆńū[~ļ†čń„āéČ}Ņ—Ž[¤ƒv³-āGM:ōń×tąŗ@€h‰)X}՝GNī%$L̊-’ ɟüōŗęõmz[u€ģ¾w^bQZ%^R¾Ž+’±OųŃq®Ł¦YėÅÜÉó­ēÖ ~¢īßČś­$@ŗŲeLŹņŽbqĀ7ĖžĢGÜ7:õ϶ū(ś ķ·7ngŪź¦TՈµŚųIŽf!FS\– +mÓĢ3”ó;ž:ā±ī\[­8)#4_ū]ĄN«.kœĖÜ6:WھįµÓ}ÓԚ \įŪä ķ•Öį{„Ļå³ą!Ś!r @“…Ń]µŹe¹ÅŃøĆĀe4!µRØM<¢½˜PŖ½ą·ÓéŃ4ēŅ[įIč¾[…cOŒ~¬'×@ŅėGvZ}œ«9ŗGų&¶Ųę§øbéTH¾|"¶H<•P*žkmń”ģb5ŽSߖė  ®’°M3Ł”#Ī?J(•O_Ū9J:ć»ĆžƒØB볩••֓ęĆžu‹¹]ķŹ¢rmыƒūŹ)¦Kƒs5ß„U WĀ÷IßE’~J.M«[M|¤W‹µ^[“5jŻk'@äų†ÕāˆżĀ!¹V?‡Hß^ßҶ%ėȧnqI«®¤/łļßQ÷UßĒ5€Іić'ĪĶ·ž%®H<5ūźIį-4źQ÷ܶó3ż²lŽS¾VNaO9*·Ÿm¶rŌ”WĒØūØ»r½ @“õu ŗźn“ē™gēXżœ+wX>Łā™éT3m•ĒޘCĀ)Ē7̶›‡O“Lė^_g®€vdĢōW\–YH­®D쓿iŽąH*“Ļųg;æé“åR5s½O¾ĆĀøÕÓVzīng,æ" ß­7Ā@{ŌcdNƒ& {És‹ķūĒ®ūŃŌ' Gģ·żj\šŖ8ż€2Æõj;‚k ½GH’!żlO®Ī) æC÷Ų|•чF:|ī¾Ńs’Œ5¾¹zž%Ž€ ń ‹w;|±ßöDč^Ū/Ż7M/,“iŌ)YA¹N’tXä›}sx  :X€…ĪKK®.ŁĶ÷Ś)ĪöŻę¾Éńļ¾YŽļ„7āĪXŹŌ.Ÿķö’š±6Ž€Ёd”ūÖŠÉK‚¶ŁĻ÷ÉŲeū©ßN›Ļā‹gŅŖ¤F9Äo§ć{Ī+]Š&ÅĢy]?ą#  ¼ @ǐ¼% ¦­šy0ž°pNYŽŲ‹Ń•Ķå¹ń+™‚x$@‰€)KüwēŁ}–rT¼Ü˜SÆJÅó9vŸZ&-N#@o@€\ =æ"ælŪc‹µēÆoĖŪŪīžšŪ!.ĪŽ¹ķč ˆ2 Ė$zu¼ŪĘiå %Ś_ļzŚUX”£żV›±fląī rC€\cŗ1*lķWw‘…v_¹®ŸVę²Ś'W/ą ļÅ Ȅ°ĶQ©•Ā]mĮė—mwÜRźžŒ>(ž4ŽœŸN€ĄČ­śMŠÉ˜;mÕōāŲbńŒ²uoH¾Ķ—Ī+¼ņĘų €ЈRę„ēČWȈ\sH8;e©[AŌķi·37ō÷  śń/õ6Žf•œ°D›æTĻooM €€@€ €@€B€€!@€„ B€ @  @„  @€ @@€ @€„  @€ @ @  @ €@€   @€ @@€ @ Yč>?ؗĪ@ƒ':uźŌ™€&å²\Ų`7/0³Ļ £ @4)ē%ŚfŃ1Ky~ҳ @4)µ®ś”N:uÆs/,B'@ @  @ €@€ €@€B€@€ @@€ @€!@€„@€ €@€B€ @ €@€ €@€B€×B€ @ „  @€ @ @  @ €@€  ¼ B€ @  @ €@€B€ @ €@€ €@€B€€!@€„ B€ @ „  @€ @@€ @  @ €@€ €@€ @  @ €@€   @€ @@€ @€!@ @  @ €@€ €@€B€@€ @@€ @€!@€€f¤ī£ī¢ŅQuWėŖ;×Q׿żU/Ճuī%@ Q٤ZDĘ–NēŹļūl’u@ś&¼@śwDü…ó«,󊉶uaŅ€»ęµE:8ūM©öV˓ҫÅ+‘…Ņ ė(ÓT —ź¾+„œÄréĢķäF©Uā%§ežŁzž‡½ @€hƒY“4iÕbm}āć:åē]V»ElŠ&@ ŽÄ$sߌš†ˆ"¹\>’oóåŲ€ źEŁżŹk³xD™ZÕŠI«®˜Ę-O"@ žė@tT÷ym‘44@v bW €Š ¦!FiUāe%*’ŹÅó Gija{¤OgūćńĖv©"@ AŗöėŚŁc£x ¹Bøź^/[’Z%üa€Ä•Č''F®H @ ”ėAŗM š`=ŽsÜKŹ×/Z ī;s•°)ęüżEHl‘Ķ÷ÓVf €p×ĘLķ9·µŚ=!ŽŪf– €Š(†ÉCśEģ“?æĶČFkc @€h4Sjē’ž<é¬ķ<Ɲ¶oonĪÓŃ ķÜ8w½aq‡„_žäĆī;ū…>ŁŽ‹fåyfN~Ėa”G®ż‚ų•fq+’@€økrŖE“ŹĮ…ÓW»²09©LüUy,żæ'ŖĒ’3Ś7/pRĢźƒ ķazžÅ> @4Ų‹–/źģ߯+}ć·Óń½i+§Ē—Č’¹qZ–O֌ Ÿķ3*ŅŖ…«gŠ„8~ā²&0{l`n õv_ĻĒzBßiś¬Ķ¶ļŌ…Ē©ųRĶE%4®Ž€T‹µŃ‡l¾Ó¤…­>$żtóz‘„ŗPńĢt©°Jž3WĻļīFEį:uŗĒe…˜™ńßŅÓŖÅĖĮyņWž;m?ńŁn’Æé«gķO«®dÜęõŒńJ]°\™¹Ž»€€?„‰är}½Ē’ŌGXķ—uAråĪ ¹Īw‡ż‡ćC6Dėd‡:,Œ^;>dGæ£ŅQ=p«ÓŃ3މµõ‰Åō•³öłķ“=žrT¼¤ÄKĀł“g¦ĒA§å”['F®‰³y#iéŌeį›Å®X@€@€č  =ƽjm”֐ąø9T¢ˆ?ßīūiUāå§pÅŁ~g7?n•ž‰7 é8ņÉŠ|éć˜CāOww*£F¬õĖv©2‰ŽC€@€č ¦Ģ·žÓœįq³ČB‡/Œ"¶D  :RNKȵ)Y6?Zū)[rqM @“Sź>źī±ÅŅ/- WObÆ/zo;̱Jš2O“f3i†ZWݙ렽Č#jU@¶ōÖ 7Kƒ.›‡;p @“#¦!F5bmkŒ×5Ņ®€ö4 ¢«¾/(Gü 5HŲ^ée”†ė ż¬é2Įg¬{ŹQńrk ” ńā‹Ļä:@€h'¤$s’ōźÖ9K9ąŠ2ŅŲė šŻ&—“Ęųøŗ½F¬5 š å:@€h'Ü×K»Zk€¤TˆFŲė ē6ęåˆ}ņ­1@‚sär€vf‚÷8³Ö¶DY’a7Ū*–ė é8śqǹękS+…Ś«ēk ń!Õzm‹Ō}Ł‚@»Ņ뙇a?ōe#Ÿq†&vŚx3Oū×ĶÖ¶äį„ž;¤æ«ūØļēś@€č ÓÅÜ;|pųłĖÖ/ż•ė PéØī‹: }ÓÜį‘Z%^šŗŠrŪ@Ćgtø :ˆ†Ļ>•T.žŚģÓ®²„·Ō}ŌŻø :AʃŸO­š}Ē+!Į2ˆ÷@G›‚Õ[„›T&žoĪ /˜üÉ_†Š£x’ @t¼5 ŻćŠ„“Ķū¾H(ϚĒ/Oź?Ōvļ?€¦ĒȝwIļ6Ė“«ŒØÕĘŃkćōʼŠŲ™cĒ$WHM¾=ī°|r“Ļ~?%>Ō䳚yĶ1ż*”T:3ĘoÆ? óĖ’+›%@ŽČ§Gū2 £®ż5åÕ1±ÅŅOĶ ±Å¶ßéłł  : #Cóä įbsm½›T.žķ³Ķ`ķŠ'}·IåĶyöGzµXk³*€Ё˜›˜Ä’hĪųP¤V‰—Ā7F  :UOU÷ubNsĒĒÕC÷;|”ē_źM€@€č ģēX%¦×ˆWZ"@¼·»•^@ąæC®j‰ųPxmõ’ʤ³–‰ Óo€D„£źœ#æß”k?|²\Ėo€ffaā1pü3:ŖžŖ{zŒģńæ5uqŠ«Ī#uŌMõÜv閱M9õźźŁ›| @€-æö¢ó”łÖĖH§£J߅ęKī”Ža7|ˆĻV±2éˆx>¹Bøģ“ČzU]ŠÜŪØĻŻWŻYgę_"’ŅTį‘rTśÕ}“g”qŌę( @ s˜c‘^óūCŻÖXUßųø²>Ćń «yõ¼O ;u‘fMS@˜\!^˜}LŁõJŖ±Ö?ēĀƒ€Ќœi–ßfĖŚ[,äĻū·jŒēõÜ,)‘ŠXѰĖémūłQkķ„n²™›°Üv^ĀJmĘģł#3# @€­„ļv¹¢a£ ŅłiK4k”ÓĖļō9µqfī©•āÅ»?×£.ŠŹå33׳ę›Doˆ©Oh €7hŹ’‚uźt_®7?®,45e„~b™t¶”ü•éX~Yr„ćė”ńc ņzT½U÷ī¾»ÓĪ•ēĪ›ņ¾8;m‘8;v…žßž€»‰@ćH×:æY<>ŚéÕē½¶HÅ)ŹZ‰»^o!Ÿ2_³H„£ŗÆ>Æē‘—{"õØpłnžĻaaĢZ=’Rļ»@3šĪĖsŃ·²^$ttÜ&Õ"ø.Dŗ’Ńs[E›ŗeÜįŚą|ĒMbVĒ7fx  š˜ĻV©ø)¶¼UB$öō“hę~»ēv]-f6ō÷¦VJwOž—~@NPSÄ  ķ–ŽnŹC’f¬¶ßźy•3GB󤏶ū" åļĘųōmŖų @ @4!×ÕāŽ¦ŠČBéė-_ģĖé£īQ ÖŠßé±eVQSĘ é„w Ų)½ÓT2e¾UĘķžū£g$•‹ēś;]×ūģ!@“AŖžŖ{4±&QĒ?>bIßæź8ü™[=Æyر}hžtüN~ÆO–k  šŗĄzIR¹x®)F?|¶ w_/ļpZ؝k`hiä3ŽŠ4ŲČĪ6Ż|޲}īžŽĄē·õŽ €ŚŻēé[,żŅ” Šo<,0½Z¬M«¼ó3?ž »§žSĻÆŲ‡ŠFØQ«Ü× ūfkśųhlž™‡˜‚  ±Ž6qQF%ŚZ|$•ÉgĢā–& €ڐ+„ m->bŁ0]™ŌŌńA€@€hD*U÷˜CāOm)>”Eėę‰KS›#> =U÷„ķ‘>nõįqĆś·Žūš+> ½T÷6įįƒwŠŗü]d”Ż×q‡Å’Gƍ#@“AN‹4K3ŚĄōĄē·ōü¶†O[9« ©Ļż @ @4ŻēžņPHžüQkŌJń’eRś<×uÓŹ ‚ó›3>d¢Ÿ”¦µoæ›R!żŖI˘o™”“Č:eĮģęŽ@#é?üÆŻ# „Æ[s€ģžśŽY|Źƒ ¼ –ˆ@#ņŚ,hĶā»cF•ž©wKÅ ‰‰ęǚ'&¢jĪ6äēÓ«ÅZó„Åi-€F4ĀnÄš”£āåf8<š\ŌķņŸ ɓ>éž@€h'T½TjÆ-bY“o£»Sū±2¢QߟŲ'}ńŖŻkę£Üó@€ķIąNéͦ|᫺¹RŸŸ: }3Üvš_{ōŅŠŽ¼"¾ņXōéD“ļf•-žsņ<«„)•ŚŚŌ*įöė>jÄZ)ŁmĪųPFAĢB m @€kōC-&šF„•Ī7÷ˆĻ6ńč¤@#+ @įų†uJCĪåhü]±¤c @€Āe…øŗ„āCį²\»‘ŠAø­•¶¶T|D쓾|fĀÓ½@€Ä“„²–ˆÄ#Ņé ^£Y„ ™8APNoĪųH©/:/¶^[ß×H€h'õä“1‡Ä›zĖŻärįBX¾ųńĢUVĖMƒ‡½ŌcdN @€äóžŽ)i¬ŠPFR꘭ņŽ"ųl•ŗÆ“¶O]`anl’čą'ūwķ×µó¼N @;šŖćˆ‘iÕB£Žv8-Ŗ’Ō* @ā±A[ŅŲÓ­\Wkw €šźGŌŖ\éĆƌeĒĄ Ÿ$@ą7†h‡<[$5źāóä£ŅÆĘ~& €š&A“wŗż®r†‡œjė·]ŖH®Ļ_ßé*¼@śĀČĒ` æaą¦7ęN '”ŠgŒ{ģ/ŹVŗś3õ‡Ū¦Y„™Ł©ūØ»5Åk%@“qzÓ_{ķNDķ03›ėµ €Śø'Ē<õtĀńģ÷Q-ÖNō3pPõVuėŖgŠkąC÷ €p[³6ˆ{ļfĮyR™pŃ6Ż8'¶H8%'› €p[¾ŪäŅ» ·5ÖÅCėĒē [FŒ7&@ą¶ädó`e7«; ąįCw½qŹBtրĄzĮüł§ć‹§ī$>"öÉ_ 0x¢7‹Š ^ŌŗjuHžōɝˆ×fiOs¾V @ې‡£ µædkųa„>ŪäĆ @4$@ŗė<ßwøēfķцB(Ÿ²Œ0±$@ ŽĢĆ&:zmÖ¼Sßåģ€l©Ęi‘ÅŽŗxéL€@ƒŒ°nR!\ų³ųɕ?œą=ÖXŻGŻ„%^' S騺…ä ’ž³ųˆ/‘Nø֒ƕŠĘ š8ØOH¾ōéŸČĢU†–~­ @€¶¾½ZŗG:žgā½U*QėŖUąŽMō06ī°ōӟˆ²HŻuµ°K™²E€  0)"ćXż¶ŽU~.¢@žĀ/K®ĶŻ@€Ø·QSG‹-śóя[q]#l!@ ŽœkVÜI|ÄԜ³Œ4ņ$@ ŽōgŒž˜V-6(>”µ ž;¤½éÆ>A€@½ĶZ/jŠČG‘ōƒ]†eŒJGu‹Š¹ @Ō›yŲ$‡Ų"ł‡śĘGōAé„Yˆįø–|Ķ @€6ČŲßP_"ŸjČč‡]ŗELKæn @£ź­ź¶ēĻO>æq͇²ż®yųÄÉ ĮwÉ’ØO|$”Z_Ś„łwŲńóæ<Ž›!@ @4˜Ó"ėåõ ČżņæMC&8«uÕµ†×M€hƒ†JC_Ų)¾ļ)ĪØ¹õ6¼iUĀ•q³ōĒ·¦×M€h«kAtTŖ—­^~6åØpé–[īҜV÷Q?L€  Å»ĆS«„+·\|^#֚‡; €Faģ7Ž$¾D:łūÆ¤ŚšĶ/rŖYB€@€h4¦ĮFŽ[löß(8G~/¹Bø[$ż2tŹ:ē,“œ¢ļ‹/p@€hē8ˆ @€ @@€ @€!@€  @€ @@€ @@Ėū?YüÜw2=²IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_-6_dim.png0000664000175000017500000002120114632072346024666 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs¢¢EŻ1¢tIMEÜō¶_R IDATxŚķŻyxwēńoUõŻR_Rė¾,Ē–rl'>ā$&ɹ Ü ävff`ž…هfvw`—‡2“d r@HfH²!ĆNœų¶åC¶lKÖ}«[-õŻUµȇäXÖaFŻļźīŖöĆēń£æ_UżS0Šļī’ź_Ųwģl|óu’0_©D @€P ø˜… P  @dÖ@P  @d#Ö@P ˜1ódi˜b(< Ą|f!‚wSõĶb{āļÓ1Ó4uĆH  Óķ©ZÆiī’ttŪk¤€Į4gķFOµ¢†Ūz:«S‰ųŲH/© @0…ŒVP]ŗÜī »kJ‹ˆ—V_ļ°›i{É‚sņŌ­øS‘‘#Ŗ½āJ‡ŪCTQ‡]D‘č w $ēZłÕĮ%–@žĶ[vöÕ¹ĮŲX$³z–~r“kŪU=ĪŽ“i$7H*¹,/86нW5ED\KóÜ%¾ÓZ{…vŽ u+®ŅßéIĘlžĢP݇Õ"oÉČ’k#µōŹü Ć’žH«ˆHtxéņKoÉFROkē¼ĻƑ_wƒˆ)ž’÷uļQ|+÷ @rjģ¾O·¬ų°åäz¹–i{Žł1gŠPG:\K§®EÜ«}t(ŁnøÓrŲ“bVoŚ0Õgū²Ū\nOµÓ)bˆˆ)Ś9ŽīQtwé‘ņ¼/>śĢƒ$ €DKuæU’]I3Ļ×¹3Ņ_q•ÆŚtŪTS0$ ”Šˆ,»YdCæP (\įrøŹ¢=ē¬)f¤yŪ÷3£9 m,ŖÕ¼fŅJŗłgŽ1LUIDƝįī}›É’3Ö­¼źkw?¬g4ćd%Ø"Ŗq¦DDj6-ŗÅ®žkdų„”Ty©Æ¹l­Ų JČ’CT)ZŗžĖ"ĶĻ 1••ž_4Ö5tØē°>2~DĒ+‘šėKkŽy1V:žN5ķLŒ6Üź(°¹Ü<•’[ń•Š,æk÷O#GSOyŠ^¹Ndø/ÕGM=m{.=4ń›tk{ųهƾ­¢ś–ķæ:B¾d­H¦s§Æ¼fS`É@{aŃų:ø™9µ¢č”ćeKz¶‰Ørōżre xh0ԭ޵l1G'“–Ö§~žU§ü+Ł˜æø(hV,jųČŲpFÜEÅu‰h,!"‹Ø]1’Ž"Ć""’Žž@*%RPXæqńū7~ÅæX?kƒB“MŃ0É}½ĒŸ4'“Ā’ŚšõŖˆči‹ę­ń×(®‹.,J'=Ż»S¤hĮ™YA] Ō–^‘²ēY<‘–Ī]Vļ%×WvĖc$ €É‡:Š¶Š˜Ź¢•ÕkĒńxćÆ3£ńa=³ź3*EDī²å·½*R¶Žj?už×ē¹Ń<9Č+oع^sX,Fœ<d¦°fL1S†D¢įX$:čņ+éŲ@ĆŻćõ!¢Hé†*rģ}ā9vęŪ¬Ŗ¢0…€HīiŪŅņ¶j˜¦)Ŗ©"š±ļ”Ś«JÖŚŻM$ÆLœ ‹tłĖ#!_DÄ0Ā]¾JZ’ócKźŌĻŽĶķĶ„O¼G[«.OG“cJLD5¶żøtyØ·īzW±ÅڵóÄö«æj³š¦i†ŖfRŗN޲åw"L«aõ¦ gæē,އ$%b(Ž@jč\gŖ©hŗˆ-huŗŻ=Ņėņ$¢żæ~€D0ÉQ†bõˆHJDD5SC†ź*ņ—Ł\Ŗe°%Ü©ŗŁÜ’)5‘øˆDGĒ’ HNŃ5ÓZRßwØjcń*EéܑŒ£""¦ký„ć놄ZD59ܰ·Å˜02ÉhŠMÓŅIƒHnÉhKnÆZ„'/M÷Ry%+?œŗåLŚ„7ކ¼%¢ˆˆØRP+""5‰H÷Ž“ć­z]ń w„-OÄ0Z_•GI’;£uõ½6{*ž—/R»AD$>ņ»Ō°"†”¬rę}|ēŽCό5Ü„ĖļšUŽ_»k›_ā‹Ä +0”2#š±’įŻŻM½ćÆSń£ĻönµˆØF*śŽśŲ»ļ—Ŗ."ā(Zöq’Éś0åšo=-.Ņ@äŒuKKVéńƵ¼ģrˆˆ¤Sm{ÜĮ¼ŹåŸĶX Õźž|t"~ü·jFDÄP/»;°šŌūż‡Z·5¬XGž²SX3ąĪ[ńiG 1\øÜéŃ,—¬W{°m›Ķ‘ŽgR""£įĮZĘԜĒ^ˆõ<ÆÄ]zź;2ĘīGU£fc|<P 9#2b¤–|`°M Ö.n±yļC¾h±ęūbØn«1Ō„·žĪWSėßŪō›”#ĪBņ@äŒ‡ėŸĪ/-ZćpN|•¦&b=‡E"Ńo”atķT'Ż•é(š×žy„H~„)­o(%ä €É!oˆ4>»ō†×NŖ»dDDĀCzr`_ßĪÉē8½©1Ė„ė³ŅQ»·ī3Cš²‹č3ļŚäįg=•ŃEtclXÄ0ūöÅĀ"ĪwįŲhļAÓ:łxEqLŗ¼7ø4Æb¤• „0ÉAŠŁ¾YO-’¤ŖöŽ·Œ Œ“Šø*>ė+‚ŠśžĘO„ĆgŽvł&·³E[󙦧_łÕ= €ÉEŪ­.oUߣ""„kŠV¤CR(¢JÉ G`ū}śé»BB'ŗ¶Ū ^»Ļ4l6Ķŗč–¤Č?“" $©Ę‰Wμ*[Sté™W¾ ķąžSÆāū ,±8:ņņėn.ŗ$4ˆŚ “†(蚳xākCŌIė †õŅy R‰LJ³Šxƒž H“‹ÜdÉ?؉`¦LWõ­Ę¤%pM?ųd$21Ģ•w,ŗuĀē©}?Gm—Ēī<µ7:[Ś @rHUA ^D‰µ<;łNCYxĒ3©R,5›*Æ?s„ÕXēę’½÷W‘Įνo?Ų×""b²ƒ€,ĮÖ \²hõ=ĆGŽæn™ü¾"zjR”H:źQDs±Óļõlķ|[u,ø®k—™ww3y @rĘš`*å­ .:S ŗ¹Ē7+é?YuWšR›]DĔWžGė“õ;Ņģp“Ī× ‰{Q1zß°”‰Až(œ±§Åó-OE"tzäį,æŗha`éĮ§=…Ż=Ķy6›æzS$tü¹ßłźpé„+{ßķĖ„') .!OHĪØÆK¼7=vjĮØxiĮBE‚—lü›®ƒ{Ÿ ,īŻŖ(ŗ5śąS?lŚp­Że˜öüöż‘}é°«$Ö«LXõȤX@ä²āŹ ­æSŽĄfu*Æō”ĒfŃŹźē?š„ŗė/+uŠ{‚% EDT%ĻoĪ„j®©ūp盇Ÿ7ĘN}Ó`Sc#w¢Č\…5MĒbݚa؋n u÷j}„÷ąčŠųHĀbÓ vVlČDŚ6Ÿ9#?X±|Ųcę‹Y½qĆW,§ÆŌr*Č#œį¶Š.¢é»’Y52Ņæ§oÆįØū˜ŪnwŪņ­K7}Ø~a÷½®śL<Ētl~ä„oć…KŽ›.īŁ)"bØ«ļ9Fž(œq¼Æņˆˆzņ Ŗ‚†ŖµEKā”żO„‡,±† IŖ®Ėī.ŖŸxNŁź›×żņYk¾Čą «SÄę³ēEĆ_„ P ¹ĖįĖ«éšT®¹7ŅÓōK×ĀĀz}žY; ŗ}7<¾qĄW"Ņ·½ż ‘Š5žš&»ōP 9¤¾¼p©Åź­rFjdØ„ø.1°ļQwŁŗæŠĢPW݇‚ Ļ­ę/ń/l{S1Ēz­%K>ĝč(œRV¹ęž33OÕ׈ˆ\ż5CWdšˆj¶o)\x¾y©ŅÕÉŃCO÷4-³Śx $§DūL9ū÷žųŻē ®Ė«lߓѭŚŌg+R³it“b…§œ$d.杁§ŽŌ§ų$N$Š4ķüē+R’¾@µÅ""¢³':F Éó%SEÓĻJļHhŠ!ŖFj(ˆ"…E3;R—ʧF[Sé’U¤ ;0…õ.ѤžFoفę|’,0ĮāńdR”x_¢§|Żųb»ˆHb`×֗~i¦Č#LĮéōł|ŽāE†¾å’łC:#"īŚņŲ“Q`śnVjÆu 46½\ŗ25¶óįmƚ R@`)YV²ĢSœE{v‘€¬śg2üńkD‘[_z؜tˆ[ńņ\,Īošų‹:0ń€żŪÆžøéó7’ ’>ėvõÄX&mŠH<¾ūéƒ/O~ˆāMW,¼&X[s;©˜æX¹hŗXn··āT+÷5uļ°9ł{ö4oŸ|ģK;Öæž_¹ļ>R@@ŖDtéj‘drø°6>>,"2ØŪ|ö±ż‰å›†Õ.ƒŌP ED,RQ«H|¬s[ósŖ."b*m‡;†Žyō~źĄ¼ĘČ”Fœy ®sæīŃ÷m!Œ@r”m»@õ‹³8[6'ÉØm»Fć$€ÉQž?‚=<Š×˜”“PuFwl'?HĪr[gv\ŅhŻŻöš:am#1d² $w¹f4É{6“_ei@Ž`}l3(SĒ{“0ĮiūōĒDvü›…śĄ“ZVž*¬ŠAꂳ dŚ)¬hčąoÉ ‚³X§¹ Ė”£/«Irc’ø&‚@¾L3ĀøŹ=ŻwÄŗÉ’s¾³=X3Ż1ēo]†{4‚@ä»Ķéø°oPL›Cgæs9†5‹@Qy¤€Į¬„ćN©d §0…uŲĖīuēłśö{†40Į,ŲܞbOQÅ:ÅI(Ģ‚¦äyEœīšõd€Į.7R@`Ö ó+DDŅƒ"åXDæØqGié2ß⼊XoĒęžĆŒGP ˜»cõćƒ:GuąĪŗLā^2@`“ #Cļó§d€Į,õųį—‰@ÖbżFO²Å  @(yE7LB@`özšSRŪøŒwÖ¢””ƒƒį<潘,P ˜…”ƒm*… §1…5K¦ō5g4Ål~!% fL‘wū*EŅ#į6Ņ@`ģZÕ¦"Ņņ²A(ĢFÕĘŚėÄ9Š™Œ“€ÜÅ"ś(²ąŗāU{O¼²ä&Ņ@`ģn»;•ŒōÅ£N7iČMLaĶYńB#zāUr@`–L<¤iä€Į,)ā®(ŻHrk  į# !`‚¹ŒA€`V˜Ā’d*ž8÷'V‹…|€™Ź×®)®„śę#u7“P Sź“¦I¦ĀČy“ė =šē7! $'bt$2˜Ź$’ŗĢnōLŗó­Ž×#d {)&œĒUUWW •ŗÆś_K?hµĻģ¬DlļC”ę.ćß4™µX9Æ-ķ"Ņ,"rĆWĖÖUĶäœp׎Ēõ˜ˆŹč‘­Ėøśļ§æ¬×”xč²»M£ć•ŗŖRkķż!SĢP‚üd¦°fĢ_ĶœĶ†„ŗ5K2ŽōÆ}·Ÿķ 0ÉU×/NDfW Ŗ”‰ˆü£Å&’“dęégģÉ}}»ęŲŅjõG/]ŖXÉ’£ŗęø}”!Æmś³«>ÅĆP 9飋žzng6oQĢXėM(œōūī¹žY}¹Õ9`īŚK†(œ¤ˆÕ1Ē3ĶpĒ@«™$CHNj(HĘę6 5ŅŠžŲC‚(õZū»&9§[GZG“'śH@vį>ūŪæųźÕ2·Ū “õsHī*ZŻpĒÜĪt¦P!² SX3:>×3 Ć ’£®¬*X9÷±‹5’ęµ·/ EŁDūĢlüńČŅĪõNr‹õ’U«ļė»žMrĄ$ē m»Øņ N¼ōŠwI@6a}†ęz”ˆˆ)moµÜĻŻP 9ÉS~!²ū;>G†(œsCٟż“’Ņ ł•G¹Č:¬Ģ€fwÕ.¼Hø‡P 9č¹Ö{×u\ĄT†¹½•P 9É«ä×^@ČŹŚ2@ä$Ķē)›ūى±ß¾³P $5K׬’é]7xŁÓ@QxDÓōn¬żĄć嫬t%•)Éōć×5mŁOœųwuīpęW®µ^ą…øŠ8¬·æšł­sļrød÷||ķ×oÖ.NĻ:Ż ÖW^įY&_ WHÖóV—]Ō!ƒE³ŲH@6` k.ļÅż>Cśw“* ³éK$fI×·ž÷· ³tģµ'~F (ĢšĆŚĒ® (Ģ^~m×½ @rƒrQŹ/­*%SHNŠóŪ,Śŗ«Č’]Ō)'E‚+É‚9ع5 ‘€lĄ’ī>½Ę³LD¤rĮÅžfÅ":ł @²F”ś•'å"b¶>õķųņ’ŪDD.ö±ö”$i @²Ę7æž×Tm²XDDоYzß×¾įd÷' @¦\[ūžS?;Ükæā(R/āCMS9ŻF~w(Jāę?v$‘ė‹ļÜR¼hā;ŗqa›€˜’ˆ9\ŃPz,Q$9j±{8Ż”Ī/,N8F Yā÷}÷µL.ŁÖ‡)¦”Øg¦½’ŃĪ)iyVLM·ł“!ÕѼ ®U2ūÕ×EŚö uHV°łę~īą Cv7õ’厒öŻU« jīŖõ½{,iŻŖ˜éįń6ŅG޽ąXtݧƒĘčāśŌįfR0Ÿ1…%"">ķGGƒs¾`÷ų‡ž±Lø¶JW>•ŠÅĀŖ]¤żłsŸ3 ŲÜø—äP óŽĻ×ĶöSb«³ėĶĆĻIꜟ[T››źģ!ūc÷›c$`¾b KDD>¶ņ¦9,™“5>©#S¶sĘĢL}¶‘į†BȼwÕJĶöœšĄž§Ņķs’3Ć.‰“=€łŠga‰ˆČÖæŽĻņŽ ŻģŽ‘j»?³ØĄ[Nņ(yī•=G2³šPŠ ¶¼}a¦?m³“< džė7¾±į÷_™Ķn³nŸĶsŃ›&P óß`ņ÷uĶüx›5Č ""Ɖæ[޾oęĒ—7 ""ŅŚ’Ć™Nc„Rc=$ —1 ?I^įLāŽ±£õuņĄ'=š½ęgvdl4&/NÖ_æēžH-MZrSXgłvłĪæ}̵jŗćĢ9lL³“fČL6=@d—Ć—6X“ócsĢž{ߌ9zdāėD„¬P Yåē’’Yū­ĀŚó“™ĆDkė%]H4ä‘/ØĖž²śņ©ē˜ā,”Čq,¢OįĒ?oü±yžĶRņJČ‚sśÕcż'¦žŌæD N’¦¢yƒ+¼ 5æ=@¢² SXS8MIœgšŖ°ÖW440õē†R±¦x…£Č“ZL1¤æqļOŌŅe+&ėmé'iHVł/›~ōXØ­āwėżŸxĮ_zŽų,K?•8Šö¶¤t‹h¾ņšuĒņ‚ĮKĻÓ¹OsgB<ö @¶QXÉ=ŸĻ®[ś„ŠkŻAMĪ_];3т‡OUŒ³vįī]æHuŸė¬Ż·pF Łé”·å6æ{Ż%k?³ę/-ēÉŖ|Ķ™ŸĻžŒõ»>€Ér”Øģ[ž„‘«æØžĖ’Qr˜ P 9kæČOüæųÄū—~¾ņ»cvė™8ł @r{$’’g—?Žtć’ĻU^”Mh‘hČīÕŌs×J"Žr# „Xr=ų6~ė-×~Ż» P£*ńh’ŽcÆ(ЧlэŽw<”אm?nr¦¢‰˜¢•שĶ6Ö?Ü”¦DXD@äfp¾»ī)ä4±“ƒ9ĻŹ»ƒ‹Ī>.Ī¤l.S1ŅŖÅ¢Œ—JØżķÕ`~ćFĀ čŽhgߎSõ!’‰lææćķ³²ZnM±ˆĶjQNEīÆÜš¹ÅdGtN…™n|²§qĒ)žr{>ƒ?&TČī‡ü6“™žHĶIZę7®ĀŗŲ¢·¼Ō±Ó_a±•]QX7Õ,•!-æ'+Ī’źéÜéÆ ŌƱ{GNø޲Ibw= ē‹˜#­#­Ē_5±­ü¬wņ$£Y%EFęõo9"ų#lXtK¼ó…Xd⻣ŻF‚lP ˜Vøeė?Å£g^uj:© @0éįʇb”Ó/¹„‚™>śöæ$“ć?ĒČ‚K„#ć?Uny @0Ó°®‚Š )"yžś›x” 3dFübø­k—ˆHĶ5µ·¤`ć>wUļžī½VGØł’›œžä€·‘D0ĮL7õxē[ūŃMĶ’|?y`‚YIE>Ÿź#f)Śķ9W¬fš,ĢWLażÉŌŗÖ^I (̚fZI @š®įNB€€P @(¼ėL6¶@(( @€ĮÅRüĆN (ĢZØiį{=ÕI @0+ž 3īI*C# ŁŹB_ßĪńf6#ō3F P @äžĘ €P P @( @€P P ó S@(( @€€P @(( @€P ēƞč( @€P P @( @rOć@r%—’Ļ+Šøē|²“æ<(ˆ/¾IDATÜ•’Ńær&ēzr^‚æ>(œåN{“ü%€¹` @(w‘Ķ·ģö‚Åä³c!‚¢ŗŹõŖeؙ$€™•®½Šeš92Kf²ćMR€Łb ĄdÖŅķ­ÖĢÜNÕm‹K­:P 9ÉŒĖ“s=·“tĮ'/“@x–"€łŒ), @€Įi  @ @€P 8…ūČP P @(ˆˆˆn  @(‚Sx¢; &OC@(Ģtü@((wI†  @(‚q܆€€P ēĘĆP 9(Ķ/ę‚«°P P @d'VŃP  ?€P @@(wO3@ąOƒ§ń @ČQ†é'€łĻŽ9,€P  @¼ĖŅ @ @€P P ä]gž§ų  @€ĮR¦(¤€€P @@( @Yé’¶‡f'‰‹IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/bg_dim.png0000664000175000017500000027316614632072346023145 0ustar fabiofabio‰PNG  IHDR ™Ū#wbKGD’‡Ģæ pHYs × ×B(›xtIMEÜ$ī{„˜ IDATxŚģŻ×“$ו&ųŸ»‡L­JkT š› 9Żh§9Ó=Óc³OkcūģŪžIū¶kÖkc;¶Ó³½Ćn²›dB«*JW–H™īū7<#R”F 0oŹ )<<Āļ=ß9ß9ē;Ń’‘—ÜūZ0įįVSjDžWˆĢ?Ä2M‰ŹCŻĆ²ŹC]ÜāCškØ?ŌÖåj¢‡øB[ÓČCŻCdѰ䔮‘Y6ńPū*ÕRQzØ»X2ņP;óé8¹&j¹3c•‡ŚWę|Dł>ښ†ź}¤šźõ<žŽó‘YSQŽōÕųžŽHžPeocxHs“+īĮ#ų4ó§ą³|ł3üizJvÅÓpO~W=šóį©8ßk³Ż*Ł]»ėnŹ­›=z Mżīzpŗ»¾żk@v×CĄĘö‘ĒŻü„hHv×īŚŻõ‡aō ļ‹8rŁ@#ß1F‰Ͱ»v滯µ »Ēž)1½+ī̾ę[@įī@0½kݵ»vdw=ŌzDYÆØ!z¤€’‹ī&æćfr™4|/ˆNlˆØų{ć§¢Mä×.œ|{\¢Żµ »ė1³|€ŽÉļł÷7ģčqŽņāŹƒ@’ołł™ląū¹Ģ`‰_,Šdąļ<\'/¾»»v×īŚŻu#½=hø£¹ŽŗbƒäŃ ÷Ż7ˆlÜI^€P^ł~Ź)/ ¦e]I$’!ŃT1$–k!UK­Ė%r‘X"øˆ7a“…ģ®Żµ »k{Ųč7ŅYŸy¶éﻓ‘\ĢöÖ׏·€Č s>`Ä#ƒ\tDāp•L†ŖQ,(9„HÅ¢’żŖ:VEÖU•5-š³fmM„.ā> Ś…Żõ(Ļ]¶ū!ģČ· 6¶nšĶą‘1EטGr)ņĀŠF‘H¬`¤›;Csīz‘ĘyµANu”¢#1dFˊ†²Ģø’–Ä)%{]QvX"G¦­$Q–#Ö²®ķ€5«öČ5,øąŖ\]E$Ņ)°h7 Ł]pķī¢]y†#Ś&k°±ŗéē®'ßŃīĖT$J:r‘†\lRUɬ1#XqK,Y‘Hhl@ŹF$ŗk“mŠxzE¹FT­¶™3š–\ƒbē“-3kĘhøß\¤āŖYĖĘe"‰ŌHŻVµ&5ģ97-Ø)ū¬/qŌ£-Ų]»kwķČS;Ē`œŃ… Ö {QfIKKfÄ 5M¹XĆf¼Ŗ,vEīØČŖ9±6V­š5ŠXKIEYT¤¬7¼°üŽ Ņ%ĀzҸȼTĶQ©[ŖĘµ•µ%ö;„•p-3Ŗr±TāšŪĘE.؇÷øjBMÉØHۚD"’˜0bĪuek:JŖŖnÄM;÷µļÉīŚ]»ņ-Į4t>šÆžZ£®ĒJ¬8næ[JčˆtD®8ēE‡4,“©‹°¦"R1%ҰdŜŠW K”,÷–’<^QŸGŸo$Qˆƒ 4®H4En¹iڌܢD&–ł„“*†3bŻY_SU™“ĻØ’\ŪP%[®”ķC®©hY±n„ ą¢{hK¼’?$ā&~H1Åžņ†l÷“Ž]»ņxb|` žŻ5Ök2™’Lī%DöŁc]IM ‰²Ŗsbč8 „ęĆEā<©Łoˆɐn©ö÷ŚŚb±į¾ƒŸD?݌J7’Š%­*Ź2m mk8ä©e‹ę9©H¶½{,ųŌø)ĆŚzÓöŠ1U@J9üVouŠ%؊M)ĖD–|ęR_2ÆõGŃ\ļ¶­šŃ²“­Łę(nē½ÜF+ü»Ŗŗū)ļ®]y“UϬõG‚ŽÖtŌ>-óÖ]‘{Į)±5” ž|ǰSfŌĀ•S‰”>`źłŽeUc"tB=Ѳ׍hKĢł µēŕs™¶H¢¢”*³*V°7µdÖ|å‚5—MxĶ ś/:©‚×äjö˜éTĆJDDÅŻF„„°ā‚*+O9×Ö6ļ#«” f›Ā‚ˆ-M“»²ŻŹŒ|F›«ś¢nTzŃj­ˆ`ŪRå‡”Øæß³“»väŹćĖž½™LK*©xĪ„żš&“ef}ģ%ŹĢ8\HQ„Čx mõ£ąĻo%r2ĒT•\qC;Ø÷§ÖD*źFÅĘĢ;jŸE’ģøC.ŗmIKŪ>-“^²ąœ½kÜ«FģsĈe©au¤ŹōE[ćƒ^”ŃPÕÖ“"±hIK¬j(LŠhøä†–Ų²a#ŹRBOI?pōž•‰Š?v…Pv4Ā•mćŽ{Ū˃+Fū1‚Åf“]Hِożqķ’WÕš\HzēJ!=«^sTxѱȌL§Ļ ŽéŠDņ0ĢvÖ¼ŌŖK.ŹÕ‘„RŁH仪r{÷ævĘKĘ”FdŻž³¹Ų^3:~ē•>ƒÜ)9å(”)šn°1H£üÄQµ ]’‡ĢF×ģĻśĄē?²×ŃPŲ›éČ“Ō555Ģh˜ņ¦)ķGe¢¾|É…µYčrgóś(ŗē~V4 z¼Ż+FK9ŗR—‘ ĻvÖµevæ×Öp‰Ņ¦øęīäiuGѝčļ½›ć[Ń)tč/8d8#‘ŠNįxģBČ.€<ó”Į iŻčŚĪ“ż‰Ŗšė.»¢„ć}_zŽ F o/¶źŠ ž¤Ļ7ėļ¾Ž%κ椙;ĀG,3gIۚ²?7-6ė+æÓR‘iÉP‘łWŚ…9)Łk:”fvƓ9=ą³F’Mļ6ŚÖ(ÜĖŚØ„ŚLxń慾ōŽ'Y¶źÆ\wĘO ć ĒøäEœ–H\ņ;óŖŖO|?ō q;ų4§ń#}åžq϶D"Yˆj7ŹŗŒÓj†U|lĮŗCZ惣Šu’oöjćܓvZ“ie“%NŚł ¹ŲHÕLC’¾ź;*¹ĪC 'BņŻ~”]yņš‘YxK±–JČw¤*ÖżŅŒ?rĀ?“÷]ÆhøeU.³`^Ė ®ØČ•¬Ś[˜ŅHäššCÕ  µSŠ“é²1'ƒ§;ēļĶ«*éHTż„IĖŽµnQ}ąÅ}¼tĄkóD‘GsŌvŗ^.VųlĖnś/R’ٱMDF1pÅ9ļiYUV&ļÉCGM˜YŒh“I½ūjļųīś žZæ^EޤÄR!CÓż¬øå]{$b#f\•I$ö›v3äĖr™3N[ņŪ¾ŗ·č?‘Ž=ōźcś* wv1†3ć¶/¬Ź„bc¦;®dŃßiķŒ®–ģxŽv×.€<–ɵ“ƒ8ĒĘ–ų(ūĖ ZŽ=<č'žŽ’Ÿł™3^6%³nÆėĪ6ź`ŸOµį_·¼oŁ÷}¢£ī€Ń)’Ŗ“„Dł§~eɐqm{ż‰}Ö}dŸ’Y(ōŻ®ÄvūÆ}óŸ¦Mšń¹_8įĒjŪ–wMHۜ:źE–»f(ņm÷ĀfĮż¼€cr£źÆŃĮt'“—ķųŁeEuZ^ĝpæÓښ2Y؎ĖesyŁ^7ĢŚcĪŖ½n訨Y°¦fÕ!'”Š„ø&ŗÆÓы‹¦Ńōµ›J÷4Š į]Qˆz¾ė”$øN©Qī÷n‡s•÷ķžēܔ­K ŅvwķČ”­"UµƒŻ;Ä©‘ævŚÉšQę"ĒüÄ;ȜµģĒLų™ŠcČ™Ä Ÿ9 )õm7|įKU§ÜvÜXįcn_'ß źĻ{Ē5:xяŌtTœŅ0ĢńÓģ{E³Žņ§^֑ćøź¦ĆrxĻ#*.øbŌ°ZŽŒś(’čyöŪCH¾éłoäĮŹE öf’g£o厞Gē“`6&±T˜6j]$÷±ć^”ŗ%wÖR±†LjčX3bĀE_8aɘØ[7¢bŽ/ É-ŗä¶ėjhl#7Ģj)ķX}µõwźr™N€‰N_HfŲ›Ö½å¶ņ„Ü)•+éÖīF!»ņŲiŠĮ€;3Čqēaó×½(w͜½…‰=gŲE\sÉå`ōŸ÷–qkęÄ~ļ¬7E½ē–Ž^·uµšÓ[½õŽZ5¢į7>2jLę€3«Iƒųśč3Äś.ų·ö‡4/«ŽRó’yWĶYõĒF|ķ’†ĆābUÜ!ß\””ķß00Ć%×Q•Y«ˆEjZR%Š먓Į+ōĒY÷³¦ģ7憏Ķ9ØbĀĖęe¾² ‚’Ž#b£©¬%7iڬ†Œh«i;ė#™¤"%UCt7ŻwŌ-ņ®øæÖÅī)¶Ē~„"^īŽĆ'~nÜH j³ĢĻŅōƒīÖ£$fw×.€Ü<¢mD%5²š™ŌAć†ŌM[¼G5ģwHÅæČü؜·Ķ»-rĶ9Cbeć®8ķ˜FB›^OrdūČ#•Č5}.sÅ3"mgüPEG“Ņ3s`r©SĮēīz•ĆžBǜ)3^’ĆvU%DM„Ń6M”ī¾6Ļeܽ²ķČkZžsЇf%Öģń'>ó„au‹”.//ā‘ Ošł²ŗ’YµÕ0į “Īūڬ9‰ŗ ź^sĆ'C25SFŌ5m֗¾ņ™TE,SU ¢2ī3RüT¢M{õŽßSŪ”£ö±Na5dL[[jŲš©0īØ×µvš£ŗõ_]Ž}Äa‘ŌE׍¾xīo)+»źO¼fĻCnł'½Ś~īGNyCYģCoėĒ ųčØZS‘©Š,(IeŽ™vUĒĆ~dDGS*rĖ›“y]®!Ā”=·Ā° %Ņ1§-VŠ­ŗ7§gÖ2·¤¾–ØØ:kÄóÖ]¹,—„~DĖ߆©gÕģqڼÆūr3›!äŽhŸžYšŪōFw {ó5SĒ=/Õpʳ:~ą°±īøƒŲ²Zš…łŠGµŻ”›čpU¶Ŗ:Žī—‹Čt¬mj˜¼æ+čėېo Hl„%śg‘dT•MļūÜó!žČEŽóšqu«6¦]d6Ź3­Š‡>*¶$µdÆ\GęŒ½ķ¢“:’Š«>8‰!²ęŖu ^[÷µ³Ęū¼±’1UM©3¦Ÿyo'ņļ½ź‚wŒkłŅT_ęc3ÅņĶEBö°]±×Ŗŗ5-ĒŻ°ģˆć^¶īŸ“S5bÕ ekNŪ'ėk}Ģ­ŗī+sŖ†Æ›1ØŻ'ÉŃß ĖÅ*Ź†ĀŽ«hyOdHRČÆwwaE%”ž“[ō+‰z!]mŖÓĖŻ›Źq÷ēJ’ j28ģ^ßWbÖ¢}ö‹\6攢0 ·ģ“1ŒöŚ6ś¦śĮļNσ•§÷T°›RcŠĒ“ͼmM„g*+¹ w„M6óŪyßŃŁCĢĀ€Ųī„®zW·ź]劅[6ė’ó]ÓrcźV¬* ‰Õ~“±ģUuˆĶµ_&×ūžiTՊ¾lašĒŗ\MĆA+"o9+¶¦f²ČÄ\¬Hwxvą=ń#™æQ’ؘ Ā,ń@-Ó7W5x/-?rČ!¹›ĪśŹw½į¦pÅ MK&å~ļŖżŽØxUEŖaøø»Žuł@m‹ķąĀÜ}ļF›ō™{“]ˆśŚ37~#*€ChV­…‚ōhĄÜjߎKl‚hŲRč%¹Ÿ§³”åÖ0ē¦ßkšö†ƒē"ćz£®Y5[e•PŅ ŒLŪ鮳0^-ŗ/ćߑZW Oī~÷§[RiŠ ųö’X0Ņ_˜¹]‘ęF=®cŸ²X͚esŚ:ÅL„ČHŸŁ®Y7gÆeļšņµy{Ö1­~¾ŪO}P"vTā÷7ž“i=µŁēEÖK%w\sSnQɔs:néRH!§rM©Ž¦’S^xęėŻ#¹¶ÜØXMɐV€øĻŠ=ščVX¶jŹ^SŽŹ¬©;āŠ†ŠČ ““-jšö6"«^“GdŁ5©†KF‚t½m#ß{5×[÷šĪEюNÓĘom†Ž|ą;÷r?Ż+Ī›ļļžŸNŽźJÖŌĶśŽš²JŃHŪ#c] WūšrÉe±øļLŽ©õ±b-Ä÷÷åµ5Ć.¼’ŻÖ;Å-me” `—ĀśĄG>@Pō7…m‡S§ŌķŃYņ® fdV”ūŅx½ß®ųŹEĖF·ß“LI³ۈBģŅvCيu«E<Õ“l“Ļ|f–­Ėµ4u,ŚėsCA±_Ø¢#W™VSŃ2åu5é3ķét ŖJÅJ&Ķä•-ž÷7wŻ’Rļ`Ś“Lģ°¦ŽÄim_;c «ö©™×pݱDä¶·]TV1\L7Łī’ét)°ŽuÄĘ4½Æ¢bL5TõbģD.uÄ”­ŗé !·-I‚0d\44n}ż²Õ{ĖŪ՘Kµ¤*Ŗ<€Ös÷5Ö„r#o5xüAHæüDæŠU¦£ÄĶ»ŗ?}ž”ŗ©“ź^0ꀆϭźźŻ -ÄF¤& ł®cF„AÕ§—x/¹hԤߺbæŲØSrÉM8lސń¾Ŧ¦ūqђŗUu ±ķīu›"e3ž×4l_Š“ŹŸłd]$÷©Žß8¬”#Ņ(t…yܚ¬‡Ķ:ąp±_jbėŖ^Ō$Ję„DjŻ%³nXYõ™Hž@3vŪąÕ°ēĶżƒų·Ń¦Dņöż*›I);DAŃ(¹2xĆ÷æß§³ńLć@ųfjÖżVnT]ģ€}j-±)_uTMfÅ>ūÕĢśŲšõ;yŠA¾=ŪŠŌ.būµ4q˜_SīėēśvÆo)€lõŠņ<2+ÖŌ$ö™”˜ ’ żŹ ‰Æ¬k{ͤa{Z5ė¢LŪqū5Ķ5”DlÅY¹i‘’ŗ^’½+T~ŁŪž7­ęØa+F\sÓ¼LšŃõĄ'UÅ"£R%æ*¾‘ŌŗŠŠŲ1#ź¦ģ³Ŗ!Sɳ^둸ą}ćvSk}Żż[5Ws\¢śQ" _Ŗ94 ¢„Ě֕Õ°(QUõu¬”T¬O(æ Żt?fūĪUNŃ] it s÷hčīUWw‡n–¢Ūż1$•ŗ%ÕqĮŒŖX[jĮ”ļŪ+•›PkŁ«¬ć-ķ±Å|K-d$R¢»X‹Ō:*”2zųČ5ä"CÅōĢo’śÖČNÓĪz‰­5‘)ūM©š4"Öš™ó…†P/ģō¼y£*”ą0±GɄy·ä&—[7ē²Ō-·%.[³ĒkA½§lѼÓ.»é¼²;$—»įg,øi_Ø8é§r Ø2kZę-čĪĻLŪkDEbšHGS‚F˜€=óĻ-qYjXŁeu =zŲH(’øäŒļų®± +õs5]6ź@“}é+-Ļ;ąe§ż³l ģøĖ†Ē”dāѼ‹ūÉRDŪźGmū`÷D1÷[&»atćāĢv%KŹ!"阓źÖ$–œvZKWVHŠf> Fqķļ¢fuĒ,HģQ ó2$öH¬i…ÜŻ’žļ· @¶·³Q”±Ŗ…²HMÓEþŅ2$֐nŠYµnĀU· Ėtœ4¬­f9©/”ģQ5mBäĘ4Äę,‹œ5ēskb‹Ž·ź§Ž›Ē”=砒Ȱ Ķm}ÅÄMs†|dI=T…œq ź­kę†-Z7Ō'ń,oÅ«*Įš–„*÷ŁÖö(!¤›¶’J,õ÷žXŻ5æµn՚c†ĀŽŖšõž9‘C6aʦĘ@ßJ>P€ühŽMt_?³Uv~gąx"źĮ2SƒŽA/‹eó„P~LĒĻ‹DÖudšÖ¬›³nŚiMq x·‘Ņ]Fóv¬Š‚Ųż“ŠÄRĖb•¢`"ŗK?ҧ½ <śuRi[“+7é*®”®„¢nĀŖ%i16©—ŖnxObU[ISÓēNś‘ČĖr_ŗå§=§¦¢bŸuK$Ū¾pEIYӂÄ׏r%ŗbĪ1u7¼<ėÜNlRoĶTŌ0„źSMõ>ołŚ ‘XÖ 5[¹²ŗu„ūn”zśž^Å;nز§©"×.d6’»‹”µ5•Ķū…Ŗf¼ģ€ Ć:R™Ų’kRC"‹{SÕ[šŹŹ}ł›ōł“×@ŽłÕ·‹Ż£oČĄmĪjE"ķ¾I÷yߟ̈7T|ą‚•P»˜ÉµeŹj–$Ę˶DżUkń;·¦©*ŗ,ļ±Ŗ„¢—{»FdułĶc½ö7¤;½ ;‚Gļ°6“B­FbŅĢ{ĖG$% .™³¾Iž#•)ėh+!ö¼Ŗ¦ÆT—…;ē35‹–5Ķ6"+*Ŗ"¹ŗ7t¬hšō;7Ÿˆ4Kæ_Üė€ĻĢZpT, Qć9ŸŖØ†Lēdreæp5P›½é'mīDT üä”y/ و‘x[˜Z2*Q5į¶tÉ×;‡Pč²Yė*uÄ÷Lg5uĶ{b“Ö7©„ Dfwx÷›4ļFQ@S_³ IDATŠ&ŗ¹įšNšńķ«ĪzĘd>2‘–y%’ĘÉ`Īkˆ\ói0ęś*=’Ā ź„©ŻĶPņ• ŚlŖĖŲ\-Ÿ˜±WŪ¬%k⢣å3Ÿ‡CxČó†”ŌÄree3’"±·×” SvŽ‚15k>ā¢ļ<–©HtŒłS5+r5™XIfFIī¦ä¼[5®$“XVV5*“Łcö ;%]"«[ZŚö 5/–9bÉUI Æā>Ā%5+Q*`%z ‹oę=E;Ģø”ÆļhL²`]åącū†¾H˲I°ī¢rHzo²’F}6P¹Öķ9įūjį7:V¬«9„%¹<ŠtڃžØØØ{š¹ź[Į¦m%(œm8ł=Eю€ō¬Ė3 ł€8bWktŌ7Bzšeu±XUKIāĻ”|įb$Dał¢•¾ķ—Fļ+ t-‚¹I?2ŗ’—5½e„øÆ1{µ¶W¦Ōw 8jZ1¤ķ‘ƒžŅøļiØĻF?œ»īo°ęĻ”BŖ¾wæĆVn*F~v ¤įKÆøźē–$öŁkŚ×}Ū)é?Ņq`¬iū“žXŁgn…•ōK^8!р^ģÓł€*V¾Mģ‘ėØ8ć¹ zÅGڐFßŚŌ—‹¬iš*LfuGślĶ—…ĪU^LžģØ8`øė‰Ć!¹Ä²ÆĆv³+%±Rų¼ļŻ>üÓH­-RžwŹ mGögˆŗāBöņŁ‘g@6’l¹ÜšEuģ„ąįW¼eņŻrK[GĒ3¢©Ž§Ū“õ=GżŹ\Š-ź4=nŚē–Ä:ŲgZbŻUėŽYpCdÖo½jJ"7ŽÓ–eövEĆ «&4ä&B±_E$SrŽIēØXP Iž\ŻA™ó”½_Ä£ŗŚG4|lÕF•õfq·£®«©öiÆFĻ€Ģ:ļWUU$–¹mቑrѦ4pBb_˜÷G!ĪHśØ’”ĒqŚĻ‹Z¹č)h€ ź‘¼čõš#”Ó¾¤Ŗõ~ś`ęgIl¢0åŃ6Ą‘ŠUŻ}žĖ‚vŖ#5ēšŲ2Ō6qÉ_‹œö©Ŗ––Q«.ø&µ&•'ļQŃHQ_n®šó dæŲųŁ®ŅŅ]FpķČ7~Hr™%#Ž4f‘x»ģCG łÄ?ʜņ’=Öü\K;ä+ŗŗ»ÆÓqЬµĀpēr ¾ļw|­ä„ĢYßqŌw¬)ń–Ļ%¾ÖvʔQd¦¼* £eoxۊ1Mūr޸ϼā9|ä]æ²GźĒ®śoFżÓ"·üŅ ĆažŽąŌļ8äA؊„&żkšōLŻ>W“¤įĄĄ&}ś¹×Ō)'żŹ­āv%Dž¤k¢ '“ŒXņ3%õ"śˆ¶ä7z’zQ(Ǝž0x苑ņĄčƒŒČ=oŸ y yK|(½ļił–N’\d^M½o¶c¾ :ŗšŪ,Zžę”ÄšU?V ^śU#Å““Wõæ†TvYGIIŖęE‡uI' dxt1ȏŠļĀ Ł¦©*Ū ķŚøĪ\‘„÷LĘ!Ļ8…µa‚FżŌXč˜pQÉē:>sÕ²IGķKū¾Ü°/|Ŗ©f½ķ5ūķQ¶ØTT‹Gę|fŅ÷÷ß%~ą}oyĶ)U“ķsъšk¾²×¢!±Yßó¦¶u«F|ĻŖŻvĖ{!y «†”Dęd.kJÄŽ3kUÉX‘:ļļĮĪ ™‡ī5ļēžČ UŸK|„ģuMēŒw­VrŚøCź&ģ鯚‰–aoxISCÉo|ķžŠ×N=—Øf}»!W¤Wå‰ś•y_…S^¤oGĒŽ[v]ŤÉBŖ³{Ē7|źŗXż>ŚŻŲ¾€77g,Šø›# ¼p»ńFjg“¼Æ*9©ä-Ļ{)ÜÉÖč:3V8’ŃĄxä/k»ŽWö£”īž ē}ąÜżlĒ9ČäXI»Ņģ?Õ½.ö¼ĻŽŸ¹8ä[P…Õ•"ö‘ŠLÓŖ7­ł'-ĒżČ[ZNz#Ģē˜nQęŸhˆeęŻ2-óCo¹įUŻö©L:ÅS']tĀėŗaÕØL¤­-CYɼ.aÄĒŽ8bXĒnZ·¬J‘ų«…ŒK¤×6U“»éæØšōеłņ| 9jB&4ż\f#.¹aܗÖŌüΰ¹ĢŚ:ö8čeӒ{..|ü+3åz(AØ!÷C8[TĒ=É$ōę)€żµ6Ѧ(q»XćÉŻ{ŌĒügE†£[xQóŠI%‘1ć6ĘÓęZnłŚyMĆŖ…bĀżAnŗ§ź2MmKʋ•A­’ξcĤŖŖXĆ/M:¢éŒa|ĒJ_¾ĻŽŸłVÅŲė}deKĀžQE©ż$`ĖQĻ™;åc—”½a>ŅP*Ę_uéĪĢü6ūSģF ;žč•ćžé āæZWóS§|ąŖeŸU7ś4ˆ•9k‰y ¦ež½r{±ąŠDĆ»&Qöƒ ¼>.×Rn5Ń«8ģr0ņķ1aĢODę¼ķk™D'Ģ8,+;īJˬ:ļŗ’–s„ĬMSē¶BH¤®"·ą†ar5uŠ jŌtdÖ}äCG¼bƉŁ”§ė9īsUfHՌDɊ“‡>)3Ü3”ń&Ž;ŚDR0‘Ń–ł^³AŪé¹=8šåihFvB9ŸyšŽŽ%7\vQ¤Ŗ¦^L½Ģ@Š¦Üš\dŻdߝžūé^µcĘŗ\E]$EŁ_„+uBŅ|¤ Ūīļé-[°ĻasZß@AF7žČÄĘĶi›qŠ“LfĀæ²Ļ‡öŖ9¤fÅ“–ÆŻÖ Ļe|Ó>"·T|Ÿ„䐨8 “:Fd2JöH½åC±}Ę­h©« :ĢėN+»)Ń“äŖQu{‚vSGU,¶ä‚CĪJ}¢mŹwŒˆ¬9ģsĆöŗģCÖtM&¶7l¬6Jj^U³hæk®Ø;©äe‰Ģ „ĶrBjÖļ¤JÅÄĮ~šč—hč˜7_Wą–Iu’ ÷ŗāœųskOés¤cĮ¢=öj‰-˜ E’O>Ó_†“įm7 c]ó!?‹ö#„„Ž™ØxĮ+Ś:”Ć"BSĆe—]•ŖØ™īĖvSčó{’ ~GjMŪÄ|ōNhEÉøćĘ$†‹y Yqēmī8õä^cŪ ¹O³śŒ¾‰•KœņuūŅć§ķ—źųĀ?ū·f“²ߦŻąÓ 9¶˜M’7»ņķ^ķ}©VH‚ŅŌ ÅŹNśžX¢¬%¶ź=Æ©hŹ•q:„陓–.¹`YŁŒųÜpCR/ł3M™’+žŽ¢>ōGĪ vĀÆ|,qĢ^kįŠ ySOŽżU70嚓BŒĀėUœ2ā7AN.ŚFj.ßt³5ŻĘl YŅKźe”£¤śF²§t{&ŽĖżŹ™ē,øéM+4ž 7%²ufF¾©ÓCš¼'ņó]/†N=,7æŃ?Q•:iʌõ",Yń®Ėu£”ܵ×7Ńū;¾9żžž™) ꔌ†Æus©D¬cÆļ˜)T­²ŠG¾™ņ‹Ś>D:¦Œ[vq‹ Ģ£c@"™w¬Ė \=3ŠŲ~Æ8 )’łĄ×*¦qÓ%s>VCčŚĻ |<ƒéĮÅøžž‰ZPv½lUj£®9ā=;bĮMcĘ1¦£mIY†šŽQ2¤f]=ˆž„jVĶ»‚LIǤĢm’ŚÉ@¢u¼į#™Æ¼ŖjY:An­ėSˆ„Ķ>]fŁk*;nīĮņæØšWJ¢Bš$šŒ{Ltw>EŪ¦ķŒŃS÷,KŌ¼ģ7Z.ėØŚÆmĮØ„'~·›;6?‘Į¼ČƧj³‡¤°¢‚ZéFœŃvJ)8.Żū¾ģ7fšģ‹56÷ÆÜ_ü±‘“ļųŅŗ‘b°Z/ĻQ7jFī%¹ß`~ S‹Žuµ/9Ū^¢%æĖÄĀ;Iß·pĖMūĀk,זj«xĪ‹4ŻVVvSŁ1eC&0"·ą¢Ļyg>ćV®) £B»!p/Y¾qŒ®č8ļc &-9ä·N{]¢b²KÖŻōI,;eŽ’ŠŖ’U¤®* ćkjü­u©JSöކż*ĘäRU©UŸyQĆØ šn…“¶PĮ‡&Åkö(ÓVÄĘś}r[5u6ūĄ½!<É6éÅ~QÉHdDĆß8äŽfäIÓBżO²cÆÆwĢwżŅy‘’7̉Ÿ’½¶ż?}7żŻ Ż3‘śŹ$A8¤ŪI}Õo4L‡RäxčŲ<ŹėĪu|żäPW×aŌK~sąI¤>ń„/“żŲ’łĢå@Ē[tw£¾8Ҧó7xšņ;äOāb–bEÉŗÅĘTT5äb£}Ŗ\`[U ™ŲÄ3*BōĢHo;7LyŁt`T3¹)͹aAĖ!#ÖĶŗØŒQĶmWBRYĶŠ6zE¼lAm·V؛®®™“Ø©$’¹iĀ!õŠø`݈¦Ž’Ü0n»!“‰dėn‹$†dn™•ØŠƒhcrśˆ¬čŽ%¢m=£AsŻóć»Y kFū21>šcAś1×Ō”śĄi«–}(Ā‘¾O’i=X‘ey!”łtŗY‡¶–1TÕAӂ«®ČĢRv3yµ=“‘D¾IõiµĻØęaæg:źAü§£Ŗ)±"³ØeŸó†Ā œo*²MÜtĪ?k‹YŌ² 2œ½V=}DŻf—4ߍń¦Od;€™Ō(jŪŖaļóyĖm ”¾²7ä8.Š\’W ~ꦜ<ÓIōī±xĒė† ¢#²×”u™‰Čq{|éF@Ø¢h#Ńõ¼HĘʶ•‹¦Ÿī÷jʱ.wФ%7͇žŽ6¤¬dÉMkŖZę ÆRŃR  ¹[ŗŖ§½Ķ B§’¾¶ĪŠŽīł@õ§ÜU-×|aō‰čönĄĒؚuė†uä*ŖbĻˬXв¬bØļ€?ž™č÷¾ŹOՉčéėØ9āø}”®«Ūqō‰Ž”P™—lŚ’Ū9©¦Ŗķ“fėå š4“Š>˜”-ÕŅ »}üéÅčŻkY,õŽ/Uü„ŽYWüĀ“=āPc¹2QxļńĄ.ėšō“p撱¼d4ńÖŲ?’†n™CŃuenš2®dŃāĄ«mŽöś’o7‰žŹŖŖŽ³Ž>u÷ėm‘:”%ņ¼ —œÓź  ū…ž{E¦é°)T¬øZHÉåre3µŖmLnj½Ž¶¢ćģ3:Q‡œ×üŲ§ŖHU“׈ŠDŁÆ]–²ß¤a‘E_;eԊ5‘ŠusšÅ,Ā yo“棽+&?¬é‚— ‰ĢĒ›?hY3­Ä!×üĪø3bƊTµżŅÅ (m yZ÷įÓnżōU·ŪbÄžŠ ©9ēūąc#{Öƒē}q Š4ćzP^ ‰‘¶Ģ°T¦­d:üt[YlmÕ5 GļѾļXā’użNĖ15ĆNzIÓQ7œUV2f¶5@46ACGŔiUs.jćX&Œ ‹l7Ū%W2×§ŹÜ-²O·ę‡Ŗ" ®ø¬„¼#LD\Ēn#įc90¬Õōœ}›z¬ĒŠÄ"‡d>T1d9D›©‘īÖZÓq"“$6\y‰.5ö¢Šš±Ģ|­!³ī„>Yŗ,˜ĘƼ§,¶nŹ+«„Ÿ\3숪“FŌä-8ī„Eėŗ ĒEē͆iģ3Ē źĖ¢ÄÅVµām? 5ė×ĄeVŌ­H ‰]¶j݊¦cö*»ę²ŠŁmŚŲžÖ#õō€ŪęģGǚ#F­‰µLŗź÷– K Łģõę3üȬ"1ķUWЁMź¾mėĮpvĀŸŌ”ēLˆ‚¬z¬¤"×Ė­«=bŠ&jS’Ćy-+¦œ0bÅŗĆ&ŠQsŻ'•ŒØČeŚÖd:ŽÖT¦3̵Õ=ēÄškԌā+sŖ-Ų<ū# ĆvūæŚß3jTŪØŗq‡Ō}Ō…w* ɞɣ „g8¢‚¬ŹMł!é£ZJ*}hMŻwģQņ”ė”}/ o×;ļ8e9Uæņŗ)©Y‚Łoźø”aĢ †Q2ė·n˜¶$µlj`ģNī²·“UµMzŻŃ¢/żŸ}aČ'•ŌBUÕē-z)”÷™4ć÷®éŠ·eD±ītWĪ1Q·j%»Ēiś¢@a”\”Ē;šj}dJY#رn³’öĶqūf²Šč£å%ćʍKEÖ|įœ†įbŲU¼MµU4}dšR5Mū½ä†+¬—T­I唉µ Yėrmćžėk…ģi2"C>"?SwÓØ)'ÕMŖJŻCh9¬ęt5*ŖF‘±nÕ^³!‘iK„"M%ĒDVCՄ[¾ =ćŪ%Ł·;›]æjHUÅØEeėŅP¼ßČéw@ŹOP“ē@¢¢<µ”&S-ś'6{dU}"±×~#ƕľvÅ«Z®j`Ś ¤ÖM;īʬ›÷–UU‰ŽŗļŗęKLŚoLfÉŖ£&,I …­\#+޵®.SvŖč»({ß§©Ų|”^¢ž˜EļzE «V$ĘüŠ?ŗ¼™Įz0 üv÷ϰY’Ķ_˜|ŒõC½ųcRdF®bŃóĪi;bZEĒu+Į4%ÅÉ»šqŁ^ļłićaŖ|¢ķõƒŌU>@āD…Ō¶ŖŖbÄe·¬jY—«)‰”ķó„\) Xė*Z}ßU_8kʉ‹4¢Gü®o«xĪ‹b#!’P6bÕPČiŌz#IžC«VÅ&­!V‰…r—®ÜQ7Ļ:£ź‚Nß ā|Ūw–TuµÅV\•(©ˆ%R-‰RĮl–xŸˆä靛$æ1yņĒŗiDĆ·zI\š¶Č+¦MHä2©KĪ:ź5mĻ[õ…s2ß±Ļļ-šsH"wHź÷®``Ō)“öøä``ØŲēHhŹ-«‰¬ł­†IC¾²ØŽŌ¤żEbŻū–½ dŖoŹBZžó™’Ė×Ķ›qHĶy$†TäE6Ħŗóū!7¢"Ų;äK+}qÓ悾n'L͜Ėö;cŽßSuY˚yŠB‚h[”Żu§ų£'ŠŽrŠ1CAžīoąžŻrN1 ·?9<ØÉŁö×²æż—ßßņŒz `¶qŃ$“¬č ĶmĀǚĻ\ņĄ°Wŗ‚Ł£—ƒī¾«r€ic޵nD[$qĢ„• ’ømĮÓ¦ķÉN2§ó/„ę-˜QōV`säl¶hø‹ėNå¤.{¤īé¾%½źšć~ä”9“Śb%ćbžæ0'ŲL÷zœ^io+(’ æ1-‹Fžą!½źXȒ JÖńĻśĢ?÷“g%=ŁXü4öźń¦ŪēŖyĻ£>"\ŻŖsFŗū¶`ƒ…ķŚģ ĒŪVäåŌödõ‘BH9bmK†ÕåŠŅō“1#ź>tĶ/}bŠKNņÓKĆÕ„ŪĀ‚Ŗ9‚@ŃćµÓ¶†5~äc—?éI¤ūæQ'€ü.ØHEJf°č+÷L*8gڊI9 ‹X ŪĶ ź¾]|Ą+'ŚĘØĄ>«”üžBĒÖ„Ś{³·gi¦‡$’–}^Ć ēQŌģĖ£#©w½Æķū^ 9o/t·Żķ7†¢5CŸqŁ»~¢®ę”ĀCĶÉYōugż8ō}³wėŒĆÖĶśŌMÅnJ»…t(?S5¬ŽG>‹•}یȺ¢Ä@ą?“ą÷¬ł-}:©½šÜĒ_2‘¶Äiˆ\özynIC„uŻzõKä ˜š”«ž­†’Q`ÆöZ™é.?óø ‚Ēū©†o© kö9+¶į l×ŌÉ&UėRe 9ćņatÜÉŁoØėW}"5iŌu_:ļUsxŁ«Žqóž±ńmĮ-™Fnwīd×Q6iÕjOżōõ_y’§3nŹuM°š;ˆff5`Óæō†įžvWݲ’§=cČo<0åL@nE"óž^»Ū¬Žzīöƚ–•Æ%·™ŪĀę‰ōk7÷Ƅh_ij~½±N¤JŗīĀ›‡@[GKŸo„=üŲXź7ŽrŚsŽ*O–é/[ĀQÆ8ŖŃ5rŅmIm\_Gż2Ņvʐ/­ŗaāY×»ā×±‚œ¢«j~hŌBŲ}¬¦mȈU÷{؇ėnzĪ'~ėG&4ūրߓ×2i\]€~9#&,¹Ŗl%„¼|ך¶×ģvwxc1䌘rTIĖ’ć?5ØÕõ9¼­ž*8bÕeG ō²D¤č„+–¶­˜žc˜Åõ»§Ū`u¶«ÕGƒ¶`ĘP8ø:ļĢĀ6-Š­ó,•jZ7¬„fĢłž6TŖźm ÖüC§ä]ū‰gŻrTdLdIäødĪ]ĆæC7ĘHQ#ų”ÓWŃO½cČj d¶”wĻ#yĀä)Ū—ķ ĢŻź9«"MĖŹE–ż_xŻtHT#KŽ3dU1„§hGÖWēXo)w=NæIM¼!o'(l…wļ–žųOā·CÆ4xökM±Głv;™h¢°-QzĢ!p’%ĒjAd=yä#\ ņ$yE³®ikŗåŖG•5Ģŗ« “åmlčŲÓ^ėaGLø"$ŗ³›š7kÅ1c>ō¦·\ÕRõŸ˜0ģY3īhw]ÕŪF=³)KyĪnŹMņ”ę;™bIĆ ÆŹ»mĀ˦5,õä(ćĀcfėk^wVÕm%ös“ī8dNuŖŽ’ܱę+Ė•B; ¬Ŗ©FÜC“ļš±Ń¼©~£0˜h?¶€ćęl±¦øIP¤’—>YĀķžZ¶?¾Ž=fŘuH‚üglĄēŠ›ę›1}Ę F4ÕLś¾‘žūYš…_[ó¬—Ā]vßŗ³*ʕ„ÖŻ•7 ļ„oūŽ©ßahļȬGĮYż›­]%> Łv[ŻißQōĄ’¦Šć^6mMāƘtUÓ3”ū‘X“3ą7ē½b¦g ZrBĪ}ķ.µ7ķƒD$]ū“›ŠFį\Ś*ĆæūÆĶių¦µ­aŲqӎ*XģöśŻ53Ö]HŚGźu.īČ!ÄŹ–5ŗ~½£%ŻKß9˜““{8{ DG›FVŁ8¶m°‡į°¬ą„Äe’Öo}¤­(ÆiŽŖƒMŃó»nĖ “ėėüÕ}H‡Łč7ė(/{¤ęsÅ<%2,rʍ | Ь²E³±uĻh;cr›ąŚ µķ<¶’XIYäÓʝ–øÓ%Fb Q=¾[‰zڱ+.łŌoÄr~Ø&r쐑3‘U£Žs\ŻGj†ĀQ÷Œ%Ė=¬żC:Æś7lWuŌ§ī› !dPۃ¾UhKé\ǜa‰Šoy]¹Æ5›õU»g³Ŗ›–]õK·EVLX×4’ĆčwĪŃOå4-Č}Ķ»¹9óŸPuCŒ–ČS¦T=å”)/9øp!Õ IDAToИ§LśµŌ˦½źéšÄ³s`“{·ćžżŪ9o‡—s^ŃĆīYŚė¦ č’ī ŪīŅ4·zÕD;“L7÷!z „L'ü[^tŌ”q'L{iśĻv$æ}!m1¾Ļ‚Čŗ ~¢å²_š¶ųŅѦ¬±W€0ڤā)“Œlś›/;Ś2²ßl~Øć†iødɗčÉį_pրķ‘é.Z4¾«3¦‹Ćē=t'hž$Ī;eĆÜŖā˜AC'V÷[Ÿ(ø«ä÷]4oQɜӻ tś…KڦDŚžQ•z rÓS¾“ļć0ŚD2؈¦¦¼ >ńך¾åßī{ǃµ”ѲdJӲϼ£īu?VŃ6¬a…m}Pö>*†Ģ?ŃIĒꓦ£¤Ōīņ‰ė"nj»$oŠ“%s›|ž¢-לøĒķVn¤*ēm?ńp>ÆÉł¢–“ž}—öi7ĻÉ{É鮾ÓF ö‚žÜG*¾+–ų=?ŅRSó„Ÿūo)YĄH˜«ń»A¤ŻŖ¾ØĘ‘ž$bĻā7šR#¦Bk|Üøž«eŅ? Źaó) )s²E…ø÷„L=/rڈ_…&zŖ`؈j­™Õ+ōPõ=Ėķ“ķķҌž³6QõƒŻ†ūŠ•m©»Ī@ŅØ[>„Ż”PN[ސ7œÓ“ä’™ «é˜Ä¬„p)[ĆH“iˆōT(é&=žž‰Ėv’•éżÆ߯X*‡’¶ĖņF{6gĘCŸPŻä˜ī³æ—zCÉūbÄEXÄ”ęvO¾Õ“,„ŒzÕs–­ÉI—›ŽęØNū(½‹, mµ%W|Ė%n¶¾S{“ŌŽGP6ķČi™pME"gŽ#ƞ;džņ‚#żHź’ HµUM‡9HśXļĖŗŗš”CwSčuLś6lB·„Ū6hQĖ+NśÜUǬń’+åÜÖčZ¤}ķČĒ=n7¾MŗÉŠ  ö×ŖN…ŸIä½ī˜Ļ,n‚÷Ļ)iHJˬ±-^ːSV¼å¢É\E*ŖĘ·b@Į‹ź.Xņ8«!k/hˆ 9ęĮ„ēsŁ otѕI_źŁī«v:z}‹aĒG{|óTjŅėš ŹNŚ2Xō‰[Ś*³ŁŪ,¶__tmÕ§nŠ YRWPŁ„„½)młßŅ|ĻGōėé$”ō>įuU¹p@FĮ‡; ̂޶ÖĶo²”ó†‹F5R×īńŽū¦öĻY²æćh·ģ-ī:}Q‚u+.Ņ–*©«¹oĪø“Ž…1Öī{äŗėA€}@ÕØk6#Ö ūż® v&¬š¹·»±uĆŽĮ®FćwMļ ½`Ķ1[a‰Ļ¦YC-›1ļ7ՕTŲĒŌ „ŽV—ó3£R-7üeĻłG‡ŠÜæėØÆ¼é§Žš³hÖesš^ö]ƒ>rĪ}ļ®B¼ļĆ4;öb±Äā7¤F¶4w@•ōóé–ŗ£ó÷Ō ć>wLä“¢æ5ę‚·½lŹŪN9mՒĻĢ…iO’Ą“c“Õ GG“gŌ ’ŠsŽ9wķ#evä3œ—œ µĪv$ÆZN‡6ɂOŻBµ«m”īB6°ŽŁń2'#Ɯ6#ēK_yõPumī’śĀQKīłHɄe-kJ&Ķ)Ŗ—ŠÜ¾=@z‰P‰„C ½£z=x«Īh³%§®"ē–ó¦9­ķšż×B¼Ó“Ķ‹|ä³>ć²Žęn]ĖąŚg›Ł·Ė87ÆiPw*„¤Æ¬ č¢Ō•>öŌFŠ—¦Ųœč’šzk’Ū#‰{nېְ¤fĢĄļ0|4Ģ*ŪŅ«?Ųv좦²‘=Ī†93: J•üĀ•@A°fk³ä|¤YāMéńv=žĶÖW½?·,Ƽ)żĶon%!izÉ途Ł9/īdĒ9§ķ Ļ8+ļŽūR‘%·“ƒ‰RN¢¦!ķSäׇeŁvWĮ ¦šš¦ ±ä|–ČtбŻh4õߦŖ—L6Ś ‘†5Ć{˜‘FA"ēyƒFn”oB“„FVŅ]X-Ė„°A#em_ųPģˆOÄJ¾PT²į<©))+x]Ī_˜ńĒƏ65§ŽŖk«»/µ¬ķGꮨ‡žčn}ō͘ł’Ÿ9jÉ%’«äø“–¢‰l¢iIä«~Ļsfä“=tĆ+†5žq6Z“‰K9탿öÓ©–!y<2ćŗSNYó‘×Õ“ųiØ©œŗY5»m@N±» ś÷ĄF­½YF3ڶ]±9»ÜhāĘ]Ć¢ĪļäTœ0č3Āމ{źö *“†śy+ŃpM]ĖӞļ6ozŸÄšU#ŽōhS?¹©G§LMŁŌ”Ś §ņ¦“,©+ļśs5ƒį„8Øļi¹¬Ń­Š[ Æ mM³l9ˆ©lČåƒčL’,nƒŹ«‡ Ņł‰AKā@¦ģš`¤=CĮĪ죦é[ž—j÷1QwĪŅī™5“¤&L‡’ßš@ɘ¼Ųŗk®[ķ¾o±'ź„Ż QŠK¹Øäœ1ׯŅRš’ÓRĻ»bUlÄėŽwCΈ¢TKC#8}„ĮĒć¢Im-k=#Ė¢µmš>Y™˜ömŲ–ŲUƒ¦­¹DLZ¦åŻW÷/żcSJ uĻ .…žq6ļ€u5óžĢˆukšÖ-š¬9_9ā²£NqĖ”Č5u3įŲ‰6 Ċ‰©Š3֕ū²ļąvėlL¦ī5čsŻßąeŸūļ{Ɵżš3jĘE‘!‰¦&&MZtÕ; *_C+Ś“:žŠˆ6eū½į#UņŒĖNłĢYēÜ5fŹøšL]Š5ČB[ŃYo»¬d(°ńW4$vc½ō†~”T°č|öž\Ō ż^ęŁ_K~kŃ1ÆŗjĶŗF÷ZšāPę<ėČ6P†Äˆ‚¶ćŪ²XZj†•ƒĻAfŻ{‡$$sĖ"łžóį¼:¶ ķĄŸŚyŚ8hŃ,FTl*“$V ćō¦œrh|n“Qs¦½¬`Ž»źŖŽŠ–Z±ā+„ ÓU4ą”ĖwėµtVoóN“d';O7æ!&T-ėž÷|WģėlĶ^3Ģ3!›OEžń“›nY ĀÉó=„|Ŗe@ÉQæU0aJ$ļ†ßxŽ?3ŲŻ©¼o{Dzg ó™i?2!Ń6ė3w4»£ģe’ÖķÖv͐r–ƒWq'¬ĪZńsć†ĀĄŗ%uŃŸūXÅ_9jRŽs• ©8įøĖ];« e‘(5éfä<“jŻß¹mвSž±ī·žqß[ĪxĮ©>ēD=łhASUŃ#«ĖĖuė•ķ)b[ܖe· sŹiusŹžøĖĀ?ŒMž JRīł”Ž×Ę`S!} ­č 8öć³m:®aH¬č9%£žŃö¬;Śŗ¶B›WYĆ ¦ h»ļ„ŒøŖŒq؝Ū=“­žÜż’†£,Qžä½R9KŽVrŅ‹&¤Zj–Ü3g]MS*ń„ygLpļt”EØ÷7ȹŁĻäU,KƒXPž ) d0ٶ¦Č” ĢŻ>Äź£ßą:Żõ's&%­…cž >Ä龇zښĆ ·¬‰­ŖIwĪ5±Ŗu-UĖņReeG{źZ.ŗē”Y«ė’Ą`ė­|ūq‚QXkµ0{É~7÷ĒõōNŪZÖ yĪčÉō‹(wDĢJŽzĘEå,©[0aŽ{ŽÓŹĪ8oĶuM‹^ōŠ–Ű`ŽIĶ(yhŌ3Öµ$3œ‰ÖEV|†Š‹­*lAd[+VP÷ļÄ ņb¹ŠTłÄ= V¦&u܌œIĒńȄ·|¦ā®iMƒ¾ć¤1sÖ„†ƒ¬sg4 dDSɰ!£šĘ¤ÖŻpǬ»ē”»c¢‡ėŅ{7£ŠbˆM9jU½{¶żqšöõĄmŒ„QÉEóŌÅ&DŠ.xĘøDKI¬mF¬å5“N+Øhi˜sĶg¼aĄrĻyäg‚RQdŅ%7• (™tFۊXĆ@h.4•7ŌӀ’ČĘč÷$Öé§·K¾µéø¹Ž¬H¬øęu‘¬š9Ą d»ĘgČYäÅę¼é]‰Q%yĶą4ŃiĄ<žĮs8$ķŹfGņ°!äՕ\Ąģėī±jŻp÷ŪG}‡o[-xęĀg•œ’wĘ«Žsƚ–µƒPÅĘZļ%õöƒ3Ū\4„,õĄz7lØ*…€’„š©„­dXCüš™P¦d½ī¼#Ać)‘ŁD=ÉVdĶ'źŌŻrĆ%÷5=”#“”SÉ[VčŖ=ī«bU¹°į£­ć3šØKµŌ5­‹ ķćŚZŠ (XX‹BXsDĖ|®ikMĄģŪŽ8iŅ=«"ķmś]­¶¼'Y[ėc¬ōS0Ņn7„®ŻMBI1īˆćžwāŠ„˜[…Ąė,šqÖØAcī(Z3®č«~d"DĘķ“CŪŻ–ö]t¢)‘7ć”#¦L{Īė& iZ3ā)‚®Tꎶģ¶K®ønĶóΉżRĶmwĢ{čK—±¦jLÓŗœ%ėņŠrŠrĪX±`Ō»^ ›;³„™õ¼£¦Œ˜µB䓼§Ā$%«fŻ .ÖÜVŠ4ėyOūŅMœ·®°ežhXwŻ—–­uG ö"½łk¢ ƒį(Ō=ćĀ––Å7{å6Q#cyy¬zčŽßųŅHpčĪi(w!‰Ń×ņ€?Œ’n"Ü š0l@ĮŖa'•»šGYš5#–C›n½Š4gPµ/˜1{§µŒØ:━Šhoal¤ReuĄPīׯö¾‡āąĶQtŹSźęƒ4bIb]Į1O;gѲ1cŻŅY+uF=mBÕŖ=4ÕÉ-ikZpMCÅs.wÉ{*Niv=öŹŹ*ņVäŗŖJ‡;)™?„ź9¼¶–†f÷ļM‰‚bp5Ü Å™ XS-ķī„ ‘¶µ`±Ż8S‘ŖćeS^Ūu«ÕaÓ&¤]¶ŠV’jēU¶NhRę;¹ĶÆńĄVwĄż$^Q@!uŅmĒŻVQ¶ ē5Å Öńug05‘qā0z~Īær՘¢š–šz°y¹ė؋FÓrŻYó®*[ @ŽAǬ¶"£^“³.ļ3c®[š¦Wś¶{ÕgĶrŚ-óZRkž ØĪf?w«J±Ų\@må śÄ’yß÷•Ėš^ ŠŽĆ9VsD$5Ŗa.Ž»æso›Q|Ō%²5$^Wt•-Ņųßä•÷…é ¦›7jٜy5sY Ņśļ#×E~ģx²ÆØ'ēoĖ1lHݘ)S=½öTĮ„y‘+!¹iōŒXcmCA”·–ģ¼YpĘq}įŽšœBńPöMf”ä„VÜ h©uŸ¼ÉUCb9ßĀG–å1n@ÓŖ!g•­‰ {Õ ¹žc-™QwĻ)“¦LųŠśåŠS‘ļ:鯓żcGBS÷gžŅÆ<¤Ė7`CķčKxŠĻØxhŸōČXpr¬ÉŃ)v«ĮhĻ“mUė€h•ŒT6YĶ,¼Ņn*ŗõōk[õRŠķhķq~fģŖ'Ü÷¾¹īźŪh÷§„C–‚P}>ūųu³ī”†‹žšFĶFRMuÓR‰ ipü&‡I§ķ<‚›Ö•ŻņsekĘK¬(vĢ Ÿ»oYՈ×ĢøbM>Øj}a¼[:ļ˜īXrß§"^žĆ“œu±œ[h—Ŗ±ŚSÆyׂåP¤bmEG=«­čsæÄ²gLlņXpŃ“Yu'­xÓzš I7™Óō#•ŅMYžšČŒE©*1ž‰ć%Ē,»ļ#ĒĶY°(‘W6–gļÆŖ¦ß嫳qJrVĢśŹ¤y9ÆoNWSĶp:ܱQ‘•ˆ¶‘h6CFZ6’uœ9 qęĘæ7gҊ%+ˆ”ōaŽśu”6ūJG{Ž4?xd”” !ÖT—ŠU408Qß\T–˜7g¼G°§Sö§j{f$včK7T]0cÖ‚Ļ­‡)XĘó¾ęUU9Ć^Ņp]^[SlĢ1§Lģ׉Ŗ§5ŌśÖAĪé-V½M¼y£ŚZJ^–ōi"eō ėņžÖ3įĻ7%~ŅG—ĖD7Ö =†¢ĄA$,‡qå»MĒŻõĘ·Ö ‰š–ŌŠŌõŁ}] ¬“Ģ",ōĒ{Ņ+ē dĢ·Ŗ§·äžŪC}s#§j͐|‡X–óŠ]·<å™Ą]}ņƎĘį¼¼”a>ōŗQ6źˆ÷\wGĮ÷Œki…Ģīm9ĖŽ›µlĄˆA¬{ä„Šßŗē–,ł¾ēµ»Ž$9Q9Šy¦ X÷… .öš,²<ķ{Ž3ßĢeiŠ)E59R‘sÓMĒ·ļ9y5‰ē•=4ļ¶•@õ‰·5ŚČ"G‚\ŪøĖŽŠSĻpåļŗŖØę¦HŁtČĖć-‚‚›'żźÄ[7ēl®¦!3khhIµMšv&p@ŅmpRm‘!s[Šs)ŖŹ–-Ü‘“½K[ÉIĒūŅŻ®īRŪøŖŲ¬+š–%Z*¦L;fLÜ3 LUÅ(ö<ÓØÆ&ßī.– xh°Ü%5Äźœ5ēŖj8¢Ś]ݱõŠąxO+=@¢^’«ą‘įĒ~÷HMM"O”Ä™%„äŽ ^tgåF%Z5嘻®«ł’~†V¢h9LPƦ®j˜5«ę{l”(=‰×xŸžŃĮ.¾Ä”uµ°ĶŠ(ČcŲ)ƦÜw'“Ķ:ƒx=ńx“‹5©ÉÉ{C[Ž<Žw6[ĖźTĖ9-æöŠ…MRkYß9ļ×!³ķ\s[NE[ā¶e³”%öK’Ż–>#JęlHCĶÓnY”ļB}ūٽ<‚†#NŖ«j4pg±‹~įC ÕĪÕ,ā>љhßydŗksõ0čüUK$Ö4圜\†ˆv:ķ-" ™ļŠd§”ÕÕŽQ7 Cžœ0äžf˜oµ½¤ą”æ >0y9œUPÜŌéī|Ü’ēÄ…m3˜-¹åMsŚĪy¹»Ob§ Ź+õŃć“‘–Śū”ņj‡”vęŒYڧźUo8[0B˜`TM_3ŚLŃ׬//ˆD˜6¬ķ†z€łl^Ónķ“߈qY6±źsǜ°,ĢUŸ\Ė h±+‡ūƒ±4ˆåE/õõų"Õ>oŒvų3ēö±ĻLwŃfT"–WŃø“"©óŽśÕ¶_ŌżŌ¼ē,q& œ aö’ż’Qk}Eb¬į}×4­˜«y¼ł ‡o±7>qŃ“gMłėR…нśš ‡q9“ÅźŠź’1¦ņV}.1Ō5ųŻB8o»«r– ^'ū\ŽŪnzĄŪ(ķas·5”LtÉh×¼µµĶLå,Ź…õįžŖŃ]Ü}ÄI׃0yŪŖ†Ļ»¢†5ES†5ö“īgēä,jöč×ö+o•¬ų•;ŠÖ½a¢ŪjŽ”ģź‚u®­ ©łf ‘–9ŒB«œ÷%źā® xz@lŗA Fśš˜‡[}g»²č¤‡EM5‰X)T|KßüL1ĖĖÖü;”Õ½īÕ «’ä įXŒL҄ÕĖ[ö•kę]š¼’x“ Čփ&‹·E7­hģ Ś[j±l„ŲōŠ™=Zm9/+ŠÓŗ·½¤¤%–sĻ;Z]9‹4(/˜—„ŸHŃ4ęJE¾ōȏ¬÷˜āęŗj;m£ø„aŠq±ŗk*;… »ņ•–’gMiøāü>Ļ>m]U!(ėF=Ķ“^rR]MÜemÆn+6m“ńĪ]õ(ˆ\ÜįŃY-īžØ—TÖiwµČå@(ģżż¦†ÜĢØ’ŻeFKsĒ–*Ønv?޳ź»^Vö¦œ0¢łóŠĢaɲ#=ķėØĖt/I}å-w$V½b¤ óļ4›ƒ{bĀ=éŚatK&åį„ź“ūā>ßšhīØEķ ™q0Ma†“ĶqØ'×Ā *H|KĶ‚ŖŌj“ ³‰†–Zš¹kXQ×ō¾uĒŗā釒•'ŗ›my_>ߣ”Ė‹ŌÜńI@ZwVEŃmcū „e˜ŻM¾›ĒuŖjŅŠžZaķ –•×P5åŖAgµ}ģc „ž!ņX/ (Ń4ģEjÖü•eםó‚|°ÕŖ)Ŗ[Ō4„lR[jʬ³šnģŠbĖ[rĒ)Cī+{*Ł<žŅŽL:Ó[uÉ=ŀ·U\Ī6g&Ā!„ŹhĖ8/;ŠZA4. ‚ų;µUć i_ųõŖ±} „Õ n gł®*jgFöS’ޚ§œ4£dDśa¾ł\£‹·j{姝M¬Ā7̽³YÜ#u¦ś ½$ޱbZєŻ–sŃsĮOs/DĮøŁ:>L‘™Q³‡x:U¬ŗgPMU$×7SŚłŚĖ"ėī›8 oMŒÖhöžsCe¬āhąŸ¹dIIG50ߣ"MsĢIŸxSY[źŽØKL>nf§dÜXÖõM¦šŪŻŲœ¼|ź++!”pŌÓ*Ö|īÆżQØī½Ž„üp’½õTl|ŠÓ¬#ż§fµżÄgüĀŖKZņ] \Æ;cLWńƅL.ļ¬_śŌż‘ÄšG>vŹ3F¤jŅ€Ā*»źKvéBgįQ/[°b“K K{`©ydBE¬Ę¾PᣟßŃ{77B6‹sE+Tr©’7ÖVöŖ5æ5Ōµ`Šw”{OŒķ›öšĻۚĪÕŲGū*;v—Ģl )Ę̇#? § łs§bгN7$ÆĀE^ŪŪŽWWö3‹>·ąBŠöŻaŠżųƼŪL„§ŃĻ6zɼ+n°fÅ+¾¼JöZļYXjM¬Ć<3ņA£":¤iLbUU#?Ē÷!QhĘg6gÕ¬†Vå¶q6<Č«-h­«WŁĖ>5ks„;µžē4£“Mkū‰Hā’÷5,yŁiGö@|½WMSe’‰Ä²–…]ŁŃ©9’ÜOŻ3dŠ3š®ū@C†cIՍłć®ę~²Nۚ9Ķ;ŗmƒdgĮŽHn \ņÆüZÕÓīk„ü1ß„Ņm(mH[ֽ橮ė`ź·Ö—*›šŠŖ–_˜5įEī¹ĘōKŽsӀøKź×RJ‚ćņ‚WsDs‹MĢž7XŪ‡VżDӂ·\UQT į#īčźkI±Š²¦“¾ņœć.¹‡Š5±ÓęUŻ7ꨣŖ–Żr¹Ēūä0øJ?“G:Ó Ŗz^;Ųģ'ƒ[Žę ‰=RRéÉóbėøäf€hFF=ē„œ®»mUˤŸ8*»ī’Dk‡u÷u'w ØģąAøx$²l +²²ŸĻ=RŲÅG蠎ÖY%‡ō @M6Ÿk›3 źöś¼ŪŽøæNÓĒķNęÜö7Šž‹-ęĶnjßi%Ļŗį”cņ‰¦/ öØ9Æ{M¤%QģĘ¢'ĮU-YŃģ±_Śī5į 9A䎷åƒīO^Ŋ¦ģéī֛5=>Pt;JQ¤eQŗf½čØŗe7\ö-Ē]S÷ļȅą÷±ĒÓ®‰V6¾ĒTh침JĒDŃĒęP°ģ_xÕĖJ" ƒR7T‚ĒŲΌƒHŽ'Śź¦s8—vńTÜrĆėžÜ=u#ņņ=Ķ«­ķ«Nfj[ÕĻj«ų±ķ”óĘÜń->Ӂ. IDAT57½"ÆZ9©»–•ūŠĆY•›ŪW-ÆģtĻz“„nw m‚qd¾»bžYRvŹ”æ°VĮ²7»@’†q?5d=#gM‡Ćė ÄėS95‹]`ÉvbA‚@:‘q³Ņż¼ƒīk9T8oj½‚Ėīt*Ä”›“춉] _;Æ)Ģ "£öéü™ūkw¼$Ƥ‘’n;²–ĪЃMo[6˜Õ™m’ČDX–I·¢±ż(\yXµhlĒ "Ā”BZ4+5źø9/zѢہ?=F08`\θȳŽóĻ=ėdžÅīł3Æų=(ūŅJ¢?x“:)„Öż©’1Ģ'Ņ0϶gÕ©U9y-7]TūŅ-_)mŪķ½5:Ÿ[õȾåAW:~’۪ᚦE5uoVÕXW˜$ī [×W;īœ‚¶E%uĢØ9ėJNt9Ō$¦}×7I×ĪźėµuN›Ń܇«uβæó©Ŗŗ¶¢ļtįšw}®oVÓ „±e…ž:? Ÿž]/…6nēč® V@Ž}‘ńPßnµč _ó÷ČāĪ}ßō:b©•CsAģO}bcÖĶ›ŁCl¶ƒßŠō{T̹mxßIńćŻĒ–źO}ęF­ŗźˆé Иµ›×Ż7`ŠM÷Õ‚ó ł¦æ0hČIĻl)]~W¢QWźcÕäšūQ·’k±§żĢ¼Ÿ»é„aO9,Žź~‘×MxĖßxÉŖæõĄI9će×ŗYhﱕį½O9kÅV wÜT$ķūžw½+V²čß6jŅÆj»×ži³·a§‚ōĄ›¾’XŻōģČ«{Ū²²¼¶–#MŸŪÄ.ß+W¾oÅŖE-/ś®;޶L:0ķ« 'üĄÆÜŚÕīąĀG§śØūQŠc‹öČßż…„ĄH4¼gÜ3›ŸMĆ}ž‘Yp¼”¦ŌĶš2«Ē ¼]“EŒę›­ĻHģ‘rhżģē]æęI—ą–įC­A¢m™7‡u*„ėYŻĆµž^pß8ŲaJdVŚ„Fßų”Śh¹7ݶ ģi£mңЅڨśĶ+©ŖhZ7Ž| ‹ŹĪ÷uxƒÖ»Fp÷~ņ!D˜ģ6ÜŻĄ.Ż÷®£ŚĪøė-/x:±üB`Æćłg@Շ©j;į¤Č«>óyŃĻ†ĻĄŒ3ĘM»`V>h~ŚĮŲ+•xĮw”]ó©7Œ+‹ūBHŗf)k  ¹ź»"‚§ćŽ=¶ä]GĶ“ŗ†"]{ÖĪ {o£§HŃŗŌ„¼Q‰=f[+–XC‚ĖaŠ·†¶Ųkūdäܲų߉H^le 'źaõŽĻÓJņ¦ÜtÖ+>q]*ŅšKć}LĀknXŌ’ļQęŠiDźr‡:JϹeRåŚ:[Æ(•W ĻNė0µ$ÜöĪféʤGhė‘YyüO‰%VäU»©9ØŠĆ»fēē-z©eÚ*rÖD&26מ'yĢy¾•÷½ļ/M?„G±!ē¾Ū–N‚lzŗ‡QkdĄ³^ōŖŲŠļø'r¢:~›ē%Aˆķļ}¦čUÕ0$/;i$šNzķ|+^0*ކŖÅą•o« ÕqQ!hhUÜuC©;…ˆzš]Ū³,RMM“š\’ß=yąžwŒ)tµ·Ŗ}«ż„H±i§œrŚéęķ÷XĪUW¤]ߐč€%²­ą“–CÕ /ŻWmÖō/ĆT+Ė’žc›ę#MkJ}O3Kjn[2éE§—ÓDÓ¬|°›:ČWӊƒŖ‡ ±ŻWKV¬<”O[Ó6Ģ!ĻÅ6‡Å4Š$wž©…Ą:ŒĻÆ4h6Ā–¾ę;}ā ×0,gŁ%’Ÿ¶¢¼ø ģiø#ÉūĢ[–ä¬( 'K>ć—ü™cF5ܱ®ā¤—“MšKŻ~ Ʋ#ę,QŽeiDį Ģd†GsąIWż#ų^Į‚ŽÓv¦‡™›ŗ©ģ»R?,ćģ ©YŃ Įä¾IéøŲkŪ­QŠN}ŻŖKn``Ó bkƒbCZ1pƒUg½é¦aƒ(Ž^ ƒć ZĀĄ<Óäźõ[ļ|·½ĮĶ9·\ÓŌšūfv`įD”­ókļżŚŪe·ē–n©> •P'{®¦ ū’š+“Ŗś#S›†Ø‰qw7åć¬6§ä‘·UŒyŃėZnZ?„#(².4 Ņ'ąÖ›‰Ü:”O‹­‰Ķ+«8LU¬ĶUOĮBČÕ·æĒ%Ē|éģ”YD§"Ē%–,*~ ’E*ö”ų ¦Ŗ­l0P7ŗ?y æ¶ę¼+5Ŗ.µløĒ¢7ß”įÕ]Ó żķWŒ©‰·‘µ{r!$6ŖfU{ג±æÄó;™ÜDšŗŪ9>!Kių„5ƒšį»„"kŖ&Ür̤GA<"«:ŽtĶQėī¹:ć·µM;Łmxmźk žlŃįĆ&i½X¬ąm—ż”¦iõ}Šw}aŁ]£”Q– 2ņ¶‹ŃŻ×Œ?^ŠÖņ+?3Ø_|^ČęÜpĖ¢Q…>1”ƒŖ=6ĀzŅ5«ś‰MÄŗß%g֍.ģµģĒ&Ō¶žŒQIH£‡Ą&k›RY²(Uwō1į _wՔ ī"µŌ‘™l8·’¾¦ŠūĄƒm’ēEey?±ę#+ ]JĮFIĊ†Ģś?œŠņP^ӈRĻŚÉwPW%…  •(ŌÖVv×씓°öBņF,Y“ūZLé'łŗ©éøuE±ėŽvJģ–†q1ßdaꒋÖĞU·āÓŠØČ恛(4Ąu’Ź?3.ķQĶź4\bm4½,u½6äÜ·o „!żė¹Ų„KöślDf̘ō¾…n5š<¶ā~®9‘Wߣsš‡ŻŠ¶Ņ!Ģ)2•‡šTEŻ€ÅąKņõ¬i˜Ü•;īž“‡Ŗ%˜Øüš†UÕē³ŹbļĮż•vӗDDņĆ]׳Ø@6›¤[“ ćėį®HÅļ*„Š2ŒE£aņę+uAÓ²9·ŒŅ2kѧ š† xYÅē&M‰-øäsŸ:mĄ„Q9„ą›ž)™¶œ²,<ūsĻņB—ņ7ēK£&Tƒ:lŽKęōÜwgvjœ! !SÜ»ĘkIĢ3™\hŁD›B‡}“|ŲąÜĒęĢŗdŽqœRTZö‰YóV )v+h )ń›… -ø,€d5ć³R_ģqč„AņsÅ]XWVhØŗmųȎ•ū†·L{²U9ęŒumå®ēĮļ§Ųz}r;©eĮ©CüÄe5+ŅģŅnóąn°KhčØy—õ¼Ł 8Fßątm[wʇšįœŁ i—“ĪPNՀ†¼‚z1ŹG]Žt§‡Y•wTdŚ©oōfŃ· «uĶ`ņÄŻ%q0:“ćšfÜ÷žĻ$F ³(õ÷V­ł‘q³ž•ŗ±‡žaÓfåŃ2eŚuƒĮuC ¶$ń‰saĮ¤r†­ų¹s¾ķزTģbh”E{€37@ Es×o½fhÓ5 nūŹX‹%īńśŽßĀÕżsq0ĒÉ7ļW.›6®åsTMö4ęā>«¬ŻšcūŁ~į#c×QrAĪ€«–żp×;‰­¹į#÷Tå%JĘżõ]Ž’¶cfµ GéhSŖŌÉZųȾAōž:ŸyxgH&ņ‘és[ņČŲ×lė<Īü`ĒՁ5)“śüäćŗm±-{ü”1ϦÜļ3YؐҌ‚“ŠŖ¼Ŗ†–”Œ›sO]Yī’dĆ>&ĮI'ŌLų®2vH:3{£°śoV¤­ę1Ń× Ń&^p¶ōVŌ“X9Ś1ćŲ…Õy 9©ćjšŠr *rraŠ·ģ-”Ö“ŖĘŖ‰DY͵ \¦'ćĪĖQ‘SP*8¦ā†Ļ¬ońė®ļ^(„^[Õ¦l(X·¶‡ųBęČł­/ƒČLīj»Æ+ŗß'ŅhóD¢–k,gŻ]WŻ”ØvļĀF•Š!Z¶·üJC“æ¶”$•½k yӞ2cȌ³Ś;{ٟ_ō ļiTP3ģeē÷hŌ¤"ĆZ–U·y>Ć0ß+{nnł“«Ķˇś0^5MĆ!¤WĢ:Ō$ AŃ. mĖ¢“™Ō<ž}ĶiŗŚø’IŁō²ā„ūźĮµæC‘¹+®+‰Ü“ģ”93ŚĮ©Gøŗ®äE#.*ŠŌ#žųĖ~ȬzWGčńł=Ɔ·øÓ’æć²USF݃-ļóPŒ-łJź¶GJņŚņ*AŠ"»ļ–’^P6ī+—Ćl'ÉYń~ŠØmu§"õ®ķ5W|ß +FMŹyŽ9ŸųŠUĒÓ2У浣s Ęy‰Ÿ9ėų. ŪŲ²«š®+u9_w}D(©©…ū¶¬ŅeāēTTčįܧ}’š;}bŪč> °iņXÖŗjiŹ9嬜¼ę>ާąŽ_»o°+Dł“÷d(§ZF͒Κ±™-óĄkae żā!~ZŅ“;"0‡}wkź=ÖwŪ=碄=LgæéM•$ź„ĘŗÖż&pyM÷ ’2eeK‚Ō!֔­7ģµZ.…s,æ1Bl)8&ÖVč>ˆ’p& ±RV2}­vSdŃ F‚¢~$rŁ["£N8Łå¬æü¶+R•`§ŌRP Ā$©(x$Žū®–ĻŻ M§Ų€†5‘£&ä¬X¶ V3`JƬœŲn»ķ¦3¾oHdĢOL{× ėĮ=$öx¬į(ĢAJZVäµw<8có>1gH©‡eņMžhµ»H]‡“{łģ•ČNįc¾–¹wżŃi“Õ5U ŖĢŪ½ī`άw+j{Ó²£ž6¾Ļ«ĪŌ­bK.»lŅ1Ɔ­oéMd?Ū I>2kźXtoGĮ+N öć –abŲ¬y»rBv¾eĻłŠ/\ō2Ö}ī'\P1-Lq¾é5ÆśŲdž †GwÄ\O?1X·Kš.‡”-Sžö„O xŹSbkęÜ ’ g¬»ź+ ±Ä=‰²;žĘ‘Š3ž×ō©Õ@Œö¹U{ł M/ń™Ųł]:ŁĒ=å²|W7śFOTžZļ‘õÕQŃ&÷ÅhĖÖķŒ F<ŚGs&ķS>nI•Œ;cĀhčÕļ]Įä]wK%4ņ²śqÖ©}|rdYĶŲļ°¶ß°»}ÆŲBŠŪ:,Įõz_3¼ oёC¾Ā’ŗ5#}NŒżßjD]MjI#x˜– wqĖl÷kŌCŠmŹ;ÆTMģsozŋŅ}Xg믨éŽūīø)±äš1Ć·#ź;ʊ=ū³wz!æa&5ā驋޾öĆģšCl"1 aETö÷’¾ģ¼Yo›õPŪ‚^öS­Švųęß·č7>6¦&¹¾FŌ£³»ė+‘B§1hŹ54ÄÖŎ˜–×’Ó6lRÕēÖäƒk{jĪ}-E_9©\¹Ēčm÷JĘa¾1ė—"Ēw¦ŠĀŠ=>>FŌ³f¢‡»Ķ¶ĶA'Ś6£ŪÆ"ŅFż‘H5 ™Š6aØ;’Ü_STĄāŒy{’5āę%ĘcZs0‡l¼)wž 0&².żš`Ó½®+§m¾«†ÕY9dV¦ö½jA[u›ö\g}”%-žb];„ŗšĮ}ė_§"EKŚjzŧĀ>U,uÜi«{tŅĪ®¹é+w< £8ōgŹ[øc©šVOųŲŽČ*lŒxƲ»{fQ»_hĪ²Õą ²²?WąTI՚U5CūäčfK*/ņ…w%¤>’“÷}ß©P&˜ŹūĄ‡ā!‘ø‡G­ِ“nZ≻źn)ØłČ€q-mX0Ė@ž1ąŠŁ0$§ŠÄŗ{“œ4åścyco,•¬FŹ«ØūԐrßѾčKÜß$Ó~O5ŚÄ!ŁĪ—eov mĖ ›Ęt‡’Ś”·µ— eķŃŲ#w$}Ž‹E×¼±Ēf^;T#Šøżū¤}«.'µ¤Łó,ĖO°y–ŃT·dźĄ]ė3CŪJWŲ°DÉr€Œ$J"m‰CŪ ¾:ƒöČ T9kZ†B£{Éč¾’½lÅäŠDCŪ¼{9+œ_ö„%ćŽØķJ ĪŽ„`Ķ»īZ“¤høOz(ŽŌSČø.©Š|żyk€J;< ś8ŅåńZDE>°¤źdų:‹¦“­Xłš+Įoc¢»ˆ’]»‘+R׌ū„»r ų“"Ēä÷x>^”^ó&Ź}n¶É ·?W-…ß_²\ū[EgÕŻÓ yoŽp\VĀ}ɖ"t?GŠĘ1“—šó–ļRaŽjøćŁžŹ®ānt`Ņ~óŽtĖŪ»$ķaÕ·7åŚŃ&9õt“?G̵ŚīX5iz_ŹS±µ.+¾ƒoģѱnY‡nżA…(Ąŗõ™TevĮ|YM®1”?@˜ėvĶ›N Łły³»š¶æ~Ź6+R6Š×ńˆU<2uč8³ öķšČF!ˆB—!ī …}·ŲŹnŗd.ģŗ‚Ļü‘¢DĆ;>°dĄ˜‘}¼[äŖ÷Ģj)ŁDŒŗŠī ±,VķBҾ Hß“gć7.»éi™¤ß°T¼OIĀe_ł„JJņ†DžŅĻ› ؖä@Ž›¶¢Šy­š®µīm§nå#k.»#oҐA/“ĢżĮ-ę%z,¢¢žģz³:Væ8L“[MœŪ¶›MOζjќAwĀņEņÖ¬…‚t’RüŁ`ŗŻ+̶Å=æń}ƒźf­Ø˜Q ö²÷ĆÖ!iE»”ūżSé¦.īfGŽĶł±­jŹļL‘öwҘćCæ]c7§aU!čß: °Ŗ!2š +\¶$X"±¦’ŖRČ$ķ;¹Ųų؋ų¢>%;Œ–Ō$*źbCßŲ»}»ĘXŪŲŚ`¤¬jŃŌ6¦Ā\H»*tå ·÷źL»ŅŖ¹®ģŽējÅ޶Žķø$ņŌÕü­+Z*ƌo ĻiĻ)“K°OüBĶ€Į¾ąõńĘt›UKŠ}¢ŸŃw/ˆ) CjČ]Ÿ:ī÷ĶY6¶ź^Öŗŗå_‹żŌض²‚‚‹uÓuÆł–š‡¦7)“vąÉc{&-‹‚“÷’±+¦TĮ„Qē“EŹ rŹ=,?ŽŲ¤xŪ&Oļķv9Ģ‹Ac»å4`P[Ė#ŸJƒÄ@6m!,—ø§c™ī›Ö׋qŠ-{Ė’ŌŠŖoöĒ’w‚Ļy¼'UńpƒŹĪĻaė’’³÷^O’\Wšēļŗ ©3KŖ A°ź¦źīįt÷Ģö˜ķ®ķĢZŁ>ģĖžóoģó˜ķŚĢ¬M[÷Ī’D7I I„ÖŖ“ŹŖJZŗøūą7<ÜCeDdP §ŃX¬ŹŒpæ~ļß9ēūdģ81iIvŲē9VÕ,īd$CŽ2N$ÓŹxµcŅKŗróungl .˜£i3G›fćh¶$«ų|ƒS5‰ˆWu<é°GOĶõĀ&‹4ą‘V™’ŃīiEā9ØQi9=ŗŹĖü#X{—2‚‚ & Öŗ§«Ž}`(ŃH°É;I„ĄµDē6W¹…Éža]A×z¤aÓÄ M’›¼Ē&>łŃF¶į  L²oęNöĶDņYP j \\žb ÉC̉&æ’‡üž›ü„ó*qœąMtņ¼F‘*?&”pŲ`䫎C‚&¶b¤Ÿ2ĖFĄŠmrQ€1¦ŚŹQ­¹ų†Ó&6LĆ/Wš°¤ÅĢk”éM~ö×zč¾Ī6EņCb7†$ īc1Ļ·iŖ"øGžNh¾Ä”kŚ…C‚ĆēS¤¤Ģ;<äkä°x" %Ą+ŽŌMD(†ŌQ‚¦…gø®8yĮ| œ¤Ä-N³fžŁ£IA‰5\U8lr™MåN8@ˆkŲēŠ0aՔ RPØņ€§x—§Ź}™įŃg)qŒ¶ķ@ąƒöm~Ī“\Pqt–į 4ҼĖ.5²h$)±Ķ Ī‘`›2ļS¢­:»|t>ä.?ä™CO  Å. €KW~ŚĄ”D‹%JxäÕ{“Ņ.‰ˆ“čwr2Ŗõe°Dzߌ»O“t 0—j8„ ŲmęĮŁ+€&ugÄ |v(Ø>¬į}«xŸ·1°1ёtŌ>ņi”“ĒąŪœÄ'`³JŃą īńSŽā“P¶ģ:‹äx€F¢/÷Іę¢—*™”ł¢ĄŚåhÅŃ*:[$ép:Yīp‡§9ŪwØ·ˆ¼ĒG˜<Ė:“y‹6 NS$ƒÄĀǢư€6‹¾ĮIīņl±¢\ˆ®4Šķ ”$z÷d1Qj#` įAgŅ3ó'ҌŖF±ćzatŸf8S>ĢYé¤ÉPCĒUŹÉE ^ā—8 ••SĀX2T”ōC7Ö]ž‰·č`*1'12”żņ2Ā6éžģČ`F Ձ£l’뫤“§ĘĄ \ęźŖ/ß$Ē&’Ģ8“Cz•īԌĶŸ”>Ń~;ų‰“¬ŠPMębco:MʤI«]°@YĶÖXģP'?õ č! MvU”ßÄ”ÄJ8LŃEM®ó¾źé40U›mŠņä{?aA?p“yLö°yƒ‚D(‘ö†b±ÖUÅT d„½ö ‡šBs†½Ńį8†D'AC“ix<ĄĒgŽ[lštŸcł·ų66’ä$ƳId(šĄfč;X”ų5’6?ä<.[Ģ‘Dcƒ%vX2ŗµ*LØb¢į£“8šgŗ;F >¹óė÷ņ.§x~¤ūčf’:.ØŅš¤É6užį=Ån5„Cō­v#G©ą_epVŒNżqb)čeƒ}"ŒqĮ!›ē4iLåzµ„}Ό%«€]Ž”LBÅĄƒ&m:x¬²H†ĘįיWƒĻļ‘ä°øŒG‰§Ép‹HĶ1ä:œć[”µn³O‚$­>ėx Ō«zD„¦{ub¹ČģFĻ$Ȱ”ć”Q¢AßSį;œ¤B†+|‹ Ö'ŒŸÅøuGżK“T£Pˆ°č+—ō©ĮŸ.ńµ±zx²Į}ÖčPĆ<\ÖI²EĮIī(-<9Œ%ūęĄE Šž]/’x|¬„åGžĻ<Ž‚yÄ`„›$É0GS‘ŁK üœėxüž’ah?œ†A…+\Å'.–x‘Wų^ŒSHPE'?0aŲųæ+&&€…¾ĢĖdm֏ļ‹= —Ā\ zĻK4Ųd™rŹöV6ƒĘ}²œD"ŲG2kœé½›¦ā“˜ī2ÉSTJ컇7y‹,šŹŒ’Tł[˜Ō@ÕcZäų[¼L‚C‘ć.mi Kéįć»įž×(ņ1ēų1÷yO5”;Ÿ"ĢŪz“Q5N²Z¹é÷¦ŃÆé ĆVC‹x…&·łgøŠĻøÄå° įš$"‚ŽwŁ•ŗp 1)VŌԃTŽŹdŸĻ(i IDATä_r‚[¼É’BXb“ÅP<éqætž‚- lń‰X‚(#“}“L8§°Œl\Ś\f…;¼F—“œā 6+,s5žįp…‰Ż°ģ+éy{ń‰ÉćT@—7āć.Ÿ𔇠z‰Xd¦£q‘oįŖ.}ƒ’;$Ō”‰īŪ->ęCҊI¹»*>E6H±ĒrDˆM„„Ó£Z³Ą–q”*žģkŖī'/9lč$i«R.”­øKZ·_¤ū4pH±H‹m<ֆ ަŻHÅļźöÓTČLŻŌڦi öŃ Ę?į= ±ģ Č|ģ˜Į6pųOčč@Za8zŲ ć+ŻQ…īC°É%Ē?R%„jmD*”½ĄOFØøó"ĘĢōžśæłZėi7ƒŠi)lŅ4¹…ÉIžV' ±ĻĖ”YąYE:Ž­õėźpŠž&ĢNwŌĄ¤Ģ»H*lq›®³‚¤”Ę®¦gŽm”…U‰ƒ~¶ƒ¦-1Ӿà RXčģšTŌLOģŽ£ÓD œnŽæ$ĒU¶±pU”VŖšÜQ҇5Žk}•“ø‘¬(6)dSb+¢>å@Ä#uńūč°N_dÉ åV5jlQC£ĘÜŌ9Z0:Ł$ŚĮŃ x‰’Ź5ņJoÜP,::Aå¹÷’u E§cb¢«Ÿķķ¬‹ü„LŲ”Żāļ“ŠŌgi«*bpVמFõīÉ(a“œ¹-ʈ¾ "Õ Š0•̧OŠ^Hā+Šhń Ń"IŠwÉb9Ŗ"2®Ö„Ÿė1hø¤qy›,’+wŲfmkģ²Ö† &Ó>Zó6‚yŠ~#č—\£Aģ#ĢDe$‚n³CŠ9jd” B¼mbZPf ƒ*+S» {x@†Ģ& ”BÓ×hRş£…ė@„Z TKŗvQD`ä@"Ļ)ž‰–J¬įĘĀ1FĀ:ī ŗkX&‰}ūiōć½(ӏy1šY&‰‹G‘—yH5V™:tś|ŽąĖbĄ]]?üōĄ­4I“¢ĘæäOR‹uYL²Żŗōƒ_|!`MQ¬h*·ņj„  ]&ŗé4²Tx‡,scك||e\z#@«l°DĮ?(•E¦*„ǟHR8ö‹tŠįź¬ņóųÜbXź“Ę7{aMĄDœĀ¦Āė$ÉØ†ņ U‚btæ’%“iaO`rWķf8C‡&Ė“"騌k†,-š±Œų›ÉPŸ0?$L(±€ŽžĖŅď2Ė’H`āa²ˆĆ6&Ł#`Īö‡EwoŚSa³D{ģ``æĒ²±\"*å,"³l@ ,īķP_eÖßįé° «ūYž–9>åĆ+›jw’¶›µWfrQ,ŀ~–Ņn¬¦õmNUęšpy•+蜱E–)±Ägʌ~bEÅŽ·ha"å#čšsĪ‘ē.m,ŹXcRÅųvsiŖ¢būșw&]Ö,«l+ģŅÅĶźDD_n¤™)ī²­8[G瓁>/‰ @h`ć) rŗ‰į‰’Įūe¹ŽčóŪgÕ̮ޤ…N«4#£{"–±F‰l‚ę<6Ė<Ķ.Wx‰B¬ėߣ…Ēē”Ɖk‡g)Šfļš&ēC÷d UŚGN¢n‘Ą¦H ,I•qņAµhST)‘ ’It–Ł¬§=”Zš0ĻÜTMĶ Ŷ5ūsøŹę؟¹CĶ£†5r°8  ½ĖĻI²€V&Į%m8LDW3[Öøˆ5`ĻŗDĄKVŔø4H*µŌé×Ō ÷‚ŃɏPšĆ›/°Ļnp—<&ÉņŃLCr?Ā2Los–nņOškd©c…sbģŹ9iō“щĘO°ńš(pš=īQd_¹žÖęøAóT[f›=ćÓwˆ4™G ©³‰ƒ§LĮ³ÆĘŻ«’*s4Ųä,-«jĄ‡4bАżŒY½ I@Iy–ū, s‰GŠ_š7JŅ38ų t–Ø¢qK}¶‹Ķ“ŠlāižÄ AŽ®FÅQ;p “M2ŠqŲĆ%>—ƒÉ^Œąē0kœĀ`;BŌ]A“µŲŽ« “ĆWU@/’ĶöÜUõ ]EqØŪVd AÅr¶µ0™§8Ā‘īé^cKåśP\Fq)²>äĪ,~ČźJ°TMĮ‹Ź˜‹©ĪL‡¶rbʵģ~–Ķ¢n¤ŪUļb²ŹNs‹WøÅĖźhJtlę ÆogŚĘŃØGĪņ6—iÓdƒ‡“x–ęRņKZŗĻŽTŪ½ƒĒSŲÜįcJ*•Õśš dxXҶÂų,¬”~ųģ:±KV9$?ĀŃū8µąÅjwMK·¢f±ĮElJ|ʧR1†9PƒźĀŒ’yZ¼¤źIŸ°Ļ ž‹|S™41ŌĢÆTä¤"4”J}.ś†m:“°#ѹ<:ÅėźŽ\t ģS&ƒŽF‹=1•Īõįóźe Cł£üŲż$©Q įĄugŌåÖ'G•Ü֎4–Õœ3ē25Ē6ģžuīš{ęƞ«(;ž€‘óÜrÄšŽ}“õGBōē;˜ü€—±#„ńūKŖ¦ģ©ńµiŽŽ"UFļŃ¢’•H:čź|‡Ė“øĒ‡“XPŁFšø…ŲČ ˜’Ā ’wéÄ;|Bš[¬q‘6y’6ut²HS}¹½Xńœ¢Xø<ĘĒŌi‡Jéb`:Zc•,Ō€„`~&сE“›š*œŲŒō“Dļī!CŽ­ŖP@ŅĀĘ£Ź)Å+,cąU|7ڟr‘4M:8¤‘œā >’6T0ŲāŹĮ{Źź>˜œW°õIāPĆĄDŖ(ųpo@ō >«ģSDĒ¢ŽĻ‹G@š‹©>٦įg94©#”ō[9C;¾*“‡ØzTD‹Ķń+A[åšb¦U—“ŃYV“LńnJ—¼J~„ū}Ua¶CFX $.Yr#Ö]ąņ!»œčę…uOSQģĻņG]”Ń+ŁŠwós¤Č°Ēēģ²A‰,fɱć"śę䯤߅Xøģį‘ćģ²Ė*) ģÓ8`öӏPØ=&ĪD"i±FŠ}v©QT+¢¹×c› öHāćšgeŚd‘ZĻ Ī±ÉI’EžœxØ ©ZŒŹąų»Ž°cośÜGb³€ä .r–-žćI>f/ÜżL@26n%ØŃ"‰`÷¹Ļ žB'ĶM^ÄåæP[s‘7׿ę½1”SĄŻP”xœX{šõšY FlvŲęŌ”voÆ ź1 į͟MRi5 …1D7ü «M•)CĀ€hé!ėCŪ—}RŌId)qŃØ ÷T4÷Ųåļbaõu^É!Ą¾³†„!¼ĒÖ÷įs—×ȲGzĻEŁLKI҇&"ź±,QĄ.›“Cgy@›ļŃD’!®z1‚[Ńb·*fäŽęB 8ŌØó³MŠ9ź$Ē$Ä:U’õl}QWOMxž%.PćŸćc(EDCµH|*ų$éąs†Ēv™÷oŠNhŽ$ 2”™Cā‘ć%^ēŽāvŅ ²”· ‘Ę®Ą€wpŠčū˜T9 Xœ@bęUČĮgļķ}—-²čÜäI²Ģń./³Ļ)*< A*ĀM$#Ŗź’»tʘI‰EŸ&&-*#9¶—“ø$Cå›eŠ36“w#eW‘’j8j¶_LpQh+ ähQaiź§i‘Ÿ!J–ÜįWüo#ØTME½/±Ź65:øøäØ'10øŹ[l’TƁń¾Øž0mģŠžŒ8+k$įs•,éȰÄĘƉɩö»Ģ8ž=ģM $m£\BĮf10¹Ęj8Ģ‘BSŹjZhˆōŠēCœ†ośfŃA“įŽ'O‚XāŪl;«¬“§F•Ācgƒī,A†gHāaāįPEp;4žŖøÄOžėSąŠ”†NAm4M½”¤|N“„B‡tՊ {Ņ_§óqÉ)h‡Üā4§±)S'Ēźa#Æ;ŠŃO “Īor “*Ėh|Žä<»“x•&9’ŌUUÉU²QA»vņ°EØ,S(“Z}$«/ĆVpŲ!Gz*¤æWŲõńhŃ©T­™fĪ%9UšžI\’3L'ų|ŠI!œĮéćR“)OĄb5śl’ų”#PµĮ÷ų€6sƒ|ßų"!#¦Å)L6Łc“Yęé`ć„tZX©ˆ/Įšäi«ѶJölPĆĒę"ęČøf8l%"4$Ć @āHüZ Ųé²§āö7ųaØ|.GŒėóĆMŖJ&÷Qŗ¶źÄ˜6ĮÖąŃUŹsƐĶiĪįLDŻĆA=ä°iŖ6xĻØų¤É2Ļ>WŲĮ€ˆū8Īu.tÕ¢M 4’k<É[”é`p›&«|‡Ūl…MėÓ-ō#eų"e £‰®ŗ¦,E0Ū„š‡8cĘĮ—Fö]}‚ÜT’rzl€0Č1™¦ ™ÓŻ#mĘ ’yɰ®:čø8ø I ¾Hä½HB ’Ćv•ČgķēhÓħN‚2ņt‚.¤MķČǶ¢‰y’{¤fģģRóĀŽ*÷TWżäwŻĘ#ÆŠ³DŅ×®;7€2›č,S¢ˆ2u_«ū'Ÿļ±…ĶyE2r“»JĄ³Åė¼Ä2ĮÖxYŃķČCY4“ńqŃń(#YäOióßHq™'”hS#É2ęX!‡O–oŅÄPlY]ņbL©VyŠ™?‚u699&¶Jā¶źA½ūŲā|]5ÉĪ~åÉÓQ/Ęå!Ū¬M5  š¶r½ ČÄT°(ń1Ļa’¦JūƒX"9ķ1Ļ %‚&ŠØń.6m<\6x I“u®…9ˆm„Ro”į²€I‘shü9)갔źG‚%žPŌ:efē(§J˜”H¬ˆt»åąR8d£­Tj#u4|2dh˜JžtüɔTH&@±Ä„•CĖ7ż]ĪѤ† 1,5O}tęŌhķ$ßa²Å+¬³ĪzßtŌw§ĘT¢1ł8ĒīŠPāA@ķ*—ķašu®±ĒO"šIš;l :˜8Ź™L2%Ž»ó:Ձ¬ä-Zd±Tž”…ĶLQ$&ŠyŌé0‡1 q,&r£’%Č¢M–l“RńA|Bz8§ī£ÓĆ”E’=īń]v©ac‘īPf±Æļyš÷}”Ń#¼Gy·ygY9” –Š §”ˆ²5Ŗœ˜Ź$Ø”÷µśõī*I‹÷9Ē H:¬°N›+TŽ}owžbŸ.^ŲZž”‚ÄĄ£­†ßŗOzŠ›ŹEs‰C6‹¼@XEW3ågT[‰ Į)–°°T£WĻbżKLVqŁaõЧ„J[M › Th„-ćį‘NČ;Ü[QĘĀ^³U9…šf×)’@ĀIb’„ƒd“ 9õ–Ęk‚Mžž‹|»ĀŅØa‘ $1䙚4ĆN%9Lõ­ż=6 tزˆGƒšj'Źbąs —'Ć'>Å÷ų ¬ØŸŠś8>8ĄE jt"*–h2Źé÷źr€$IØģ“Š$ƒŽÄE*Ū)qźPᮆ‹O#AĶs”’”ą‹xdf”ש`įr)ęhćņ€;h†ŪY® BOE”#fėƒ ½D'Ė>'Ļ=ģŁ ³Nm '”ōųĄ Ć6É”Sš½g±y‡ßRbŸ‘’³$č µŻŖF•ŒŅµźūxĄBߊ€TPŸ Ę&:s|ź*ܰ¬c†c«:g‘¼ĆӜdCU)ńküǦNGéĪKl®r4uÕ,¬Etū³ ©“>‚|ŌVČr=6ŲŲ³Cܘš²ŗ™£€‘!ö›·/Āi Ę*]‡•Ąįs.‘ĀEP§Ę*mīpRuŒ£S¶q(“9ņ-\ā÷©R0ĶzĶq“óœą šSABE»»ųJĀ”E“‘n ‚2{ŻŃCµjó˜F—“Y§ƒ‹” Ą`Qé^v C› M›Ļ؅al`Oõ Ekrż$w“~›vŒ‹—!Øō „yĀaņŲ$%ŖäT^¤±EviR(¾/źlūŲR$=㟸›æŁXXŌh“I^(H°ĒÆØr‘?W3āqµ`vƉ žEæ§N‹•ŲŠ”fŸ„>-Ćīæ/ŖæÕ±ŲĒ „¶¤šBėEx401I³Ą}ÕŖĻ„UĄ ŽāĒ.:fĢ}Œć>/ćRe ‰ĮE2Ōø‚•QN>14ĻrlŸhƅĆi²œĆāŹ”1DDƒ[ MfÅ!7ł,V]e(óy5•¦Ī‡äX¤ŽC×-“f0ü¾%>K\¦LwX!(~Pļń~‹…ŽĘ799į *ڜGØńIčØMß_-ˆRlT©EęŒGqØivK›eŗ›:Uīb›X¬„­ ݃’MlĄć õĢLžanHö2i“åčkOép‡\MŠ>éCĮ 6)ŹŌ)`#i ؁(Cł„ģśīƒFū;ä#ż@ćņs”Źßć2}›ßńGÖų÷dbrŠŻÄ:54r#53u\š1™*”z“™Ąŗ’®S¦„E“ÅūŽŻė8äšqéDĘ:½ņžN‹ vČ«€zGńūīCęJ$ČāPD²ŒĒē\ä›äł4t!iO—DÄTIČĶä>w°qTĶ÷<‹|LOŃf Ā3Äu|±[­ūr3”ŃČP {™wI³Da,ÓhĄSŁ yäšiņó”yŸ‡øC5³§;ž'xØf˜Mj”¦¦Ÿ0H±G1t%ć@‰$Ć6ŲÅTōå#>żr܇ĮOU!Ųåeöicį³ĪsŠ›9Ś~jJüIā2Ļ@"Ā*uųĖÅ:@NĄ'Ė6691cüN– {X,PSPŒ['„ ²ˆ/˜Y’S÷zrš4:\ģ9; ~Ēłß1±#ŒgR™ī]Ņ,Øųyųs¦ŠØé;-ŸĘä EJäÉ+3+‡d7 ±Ā%ęphPŒšb{ä_Q1iAU c_GĒõ‡Q4F %%±a²D“ ņĄUž§A—\Ī’ć:­Č_Õš”˜£ˆ¤Ą%öIr‘OłĮ'˜ģŠÕ 1ā®#īKå—”Ę$¤HKm” $X#ź\Œöį Łe~‚Ž”iSqgy‘WxļB:ŲbOsŠßņ—K<3„Ä'É:>:[“)Œ8˜Ża1‹ūü†6 ŠŻX:³{\.Kxdpx…›Y@'Ķó<„Zv‰Qķh“ł-7Hā©AĪ'ŽœŸX²ČöŸf³B·-Ž£8s5¤«š¬ŅęfڤS&K>F2łEøą}ģpr"L#ų÷ڈJ§Ļ.[|Ęēü)ŗķ ZčpöiRP™Ī ĪßūœEņ*Ų-9hœ«ŌIpFÄćėÜƤًŠ~źcųh$M•6i >ĘĄD ˆHEr|N‚5ŠTńy?¬ģH4V9Åꬰ’SĮģ°Ą;Üg‡ßØĢŗŹUŠ‘ I¢’›’ ‡Żä Šõ/Hsl9k²CļL'é³ "l“Zˆ·É 0•ūx(,‰ĘÉ1Æ+0#öŌOaa“¤ÄŹČß ŗʧź]N’<Ÿb›µ)G|D«ķ˜ź}.A’ŖS£Ģ¼Ē³¤h‡QŒ‡ę ¾?tūMs¤:čüŒ:OÓĮ˜I„9X· “>ķ€ 4pł˜×iRäūü;>eG™™ć[FށÉ"ī+8ÓQ¬&.y¶‘<§@ē_sŸ_"1łqH<'“Õ¼ūīOgŲ¤qĀr ’ ānP$”²ķƒū|$‹öyĄņŒŠ³^+THS'cm’ «¶V¼'`Ā~”Ó V“BCįņ2r’F‰?Až9RŅŖĮ-J–ąń!ģ]ʤ¹ŹelRXJ‰D*”·ƒ÷ø†ÄāWx ƒ$š*ž§čj„4Éb„jšŖīł˜زO>RÕU»Ą÷C0^pü!"c<Ź ‹Žīi1}’ ųV B$‚eNó&\¾C‹EJŠreT¢«³0ögfæO›!³ÕaĢĪ<óH܉'u‡ēlĆŽdšŅļņ[.Ļš RtˆRŗłS˜¬Ēå’aWYrvEøtV8<É·1B%Ą-ŚčH >ć#Īš]Ō`•'FIŽEÕ„å8§ÓŽl|ŽĆ#‹ŅŁ·čŗ·¶šśˆrʐ†*‹C…¤"ŖģĪ–4x3¦Q¤÷­mŒ¶ wqĒ0ŗ”}Õ diRĆÄą4ßą·ų€ 52cA¢@Ģg’‘.zE˜ 31žĘmp_½¬:¼Ēﰐ¬ógų€«ų‘EDHÕkq. IDATē‹ó讛ʠ¤’‹Äć—ģń[¶H±G†*.‹$§XSä=G8kźL¼+zč¼Å),Śčå"RŃ:&Ų§Ķr(‡<ĶĪóɲ‰?Q<|”0–Ä&Å6§pŌŌŽA2‹¹H#µ Ē6+N[I|ІšŠŹ>·Ü½‹†’—½Ęv_ćmP™Ÿ0CÜGG'…E›$»aÓ¤oj‹=,Ź øbd=G£sĆj*E9«GBś>7jƒ£J¦ZL?'Č(S€Bö-—ÄĘ`Ÿ[txžgł>%žo2ü{ZcJYĮ`”÷I“‹{DÓī³³`r‡]*˜xŹ9äYE£F‹=n’$Ę*gyĄuÜP”0š‰"śÜˆŒ Č·Ę:ÆSD§‰‰COi`†(7vŠčšĮO wŹS‰®Ä Š˜@VɶęN Ž|›=2h¤'˜üeåØ2w¤ļ$īßĆĒTLwU0ŽyŸš‚¶ŗåpmā•ßb©Æó®kIŖ4šIŖ] …|_ž0”O–" ” ŅY¤HeHŁ}Ųo'qń©ā#É0Ļ=zd“¬Ueī*īkw(X|[If ķxAW£C-Ō‘ŽuŲ‰c`S>®Hüvć]4‹ģs›Ū|“'˜'Ē_ósīŠįģóē“§’̲ŻG]/ üėֈ,®š²b5’,rš]*“Ųęt„ƞ&‹Į)2Üą9oSĒĄ5½9rzńGo„Õ/5u¼nsCq’źŖTĒĮG¢sNi>Ŗ;Ó(«Sp*÷ā½ 9PEZŸ ‰‘U\Qć$möČBFĮżĀOµÄCCŠf/%°JƒŒe²8±+Ö1CjŅØDX‹54*ģ*ųhNÕ2RĢųé šŖ®Ų„­LL 5ß­°čų ŅXaj(Č7 D¾ĒX88”‚łØPSb)FŠį€ ښdaR¤Bj»ś¤{=żųf ƒ‡«#ūĢaRēnńSę8ÉežEڬ“”"±Ńhé#›üŽ&* ČL—yų“©ń –ŠŃ€=š¼ÄTł”-„ćąį£ć1Ļ š\Ąą &)j‹ū3 }¹;¢?*!uvJ‘#jŠ6Ć)n ¼ˆGū‘=ipœĆ™š+®§q.U‹/TyČņŲ®G$§"…äi/ŸkÖ\Ž"čń“©'½GnI…^¾z‡“¶(’ūIŹ ‡)|\Ņjā©É.›Ó°lI ģ°PŁŖMC›ą}öŗ•Lt|Ŗ˜äØL••¦°ńi*Ń#lU–S…¼ƒg%ų©Et°•0ÅØĻŌƼĶ`}Ž hJą|R4ČPå?ócNņCžįü?ā;c8z ä£)éĪQń‡<ōŻwp°U4|X%āŽfp¹Ę‡±øĄ ²4øA—y’§łń T_—j.ŪžaA‹¹Ŗ”¾č‘²£r!ż,>½‘3Ońģ īń-ž„N“5ŚILŖJāaœ£å Äqp HŽźdńx“Ļł.óü ĒŪĢń܈čRŠ$?ĀŲø#j•s‡r Įégl²DŠ'écg:.ļš{r\ę«xH,ó9vłgY£®‹Ō9É7Tk© Å< ŲåÕĆ$¹ūąĮ’É ‰Ą¦‚CŠ+,Ā!X&»'ŸżTbFE°Ó ģŠ"sČVlOž2>Ö#`ė?æmЬŠ¤'s Ó)j}Zó¾rbĄAOcl}e'˜ģŃę“ Ņ~<ŒJäi4lisŸ]’J·ē "“.] "˜xT¶]W­S N{$X:XQéĻ‚¹č- ’ģņ{¾‰ÅY¶ł”ƍŠ5ęGžŽsˆøLSEĮwy@ƒ«ø$ųw¬õсOŪxĄ >å^` Ÿll6)ŃR‘)} AŠ%4…ÅąW@ģq‘ÕC Onæ\Ņ|ƒ 6čŠ"ÆČKõå`ŒĢu§‡(õ!ōџń”‡(…$„0Øxtļ©ŪmåOÄh<»IœŻ Ą„°ŲQĢ|Ž£;¤R(ÓÜS”65jl’V¦ćęā{wŒó5H„Ąū£ĄG•Ę”Æø)¦]?ćx˜ kĀ”Lć‘āI¾Ī>åØk«=‚±Ęƒūa čOŒ±A™›|Ęyrh@•h#X?D“Ƒ¢Ī}®óS.PfA›2{$øĻUd•ūįFÕ9ÅY5ł*Gõ’'hŅĘQ„ōÆŹ“T(QN«h×ū\¤$`›õC®¦DĆ„©īzōĮM³GV §Ī¦XŽh,)…ÄGw5qYœ”Õųń V‚šZdęy4t: ¹Ą å@śi`£=pAųņk3šR&™ķ»Œćddl²Ū™½Ļ9ņX±üųoś(±×Wd;õģ„õeöśō%†“Ē->¢ˆO‚<8K—.ŸpqĘ®}I“V¹@ —YÕXčŃ!‰IS¹Uƒ›hxx$h±Čϱϳ¼ör~xulL:“x,M@ĪjZtöÉ(žßƒv•F‘tLƒBĆDPå*ÜĒg™µ±÷ܝNŠ¢NŠeī°Å<§ŲgNiHŒČźh䊊ÉŃ ‰=Åą£DGŅĄ¢EJÉ1ƒG»Ļ06qpé('“śJĄ¤€Upyč“°±#ļ\b°Į뤕fGpey’ŠD÷fU5’4:4±¾P’ĖĆ]Ęń2ńGĆGĆ£DéĘŻß)Pf‡„‰7rÆ>€Õ &P5R6Ļņ[VqØ#żä³8ÜZ”öw‰ĖUnq“[lŖéÕÆĀ՝ŅõUó²N’6·żæ|„FÅ M‹Õ‰}’أà äUOŽD§ÅģRfŸ'xž3²óńqŁ”ŹUīŅ E*žĒ‘÷źR£„I ƒ|ß<ÄA“M~Ć.§1(Ąc  ¾1‰5² &KĢDŌóų‚¤Į’sŠŠū,‚ĘK±VIøĮ.'Õd–Ą ID¢;2 So†Nłø¬–qÜ^”Œ¢ŗ’»Ćāzw$åؘ ķ RÖõć‰`Sø, ćÓVløy“.ē©óKČYrdi‡õŠƒ •…­ś‰dä° k<Å6²<Ļ/ń9ĒYnqš‡ j°Øņ)t\’*^ߥ:¶eĶįĄ ”8A O›į’‰Ÿ±~(Ż?1¦SMФ‰ßĒĀ4ź“’ÜåMJ$y‹&ŪŲēcŅVЈĆót&Ųk 3Ēg|@‹6Y\¶€mŠJęø?w€-ąwųŗjīĒI&Jt6x…üs˜!v!&# ”`€®ZĒÓĮäyX”œmϹޤD*BzhŅę:õą?>ĆŌ%vÉŃ aę£×Qżļd 19łńŗ䘃°B0<>ФA{ŸŹ^†ŗ…G‹ ļ°…d•»ÜcN1É$™ć"O)U°Iž¼÷§h—ŽĖ ¶©ņ:OpŸEl)¶” 9ŠSš€;Ŗ5Ń8^›L2X‹;Ō'ˆ­G­ŗ‰N mėŽžL5S#8oó;¤šłI.±Ę.ļšI4|LN“Įåą!· Ćģ}ŽĆ!”¤lu,\4C”ņna"ŲeLø/¦¹,Žb—’‰ó*ƒXVyŸKūµN"¢łžÕrB½K'¦b#±(óGl„Y.ØįSe‹Šr¦ŻjC[Cc…ź¤Uųń9Ęq~•Że6±FĘkĮßīŃĘGĢtdzKeŅ™HPKÄ"bšG|4š¬pE’ÜW5Ųb—yčL¹m$)*ŌÉćaq›»,“ę Z<‡¤É‡˜“Cb>ˆD ŸÅ1>Ź=6ā~ęŌā4(š§f’B“>į*Ež† ~ŸŚJ”ŹŅŃBŗnóUeÜ«<Ė3XŠ\ūU’äذþ‡9ɆNƒ7ø©rkMM/{“qY Cbū]b°Ć}•ŸTä÷bč¾wÕøÄYœ¾."7\s£x ¾z— ¹4Jų¤čõOYģókš$•ūpŖjZĘQ•Iƒ¤B>.)R”ŲFP&„ÜŃń:‹_ ’Óć!p°YR8æ~balēFtZ\£N‡6?f‰eNó×ѐdé°ĶÆł—ź)¦»£Ev¹Ė;œ"‰ĒiÅns—T10ŌČ õ‡ Gžt·GUĮÜCĘņ‰>Ēė3˜4Ļ<Ą¤Ā>O H”@ž[,5ĄG57mč·šyČš4ótØņÉIģŽ*ž:-nŅ!‰­fVx%n±Ęó±ŅØbSąĢńÄȐė ŃĮ-œHĮ<:ݦ†‡¤„:%æZWĄ\DĆC#sŪüŠ:Ép«A‡užć ¶°ŌŠ9“I`ą‘ä wŁÅÄQõ¢ćĘk"•į+ 5½R4ÉE ®ŁdŚ%ųØ ŗBƒŸ°Ą<bY96/ńyČÅš)zØūh5µ ž±¹ĘU’üˆ3˜˜XTłˆ“ŠU)HŽ18H)cīäø¹^÷¼Æžßݟ<‘¶’©šā,ėQē$10ų#U9‹5„Į)hļ¼NŌ£i°Ćg\,eīu:Üb§Łć wš4øBZ1°Žß©:Ž¢ENq.„—XEc Éś“r4źÜQüG[TgTcō˜łŒPĆa! Ó¾ZU”‹ÜaYU~ōpט4x•: Õ}„Q$‡@R!Ļs4Ø+"°Ÿ ®ć£Ó¦Q üļä Ę»ƒyĮ6ØyN¹©ƒęŲél—¹ĶCęX'‘ąķR»]`}–Tē~`Z4ŹÜu.{ģRćs¶±Y欢Sį÷”© +…t=6µ?.Ŗā˜qa™A”ńb„ ŠIj‚n·Śf4Nžl££Q¦Ć6ļó­”tsŌØįPašwxWåz„ķh—wĀę4e~Ī:/±2V-QąqƒwXCSĖį,r:5mp¢Æ»N"ɓcŸ&Ś“ČĪ”uöėjGļ*…‹¤åWΉhXŲįč­T=tuž‰ åĢuöČ£©NKŸe¾ÅŪģ‘Ą¤ƒĘ%\6TŖcx ¹é‹ÄŠ Dc_1ŠĶV–č3ŌP$:Ex\&бīó&§¹‡Å71ɐB a氇Ļ}^ēūC©%¤fŖü‘›¤pHc²Ī<榌Ę@Z(±4z>¹ a‰c_uH/øøø}ū@āįį…‚KƔŚd„ņŤĶ/øK‚˼¤Ü·äǼŒÄ ‰Ė&mģ!²xr~¤X©Dg“™0_čźŅŻåvDē:˜cŽįæp™ļÉv¢»ūi<Ž$©Ž“ɇœćYU鑜"²fó<÷ł>ė,°I“t_żĖŸ°•cx»| ¼āD‚¬Æ^ŸN³ä×ģÄDGCWŗć+°…E‹%~Ģ®ŅͲÆō1 ö±H…;SC‡kēWlłŃ&Ż;Žf+·hNMC"ŠŁfS‘f’›üėü?Ō•Ā€@ņ)æc_™ó*?RäģĪ;’†M,ę0h”aóm ¼JEĮ#]×”nŲ(&2 Ē'’ œ£ńpČScW­·©Œgć5y3vł gLāÜąsŅ"Ļ»č|[}Ė9ž–×ø Üćü9y:C«n‚&óC̰ …­Œ˜Ŗuw^%pQĒhšmž”4ĪHcmqž;ģ* Œ@ńż,•ÉźoµK„³Ę_.Kl-uN,L09ް4A‹öˆ€ī«tE݇ĶŲĒFGGĒ`Ÿŗ jlžVõ¬'9‰Īƹ­:0»d#LtāXękĒցt ˆ`‰¤"8›eŪOw¤€ö „n*˜ģ(Buü“d™,0øŹ/8ó4Ų¾Īł!‰F›ß³IF„Ź&ĘĆ"2īh!óŽĒNļƒ ßfą@ZXœćŪ4•­³EA† .{č\ī…ŖLżĮ głŽäwxdHŖ|į /†ŁD†Ÿņ ÷1ȰĖd™—8”ŌFāx‘ūC&N4\Žē!‰Š½ µ3¼pFB„¤ ĮæøN‘?cy( HׁŠv.0yŸŒģ‹÷ś–)Ņ!”Zpēh±ÉźŠq\ūķ2©L+®kłÕƒ®ddś¬ƒ§*H>ä4LLttŠd1Tš’”¢Ø†$]!Ч)ā’Ą§B>lp9¾“2Ęq­—ĒČr•\«Ą§Jy&¾ŹīÖ¹ĶKŹżt§2¾Ę‹*ę“<É’«T›»¦qPr‡kĢ«īŖĄ™č”aÕCDœ†˜(9~łGPłXä/pq0QMZ)śõŒ¦?0įņư„Īy“$)¤¢Ć±hQa—µ0Ī4øĄmå®5vłG^ą9•=ÄUIü!½G×ųIr0ź½5Ł×j-˜£Ā’Å:AnM¹†„žMŖļŁć=^TłÖA”DŖzM÷§M|²:¤·MĆĆÅDĆe“»HŅ4Õ§˜$ŃńiM,ŚzÜöœO‘e^„É_±Œdƒ×(‘QĪĆP®5x#:’ŠšjŪš”š¹¦4‹:Ģ…ĘWc‡{ģ‹čޘł ƒ:“>«Ł“Ń%:K¤g`õIcõ)RH4Ģ‘f—XÜć]Öł+²‘Ÿś’Ł»³/IĪ3=쿈ȭ²ö®ź ŻŲ\Aw‰äp$ĶH3:’Æ|ćKūĻšŸįKūX¾°„#k4–fӈš•H‚bGw£÷„ŗö%×_䗑‘YYÕUÕ °«Ä!ī®Ī̈ų¾ļ}ßē}ŽēĻæZ7™‡RPłŒG‚UT8ØāG,x ߍLęCO{ŗ.Œ×½žŠy5$¦ōœ®Sm‰Ä³¦½)ö'ž•Ó|Š5§‘ĆO ?ń9•‹Éō^wœ#‚×vÓ¶™ü) ’ƒ'.šįśĻ³®ģ†’Ż’”'ÅœšóE7tógžH½ć='żó U݆~õĄ¹h¤C»£­dIęMš‘Łr"8’tµtŻV‘(™’TŌ?½Ŗcp/ڶŻtĆuU’—E¬©› ąUbSU5 xÖżĄ†Ŗ;j¦$–ü­ėjź¦ŻÕ5Ÿ?”čXß­cßD¬ķĮ%IĶŚ‘Y>`ƒ£ū(ÆD¬eņHŗ«+õ…‚d],uAUӟšßõmõ}%M2‘®Õ>J¹Ø}©Ÿ>j•Ēø{Ņ5é¢góń¬č@ eO{%č×FįīJŦ}ļhŖłcßō@ė­ūeKŒ’)īś7¾ļåx¬3ĘŪ­«T s¤yõ¤4Śƒ|X-1ķ–›ĮĶŪPE™ézÜ7ü2ō¼zŹu;Ŗčäb‡ ÉŃ®•³®a! Ķ5rNćdaoLˆLŁqŪ„d Éąø†(ż–¹įg¶Ōu$VEb-œQ3‘§/sZž­9×Ķų¶ē}ä¶JbėźÖqüĆĒ#0H˜z×7öČÖ{v9mw‡t/;t#’iiš8Rs°ć) īųņŠā{^¹mƜē}ŃüŠXŁP-‘ųžU„Pw$yĆ|DńŪŸōĘČBöŽņ˜–-;ŗ&ö Ѿ±–±Ŗ(ø°õÅ)m©›Re©Ųk¶üc±LjÖ¹¤iÉ5±DMŁßkųnčd8ėŠ'v}jÅ,Y ̜¾ć\bĘ&4uUüB6dæ:pœņ”'•rh«'¼×“i^Õ³–\SĻĮĖDģqļū…ÓžÅ=wæź®{¬°’ŚÖuQPLuLnŽg f׏Į6•%.«©zŹ»ž“sJ!ŲĒ#ĒŲtŃKžmAźļżĢ¤%™Mµ0G“=@‹ŚĻČ}¼6Ęja „Źę Ėāʑ>£cMķ ōŽ7Xš/“U‡äĪxĘE_sÖ·„:vö8ģ{J+°^Q·h%Lxģ%S÷pØ0Ģ7¼Q²1×xŌWŪŖ¦ %‹X²erß@ŖeĖĻ|dQBń@_-¶ķcka*#2ē]©ļrt՗“¼éZ®¶5ēU/:L‚R™)­PmÄˆź„§“¤”žčõk¾†J{Õņ)+޶® ¤ ]‘)ēmh˜ 5@fGٶ¶e3xQ䆚D,•ØśHjŪ~xHĪ`&2%²aRŖ$³¦iV=7¢’,#mR3&Ž!|5N‡8 |ǦŽ)‘ÓbM?3ŲVq”Ļ2™²ÄŗæV‡eÆįŽP¢“Qaw@~‹5H|źaÓŚ£T劝8Śćī8é¶IIž÷S'ü¾8äm{ö=󟖏\·¢£©2˜½µ‡żÖóš~ńæ³Ēgō€H¦mÓIm'µ°.ŽÓT¬Ē­Śō‘+®ˆ-ę=¤Ø°™“®˜Éńé̌|ģœó¾ іųŠY—,łĖ§ŌĆŁŌÖ± d‰Ŗڶb™-å!¦YWGÓ)±mgr×¾Õ ”õ3Iƒ•Ōöžņ˜7m壞mSj…Ż=½¢c@Hķ“ ­OFœ™ŻCB$’ŗč®8((ÕóŽGœkYEŸ*ptPČ6M¾MZ€āF³Ų©#t¦"ę4ýģh;±gܛÅų+ļ™6„’\ē‰g=oΟŗøü±i]ūXÓ3&„b/xĘŗYčxÜRU· !±ķ—l˜ō”ē$Ž÷šMU_ó²łüxJu¤z|ŗĒ<.³®e^يŠŗNØIN»i.hžNĖt%ĪÉģ8ēYŗi‘'D&\3ØąÜ£”?‰¦ė¦,żOiŹ”t,›‘™ ć•ĒÆöHd.ś…E_q*@Œ©®-m HCµåCė&0€¬¢”j¢_ōjÆ[“aŚ–X¬%5H™šq¬+ŽLĘNl?čć°„iņˆćQ‘USF Ÿū¤,—§ū„u]•@ŒĆ±· z(¶eļ(*ļė6ķ %4,oš–ź†®VīČ^į#öŖ+NēGĄ(ٹ7į?§¬­œ÷–2]±i-?õ:+µį‚²ozŪŚZ"+¦Ķ‰d~ā[Vż"Ė®[v֒ēÕµ|ĮtAĀ0s7::”I5MRųłTbG¬BOœ ƒW³ ÷’źZQ9²ÜŁx'ä{/ķŽHlZl"X÷$CßĆūTś³Õ©ČD`.«­† łčPŸŃ²iJĻXō¬ Ķ}@‰÷½bF¦¦lhIvu ī:©f5ļ‚d–Y1«įg¾āi×üƒ¶/›U·āē¾ģ¤2‘\7k%™Š=ėėyČė€Z« ŖY 4™ +ŚĮ{3 īv]U‘«.éØåīZ“(=“E@qīå‹×°!vZų^Żc'Ä9€Yoøč]Mg¼čK2«nØx6–‰­øčcW-Øäį#Ś• f97®Ē°ksé³ĪųP-ø£B°y4ø‘Ē4€ 0ŲXŪėž9§ßŃ[WYå>są÷–öŖĢ“²7m‡d$kīżlśŠnĻTź¬Ē½mcčOŅ ±>øÖĆś ÄZ¶ŌÅ:ŗžSёZĶ]ßĘŻ’®æĪ'hb©Ē¼Ķ[F]ÅĮĻ”ļüP<ĘoŲ0iĘY›®ŗ†š_ėų§J:2±?ņnI}JRwĢ2łč>īi]bISEY*Ņ“„mFÅm'Ć_¤āļ|Įī£*Ų»“[uBU*ŻSTńį% ¶ü¹eSź|]Ł.[ņ±ÓīzĪŗn` IDAT|Œå¢'ʤoE‹·øNßŖŗžRETšŠµĒ£B­?öV_Œ?ђ°lŽÖ§Š{eéĄ¾ć½źć‚–sŽ6ćWAćs<ņ=äµnjh.: ¹wH¼ć0ĒP&ҶcBI‰o†Ömmß{ܕŖyūXŪ5Iī!Xü~“¶] œøxWčŸŅuя5½Fcs>öKO9)’YtŽM%]©ÄS¾s(ßūż*»†ŖI+źm-5‘ė–”‚²V„’ 7|ģüńĢFXFĶphdDzņčĮ›–”-ŪpB„ w]õŽM‰Ū>6ᩪi5ѐŠŁpō#śį£,Ū–;.:¶‚‰4„K4½ēŁĄiyš' tĻ£æRĶ ±ąšR7<ę„7¼ĄK» «ć°c—,[ĪĆšmŚö¢w]Q ü—Ć=³L¤c[„PnZŠ©hķÉēŹLyĮĒAü%‘Ųļ0Eé}Ē]t7،õz*éa3qĆG²0AŅs±~EĶy©ÄSž²eKEW×ņ•¬éØėjkĖLŖ[ŃöŽe‹C5Nę¦ßx<\½ė8ʊ)źÄf!<­K‚†Ūń|%žĀŠš®é`}Šń†ŪJ¹ę¼¹°:#?ö† JXŃPHv…®®ŽÆ8õ¦[¹+ū¬A? <|ōf±Ū^Sö“ę'čdŌž°ÆŖm¦xč·­iXŃrŽ%å1įćø`ؑ–;”:ĢDĪ»é®mķ0WgŒƒ^OoG„0żŻõægVŖ½‡”zÆĶüžÕ\ų<"Gų³†č1–¤¹Óušģ¶HG*SrĪc>ņ±©ÜÕƒŲ”Ėv,ŗį¼/)yĻE””Ōœ}`Gm¦ź.Į\·Œ®)W|ŽØĮõT̚z["uµ0wr˜µaĖŽ)Õšœęu4•­Kż0UĘÓīÉ!wMG=ģš²Ž—‡ŗuŚwm¹3‚|dł’ …T¢”ģ ŗRW½7¦Žż<€Ž‡Ž%–˜µi94÷;03‰©·½c)@tQ!|<üĮ#Ė3w#Ā·DbŪHœVsĶöĮø^ø­¤Z@Eź2±®ČɱŅe×|h3Č} ōs‹Į£×fļ) ÷Č«„šg Ós‰\QÓR Ÿ… ³”lĒg\±éU©H[¢­éކDē>Ą‹,č·VE¦4r[³H¦kĪ‹–,› 5G’”¶Kf•e*(ėŲ²®2¶ī¹…li˜”[*ZÖ4L›vKWŠm;¾L¢ŌŒy-W4U½lŚ%Ėhe‚ ŗ¬£åĶéiI¼ģõ\gwtõō*v`öŻō#O„„”:B{‰9”ūcßDļ±fJŚZęM±äłjn~zß3U6ÆaŪŗūvT"™-Kŗ.©„y„(}ń1®’Ÿ ÉXZ~-±u`jt/|l)Ŗź ”Ęb[bołČwE”„ŽĒ«^÷ĖąH-Éļ[QeAƶ­«ŽčIĻ™õž-e 6¼jŅ—,å€N>ƒœSj>š=1޼¹Šŗu‘–ėSÕÕ ®}„üæ£pp÷ Ó±¼©L¢aMن®Ž-Oådå^Mņ”YkŽ“d2R]]ļ{É\A­ŖŖ-µć޹g¹AMė"u;X«ŁŃV5Æ$“(éX1”-uĮlØU¢cyrōFOu½äy‘E©o»£,VĀŗ®5ļłVXGĻ»dkDĄĄ»Jµ¶a̗=”§W– IåwĒē䔩AzEw¢bĆO|ĖÉū FóŪj9Ė’~Ž)R “γ÷ųéŠE_ššź8q^²¼=¼eŠ×°&-ž~Ūbµ”. āou„Ö“ÜńGe Wt‚xÉ/ģI‘¾Åm[nj 'ÅÖ]5é%"%]±y3*R5ļ6֎M«&}M« Ÿ岈QŠ>śĻ¾lŚ– %‘ŌšHIĖumѓfō†?pŚSŚyŪŌpŹ{&=¶kõfJ6m˜Q5ŅŅŠ¬K$UvĘ‹~åBØ=Ŗ\L "‹ŖŒ²¦u&CW£č×Ģ…@¤¦­kVčČ=¹vƒĢœVr=Ō<Ē7łüŖ¶ŗžį×%6 ÓVš¾˜—=@öœ·phųģ5Ī[&U|Ѭ™Ys%—¹|T» ǜ…5ČB{5HeŸ"1;‚¼u¤ebHžģž¾k)dČū–Ä•]jKQķ«ēŅ×ŗ-ūEŠČŠDĖŽĻ­>Ü£‹AŖ¬„­£,uĖuOś…7m„$B5h[m«xÜ“I5ób%‘ކ’z ģeÖ/ųµõ°=zÖ]«ž^Tp}Œ 리śK§L<¼®*±Ŗį¶Wż/)ł_źšõ‡ęEb—üG± žhL•›ø)1§* õŚ KĪF£0 tĀ?ņw4œ2„¢„:tW5į„’Ž Q š’ččh¬„DEš÷§śtł3¹”{I¦k9ųćd¹9šńµ2‘Ŗ ¤~ę£|Ņ* ²ų©’‹¾]83ŚĮ,,ŪU}ō‰œ4$¶]ļ‡3ēQ›>DHVĄĀ™Ŗ5æöƒ=SdÕֈ{ĆA^åÄzźO—x-ūõ!!ćµų¢ļÆ ‰\é: ^½‰ūżĀGjj¤śˆŁōęö»b eĮe²A‚ŚŃö}ĻT:Ē• q[üŽ=Ēń·BmUõÜ÷¢‘žTœWCe;¶pŃ£‡ö ŒšÓ6ż­75CßgÕūš·-ėź9ĀĘŲ;Šļ_ū„5+C*c}L¾ā¤Ņ‘NŽ%lD”©ŚŹ’tŻŽŲɾßßSż æŽSyųī{ļ[ĖēŹ!ūv,€Ö,·[•), ū«¦i»PcMę#’ī“v3]ß·W$żõŠWÜ=zųyyˆ–Ą I$.šóņžé±)Ӈģed»Ģ$ī́ö¾²E?ņÖF&?Ž[€?1öN“eÆī9æŃŪä]3ŒTrQõĮż©xĢ—m»čq€ |Ķ”' ]˜.C,¬QœŗėG^ `ż°ž<¬£”Łõ~žŽ#·Njjęa¦¢ä¦um‡†v&Óńs™²yk"ē÷X}iįöVū®zjؖņź5Ī’Ž~‘®†rpķ\¤+®øĢ¤»¼*Šcž²fɤؖ²i ×,ǐćp~Dš^sŁtą:FC, "­Yžü¶[Ļ".•šwŅem39³Æw­«™š ²„Ū±‡°›ø‡}æ®ā„=Zée[÷1Ķq’ÆŲŽč®†‰W]Õ(xŪĒ8Nģ1«ķļ^ŃŠ Ćcmżć»§¼U÷“Ē}ßkŚźźīZŅöŒ™ $„lŒ‚ź8aĒ®Ē}äV³E…JcšŻś‡F\zbēĶéŖZ²¬aMĄ¤R"›JŌ¼`Ā5ļŖj»3†$ŃēūGÄźÖ÷¬qŻsĶDŖźø£+rźd†Į7žæ.Yŗ.vFŒŖĢÖXož‡æčų;ļ›Śåķѧ5¼čTų½¶ÄåŠGė‘/žöÕ<-¤QŲ½¼ļ®oł™éGŗś8öВjƕ¾éšg$cĖ÷ų·¬¹ćģ¾€X_`ś„ ŗCn{żų”~6veų;äķö¦†¹±5B‘ŽŪ‡kžŌvÖæŹ÷u«ĪØf?śķŪa^žbjü$N”W;¤~#Uö“u;šy/D!|dR'żžČG–‚H|yģ·×¹ėZ±x_C³‘†Ų“R^ĶķēIŁ c/ToKC“„aŚ\nv‡öńńH>oū™Å<…‰†f­śžƒ‰¬Śšžj]±})‹n˜ņ/ł•sN*łs_ńē\T—äŃx; Ē<€d1ī(x@OŲōy J”¹*®ö‘UuÄė^ż”XÉ^Õ43buoŸoń2Ż/fcÆ' ČśV°Dī ›©f€ŸVÓR”¹› '™ƒĻgb TŸśĶäŃš‘•$ĶčKXĶ Ęó¢B(¹é?hŁ:ĻŁ®ūŠc©ŻØÅƒÆ”{“ņ^PŚ0‘«”Eū&416ÕĆU%īJUŻŅńJAŌdEÓÉcćI9ėōšMF*…>)ą’kމM©kʰą%ēeš–]šu/yѬM¢¬dÅGęČ„ßÓŌ„ŸßzŽŪŸz®ZówšĪzŁć!ƒ,āǿݲW1Ū…eoł¹ÄBĮwą`ŁTv€£śaz^ūżī |l—įŸ+N’÷BGWGĒœÆŒńæ8|[7ł?0|.Ņ"e#müŃ å‡Å › `f…6}]*1ڰ3¾7äP˜‰mYĶl‡æż@æŃ.@oÜO¶l”Ę,TyėņN^z-™U-‹Ēˆģ‘‰<錿w=ƒŃŹwŁU—%fĀóŪPÕuŅļŪqÉ+Śjž™'żĢY³.»,ӑš‰Cœ‹/:VŹĻ„eHIi@M¬ųc‹~×cCó©śoĘŖi˜k„įÆŁVUQæŗL5:ó}¼s>ĢÓ¶a¾ •5ź<ŗļī÷‚ƱG‡ėp›7“ų¾kłÄE2äbÄķ= •ī »a,ģ58ŗū’ŽC€ŠÄĢHƽ»¢āģŲq½ÄZhŚõ97$Aüż^{+Õ[(¤]õŹCޱåģ±rDļQ%Jžp)TWŁHB:+ Ÿō¦ŹĻyĮæwWĖ‹~O*±bĖmÓž^+Ÿ;ļ‡Žø@ņž¼ņPW!Q” )‰•uUlłüŠ×óęä¦ÉC%٬XR6w _õ„wżDÅdĮuyŲ/oÆ÷–VˆĶećaK ŗ6Ģ+®įf÷µļń`:Jž÷‚šĪŲä f&×’xŁWżĘėax/ ĒA<ĀśŹrBg_>¤SŠ P| Kšłd©ÄK–Čŗ–“Źa¦` ¬9į¶3÷QkV†üź÷KĶŖv$ʹŪyq?Æ"Ī›Ēm„%NšzXŁPŅń”Ōåü—|Ɠb’Ś;Žņ‚¦W¬ŚÖņKo„b7%Ī­ä]ÖĆ܃=d 2ąĄ$e%e3üŌvž &cyö{eĮćžū~_•\t~øśČ|ģWŖĮ{°o¹h… tƒĢųø—Ė™mSʾč9ōØ`ķ”2’ŽÄw}U©`žZ|n©)[łńwšW[źeßqZG*Ńģ •UŌ_ķźč¢¦L®ŗ9ÕsšsƒÉ哊¹ÉB]üÄPšKTsqÄqš^"³²ĖĶä0Ēę½­Č"ģø©lŖĘ¢1į§÷{SÖįŗłpTŗ‘Ō„ēµĀ3Ī­ßńAa'¦–½®-rĪ“KŽšž]uu*Įµ'É’‰iśī#S(Č*÷ŁXż „$qÅKį§z® Ł=ˆŻŪōA‡,ŻŽ†>wÓ;^W69ä<€I•|Õŗ Cj”Ē=-艋”m5Ķ£BųHµ}ĒcZcņōDŃ»ē­C:ŗō„g}IC¦jÅG.h(+DXzį£ķ¤ēœ1©iŻÓÖ (ųĄÆ.YOƒ`ŅyfØJź™×&{…D2%gmŗin z°Ŗ}æDcš»]u³#F¼©SnŚ6W8Vē6µ£’cyūy96!¤—Įõ‚IŪ“W=a*,…‰!Ų§˜‰Hŗ`hŗ~õ ŠŽwźQs#›žĀUó*’Bķ1låsļÆnJÉ„€ŚGĄ3“¼®¤=“H£!‰ŽČ©1ĄUžtGG¤yH7É„¶eŪ|l›ńM/{ß+& #w™Ģ¶ē|[¢£YæćŽhŪSņƎ½9‚8|Ē®.Īę’ ™®T”ĖņģµŽ™V¶”tdźŽģĢ8UŽ(Ō`=ūØŃ:(Y“dkH”:1kāŲÉ+¶­8aĮļų™ī£å(m¼¬«źœV|lR¹ ’½Wčšyr¼BČź#ЉŠmxYĻČrŁ¢9ÓC ż½Lµ”–ObJÕ²905¤fs’ƞŠD1Ē{Ļu'”‡z)’œXõ†GĢy 7/°+²Ā®o˜”ß×-Ūf0Š-Šń¹kŗ+°=ƒŚ3f­˜1 !`˳¢¼ƒ‘zÜS"mżJ]WG3T$½ū„ZjėxĘ©@>ījjéČ̫퓼ō>¹¦cĆā‘h!eķ”QÕā±Ł•Ł †Į“c‚XäŗĒ” Ÿ[6i+—“?>,¬Š;īX3ćNA§`Ō“- ޼mŪ6T†\z¢!£ŪbčČłRzt#uH°Ž)x1Mżæ¦=ēw<ņ«žRŚ“cN‘åąy0=¦Z9Ś2’m{Ֆ_š*ą¦ń}Ė…™īGeįĘc`—hØūšā®šŃké¶uœR. wGš#œ¢ŽĮ:ķėŽ’Š44Ā”GŪ sōæ$Fž°`ʶU·ÜÕ±­aĀiOš¹ė}mS꾯>©cŻ”…4ٽ§GÖhfÉɑś%’iŁŃ±ć ©tWśŌŪ- …­HŁŗõ C|Św…u„,ęÖø[“ƒŸkŗäŚĮ»®¦¤””¦Ŗ|Ąć3Ņš”KZšnŁšN˜HŪsŪģä;=̓É^†=Hk͌ŚŲ€Ł›éZT“Ų±cÅdš“9“0ŃIlIM*Š™Č|øk7÷IFå*½ŁHĆ|ņ¢}¼G£iOĖ” ¤4dsŠ,įxEY{%‘-ƹę«ėølӊóv \ØųŠ3•½ EĶÆ½Æ-¹¢fĖ%KNXÖpĘŻĀ*hµåšmłēśc@Ó-™v·ą·Ńņøg½įV€’¶œõĶPÆH•%JA8żžV铟÷T 葽ļ{}‡ŗßxʬLŪ/}×&fUrG»ƒ¬ĄŖDǤĤ›~éCŠģ~sŒfaŚ(–Xå=¾y«ŗY7 SĻ7¾lǶu  |ƽT²m' kāąęžÉž7}ĪŁ†KöņBIEvä`Åö¼Uö:E»°•)©ŖŒ<ĖŅaG压©jļ’{GOĻ­nÕŗ’oł²%7żē4‚ßńįó„ž£Ā eø$ ®dęd.¹¢­b2Wś<‚n€~Ż“ĪŹĢ9ļ֐”Āį·Ķx„Ść¹L£0'ń¢9?×V¶&Į¤ó*Śŗ"-]_ólŲ^–˜ėŻū†>5±LĶÓ^÷š¶tMŠ$ŪbKĮMW•1ē=_>š`ajJS6äl˜ŽY?YĮŪń®Č̾ĀļlØę^ˆSJZVÄfC)"éqį [Ru=QžŲ²iū"sVDV÷I £ÜĮÅ•žN˜ö÷*«łüż×Ūnż‚GŠ…5t‹lKd2u«~ī¼s¾åO|Øé÷œŌéŚ>dż‘aĀG~*µ„ņÕx$;¤]pę–ēĘq@ģ{€`bŽ•9B9G ėĒ{±F9|µīœoŠm¹$sŻY{ĆmM-S^ö|NŅŻqö„#pąż…ĮżŸa¤ėwü¹KžpĮUtü#]sžq[$VŅō”ÓJČy{ßmFÓ3Įd`ÜśÉņ 0¶‚™Āˆėųŗ&¶£iV"•ŖØ*ŪvWģ„,xžtE:–”‚ņ[dŪ¦ŖJīŪ2mĒ’u“>a@¶Gõæ„Ą¶hO`uβņ.čŖwĪtÕö=J3Ÿ‹)ĆL¶ŸWÕeŗZNj¹ŖbĀIĖnśÆ¾ī“š®Tml/hļWÅk]ÉD>?¾;³åjōÄÆS‘މ0Ė›8ć7ƒŻū,¾śĄÅ¼ŖiŪ^”ŲvŻ+®É¼dĮ“łBvżÖ­ĀĘōč5@Ķ?ņ7ŗŽńŽM_Ö8R|ĪIwT1å5_4ÆuO ūH¦,ŪcŲU\ƛÖĆtĒģ¾į£W•T5Ü› ņ‚uemŪ–ĀSjb]jS7¬üz­ļ?żE«Ź*–üĒc3‘–7¼­r:!µž“l)Ā£…Ū|@våXYnźÓƒŖž¹LŻ„ū[ĖnHżČ ‡Ф޷Äń0X4’Xꉆ›ו˜qĘRؓ¢1š­ŸÅW¤Ŗėo­ė:„ŖaǦMßöB°é@~é±ō[ˆt,˜õ’Iµ¼ęŁ‘į¼ƒÖ ³ž·”£$QöæńœHdU®ö®÷īķŽIūfē›šfs™R÷ØŖ²Ŗ:Ö­‰“ÕĶKT“ÅŗXQwĆY“2+Jfņ÷īķÓ¦†-ēDV,Yų5¶JÖ½™ ˜–†4čõGoV$6j)šł«ō(AĆ’kū™Æ›Ńņ˜ßń7ŗnū?pNŻ]-Óc\©ĒæwÜŖæI@9ǐŃ_ĒłC՝`:į)7C{**›?«!$Ņõ‰-nÉtdZ¦,Ŗ=ÜĮżžtŻI„#hīž¶3ĘŌ·½/2iŻó/mé»~AÉėZy‡ķU+~ßt+®ŗģ»¦Ę„§L¢źŽÅ±ndGĖLNģuhLHŚJŹAŖpƒĮ„ŽD5ˆŸ§JJ¹Öo– „Ą„+IMYł«’¶_ČŌ$ŗ¶Ć~¬Œ„®Dł”äĻŹ+ł×’kłSżĄ®ō>]";jzŒ½CfG5ǵ·\pKĖy“Ŗ®I¬»cœ)*Aż`KäŖÖ.ńõŻājĆ`V4äqUä¼T,u³ę쨄ģń yN÷÷ü:² üš‡`羟hC„dµ”Z°×*++izĘsĮÆXÕUT-kytp7³bņSp:čÉ ß¶.YSun¬®×žß6[TwW;ŻmMoŗć®wüŌEW}`Å×rĪŲ`w$VmØķIĻOmåūõ  MTØ|Jb5¬Y֒iJlŚqŚŗu;vl騆žCļļ^W3£b*|ŚVĮ4÷Aßż;^uA]IYGbZE­ ÜÜėȝ±>fź|Üśż¤ÖÉżæ¦4ŽzŖfŚJ»ø‰t}8Daüš+V}Ū“®¹Ŗź¶Ÿ«;eҊ…ސžŲ] «xĶtw&[ō ŒeŅ,¼ļ»A‡µ£bŊŠzŲčŸÅ\g0P+YŦbß÷Ҙ‰żtѶkŌī›·“øięSŪ™—]T‘hxĆÓŖ‡„±ś†TOø`#€©½JäŠKaĢrŹ‚ėj#śU™ė&=¶OŅTv҆ķ±Õ˽+ø~M1́w¤v”¬ė؛›vl«‡ŠQśDĮ¢,¬› Ŗ9‚ čOŒŽĖŖ²£Ÿ­Wüč^Z6>ŠCÅšžŸš5bź'd&͹„&īżŽ]ĻØ‡£nXs·¼s4侊w+K”Dž4µÄŹŖŪF-j?Ɓ×yŃ“O”|ŅW‚ŠŲīē‰M:iŻ —P’ę¤ÓOžuŹ3ŗb5+^9B5}Ŗ–Ä8YUuU¾eZÓkŹ&”•ƒīZÉŖŁ‚ƒw$  lq½ö‚6>ĖŠ_ IDAT ŗö¾Ó“9'”-:'³9$ߓé Ģ‚˶>”PÉ4} Ą©ŻVÅżŸkŖņyßcϽņH×ļŗik¹Cq¤eEͳnY1į·üŠ©ÜķłŽ %ĘŻĄ'lćqUC62µŚwĆNƒŹG*¾ęrX¤} 9ŁÅš’ģŌ»*2]SSÉUkĒA&‘’E[n˜7qżŌ ×L~*ģżŒō]’VOē‚_ū²ę”?¹kŃ93Njų3Źį½;å—ośµi5§,˜0aB˜H¦ķ²Č)›6ŻqĖœ1zļ1kٶÉ#‹‹ ÓSb3–,™³¦ś~q˜ż‰ģŲv²°“Vģ8’ µŠc©ė”ŚÉrļóa_”ž0>攖ĻdlŅŌó^ •½eR1'5ē)머ćßų”Æx‰”żÜ;Ź»øć÷n£g9;,+É|ąše“AĘ.±*ÕT²·ł,•QĪĘéß/:A,Šž‚żķ>©bUć@r„{‡iM„OFģĖ*~ÅŪŹŹ¶|č‹GśĢŽ—\‘™“^8 ßö¤ ;¦d:V-”£#US śFiKDJ.ųB®Ō›)W“ä>Æ“’~;¶Ķ©š¶¦¼ŌLéńŅ*#µ–¦óŸA»Wė¼āŗLśŗm?# ŗ[.ńó×g.€ĄŖ-«yDź–=kJW"—=ć“›`!•Xåž6©ŁįcP³ō(Ę[1Ÿš±Øi[µPŻdŸ¹*ÄŠL~&Õ4ėÄHxüßĶ”“ꦁ^p”ū7ķšSj> 1ÄsŽ 0OĒF>É}ø Wr޲kŚŗ!ŸNżŠ³:Źžņ‹€ō—óĻķ™T ߤGnśS%Ļh…ć³kŠÖ»‡ĪĪ+Ėr½^–"¶m®°?–žŖ^ƒ’Š Ž5#Võ‚g½g'(0Ē>ēZ}@ Ė…ĢM7ąœ>ѹז=īnXR2ᦒč÷͹a&˜Iķæń‡å×Ē…ŻšĘĶ«Ad:%»• čńŁ+ž³!Ļī^óõiß9ą”D†w¬Ø‡¼ö°P`†³Ś¶Żun¤!<ų‰č^ļ ßõššŗ~ā÷%Ķ>øīŖČ¬›¦MŪQö²gµQņ%7Ü .ŠńžŅY wT¼ć]kb©4Hņ<ˆWbĮõP!Fv,™1)µ»Ķ÷ƼnIIb~ģ“Ļ^D½ļPæćO$fÄbg}ٚ»łVūŗxŸGų8šŌ,ų»e蟘Rńk«~蜟YV2mŪšÆ=ķŠé{.Ėa8eX‰*Y²(mʤ…P’޹šT+TIq¾ą?K!$‘mo8éūj&øöņŖN»ė®™P'f‡šīŁÖT¬ēļA’*ĶUĻLéÕ ē‚"tŁ»–żŲ“‡žæŽtÕ|ӚgLˆ¤ŗAė7U÷‡Žv͆nŠ~‹kŌ•źjłČæ3gĘ7FDxD°LLåŌ’–¦y©¶®m- CĀ?%Sn›Łƒ¾bZhĀG÷HGśŠhDz?VĖēäæŖcƍ\¦¤tßWø7qæą± {5†K©ģŅNméł=_ń_żČ9kA›ŖįĻü÷Må}ęn3Y®}ų—ķ¦ņ¶÷J°¬JĆŸQŃ Ēd²Æ‰¹;IĘgp„)3t/9c2*‡ B'mZ1­:”×|ĆvMŚvKlB]IŖm[Ƥś"żµŲŒuo;9Bŗ=Ų»“!øm¹E]‰—}SĒ›~- ī—Ć’+Yc]»é[]­ÜķņĮģżHÉŗ±+¶=aUK5‹a̶æŚ'MėØj…o;Ŗ8ݱŖ®Ā>„‡H'ģŗ8¤$ę¢՜뷠„a#ŠėwO»Ä~ĘŁ0bOCåģŠ5ń1 ŁRdōĄÓ§…d» ¦,PD3S¶½f#—"©Łš_ü3ė"ó{ö8z"龟øūĮg&ԃVÅ “&LI°ä®Mw’*9n¦S TśĢuD²`Ė5ćC_wļMŖ¹«„:J‡……R§Šµį¶v̚·fɔj8˜ī?ˆdR5Ļø˜NSnøī¹#į’]'ŻTQɇ¾*į3:ŚĻŪvqČŃ»Xõõ‰“%³Ræ”:岓^ČįÖūWĒ”Ć'—ÅV„&±śMĆA-™rĖ|`õRŠ~/ńŽ9Ė"‘Å=Ęi3%WԜŅŌiøą¦…@[īYzn*]ĄŌŒ†’Ķځ»?}+‚⯢]ae4ø<āVšNݱYõĆ|¢Błšd{ƒ©šŽ«ŹA”žÄßų—nøėŌ>×¶„7‹ˆlVš"ɆS„Ü;÷e½§ęĖ朐XõK[Ś”öŒ5eCˆģ£"Ū~Ælk`)uŚüdūU_ä“k”!é"s¦Ü1ķ„®Ģœė–MŖäé~‚H„ ?ōk…|ŁMOɎ7yLKKCG¦mQ5ēeuÕ|Eźza`{+¶W—mł©ó^ ż§Ū*¦ Øösū±Ną}½é–ołŗmķ@)ŽķB_QĶ=·mś¶ŠfpM;w‘ĻūU=±ČwĶU[*f$¹r]¦ķ=SŽ1)uåšÄGSóW˜ „zE‡»ś”FwóVŖ¢n#äCqį6=ģ7!ŚGc4“„QEõÆvĘ%M¹³§ˆB†9wšŌ§å–Pß³; i=3š,䓜ń±ėÖdVÕÕLš“čǶ]ó±$ōĘøŗįˆFŖĮG·øä„NūšÖ‘×Xƙӓ¢«zjn߬5vVś0]‘9©5 J*÷JeØū–ŖW$bÕ0÷^ó}©^ErĆłĀŖIM™Ņ ÕÓ(½æcJ2‰ŠĒ}ĒSRm%«žoOūŻ0>{4˜.¶åYұ)Õ“å¢ētCķ5nʧ¦źZv$Īå RĻZ8V 4ć’-“z6_%½ńÜUƹ呪²Å0DēO¶ćM§s3+z”'ēC±™b—óŃ  ];žŌČDŽƒä_“Ļh_4Ā«éa¤‰TŁ[¾aŽ3cP¤ć¼kšCĮt°`RYØ6JĮ]–­ŠŹÆų•U/ølŪo“qĀó¦ŌœwÖĒ®[Öāe%“Ó•ŌgAh±„+ž6]pŽ<Śč*;mY[õĄ†K»!Ūt^éŠĢ¦RU¹ uō@WvĪ„FX™Ł‘ÆWž}‡ė×^ ū² ᠌wAҽ_ÅA„dĆEó¦DJ6m©ß‡æ^&õ”ėŽš±†«6“0£e]͉‚dćšß*;gĖŗ¦ķ`ܖ*öC2 –t¬ŲqÓsbēÄīŲtò%[NįśaĶŗž»§®©SųżūŁ[‘TlÖfa×\nR£r)Ē}—ņ#»FąhŒdsŁ]Fļå9‡īHÕ;¾oĮqƎ󎶓·Ćj§=iфYs:"½+ÕkČTt}d[=h–6¼*Só-_ń’Ē\wגąQ7oc &ĖsGŠź~pu½'¾hĖ–¶¹2šÖ"'t­ik+ß§W$Uwʇ"K¶ĢZZq÷=l„Ģ~ųøć ėC≻²~…^Å;¾gʲŪJ˜<ņn¬ū÷J¦4Ō“ŌĆhcÓe_T߇番k»«¤›§tÅ!1ķæp٬ ¦ż+ļśŠŗ¦Šš9”sĶŗ˜”’I‚ĶU4”^-åéŻĒE_ņ®kC'ƒXš…ŽÓgŠr&ŠPųΛ㗠G#Š„]Œ‹^†2§„c~Ļ,0Sņ¤»Ś=® „“JµĢł¶iĄ#J4B¶“…⛆†é åPQ‘j¹€ŠS^Ņö‘e›Öō“™v·Ņ‡u„EžVdĖ›ęŗoK”^†_3į– Óˆ–:"mŚ&TīćS5s:(YrƉ¹ ī’ 7œ.„mæqÕük)ŚHśoU䲎y·}¬ģŠĘ!¬Lɚ²SC5@Ļš’“&ŌĘö@z߬„cьƮińLbŻßø¢kĮ“–i™÷­«› µTZ0\ÜҲ{ÆĪ®^e¦ė„/ŗīB°Šr¤$»/A™ßJ“¦*čhY©Ū ­­ćxlķ^,Q”|ļš7ƽ˜H¤å9+.†&kœ™TGÓ”NĖT¼ēC ß+0±zųm‘>Y±ģ–³ÄŹ^[ņ¶[®Ÿ‚¦nØć@LlęÖ£D"w¼āU6üu©HmŒ®ļуHΩ-ŪvŌĆčѲō(°3æÖšāgįū FS|#™‹Ž¶T¾övÆČBE䆋SšNAŠ$+‹Üō–™˜ó*s¦W\ösCį²ņčZÕV2l¢‡'-b%ætĮš‰»~m>¤mI˜¾& ŒVņY®P÷ vOģ–m›cʉ;xŠ»G‚ģæ[ūHģ¼ō¢˜ĘŪæŠD¬åqē|`é˜Ļ!F»®³Æŗ%±?e1Sņu«A %+lˆ®.¦ 5CĆÖM…ś$ W–X& mŽ >ŌR•hŁAՋ¶-ŪpZŪ²-‘R°¾©(6åŽKk=;ŠLy$QÕŌŁ?J)›µ­kÓ¤ņ ø½ RvĀŽ¦ ±™#¾kœ{ĮTmś…›~`ņŠw6FĒ–słŠŪö¶÷01„ö{.=ä¾ ĀŒŽŽF Ė–†y]ģ]Kfƒg\ é2eĆ;¶żŲĢČ]ŻŠ–IMš /E"ćC3™¶ČK,˜r5o˜CG6đ®ź³Ņ™ČDÖ$CÜÉ>ķų¢o:i¹0ŒzųĻŁ:¢ūNķ„< ·ˆšeJfœuĆķG 4éūk×\ņŖ—Mhīy…‘Ž)Oŗ›Ž(Ÿäm*y"dS™XC7æŃĆFSqČ6Ó …ˬø«#•Ht•T¤nūŽmw=£eŻh‡Ęą $‡$+Œt 䣐x_a·žKū=ˆ'\2§kƖŁ}JŽ‘Ŗ ۚÖĶi»&9©i¹`ŹwrgŒƒ× Üs(ļ­‹D"1§:t€ļöĢÉņć¶?Ō_™‰Ŗė¾xH+3įm£®k¶`æV|ŹL‰]0ķ‡~D?”[3+2!Ł#™‹m{]M€Ŗ'|Õ %Ė.åį# ѵµbo4āȰüąī•ĘÜ[2kŽrS·0yxbyŗÆ1Ō½OņOŠvĶY§.ŗcłS¼žō¶b 2é-×<įŪū†¦ē\tKӄXĻm±%3ķėNē8hLĮĻ,*(= 猽;Ū{(•üē;Z27Üš¤ ‘²“N˜uÓr^'Ea›d=„Õ“ÆŲŁ…d§…M<|2[J0{źŖĮ*õÄ|ē(ō1Ŗn™?ā7«ŖiĶ ~ķ% ‡Ŗan«ŖJTswHlÓĒA_!™vˆĘV坁ĄGÕķ Žrš+Ŗŗīļ••L† ¶›ķ” ®å}ßĪ5·¢źžTó‘FG› Š~Ė;<;lé?蓚«ķ0½ż(Õż ŲcĄsŪ’®ļ£FŚvߏŠļiXņ¦¦IÓ&ėg Ē«+V½aĀ<Æ1‰MuŞ …xæģÜ©X#qōgDŒ(fEC™Ń{>ÖŃĪ |Z.†"~ÕEē­kˆÄZ"%—]i‹‚rÖĆüT™_WG§p@DėßŃ#8~ąT>›>„k0Ņ5ć9—lA‘®’äŸX<° ß¤k5ée.Ó1›[ŁĘ{ĀW{ƒ×Q3Š\ńҾI¦¤ģ5æ”ŖŖhWų臐TIĶU­Ü'2mŁō¾³0™ŌS®ųH-¬™U±87zŪūJ#iXSŹ&T\ GŸĻĘĄŁP­ÕrĒ’,xÕß;Œ?lėspļŚČfÓEC›=Źd«ß@L$Ź*&UÄ6ż„擦–ĖVŗæńÓ!/éžOl $Ė’IG¤ Ščf׆|³•ń±$Ń“bRY%8^÷ɽ͔>JŁĆģØž…m?ēūžŅŠŌR –¢TzP*wU¼§•Ō£R’¦VÜQ÷e :y±éļģō޳o^—Ø©›pۚ–’JŽĄŽ†`•ƒˆ‘šå=‹’;žW1šł£į#Ŗmā0±Qb3‰ĢP7miŒOąpˆĖ|ÓI-©LIEY9ŠŒöŲir©”.įo.ØĘr^}•ö²]R1%Sž=ģˆ•Īo•ƾķ9‘ģ0É]±½9Ŗsū(T!Y‡ļóO’ HRŃöž·ō5›Į"ŁfćŽ31ŠSŠrD·æ•Ņ]XōhLļ/Ć4|³‘šTN™H7Ać‡4»ÉtM8­ģ¼›Ö|Ŋßč†mŸ Õw™Ygļ{p’Õüš¼š$*ꃄM$2iÕ»^<š“\tÕuļśŲ¤-SŹ»ś«R‡Õ×zéĢķ!!‘q÷5–˜ōwnØŖ†ą‘Œ°³”ģ¼¶qZI¤ä²ŌžPݒξ HŖęwż„ ©»fT‡*ڽ ßŅ‘żųŖ’Ī}ƈhlR:ØAšnøUč½Ļ9ŗŖ³¦]r(÷”½ŁU¦hĘŪI[ŗ:Vü…Žē|ß ©®L¬bĶ“DgW±…‰ānŗZ¹mœ7'Gq’ż¾YUŖÄ.'‡QL;FUÅęCūt7ż©yß°å¶Č¬į¹ÜĮö®8õ‰ųĆEZČ'UĶĄ*«H„¦Tl‡\ŗ”ķM/š³ĖžŌ»ŹJ-åPOG…žĄAóŽhØ¢Ž•¬Œ5x\A"ó®kŽ›į]E»€±Į»÷vܤKžu×±fĪ’ę1åŅ=…ķ3uą§®ŖŚ¶m&Øk-Œ†OĖįŹb+VƬփÜ/ŁŠ·HMzĢ“›6õI¹ķ§¶eCN1‡!»Ą£!żĖ¢\±ŠŻDYU×’§'|ÕSʶ¼į¤fżČÓĮŹg€Ž7żŌ»Ī*ŪŃō¤’ ėV‚z6Fˆ$Ś£sŠ£uvÖ;~’¾x4tŻĶöį{B‘TĆu·µµ“œVŅڼY>vYy€k¬ørÓ’Ÿ½÷l’ćŹ×ü~'3ĖWW;4€†7$A‚vČįø{gv8¼7vW»W ķ†Ņ Eč“č“(ōB!Śķ^·«»×ŒįЃ$GxÓh_Żå«2óčEž .r³č2­!ÓnˆhŃb›mZO¹Ķ*gÜxI”ść%Œf ]'b©,ÄĒĘ!Ļī0GŽ ,²@‹æā}^øIŠ÷ł„Ją»±HæÅSn‰øq³v ¦Ŗ¹·zóØń9@žąét —3¼A‰ßSÓFĘt".9Nģ™R°k܃öŸÆ` –†‰Nļ3mÓ ĻģŲÆ+øøĢ«Rēīō TN’Üåč ü}(É>N ‰QpjcŹ$"2 õĒH'.ˆÓŹI-biŚE^£3„»wq™UŌī}ŗå« iœÅ’8{.*„jq‚³\åKj@•–ūä>7¹Ä > ¤šUß#ޕܛĪEˆ–ZäÆłŸōÄxō ŌõŸie‹!YN77 å˜Ņ\佑ŸR |ˆ] ^ N{ˆ m™+“8ĮėlŌž”~- <ä:õØ`eŁé–Ž’Že&’щņ¬ØqGMŗ4r]ŁØ@p§+Vé«2×vų…o'ÖécŚP3LBqÉŅŒĘoÆs‰‹|uø3!ķŚž®g0‘ė!øŹu<½ČYóióóü5R<äH¤üģI‹OłŒ,yÕńHaćk1^Ē(M.E+ ’b—˼ÕcŲ%ØÜĒlŁ‹‘\W˜ŚZQ"i‘g•ƒ#™Ę`nė0›¤ Čü`‡hÓäS~I†9|²”ś.¦ęźō.ŸC¼Ć:wÖ4ół^;=]7"Ų‘i}ķ@ĘĢŸĖ,c™ŠØ![‰„8©lnq›eR¼ĄUFHbņłd@5ZFP’2¶é»ćˆ½Æę“ØCęõĢB$|8«ļėL`‡-\fŅŹų\¢Ąkx{ę]“ ;;%Ņ9d®i^¼˜Ć@›%~·lrwUĻLؕs¹Åē4ĢGJVÅ-šIQHģ>Œę».d†+¼•˜ʌQøš0×ֆE’9åžĄĘ£Īu^e“øxzÄpŠU0 ør C ™†Sl‘Āå4‹į!;ŌöÅŽY”¹KYŪĮŽD“’%"ŗ„Ó=½ō°;<æFr"ŻEŗbkŠ…J„$üļ#Ś\c³œ¢Č#fXˆ;¶śi@-ćĦeš•Fćó·7S!ż„°$B ‹at:n‘@“mćPē÷ȼ4¦7yČń}JóƱŖI'˜=Z ¾‚6'˜ć?²I8ŁÓä>[ŌøG…<9lµƖuAgĄmŚS0%Ņ@ć~Ū‰…%©€&¢‡śH xåY²xŲX¬©Oą+Nŗ —xŸ6³ĶŸrP¹‡ž,Ł”YCtZā ų„MŚ|Ļfø†‹mhŅO/ ±ńøˆPٶETpx×!{*q{°_•øqĘæłgӉÄ)MŅŒ¬ šqČāÓąS~O —óCY…éąąĆ*#Ģ:]äz3ĀģKĢ}˜‡ĖUŻ­'Ʌ˜81©½IdbŽZ )ń.˜qg Ū¦­„‰¦mrÉ9”ŚŹÄˆ2Ćūü ·8L‡6ų†,9ęō·„Įŗ–R“OәҬsPN“Šü#čĆ­q8ęD‚wĶŅŠ“ėĆ£x” X£ėčI'©”y𬐣Į=ŚT˜Į2t=“^Æ›\·śøė°ÄlÓaŽ?å/¹ąg9Ā#$ŽĄ ųįį@Ņ'õš4ŻŠä¤C²ēóĖ„‰²żU\ļ>Ūē%¬‰rŃ3…„ƒ÷=B:ėlpČHĖ“ś4÷DĢaHcäiž:+äO7ĒEOœž-Et¢åÉÉAĀhVĀZꁟ:E›¾eŽ¢1jø—÷ΰČuNīĖzäYåÄDźP„¦ ¼I{¢Ćž;žO–Ł„Œą VųŚc4ļ³,ó`jlƂ.B”£,J\ą_÷h‰Ąec_ŗó$ šš'T ±‚1Ļ lcćņ9G8?@—ŻgsÕJt Ņ"ƒĖ N&M›·ép˜īRļ)ö,ūwNģČ<ŒPłĒ8»Zö!g `Ģ~D®īńLč=/aMģ@E,ŗČ`iuō f|]ŽgYsŖīĶyWOŲ%ššń™įgøŹM¹”F“ģ¾jξ&Qy² ‚"¢½g0r< ‰C‹«¼®Lā4®4GX„9›3É峄Gg,ł§pE:4XY7h‘ć) MąĮ%ĆMŚŖ!ż€uZS;ŽIž >>m¶Éq›»œŒl-vøIGõ\Ę*Ų¬čņ_“š%ši“ē‡m|īsŸ_°”0g¬Ż®:ƒ °4"õ,m°¢śMy–XĮęe\¾§—Yw”uJ:Ķ"a|RNŠ™±ra[}ÅcŽ“¬sß B’…VÕāł5•Ø:$a“q„CŠåoŪ IDAT)ęŲåSčøc[åŅp2B'čććŅ¢C‡eŽ`™_ó{²ä8Ćaf“qqńUŠłĒWl]Ņ(b<)åĒdX§ˆ1­…Ó 9Źü5’@y*ź3‚*RūBb"š˜agL“„5ŠC{‹ļhhplX¤ģąā”Č/ń 4Ēp{L1ÜQ\¤Ō‘ō O=b>,Źl’Ÿ N!iõøœīüH•+ŌȐ§@‰ū|K[#„Ģ3čŠdM‰’3q ÉuŅHfy™ó“ų–*wX!Æųä’Ć»~ŸCö(šZ$2F³˜ •ü~¾ĪėŽsNćĶ|r,SdŽ“ °ķž‡Ļ3)·¢(R?n`–ūŌłWtĢŠ­hĘs™ Žģ"8B“ń8E•&M^ä(ó,š nņ 5˜ L6-%:e©ČŌbo2ūéBzs¹n! %÷kS"…C™¹=žYŌ©)ƒėķ V>Ēŗ– ½$Ń ĪāĄyÉ æ¢Ä§Š§9˜ ?Ź ‚iņ,&M— 5ņPüO’ÉYŅ”¹ČOõ”N`ĄÓ ą^1“|g‘ė1¼!ŽĢ%Ļ:eŠŗ_2Ė×x…®²ķ»|ĻCf"%QæĻ½ēlF†-ąE<Ņą»4"ŲØ”€Ō(I™@„Ų½ŃĆ&ēų¼z›%fø„r‹u>e‹¼ĖŠ„J>/qYcŻ­žm®ąē(s‹ ń&ĖĢŖ¹Ł<')S&O†6č)‘Ęaƒm^ęR"y]Čp³LŽŪH²Tų š.$ŽQŽ~mr\µ3÷kęŲa~d³ÜE…Ćf<$ÆÓā&‡8„œfŸÜQ kP„ØūLi¦…ČŹ„[˜÷'ŻĆ¢ '¬ū IŸ_özԌhR'²\D°Ģ¢šƒirEVų– sāx‘P` óŸGŲĀQ?{9Īs‰ur\ĆWF9Ĕ‹žx¤i‚n™'Ļ•Č˜ė=§?Ļ·ĒerTõo·Ųą0i¾a-Ā{ń܁<…„,I\_$؈2T)yŽį®ŠĢß SŅ‹¼ˆĶ<|Ź¢ĮeÅ å’å5:äČŠękøa™9ßqIO±x=‰.dXTŹ”+—Ép†Ģž“A l3ū†Mń)±©žńčå›Ōü#|m‹³ŒÅa53ķR‹LĶlSĮĒĒ!o„%Óyę’® ml×­r—TÄf“OŲÕ¼QÉāa„?Æo²…Ķ–Ńõńtšų†kē1 Tš÷%N°ŽÅ#Z §5ā®$,Nšś§–/G³š]v°×)šu>¢£Źćb¤\ę)t ¼d(I£6ž$8)>'E·¼HĻpUÓĖǦ@…6ĖśX‹‡|Ī/«+”ŃcŽóœĀ£xųœÄG°IÓ z\Hō>…Zƒ"U~C7 „žųFpžĢīėē—Ģóh –_AŅHÜYń<ø‘Ģ2|_‹ żu$ÕóŃ/Ÿ¬Īże¶,ņ\ā²v¹Ģ-JŲø*’ŒŚČu“’1śŸi湢笺¤ŽmŹ49GŠmb±EAÉęFV$;čĘļyŽs›]2Śč—8K‡ļ9IėQå`i”¦D,T”=Ļ>”KĖs‚yŠ|b ŝD\C"[.ÅæüTN»”®…±cŽĮēużuŃŒķyžģ«‘¬lƒ{¤é°Įkį?ć %[zÓĢR”Ź]¶‘Ō9ÉK:š«ŅĀe–W Mj³¾ė!ȁŅ8`—646Ģ4ĶO:æ)ÕeéćQ Ā—,slb.S‰ÅJūłc yuF&u 2Ļ~Q}ŠU\5­-bĻ{ļO$)±zXŲ8ģ`¾ć óœfmüL~Mj؜¤ÄkŹTYFqź3lņ5«ä•ėčęÉakp]ęYb…*Y£\Śa  7ić‘ę4—u;ZōМĘG}ŠQ;ö!M|f)k°z—^5©šŻUæiź9ž|ä¬Ėž„H®—ā%¾££KrńŅŲ 1ł.yī@CN‡@‡{“9 ¼FŽ5–9D“/Xā‡łœŪē4č7Ķe–ų3:1ÅbUT”Šąi¢“¢HÓę·Xx8qÉqš]v5WõØėÖ&­ÖDPP@Ÿ+¬š>Y–łŽ  Šy.YMœ"bهŌŃ{wxPŖ" 4åĀOw‚W˜§Éa |\ę¹+R‰HgG’a‰Ŗź§Z\„¢mčłĘ8gAvō_2ę:\£_tƒ{ a³Ģ!VhĘV?j§£¹-¢34hD˜ÆĪŅ5Hr2{v Ÿ:nŸĻ]ČÄĒÆ«x ”H®d‡9Č?ē0·¤Ųf›£Ģö āAŠŌDqžÅAJį•)āš­Ś>VŒ]X Ź'ˉ˜.ÄR’„ČņĪ+FZń„>ń)<Ź÷@ņuŒeģIsQ"hs&EŻ!˜¦RüĶA,:H²*·—<¢<²ņ”Ōć‰(SÄQC|A:ŸņCФŃ2N„ˆü]$”@Ķ(;„Ķ{Šā>N̐ć*>8ÉkŖŸr’oU_Ń4µ]“īr”7¹Åuõ]ŪŹv $_“¢­ŽæÅ!Žę!Wq™å JäøĶMÅ2:$yjths‘»śTśzź%ź E⼉0ņ$Ÿ%XgK»(n¬k÷§TĀņ@ķ<æ¦YĘĀØ[Ų©YZlņh+jé2Ÿ‘bQmóĶ±ÅC5`W"?¤ķjŸ 4A!ND„ĪMŖ­ó$Ŗ§‹sVŠ3ČRē·\åĻ(ŽŠe”E[#¹āI³NČ汏ü@ŚĢ¶(3»‡ÉAš/y@N™½q5χ?ƒŠĢū¤@9;” -Mļē©‚MVMmŒNbį‘&Ēy„ąīČ4.7)q†2ßÓR:‡ÄčRDÄöJC›Ä@6mµN¾Ńā¶©r‹g°±yÄ…„¹ iL³[lr•-Xī°ż–Ņz•¤9I—6‚:mVŲå¾"F5³Å~Ī->E²«s§ą>‚Ķøjµ=5ó•ė wėsŽNńÉä%9 ŗÄ°r:$€ŒS{~MI‡jėašk“E*0ÆD’āWy§ē±Hltó­BJ·ßü”zŃŠb–æąwČÉ~hB…¦Gx]ˆmģ©9Öł÷¼ĻICūaŌXŚĮ!G]%Ķ;ż,Äb–*[ī“_„żyv)37q h³ĪmU"SvęŹI|~Č’a„3DA“©Śč£]uZĀ–R@ļkA“/IqŠ×¹ĆEµ ćB»eÅ\ø0ÜGČīPäm|C'BdČol\YllV¹›«—FĘö5›ÜŅN#ĖķJ7—x‹>¢ tø ØŠģH# ĪCā©JA·YļįŅŌ…²ĖÜĀՀŻ$MB‰OąĒ(Øl͐‘å5J|Ī©=ńY9Ć·NtÄž¹ūŲ‹ ‰ź::: ēĻm:x¤ą~įĻfGjĆŚ”ČŽpDółߑUÓ&CJœčģ“åB¢%“ī'jń—¼ĢĻ•€ģ(Æcį‘ćńWtši!™įē¼IkźŚńį*fi±C©Ļü|ŲŻ*±ĪüÄz6ŪTI+‰³ż wˆKa¬–0J[®Ė+¾`“ŌČ;)K › ¾Ŗ}ų†ā…KüŒ gisi­Ŗ!"Ō7ńš¾­HR|õĒć'”Üę¶*$ū¤ČRĮ%G†›fóÜd‡Läŗbni¤jp{ ŹLg†,;|B›†&X vƒ±ØĮjÕłœ£ü·\ą–QŠ“H>Õµ‚/pŒ&w#™FoåĮ柱Ķ×l)\WT|¢…Ļ./SāSķ\¦ę@ŗMøøHѓ?Cš$»"릒ę†ó±Ł”1€+VŽŖ]ŁKņœćmŚIWŲPøu_ĒsOž éę –1U8Ļ«<äæadŒŠ:,6¤hp… ¾#­ĢJI‡dƒ?هˆ=ø‹ól³ÅBŸü"4iŖ&(cIlźÜ„Ό”‚ĪT» ę{}Į{üŠŅY€ˆŠäØšWXdÉŅ9Ü”ŲÅ!£²_õĄE²€K &w9Mš/ B7źūӌų†óØó–"yy—ė< ¦x=šŠōE’„Ģ_Qä¬ū1'”“Ę:”0m°āD°m®©i0ѓ!‰˜XMV=Iß°žń7Ø+žą(“AĘÄ؊śĪ]¢Š(ŸĆ,±‘ Q;"ŁÉøg“ōb“äs§2¢!”ŗŚ(™ŚØź“ 8PīČŌPo*38Ś;wČRR?/±ÉS¤Ģjž=Tåx² MsÜu!]ęć’;’޼FØhµ¶É’&«ˆ%+|ĘwX¤(ĪR’¢Į5ó m¢Œ{¹W”źŌ«8qh©ī_„šc*‡Ę.c WøAŽpž¾ŠDJBF.éč…ū9XӌāŽrhE2Ęaž5…r9ĻI.Q¦C‡–2~‚.Ēš€—Xą3Ŗ¤•‰%aźAj –TĪĆ„ĘOyQŻm†7xk\"ÆJ=Aē%ŌClņ5£Ū‚‘Hš<¢JۘŸ/*ķǤĖE2ŪwśBō̘Üę. Mno2 H­s-f‡»s÷Ҙkł;55f’K†?æĆvøM—ėaJÄ5æÜ¢H Zc«ĻȓyīBFަ„”l:.¾Ż¢A{ —’æXś ;¤-¶Č„1—9Kü7|ĆUUŌzņœGŌõ†.Dī·Å’Ę»¼E šøĒEī+M¼€“č5R|É6Y JC„khäPŠ`–2xlS"5qP$ØįÓ¦……Ķ265`¦ Ķ•Z4&Šæ ųoļņ)]¾ Āߛ ńœį3vHak`l×0YJœXjmÄQŸn „Ž ‡Ąā 'yƒ€ŠćCī°Ķ,Šd‡\Ąe™CŌši(nb³"ńX2XqiƒG™gYzįß³‹Ć6R„¤C!“€MK…#ń†¼Eƅ„²xŒ~æMS>"!,Šć”‚ ŻKźŠg ƒĖ0Puū*Z4ł Ftņc8‰ĶŒzÓ@7!‹ƒÅa6hkj;"Tmu:dž» s³–Ī‘ūcMļŠ‘ŽŃ#k 'vć4‹wČrIÅ*ÖŲ‰ ˈ€ƒx1Åē|Ęėdų– yņš2<>S:„Ā6 n ųUēKvøĒmJ̰ĀOyklQØšŖS#G‰Œ6 …D·! 氍GQ©XŽ›ė4¹ÅsŲ†¦ü~8 ä8Ę[¬r!#(bV!ʈ+Gqrth‘E°ĖGüT… ﲁO™,5Ö9«^Ė£Øō÷ ŗ§īŸŠĪ„ĄJóĻ8¦B†Ą½•9Č5æqW÷Tf ę9©s÷E^G°aOiØ|˜’BēÅ¢O_©wj'Š‘ģu1ѽH”fCQšÄļÆū ”š”L½œŲˆHE^*ōńiŽą6—[ŖØ7\,wā#÷ģ:‘nŹ)ŹĆ/ wŒŗyÖ;PĆ;ĒQž³zŗO*ĶI<ŗ ‡Å<>WŁå+3DōØY„ę3EZ\@P¤‰KKlšcę'ŗĖ@ČĖI\iәϾ…O‡ ČüQ܇ĖW|Ė| µ_ĻĶfoXąĻł "•k6±£:÷ŒŲ Ģó,›@š,·išKl Åł€<$)SP č (čj:ĮY®€]_M|wxĆ:t rĻO“Yņ8ŗÆ“ ÆZĻ~’ų<āwj®"jžE²ø[2$õœEBÖ 6ć WńMÓĖŌ•ōóI’Ųć(ŗXƒlž°Ę]īB)ŃqšV„|ųł5y‘@"©'ņ]%]¬”÷ ŅĮׄ"[F"™aŽŠŸŌž–ˆ(? „ü˜Rf™%«’ežI+UHG+EŚJ7ŅRŗ‘9™'O‡ÓĢq‰»µ%3ŹC ¬‚Gl²ĘCšxä™×Ćjb,÷įq‰ ĢŖOaķ;FRąq™NīOżK‹Y‰H¤=<œņ•$Æ Ē#žī`aqœĮQ Ą]®hśr_³×pɐ’öšTåĪ#& €ÆŃ”rĄ3u†=RIž¦Bųœbž;Ō!.ĖP§3{ōŁČ&ÄŠÆÄuŲīsiq˜9cĆ÷—:m,|\2#Ģ”wĶnI‹fØÓ JZńŸŪč}®qUÅ>VOŪļI.”=LHò±^”Æ(C¤Õüt–¹ Č:ENhfrž Īq’żå°ĖU.ŅdNå[fVµæų9”õōiUE¤Ų:«fĶ‹|Āž%‹øäł 5^äwüæ¼Ķė”H½#©!¼óf6i–h«©ł€gΊ”±¢L¤a» Jņ%źø@•Æq™›±@²›ūa'Ńg”åĻXēŸ¬„Ä=#5>Ń"­†A:gĮ \†Ŗźs.S¤–0JhėżgŻ}ȾÉäRTč>`–C“(é ¬„­ŚÅćŃ <2äŌżņ”Ła^U³%‚Nš 5}'†xŅ8D,C’#”MdO„˜ ž^`yBr¹¬Š[ūdž-źtX[`8ppk|Ä fYĄź)^ķŸūč:Ś4ףÅŪа©Ł‘WDķē±(ó-NŸ}«Ž>efõĆ8¹«nę!X J…] Ŗń”\)Dۊ⠤|±āĒp% Ńó¬„ĘöĻŅTŗ’ĪX$¦k?Ą½Ł‹@²‹Å’Śgd(vš;|Ā tŸG<÷ŃŻÉ^ā4Ÿ±ĖōįĀŃlp†2Uv™c‡-›“•XÕƒ@gOćIŹ»OĶ¢CY™FI‡Z'bü=Pąę€G›’2>M~Ļ*¤8Ė+pśĢ;ü†ÅHēCÄ` ū}ŁÜǦµoEi@#|fŁD”ĮڼCKƶO±Įer¤•ć5ēÄļņŗóv‰Śó|īkō&JŲŲHŅü“¦2ń±IM„Š˜b›{“Čąāą°H™26iZj®¾©żc¹^Åc׏֘[śø×„ŻĒįlRĘS-‰~ě‚6[ĢĒS2įÓ m¢ •Š”Mšé±ā)vS±ä<«YˆTsĘiޱM†ŽÖA}ŻKš3Ų#«Ņ„ȱĆ܈ų«Į%—"UšäØp’–°©š))lŖŌT§Åõ‰głō>«.gƒ]\<$3œ#?±ƒäØPJ(K…1©‡ĆG|J‡6xkhńź>æ£Nžź>’^ĀęZ†„锱‚dš9[@‹‹”8«/-ln³NNĖVuiC|ņ6^dõĆZ@‘Ą”£†ր4i”_"Ć- NN9‰Ė®Ņ šŗĮÜŁDƒÓßšeŲŅŃõY¢Ģš*–Āg¬‘į§øTŁę[ųd l/ĆÓķņ;dȲF]–2;”i Žé6ČĘHęĆõņ©QeAƒ×8¦“Ɠ_Óf—Ø)÷įÄŌ'‡ūčšÅ:wي°5MßIEiĢs,s&ßšΐāŪjŠ$NyÄǜ#×Ó?€9Öi2Ćź5|…eŽąKĪšvHŃTShHŖ<ÜĘĒ„Į)^ …ĆĒyĄ5Zfpńs°m°F,Ā31ĶŽīßś ‰˜Mé„a~utįK(ˆAƒū,3ĖC¶äéhrRÓ”Ļ:˜¶–¬MłkŗmĄ£”F±£@R¬ŗHŹR1恟ŻĖc{$M¶ 6š#5“ wźÓŖ:·ł{Īq–%Šä9Éf9Ģ ±É#ڤzHĢčĻJ•b$YαĄ—lc© ä; %5‰ūšÉ³Ą%]‡7Æ  ²HŽåxMgś¹<æe—œį>¬„ó·æ¹G8ė]᪊]Ł'÷e2VS>9Nrƒ2׳Źŗ=ę˜cp9L]ēā›ÉóJYĄėēpŸŁ ÆŽćŻžĖē IDATYĪ3Ė!ęøĀM\źĢ‘£©©āĻsMg’6 Ö8ŒDP¢ÅmŖŲxdčŠbĮ .)u6jWD7äņŌH`r2č¹J,vGfĖėŖ£Ź6.—8Ė;|‰Ķ›ÜāŽ.³ÉČšbØu¦ “£õ@ŗĖļ©Ō,ŠDˆ’m ń{6Æ0½³ū$ęńZoų`:8…iŒ„y—Č;Ü„C×)(“&˜„Ąi.q&K 3µbQŖxŹžX‹[¬³AIØs•Ł ڹ.÷•žH&”¶ē=*Ą}Eņ'i÷5e>į6i]¼:cašäij'¦P‘Qڟ¦9žlįr‹<īp–¬2ė6G9@7ŁąU÷ŠŚµ’PÓ·Ų$C†{l(õ‰CNĮv7ųˆGXdøĢāą‘¦†īįŖ]^ Čnņw9KG©ĄūĄ*9ŖćMźÜỤqh«‡ØŠ—Ļ%éӏ­č`Äcq‚1ĶÄ[DāSf“9šų4i©nˆÕ'ŸķŚz©‹~Aq1ĢSœŃo¢@]MčŠX:Ö­ˆØį<£}$j™˜č‹‘”Ok©«Ńy>ŁaµxAĶŽęI摏¾»r,r—£l°­¶ŒTPŅnģ"į©T¬“©R'E ‚ß³Ģé1>‰Äa’¬B`„śģKu³¼Ģ]|­5—üŖŸrŸ“¢,±{ÜĒ(¦cxT;<ćļn±ŅcQīŚ K¶Č±Ė*/ŃŻi\¦Ćü”[ŌÕäz IµIZgO}n›2PĀ¢@Nm$KŲH,ęXą.9<Ņ8l’A*L¤Å.(X÷.uå ~Ć Ą"Ņ4™ē‡Ģ“G§ÄV(³ĀŌ®ŗT$±(³m Č”ČJ ~• ójŽYöqša0Qe‘æbžóX ¾6-ž?VI+ēaiBÓŃH {ėī“gˆ"‘čOģŪS1Gö5›&_Qą°Ī×\Īb±Į}^åS|Žēw°°©qŸ,mRĢØŽE‡³8 8~-Ąį'xtųšžœWhpKjƒ&|ŠĆLa1Ć Ņģ°©"šEĪ2Cš łˆufy›ƒ*‡yfšhņ€:7i’Qąk”vX4w<@R MY#eŸ)21‘ū0ł­l<:,p†:6)aŪx Ńu!>rģŠĘf†%ZÜ1*cd ‚ur†W¦¬ IX Iž™dęķeĮģ) £€åÓd–##£Ŗ J÷l³K“ŗ’ŗķÕ`tx‘4i ÅI|^Q›’<7łG¹sū= Å,‘  h)#¦É_ó_qxÄU¶Øp@CæoqĒ¢…ƒMĻ"–ҬöūL ŁÜg—ie|,Cub÷§ œŌäĖžĒ,XīßSŽJ$ŁHBdļXœęE>ēos”MŽ²ÅżįMō¤ŪȱENmČ<‡TuPtȐŅó¼ĻZŅ{øĒāR›·łŒ\ĄņiÄ:Ś=ש3Oś>_µCĘ+y^į _³Ŗ8K£jO² ‘1u¶°XvulŅųü-’ŽüPtœŒiŪ÷’é_s‚–Äˁæ!°¹NSaÆĘuŻOę㫢㤅Ļ8c˜™#ģgŅż›…Ä„Ąmźü) Z¬,AŪlq}0·ž_"ńYć’–#Ü„A–¦²YžW^ē5ЬQŃT'›×9M Į&’EŻĖęy„Ķ6;¬Ņį ^ę“BƒÅOÆĖņœĄå.7©jV.+prĄ-n3ƒ„“Fā\t{Łķ&½~c·iq[CŽ{ÅŻįL—M²”é°‹`‹¹Hfn’›’„_¶Š‰“H¤Š9*qy‰h°„g;Ķhn˜×ß@i!ŗ¹d÷“u%.֞F…Š&“|wtjbŠ}ÖÉās–wG>ŚĮ3Ø07„ŗÅ&K*(·_ü³¦Č«l'H 1–”k’ŽcÖ*i©,jŌI\čĒW²į÷=®šāP‚Š€ž¤NqØ x†ß“B2kĢō.ŅÜį{|UĄ2G:‡t6”Ät@C“L™.ķöhOÄĆÄטR^½3Aż­Ē^į4-朇½Œm„5ņ0ø|­¬ed’”X˜£€¾ā2éR%¬.|š›ÜeC%Ē>®Ųį&6®z‹:ŖĢÕę¹ÉE9l”¢”Wƒ¢Ź8RĢs–ėŠMD²E°(bqLÉj™§Ø£f^ö’k·T˜(#”ń݉¢&¹p„@Re…/PÅ%­(õ…&©«ŗ_d—Y Ć-š¬ōzäŁR¬3Ļb'DŒUÆōq8 cђH£pø×H5¾(‡PC'’9~Į¬RІn/õŚĒ[nŒ*W‡=©źęü?üĻCõ!UŽHŅ\ęĻɌ0¤hÓą[vÉcƒć‚Ÿ}Eš¬rp{É®“ŠLūy…¼ĘB|‚<Łä”šńdÕzJ£«%U‰+¬ž·)PÅ&A±MȒ&K“O©“£e°üŚj»Ū§²5#±O Ÿ<.’…E^āMŸtŅ‚sē#6t¢Z}•éæĻMVµ.(1õšÉ;Xfxk$ķˆ!ūąOøĮē9‡GšVu†Œ×Ņ—JNŹbž vcę¢ūA­ÆżüV§öxČĮ±Œmš UrS8ĀBĻäŠ  x”ųßqWĮ‘3‘”ųI "ā…Fóų‡:Ōų2¤øhŖŚĆŽuw' qøD“’ ŗj ć­§nPe{O”«1nmZO*(»× «ü_¼Ēå*ŗz¾±÷ŗ+fŃ$«Ŗ])¦ Œt‚6eŅlņŸ8Ē®D†üddŹ c $R.ĢĘeŪ|ČaŽeĪpŌV$×īf†lÓV ]å,ÆQį"M²ŖįīGŚŁ{/ŠD0Dø–Ŗ/™Ļ½C•6`³ĶEŚųXTTNĒų @·y‘o¹–XtĄ eJĻČHŌå&ēĒ¢õ ł©˜ē.³Ń䑍O–wxAY%g؉L#Kź„Z`*Ī39c ÕPƒ”å{~>²h×°²Š¾i½’uVɑ r&é^¬³>†nå ēåg~\.ÄdDz uŹ;üš,sH•-H%AąĒmX¤±U!t€ą+żIOÉr„)“%›ņfÄōĘ=:ĢÓ¤”Toóļńŗ^?ĀOĖ<‡xˆ‹E† ‹Ō‘,³ĆiJܦ„ĪK‘ΐSČž’wR°bs¬³³;ü‚4 y¤õ0-#c¢’’VXc†õ¾N©hŸ+ŽXĢźTvŌIō y¶YŲ3Kb‘„©T,ö#x†"ÕŌītž½ģŃC{ROC•{÷-’XTŌI#ø õL€Ķ:>…˜X”;’L½h|÷-{ØšW"c.Db©čż*ųäYT§  •I³ž”N‹<Žv„AĻĖćC3źõ*”I“Ņx1*"£æĮß=|²¼Ģ}ī“ĀS“_³Ģ’žbļ]!—EŽ£ŹUV©Sć%ŽQz®ėüGŚt`9Ėan²ƒESōųDūdl "Į6_§#  #ŻaL“Œ?•B–‡¬éšdRe9 >™`6ż "ø?>÷ü÷€oyU!eFećMŃ¢EjĻ)­dž–§²öÉ…=‘S!~ļE Č¾łÓ,™„ˆyŸ e^ļ;+hļp÷±Ä2M­·2h%sdÉ«SŅŪŲ>LēĶo»īĆ,`‰Ē8ė%b.ÄŃ.E$yž>mPęŠr˜YźŚ”ä(ąS£NQ"B(ķ¬šx·Œ6‹)‹TŌū£Ä6»ŠĶW(¤ź5E $qĢ«@Ņ"Ć[ž† æćלŔĢ śi§øCž¹Ä:PŅšś½†Ę§„aš£ź×ÜZ¬I*ŒN9Ź Ę=ÜM…Õ4pCq…šåq—4`1ĒalRdš9Ī/(’¦ƒ G–6§@Euż¢.٤ˆ CCńi˜<,AYŚIfØPÕ?ĮO|Ļ)<7=|/ÆĆnńA†,;ģā‘‹H„ $”8€«;=q‹;z黄g½¢Łˆé–ŅŠIÄ qćč;łš3jE·…ķ[E„‚«›ŚJŻėO2ŽnbRežÉ=¤j±p(Qę÷üė¾ZŚIƐ”CāIŻ›¤™ŖĆ>źē*aÓŃ0ķ½;7©ŒQƒ ¶*”õūŁ™)2 u“éš?ė›ƒų,Rc“&‚ŒŠŽśį÷€Ė¼ŖäŁśæ»Ē<ŌDÕš<] ĶŻöĪÜŪį8?ē7ö$d¶·,ÄlD)>£ÅĻ8­ųĒĪ+“ęārœÓŌø‹Ē6<Ś@–f$žŽcŪŒK*,žŒ d‚ Kž5l$6@uBĒ›įmuwyÖ)V±ƒ „%£/!”6`FMEÄÅ[lńˆŖ,āRC*]Ęųøī^°Yń±dŽ-ęUI=š”$’¾ŌŪdBm×ļ³I-ŠT˜„5£ā,•PöŽN‡gåFµŪW…’]®ńʈ ēĮ$NZ›Õ½ō/š¢įõš¦l^ĀJž<§©s׈ĜżģōÜ{å:Üä'}5Ņ„‰|ąQß²-Ŗ“kń&רPrR¶‚©2„Aō"q…ö =°Ųä2w³Óć?12R†ė’¾ĻāóßRäę©"(§€ t(ē*9s‹`SÄWB¾ź=„£–hPmP,Ė0Ćlżģƒڜ1sž%:µ-x•p‰Æś"č‚Ū#¾'Ėi²šx‘×ÕP# f–‡$‚,)yīBą3K‡–v"rĻćŗ²ĘPb'Ņ IÖž1„$•6ŲÜ4½ĒS걫nTćĒd(?ń(ś<[W×H¾¾Ę·ąĄH$šĮoēq©2·Ēū°“NŪ4 o·Æ©ŻŪkēY$ĶŹžPcćø÷.ø Ī^ī“ėuĻ‚?Œ×ć0GųˆžHön~Ž2xÄū?Ÿ^켊ŲÉĶ&`Ģ䞀õ’,u>E P|\½n†°3xTłP[–œc^ ’–ų)vh²H™]ęՔŚ"-j“(£CK UI:xäp©Ń¤M‡)ŅŹŠŚųx¬ŠVąw"¦< Į9Ŭ 8­×ŹÅe•¹‡ĆJü±y‹E~›ķ–}óŌ©Ó`†CģP„ĢqŖ”‘¤č(÷·—Ą ŖčŽ©MQÓMŠhńĶ€Öą1ĶB¢ŸńūPy ņŌļØD’AŠž4½ģ§”ˆÄ6y6ł’÷Ē'D”Kö2×ļSd‡ł)=1‡Ŗ"Üæ“2éz­Ņ CÕ`£_öŌŲddöŚ"Mekn7™÷Fxe—Wł„ ­·LÓ¬Ó1Ź)Q ÷YM­n'®t’ ¦Ų£é¶)Mœ½×’K4 ī/£§*š|¬fų³\ŽR`ć4qy‰»œä:GČp•*8M› ŖøtpIįŅb–±;lc«.GAI&QU0Ų}Q¦A—›¼GšŁäkvTs½Į‡Ģ²L‡SÜä®}”:ńõ§ĶÓ¤Į.’<6’+Ģį'¹fh}LNŌßå0ōÉźPąps=ÅJKKm©3/µĄ‰ˆŌ{[‚B«č źZˆ$ƋĄuZ’ń?ij•˜x[¹į-īsj ā'z¬³“h“ŻCö&™e•ł>fgœWrhšˆ6éäsļĻÖĘ¢A Jģ$‚ŹĀŌKŒB‘bœš =’<˜ų¤Ķ œ”F  ‡Œā^Šć ,±„&›ƒÆt ,(pŸ¶‚Ģ‹DJ¼i¹Ró’’°lĖÉyˆ©‰œ¤“Ź«t°ų±(ņ1Kģ"ųš m²'¹G”‘„ß“Ųē[-Ćż0źŃ ģnī+ž`TEŃ<¤{w]vkōŗ EšS‹*õé²¢Å52*xŲ{€¼_Šƒų<Šn¹@•ŁŲS¶i#cXE'x7üG_÷!õ÷A¦B‹:W 239ĪÕIßy6.ĖPõ ČßÖŁb^ńS ōb E‡4.BA'Ū„6p…o°”™ö”ZŁźœū?£1ōņŌFXĮ€nT£@›ßqæ ‹j=ęYę¶źw˜CA1į&«TC.ߏ‰÷öÅ[źB;ļ®Ł ٬„žI ^KuKŚl²Ģ«|I šis‚#ÜāźŠĄ,ćȞnSoŅ„ž±±IŃR”MÉæó™ē.’säIs˜E>ŅMĶŸ4BS¹T(©BšohŸĘó²qžoą˜Ņ¬s–RŖ2™w“JŠY¶V€µS“¹«i‰“Kę¦ Ą‚„®¶‡-õ¬÷KBČs ž¼Į½” ©[ļUš‰ˆ¶q¶Oš%õ·õ »)×é÷|…$ćEVüW¢x<Ńo·0ń=ēõ`_’µœgUy½!„¬ŠyĻņcžožėž<Ā"Å9ŖlkÓar, 6ŁŠµy“ł±Œ\LŃXÓĆö‡-;'•²¢&=,hõ5öU¶yĄA]vLć°Ā«xj¬ŠämīҘōį£ūEØČ>čmvØéSĪoū̲J• iņ8Ć-Ŗź9[ŗUķąuo"Ébq‚-ƒ× „ūcІRµÆ‘ć2ēY„¢9jŌÉGpįųøQĀ n Åls7qv²_?CƒŒf˜,– 5Ågµe©¦Żń!9ˆĄUM]A!‚™ĢD†f±Mzä9”hńŖŹēܧØeWćGuŗńļćt!Į±ip‰ŸŅšĶ5ŲRŁĢČ嘓 4ž­¬;䘄¬Œ‚é>ŖZ“ŗ7 @ĻŁ)®Nof#÷™*UĘŹ ƒļJ&8:9Wżr†@ČxEĖ<źęž’O3IĻM%ŠH-#™˜ˆM“HĶ·!I³@]…ˆį0¢@PĄ„xX¢a/…"m‰Ļņ„s(Aļ¹¢€KR;wāēbs‡EŽęk®ź÷ĖS£mš]H­[*ćdŠm¾ą ?ā6k#¹°Žēóš½ Ų81ŽóÄĀ"Ė:·™C’#EzÄɑįĻÓ‰Ž#ł >ą+fČ+įUóšO£’‹ķ·ūˆCJ,Ŗ#ż^I•Õ˜)3”J`čc^¤IŸ†R²ČS§CZÅӎ*¼ä"S²g­»z ÓĪÅWÕ@P„ t†PŠ'ķ„Žl©æh`ć÷| =Jā±®[F‰OŁzüĻUJ!Ż5@‡Žę[%{N¾Kͼś¶QŹĻ`ė‚iļĪĻ)(ūvŒĢČ{FGjrIž lDÜJ–†R€=6>ā@mńoŌĄŐĀHk1§ĀŖźļSA²ĘkHä˜ų×ü„a…ŲåŌH@^Ė0 £¾Ē=R¼CKŃPvt}ņ†9’ʽx­ś, ؊ y=ķ—ĒÜŽs ”„M^-o4ßō"-Š‘œęŚ4©p(SgžfüČ'Ē«XĢ‘¢­Ē?“č(£|g$|§;°čĒČ“sƒńĀW”8ć½ī,u=ZŸ‘–PuS—8ū¤ć’퉇ä@N£gķ’‘Db“ć–8;T#pŚŌ/ć>Ļ6.ŸÓf>&¼ O³"„48‘|<Ņü’„”ėpIkøSpLĶ@‹Hnr²b́Un“°ÜGŅdŽÓ|Įģ Ą|0•`cQ•}"qs+ģ«’uÉń6'A ›9ęY|Z|€§‹XB;:m<Yę{DE•ćp»/Œ)(›ÉČ.W’fˆ]ĖŠģC«kd ę =#ƒHé[¦’=HÓ’Ņf7ń5]…?xÖ²Ž¤ĆE0; „ķįķÕ{“Ø \å[lr1įÕ§Ū}` ͦ㇔×d±®ł8¹a‰­÷\÷}Ś DŚ’¶–qõqńpXä0e•CZOż™ĘCŽD˜V©6޳23ł7ü’1q‹2Sa}[·×øc½‡Ź}Ü[§eLwbƏ.sŪŖ¶ĪķQ®ęįrś4m„öĬÕCɹŒ»“)ę(fā–£æ—\Ŗœä ²øL“Įud‹¾+Ō.ļ¹nšį?Ū-r<ĆĖ8š%«ÅKœėP¶¢äŲāŽ®ŽJ–_ų×Ī“„JK{3*<5“ś›榙hū]a䮚aÖ¦÷3T±d’Z/š³ ƒėšŲä;L'‚¤v7,ÜÉÕS±GņF=2ĢrŪxü’2Ÿó"—y %%•v†¬šÕ~]tžeJG²R+:š‚0–ĖŹa—Mūo»8ŗc<ļ/uXdšWZaŪ ˆ-ō½†ąx-ą(ķ†Ā0<\øŽźrDķü~/š8¢^Sm$ŽŹ€&%Ó¶n ‰ś&‡!¬»·3?ėį2E†S@Rā:Tõ­kĮb™oˆ“փ+)ĶØģ2ĖK4Yä…DwI2¶Ó’³MfŖ:xŻ>抭ŽÓĢ’×\‡Qįq–&YTĀL ĪŻė;RØb™"q» ‡78ĖMžą*e¶‘LSĀ £*VS@ŲKkÅśšü]")r ?$Ófūś€ėĖyŽK’B²Ł`§W:ŗQ«nĀUķ­W£P˜ūc»Zņ”tSYēŚ­DzśXņhbqN‹²šÆ5£Į‡‹¢…ÅOt'ā¾c‹Mīó!ouxĀY.²F™°/:¶õ“yIĻøŚüqoc4¾dæż“Œ§„|”µ‰ŠŌ¢hŅ{äXK”Ƥ˜Ö&J[=‰fŻč DHį®°)²:Aę¶½\c:o°Å{ü_rI³ĘzF„”’ˆ’Q¦Ų¦ĢŃķ | E‰Ļ‘ü+q¬  É¦ęÖĒö‘lÓāō]č‚)6FŲ’CG® ė”F”éTįqņv_Üd½LÆ^qčN×±xš]Į§óaĶĮ%Ļy^ĮŃóęrŽEź)" ŽIļ£<§É̃•šļøOžVGS¢Į/(ó„1SĀČ”˜œ.ÓLébķń“` $Žę:tƒq?Ÿœøį Œ IDAT|(Z8l… ĮY/ČāŅŅL¼“ˆy٤=×éŚ<Ļ“|Ī­°“3‹ÜĒåW8ŌØP&O‰ƒ$Ė ”¹L g9Ėe6chÖ2žb+ņA$³|Ę]~ĪBā7.ņĒkc°ŒŠ`Ē‡*`ĢhßEīKš!9\ <Ķ£>Łś—gfēŃv‘š¦g JJ]<<²ĢņX:¤"Ųę.ė]:ĢŚ§Ą\šp©ó3ž6`_ Ép²ķ>Ś~›Y>¤KkūJ‡gŒ G^ėø“ĒŌxš\ÄŃÅŽŻ3 *Võń’:ü‡«HlŠĘē/ó->a%¦ˆÉõ©b–]'¤Tø,Sd;Aō „ 3’užšÆłü-Y>ā_²ŠG™[ø”9É71­u uŻžxŌ Ä¤@ZzfŲāæó*?$Æ„@‘åmš¼Ē,Oō©_øSšj‹* ń“ż{iMˆ˜ÆM÷<’Fgļp׉,²ĒūŌg‰“qšł_°ŅćūšįP`†'9‹§™¹ü#`Š;Ü`–|Š CÆ<ļj‘Ŗ8Ę ä……źŅe¢Øsž3Üą+ZšÓNiyē\Ģń˜!K%ģōPtć4ndØrŠJȬµ3pšmI–*OWbg¹BŃ`Sóµ: ±2ŽöxW;Œ“W.Üaæd²›QnDā²Į6Ė<@ń2S<ā.wy@Įe¾”‘Ø™™b]“£=1{¬ŠÉp•/x‘×™ ‰örüŒ§z²ĆöüŁäĢPفĄå.ł}Zu+ü‰­±Hō*½uÜčó,r²ƒVŻąą”pų”/Éź‚Ź(y~–ŅŌā Ńõ³L3„‰øEź‡ äńG5³lń8’–&^‚\¤÷nh‘ē^āļ©ć!ؓ„Ež§bFž¢@–MC(,°żķ1™b6[x!ƒs/ą øžaqy?–©‚źu>j[W12EIS÷¼Ęł-M$m„„6’M*m¬‘Zš­RPį1Ķküž79Ēļqų%÷yˆCE‰Ė š¢8ŠĘ]•B  ģŠ2.ßq‰ŸņŖŽĢ6Ųę4S#‡,$˜!WP£Bi¢·-ŽE%…póX}Cˆ"Ē4+ĢėN*9”>§Ą£Ę>c™2Łp (OŻÆŅmīٟż|:h᫚›ćm®s—-ęC¶ŻĮŒ±6’Œ<ßńg¦i xœlAÖY^ējŗk$ź=·g śÆ®jf®^æŌėI<®ó%ŪL³¢«cE"eu­³¦Ł`J[4JóMzm¬öPĖ6ļhM‚ąĘ<¦¹Ą-¶iPEžćx|Ķ6§9Ę5\lš\ Ä%¶ÉpŽ"7Ć@Aź-ę%щ*t‰¬D2M‘‹\åļ˜Į£‰3ųptń”źNkdū{$ČÄ&}L tōĆ4°Ģu<2Z»|0ųØr…/Xg†ŁF†ĒÜYębR k45†h³œĒk? {LĮJĮ)fyœĒ™ [‡9Ä]ęx‹7š(ńBb— ZœfŠ žm .VBcšŲEµÉ™žIōąĻSēH¦Ā)³ūaī,N×`¹ö@fŲ Ø|<Žqš;¬Ä¢:‰ŹXZ1¾)¦8ĪOXęZÜń&7Ł¦Źh±Ź™ęSlŠd€—šhpŒ,x(6¢ƣ—1‹ūdØ:čĶŃäü„2ÕiN† š ~§‚÷4€LĪókĎf£ŗ}ģ­]g“„IŽ*[z…÷?’ æē2'9„É)-ķ(£Č“óa B*Åäa)ŚXŸŽ²yĻóŖ°,”IÓŒŽ„éāńs^āē:tr)l2:õt[øxŲC“1Ä Ÿ"®‚zĻ3Ō7÷ŸcŽ*U½Ę£óŻ ?Ķor›/»WŁŹĢ²Ņ ģ2ēXeI;V^X3 ¼ė›ūTØbS Ą:_#Čįr ‹‡¬QēsŻNXā!Š‘gM>ÅҲVGq™'Å:£nV’éßåW¼Ķé1ä?ü‘g‹BØ81˜½ü81¬NāĖ£3rłO¼ÉU.ōń¬%ė”*¶ĻĮ0Ķiœ¾ß߇_š LibE™Ÿś]tŗ-š”Œµč¹$YéDO½Ć ¢ķYD•WyŠ!<śl<”™ķXµå— yøŗĖÓ”N+¤ĀC~*³£d©™ Ď«v“Ļ™ćN(Q–Œ&HM)c×OJł?˜fEÅ}6ŲŠ¬Š)N±¤õ—M^«v‘K’ļė(>ŅZƒĮ¦RZČŃŽNpœ%Ö)sGÜ£É5 œ Ø0{Dy±ŚÅ:„ĮSŌøĢl1ŽŖ 9ąŃĀøŻc‰ŅĄK~÷žX| Žji ®y>`žS}„ ›œ §J —Vß¾|ÉWĢi2›øj0Ņlk”l°ž(Œ—<Ց„‘č¶Š¢żŚ«6Æń5ĘS åg¬¼.WsxšPVč|…ˆyH¢gøŹģ£H‹LB[ÅÜ®·÷¢°yĄjØį- 0U1‘Ņ,Lb¬ŠéÅ’ˆ³„™L}Mź49Ķ9-»ūĆ„ĢyNėb#WŽ[/D7Fž®AčČūŽīk– œę”NE؄—”Āßīlݶ‰k’…˜Œś2_ņØ£J2KG†Čš4Unā×T[Ų<ā"‹X,ó1[øų .ķ­d©Øõ}X@$ņCÅlIƒĶ1…°ą£@‹;źŽµæ®Åݘś°ļžHŗÕ ?`…”9Į«XT¹X“Ø$t|™ŖķJą(ƒˆ¹H¤^&‚f«ƒ¼‹‡Kf ’Ar•ŪĢ"ŪXŌ&€G½‚Š<ŸņĢ®ņL5ł5Ž~š¾"”źĄłŖ4¹|2€µĪZŒN_ĘvaŠžVāM–ø|„øę””x¶ó-Żw1ÅćXä™e±gšįļø&Īsœļy¤lS1Ó3„•I$Ī$Ūŗ Hu0뻇ō6ėFČÖ «ü/2ĖJ[ÄC“{ ‘½+)P£®!ÄÆ° Go’LÄŚUZ|D‹y~Ā׬„˜ęQāuš|£'×ˈļüŃöC„2”m“£æĖ¦AŹ×{cJ\¦j9‹CxšD ‘6un ąƒ 3³Śū¶uCÄŚxUH¤8•š?6‹,…żź¢-¬fQ`K7E¶ŽŠŽ‰‡ŪfÜYęiQā,ENaéŸļķ9ć×÷ ę™åOlk;7»Ó’&żl…ĆOš€%E²ĀŽ KLā4Ž–įŪ”™ć¾.&PHĪš—ø­a¢ÓżŲķ )PÕŅž÷0oX €Š”¢)ŚØø…ß#łKŲʑč³÷dy• EŸ#5-rŚ Eā¹śGKmŒ>…d•ž ƒš;š”Œ&·ĆTj~_Ÿ%ĆU.ģā§ĖńüŠ¢ö",Ś©½}’£Ék”b¶²Ąeƒ³Fö' į)ąNp™U*|ĀQŹ,Š'•‡¢I'x’2.¦uõÕą!Ēń­2‹ēYÕ¾Œ²>“VрMÖ8Åm,%jĘ©,v\ߦŸ¢P<ɓTY½¶uī“eGUgÄ<Ŗ,JT©RģPˆŃnóŖC­yü>V¹¢ß2ųż›,į’§¹Ļ4u²=ZńŪk޽C 7"fy[̇£Ø’ŲÓĖi°g!p©1?@՛ą!7™3d¤8d`Uŗ‘\ā5ź]XsåHä) Į<£Eź ė—nńĻ%`^²Ķc&’°ć€fvjŒ­G’ ų*Œć{4P<ĒKĢhn«ęųĪ—Ó¼ÄEķÉ˶¼gæW¹‰Ė“”¹Aƒmrŗ`¢wp/™5|„¢ž¤ÅC–Bf>ŗ÷$Q$EźBT,¦&tԼě,sI·’u¦Iŗ[Éź|Ī1Åuž‘E‚x;6Æ ‹u–tVg%»Ū<¢v$АxøŲT8ĖS#öęLŹ“py†wPä±øxd1E‘ūŁ—R3>Éł–Uź=fZ“) ß/²FSŸš’lQÓķŻj,ķN['8(jT)%$ £[Č`…vp»œź¢īk‹d›{¬źŚ¬gxČ]Z@Ńhk!” ,p;PDxŌĒÖ\7Łą”€YĆE­³E Eƒ-ŹÖ4ȈW“py@Ž|pl;‡ßq;$ł“‡0|ZĻšA2TłŻń“6P)ō2<Ć#č jˆĖT"Õ+h±Č&3}rt„¼e˜nG£]ÅTZœf›ē8„Óč“ŝą‘į$óÜ×P óŚėĮ*ź›|Ķq äśČÖu‚ ¬#óü˜Ū|ŚćJöNoP N…’±4£ƒ¦ĘŸuĒø¹Ü®.ü’1‰”ĪÓ&iņ­ĪĢpž·cš/)#Kāxæh}°7†Ā#G!¤ņVl“e…¢ÄMN’ęYęt£B!Ųf‹݇¾Ó»fČ ©‘Ćę"7äCUūĆjĮšĒ­…‹Å*9Ń”9Ka“‘TrŒö®ńųhŃŠ2fk;,f C1güg¢ĻvµĆąµW%. ^'ķ^]žĻń[ŠF=– Eæw CEsķó.!AGTĻ®B€qI*‹¬$’}HšņŌŁÖDŃĮĒśmI-\²œg‰„DŸd7+ÕŅłÅ&ļ²Jy¤®ĘŠšÓ\inW‰/˜Ć¹%āåŃĪĒŽ©Kip† E†ī÷€_†hV‡ĆÄ!«).ó™&ó»Ö3±²ŃĆūŌ=£ņĶ"kˆģ“ūčO¢—’ló1oĒŹ‚*›d <ŗv ›L×GĆ ‰ęf§śb4۟įQDۚ‹ŠŠ™0Ż ŠöTø8ŽfH„“ŗu.į…ł5蜕±{¹9y›†:Õ|ģʓ Ōc†säYic“ģÄęKL6ņ!«Ģė(oĖ(As˜£ÄĶ0aߐćʈ'»Ü°6N!hb‘ Ÿb&|ĪYŽ±Č E:§Ō˜&#JI>I‹,5~ĖדČb銤LČŅt˜"³h!9»ön.Ėm“%$²€7ųi¬kŹ÷@Ź]Xń²¹sŽBu£)R;Kn‚?³Š{÷ynku\čѧ:˜ b oŲ\c§8Ėeš(­>ˆ‘“ó4Óoß,µœFF¬!qcK0¾%+|¢{ˉ…¢ĪNJAƌ-ćq ”P‹@ņ8ēyŸŪŲ(f©ą†yŸ”Ģš ]¼A—Ī į+ß#0Ću›ŲĘ옮i†ć¬°J–…G† ŠÅĄ¢‹ē!¹ÉGŌQXš¶Ä =qČż Ń}ĆXdŖŗ‡°,młÉ6Ié`Kņ‰5^g%|„¹Łé`½¶ćžįgŽę91”ķ®qcķ'ä¹f¹dϚ9³Q‚®Z‰b€3Hńq‡%fļ—Ę`Ht "±@“=ē’ŠD±Ų¶˜ULŌ1K)Qd–vŒ/s—TXAŃāq^ē>_éf+ČšsšĶßż$°…†‹éP{“2%ŗUæ ŽM1Ķ“&qˆŖš°¦3—­M“÷øL ›¬2“É7|$ķ: —U£|z|…ĆŻ0Õ-ą(©TŠ~Ö}m³ŠĮ]ŃŃŅGŒĖÕ2“ ›žŁ—ćMnń'¤ī”ėĶ0ļ¶Kņa ¾?—øĶ2‘šˆ?  t©”R±„ŻCæSl،Ī6›I“•DZ<¢Ā[Ōų‚5ÖY C6gWśl¹i>ŗCFF­Šņmo÷A¢ąē\\šš4YŠŗb‡`^–lrŠ1‹¤„#Æ¢£5ōˆß²ĪŒ¦oŒ:>āt}ā@Ec“ļx~¬ŻÜJĆšw\f•é®vdDJś9?ĘŃqnÉ&Ė”¤ļbūņ(ŠŻZÜįif'¼B3čæ;Ē|”Ķ=«ÆW)t•8“‡É Kš< W„4œƒī×±‡ūø¢m“µæ•b§³Ø>Ėģˆ!I„–o•÷bÄÕ[üĶyœ¢Ēՠ멤ŸrcŠ,Q€Ó‡U«t=»CO ˽€_!™£Ģ:ęEéī¶¹Į‡lRŽI™<·;×Ö&ų!)·ÄckĢx’M>åŠiJFYB;3Ŗß’į+ņœ'G‹ļ¹Ćƒ°{=:6ÄX¦‡Ē‹tpøĖɁå Ęžź×ßõČš 5ź,tE¢§y/ŚĪ®Į‹:’jØÄ8Ö» {˜Iéö½H€ÉĪ?īR«C<|°Ķ;ad0Ķ­ĆĪ „ŲkÅ®,ŽAąøū{ł)Į‚¶‚ƒ–£ž¦d–-”‚yKž¶’¶d™?Š` [KŖšł³qÄ”?~H˜0õ±^ż’“œ¦p7å£Tl'Øšż3ĄG|Ģyn±A‰,¶īĒ9:>į Ēw–®q†'÷ @T—ą}?+Ā£Ä3¼ aąØgņ°÷ŻœĘąt~ódć_? »¤ns¼Ģ0ŗž©‰h±Ņ᪃³„Ŗ¶2ćA…P÷n»z†–M ČŠ Žg÷½ÆYē2ÆI-D˜CźōT*T(kų°ŒąUüS«#ŌÕ‘֘ļC¦§ßąŹČ…ĻŁ zmö _{—”ŒĆ lę²†6v:’%s¬rj,!ē~Ę#ćļę2n„ČŚā¶£žŚĮÄßiŲ㚨$É`õ¢ķ’Uƒ =ß!¹4h6Ć ’a1ė8““wcz#‰  ¼Łé›lĶ/÷õ˜Õ=<A­kŹVįh–Ėš?ŚS¹£Č¢ÅmŽ÷”NŲßpłž‹j;¢ƒy&cžHPŅ ąbJ>Śi—79˹ŌéG›Ó3ĘwKCœ£õŠ`܋}&:؊`Ŗwrœ7bźŽśįć”HÄį#‹<ŅjāÉŠÉ}"a'؉:ø¢®ZœŃX‹j_OŲO;7éu²]™Ę dC%D‘ˆ°E6 a9¬õ —llkļ#°ķęŪ¶3ŚZ×3ī¦šŃɖ²Ō™f”#!Óīx<ę×03’”°#ānAˆhć_ėgĒĖŻŲnć±PĶpV{1 CFå ¼ĄiĆBQēƒį6ÉI]»A3Ģhō-ź8¬Q„I•ENv®ńĖ saŽC±I;?|(n„Ä„£›’;aS¦™Dū07¶Ćģ”ŒŃY¦š‘<‰ü'’ć  ±Ņe݁rā`ėLõń“¼¤ŁŚBģI^Ŗµ^Š‘„-5`ÕAšŚ%.³E+Fą8y[ĮO”[Ģ”€:'ś¤mW؜@Š¢J›Yr=Ÿ–hSśGōR†’„ĀeŽ¢E+EvÅ($w ߣ{Ռ)Ī&Śč;GŻū0tl–5?ķAxFŠgøedhĖŹ:†÷āw” śÄ’§ļĪw`OśöM‚C²AQĄLD‹7ŐƒŁ§{±Ø‚V™Ŗ8Ō)ōżž¾žHʉ–ĀöpI¦VŲNk{ājŃą:1Ē:E¦šškēÅ3*ńXÅ iHvZĮ¢c.Мß>ŗÅA‚9=d±’ŽˆÅ<3“ōŃ|¬s•ā@%„GĮ ‘śŠĻ³Ķļy…“8l!“4ÜzHx|Ŗ:ö&Zo׏‹ļŽt®ŗyīA‘KœįģyJŠ<³šĻcšįRf†96ipgĄS&ąĖįąöÉu'ŹR`°čnBƒVģ«™ų¾ŪWel圽C(15<‡‹K©¾h*Įļs‹\[Wé1dx¦6ł„Ō©ScN˟ ²īš|ĘGäEŅ¢=`ęUźö1{~tįjd= ź”`žāÕeŽā䥧Lą…Ųü€gt»rļaååe·„”ū݌’Ęž’#Ҝ5ņx“Œžłń‡ ÅŸłŽ…D»ęQ#ļ“|ZL³Ī5~A^ē%¼CH›ųŒ²‘@ݰJGūœERä*ÆP8’sŲ`)d=ü“[lņu¬€xēÕiF9ŠyÖ~^—HɖžÄŚÓķLīŠn oI­Ą!Ē]®³ ?[ZŚł(²šČ²Ę ó:ų9|(²ÜåkŹŗ×&}Ī»³ @ģōt¶G`~¶ØŅą¶®ļĆMķģD†ŖĆEœ„é2‹}Æś>ööNŠ9N£pwA—Br•G|Ķt‡īę£}¬ÅõŃżŅŁ,›|ų8\$£ū8DZ†»Ė»&‡ČR;,I•E2]¤óz<SäÉ ˜1ä2*=$æž‹—ł!+l÷ G@’&ūŪė ŗ~üż³“ØSk£‘Āā!ę&ĖäĆѓLśØ­’@£Į¦Į=ŖCŠē@žĖ¬&XŽÓg¼;³f†»“˜ü,ˆ ĪŠęˆWę šŌ{4'*2L1K™23:7'P4]ĀŽńŸ¹u»ĄK=‰°µUXōÕ+cŠż’Z(’w*r—;Ģ÷ż„¾å#¶Ć0”г)Ó缋A¬ČsĢqhē~ür[‡-]īšwuĄŅĆį_r’Óœ,£ ~ŌyTXlq…lĒ>¬,W¹; *5ģ.ÄEķgĮ2N >t'śQ[šŠiNØtķ‚u$šViŚņ¢ć’]¤AFWmˆD„ĒZ»"µ^¼Äf•Z_Õ (p›‹l“×į+ik¤Ļy7ƒX"äsū܇>UéeÖ)RįNȇl“„Åī šx…·°ŒčQńŌė°—“øĒTLć%ų×)²(N tu¢–åözRßci½Ėt'śQī@GŁT?Ąe£(°ÉĀ€ķ ¶˜ķHiå«0&ß]/IJ}źÜ)9¾åŖ>l>Ņē¼w>žń> /E†,7ųˆ%,,ݶ[4fL‘Õ ŸrœēiéŸgøÅ&F€MŽ‘dĘ[Øsś9 ÉÓmAÆ¤ä• W¶ĀGæŁ¢@&hHĶšo‘ēüł¼ŌŖtģ(,¬ėÖ¤8$åł’‡Z¼6źmIŁ•:[i‘`DP`»‡¢½ĻI$łŒOQ”÷aʧĻyļfÆŚ‡xt–ļųu,²!ćq!Į®špń°©r“3põŗųĒxqČ;l𿁢öOéRŁ’¾TČčŠ.bšéķžER}©_ó&‰³“Śå„Ą×$“t=ˆŌÜĮż^Ó£‚C¾Ķ³Ér•ߐ3ģ詁|“}h{٬rć±-–¤Äö{jVyŪäÉ&4|Mo¹ĢæįLøĪ/ņ ’ć±™‰t#MN | C?ę§}ū ‚›”ōźéģōŪŻ„Ʀb«Š÷]ć]Īr’‡dbŖ?Ź€Ī@ÕšP4xœ,.°M‹“©”GKKņ6y>Ó5AQ“×; 1ł@Ų7G–ź¾±u)#r¬ŚŖēE@h>öz’zŒ*֖'b”«N†B·ÕeRFä%ĒPx“p°˜į?ą.—±cuɕ=HŌ”®Æ„b²ZĮ§Z¦L‘,:O©ŗ£dŗÄ&łČT@ Éz#8, ­Å.ر”ŻWĘ[FJ7²ĄZœē”Ć\ˆŲiÆ( %Ū¾D[Xm“fŅ!m2ˆ+:čĶ÷R›"9ß±°°É÷±§TčĒ®“I¬Ńń7{7. ņ1‚N3U.iq—,ÆqOÓ±øxFqņ k4 µµ#‹»Ā« 6ÜAä/Œė|ņ0ŽėAKé Ŗ¬>˜ŚéęK(’Is1DG@:vcĘ:¾™™ ļdŠU ³ĢĘ¢Ź]raónš§#) Zx7teÜŠ ł0ÆŁīE) ¦8Ļ yŌQ”±Ćseš÷MCX¹ą#øšeˆŅh‹VŸ„ŌqšdYāKźĢče>aŚ$ ›ołÖØ‚ŚŸPVēlĘh‘éŲ=ƒLt±ćć”*1Ā*š½OgE,šüš_ā’ÅÅĆÕ?[¢L°pøÅŠū“(ÅĆ ™>—š­;¾†™„špš8ÉĖÜc““<ĻE6µ5Ģ~LĒ„‡nrÜći}ąuó_“ƒé/Ė:÷ųR3sŽN“°Ÿ#©ˆ"ö-’BĆĮņ@TGŸqŌŠA…E æį58……Ė ®rŽWČbQį—ŁÄĘfJK¹LöŁ“šŚōe„į)6Elžį›LQ ŽCvČwNä,’RmZ}e@$Ū”‘xTØRaƒ5°MÉØ{?XG`¼øQt „NéšĒ§ėi¦Õ}ļøD;ÜĀ£ĢĖ<Ę ŸŠb øĄßš YŽa‡TBr‡ˆ€čėjd±IÖo‰’W‹2s( `›+4F5Kd¢żÜŌRŠ ³}ō[Kž‰ilšŌØÓ ‚K!$m?Čž‡jŪĮ‰>ұš@HT\$‡K‹U>į;*ŌČŠä ,³ĮT˜Ź·b›¼~b H„ÆLµ Å–'ɅĢ_ŁąKšä‡žÜ)€L4|ųKs E• ŞE¼¾ŠóEr,rŲ”°õ2µbžĒA“ŲU"}ī„q©’Žżöp”.·tQ·…`š%$y\ī"˜Ö”®NÕ{¢£¾óžhŃ$65Ęį#Įc<CKĖē~Ī"ŁŒÆ@&üøT8œ#*,ōĮ‚åk¦Ķ¬¢R÷ÜŹ„0Ž8`Ԍ7+Mō2Ķv˜Lį#ūoÜ(Ż®ńŲdQĢkģp>ƚ”I2¼h ‘®šį7$·øĀ*ĻrW—ü:š½!ćiļÄū žBOl“l—J ū“«äČľ¢īs†.ŁŪ’§9śŽĒYŽälČZœŽt쯉£Œ@”Š>æE›u]D“š6)&JZ† xlāj'&|xx“P(6¹ĀūÜÅĀf…:¹X^tšS!õ@&üŠōČr…¢µc„„…GW+ØĶ!ŸT˜wcõ9X6ž™®laÓd?ŗAŅ‘Žn;–n-Ųø8(šśØ÷šxHQ÷Ÿtš ųšō{Įqī`cį²E Ė\£N~Dž­@&öØ čܟ D¦ė!isŸ_3Ćė€<Ė- ļ³Å‚få2 lvZ%MŽA§Ł£P7‰[l*ę’n°Ežs¼Ā*N肼`Éų¢QøJK[ā…ÆŽxˆX?}Y„ž+Ŗ4Œm.h±ÉLśP'po“P^ĻnU†éąń,Æ`‡õš’&›äCų}Q§65ŒH )€L—WénŃYą$Š9ņTb‡@p÷Y'˜AœH ŅlˆĻ¼I¹³’į+NzÜĮrśH'>’Åēć2ö”&\=ʋdCĶ …ÅeŖLė¦AŁm¼B0gü›·ćŻ„„ĀpH‹lš<<1o”ń ,š›Ģ³JF HĆWŲ`ˆlÓžN‚W¹HN3«É+Tģjé˜ųhēOˆfZŒxķh=N1dVdØņ „6b՝ŽS„¾Œ§“š;Ż] h‰,6užęE,˜ŃSnĒŽÉ5–˜FB›u‘ŽƒēųžDdõ©X€b§£ÉĆeŠy*!*”ŽI2D[½Óxłl–Ł,,²¬ń Żw>m{·‘†°&ŅõķĒĻ‘c‰9\$+A1EĮŠ4cģĖ#{y¼ų!‡ćLó0ō4ūńAŠRAß²ESĖ©¦cņĢ„öłļN•Tłœ&sœęj|Č#¦š>R9D^ˆ‹ĖuZ¼E_0~px\ É5Hģ6ĮØt<Qäxš2«T“Ö{?uX—ōŚiķĄ™–ŽI€‘ĪߍbrśWĖÓ¢…ą ×)±N…2–Qą?~ó2 õA E“Ohņ²ŽCn0;.E^g÷ص)„Üć„Ī·LĒŖŖzæ&ƒ†īd„GåĢšR:&sÕDł"56Ų$ĖTH¬*vI‰4‰µE³Ų(ęij&«R@ąē+l§Sy(Ž—{šp¢’c=«ī±hPłN<āŁ—ĆĀŖvĻ ß³ä²ÜE‘7“×ū©½JäŠ,Ā©®RĮęwœćĒlSĘ2z@¢Žb›ķ4m~HĀ’ Ł®¤5Ż"f­ŒŅż£®ĮxUXæw”ŽżX5‘'āS•ØP‹$^ń5žłK«°Fž¶q^3j"Sx<Ę užÖÕN, dir)õ?ĮzR‰pDüē½ģĻ8”‘~ö>T"<ų7)|Lņiy»Õ¦K:žłKĻ‰óB"ūo‘<ė\@ i2ŪįčČqĻŁ “ZÜó4›eŒŒDō<šć–„ĖaĄ’›hMMAd’ ŚNEĮ"”¬Ś¹KĻ‰\¾½·ĀIŽdƒi‘Oō€€Ąę+Ža›lXe‘Žƒé}˜[ßÓ* żuōˆ°Ć@tč4~xd˜œ6''*‘&īNŌ$õ@&Ō Ō8Ęc|Ē2-¦˜icZ4¹Į*§BGµ[€#ŻśBTL®·’˜µćŹF3k‘ ¬Ód…律ŠÓ±’>H'ƒt·f.‰‘3Ō¹Źćxa'z“Ķ=$-šä° Źä‚Fx $Å Łæ¹Š{ršĆ õ@Žō–Ŗś7ČbcsĻYąåš·Z,R Óķtč3 :Śgų×Yęē<ä*Ė”½éč×§n^:öĪLäOææ]g°Xc…Ϲ‡Ė4wōtٜ%Ļ»ahJučV@\ey‡ūHņ¤A¬tōš‰u™ĀĒA3E÷bĪRz‚vJY¶)Ņąϲ‰ĶcdńpŁą÷<¤L#F6/Ń(VYÄbš_ć1óo_Xż¾"=f·q“Vņ”Łj/zP)ÖѰ‚bJ›2 äøĘ"yŽĘć}Ö9Ķ16‘šōB…~E¼­„‡¢A¾ 2Ä ŅėšBó6„}&GĒ®MĶ„Iœ+Ö6éYÓvŸ2Cmēܚ Ļ×ü„ŸSąS~‡ĶĆ)\.reš&E9‘ˆ|Ę,ˆsā w_]ČR ˆŲ‡JōtģåÜō1LÜ©įŅ ¾ćļd(¦r”–„@‘g ‹)>įEīsš_ņß8Ļ*ė]ƒL°nŠ.W#ÜĻL¦ ^Ģ2M!ä0ÆJ§m ¤c’½Étē±ĪŌ.»¤2‘a‚Čž/!°xŠē8Ć6Š+Üį-<Īs–ßŅĀ Į#ez3ŽĮ(A¦øœ• ļÕ0Œ6Ę>ļQå‘ę@& ÖUŸŗ1©r$–C4įAž-$głßp’,eĪóŪ8<Į[|C“LŲņƱJVeŻ N2dKY ‡}m¦³;©gĘ~Œ@&xI( ±ł†Æ(EŽį°Ä52”Éš§ų†EŲd ECŃuėr¼Ė‹V (Pę8‹¬§š$éHĒ®Ē'&i¤2”‹$HK D‡.y ›9<ŅÄÅb†s‹l tƹŁ9Ü~]1Ā]ÕcøĢkĢš,ól¤S—ŽtģŹ‰ š ö'Ķ@KdĘx_¹<,ņTXēkry‹yއŌB.^/VN;Ž{öČć%’pQ³’Ć é¢HG:veH½'y* öA5²}j“29\šló- J,į°Ģ6Y2dÉŅÄŚ5`SšŹ‘„"hQÅĘ„š.¦t¤c—v@†4„•Ž>}•HˆKP÷°qŲĘĆ„Į yfCEd·zä;'Ē#2•ˆ8éHĒAŒ|¤r!$Ŗ® Rź’, ²ŲDź »ÉsÕN‹ :ü[Zƒ•Žt‘ȄCHüP¶ĀŅY’ē¦jÜ^Q%vņHv£T8éHG éB¢.+L•K¶†œŌ^ߝˆG éHG 阔 D0ŗ=¤äæ‹=ŗ»B¤®ĻJiæÓ‘Ž@Ņ1‘~ˆI¦-b?tī?ß €3’–źf§#)€¤cāü¤Ž`§c|’ķ’<ґޣ“ÆR90CµØ¢Ś«ŌžOG:ļš&öĪR9`VH'aØx:;éHĒaŪū“ŗ·5‚ Ńųܱqi&įźiŠŽß‰}|Œ¼*öļiŽßGä¬Ķżžć™Q1Ÿd3Ŗ&tü„½Åf IEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_3.png0000664000175000017500000004210314632072346023761 0ustar fabiofabio‰PNG  IHDR ™q*UüsBIT|dˆ pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī< IDATxœģŻg€\Õ}’’ļ¹wś¶ŁŽW»Zõ^I  ŖcpĆĘvb›øĘÉĻ1‰ß/±'ž'¶ćŽ»cc° ˜ŽMHHHB]Ś•¶÷ާß{ž@X ­vgwvg߯ŲÜ9÷œļņ@£Ļž¦“ÖŽ(į5sęn¾{‹éņY‰Ŗ!tžÜöõ:Ž>Q›Ø ތD`ę €˜4¦0mĒX+ ©@˜¢“=$€IC`Ŗb@"€˜4“†Ą”„E[œ‚ ¹@L€IC0i LUZ+››Š$G¢ ē »•R©‰®ćZk;ŃE˜^ LQoFtŽę»·h­U¢k9“ 8švżź7"ҜčZL/¦(„ ķĖ®ˆ&ŗŽ³‰śD™Ž)ŒL}ģ0i˜ ‰¤g)ČČj.qŗĀžžŽ¢ęŽ®5õ‰® NG Ihm+„bĖr…}™½Cƒ%Żg¶QjČeØÖ“āņWVfdX–²ļ{÷}†‘2%—zH>¦9­;¼³ēmۘ•×;'8āonŖ[¾»Æ§¬Ū4SbźM»4 Ūķ5UcĶ;Ÿ¶ģ””!†į±Q7€™‰Ą4d]ŽÅ«¾u°/µ½“²łņ¾ĪŌ“ ' ö‡Ć„-bø—®žÓ-ՇÆŌ²ņ§æ§uJ,02§[”ˆiś¬æ<)­-enŽÕ0” Ly…Ū–X–„z:7:W›¬œ}å™9-%ķͳOŻwńS¾”śĀX“š9m;b)©ŸĒ×Zåv;šžūE”ˆhIĻ8TTPZ3ßć ś›ėęīļķ^[÷z‡ŚV¶6Ö]ł«»RŅ#ymy/Ū’ŽĒD\€`B@˜D¦£=EÏ„sŹpŚ""nwkziÅŽåCC©żN§yĪæų;Ż>„ś}¶=1{Įs7§¦Ē2})±ģīĪŌ挶LĻJkoĢ8–[Ų]‹ł‚}Ż+Ž–“ōĢŚ Ó ¤ ©°7µ;ĒoķEc)ĮŹ»7fd Ģv8,Oj†•'¢Å›ĢÖb‹ā L„Ą„r¦„7eūR»33²z 22ūfy|ĆÅ-õ»s Ū—÷÷äo®[¶gī’ēn-Y8<`ōFÜE³N¬;“ēęßF#…C§÷f:†Ż—”¼>S öq8šVƢÅéöė«ē=kŪ"Ź̊„S‚s=pŜ…u[¬˜Q¦v8¶Ē0;„½©łPÕ”Kq8cŽhŲ50<čnhkJy©§3æ±³ķāJ9˜ż0a L””ŽŒÜĀźł)éCy™Ł•-Å/ڻᗳ?Õįˆx•aåsÆ.( Ļéjó R»bQG°śšE;"į¼įSČm;b(ečłKŸx[WūܽG÷æēa‘ŚŖį]§Ęņg5e§ftä*Ū°»Ś*jG†*zR½X,J›‘ˆ9ģMäGœ]'Ėž«;qéĖ–•Ü·céoάłĶ›Ö ¾ L‘‘9ݵUsžÓŚV¢-URńÜņ²ŠĆĖĆį˜”Īī¾ÄķÓ¾cƔ=xüĄüūšj–µ¬ā”S{/”ŃvŌØ\ųŲśYs®¬=>ū©ż/½’W¦Ć~}m”Ć”Ōüå\åtZīĄHDÆź»*•h[cŚĮĪÖŖźWv¾÷·zGč>eų¢GĻ²=1ŃįÄżN)C‹2tWū¢šhVŻH8töt U ų[zĖėŗ;ē·,[sχ÷½ēžŌ“ęģH8k(É1!‡s…kŽĶ{“Æ«¬É0½–ÖņśÉUžģe%m™qÕ-yŗµĮŚŪŪ•ŽT[uĖs.wWʬ¹ŪVw“,©‡Ņ#–•?’Č’pŠŅšežœ)į5sęn¾{‹éņMʶ2³ó^œ_RŃ²Ø»#æ¶­éŚ}ēK‹mG -†rźÓO®Ź+Ü>æø¼vesżœ}]mė«ć]o4Šē:±õ+æļŖ~¶)Ž}HnĢ€0¦Ēźė¹źh_ż[J ĆuÖ{;:Ū.­źl»“*^õ@¼pĘ€IC0i & Ą¤!€˜4“†`Ņ@L€IC0i & Ą¤q$ŗ0ui{Š•_|x–mŗ£ei½éH‰%ŗ&Ó¼Ö–ņg,™³h’Yyƒ‹<^;ED$|i¤öXå#5ĒoŚžčL_š-¢άܗē\²iļG.S½śüÕ’ńś$ś2œ•Ą$3„¶#†mG Óį‹ "nvM¾/e £¤āä%©iĮb_Ŗ•eęßÕ"]ķ¾ćÕG6=3ł•H&’œĖՔ®ŒļÅW<óaoŠåtµ ¦5»=įŒŒĢ‘r·×NSJ‰:•I^ 'Z‹DĀ:ÜŁš½Æ½¹ģpkÓÅG•x­„ż ’€$dØ#¹)é1W^QĆģY• W˜ŪćńŚ©ŹPŹķ‰”gåõ”’„õėÉC,KŪCż®Ö”“¦ö沃ķĶĖNj~c+;IÄķ©Ļ,(92īā“7y¼všažŽ!Ā! X1eō¦Ģhi®[phh`A»R¦ž¼ŖĢ$’¶U^Ń®9‹Vķ}Gŗ?VšźĆ³ĻYD"v¬æ;­Ŗ»=’XGĖÜź¾ņ.ĆüĖŅ*ÅT€ D`šŅ:¦“3Ņ3Oä/æųł÷8Śõ—šńf½fū`j澗nų“Öy#§ŹūĶ`B@˜¦ŠJŸ[ZVyl³Ėm™¹Ńҳµ±m±CFGkī¾cūÆ}Ҷ3CģęHF¢ cÓÓ5»±·+„!5#Tt¶Ļµ±b–2OŽų¬mg>$3 LCJõ¹ē/ŻzKj†• «ˆÓ%ŽSŸE#¶„ 1N-xjdĄßŃÖ¼īŠ«3x¦”ŌōćE.·ķĪĢ Īv8Ōvqtµ¦­?¹ąłīö Õ¢ N³0„° €éDŪ*Æš……ÅåGÖeēę¾>“ČPæŃmÅ“=4čėčj_7”į#бš³*.3 L¦Łķ5ēÅ5 VŌÜīpźŌ~ŽhĶm[Y±˜Ö۟\’ĶžŽ5õyG,4čh?üČ®¾†—»&j ɋ¦=ąZµį÷*(m]3<`ōŸł±Óvw{zÕšąœ ½Dж¢Fū”‡k›÷ܳc¢ĘÜ L*#ņҶü ¶c¦©ш¶,ĖÖŚÖŚ0ÅhmĢŚ}l’;’dYŁĮ‰,£ėųÖžŚēæūØÖš½%ʄ%XLq.O{ŚÜ…Ļmō¦²3²¢ÅŸųĀ! …‡Cшkm¬ŲŽT»qØ”čDÖŃWæ;ÖņŹżŅZOč8’€)̶#FjźńāŠł­×¦zķ%^Ÿxl˲›j ž©?±e»RŽ ‘é:©Ś’ł‘”öcƒ9€äG`ŠŅŚRk6üüC9# ĆxĆ ‚±˜¶»;ŅŽ õĻ­žčšīv“|šŁĪćO7Nä8fö€0E)eź#Æ\öP4ź8óóžngė‘}7Żßݹ¦n"k°¢A³õą‡[÷’ń•‰ĄĢA`вķ°1é®+SÓķœ7źG#9‰_k[uy¬­qēĻ·±ē@¼° €)Fż®ÕīæS)‘ÜĀ”%J©7µ±,#¤&ų–óž“Ļ›v’ś!­µ5‘ć˜Y L19yG* K‡—æš;Ž>DDRŅƅZ‡JybQĆ`ĖAŻząO„;&ōX_3K°˜bŗ:–Ō ö™ŻķŽŖžWS4"Qmæq TJŖ•5{žSOÄųĮžf£ķŠCOõÕsÓ9€ų#€0ÕčŒČ3|ä’Ūūā¦{‡Œ—ŸÆü][£³&¶^!J‰Ģ[R{“/µ*7žCĒBƒŽ¶żŚÓ~ųŃŖxö §@˜‚ Ćc…ƒszN¬x:Æp äđՏōtśŽ Ü^ķ[·éÉOdē½\1µSm‡ž\Ó¼÷w;āŃœ €©Jŗ·ū’š#Ƽū—g0ÕćµSĆ! k[‹eŁZ“ˆŪK_{ŁöO,]sĻ­¾”†Ģń  9{kwīŃy`± €)N)‡ījæö@gŪÕ½¾F^Q՜ą°o8=«³HŪ¶‰8ĀNGÄ£”żśŽuŪ™†įįō*S€iB)S‡‚}5/‹ˆtuȱ³µKI=–æę²§ž¦®jīćµ×ķ>×IZ,ĮĢ®\—+Ń5L_joFZ†•½ģ¢Ŗ;Voųłū})Ēó]œĀ  i¹²\ęUŗģ=Õ»^¼ó?®ūŁßüģķĆ ĮGūĮ¶Ÿ†;ĀŃD×7QŗŚÖŲūbōGŁyĶóŹętnJM¢¢śpßÓ2=]…M”¬hÄ ‡2ƒ¦éµd‚/4€Ó@Iéķ’vćŻļś—óf/u|š’-™.Ć0ōÉż#{2rÜė +ó/"½‰®QkK9­©‘HNĄ0½ńŪÆ” ŻÖtőÖFėhõ”–mó–>}żŹõGļt8”©uƒh[‹ÖZb#04čmīéČ=ÖT»ųą@ o n5Ą9(ŗ$“Mß“rįŗÜ-ŖPWzStŚéŸY–Ö=ķŗi°;Ö6ÜÆ^ņ¤:R;ź;‡ś†ėD“Žq’®įĪpHD$į5sęn¾{‹éņMČFnŪ šėÆžÕ]Ły# Ć!s°¾ŗl뉣7?§”—/f‡£9--VŹŌYJÖ_õĢß9]rĪeh±Ø¶ķ.ųóC_~źcƒ-ĒŪćQœ 3 €¤ą_ē—•ó–®¾¶ģ«³—Č•"ož{¼i*•™'E†2|³;Ö1ęÆō}ČÖ^Q¢dż-oküĄ·n}`’ÖŖ’)™Ųz³Näē†!¾Tž™Ó3'=ćhÕŠąŅ¶³µ·­ ™žY—)ź³-ų­śVŖĻķöv§Gc9Óč]Ž|ü@ķC‹W×ßngߐn(„¢#G²vĀ€ E$…|_^Į†·—ŻWTaĢ«vN§rä9rNż»2”˜Æ••§Ė²ņœ[±léĒwEīkn ։\č ˆ–Ńœ:‹„†z;}U†a»ūz2OŁwóć"¾7ķKń„œĢ©\øė²Ü‚īU‡ö,¹wh`~‡z½ū7Žåt¶¦•ĻŻqqٜę+ „äĄī”_u¶®Ŗ1C®¬Ü¾ņs…×zŅ%sŻ×ÜpŪ喝’_śwö_Ų £D$…ÜY9åŁ…*.7‚§e蜵››×’Ūöż;Æųł@ߒ³ĪJ¼‰vĪ_zßŪD„õ›1ĪØ/q[›*ö÷¬j<½i`dvļ‹[?ņ=„”>=DfæŪķiń§¦õū]īᔼā–%„ƒkbQm…‚y½J™Zōˆ³bĮ³ksņŪ:1O4źf“—·\ęKŃé""ƒ}fg[ÓŹ“ Wžy󜅭×9œo‘>DÄtˆYT!kņJ\+{;Ö‘{/ų?Œ{@IĮļNłģÆo>™™« āŁo(ØFz|uՇ×<Ž×³¢ń|³ŚŽs—üyÓ¢•M·œzQC»Ÿ»üū}+šßāMÉŹŁS>wɾRR#9)éVĪš€ŁåtŁÓaūźŖR_īķ.;j®XfNǬ¹‹ŪÆ}Ė:“–¾nO½Ća¹Ó3c…£ży{;¤ž«ļp᩽0o@Ņøč=«Ėē®)łÄ²KŻėx‹ ×c‹i«§#õxoGvuõћŸUŹqĪ/Šģ¼]•ė®Śńéӗ<…ƒ*°ķįwüG4R4tz[­m•‘yø°rįŽME³ś/2MuĪ„sź+[k-oµœj<ŗZTõ3櫽c¤w¤ńš£G»&d3tŽó_7ß½l£ē .x毷ÖZZėÓ÷ÖV­x¶ÆguĆŁŚ,Y}Ļ-³t^%"ŅŻī­ģĻh §ö¶5-9 ”÷Šh1ĶŽ_JKöĀ•/½=·0Rnšjj\¬Eb1[¼śī=Ÿyų“‰.@ņa ét4 ģ²m=}+„¤øbhµĒ÷²’ŧV~ėĢKül;lävÆikJŪ’ŹĪ›‹ęNoćt6f\yÓż_pŗ SD&l6cL”H4,”Ę#=$ŗÉijü¶€8¹źW\tł»ņ’äńIŹéĻcQm‡‚“ķųĢügę„*ņŠ^šsęs·§-]DZ‹¤¤„s‹gķYŖµõ†„‘W\=Ūķ5MĆPS+|ˆH_·jŚž@ļū^~xßÖD× 9@Iƕėr®Śœ÷ÓŌtÉ<ó3Ć£³-åųį=÷Ūöų׆ߥ›Ę‰FŹūŸ~š®ėļu5„gEŠ—®9~G^įKs-+ą°ķAgfĪžņœü¶¹ć"D#ŚzéĻķ}ükŪžī æéH`ˆ–`’†oŽ/ŚŪŪ›_ęXręVnĆPRZ>¼Ri3¶w{åoSÓb¾ĢÜŽŁž¬į¹.ö^ČL„Ö"Ķõ»j®Ų{¶·”į² „""†©ŌŚ»? ¾<āt‰ŪåŅn9÷>󄔞öżģ”ēZærč葉®@rc: ©d/LOłŲ7Æ;ž™{ö«Ģ-KŪ­žź=/Üž ­s¢ūŻ%g—Ļ«ŗ<5-XčöĘü†””:G ‰E%Z_]°ķȾŪS†ÓĪČ:X¼`é®ūzrND#®PC͆}©iMŁ—^³õ³§2'ō‡'­Eźé­G¶wžż3ßīp¢ė03@Iēö/ŻųÉK®÷}ū\!¶“†Ķž¾n’ńc6> –÷æś#ó;ķŸ,¦­³÷8õD#:ŚX­wöuIėŽ'>Vµµŗ=Ń5˜Ł˜$p@ö÷uŖ†Ģ<=ė|m³óś—śRåõtn¬IĻn:Rƒ-sOszźO\»;æ¤eIAńšņ‰’IĘGŪZö==ņ„æńō—ņŹs3›v7÷$ŗ&`: éøóÜĘĒæwÓ¾’Jć¼!ĮŠŁzū“¾Łß»¶N½¶«¤üÉUKÖyÆij§a(Q†’XT[½]¾j‡Ćö(„ĶĢÜHŁÄ’$ć3<(ż?žĢöyĶ{Z»] œB$„«>yåšÕ×äž<æT/9_ŪXT[ƃ®¶īöģ£GöŻöØ2œ¶R]^ÆÆ9ėŠ-ĻÜķp\Ą-…SH,bŪż ķźžā3‰®Na  )õ“ōt8]9¾Ń“u8•éĻŽ–ddµ—¤¤’*Ƨ£ąxcķ²ĆY¹…Ś2¢ā×D×;””$«(-?ŃuĄé˜$„|ū¦{—¬÷¼Ć0Ԙf/¢m;œjŒoO ]-rāėypAø-l'ŗ8…S°Iéw’žä{ž v WĘtź“Ó5½Ć‡ˆHO›½ƒš`Ŗa  )…;Ɩˆ|mįµ žpū?,ŪéĻ9’­čɦ·=p4Ń5Ą™˜$µcOÆooŠŪ]G"ĪNٜčąL@RŪōń—ĪZ nJt‰™§»r]鉮NG$­›’ļõļ¹ü…ņ¦HZ¢kI„HHõ)S]œŽ= €¤t󒽞}ߘöCGź(Žd42؛Āķįh¢ė€Ó@IE)%×ß}Ķ»×ߔń=GfDų°,[D‹œ~²žpæŃŅR=ņ«ÄUgĒ= €¤įĪs[>uõٜ߯ņŸ.÷ō¼<šBÄ¢Śźi—»iżH4b‡zZzūDD¬˜­6¶†ŪĆ”D×g"€’Ā‚«e_~Ē¢ŸĢYjÜl8’c£m‰Żß--ƒ½śxé\½90ś=;ݲT¤±Ź~ø©jčw[öÜįĪšp¢k€Ń"€¦½õøtńšņīĖ-tūŅ$)N}źļ–¶żĻō’Ė“?yīQ¾źƒ—ßŗżŽ·å”ęf”/+«ŲöŻēgäѦ?ö€¦½ĢBßŅ}O¶~nćķ%ßń„I@Rż:7Åļ™ķ­ōśwö‹ˆÜ/’%""½"R—ČŚ`<˜$k’ĻUW–-ōŌé6eóõĶN—2]ÓxDBV`$ņKmė¾hŌžį—v|ķµ0Ó3 €ioÖÅi³–_TX™¹>ÆĢŲ‹ØĮžv«¾ Ģ¬Ltmćįņ˜~—Ēūi‘įĮš.łį7‡¦5`Ś[°¾āź·gžŽć3_ū^ÓE"Ózņć ,KKƉ¾÷ļģ'|˜ö’ā”ĄĢ–Y”ŗĘt˜v¢ė˜(±ØÕ [Ćžu~¾·L{Ģ€¦µ›>ĆĶ]—ö §K'ķ½n£hįŖüƒmƒ"Ā&ÓæILky³Rnš„éŒD×1Ń Cé¼ā“q³;€äFLkį@t Ń5LÓaxŅ3=…‰®ʋ˜Öt>‹ź¤Ż’qŠa(É)š} ŃuĄx@ÓZł²‚wšęĢų>s:Ķåžu~•č:`Ģ,Į@D~ś™?ß$†Č»źĆżĆĒN쮫¾ć_/y6;_Ļ6MC$N{EŚŌŽķØ’ąęT<źĻŃÅZó] `fį=D$ܽöæsźŁü«\œ;+sĮ¬ÅyW§ē8/.ŖP뽩*}¬ׇ¤÷Ą3]»ė7»oł§ė>’Yą½¢«”³~üÕĄōĮFić]—ĶY咏Å{¶Œåż–õŅ’Ü~ļŗx×Ó {@NBÆ@ IDAT„ŗżõõéYīܱ¾Ÿžm-šuIyQ§Ō½¹jw÷—#ĮHSī,’ŪžüĶ­ßw†C.oFa44Ų”µ>ėÉZJ)Æ;-_‡ŪC“÷ÓĄÄ!€pÆ-r¤.Ī“Ā#V ·¾WDŽĢ²Œ`_ć Öśœ·™Ē¹%"šļkɂĄ^øø(ģWĮž––D׉sČˆ3w¾ŪīFŻ>5';2ŅÓ*"®3?ó¤ēg†‡:εD ¦6”gē J©T„”)"bzM—+-+_k-ZėșmCƒ}„ɄĄ$ÓZk­-;dG­čšš[µWJ„¤ęV.QJ±rĄ“G A”Rāp§–ŗ[ßŖÖzdõ~}ė]Į ¦=6” Y•+W(ķ ōŌī¬Nt-0Y˜ A¢vw½6‚įDד‰¦„”š `& €0Nåėge^żĮÕßKĖt–õwĘöG¢½ ‡;<¹÷ųń®#Įó÷ ’6«t‰”¼½õÕ­ējćĢtfDū¢ń«&€qXvÓņĀkžzžć…³d™ØWŸY1±¬˜mļzlčóüŪ_Ml…0µ°€1z÷æķs·|zĮŽĀņæ„Ó!¦Ėc8ēÆMækɖe™‰«¦c4k”ūN¶.<×ēy%jī’ĖJžĆē~Ó ē0S@£ąˆ>ē~SV_ņ±O~Ė‘‹īX»j2j€©ŽĄø ÜΌ,Yp¾v†”$#×(Ō¶ NF]0Õ@ -.‡[RĻŪĢÖR½/ņÓī¦ŽöÉ( ¦:G¢ `ŗqē¹ė>zՇ}):]Nß}~]­rb÷Cž³īÅśįI*¦4`ÓĒ®Üų7ß¼å‹Åsōe†©Ž:}ˆH8,½ÕŪź;&£6˜ø€QŲšW–,ßTōåŅyź—[F}ŖÕȀōn ē}O~ćéĒ&²>˜. œĒÕ»ióļĢ}Ą›"¾±¼?2¤śnݚ=÷ī9ļŚ`ŗa:ēqäłc‡””Ļ»Üź\¼)’¾ęŗņÆ­{’śÅń¬ ¦#ēŃÓŲŪŃŻŖkĘś¾a(™»Āøéś•lß×ßöß®\˜±Ų„Ą[påøĢŠU•³Fķ­%ēßv~n)éā_±ŃłŁHčŚłÆø Ó{@8ƒ;Ļķŗö®+ß]T™z½?ĻXåϱf;]FÜ~i×Ń$Ǿłį—„;Ćv¼ś€é‚ΰpĆāĢEėRæ[¤*D“Ä{År`Pj f*ö€p†żŚ×±ć¶· öJŪDō_P.—ołÜµļœˆ¾`Ŗ#€pĻ’xūĮc»柈„ŹŽIĶ.ņ\o˜FŖR*E)Ŋ3{@8Ê[—WV®,~ךkR’Ååw¼ū×¶––WõŽmĖ’.ģŽ##Ż5ķ'·}ż­u,ŽćĄTĀo\8Ķ–ŗöŻ·’üŸy¼Ź;žÆŽŠeIlØ/½Q»Öv¤äømQéEK‹D©[•RŌZ[32$0£¹óܞ’ĻM[EĢīŠˆÕsɍžŪ½>ķČ1µVV`¤øŽ0ÜÆoDW¦Cē/Ü4+4Ų¾VD^šČń ‘ €mõ «WĢZ LóŌiWæ4Łé÷œÅĒnlm¼č˜–Ōč©ē¦;+œY¶v…RjK±$+6”f“’ł9ė cņæÓ3#…Åå;—¼éyŃOŃŹŪŽō’0£EƱŲŃ]Ń_Ūö䞬¢”’Ł ŖÆ 8Onŗ|VΜĖ×eU\R¦”2'³&˜ œ‚˜ńœ~§ł‰Żślé\¹t2ǵ,[Ś=’ž†šėw+e¼į 9čuµķo;ųąĆ=5/vNf]0‘˜ĢxŃžØµūįę ŹĄdŽkš†Z²¶śŻóīŻ¬µõ†3·\¾¬ØætUŗÓ›‘=™5ĄD#€ ";~µ£źČŽą—mkr—8Ź\ŗ¶}Ė╿½E“=A’ĄŌAą5śŚ_m®•“=®RJŠŹŗ/2ĢśtѶ²ķ0ßĻ’ĄššHwÄzå‰ÖOFdd²Ē‡\½ž¬¦Āt’īņĖÆ’ŃŻ.wKśdדĄiž’é‹{æü¢mOī!-žœpYnag٬y'W„¦Ēņ£a·”HJĪšĄ×ŸüFO»:9™c*„¤|^Ėf·;i:ÄLMļb@R"€påTVpH·Nöønø³rGętµz«“Oöų0 œ!Ō²_øÆļsuUY/ÄbzR—By|Ź—īDŗ› ō9ķX$6™ćĄD#€p-GĪż;nūć®g.łn4,‘ÉŪ›jg\v[ĻķµĻī”®Ŗ§k&sl˜hĪIIOēŗ“­¹;&{ä‚R™’®YńW‹»A$„'÷¾%¦…ü…×Ģ™»łī-¦Ėgeų®æzėgœnqMf ŚÖR{D?2Ųkķé ŸģlģŪæēŃ}µ¢%(†Hø=Ģz ‰.€©n I[O×KĒ J†—MęøŹPR¹TŻ(bÜØµClĖ'7|ø$ØžÖ:k«ˆÜ9™õ@<° €Q0–7‘ć+„Ätāń)OFŽĢ^j¼óā÷®Y”Čš`, ŒB4ģHt §Ó¶Ų}m]SŖ& £04>é÷‚¼•žvu z[CK¢ė€ E`jŽmÜ1<ččNt§t6„ŸJt 0F!Ė ڳöžžnWS¢O ‡t䥶źŸ'“#£ŌÕvńÉēūČ×jŽ<™ˆ b[Zz:¤žųīč÷šzŚj'æ?Žįą(ĆiŁ÷ŽGRÓQ0Ēņڶ–”~ÕŃŁ¤ŸÆ;ŠóĖē~æć©PK("Ÿžč‘`b@ø@J9ōĮŻ›ž˜’Š"§SMČw©Ö"Uö õGF~öď·ż>܈ˆČ×'b4˜<,Įą,‚żĶGo²"#g ĮĄ¬¾ž߄-ƒRJ$0,µ}é±_¼> @8‹Į¶£ƒ'ŸžŚ›÷Ž{ 4Ōś¦¢”CW\żˆm‰=Q5W7øóŻ)Õ?$€spf;ņeUžÕæķlŸ÷v­®;²wν±ˆD&bü4æäŽöŁėžn"ś€D!€pWŽĖÜšWėVüķß¶÷śæŹæÆlīąEnOmę›[*©;±egżÉ‚g'¢„D*–ŗļ*^]š1ż@"@8ƖOmžųę÷—l-,—å§a8ā,›}hłŁŚšę‘܇.Ž>żYzf_ÉŁŚŚŗd@«“H{cįĪx׋H¤zæ~ ½~š”x÷ ‰Bą4Žt‡ŹČq¬:óyjśp™mG ­‡œ§?×vF$Ķ ¾x×Ņ\Ÿ½ė”’łüÓßyfO¼ū€D!€pšyĪĻ/³.>óyzf“`VåÖ5ž¬—ēh2Ļü<%m(ūĢgc¦EūĶÅĒćÖ'L\DĄiÖŻ2’3.·q–cw•,XqāÖīöŌcĒ–vGęvŸžł`Ÿw\{@“ Ž=™‡ūŗsėźN^¾×ŽhŁ1žn`Ź!€p­õ9ŌõśtJIÅŠš‚’‡W5Õųe8mŪĪ ‡Üķ®ģhńyŃ"–eK4j÷ļ\óóζKϹŌ*ņ(„ŅĻxli­GFżCĄBą4iŁ®£m›_<²ä¢+~łĮƒ»ÆūC8T2ŠŽR°7#»éœDk‘HHB5Ēf=ZW½vo,šQ†?|®ö¦ĖgUnś»«+7}zóéĻZö‰ČG['L%^ćĪwūžńoŁ0ŚöJ‰–Æp:ńķÜvĒĀ!ßš™mBcØ„”ąÅHŲ=24ąļjoZqRTFDDDā(OFačĢg#]5ŃŃÖS qe»ėnæhKZ¦.8µc“r ‚óVoųż{ļŁššÜEUAOŠöGŒĮįAoóį½’4<ø ćõĘÖõėl+hŠˆ¦Ē[05@‘;¾øåŪó×2̱%„¢YC+MóēևŽõoY9Ż‹šD|Q„L=֚“¶”R¦m«„kūNÆ/˜{üąś?öˆkŸhĄŒwه6¬æīƋļt¹ÅyžÖg§µˆĆI·bžPOWaCŽQ2āĢ+Ž;·½ł¢*„<–RŻ^‘ü€(CŽūĮ߉¶”2œ¶Č c-Ž˜ń–m*žgORĘÓGg›³®¹¶ņeøģѾ£uŌ1µĒÓąĻ+:YQ:»vCV^`īžēõŚ[.?*’8ÕV)C‹2Ę<›S0£9Ņźī¹m®ČųžnŸ_­Č+8Va˜JšjÆŻs¶6Z‡Ķ9‹žXļv‡S\īpš?§o¾3Céžp‰éxuKŗÓŅÓUŁ""¢mK “°“mÅNļ'ŲßĢ&tÓ0c]ł‰+Ö}ź§oūnF¶]2ęŻį§Q†’Å+ŻnE]‘–†K;œ½Ž¹‹_ؐ•×=?8āėJĖ.õgEJß8”%§­”·»ß” Ų±°Ńqų‘­G?óž-ņķq× ‰@ĢXžÜŌµ%•ĘŹ8d×¹<ā[µįĄ_/X~Ø×é²SÜ^ń¾śIhīhŽļėöžź/čS§īBTJk­G½¬ ¦:`Ę*Yą»9žįćĆ#5ĆĪĖ»CƒiĶŹĢyÓŻ,FqÉÉķUc Ek-ż=9‰®&0cŁ–ĪßjņōtųŖj.%ŃuĄDb `ƹć+·ü»;őU¶Š1;ѵœb[bW^ö„n:Ü €eńõ‹Źn’ģāO„gŖŒń½O 'rŸėnæøf"ö¤ĄTĀ,ĄŒRs°¶ł¹{ŪÆ?örģ;&Sāt©hD¢5Ē.yž‹ĢĢ€f”PKČ‘ī<÷qsѬłr…27ķ µHĶŃŅĒŹž„“ˆĄŒī [?ś»‡®=qĄ~@'pŽahĄģ¬:|ć3‰«&0c…;Ƒ­æxå“” &Ŗ†Ž®¬£J±ńĄĢAĢh5Ļ×¶“ÖŹ ‰;”ą‰Ć—<—ˆ± Q €o÷Ć5}xgō§‘°„'kLmk©>4÷ {?Ģ0ĄŒå_ē—[žß×_rSåėtģŠEtt²ĘnoIß_[}ŻK“5Lœ‚˜‘<ÅĒ{žł†-Xk¾ßįPfŃģāM¦cr¾C5|dßeVŹäŲ]3ŌÜyī4QZk[Dō%o»hÕɽuMw~qĖWęÆT·Ÿ:‚×ķUžÉØ'V”};.ži`x^×dŒS “Üłn÷§róž” • É ”ę–ej»@L‡„&÷žXT¢ū_Zö«īŽKj&u`˜B €¤•–ī÷ēČ,·Wܒ.žWŸ"ęä׋jėŠīEæmoŽtxņG€©ƒHZ•++Š””¢•Hā.;—XTĒī^üėęśk^I\05p  i½ņäž#»~¢ÆŪNČQ·ŚÖŅŻį9ńҶß"|Ą«˜$­HW$²écWŌŗ<)“ž ·‘!³÷č¾%÷·6]vD)§]Ąk €¤“ś+Jf-)ųųUļĶū“7E|“9vo—§n÷s7’4.œä}ī0å@IĒēö|ś'7?•W, ŌdĪ}h‘¶¦Ōż{_¼ķŪĪ MāČ0m°tÖŻzŃE9…zž©;>NѶ–PP‡›ė|ĆjŲ¶ÅŽēø­iÆģ~žĪ_>ąÜ˜$9«ņļ4oLCżŽöŚŖŹ­5«ŽŲvvĄŠÆūĶ'L‡ķņgGKĘ»TŖ£9嚎ķļś_„ÜÖųz€äĘ  éxÓ%§’»ÖZj«*Ÿn8yżn­óG”rh‡3=ŚŃœ{Čį°<ć ]mŽ»ž½ćēZR£ćė ’t¼©ŗŌЉ ȐˆˆÖ"ĆŁ]§·Ń:l–u-OóŪ9ć«·Ė]’Ņ³ļž”ØĀŒK°I§īąŠ½-'īXŌŽ®½Śó„DLGģ ÷ŸĻšóŌE™¹įņńŒcŪZ×WĻ{ZŪ‘q 3tīū揞»ˆHŚ,_īņ7~^‰H{Ė’zćµyÖīŠ9‹j®ĻŅ«”³³„®č„ęŗMyĖ:L7@ŅŗņĪ·š¦–-VzFuaNA[iwGym‡ĶHŲ‰łĒŅo$¬£v­ūMoך:Ā\ )¹ ŻĘ'¾sÓߛåp(q¬ŗtĒüYvnpø:āņ(ē™§dÖšŃ÷üc·~--ŒwĶ0° ”ĀmaūĄ¶Ž/k[‹ˆˆ?ĖĪń¦š®±†‘¾®ō*ĀŒ”ę\1/wĆ­…_1Ģų­‘²,[Ÿ8|Ѷøu3tÜłn÷Õ\öӌlɋgæ]­‡†tijO˜i €¤óĮ/o¹oĪRuS<ū ÕGÖ<.ŹŠńģf éÄ"ŗK}›ĒYµ6ęķ­•ŪÓ0¦“³Æ"€’No{xŽć<…miŻ\·č•ĄH~(”7æž`ę!€’NOĖą Ū²ćÖßš³ĆéL±m[”x­øu 3t² Óņ#Fo¼śs»cé–m™Ł'JćÕ'ĢT@ŅyąßżĶĆ߯»x°Wārb•Ū+¾å~ūČŠ¬öxō3”öÜūņÉī6µ+^ż„¤Fr\xõ3•#Ń0QŚėO–/ōÜdjÜGbf’Š@I÷…¼cE¦ ›cӊ†ųE!€¤C$­‡æżä*–Üņ‘ĀrY>޾Ü;Ķt]–%ĮѾÓqä±ęž¦½ćš…ī:Ł9ž÷`Ŗ!€’Vø3l]’Wßm˜Ł_Ė/ÕKĘӗm)+Č6.`>C™Ī`Wõ³Mć’ S»€¤öŲW·>¹ķ75›¼ūYw›ŌŚöŲ.q{l_éģKć\Ģ8Ģ€’Žž{÷“‹Č‡Üłn÷µŁt[ŁĀō÷gäČBÓ!žŒ,ÉMŹPRVY»®„Aļ‰ļ-ė0“@3Fø#‘{DäwžŪ5gĶüĀw޽`_j†dęż“Œ@¹ĆQ—‹Ķī›ŲJ y± 0#…;Ƒ#lź“śŃ¾ćń‰÷Ŗ›üēTļ£s'°4HjĢ€f“ąˆŖŃ«Ī×Nk‘ÕŅT½æjĒŠóÅ+„ų¼ļŲ±Ō‚%7TŽ«¾ŽĘցÖĆ£>y ¦:`Fėll+›ē¹Å0ÅŌ–¶M§ah-¢”Čpæźī驇bQ;Ų^|ōŁ_?’ĖŽCĆ ż×œ­/­C„<±S’žæų†Ā¼Wß2ÖŚ¬hČØńGˆČ±±öS 0£=ųµ'¾7Ü·±Ėé6Ü#Ę9«ņ?ŚŻܗSģ[ŁT5šć/¼üŒˆH’Ī~‘yõ­õˆˆ¤ŸŁW^įŽŻĖjµĪ ˆˆ˜N%N5ÖŚ”įó%†0U@3Z¤7¢Eä÷§=zī|ļX‘@člĻ;Ū®8¢ŌKŪQƗz"7XŌńÖ=iÉÉ~A0582““õBź€éŠMč\ h wšlĻ•2“m{£Źp؁‘łē½Į\ė cኃo_µž…÷Ę +ž•ĄŌCąNOĘ9?3\¶ˆ„ĢóŽxØmC»ÜŚ“™)»xėeń­¦&–`pģhų¬3 £„uČĢÉ„¢“¢z­/Õņ‹(ÉŹķž/¢Ÿę’CɎĄŠEF‚ZŪJ)ć¼³gc!Ēņ‹væ?%]ū•z5p¤efYVŠaš¾Ųy^€i%X\ Xxx$2Ü5ęļŠüāWęyS¬ uŚd‡Óe{}¾Ž“xŌS€ 4Ųr 12Ücåݜüķó‹JkVŪ¶=ż¹a’‘Õ’Ÿ `ź"€p2Š—Ļöe—_Šwض£FłÜ‡.½ąą5ÅC«œ.yżŌ+­E“Öŗ¬²śāųW S {@øī“\ļ¼Ķ’øĪtłFuĮ ’agnį+³s k—Ļ^Š{é«·¬æq£y((#uUEϘ¦cL{J`:!€0J¾¬2wéEļ»)³ā—ˆ¼eX(*{zEVNGyV^ßüŒ¬hq,¦cJ)Qg9äŹįŠīʓ«÷„Ćå}gū’ €QČ(^–V¼ź×.»„ą|§_im©Ź…UWgęDŹN=s:Õ9æsM‡8|©ķŁ‘ČœŽxÖ S€·ą/]‘“Y~ÉņŠK’fNFéŹóĪ|ˆˆä휟‘.ķ]m©‡z»—6ģĢ0@8‹ō¢%i…KoŗfŽę*óf–ĘĪŗvźl“­*¹Ś0Fæ˜j°?³Ń02"c­¦gįĶ(ŹĻU©éŗĄ‹•”µ6.,L°õĄ Ād/q »†FŪVk-ŻEµYL%⬵±ā å¬FpŲčh]Q7±ĄŌA Īś{ŹZ"! Œ¦mOgęaĆøĄe^0@ˆ³PpV’š §ķ|ķ“im,?05ĄTA Ī“3 ÓvžÆŻČŁÓ޼ęädŌS€8«˜’äEžģæ\Bx.-y{•įeł€…@Łö°³rį’ߎŻōÄUĘa>3@ßßHmƒ‚Ņ…TŪØ,HLŌĘ7F7.\ł”Ü»s„ ż±‰6V%1±š"liZF†‚ -ˆ0sü“N3÷Ląŗ¶ĻIĪūKž—…ڽR–e±üąłŪ™©ś‡€)ĖFeź­/?>~¢y¦Ż·;ŪÕ­zķ·_Ž€9{ī×FĒ7¦Š§xµŸ{®ØIDAT}måŌ­jõŌn÷§č/:ää™å‘ź@»ĶWEQ6ĖāīÜ„3ōņxsųał/ž»]yT_š“ż 8tČJmźĪZżČB»ļ67Žß«m$fč7:¤Rj֗Fn¶ūnułÜ‰yś‘€:|tēē֍²üėĮ‹®ß,ōĻśpķIē@ÖWÜŁ\æ\ ŽŠWtŠāü»æl¬ŗßj­,‹¢¶86]TŖķOŖģS:ØRjޜ¾ņE}éŲ­½½¢YEńx³ŗ~÷öłkæM_ü|aö}×ļŚ`Æ€żf}uņž×^ūōü³7&Nƌž9{å§FćģvQEūWBö7]Q)źµ7ēźµb®×“ō[°€Ä F€1ˆ @Œb#@€Ä F€1ˆ @Œb#@€Ä F€1ˆ @Œb#@€Ä F€1ˆ @Œb#@€Ä F€1ˆ @Œb#@€Ä F€1ˆ @Œb{=dõ™«ŹĘīj«µ²lVš{;ė険I€@m­-Ī/Žųģū^ϐb #@€-¹Ōj­lģVė3Wæ©Ļ~;ßĶ’“°õ÷ąĪÜļļ]8t¬ŃĶ’œ›¬EqøÕZćæ­‡óß uó’i¶`1ˆ @Œb#@€Ä F€1ˆ @Œb#@€Ä F€1ˆ @Œb#@€Ä F€1ˆ @Œb#@€Ä F€1’:¤ß®¬ńŌNIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_10.5.png0000664000175000017500000000064514632072346024207 0ustar fabiofabio‰PNG  IHDR ™ƒHĻsBITŪįOą pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<-PLTE’’’€$99q«Gs±GyøK}æO{¼MƒĆP€¾MˆÉSŒĪU`Gē– tRNS OhzŸ ÓŌĒg„ŃIDATķĮA€ ĄļĢa"|d”’lįŪĆĢ$üØķ ¹ß ég†B®'ŌõŌ©<ˆĻįxIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_6.5.png0000664000175000017500000000311114632072346024123 0ustar fabiofabio‰PNG  IHDR ™Fō„ĪsBITŪįOą pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī<PLTE’’’€U@33f++U$I@ ` @€ UŽ9M€3Ft.@€+;v'7m$Im7Dw3Uˆ3K–-Gq9U†=Ft.Q€:Y7U€5\…=\£=b“E/h^Ž9j•FržFf‘DU‹>ZlŖFn«Em©Dk¦CoŖFm«Ej¦Cp«FoØFr®Fq°Fl©Cm«Dd£?oŖDj„Cp­Ei£BvµJs°Fv²Hr°FqÆEdŸ@v“Gv²Ix¶Iv“IwµJxøIu¶Iv¶IzøK{¶K{ŗK{øJ{ŗLw²Iw¶Iz¹IyŗKw³H|»K{ŗJz·K{ŗKw¶Ix¶Ix·Iz¹J}¼L€æN~¼M€æM}»M~½N|½L{ŗL€æN€ĄNw“H|»L€ĄOĄM~æMĀPĮOĀO{»JĮOzøK}»LĮOĮOĄN€ĄOƒĆOƒĀPƒĆQ‚ĮO‚ĀO„ÄQ…ÅQ…ÅQ„ÄQ…ĒR„ÄQ„ÄQ†ĘQ†ĘQ„ĆQ„ÅQ‡ČR‡ČS†ĒR‡ČSƒÄP†ĒSˆŹRˆŹS…ÄQˆĒSˆÉSˆŹR‰ĖS…ĘQˆÉSˆŹR‰ĖSˆŹRˆŹS†ĒR‰ŹSŠĢT‡ÉRˆČS‰ŹS‰ĖSŠĢTŠĶT‹ĢT‹ĶT‹ĶUŒĪUkæ[Ó¦tRNS !""$%&(+5:=?BBCDEEFHILLMPRYZ[]dhjjnoppww{|}„„……‰’’’“”–—™œž  „§Ŗ¬¬­®Æ¶¶·ø¹¹½¾ĄĀÄĒĒČŹĖĢĪĻĻŅŌÖÖŁŁÜŻŽąāåęźėģīššńōō÷ųųųłłüüüüżżžžžAÅ1złIDATķĮłŸĢuą÷ģŗÖZ·–Jn”³‹ä¾PI(ɑ«tŠÜ¹JDDfĶē_lg¶—fæ3ß×ĖĻõ¬1€ĪŽJö6õŌÕTve]5 Ÿ„²ā²j­Hw  Ę+©Ż‘“„7ر#„Ņļ¬*ż>#€Œ_üÖöÕܾ­›ÓĪ1t6xņŅˆ5i{ļ²Z¢Ż¼ōz9fj Ē€}cȳūó”ä˜ņ×{ä(|pŖk9|Ū@ŽYm‹ČńŅ­mäxäŚĘr<}zD9Ž}>€<óČÓü?ōģÕ+€żņsĻźū$]n ¾Oļ\j ¾‡G +š žm/Ī粬mvIEND®B`‚cinnamon-control-center-6.2.0/panels/datetime/data/timezone_11.png0000664000175000017500000002752114632072346024047 0ustar fabiofabio‰PNG  IHDR ™q*UüsBIT|dˆ pHYs¢¢EŻ1¢tEXtSoftwarewww.inkscape.org›ī< IDATxœķŻw×}ąń÷ŗ'nĪ ,i‘‰Ģ‚!fR”(‰-ÉJgĖ>Ū²ŹåņłĪw¶ė‚ĻW„KU–„“%*0ˆ¤H$Ą’  rĘ.°9‡ŁŁŁŁ4¹ūŻ$BŲ0ŪšżT©DLčž-žŚ/^w?©”¦nå“’ų„’Śū‹“9ĆPˁpŻó£dĪ0Z²pė @X†`€e–!@X†`Hoiµ±Ą2Ė ,C€° Ą2Ė ,C€éL&{€©!@X†`€e–!@X†`€e ­„×F Ė ,C€° Ą2Ė ,C€° Ą2Ė ,C€° Ą2¶dĢ)„tT+!älĮęoé³qÜLF€ “¹—<ōļæ‘UX­fćąŗ#+.„0fćŲ™Š@F³9sbŽœ"!EpÖfåź²YC€° Ą2nʌiR f ē÷ą$į/·ŒāņƵ5µ‡6 a¤×„§`ą–į÷ŽŪą÷ІdĻq+c€eX@&‹łŪՍōœ½į%Wf<āØXżÄR»» fÕ`·*K)Bģ¾Łē²Šę—-{p…p d–q Ė ,C€° Ą2Ė ,C€° ¤1)…Jö SA€° Ą2¶d$ŹÜĻ¬Ī*Ŗ©žź÷ŖÖ}Ž®Ł]ĘlĢ„O"@1܅óŖ*o{rį4æKč0ø&.Į`ĮQäw=Łõå5·æš…¹5»×iz_ŽHÆDŻø iĶYęt/Ł“rŃ⻟Y5,W¹qovqYÓķskźöō–ŸrgK›;;TØLĶ ³ü¾ŹŽ¾ŪŚ4-—K®’@*E =­ūš¹üĮŅ]Eę2MJ©ėBSBˆ3‡«¶WĢXėp GI™Q%äo棔į6[ö«ĪÖGŽ'mųń·‰ūŪ>>–ģ9†ŚՇGśĆ7ū+ HKEµ¹9_’ļ¼QQ-V^¾³Ą?hļŗpzé.§{,ßīŌEIy“źźļ Ų;üƒ%³²GK.]¢%ÆžHZ)Zp§­hĮw's†čĐsĀ׎/„軣g ¤g™Sū·ß{ņƒ9 å†+_Ļ+ŒĪŻø„ž+N—™%µk‡EnA“ŅåĢīhž{ °ųäæo}‡”Ś-{Y¦ »ę-<¶Źé ēøÜĮüXŌ9ŃŪ¹¤~4°ŗ ‡™ō߀““[’WZZ%ÖÉ«Ćf—šĶ®²n“ŖįtI§Óe”._ŪžŌČpǰßŪpĘé2Ż-+ū½;fwņŌ””!«ķްtuĆg³rTŽ•ļÕ,ķz“„¾łęŗĻī“ˆ3)'’l+iÅQāŠļśÜķ+…q!„sŗĒŃtM–ˆ¢¢Rß6!„(*=øźŲ~ūĘkz~ó!eJ!żĪ‚¢®²Ü_iNŽh‰& ›aŲ¢F܍ĒmŃp({ŌÓ³²M™ÅįÉü²ž*–®~ćSKoėzR)¢aµ;…C(!"ašsõI!…2į?€“ņ•’śų³K7Ų¾b³ }&ǹzõÄéRY«7łĢŲȅM3uM7uwV°,æ(øÄfŚõ.éBˆXōLĢļĶjn®[÷žß»”C)CfēÖW'ÖŽōžˆdńWv7œÕ_ŸĖźnߊXVy”:u‡‡‡hśģ=!Œ§` m|öļżęęž‹Ć%\ɞåZLC©Ž¦ņ=u'ŸŁ‘N«!3 ;.ģü»—ݧn\lD€“šō?>žķŪĶł^ŖĘ‡Bhŗ”ó—x¶Ł]łÉžÅJ6w~¬¤vė&9‰›Aø i”būóš6ż{>¬ā÷f5E#sG®¾ÄkŖL3¢å䵕ŽŌų4Żm\~}įŅķ[.Ó11–;44PŻ=1V6"d~T(SJĶf&ć±ĀRjŖbÕć bž{„ūoōYiį‡ßŁńųŗ×Ö.XSńdĶj××J+łdĻt-#Ć9}B„lBäÄ®Œ„L)”!M“ǘ+/Ké4®}”1ūŖ Æ}nAķšępČč-<[wāĖÆ+eȒ _mÅ܉UBaõB™Jų³Zż>ē@^‘Łƒń˜=lšŅpe… „4ķ g7½3ø­w6ćD·»9kŸZ7gķSž¾3Ūė®÷9ī@Zq–9_ł/’Øv½ž%›]¦Ü?Ø+%ÄĘę^OOY½Ć1ZXP-s8£łŗ®ģ6»‘­é¦=4įö5š¦f!”ĻSя¹"N÷xöā hŗįloœs0æ0R*éźj{čdNīÅņ•ö¾¼*“l*3†2‡}īÖąxöą`ļÜśŽ®ŪZ„Ź‹JĶn&śēŸš¶ØŽC?ŽīkŽß{­÷ ¤¬.šæŖb³Ż©—®Ū–÷OyE¢,Ł3ŻHÓł¢}sų7f刜É|žņÆę—/ß:{tŃĖķŸ:ŖéYæY)±;<9[{åoŻŁjRĒüŻs(aĕų] g×ī¼£YJ[B£`øóx“ćą_ķæ0zõ{ŅĘCß¹’S÷}±ä§K:fz…|G›3+^›gMēū¦”D$,'ŗŪ«ö]<ół÷„Ō”R}ć=Ļ}½ŖfbĶLēSJ‰īÖü£u'Ž‹•'2D/¼hx÷漬”śÄ#} ¤•ożä //]§}1ŁsL–i*„i3Ė„xLÅĪ-ÜnӕīŹņWĶ_2zGĀL ‹)stŲÕÕÓ¾ą@Gė}§„pĒg|X#.{OæŚŃöŃ÷vŖ+¢ƒ@ZpV8ķ·?¾įž{>_õó’J9/ŁódŖ–ś¢šź¶|×fzÓz<2¦w}žD×±^~@Zxģß=šåūž.xĮfc+»Ł‰Ps]ÅŸgÕ¹±‘ž™lŖé×ŗŽüģƒžó;/Įcx&"±^ɄIr¹…{ՆžĒ•źl°’H][ĆŖ=^Ϧ6)õ)‡ˆ+æŅ,]ŗķ>)e“R*N€ %¹Ŗ\Ś]OޱnłŻå’1+WVÆ{ØÜf˜*®éü#ŗ¤&…BVĢ_]6ēšź”³MĶõkßõ ÜŃ:ÕcéĪlM” Į RІ§×-’ĪŸŲ•WØ»²D¶—’įdŠ4)J+CµŁ9Gę|ø³ā(5’wÆ;éc%r0 ģ.gqvž*½H·rޱõķo˜FH7°n!](sJUČ RĪ‘ēÜšō†õ’ń¢}łÅ¢<Łóą›MŲķ©;Ż}y«6ģž\qyhIółŅNÓ”Ū²'&Ƴ‡»Z<%opÓ:€”tņՓ ~gŪS מMĶ żQ‡S8’=„Šm†;*ó=YŁ”5«6<¢Ū4)Đ0M„ÜīńĀĘóŸŽ#5‡y­ļs RÖńc§{ڃoō¶Ē“=KĘSB†2MóĘŗŹĶ•oÜņĖ/±+Q±Kńq‰¦I¹tM÷“[łń_ęę×U^ėū¬€ e•ēTĢ[’@ö?ēäi9ɞ%“™¦Ržīܳ]m5'ēĢėXW½x|żõ>+„sŒnˆ„DČīöß}_ˆ¢Ņčü»¶½’Wķēöv·o98*Äšå÷Y@Źjü ”ūüžš?˜»gϦą„8qą™ē{7^,*X0™ļ8ŻĀ}­mY.Æ Œä“ö÷¬9„®|Ÿ@J;ł^żŪ±˜ˆ&{ŽL–“knŲņŅW•ȍµ5,|ψ›"3ÅŠ ³Ķ۟Õ «čpŲ'½žnWSp\Žł5OK}Ѿ֋kŽ]Łoš¹Q#ā×ĻRę,¤¬Ū>½¶ņ™æŻ“ĖįĪdĻ’ÉFüjx ·ā‚”ŗjo~šhoēšzÓŌĶx¼b\JM)5ģŚ“eū3sę]óҬĀbUŚ|Į}ńČ¾Æ’@(ShšMé0„"Šu"6P÷Ö.„TL)ģŽ'·¤RŌ${ŽtfšJÄ¢"—ć9y*Ļīś•ļĒćŹń—Ō{ū×× !„”.#«¹ōߗ>#eQŲÓSUWYݰžZ—])”„ĆĻŅ4—ń›ó1ĶŪ°{ØļĢk;Fū/žfćB)ĖŪŚQ>?ē¾ĀR57ٳ¤«hX[/”peÅŻ=ķ"VS;z›Ė/V¦ˆū ĻuµÖģæ»łfĒénūŌ)»Ć°–x–Œ.ĻŹ1ņ„”"1sG«vŒŌ“_žl,8¬õŸßŃŌqš_?PJÅÆ<ŽTÜĻ€¶ņńĖ~ļÆWÉɗłÉž%)„D$$ƒJięhĄŻyxĻW¤Ģ°ĶfŁ•*ŸbJ™ !„0¾aó+_,Ÿėæ=•”р} ¹īŽķ’¦Ī‰”vŃöĆ}§_;q­Ö @Ņż«ŻųHįO JDE²gIw¦©TWĮ ĆPāōį/żBŹß^25UJÅ4»Ż“SUsneGӝ§„Č‹ŗO‡ūĻķŲåmÜÓy½ļ HyOü‡‡æ¶õ y?“ŚŌ’µæK)%N\ū£¾®ūĻ'āx¦Õ/¾ļķ>öāĪ æsģFŸå1¼Hiwˆ¼"Ējā#q”)ĶüĀžIķ÷q3F4Ø÷~­µé½śåĶāC)ģĪ/ß1ļĖśĄ»«ļqżY²gÉ$R*­lŽw­>×LŽ “ž/kūč_޹śfóė!@²–lšóē Wi8\rFæ(擤&E~‘*Łüą+ßV*6­&ˆŒ hŻĒ^<Śyų'{”RędæG€ eśBā13ćnZVJ‰xĢ4­¼{tŲ601¦ _łZ^A¬¬rŽĮS=VŠß)»Ž>æ·ūų‹G¦ś3°RÖ®g÷>?Ų¹¦sŪ—ē?7P}5rĆ)ɞk&: öv.;9ä-÷-ZöŃÖ²9ć‹ņ‹"óNMæł·§gbL÷wµĪłŲ7°¤©bn˲ü"MaÉų’Š„Ż?4°¬c*ĒhP}§_×S÷VĖtfį)XHyĪr§K™ŹxģO?õĒ·?œó]‡Kø¤”B(ń‰m,”RB^k«ī ʉƒ»žüīÄxåȽ<ū—…„ŃjÓ¦n“ æ2)Wń±€³×7PZßŃ“éh(Xó‰ÕÓµ»\£īhtīčõŽqµ@÷éXļ©_īō5Ō;ݹX@Ź‹ DĀæžĻļmžĘŻūē-+žLÉ\÷¦aOø)ÆŲ± lžvW8ØĘOLüļҹYwŽ G»k×»ž0æXTĪę\†a )„ˆGE4¶ū…*'?VׇsņĢ¢ßł9B¶į`pް¦ »ņ #ÕRjB·%ö¶ˆx\™CYĶ=ķ‹ötÜNJżš+š–‹Fób“=īPėĮPļÉW¶wšÉ|ŅŹĒ?=tNqīŹ×żėŸīmō8·ć“GńC!„Ųś­Ķo=üĶŖż§p&zÓPŖ³µģ£¦ówīu¹Ē²‡} …tĘ ŪKÜ9ŽāāŅŽE‹Wzŗüłx\żŻ…'c‘˜T*b[°ōųmšžŲ•šąøčhž’aw뚳”МQMs˜‰X R¦!½ŗŽ>÷ś„Æm|¦Ē#@öŽżīÆ^żŚį7NœX½µādĶrżīDŸÆ³„䥳_z])"a1|łīŃ‘eƒvēhNõā{/v|Dó]8³ęWžžūź…PBÓ¤ŠdÄ„%h_Ć0EŪŒ½½ŽŒVö !„– 5ӈjuļō7ļžīJ©h"ŽI€ SéŗM7y@„„čj-:Xź±·?qóɕŸ1Mrv–V†– ø[ļ’̳±XåÆW¤Ņļœ_Ūµ-óÄćŹ8y`ÕĻśī?'„}ŅĀ #ŌūϽŃ6•=>&ƒ@ƹ÷·¬~ņ;Ū¾QµPm¹^(L™ĀŪļj:sų™×¤ęøī/ū~ߝ­>OGĖŲH~wŻ©§Ž–Āe!„Ra½vÅ®-EeŽ%ٹ*2§4ĶK+&¦”ĕ—l)%„·?ėb{ć²}}[.&ģgüµX( ÷žzķ|בŸīŹ“ĮS°Qj·-’åX}>'OĖMŌ1£jk¬ŚŻxī‰=RŗnŗŖ¢”!Ƽł{į²[ę/īø?'Ļ,¹Ö}¦©”·ĻŻX>7¼,’c¬Īžī9g†Ŗ»ÜŁ#y±Ø#rŪǟÉ/ŒUüĪī֋‹?čiæ’¬”¶„’2ŠzOżņXĻɗĻF+°€ŒŅYß1ŠrzÅ÷•Š›K7:ž<+GĢ(Dā1;yšöy=wµLö¦ī+㣨ōč¢%+ŚwŗEÖå×¢Ó4” )ŃaG_sŻźw C7ņ Ķ=~ąž’7ģ[×-„¦„blTō !ÄĮ÷ĖææķÓÆ’§†3·½9Ųæ¹i6ž6ōwŹŽ“Æģķ;ūĘ9!^Jü + Č`ŸżūǾ¶źžÜ’\XŖę’ęE%D($'l6å°;„żFßWJˆ†³•ļ4×q×tĪ_9oļmė7Ÿł¦®’vŸ’ «żŠ‡ż,7/[Xź© ” y7¶WĪŪ·*ĢZßu½ćåę]ØYäŅ™Š{[„bĢsQõłÕ{žŗwš}ģ+ ČXĪ2§żŪ?üĢńŹ±Ęˆ›BHiv4<āsoŚķ掼…ĒÖĶ]ŲyļˆæØ”bžo“Ė­²Æü¾i(u|’ņŸĒcEßąĘöĖ«7#µĒź ;Ÿ˜»Ą·Łf’mä(S‰S‡Vž“·ó”ӉžYg"Š}*Ž{ņ—;|-ū§½Įądq 2֜Å[Vōv.>7:īnoÜp|ž¢ć›šź>½GÓÜqĆȉµ7?y°µ1rHjŽ”ĮW¬ė|ܝ-²MS‰!»1Æ(<ævuóĆńø .z>\|ÓMųlöģ ›w|„¼jbåÕļMŒéž€æ¦G%ÜY­ÅŃHéøaäGf租œ”Ö”žÆltŸšŃƒ“E€ c…Ē\±ī¶m§ōž,C!š/,x_^µG†¦9Ķk_y¼Ø,PŪÓQyĄéŠęx=M½÷ž·Ł|īX“,(µÉ=āV)S®¹żķĻ_+>”¢§£āšÄX­wÅŚž*­ō­½pzÓ/¼žĶ‰ųY§źŅƒ»GŗŽüüWC3Ž`p²d,ui捛~®žō„MƼy\!āńŖń«ƒåFg[²āĶūęTl¼ś±ø—÷i<’Ōv{GĮųhī`żéĻž7)sb“=z"™ńØ6P’¶§y÷’|C)eé €Œ%…”r{dĢōq¶ŗ>ä^¹žŻĒŖyļ•×Ųį| 7ēܙ#_zUJ›ŠĒk]m5ĻĘS¬&ƈõ¾³ŪŪŚ÷?” N€Œ%5M )gé©KJ›[XŚS]½°sK~Q“źzŽfdē“Ēb9‘XtĪŲģĢss—6|µ®ėČĻö$zƒĮÉ"@Į¤Lō.įBa³õ欹óķ/—†ē»²Ģ›ī3²p™ēŹy»6išéÜ’īg’)© $|؛ˆŒč='_>Ö{ź—‡’ł$ÜI_Ѥ©ŁģRÓžŪv4ZĢĶ”M&>„BÓ¤ĢŹ1 :šęļ ‡«G=ĻĶżZ×±ēöõœ|%©ń!+ Č`RÓm‰„ā²vÕĪ­¹łFŁæ)|Õm“ŻK$QĘ<UļéWߨßÕdåyƇ@ʒšžŠėƔŠĖõw½šūsß)§|¹esZVŒĪ÷Ęc%ĮDĪu=®“ńŽSÆģōµģ±ā|“Į%XČXšn×y¼ŠŖĆK§Bų½öĪŅJĻśā²‹5‰œéš”C-"‡Ÿ}5•āCLźö„ž¾[1·såtāclÄęi:æü=3nŸ 'r¦«)Ӑƒßk;šż—Żg|³y®éą,d¬Ä®€(‘“7>wŖß2 „źN¬Õė¹»ŁŪæµ^Ģā= f<ŖyźŽhłšm·zƒĮÉ"@±¤fKŲ ˆRqĶīŒgOõ{c£ŽĮžŪ[¤āśń”„a„t]Ļ2¦;Ÿ°õŁŽÖ~ąo'cƒĮÉā,d,©é‰[QBH”¦üū³ĆĖÓõa÷ ­ ¹jż/¾(Ōø}:£Å‚½ūų/źŚü`g*LJ2X"W@¤f3£Ū”w1wg‰¬Uėß}ā†Ē–6ÕÕvļ•óö­B‡£„HÓü7Œ–ĖĀ£½ėŲsĒ»Žülw²v7Ÿ .Į@ĘŅtĒ“V®MŠHÄ=,ÄĶo­P¦ż=§&ĘrŗŠ'„‘Č‚a»½­Č4‹B7śNpØCė=õŹG}gß<-ÄĖSųY’‡@ĘŅģNW"7ģ+n›SŲx£ĻÄćŹøpŖö•ަGNõ†s)mźŅ’ė*_2t£ĻŽy.ˆŽSƾ;pį½”Ų`p²ø KÓģĪDo°wQ‹aÜø)†½Ł-Ķ™Ķ§]ö7»’b{ŗÅ‡2˜Ōm €æŚ‹Žų,©v”TBw`æŅHļŁxω—·{÷¤Ōƒ“E€ #I)5ĶęLą= BhŗĖˆ„ģž«_W¦ń˜Š÷uęŸń»ū 3<+æg:ODzN¼“ŻŪ“·o6Žoī@¦²ŪŁ )m*tłņ‹Ę+Æ|}ČkļŖ?q÷/G뻄"’ż-„Dpø3 §äƒ“Å 2•Mwd%üÜ»[1Ķ«oļ°E.ĒǬ‘RĢYūłĀE[’āŖļüŚ)eZ.&¤åŠĄĶčŽl‡nwŁ„ÓŽ]üZū—vń3†ęæYēģ­<—ČsÜHnåJ•U²hCnYmmÅŹG÷yźßmµźÜ‰Ą 2RnÅņlĶīJųĘ|ńxŁx(hūĶ} ć£ŗÆ³õöS‰>Ļčv—QR{ÖüĶōä‚-ņؕēž)V@‘œ9%9š-ń"„BIS!|®ę³G·½‹VNy‡ōDpåUÄsJĶIƹ§‹@FŅŁŁŗĶ™ŠĖƄøt#ś`_əń±ńņӇž~Ń0ņÓś¦p« ČH6gŽKČÄnĒ”T\ęŌĻik\u24±tPjöŁYaÉ`Ü€Œ¤;²ŗ ”iFµÅ+^Ąéņ†ƒµ^āczX@FŅķī„Č¢„oŻ«IMx=[ė„ŌÆ~/&‰@FŅģĪ„H[ć§÷KĶn^¾Ŗk¤ē“aDC²hįŻ\U4üe #iŗ#!¢Ģ˜VPxxŃåK®”iHoӞńī£/¼dŃ`"Īq+!@‘¤nw%č@jddy·BŃ ŽīĶŽ‹;’īÅ”öĆĆ 9ž-†K°‘4Ķ6ćÓšŗ4­8¢Ģ‚hdÜ«{Īļ<×yčŁ}J)n@Ÿ&V@q¤”šīpĻųŪ5½4,¤¦&¼­²ēų/öv|üć=ÄḚ̄€Ldףv!Čc!Šu"ī©{ū­ ļu'`®[€Ld×Yv!Ä“w)Wf\z›öŽxĪļ|cøóÄČõ>6ŻćßŖdœģŅEnŻīžö÷ć‘qŪ@ż»­{’ļ[J©XG»å Č8ŁÅ s5»sJ—_I9ępg5–÷ĻėóŌķ<Łyų§”R¬p$7” ćčĪģŻę6¦ņÓĢŽ ¶e÷tńƒŽC?ŁO|ĢV@qt»;[³9n²¢„;«¹4\āBŠ@ēńh’łoz÷ō[3孉@ʱ9snø ”a}į’7·ML”öOŒ-ņ6~č÷œ{s{ ēģøU3ŽŖdŻ‘uĶqgµĒ¢ł!‡+ąģßpzÄWšŌ’Ŗ½mß?棔Š[=筈@ĘŃY¹Wž¹øōDMAqÓņ`°hĄÓ½¹.8¾h(<Ņ«{Īæt¼ėčs‡øßĆ:܄€Œ"„tfV—_žsłœ}« Š[kŪ›Ł×ßõČ)„r£cž ¢ūųK»:üücāĆZ¬€ £”-x~NIiVE՞…CŽ%ŻŹ4EkĆļ½/„B)1Ō~(2P÷Λަ½ɞõVD€ £d—-\8ÆöČzæwķ…XtŽČ gވB˜ńˆ6Ų°Ū×wśµķcĮdĻy«"@QŹŖ‡ēõvl;#äœq#>čÖme”X( {źŽnjß’ż÷”RSډÅ= Č(GŸłŁžó'Z„B·•…BĆŻzω—·ļ’ž;ÄGņ 5±2iĀIDATČ(J)Ó×¼oŠßiķ;ÆzN¼ōv×ŃērÆyją,dū‘y’tŠßY7Ōvȗģyš[2R÷‰—ö%{ü..Į`€e–!@€éR‚GkML—Löé‡`€e–!@X†`€e–!@X†`€e`ŗ”RÉ!Ż ĄtI™ģ ŅĄ2Ė ,C€° Ą2Ė ,C€° Ą2Ė ,C€Ó„„Jöé†`€e–!@X†`€e–!@X†`€e–!@€é’É ż ,C€° Ą2Ė ,C€Ó„”Jöé†`€e–!@X†`˜.)“=AŚ!@Xʖģ€Léwōž~õ“nwǬ8_<<“ā<‰B€ ¤Œ˜ģ=łŹ1„Ōx²gIE\‚Ą2Ė ,C€Ó„”Jöé†`€e–!@X†¦M&{€“C€° Ą2Ė ,C€° Ą20mJ%{‚tC€° Ą2Ė ,C€×!„tJ)³®÷?„ ™ģӍ-Ł©jѶæ|:æź¶’ė½ļČ*’Bˆø…#„=ø»»@å”Õɞ#“p Ė Ąuä• nŲü³ÆĢ©žhU²gÉpÕĖüK«j·WĶoŻ”ģY2÷€×qńčÜSīķŸgIėµ?”„RĆ.!ņ#RźŹŚéŅ\‡sF;[8v½÷+ē}“rͧæŁŃ4÷ż†sOægåléŠK°€iRJS¦)M„43ٳ¤ V@€iņōÜ{”Ækķßj2'.Ų’pR`4-/–ģŅ —`° Ą2Ė ,C€° Ą2Ė ,C€° Ą2Ė ,cKö@Ŗķ;1čÉæŽū9åK—-øĖiåL鎮£÷Ō«§nōžŹ'’±RA€L—`° + @iv§ŖŁüGw/Śśķøē‹NųƒŻĒ_¦Ž`˜")„ØXłčGniv²gI7Ü4LAžÜ5‹?õ—/¾ož3§4žģyŅ + Ą$H)ķ5w’›ūmż‹ÆŻń”śżŅŖŅdĻ”ŽXnBJé\ņąß|­|ÅĆnĶę4{:ēZPūīżc£„JBɞ/°܄R*2>Šp 4Üc !„ĆŃSŲzį3*Uŗōē®üźEŪ·(ęųo‚&”ļģ»æøc“ļ¼-Ģ/:¶°våĻ?§DXF«GFü5Ė×¾štAį™yB!„7+Ł3§"˜¤ »:»½šZ ódh|tEOwūš£ł× !ÄČšŗī‹g¾ńr8ģ !Ē•ļ= ė½¹É8õ ĄųZ v|üć—ź‚kśFŪ.^~OJ]…&ś…bŲ·čĀņ5»Iޤ©‰kŌ€)ķÆsēW¾lsd}½°ęūåוÓÖo~ö5Ķl8w×ūķM+Žę꟝36²¦/™ó¦V@€iō‡X(råkR³› gž•§·Ŗ.Æ ·bb|S×X`±7Y3¦"V@€  õv,ŗō'%ę/ygĖX ¦ŻļŪŌ~Ć/*S ©) FL*V@€Y#Å@ļ¦Sy…żUJÅåõ>ešĶ•Ż\bådÉĀ @J™RØø”šĆBˆpØ&ŠŃ\sP^7?„Š4§.½%.ÕbHؘVZłŃ*!ĪdO’ŠXHJ§įxš\²ēHU¬€° LWĘ?³*ń`ŚTäęŸĮ•–!@X†RDEÕūėl¶īüKR"o2!@€a· ķž‡^’Ži„uÓ8ĪŽĀdĻ”hģ¤ˆīöĶēbqgXJM)‘S*ģ‘Ž UČģX÷ĘĘK_Ąīšäš¦n&{¤D#@€"ev<*ļ7Œœˆ&ć÷ū:—`)ĘÓs’y!„ˆ¦Lö,‰–qEdЬģĮüL{¤(‡cĀ­”‘Q« \‚¤Øį”Mķ2£ņƒ „ʄ­¬ņƒŪ’=G¢ @ Óõģų@ß¶óɞ#Q ÅI©gĢč`1„ĀŗRƒīL{ĀÕd €åę†ĶÆuéź×2ĶČ'~'Ļ“§^],&„¦Ī>ōji…oåęņgJ„õĖļ•œž_Z¹y2ē›MĮ‰…žŸų‰&…~Ē}Ļ}+æšĢ\!„šūÖwöml.(:1_™±Œū}=ć~ ]„CóF>žą«’ā÷–6løgߟ,ZžĘ}B˜BʬųŲč<ŸŌlf²gL4H&™k¹šŌŽc=ņĻł…C j–¼{—Bńņ !2ļvvBRĄų貁Sמ\)CŹ ^& @€T!5%„–ŃĻęĶą¶j–!@X†`€e–!@X†`€e–±%{æe1M1yõėŗ#ĖHĘ<‰F€)dšĀ{žŃžścW¾ \‹¶žÅC®üŹp²ęJH%RLōŸ{³ń/I™·hė·gU$qĖ ,Ć%X@ Q¦į*^“yž•ÆåĶYåŗžēM5ūS%¤²å••,¾÷ Wænw„®~͈õŃžśk&K H!ŗŻmčv÷¤¹ėkŁļļ>öü!ž›ķ±†fČß~$īī0¢A[Åź'V:²‹#³}Īqo³īmüp—Rʜķs%ĢP<26ܲē’| „,([žąźŁ>Ÿ 뾦}'‡Z?œķs%OĮf.»jżV—.żŌ!µYæ)|Øõ` ėČĻĶöyf+ Ą •ÖnĖ/Y|ļ6!„ŠlĪYŻ­|Āצūšö¾Æ”šŌ}"©†fHjŗ’š>ė+f<¢łšöžõ6ķķ›ķsĶ.ĮŅÄPŪ”±ĪĆ?9ģ9f‚Ņ@høK÷6ģž@)Oö,3A€)Ī4bš·įĆ:oÓŽīdĻ2Sāüķ‡Ē;żų£dĻ‘Ā^ŻŪ°ūC„T,ٳ$¤(eĘå`ćī†Į†Żɞ%Q EłŪ†:žėždĻ‘H‚Ā£ŻŪø{ÆR*šģY‰RŒ2 émŲŻ #ifndef __sun # define TZ_DATA_FILE "/usr/share/zoneinfo/zone.tab" #else # define TZ_DATA_FILE "/usr/share/lib/zoneinfo/tab/zone_sun.tab" #endif typedef struct _TzDB TzDB; typedef struct _TzLocation TzLocation; typedef struct _TzInfo TzInfo; struct _TzDB { GPtrArray *locations; GHashTable *backward; }; struct _TzLocation { gchar *country; gdouble latitude; gdouble longitude; gchar *zone; gchar *comment; gdouble dist; /* distance to clicked point for comparison */ }; /* see the glibc info page information on time zone information */ /* tzname_normal is the default name for the timezone */ /* tzname_daylight is the name of the zone when in daylight savings */ /* utc_offset is offset in seconds from utc */ /* daylight if non-zero then location obeys daylight savings */ struct _TzInfo { gchar *tzname_normal; gchar *tzname_daylight; glong utc_offset; gint daylight; }; TzDB *tz_load_db (void); void tz_db_free (TzDB *db); char * tz_info_get_clean_name (TzDB *tz_db, const char *tz); GPtrArray *tz_get_locations (TzDB *db); void tz_location_get_position (TzLocation *loc, double *longitude, double *latitude); char *tz_location_get_country (TzLocation *loc); gchar *tz_location_get_zone (TzLocation *loc); gchar *tz_location_get_comment (TzLocation *loc); glong tz_location_get_utc_offset (TzLocation *loc); gint tz_location_set_locally (TzLocation *loc); TzInfo *tz_info_from_location (TzLocation *loc); void tz_info_free (TzInfo *tz_info); #endif cinnamon-control-center-6.2.0/panels/datetime/test-timezone.c0000664000175000017500000000475714632072346023256 0ustar fabiofabio#include #include "cc-timezone-map.h" #define TZ_DIR "/usr/share/zoneinfo/" static GList * get_timezone_list (GList *tzs, const char *top_path, const char *subpath) { GDir *dir; char *fullpath; const char *name; if (subpath == NULL) fullpath = g_strdup (top_path); else fullpath = g_build_filename (top_path, subpath, NULL); dir = g_dir_open (fullpath, 0, NULL); if (dir == NULL) { g_warning ("Could not open %s", fullpath); return NULL; } while ((name = g_dir_read_name (dir)) != NULL) { char *path; if (g_str_has_suffix (name, ".tab")) continue; if (subpath != NULL) path = g_build_filename (top_path, subpath, name, NULL); else path = g_build_filename (top_path, name, NULL); if (g_file_test (path, G_FILE_TEST_IS_DIR)) { if (subpath == NULL) { tzs = get_timezone_list (tzs, top_path, name); } else { char *new_subpath; new_subpath = g_strdup_printf ("%s/%s", subpath, name); tzs = get_timezone_list (tzs, top_path, new_subpath); g_free (new_subpath); } } else if (g_file_test (path, G_FILE_TEST_IS_REGULAR)) { if (subpath == NULL) tzs = g_list_prepend (tzs, g_strdup (name)); else { char *tz; tz = g_strdup_printf ("%s/%s", subpath, name); tzs = g_list_prepend (tzs, tz); } } g_free (path); } g_dir_close (dir); return tzs; } int main (int argc, char **argv) { CcTimezoneMap *map; TzDB *tz_db; GList *tzs, *l; GHashTable *ht; int ret = 0; gtk_init (&argc, &argv); ht = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL); map = cc_timezone_map_new (); tz_db = tz_load_db (); tzs = get_timezone_list (NULL, TZ_DIR, NULL); for (l = tzs; l != NULL; l = l->next) { char *timezone = l->data; char *clean_tz; clean_tz = tz_info_get_clean_name (tz_db, timezone); if (cc_timezone_map_set_timezone (map, clean_tz) == FALSE) { if (g_hash_table_lookup (ht, clean_tz) == NULL) { if (g_strcmp0 (clean_tz, timezone) == 0) g_print ("Failed to locate timezone '%s'\n", timezone); else g_print ("Failed to locate timezone '%s' (original name: '%s')\n", clean_tz, timezone); g_hash_table_insert (ht, g_strdup (clean_tz), GINT_TO_POINTER (TRUE)); } /* We don't warn for those two, we'll just fallback * in the panel code */ if (!g_str_equal (clean_tz, "posixrules") && !g_str_equal (clean_tz, "Factory")) ret = 1; } g_free (timezone); g_free (clean_tz); } g_list_free (tzs); tz_db_free (tz_db); g_hash_table_destroy (ht); return ret; } cinnamon-control-center-6.2.0/panels/datetime/po-timezones/0000775000175000017500000000000014632072346022717 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/datetime/po-timezones/pt.po0000664000175000017500000020267714632072346023720 0ustar fabiofabio# Portuguese localization of Red Hat Linux # Pedro Morais # JosĆ© Nuno Pires # Rui Gouveia , 2010. msgid "" msgstr "" "Project-Id-Version: timezones\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-08-30 15:33+0100\n" "Last-Translator: Rui Gouveia \n" "Language-Team: trans-pt@lists.fedoraproject.org\n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Virtaal 0.6.1\n" "X-POFile-SpellExtra: Volgograd New DakotadoNorte Blanc\n" "X-Poedit-Language: Portuguese\n" "X-Poedit-Country: PORTUGAL\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Ɓfrica/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Ɓfrica/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Ɓfrica/Addis_Ababa" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Ɓfrica/Algiers" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Ɓfrica/Asmara" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Ɓfrica/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Ɓfrica/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Ɓfrica/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Ɓfrica/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Ɓfrica/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Ɓfrica/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Ɓfrica/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Ɓfrica/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Ɓfrica/Cairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Ɓfrica/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Ɓfrica/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Ceuta & Melilla" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Ɓfrica/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Ɓfrica/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Ɓfrica/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Ɓfrica/Djibouti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Ɓfrica/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Ɓfrica/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Ɓfrica/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Ɓfrica/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Ɓfrica/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Ɓfrica/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Ɓfrica/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Ɓfrica/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Ɓfrica/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Ɓfrica/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "Rep. Dem. Ocid. do Congo" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Ɓfrica/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Ɓfrica/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Ɓfrica/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Ɓfrica/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Ɓfrica/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "Rep. Dem. Oriental do Congo" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Ɓfrica/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Ɓfrica/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Ɓfrica/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Ɓfrica/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Ɓfrica/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Ɓfrica/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Ɓfrica/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Ɓfrica/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Ɓfrica/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Ɓfrica/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Ɓfrica/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Ɓfrica/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Ɓfrica/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Ɓfrica/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Ɓfrica/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Ɓfrica/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Ɓfrica/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Ɓfrica/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "AmĆ©rica/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "Ilhas Aleutianas" #: timezones.h:63 msgid "America/Anchorage" msgstr "AmĆ©rica/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "Hora do Alasca" #: timezones.h:66 msgid "America/Anguilla" msgstr "AmĆ©rica/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "AmĆ©rica/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "AmĆ©rica/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Tocantins" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "AmĆ©rica/Argentina/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Buenos Aires (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "AmĆ©rica/Argentina/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "Catamarca (CT), Chubut (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "AmĆ©rica/Argentina/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "AmĆ©rica/Argentina/Córdova" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "maioria das localidades (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "AmĆ©rica/Argentina/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Jujuy (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "AmĆ©rica/Argentina/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "La Rioja (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "AmĆ©rica/Argentina/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "Mendoza (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "AmĆ©rica/Argentina/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Santa Cruz (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "AmĆ©rica/Argentina/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "AmĆ©rica/Argentina/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "San Juan (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "AmĆ©rica/Argentina/San_Luis" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "San Luis (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "AmĆ©rica/Argentina/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Tucuman (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "AmĆ©rica/Argentina/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Tierra del Fuego (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "AmĆ©rica/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "AmĆ©rica/Asuncion" #: timezones.h:110 msgid "America/Atikokan" msgstr "AmĆ©rica/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "Hora-PadrĆ£o Oriental - Atikokan, OntĆ”rio e Southampton I, Nunavut" #: timezones.h:113 msgid "America/Atka" msgstr "AmĆ©rica/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "AmĆ©rica/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "Bahia" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "AmĆ©rica/Bahia_Banderas" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "HorĆ”rio central Mexicano - Bahia de Banderas" #: timezones.h:120 msgid "America/Barbados" msgstr "AmĆ©rica/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "AmĆ©rica/BelĆ©m" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "Amapa, E Para" #: timezones.h:124 msgid "America/Belize" msgstr "AmĆ©rica/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "AmĆ©rica/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "Hora-PadrĆ£o do AtlĆ¢ntico - Quebeque - BaĆ­a Inferior do Norte" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "AmĆ©rica/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "Roraima" #: timezones.h:131 msgid "America/Bogota" msgstr "AmĆ©rica/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "AmĆ©rica/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "Hora de Montanha - Sul do Idaho & Oregon oriental" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "AmĆ©rica/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "AmĆ©rica/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "Hora de Montanha - Nunavut ocidental" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "AmĆ©rica/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "Mato Grosso do Sul" #: timezones.h:142 msgid "America/Cancun" msgstr "AmĆ©rica/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "Hora Central - Quintana Roo" #: timezones.h:145 msgid "America/Caracas" msgstr "AmĆ©rica/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "AmĆ©rica/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "AmĆ©rica/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "AmĆ©rica/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "AmĆ©rica/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "Hora Central" #: timezones.h:152 msgid "America/Chihuahua" msgstr "AmĆ©rica/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" "Hora das regiƵes montanhosas do MĆ©xico - Chihuahua afastado da fronteira dos " "E.U." #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "AmĆ©rica/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "AmĆ©rica/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "AmĆ©rica/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "AmĆ©rica/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "Mato Grosso" #: timezones.h:161 msgid "America/Curacao" msgstr "AmĆ©rica/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "AmĆ©rica/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "costa oriental, norte de Scoresbysund" #: timezones.h:165 msgid "America/Dawson" msgstr "AmĆ©rica/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "Hora do PacĆ­fico - norte do Yukon" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "AmĆ©rica/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" "Hora-PadrĆ£o de Montanha - Dawson Creek & Fort Saint John, Columbia BritĆ¢nica" #: timezones.h:171 msgid "America/Denver" msgstr "AmĆ©rica/Denver" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "Hora de Montanha" #: timezones.h:174 msgid "America/Detroit" msgstr "AmĆ©rica/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "Hora Oriental - Michigan - maioria das localidades" #: timezones.h:177 msgid "America/Dominica" msgstr "AmĆ©rica/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "AmĆ©rica/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" "Hora de Montanha - Alberta, Columbia BritĆ¢nica oriental e oeste de " "Saskatchewan" #: timezones.h:181 msgid "America/Eirunepe" msgstr "AmĆ©rica/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "Amazonas O" #: timezones.h:184 msgid "America/El_Salvador" msgstr "AmĆ©rica/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "AmĆ©rica/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "AmĆ©rica/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "Brasil NE (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "AmĆ©rica/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "AmĆ©rica/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" "Hora do AtlĆ¢ntico - Nova Escócia - locais que nĆ£o aplicam a DST 1966-1971" #: timezones.h:193 msgid "America/Godthab" msgstr "AmĆ©rica/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "maioria das localidades" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "AmĆ©rica/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "Hora do AtlĆ¢ntico - Labrador - maioria das localidades" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "AmĆ©rica/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "AmĆ©rica/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "AmĆ©rica/Guadeloupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "AmĆ©rica/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "AmĆ©rica/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "continente" #: timezones.h:206 msgid "America/Guyana" msgstr "AmĆ©rica/Guyana" #: timezones.h:207 msgid "America/Halifax" msgstr "AmĆ©rica/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "Hora do AtlĆ¢ntico - Nova Escócia (maioria das localidades), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "AmĆ©rica/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "AmĆ©rica/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "Hora-PadrĆ£o da Montanha - Sonora" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "AmĆ©rica/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "Hora Oriental - Indiana - maioria das localidades" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "AmĆ©rica/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "Hora Central - Indiana - Condado de Starke" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "AmĆ©rica/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "Hora Oriental - Indiana - Condado de Crawford" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "AmĆ©rica/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "Hora Oriental - Indiana - Condado de Pike" #: timezones.h:226 msgid "America/Indianapolis" msgstr "AmĆ©rica/Indianapolis" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "AmĆ©rica/Indiana/Tell_City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "Hora Central - Indiana - Condado de Perry" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "AmĆ©rica/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "Hora Oriental - Indiana - Condado de Switzerland" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "AmĆ©rica/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "Hora Oriental - Indiana - Condados de Daviess, Dubois, Knox & Martin" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "AmĆ©rica/Indiana/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "Hora Oriental - Indiana - Condado de Pulaski" #: timezones.h:239 msgid "America/Inuvik" msgstr "AmĆ©rica/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "Hora de Montanha - oeste dos Territórios de Noroeste" #: timezones.h:242 msgid "America/Iqaluit" msgstr "AmĆ©rica/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "Hora Oriental - Nunavut oriental - maioria das localidades" #: timezones.h:245 msgid "America/Jamaica" msgstr "AmĆ©rica/Jamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "AmĆ©rica/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "AmĆ©rica/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "Hora do Alasca - planalto do Alasca" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "AmĆ©rica/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "Hora Oriental - Kentucky - Ć”rea de Louisville" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "AmĆ©rica/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "Hora Oriental - Kentucky - Condado de Wayne" #: timezones.h:256 msgid "America/Knox_IN" msgstr "AmĆ©rica/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "AmĆ©rica/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "AmĆ©rica/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "AmĆ©rica/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "Hora do PacĆ­fico" #: timezones.h:262 msgid "America/Louisville" msgstr "AmĆ©rica/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "AmĆ©rica/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "Alagoas, Sergipe" #: timezones.h:266 msgid "America/Managua" msgstr "AmĆ©rica/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "AmĆ©rica/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "Amazonas E" #: timezones.h:270 msgid "America/Marigot" msgstr "AmĆ©rica/Marigot" #: timezones.h:271 msgid "America/Martinique" msgstr "AmĆ©rica/Martinique" #: timezones.h:272 msgid "America/Matamoros" msgstr "AmĆ©rica/Matamoros" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" "Hora Central E.U. - Coahuila, Durango, Nuevo León, Tamaulipas, perto da " "fronteira dos E.U." #: timezones.h:275 msgid "America/Mazatlan" msgstr "AmĆ©rica/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "Hora de Montanha - S Baja, Nayarit, Sinaloa" #: timezones.h:278 msgid "America/Mendoza" msgstr "AmĆ©rica/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "AmĆ©rica/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" "Hora Central - Michigan - Condados de Dickinson, Gogebic, Iron & Menominee" #: timezones.h:282 msgid "America/Merida" msgstr "AmĆ©rica/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "Hora Central - Campeche, Yucatan" #: timezones.h:285 msgid "America/Mexico_City" msgstr "AmĆ©rica/Mexico_City" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "Hora Central - maioria das localidades" #: timezones.h:288 msgid "America/Miquelon" msgstr "AmĆ©rica/Miquelon" #: timezones.h:289 msgid "America/Moncton" msgstr "AmĆ©rica/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "Hora do AtlĆ¢ntico - New Brunswick" #: timezones.h:292 msgid "America/Monterrey" msgstr "AmĆ©rica/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" "Hora Central Mexicana - Coahuila, Durango, Nuevo Leon, Tamaulipas afastado " "da fronteira dos E.U." #: timezones.h:295 msgid "America/Montevideo" msgstr "AmĆ©rica/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "AmĆ©rica/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "Hora Oriental - Quebeque - maioria das localidades" #: timezones.h:299 msgid "America/Montserrat" msgstr "AmĆ©rica/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "AmĆ©rica/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "AmĆ©rica/New_York" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "Hora Oriental" #: timezones.h:304 msgid "America/Nipigon" msgstr "AmĆ©rica/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" "Hora Oriental - OntĆ”rio & Quebeque - locais que nĆ£o aplicam a DST 1967-1973" #: timezones.h:307 msgid "America/Nome" msgstr "AmĆ©rica/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "Hora do Alasca - Alasca ocidental" #: timezones.h:310 msgid "America/Noronha" msgstr "AmĆ©rica/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "Ilhas do AtlĆ¢ntico" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "AmĆ©rica/Dakota do Norte/Centro" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "Hora Central - Dakota do Norte - Condado de Oliver" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "AmĆ©rica/Dakota_do_Norte/New_Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" "Hora Central - Dakota do Norte - Condado de Morton (excepto Ć”rea de Mandan)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "AmĆ©rica/Ojinaga" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "Hora de Montanha dos E.U. - Chihuahua perto da fronteira com os E.U." #: timezones.h:322 msgid "America/Panama" msgstr "AmĆ©rica/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "AmĆ©rica/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "Hora Oriental - Pangnirtung, Nunavut" #: timezones.h:326 msgid "America/Paramaribo" msgstr "AmĆ©rica/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "AmĆ©rica/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "Hora-PadrĆ£o de Montanha - Arizona" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "AmĆ©rica/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "AmĆ©rica/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "AmĆ©rica/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "AmĆ©rica/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "Rondonia" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "AmĆ©rica/Puerto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "AmĆ©rica/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "Hora Central - Rainy River & Fort Frances, OntĆ”rio" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "AmĆ©rica/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "Hora Central - Nunavut central" #: timezones.h:343 msgid "America/Recife" msgstr "AmĆ©rica/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "Pernambuco" #: timezones.h:346 msgid "America/Regina" msgstr "AmĆ©rica/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "Hora-PadrĆ£o Central - Saskatchewan - maioria das localidades" #: timezones.h:349 msgid "America/Resolute" msgstr "AmĆ©rica/Resolute" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "Hora Oriental - Nunavut oriental - maioria das localidades" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "AmĆ©rica/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "Acre" #: timezones.h:355 msgid "America/Rosario" msgstr "AmĆ©rica/Rosario" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "AmĆ©rica/Santa_Isabel" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" "Hora do PacĆ­fico Mexicana - Baixa Califórnia longe da fronteira com os E.U." #: timezones.h:359 msgid "America/Santarem" msgstr "AmĆ©rica/SantarĆ©m" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "Para O" #: timezones.h:362 msgid "America/Santiago" msgstr "AmĆ©rica/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "AmĆ©rica/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "AmĆ©rica/SĆ£o_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "Brasil S & SE (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "AmĆ©rica/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Scoresbysund / Ittoqqortoormiit" #: timezones.h:372 msgid "America/Shiprock" msgstr "AmĆ©rica/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "Hora de Montanha - Navajo" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "AmĆ©rica/St_Barthelemy" #: timezones.h:376 msgid "America/St_Johns" msgstr "AmĆ©rica/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "Hora de Newfoundland, incluindo Labrador SE" #: timezones.h:379 msgid "America/St_Kitts" msgstr "AmĆ©rica/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "AmĆ©rica/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "AmĆ©rica/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "AmĆ©rica/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "AmĆ©rica/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "Hora-PadrĆ£o Central - Saskatchewan - centro-oeste" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "AmĆ©rica/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "AmĆ©rica/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "Thule / Pituffik" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "AmĆ©rica/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "Hora Oriental - Thunder Bay, OntĆ”rio" #: timezones.h:393 msgid "America/Tijuana" msgstr "AmĆ©rica/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" "Hora do PacĆ­fico E.U. - Baixa Califórnia perto da fronteira com os E.U." #: timezones.h:396 msgid "America/Toronto" msgstr "AmĆ©rica/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "Hora Oriental - OntĆ”rio - maioria das localidades" #: timezones.h:399 msgid "America/Tortola" msgstr "AmĆ©rica/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "AmĆ©rica/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "Hora do PacĆ­fico - Columbia BritĆ¢nica ocidental" #: timezones.h:403 msgid "America/Virgin" msgstr "AmĆ©rica/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "AmĆ©rica/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "Hora do PacĆ­fico - sul do Yukon" #: timezones.h:407 msgid "America/Winnipeg" msgstr "AmĆ©rica/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "Hora Central - Manitoba & OntĆ”rio ocidental" #: timezones.h:410 msgid "America/Yakutat" msgstr "AmĆ©rica/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "Hora do Alasca - sopĆ© do planalto do Alasca" #: timezones.h:413 msgid "America/Yellowknife" msgstr "AmĆ©rica/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "Hora de Montanha - Territórios do Noroeste centrais" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "AntĆ”rctica/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "Estação Casey, PenĆ­nsula de Bailey" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "AntĆ”rctica/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "Estação Davis, Vestfold Hills" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "AntĆ”rctica/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Estação Dumont-d'Urville, Terre Adelie" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "AntĆ”rctica/Macquarie" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "Estação da Ilha Macquarie, Ilha Macquarie" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "AntĆ”rctica/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "Estação Mawson, BaĆ­a de Holme" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "AntĆ”rctica/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "Estação McMurdo, Ilha de Ross" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "AntĆ”rctica/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "Estação Palmer, Ilha Anvers" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "AntĆ”rctica/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "Estação Rothera, Ilha de Adelaide" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "AntĆ”rctica/Pólo_Sul" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "Estação Amundsen-Scott, Pólo Sul" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "AntĆ”rctica/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "Estação de Syowa, E Ongul I" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "AntĆ”rctica/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "Estação Vostok, Pólo Sul MagnĆ©tico" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Ɓrctico/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Ɓsia/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Ɓsia/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Ɓsia/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Ɓsia/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "Moscovo+08 - Mar Bering" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Ɓsia/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Ɓsia/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "Aqtobe (Aktobe)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Ɓsia/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Ɓsia/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Ɓsia/Baghdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Ɓsia/Bahrain" #: timezones.h:468 msgid "Asia/Baku" msgstr "Ɓsia/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Ɓsia/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Ɓsia/Beirut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Ɓsia/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Ɓsia/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Ɓsia/Calcutta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Ɓsia/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "Dornod, Sukhbaatar" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Ɓsia/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "China central - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." #: timezones.h:480 msgid "Asia/Chungking" msgstr "Ɓsia/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Ɓsia/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Ɓsia/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Ɓsia/Damascus" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Ɓsia/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Ɓsia/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Ɓsia/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Ɓsia/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Ɓsia/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Ɓsia/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Heilongjiang (excepto Mohe), Jilin" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "Ɓsia/Ho_Chi_Minh" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Ɓsia/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Ɓsia/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Ɓsia/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "Moscovo+05 - Lago Baical" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Ɓsia/Istanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Ɓsia/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "Java & Sumatra" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Ɓsia/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "Irian Jaya & as Molucas" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Ɓsia/Jerusalem" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Ɓsia/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Ɓsia/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "Moscovo+08 - Kamchatka" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Ɓsia/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Ɓsia/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "Tibete ocidental & Xinjiang" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "Ɓsia/Ɓden" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Ɓsia/Katmandu" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "Ɓsia/Kolkata" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Ɓsia/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "Moscovo+04 - Rio Jenissei" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Ɓsia/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "MalĆ”sia peninsular" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Ɓsia/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "Sabah & Sarawak" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Ɓsia/Kuwait" #: timezones.h:529 msgid "Asia/Macao" msgstr "Ɓsia/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Ɓsia/Macau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Ɓsia/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "Moscovo+08 - Magadan" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Ɓsia/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "Borneo oriental e sul, Celebes, Bali, Nusa Tengarra, Timor ocidental" #: timezones.h:537 msgid "Asia/Manila" msgstr "Ɓsia/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Ɓsia/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Ɓsia/Nicosia" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "Ɓsia/Novokuznetsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "Moscovo+03 - Novokuznetsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Ɓsia/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "Moscovo+03 - Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Ɓsia/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "Moscovo+03 - SibĆ©ria ocidental" #: timezones.h:549 msgid "Asia/Oral" msgstr "Ɓsia/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "CazaquistĆ£o ocidental" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Ɓsia/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Ɓsia/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "Borneo ocidental & central" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Ɓsia/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Ɓsia/Qatar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Ɓsia/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "Qyzylorda (Kyzylorda, Kzyl-Orda)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Ɓsia/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Ɓsia/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Ɓsia/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Ɓsia/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Ɓsia/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Ɓsia/Saigon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Ɓsia/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "Moscovo+07 - Ilha Sakhalin" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Ɓsia/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "UzbequistĆ£o ocidental" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Ɓsia/Seoul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Ɓsia/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "China oriental - Pequim, Guangdong, Xangai, etc." #: timezones.h:577 msgid "Asia/Singapore" msgstr "Ɓsia/Singapore" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Ɓsia/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Ɓsia/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "UzbequistĆ£o oriental" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Ɓsia/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Ɓsia/Tehran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Ɓsia/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Ɓsia/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Ɓsia/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Ɓsia/Tokyo" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Ɓsia/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Ɓsia/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Ɓsia/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Ɓsia/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "maioria do Tibete & Xinjiang" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Ɓsia/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Ɓsia/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "Moscovo+07 - Rio Amur" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Ɓsia/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "Moscovo+06 - Rio Lena" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Ɓsia/Yekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "Moscovo+02 - Urais" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Ɓsia/Yerevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "AtlĆ¢ntico/AƧores" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "AƧores" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "AtlĆ¢ntico/Bermuda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "AtlĆ¢ntico/CanĆ”rias" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "Ilhas CanĆ”rias" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "AtlĆ¢ntico/Cabo_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "AtlĆ¢ntico/Faeroe" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "AtlĆ¢ntico/Faroe" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "AtlĆ¢ntico/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "AtlĆ¢ntico/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "ArquipĆ©lago da Madeira" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "AtlĆ¢ntico/Reykjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "AtlĆ¢ntico/South_Georgia" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "AtlĆ¢ntico/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "AtlĆ¢ntico/St_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "AustrĆ”lia/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "AustrĆ”lia/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "Sul da AustrĆ”lia" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "AustrĆ”lia/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "Queensland - maioria das localidades" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "AustrĆ”lia/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "Nova Gales do Sul - Yancowinna" #: timezones.h:635 msgid "Australia/Canberra" msgstr "AustrĆ”lia/Canberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "AustrĆ”lia/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "TasmĆ¢nia - King Island" #: timezones.h:639 msgid "Australia/Darwin" msgstr "AustrĆ”lia/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "Território do Norte" #: timezones.h:642 msgid "Australia/Eucla" msgstr "AustrĆ”lia/Eucla" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "AustrĆ”lia Ocidental - Ć”rea de Eucla" #: timezones.h:645 msgid "Australia/Hobart" msgstr "AustrĆ”lia/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "TasmĆ¢nia - maioria das localidades" #: timezones.h:648 msgid "Australia/LHI" msgstr "AustrĆ”lia/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "AustrĆ”lia/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "Queensland - Holiday Islands" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "AustrĆ”lia/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "Ilha Lord Howe" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "AustrĆ”lia/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "Vitória" #: timezones.h:658 msgid "Australia/North" msgstr "AustrĆ”lia/North" #: timezones.h:659 msgid "Australia/NSW" msgstr "AustrĆ”lia/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "AustrĆ”lia/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "AustrĆ”lia ocidental - maioria das localidades" #: timezones.h:663 msgid "Australia/Queensland" msgstr "AustrĆ”lia/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "AustrĆ”lia/South" #: timezones.h:665 msgid "Australia/Sydney" msgstr "AustrĆ”lia/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "Nova Gales do Sul - maioria das localidades" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "AustrĆ”lia/Tasmania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "AustrĆ”lia/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "AustrĆ”lia/West" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "AustrĆ”lia/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brasil/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brasil/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brasil/Este" #: timezones.h:675 msgid "Brazil/West" msgstr "Brasil/Oeste" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "CanadĆ”/Atlantic" #: timezones.h:677 msgid "Canada/Central" msgstr "CanadĆ”/Central" #: timezones.h:678 msgid "Canada/Eastern" msgstr "CanadĆ”/Eastern" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "CanadĆ”/East-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "CanadĆ”/Mountain" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "CanadĆ”/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "CanadĆ”/Pacific" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "CanadĆ”/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "CanadĆ”/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Chile/Continental" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chile/EasterIsland" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Cuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Egipto" #: timezones.h:692 msgid "Eire" msgstr "Eire" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Europa/AmsterdĆ£o" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Europa/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Europa/Atenas" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Europa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Europa/Belgrado" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Europa/Berlim" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Europa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Europa/Bruxelas" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Europa/Bucareste" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Europa/Budapeste" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Europa/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Europa/Copenhaga" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Europa/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Europa/Gibraltar" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Europa/Guernsey" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Europa/Helsinquia" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Europa/Isle_of_Man" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Europa/Istanbul" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Europa/Jersey" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Europa/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "Moscovo-01 - Kalininegrado" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Europa/Kiev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Europa/Lisboa" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Europa/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Europa/Londres" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Europa/Luxemburgo" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Europa/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Europa/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Europa/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Europa/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Europa/Mónaco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Europa/Moscovo" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "Moscovo+00 - RĆŗssia ocidental" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Europe/Nicosia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Europa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Europa/Paris" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Europa/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Europa/Praga" #: timezones.h:776 msgid "Europe/Riga" msgstr "Europa/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Europa/Roma" #: timezones.h:778 msgid "Europe/Samara" msgstr "Europa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "Moscovo - Samara, Udmurtia" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Europa/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Europa/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Europa/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "Crimeia central" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Europa/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Europa/Sofia" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Europa/Estocolmo" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Europa/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Europa/Tirane" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Europa/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Europa/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "RutĆ©nia" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Europa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Europa/Vaticano" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Europa/Viena" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Europa/Vilnius" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Europa/Volgograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "Moscovo+00 - Mar CĆ”spio" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Europa/Varsóvia" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Europa/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Europa/Zaporozhye" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Zaporozh'ye, Lugansk / Zaporizhia E, Luhansk E" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Europa/Zurich" #: timezones.h:808 msgid "Factory" msgstr "FĆ”brica" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "IslĆ¢ndia" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "ƍndia/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "ƍndia/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "ƍndia/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "ƍndia/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "ƍndia/Comoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "ƍndia/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "ƍndia/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "ƍndia/Maldives" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "ƍndia/Mauritius" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "ƍndia/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "ƍndia/Reunion" #: timezones.h:830 msgid "Iran" msgstr "IrĆ£o" #: timezones.h:831 msgid "iso3166.tab" msgstr "Fecha aba" #: timezones.h:832 msgid "Israel" msgstr "Israel" #: timezones.h:833 msgid "Jamaica" msgstr "Jamaica" #: timezones.h:834 msgid "Japan" msgstr "JapĆ£o" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "LĆ­bia" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "MĆ©xico/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "MĆ©xico/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "MĆ©xico/General" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Mideast/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Mideast/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Mideast/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "PacĆ­fico/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "PacĆ­fico/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "PacĆ­fico/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "Ilhas Chatham" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "PacĆ­fico/Chuuk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "Chuuk (Truk) e Yap" #: timezones.h:859 msgid "Pacific/Easter" msgstr "PacĆ­fico/PĆ”scoa" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "Ilha da PĆ”scoa & Sala y Gomez" #: timezones.h:862 msgid "Pacific/Efate" msgstr "PacĆ­fico/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "PacĆ­fico/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "Ilhas FĆ©nix" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "PacĆ­fico/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "PacĆ­fico/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "PacĆ­fico/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "PacĆ­fico/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "Ilhas GalĆ”pagos" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "PacĆ­fico/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "Ilhas Gambier" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "PacĆ­fico/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "PacĆ­fico/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "PacĆ­fico/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "Havai" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "PacĆ­fico/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "Atol Johnston" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "PacĆ­fico/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "Ilhas Line" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "PacĆ­fico/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "Kosrae" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "PacĆ­fico/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "PacĆ­fico/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "PacĆ­fico/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "Ilhas Marquesas" #: timezones.h:898 msgid "Pacific/Midway" msgstr "PacĆ­fico/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "Atol de Midway" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "PacĆ­fico/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "PacĆ­fico/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "PacĆ­fico/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "PacĆ­fico/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "PacĆ­fico/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "PacĆ­fico/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "PacĆ­fico/Pitcairn" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "PacĆ­fico/Pohnpei" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "Pohnpei (Ponape)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "PacĆ­fico/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "PacĆ­fico/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "PacĆ­fico/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "PacĆ­fico/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "PacĆ­fico/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "PacĆ­fico/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "Ilhas Sociedade" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "PacĆ­fico/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "Ilhas Gilbert" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "PacĆ­fico/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "PacĆ­fico/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "PacĆ­fico/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "Ilha de Wake" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "PacĆ­fico/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "PacĆ­fico/Yap" #: timezones.h:929 msgid "Poland" msgstr "Polónia" #: timezones.h:930 msgid "Portugal" msgstr "Portugal" #: timezones.h:931 msgid "posixrules" msgstr "Regras Posix" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapura" #: timezones.h:937 msgid "Turkey" msgstr "Turquia" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "EUA/Alasca" #: timezones.h:941 msgid "US/Aleutian" msgstr "EUA/Aleutian" #: timezones.h:942 msgid "US/Arizona" msgstr "EUA/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "EUA/Central" #: timezones.h:944 msgid "US/Eastern" msgstr "EUA/Eastern" #: timezones.h:945 msgid "US/East-Indiana" msgstr "EUA/East-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "EUA/Hawaii" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "EUA/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "EUA/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "EUA/Mountain" #: timezones.h:950 msgid "US/Pacific" msgstr "EUA/Pacific" #: timezones.h:951 msgid "US/Samoa" msgstr "EUA/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" #~ msgid "US/Pacific-New" #~ msgstr "EUA/Pacific-New" #~ msgid "SystemV/AST4" #~ msgstr "SystemV/AST4" #~ msgid "SystemV/AST4ADT" #~ msgstr "SystemV/AST4ADT" #~ msgid "SystemV/CST6" #~ msgstr "SystemV/CST6" #~ msgid "SystemV/CST6CDT" #~ msgstr "SystemV/CST6CDT" #~ msgid "SystemV/EST5" #~ msgstr "SystemV/EST5" #~ msgid "SystemV/EST5EDT" #~ msgstr "SystemV/EST5EDT" #~ msgid "SystemV/HST10" #~ msgstr "SystemV/HST10" #~ msgid "SystemV/MST7" #~ msgstr "SystemV/MST7" #~ msgid "SystemV/MST7MDT" #~ msgstr "SystemV/MST7MDT" #~ msgid "SystemV/PST8" #~ msgstr "SystemV/PST8" #~ msgid "SystemV/PST8PDT" #~ msgstr "SystemV/PST8PDT" #~ msgid "SystemV/YST9" #~ msgstr "SystemV/YST9" #~ msgid "SystemV/YST9YDT" #~ msgstr "SystemV/YST9YDT" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/as.po0000664000175000017500000026047514632072346023700 0ustar fabiofabio# translation of timezones.tip.as.po to Assamese # This file is distributed under the same license as the PACKAGE package. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. # # Amitakhya Phukan , 2006. # Amitakhya Phukan , 2006, 2007, 2010. # Amitakhya Phukan , 2008. msgid "" msgstr "" "Project-Id-Version: timezones.tip.as\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-04-01 15:07+0530\n" "Last-Translator: Amitakhya Phukan \n" "Language-Team: Assamese <>\n" "Language: as\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n!=1)\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦…ą¦¬ą¦æą¦œą¦¾ą¦Ø" #: timezones.h:2 msgid "Africa/Accra" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦†ą¦•ą§ą§°ą¦¾" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/আঔিস আবাবা (_A)" #: timezones.h:4 msgid "Africa/Algiers" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦ą¦²ą¦œą¦æą§Ÿą¦¾ą§°ą§ą¦ø" #: timezones.h:5 msgid "Africa/Asmara" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦†ą¦øą§ą¦®ą§‡ą§°ą¦¾" #: timezones.h:6 msgid "Africa/Asmera" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦†ą¦øą§ą¦®ą§‡ą§°ą¦¾" #: timezones.h:7 msgid "Africa/Bamako" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/বামাকো" #: timezones.h:8 msgid "Africa/Bangui" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦¬ą¦¾ą¦™ą§ą¦—ą§ą¦‡" #: timezones.h:9 msgid "Africa/Banjul" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/বানজুল" #: timezones.h:10 msgid "Africa/Bissau" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦¬ą¦æą¦šą¦¾ą¦‰" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦¬ą§ą¦²ą§‡ą¦Øą¦Ÿą¦¾ą§Ÿą¦¾ą§°" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦¬ą§ą§°ą¦¾ą¦œą¦¾ą¦­ą¦æą¦²" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/বুজুমবুৰা" #: timezones.h:14 msgid "Africa/Cairo" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦•ą¦¾ą§Ÿą§°ą§‹" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦•ą¦¾ą¦šą¦¾ą¦¬ą§ą¦²ą¦¾ą¦™ą§ą¦•ą¦¾" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦„ą§‡ą¦‰ą¦Ÿą¦¾" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "ą¦šą§‡ą¦‰ą¦Ÿą¦¾ & মেলিলা" #: timezones.h:19 msgid "Africa/Conakry" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦•ą§‹ą¦Øą¦¾ą¦•ą§ą§°ą¦æ" #: timezones.h:20 msgid "Africa/Dakar" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ঔাকাৰ" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ঔাৰ_ą¦ą¦ø_চালাম" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/জিবুতি" #: timezones.h:23 msgid "Africa/Douala" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ঔুয়ালা" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦ą¦² আউইন (_A)" #: timezones.h:25 msgid "Africa/Freetown" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦«ą§ą§°ą¦æą¦Ÿą¦¾ą¦‰ą¦Ø" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦—ą§ą¦Æą¦¾ą¦¬ą¦¾ą§°ą§‹ą¦Ø" #: timezones.h:27 msgid "Africa/Harare" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/হাৰাৰে" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦œą§‹ą¦¹ą¦¾ą¦Øą§‡ą¦šą§ą¦¬ą¦¾ą§°ą§ą¦—" #: timezones.h:29 msgid "Africa/Kampala" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦•ą¦¾ą¦®ą§ą¦Ŗą¦¾ą¦²ą¦¾" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦–ą¦¾ą§°ą¦¤ą§Œą¦®" #: timezones.h:31 msgid "Africa/Kigali" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/কিগালি" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦•ą¦æą¦Øą§ą¦šą¦¾ą¦šą¦¾" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦—ą¦£ą¦¤ą¦¾ą¦Øą§ą¦¤ą§ą§°ą¦æą¦• ą¦Ŗą§ą§°ą¦œą¦¾ą¦¤ą¦Øą§ą¦¤ą§ą§° ą¦•ą¦™ą§ą¦—ą§‹" #: timezones.h:35 msgid "Africa/Lagos" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦²ą¦¾ą¦—ą§‹ą¦šą§" #: timezones.h:36 msgid "Africa/Libreville" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/লিবাৰভিল" #: timezones.h:37 msgid "Africa/Lome" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/লোমে" #: timezones.h:38 msgid "Africa/Luanda" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦²ą§ą§Ÿą¦¾ą¦Øą§ą¦”ą¦¾" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦²ą§ą¦¬ą§ą¦®ą§ą¦¬ą¦¾ą¦¶ą¦æ" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "ą¦Ŗą§‚ą§°ą§ą¦¬ ą¦—ą¦£ą¦¤ą¦¾ą¦Øą§ą¦¤ą§ą§°ą¦æą¦• ą¦Ŗą§ą§°ą¦œą¦¾ą¦¤ą¦Øą§ą¦¤ą§ą§° ą¦•ą¦™ą§ą¦—ą§‹" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦²ą§ą¦šą¦¾ą¦•ą¦¾" #: timezones.h:43 msgid "Africa/Malabo" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/মালাবো" #: timezones.h:44 msgid "Africa/Maputo" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/মাপুতো" #: timezones.h:45 msgid "Africa/Maseru" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦®ą¦¾ą¦šą§‡ą§°ą§" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/আমবাবানে" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/মোগাঔিশু" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦®ą§‹ą¦Øą§ą§°ą§‹ą¦­ą¦æą§Ÿą¦¾" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦Øą¦¾ą§Ÿą§°ą§‹ą¦¬ą¦æ" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦†ą¦Øą¦œą¦¾ą¦®ą§‡ą¦Øą¦¾" #: timezones.h:51 msgid "Africa/Niamey" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦Øą¦æą§Ÿą¦¾ą¦®ą§‡" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦Øą§‹ą§Ÿą¦¾ą¦•ą¦¶ą§‹ą¦Ÿ" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦“ą§Ÿą¦¾ą¦—ą¦¾ą¦”ą§ą¦—ą§" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦Ŗą§‹ą§°ą§ą¦Ÿą§‹-নোভো" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/সাও_ą¦Ÿą§‹ą¦®ą§‡" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦Ÿą¦æą¦®ą§ą¦¬ą¦¾ą¦•ą¦Ÿą§" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦Ÿą§ą§°ą¦æą¦Ŗą§‹ą¦²ą¦æ" #: timezones.h:58 msgid "Africa/Tunis" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦Ÿą¦æą¦‰ą¦Øą¦æą¦ø" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "ą¦†ą¦«ą§ą§°ą¦æą¦•ą¦¾/ą¦­ą¦æą¦Øą§ą¦Ÿą¦¹ą§ą¦•" #: timezones.h:60 msgid "America/Adak" msgstr "আমেৰিকা/আদাক" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "ą¦†ą¦²ą§ą¦¤ą¦æą§Ÿą¦¾ą¦Ø ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:63 msgid "America/Anchorage" msgstr "আমেৰিকা/ą¦ą¦™ą§ą¦•ą§‹ą§°ą§‡ą¦œ" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "ą¦†ą¦²ą¦¾ą¦øą§ą¦•ą¦¾ সময়ৰ" #: timezones.h:66 msgid "America/Anguilla" msgstr "আমেৰিকা/ą¦ą¦™ą§ą¦—ą¦æą¦²ą¦¾" #: timezones.h:67 msgid "America/Antigua" msgstr "আমেৰিকা/ą¦ą¦Øą§ą¦Ÿą¦æą¦—ą¦¾" #: timezones.h:68 msgid "America/Araguaina" msgstr "আমেৰিকা/ą¦†ą§°ą¦¾ą¦—ą§ą§Ÿą§‡ą¦Øą¦¾" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "ą¦Ÿą§‹ą¦•ą¦¾ą¦Øą§ą¦Ÿą¦æą¦Øą§ą¦ø" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "আমেৰিকা/ą¦†ą§°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦¬ą§ą§Ÿą§‡ą¦Øą§‹ą¦šą§ ą¦†ą§Ÿą¦¾ą§°ą§ą¦š (_A)" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "ą¦¬ą§ą§Ÿą§‡ą¦Øą§‹ą¦šą§ā€Œ ą¦†ą§Ÿą¦¾ą§°ą§ą¦š (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "আমেৰিকা/ą¦†ą§°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦•ą¦¾ą¦Ÿą¦¾ą¦®ą¦¾ą§°ą§ą¦•ą¦¾" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "ą¦•ą¦¾ą¦Ÿą¦¾ą¦®ą¦¾ą§°ą§ą¦•ą¦¾ (CT), ছুবুত (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "আমেৰিকা/ą¦†ą§°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦•ą§‹ą¦®ą§‹ą¦”ą§°ą¦æą¦­ą¦¾ą¦”ą¦¾ą¦­ą¦æą§Ÿą¦¾" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "আমেৰিকা/ą¦†ą§°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦•ą§‹ą§°ą§ą¦”ą§‹ą¦¬ą¦¾" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "আমেৰিকা/ą¦†ą§°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦œą§ą¦œą§ą¦‡" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "ą¦œą§ą¦œą§ą¦‡ (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "আমেৰিকা/ą¦†ą§°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/লা ą§°ą¦æą¦“ą¦œą¦¾ (_R)" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "লা ৰিওৱা (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "আমেৰিকা/ą¦†ą§°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦®ą§‡ą¦Øą§ą¦”ą§‹ą¦œą¦¾" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "ą¦®ą§‡ą¦Øą§ą¦”ą§‹ą¦œą¦¾ (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "আমেৰিকা/ą¦†ą§°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ৰিও ą¦—ą§‡ą¦²ą¦æą¦—ą§‹ą¦šą§ (_G)" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "ą¦›ą¦¾ą¦Øą§ą¦Ÿą¦¾ ą¦•ą§ą§°ą§ą¦œ (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "আমেৰিকা/ą¦†ą§°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦›ą¦¾ą¦²ą§ą¦Ÿą¦¾" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "আমেৰিকা/ą¦†ą§°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/চান হুৱান (_J)" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "ছান হুৱান (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "আমেৰিকা/ą¦†ą§°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ছান লুই (_L)" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "ছান লুই (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "আমেৰিকা/ą¦†ą§°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦Ÿą§ą¦•ą§ą¦®ą¦¾ą¦Ø" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "ą¦Ÿą§ą¦•ą§ą¦®ą¦¾ą¦Ø (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "আমেৰিকা/ą¦†ą§°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦‰ą¦¶ą§ą§Ÿą¦¾ą¦‡ą§Ÿą¦¾" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "ą¦Ÿą¦æą§Ÿą§‡ą§°ą¦¾ ঔেল ą¦«ą§ą§Ÿą§‡ą¦—ą§‹ (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "আমেৰিকা/আৰুবা" #: timezones.h:109 msgid "America/Asuncion" msgstr "আমেৰিকা/ą¦ą¦šą¦¾ą¦Øą¦›ą¦æą§Ÿą¦¾ą¦Ø" #: timezones.h:110 msgid "America/Atikokan" msgstr "আমেৰিকা/ą¦†ą¦Ÿą¦æą¦•ą§‹ą¦•ą¦¾ą¦Ø" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "ą¦Ŗą§‚ą§°ą§ą¦¬ą§° ą¦®ą¦¾ą¦Øą¦Ŗą§ą§°ą¦¾ą¦Ŗą§ą¦¤ সময় - ą¦†ą¦Ÿą¦æą¦•ą§‹ą¦•ą¦¾ą¦Ø, অ'ą¦Øą§ą¦Ÿą¦¾ą§°ą¦æą¦…' আৰু ą¦¦ą¦•ą§ą¦·ą¦æą¦£ ą¦¹ą§‡ą¦®ą§ą¦Ŗą¦Ÿą¦Ø ą¦¦ą§ą¦¬ą§€ą¦Ŗ, নুনাভুট" #: timezones.h:113 msgid "America/Atka" msgstr "আমেৰিকা/ą¦†ą¦Ÿą¦•ą¦¾" #: timezones.h:114 msgid "America/Bahia" msgstr "আমেৰিকা/বাহিয়া" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "বাহিয়া" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "আমেৰিকা/বাহিয়া" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "আমেৰিকা/ą¦¬ą¦¾ą§°ą¦¬ą¦¾ą¦”ą§‹ą¦šą§" #: timezones.h:121 msgid "America/Belem" msgstr "আমেৰিকা/বেলেম" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "আমাপা, ą¦Ŗą§‚ą§°ą§ą¦¬ পাৰা" #: timezones.h:124 msgid "America/Belize" msgstr "আমেৰিকা/ą¦¬ą§‡ą¦²ą¦æą¦œą§‡" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "আমেৰিকা/ą¦¬ą§ą¦²ą¦¾ą¦™ą§ą¦•-ą¦šą¦¾ą¦¬ą¦²ą§‹ą¦Ø" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "ą¦†ą¦¤ą¦²ą¦¾ą¦Øą§ą¦¤ą¦æą¦• ą¦®ą¦¾ą¦Øą¦Ŗą§ą§°ą¦¾ą¦Ŗą§ą¦¤ সময় - কিউবেক - লোৱাৰ ą¦‰ą¦¤ą§ą¦¤ą§° ą¦¶ą§ą¦¬ą§‹ą§°" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "আমেৰিকা/ą¦¬ą§‹ą§Ÿą¦¾_ą¦­ą¦æą¦øą§ą¦Ÿą¦¾" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "ৰোৰাইমা" #: timezones.h:131 msgid "America/Bogota" msgstr "আমেৰিকা/ą¦¬ą§‹ą¦—ą§‹ą¦Ÿą¦¾" #: timezones.h:132 msgid "America/Boise" msgstr "আমেৰিকা/ą¦¬ą§‹ą§Ÿą¦ø" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø সময় - ą¦¦ą¦•ą§ą¦·ą¦æą¦£ আইঔাহো & ą¦Ŗą§‚ą§°ą§ą¦¬ ওৰেগন" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "আমেৰিকা/ą¦¬ą§ą§Ÿą§‡ą¦Øą§‹ą¦šą§ ą¦†ą§Ÿą¦¾ą§°ą§ą¦š (_A)" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "আমেৰিকা/ą¦•ą§‡ą¦®ą¦¬ą§ą§°ą¦æą¦œ বে (_B)" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø সময় - ą¦Ŗą¦¶ą§ą¦šą¦æą¦® নুনাভুট" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "আমেৰিকা/ą¦•ą¦¾ą¦®ą§ą¦Ŗą§‹ ą¦—ą§ą§°ą¦¾ą¦Øą§ą¦”ą§‡ (_G)" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "ą¦®ą¦¾ą¦Ÿą§‹ ą¦—ą§ą§°ą§‹ą¦šą§‹ দো চুল" #: timezones.h:142 msgid "America/Cancun" msgstr "আমেৰিকা/কেনকুন" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "ą¦®ą¦§ą§ą¦Æ সময় - ą¦•ą¦æą¦Øą§ą¦Ÿą¦¾ą¦Øą¦¾ ৰু" #: timezones.h:145 msgid "America/Caracas" msgstr "আমেৰিকা/কেৰাকাস" #: timezones.h:146 msgid "America/Catamarca" msgstr "আমেৰিকা/ą¦•ą¦¾ą¦Ÿą¦¾ą¦®ą¦¾ą§°ą§ą¦•ą¦¾" #: timezones.h:147 msgid "America/Cayenne" msgstr "আমেৰিকা/ą¦•ą§‡ą§Ÿą§‡ą¦Ø" #: timezones.h:148 msgid "America/Cayman" msgstr "আমেৰিকা/কেমেন" #: timezones.h:149 msgid "America/Chicago" msgstr "আমেৰিকা/শিকাগো" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "ą¦®ą¦§ą§ą¦Æ সময়" #: timezones.h:152 msgid "America/Chihuahua" msgstr "আমেৰিকা/চিহুৱাহুৱা" #. comment for time zone America/Chihuahua #: timezones.h:154 #, fuzzy msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø সময় - চিহুৱাহুৱা" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "আমেৰিকা/কোৰেল ą¦¹ą¦¾ą§°ą§ą¦¬ą¦¾ą§° (_H)" #: timezones.h:156 msgid "America/Cordoba" msgstr "আমেৰিকা/ą¦•ą§‹ą§°ą§ą¦”ą§‹ą¦¬ą¦¾" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "আমেৰিকা/ą¦•ą§‹ą¦øą§ą¦Ÿą¦¾ ৰিকা (_R)" #: timezones.h:158 msgid "America/Cuiaba" msgstr "আমেৰিকা/ą¦•ą§ą¦‡ą§Ÿą¦¾ą¦¬ą¦¾" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "ą¦®ą¦¾ą¦Ÿą§‹ ą¦—ą§ą§°ą§‹ą¦šą§‹" #: timezones.h:161 msgid "America/Curacao" msgstr "আমেৰিকা/কুৰাকাও" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "আমেৰিকা/ą¦”ą¦¾ą¦Øą¦®ą¦¾ą§°ą§ą¦•ą¦šą§±ą¦¾ą¦Ø" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "ą¦Ŗą§‚ą§°ą§ą¦¬ą§€ তট, ą¦øą§ą¦•ą§‹ą§°ą§ą¦šą¦¬ą¦¾ą¦‡ą¦›ą¦¾ą¦Øą§ą¦”ą§° ą¦‰ą¦¤ą§ą¦¤ą§°" #: timezones.h:165 msgid "America/Dawson" msgstr "আমেৰিকা/ঔ'চ'ন" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ ą¦®ą¦¹ą¦¾ą¦øą¦¾ą¦—ą§°ą§€ą§Ÿ সময় -ą¦‰ą¦¤ą§ą¦¤ą§° ইউকোন" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "আমেৰিকা/ঔ'চ'ন ą¦•ą§ą§°ą¦æą¦• (_C)" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø ą¦®ą¦¾ą¦Øą¦Ŗą§ą§°ą¦¾ą¦Ŗą§ą¦¤ সময় - ঔ'চ'ন ą¦•ą§ą§°ą¦æą¦• আৰু ą¦«ą§‹ą§°ą§ą¦Ÿ ą¦šą§‡ą¦Øą§ą¦Ÿ জন, ą¦šą§ą¦‡ą§ą¦¬ ক'ল'ą¦®ą§ą¦¬ą¦æą§Ÿą¦¾" #: timezones.h:171 msgid "America/Denver" msgstr "আমেৰিকা/ঔেনভাৰ" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø সময়" #: timezones.h:174 msgid "America/Detroit" msgstr "আমেৰিকা/ą¦”ą§‡ą¦Ÿą§ą§°ą¦‡ą¦Ÿ" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "ą¦Ŗą§‚ą§°ą§ą¦¬ সময় - ą¦®ą¦æą¦šą¦æą¦—ą¦Ø - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:177 msgid "America/Dominica" msgstr "আমেৰিকা/ঔোমিনিকা" #: timezones.h:178 msgid "America/Edmonton" msgstr "আমেৰিকা/ą¦ą¦”ą¦®ą¦Øą¦Ÿą¦Ø" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø সময় - ą¦ą¦²ą¦¬ą¦¾ą§°ą§ą¦Ÿą¦¾, ą¦Ŗą§‚ą§°ą§ą¦¬ ą¦šą§ą¦‡ą§ą¦¬ ক'ল'ą¦®ą§ą¦¬ą¦æą§Ÿą¦¾ আৰু ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦šą¦¾ą¦šą¦•ą¦¾ą¦šą§ą§Ÿą¦¾ą¦Ø" #: timezones.h:181 msgid "America/Eirunepe" msgstr "আমেৰিকা/ইৰুনেপে" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "পঃ ą¦†ą¦®ą¦¾ą¦œą§‹ą¦Øą¦¾ą¦š" #: timezones.h:184 msgid "America/El_Salvador" msgstr "আমেৰিকা/ą¦ą¦² ছালভাঔোৰ (_S)" #: timezones.h:185 msgid "America/Ensenada" msgstr "আমেৰিকা/ą¦ą¦Øą¦šą§‡ą¦Øą¦¾ą¦”ą¦¾" #: timezones.h:186 msgid "America/Fortaleza" msgstr "আমেৰিকা/ą¦«ą§‹ą§°ą§ą¦Ÿą¦¾ą¦²ą§‡ą¦œą¦¾" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "ą¦‰ą¦ƒą¦Ŗą§‚ą¦ƒ ą¦¬ą§ą§°ą¦¾ą¦œą¦æą¦² (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "আমেৰিকা/ą¦«ą§‹ą§°ą§ą¦Ÿ ą¦“ą§Ÿą§‡ą¦‡ą¦Ø (_W)" # not appropriate imho #: timezones.h:190 msgid "America/Glace_Bay" msgstr "আমেৰিকা/ą¦—ą§ą¦²ą§‡ą¦ø বে (_B)" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" "ą¦†ą¦¤ą¦²ą¦¾ą¦Øą§ą¦¤ą¦æą¦• সময় - নোভা ą¦øą§ą¦•ą§‹ą¦›ą¦æą§Ÿą¦¾ - ১৯৬৬-ą§§ą§Æą§­ą§§ ত দিবালোক ą¦øą¦‚ą§°ą¦•ą§ą¦·ą¦£ą¦•ą¦¾ą§°ą§€ সময় ą¦¬ą§ą¦Æą§±ą¦¹ą¦¾ą§° নকৰা " "ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:193 msgid "America/Godthab" msgstr "আমেৰিকা/গঔ঄াব" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "আমেৰিকা/ą¦—ą§‚ą¦œ বে (_B)" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "ą¦†ą¦¤ą¦²ą¦¾ą¦Øą§ą¦¤ą¦æą¦• সময় - ą¦²ą§‡ą¦¬ą§ą§°ą§‡ą¦”ą§° - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "আমেৰিকা/ą¦—ą§ą§°ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦Ÿą¦¾ą§°ą§ą¦• (_T)" #: timezones.h:200 msgid "America/Grenada" msgstr "আমেৰিকা/ą¦—ą§ą§°ą§‡ą¦Øą¦¾ą¦”ą¦¾" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "আমেৰিকা/ą¦—ą§ą§Ÿą¦¾ą¦”ą§‡ą¦²ą§ą¦Ŗ" #: timezones.h:202 msgid "America/Guatemala" msgstr "আমেৰিকা/ą¦—ą§ą§Ÿą¦¾ą¦Ÿą§‡ą¦®ą¦¾ą¦²ą¦¾" #: timezones.h:203 msgid "America/Guayaquil" msgstr "আমেৰিকা/ą¦—ą¦¾ą§Ÿą¦¾ą¦•ą§ą¦‡ą¦²" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "মূল ą¦­ą§ą¦–ą¦£ą§ą¦”" #: timezones.h:206 msgid "America/Guyana" msgstr "আমেৰিকা/ą¦—ą¦¾ą§Ÿą¦¾ą¦Øą¦¾" #: timezones.h:207 msgid "America/Halifax" msgstr "আমেৰিকা/ą¦¹ą§‡ą¦²ą¦æą¦«ą§ą¦Æą¦¾ą¦•ą§ą¦ø" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "ą¦†ą¦¤ą¦²ą¦¾ą¦Øą§ą¦¤ą¦æą¦• সময় - নোভা ą¦øą§ą¦•ą§‹ą¦›ą¦æą§Ÿą¦¾ (অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "আমেৰিকা/হাভানা" #: timezones.h:211 msgid "America/Hermosillo" msgstr "আমেৰিকা/ą¦¹ą¦¾ą§°ą§ą¦®ą§‹ą¦øą¦æą¦²ą§‹" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø ą¦®ą¦¾ą¦Øą¦Ŗą§ą§°ą¦¾ą¦Ŗą§ą¦¤ সময় - ą¦šą§‹ą¦Øą§‹ą§°ą¦¾" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "আমেৰিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾ą¦Ŗą§‹ą¦²ą¦æą¦ø" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "ą¦Ŗą§‚ą§°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾ - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "আমেৰিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ą¦Øą§‹ą¦•ą§ą¦ø" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "ą¦®ą¦§ą§ą¦Æ সময় - ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾ - ą¦øą§ą¦Ÿą¦¾ą§°ą§ą¦• ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿą¦æ" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "আমেৰিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ą¦®ą¦¾ą§°ą§‡ą¦™ą§ą¦—ą§‹" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "ą¦Ŗą§‚ą§°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾ - ą¦•ą§ą§°ą¦«ą§‹ą§°ą§ą¦” ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿą¦æ" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "আমেৰিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ą¦Ŗą¦æą¦Ÿą¦¾ą§°ą§ą¦øą¦¬ą¦¾ą§°ą§ą¦—" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "ą¦Ŗą§‚ą§°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾ - পাইক ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿą¦æ" #: timezones.h:226 msgid "America/Indianapolis" msgstr "আমেৰিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾ą¦Ŗą§‹ą¦²ą¦æą¦ø" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "আমেৰিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ą¦Ÿą§‡ą¦²_চিটি" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "ą¦®ą¦§ą§ą¦Æ সময় - ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾ - পেৰি ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿą¦æ" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "আমেৰিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ভিভে" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "ą¦Ŗą§‚ą§°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾ - ą¦šą§ą¦‡ą§Žą¦œą¦¾ą§°ą§ą¦²ą§‡ą¦Øą§ą¦” ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿą¦æ" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "আমেৰিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ভিনসেন" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "ą¦Ŗą§‚ą§°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾ - ą¦”ą§‡ą¦­ą¦æą¦š, ą¦”ą§ą¦¬ą§‹ą¦‡ą¦š, ą¦Øą¦•ą§ą¦ø আৰু ą¦®ą¦¾ą§°ą§ą¦Ÿą¦æą¦Ø ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿą¦æ" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "আমেৰিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ৱিনামাক" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "ą¦Ŗą§‚ą§°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾ - ą¦Ŗą§ą¦²ą¦¾ą¦øą§ą¦•ą¦æ ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿą¦æ" #: timezones.h:239 msgid "America/Inuvik" msgstr "আমেৰিকা/ইনুভিক" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø সময় - ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦‰ą¦¤ą§ą¦¤ą§°ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦Ŗą§ą§°ą¦¦ą§‡ą¦¶" # not sure #: timezones.h:242 msgid "America/Iqaluit" msgstr "আমেৰিকা/ą¦‡ą¦•ą¦¾ą¦²ą§ą¦‡ą¦Ÿ" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "ą¦Ŗą§‚ą§°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦Ŗą§‚ą§°ą§ą¦¬ নুনাভুট - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" # not sure #: timezones.h:245 msgid "America/Jamaica" msgstr "আমেৰিকা/ą¦œą¦¾ą¦®ą¦¾ą¦‡ą¦•ą¦¾" #: timezones.h:246 msgid "America/Jujuy" msgstr "আমেৰিকা/ą¦œą§ą¦œą§ą¦‡" #: timezones.h:247 msgid "America/Juneau" msgstr "আমেৰিকা/ą¦œą§ą¦Øą¦æą¦‰" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "ą¦†ą¦²ą¦¾ą¦øą§ą¦•ą¦¾ সময় - ą¦†ą¦²ą¦¾ą¦øą§ą¦•ą¦¾ পেন-ą¦¹ą§‡ą¦Øą§ą¦”ą§‡ą¦²" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "আমেৰিকা/ą¦•ą§‡ą¦Øą§ą¦Ÿą¦¾ą¦•ą¦æ/লুইভিল" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "ą¦Ŗą§‚ą§°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦•ą§‡ą¦Øą§ą¦Ÿą¦¾ą¦•ą¦æ - লুইভিল ą¦…ą¦žą§ą¦šą¦²" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "আমেৰিকা/ą¦•ą§‡ą¦Øą§ą¦Ÿą¦¾ą¦•ą¦æ/ą¦®ą§‹ą¦Øą§ą¦Ÿą¦æą¦šą§‡ą¦²ą§‹" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "ą¦Ŗą§‚ą§°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦•ą§‡ą¦Øą§ą¦Ÿą¦¾ą¦•ą¦æ - ৱেইন ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿą¦æ" #: timezones.h:256 msgid "America/Knox_IN" msgstr "আমেৰিকা/ą¦Øą§‹ą¦•ą§ą¦ø ইন (_I)" #: timezones.h:257 msgid "America/La_Paz" msgstr "আমেৰিকা/লা পাজ (_P)" #: timezones.h:258 msgid "America/Lima" msgstr "আমেৰিকা/লিমা" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "আমেৰিকা/লস ą¦ą¦žą§ą¦œą§‡ą¦²ą§ą¦šą§ (_A)" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ ą¦®ą¦¹ą¦¾ą¦øą¦¾ą¦—ą§°ą§€ą§Ÿ সময়" #: timezones.h:262 msgid "America/Louisville" msgstr "আমেৰিকা/লুইভিল" #: timezones.h:263 msgid "America/Maceio" msgstr "আমেৰিকা/ą¦®ą¦¾ą¦šą¦æą¦“" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "ą¦†ą¦²ą¦¾ą¦—ą§‹ą§±ą¦¾ą¦š, ą¦šą¦¾ą§°ą§ą¦—ą¦æą¦Ŗą§‡" #: timezones.h:266 msgid "America/Managua" msgstr "আমেৰিকা/ą¦®ą¦¾ą¦Øą¦¾ą¦—ą§ą§Ÿą¦¾" #: timezones.h:267 msgid "America/Manaus" msgstr "আমেৰিকা/মানাউস" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "ą¦Ŗą§‚ą¦ƒ ą¦†ą¦®ą¦¾ą¦œą§‹ą¦Øą¦¾ą¦š" #: timezones.h:270 msgid "America/Marigot" msgstr "আমেৰিকা/ą¦®ą¦¾ą§°ą¦æą¦—ą¦Ÿ" #: timezones.h:271 msgid "America/Martinique" msgstr "আমেৰিকা/ą¦®ą¦¾ą§°ą§ą¦Ÿą¦æą¦Øą¦æą¦•" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "আমেৰিকা/মানাউস" #. comment for time zone America/Matamoros #: timezones.h:274 #, fuzzy msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "ą¦®ą¦§ą§ą¦Æ সময় - ą¦•ą§‹ą§Ÿą¦¾ą¦¹ą§ą¦‡ą¦²ą¦¾, ঔুৰাংগো, ą¦Øą§ą§Ÿą§‡ą¦­ą§‹ লিঅ'ন, ą¦Ÿą¦¾ą¦®ą§ą¦Ŗą¦¾ą¦‰ą¦²ą¦æą¦Ŗą¦¾ą¦š" #: timezones.h:275 msgid "America/Mazatlan" msgstr "আমেৰিকা/মাজাতলান" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø সময় - দঃ বাজা, নায়াৰিত, ą¦šą¦æą¦Øą¦¾ą¦²ą§‹ą§Ÿą¦¾" #: timezones.h:278 msgid "America/Mendoza" msgstr "আমেৰিকা/ą¦®ą§‡ą¦Øą§ą¦”ą§‹ą¦œą¦¾" #: timezones.h:279 msgid "America/Menominee" msgstr "আমেৰিকা/মেনোমিনি" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "ą¦®ą¦§ą§ą¦Æ সময় - ą¦®ą¦æą¦šą¦æą¦—ą¦Ø - ą¦”ą¦æą¦•ą¦æą¦Øą¦šą¦Ø, গোগেবিক, ą¦†ą¦šą¦‡ą§°ą¦Ø আৰু মেনোমিনি ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿą¦æ" #: timezones.h:282 msgid "America/Merida" msgstr "আমেৰিকা/মেৰিঔা" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "ą¦®ą¦§ą§ą¦Æ সময় - ą¦•ą§‡ą¦®ą§ą¦Ŗą§‡ą¦šą§‡, ą¦‡ą¦‰ą¦•ą¦¾ą¦Ÿą¦¾ą¦Ø" #: timezones.h:285 msgid "America/Mexico_City" msgstr "আমেৰিকা/ą¦®ą§‡ą¦•ą§ą¦øą¦æą¦•ą§‹ সিটি (_C)" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "ą¦®ą¦§ą§ą¦Æ সময় - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:288 msgid "America/Miquelon" msgstr "আমেৰিকা/মিকেলন" #: timezones.h:289 msgid "America/Moncton" msgstr "আমেৰিকা/ą¦®ą¦™ą§ą¦•ą¦Ÿą¦Ø" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "ą¦†ą¦¤ą¦²ą¦¾ą¦Øą§ą¦¤ą¦æą¦• সময় -নিউ ą¦¬ą§ą§°ą¦¾ą¦Øą§ą¦øą¦‰ą¦‡ą¦•" #: timezones.h:292 msgid "America/Monterrey" msgstr "আমেৰিকা/ą¦®ą¦£ą§ą¦Ÿą§‡ą§°ą¦æ" #. comment for time zone America/Monterrey #: timezones.h:294 #, fuzzy msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "ą¦®ą¦§ą§ą¦Æ সময় - ą¦•ą§‹ą§Ÿą¦¾ą¦¹ą§ą¦‡ą¦²ą¦¾, ঔুৰাংগো, ą¦Øą§ą§Ÿą§‡ą¦­ą§‹ লিঅ'ন, ą¦Ÿą¦¾ą¦®ą§ą¦Ŗą¦¾ą¦‰ą¦²ą¦æą¦Ŗą¦¾ą¦š" #: timezones.h:295 msgid "America/Montevideo" msgstr "আমেৰিকা/ą¦®ą¦Øą§ą¦Ÿą§‡ą¦­ą¦æą¦”ą¦æą¦“" #: timezones.h:296 msgid "America/Montreal" msgstr "আমেৰিকা/ą¦®ą¦Øą¦Ÿą§ą§°ą¦æą¦²" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "ą¦Ŗą§‚ą§°ą§ą¦¬ą§€ą§Ÿ সময় - কিউবেক - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:299 msgid "America/Montserrat" msgstr "আমেৰিকা/ą¦®ą¦Øą§ą¦Ÿą¦šą§‡ą§°ą¦¾ą¦¤" #: timezones.h:300 msgid "America/Nassau" msgstr "আমেৰিকা/নাসাউ" #: timezones.h:301 msgid "America/New_York" msgstr "আমেৰিকা/নিউ ą¦‡ą§Ÿą§‹ą§°ą§ą¦• (_Y)" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "ą¦Ŗą§‚ą§°ą§ą¦¬ą§€ą§Ÿ সময়" #: timezones.h:304 msgid "America/Nipigon" msgstr "আমেৰিকা/নিপিগন" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" "ą¦Ŗą§‚ą§°ą§ą¦¬ą§€ą§Ÿ সময় - অ'ą¦Øą§ą¦Ÿą¦¾ą§°ą¦æą¦…' & কিউবেক - ১৯৬৭-ą§§ą§Æą§­ą§©-ত দিবালোক ą¦øą¦‚ą§°ą¦•ą§ą¦·ą¦£ą¦•ą¦¾ą§°ą§€ সময় ą¦¬ą§ą¦Æą§±ą¦¹ą¦¾ą§° " "নকৰা ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:307 msgid "America/Nome" msgstr "আমেৰিকা/নোম" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "ą¦†ą¦²ą¦¾ą¦øą§ą¦•ą¦¾ সময় - ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦†ą¦²ą¦¾ą¦øą§ą¦•ą¦¾" #: timezones.h:310 msgid "America/Noronha" msgstr "আমেৰিকা/নোৰোনহা" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "ą¦†ą¦¤ą¦²ą¦¾ą¦Øą§ą¦¤ą¦æą¦• ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "আমেৰিকা/ą¦‰ą¦¤ą§ą¦¤ą§° ą¦”ą¦¾ą¦•ą§‹ą¦Ÿą¦¾ (_D)/ą¦šą§‡ą¦Øą§ą¦Ÿą¦¾ą§°" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "ą¦®ą¦§ą§ą¦Æ সময় - ą¦‰ą¦¤ą§ą¦¤ą§° ą¦”ą¦¾ą¦•ą§‹ą¦Ÿą¦¾ - অলিভাৰ ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿą¦æ" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "আমেৰিকা/ą¦‰ą¦¤ą§ą¦¤ą§°_ą¦”ą¦¾ą¦•ą§‹ą¦Ÿą¦¾/নিউ_সেলাম" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "ą¦®ą¦§ą§ą¦Æ সময় - ą¦‰ą¦¤ą§ą¦¤ą§° ą¦”ą¦¾ą¦•ą§‹ą¦Ÿą¦¾ - ą¦®ą§°ą§ą¦Ÿą¦Ø ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿą¦æ (ą¦®ą§‡ą¦Øą§ą¦”ą¦¾ą¦Ø ą¦…ą¦žą§ą¦šą¦²ą§° বাহিৰে)" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "আমেৰিকা/ą¦®ą¦¾ą¦Øą¦¾ą¦—ą§ą§Ÿą¦¾" #. comment for time zone America/Ojinaga #: timezones.h:321 #, fuzzy msgid "US Mountain Time - Chihuahua near US border" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø সময় - চিহুৱাহুৱা" #: timezones.h:322 msgid "America/Panama" msgstr "আমেৰিকা/পানামা" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "আমেৰিকা/পাংনিৰতুং" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "ą¦Ŗą§‚ą§°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦Ŗą¦¾ą¦‚ą¦—ą¦Øą¦æą§°ą¦Ÿą§ą¦‚ą¦—, নুনাভুট" #: timezones.h:326 msgid "America/Paramaribo" msgstr "আমেৰিকা/পাৰামাৰিবো" #: timezones.h:327 msgid "America/Phoenix" msgstr "আমেৰিকা/ą¦«ą¦æą¦Øą¦æą¦•ą§ą¦ø" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø ą¦®ą¦¾ą¦Øą¦Ŗą§ą§°ą¦¾ą¦Ŗą§ą¦¤ সময় - ą¦ą§°ą¦æą¦œą§‹ą¦Øą¦¾" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "আমেৰিকা/ą¦Ŗą§‹ą§°ą§ą¦Ÿ_ও_ą¦Ŗą§ą§°ą¦æą¦Øą§ą¦ø" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "আমেৰিকা/ą¦Ŗą§‹ą§°ą§ą¦¤ą§‹ ą¦ą¦•ą§° (_A)" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "আমেৰিকা/ą¦Ŗą§‹ą§°ą§ą¦Ÿ_অফ_ą¦øą§ą¦Ŗą§‡ą¦Ø" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "আমেৰিকা/ą¦Ŗą§‹ą§°ą§ą¦¤ą§‹_ভেলহো" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "ą§°ą§‹ą¦Øą§ą¦”ą§‹ą¦Øą¦æą§Ÿą¦¾" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "আমেৰিকা/ą¦Ŗą§ą§Ÿą§‡ą§°ą§ą¦¤ą§‹ ৰিকো (_R)" #: timezones.h:337 msgid "America/Rainy_River" msgstr "আমেৰিকা/ৰেইনি ৰিভাৰ (_R)" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "ą¦®ą¦§ą§ą¦Æ সময় - ৰেইনি ৰিভাৰ আৰু ą¦«ą§‹ą§°ą§ą¦Ÿ ą¦«ą§ą§°ą¦¾ą¦Øą§ą¦øą§‡ą¦š, অ'ą¦Øą§ą¦Ÿą¦¾ą§°ą¦æą¦…'" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "আমেৰিকা/ą§°ą§‡ą¦™ą§ą¦•ą¦æą¦Ø ą¦‡ą¦Øą¦²ą§‡ą¦Ÿ (_I)" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "ą¦®ą¦§ą§ą¦Æ সময় - ą¦®ą¦§ą§ą¦Æ নুনাভুট" #: timezones.h:343 msgid "America/Recife" msgstr "আমেৰিকা/ৰিসাইফে" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "ą¦Ŗą¦¾ą§°ą§ą¦Øą§‡ą¦®ą¦¬ą§ą¦•ą§‹" #: timezones.h:346 msgid "America/Regina" msgstr "আমেৰিকা/ą§°ą§‡ą¦œą¦æą¦Øą¦¾" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "ą¦®ą¦§ą§ą¦Æ ą¦®ą¦¾ą¦Øą¦Ŗą§ą§°ą¦¾ą¦Ŗą§ą¦¤ সময় - ą¦øą¦¾ą¦øą§ą¦•ą¦¾ą¦šą§ą§Ÿą¦¾ą¦Ø - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:349 msgid "America/Resolute" msgstr "আমেৰিকা/ą§°ą¦æą¦›ą§‹ą¦²ą¦æą¦‰ą¦Ÿ" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "ą¦Ŗą§‚ą§°ą§ą¦¬ą§€ą§Ÿ ą¦®ą¦¾ą¦Øą¦Ŗą§ą§°ą¦¾ą¦Ŗą§ą¦¤ সময় - ą§°ą§‡ą¦šą§‹ą¦²ą¦æą¦‰ą¦Ÿ, নুনাভুট" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "আমেৰিকা/ৰিও ą¦¬ą§ą§°ą¦¾ą¦™ą§ą¦•ą§‹ (_B)" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "ą¦ą¦•ą§°" #: timezones.h:355 msgid "America/Rosario" msgstr "আমেৰিকা/ą§°ą§‹ą¦œą¦¾ą§°ą¦æą¦“" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "আমেৰিকা/ą¦›ą¦¾ą¦Øą§ą¦Ÿą¦¾ą§°ą§‡ą¦®" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 msgid "America/Santarem" msgstr "আমেৰিকা/ą¦›ą¦¾ą¦Øą§ą¦Ÿą¦¾ą§°ą§‡ą¦®" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "পঃ পাৰা" #: timezones.h:362 msgid "America/Santiago" msgstr "আমেৰিকা/ą¦šą¦¾ą¦Øą§ą¦Ÿą¦æą§Ÿą¦¾ą¦—ą§‹" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "আমেৰিকা/ą¦šą¦¾ą¦Øą§ą¦Ÿą§‹ ą¦”ą§‹ą¦®ą¦æą¦™ą§ą¦—ą§‹ (_D)" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "আমেৰিকা/ą¦šą¦¾ą¦“ পাওলো(_P)" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "দঃ আৰু ą¦¦ą¦ƒą¦Ŗą§‚ą¦ƒ ą¦¬ą§ą§°ą¦¾ą¦œą¦æą¦² (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "আমেৰিকা/ą¦øą§ą¦•ą§‹ą§°ą§ą¦øą¦¬ą¦æą¦›ą¦¾ą¦Øą§ą¦”" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "ą¦øą§ą¦•ą§‹ą§°ą§ą¦šą¦¬ą¦¾ą¦‡ą¦›ą¦¾ą¦Øą§ą¦¦ / ą¦‡ą¦Ÿą§‹ą¦•ą§‹ą§°ą§ą¦Ÿą§‹ą§°ą¦®ą¦æą¦Ÿ" #: timezones.h:372 msgid "America/Shiprock" msgstr "আমেৰিকা/শিপৰক" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø সময় - ą¦Øą¦¾ą¦­ą¦¾ą¦œą§‹" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "আমেৰিকা/St_Barthelemy" #: timezones.h:376 msgid "America/St_Johns" msgstr "আমেৰিকা/ą¦šą§‡ą¦Øą§ą¦Ÿ ą¦œą¦Øą§ą¦šą§ (_J)" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "ą¦Øą¦æą¦‰ą¦«ą¦¾ą¦‰ą¦Øą§ą¦”ą¦²ą§‡ą¦Øą§ą¦” সময়, ą¦¦ą¦ƒą¦Ŗą§‚ą¦ƒ ą¦²ą§‡ą¦¬ą§ą§°ą§‡ą¦”ą§° সহ" #: timezones.h:379 msgid "America/St_Kitts" msgstr "আমেৰিকা/ą¦šą§‡ą¦Øą§ą¦Ÿ ą¦•ą¦æą¦Ÿą§ą¦šą§ (_K)" #: timezones.h:380 msgid "America/St_Lucia" msgstr "আমেৰিকা/ą¦šą§‡ą¦Øą§ą¦Ÿą§ ą¦²ą§ą§‚ą¦šą¦æą§Ÿą¦¾ (_L)" #: timezones.h:381 msgid "America/St_Thomas" msgstr "আমেৰিকা/ą¦šą§‡ą¦Øą§ą¦Ÿą§ ą¦„ą§‹ą¦®ą¦¾ą¦šą§ (_T)" #: timezones.h:382 msgid "America/St_Vincent" msgstr "আমেৰিকা/ą¦šą§‡ą¦Øą§ą¦Ÿą§ ą¦­ą¦æą¦Øą¦šą§‡ą¦Øą§ą¦Ÿą§ (_V)" #: timezones.h:383 msgid "America/Swift_Current" msgstr "আমেৰিকা/ą¦šą§ą¦Æą§ą¦‡ą¦«ą§ą¦Ÿą§ ą¦•ą¦¾ą§°ą§‡ą¦Øą§ą¦Ÿą§ (_C)" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "ą¦®ą¦§ą§ą¦Æ ą¦®ą¦¾ą¦Øą¦Ŗą§ą§°ą¦¾ą¦Ŗą§ą¦¤ সময় - ą¦šą¦¾ą¦øą§ą¦•ą¦¾ą¦šą§ą§Ÿą¦¾ą¦Ø - ą¦®ą¦§ą§ą¦Æą¦Ŗą¦¶ą§ą¦šą¦æą¦®" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "আমেৰিকা/ą¦¤ą§‡ą¦—ą§ą¦šą¦æą¦—ą¦¾ą¦²ą§ą¦Ŗą¦¾" #: timezones.h:387 msgid "America/Thule" msgstr "আমেৰিকা/঄ুল" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "঄ুলে / ą¦Ŗą¦æą¦Ÿą§ą¦«ą¦æą¦•" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "আমেৰিকা/ą¦„ą¦¾ą¦Øą§ą¦”ą¦¾ą§° বে (_B)" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "ą¦Ŗą§‚ą§°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦„ą¦¾ą¦Øą§ą¦”ą¦¾ą§° বে, অ'ą¦Øą§ą¦Ÿą¦¾ą§°ą¦æą¦…'" #: timezones.h:393 msgid "America/Tijuana" msgstr "আমেৰিকা/ą¦„ą§‡ą¦“ą§Ÿą¦¾ą¦Øą¦¾" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "আমেৰিকা/ą¦Ÿą§°ą§‹ą¦Øą§ą¦Ÿą§‹" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "ą¦Ŗą§‚ą§°ą§ą¦¬ą§€ą§Ÿ সময় - অ'ą¦Øą§ą¦Ÿą¦¾ą§°ą¦æą¦…' - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:399 msgid "America/Tortola" msgstr "আমেৰিকা/টৰটলা" #: timezones.h:400 msgid "America/Vancouver" msgstr "আমেৰিকা/ą¦­ą§ą¦Æą¦¾ą¦‚ą¦•ą§ą¦­ą¦¾ą§°" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ ą¦®ą¦¹ą¦¾ą¦øą¦¾ą¦—ą§€ą§Ÿ সময় - ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦¬ą§ą§°ą¦æą¦Ÿą¦æą¦¶ą§ą¦¬ ক'ল'ą¦®ą§ą¦¬ą¦æą§Ÿą¦¾" #: timezones.h:403 msgid "America/Virgin" msgstr "আমেৰিকা/ą¦­ą¦¾ą§°ą§ą¦œą¦æą¦Ø" #: timezones.h:404 msgid "America/Whitehorse" msgstr "আমেৰিকা/ą¦“ą§Ÿą¦¾ą¦‡ą¦Ÿą¦¹ą§°ą§ą¦ø" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ ą¦®ą¦¹ą¦¾ą¦øą¦¾ą¦—ą§€ą§Ÿ সময় - ą¦¦ą¦•ą§ą¦·ą¦æą¦£ ইউকন" #: timezones.h:407 msgid "America/Winnipeg" msgstr "আমেৰিকা/উইনিপেগ" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "ą¦®ą¦§ą§ą¦Æ সময় - ą¦®ą¦¾ą¦Øą¦æą¦Ÿą§‹ą¦¬ą¦¾ & ą¦Ŗą¦¶ą§ą¦šą¦æą¦® অ'ą¦Øą§ą¦Ÿą¦¾ą§°ą¦æą¦…'" #: timezones.h:410 msgid "America/Yakutat" msgstr "আমেৰিকা/ą¦‡ą§Ÿą¦¾ą¦•ą§ą¦¤ą¦¾ą¦¤" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "ą¦†ą¦²ą¦¾ą¦øą§ą¦•ą¦¾ - ą¦†ą¦²ą¦¾ą¦øą§ą¦•ą¦¾ ą¦Ŗą§‡ą¦Øą¦¹ą§‡ą¦Øą§ą¦”ą§‡ą¦² নেক" #: timezones.h:413 msgid "America/Yellowknife" msgstr "আমেৰিকা/ą¦‡ą§Ÿą§‡ą¦²ą§ą¦²ą§‹ą¦Øą¦¾ą¦‡ą¦«" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø সময় - ą¦®ą¦§ą§ą¦Æ ą¦‰ą¦¤ą§ą¦¤ą§°ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦Ŗą§ą§°ą¦¦ą§‡ą¦¶" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "ą¦ą¦Øą§ą¦Ÿą¦¾ą§°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/কেসি" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "ą¦•ą§‡ą¦šą¦æ ą¦øą§ą¦Ÿą§‡ą¦›ą¦Ø, বেইলি ą¦‰ą¦Ŗą¦¦ą§ą¦¬ą§€ą¦Ŗ" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "ą¦ą¦Øą§ą¦Ÿą¦¾ą§°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦”ą§‡ą¦­ą¦æą¦šą§" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "ą¦”ą§‡ą¦­ą¦æą¦š ą¦øą§ą¦Ÿą§‡ą¦›ą¦Ø, ą¦­ą§‡ą¦øą§ą¦Ÿą¦«ą§‹ą¦²ą§ą¦” ą¦¹ą¦æą¦²ą§ą¦šą§ā€Œ" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "ą¦ą¦Øą§ą¦Ÿą¦¾ą§°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦¦ą§ą¦®ą§‹ą¦Øą§ą¦¤ ą¦¦ą§ą¦Æ উৰভিল" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "ą¦¦ą§ą¦®ą§‹ą¦Øą§ą¦¤ দ উৰভিল ą¦øą§ą¦Ÿą§‡ą¦›ą¦Ø, ą¦Ÿą§‡ą§°ą§‡ ą¦ą¦”ą§‡ą¦²ą¦æ" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "ą¦ą¦Øą§ą¦Ÿą¦¾ą§°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦®ą§‡ą¦•ą¦®ą¦¾ą§°ą§ą¦”ą§‹" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 #, fuzzy msgid "Macquarie Island Station, Macquarie Island" msgstr "ą¦®ą§‡ą¦•ą¦®ą¦¾ą§°ą§ą¦”ą§‹ ą¦øą§ą¦Ÿą§‡ą¦›ą¦Ø, ą§°ą§‹ą¦š ą¦¦ą§ą¦¬ą§€ą¦Ŗ" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "ą¦ą¦Øą§ą¦Ÿą¦¾ą§°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/মচন" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "ą¦®ą§‹ą¦šą¦Ø ą¦øą§ą¦Ÿą§‡ą¦›ą¦Ø, ą¦¹ą§‹ą¦²ą§ą¦® বে" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "ą¦ą¦Øą§ą¦Ÿą¦¾ą§°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦®ą§‡ą¦•ą¦®ą¦¾ą§°ą§ą¦”ą§‹" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "ą¦®ą§‡ą¦•ą¦®ą¦¾ą§°ą§ą¦”ą§‹ ą¦øą§ą¦Ÿą§‡ą¦›ą¦Ø, ą§°ą§‹ą¦š ą¦¦ą§ą¦¬ą§€ą¦Ŗ" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "ą¦ą¦Øą§ą¦Ÿą¦¾ą§°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦Ŗą¦¾ą¦²ą§ą¦®ą¦¾ą§°" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "ą¦Ŗą¦¾ą¦²ą§ą¦®ą¦¾ą§° ą¦øą§ą¦Ÿą§‡ą¦›ą¦Ø, ą¦ą¦Øą§ą¦­ą¦¾ą§°ą§ą¦š ą¦¦ą§ą¦¬ą§€ą¦Ŗ" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "ą¦ą¦Øą§ą¦Ÿą¦¾ą§°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ৰো঄েৰা" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "ৰো঄েৰা ą¦øą§ą¦Ÿą§‡ą¦›ą¦Ø, ą¦ą¦”ą§‡ą¦²ą§‡ą¦‡ą¦” ą¦¦ą§ą¦¬ą§€ą¦Ŗ" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "ą¦ą¦Øą§ą¦Ÿą¦¾ą§°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦¦ą¦•ą§ą¦·ą¦æą¦£ মেৰু (_P)" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "ą¦ą¦®ą§ą¦Øą§ą¦”ą¦šą§‡ą¦Ø-ą¦øą§ą¦•ą¦Ÿ ą¦øą§ą¦Ÿą§‡ą¦›ą¦Ø, ą¦¦ą¦•ą§ą¦·ą¦æą¦£ মেৰু" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "ą¦ą¦Øą§ą¦Ÿą¦¾ą§°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦šą¦æą¦“ą§Ÿą¦¾" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "ą¦šą¦æą¦“ą§Ÿą¦¾ ą¦øą§ą¦Ÿą§‡ą¦›ą¦Ø, ই ą¦“ą¦™ą§ą¦—ą§ą¦² ą¦¦ą§ą¦¬ą§€ą¦Ŗ" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "ą¦ą¦Øą§ą¦Ÿą¦¾ą§°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦­ą§‹ą¦øą§ą¦Ÿą¦•" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "ą¦­ą§‹ą¦øą§ą¦Ÿą¦• ą¦øą§ą¦Ÿą§‡ą¦›ą¦Ø, দঃ ą¦®ą§‡ą¦—ą§ą¦Øą§‡ą¦Ÿą¦æą¦• মেৰু" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "ą¦†ą§°ą§ą¦•ą¦Ÿą¦æą¦•/ą¦²ą¦‚ą¦‡ą§Ÿą¦¾ą§°ą§ą¦¬ą§‡ą¦Ø" #: timezones.h:450 msgid "Asia/Aden" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦ą¦”ą§‡ą¦Ø" #: timezones.h:451 msgid "Asia/Almaty" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦†ą¦²ą¦®ą¦¾ą¦Ÿą¦æ" #: timezones.h:454 msgid "Asia/Amman" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦†ą¦®ą§ą¦®ą¦¾ą¦Ø" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/আনাদিৰ" #. comment for time zone Asia/Anadyr #: timezones.h:457 #, fuzzy msgid "Moscow+08 - Bering Sea" msgstr "ą¦®ą¦øą§ą¦•ą§‹+১০ - বেৰিং সাগৰ" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/আকতু" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "অতিৰাউ (অতিৰাউ, ą¦—ą§ą§°ą§ą§Ÿą§‡ą¦­), ą¦®ą¦¾ą¦‚ą¦—ą¦æą¦øą§ą¦¤ą¦¾ą¦‰ (ą¦®ą¦¾ą¦Øą¦•ą¦æą¦øą§ą¦¤ą¦¾ą¦‰)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/আকতোবে" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "আকতোবে (আকতোবে)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦†ą¦¶ā€Œą¦—ą¦¾ą¦¬ą¦¾ą¦¤" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/আশখাবাদ" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/বাগদাদ" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/বাহৰেন" #: timezones.h:468 msgid "Asia/Baku" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/বাকু" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦¬ą§ą¦Æą¦¾ą¦™ą§ą¦•ą¦•" #: timezones.h:470 msgid "Asia/Beirut" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦¬ą§‡ą¦‡ą§°ą§ą¦Ÿ" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/বিশকেক" #: timezones.h:472 msgid "Asia/Brunei" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦¬ą§ą§°ą§ą¦Øą§‡ą¦‡" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/কলকাতা" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦šą§ˆą¦¬ą¦¾ą¦²ą¦›ą¦¾ą¦Ø" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "ঔোৰনোঔ, ą¦šą§ą¦–ą¦¬ą¦¾ą¦¤ą¦¾ą§°" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦šą§‹ą¦‚ą¦•ą¦æą¦‚" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "ą¦®ą¦§ą§ą¦Æ ą¦šą§€ą¦Ø - চিচুয়ান, ইউনান, ą¦—ą§ą§Ÿą¦¾ą¦‚ą¦œą¦æ, ą¦øą¦¾ą¦‚ą¦—ą¦œą¦æ, ą¦—ą¦æą¦œą§, ą¦Ŗą§ą§°ą¦­ą§ƒą¦¤ą¦æ" #: timezones.h:480 msgid "Asia/Chungking" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦šą§ą¦‚ą¦•ą¦æą¦‚" #: timezones.h:481 msgid "Asia/Colombo" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦•ą§‹ą¦²ą§‹ą¦®ą§ą¦¬ą§‹" #: timezones.h:482 msgid "Asia/Dacca" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ঢাকা" #: timezones.h:483 msgid "Asia/Damascus" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦”ą¦¾ą¦®ą¦¾ą¦šą§ą¦•ą¦¾ą¦šą§" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ঢাকা" #: timezones.h:485 msgid "Asia/Dili" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ঔিলি" #: timezones.h:486 msgid "Asia/Dubai" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/দুবাই" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/দুশানবে" #: timezones.h:488 msgid "Asia/Gaza" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦—ą¦¾ą¦œą¦¾" #: timezones.h:489 msgid "Asia/Harbin" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦¹ą¦¾ą§°ą§ą¦¬ą¦æą¦Ø" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "ą¦¹ą§‡ą¦‡ą¦²ą§‹ą¦œą¦æą§Ÿą¦¾ą¦‚ (মোহেৰ বাহিৰে), জিলিন" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/হো_চি_মিন" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/হং কং (_K)" #: timezones.h:494 msgid "Asia/Hovd" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/হোভঔ" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "বায়ান-ওলগিই, গোভি-ą¦…ą¦²ą§ą¦Ÿą¦¾ą¦‡, হোভঔ, ą¦‰ą¦­ą¦š, ą¦œą¦¾ą¦­ą¦–ą¦¾ą¦Ø" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦‡ą§°ą¦•ą§ą¦Ÿą§ą¦øą§ą¦•ą§" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০৫ - লেক ą¦¬ą§ˆą¦•ą¦¾ą¦²" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦‡ą¦øą§ą¦¤ą¦¾ą¦Øą¦¬ą§ą¦²" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦œą¦¾ą¦•ą¦¾ą§°ą§ą¦¤ą¦¾" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "জাভা & ą¦šą§ą¦®ą¦¾ą¦¤ą§ą§°ą¦¾" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/জায়াপুৰা" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "ą¦‡ą§°ą¦æą§Ÿą¦¾ą¦Ø জায়া & ą¦®ą§‹ą¦²ą§ą¦•ą§ą¦•ą¦¾ą¦ø" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦œą§‡ą§°ą§ą¦šą§‡ą¦²ą¦¾ą¦®" #: timezones.h:508 msgid "Asia/Kabul" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/কাবুল" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦•ą¦¾ą¦®ą¦šą¦¾ą¦Ÿą¦•ą¦¾" #. comment for time zone Asia/Kamchatka #: timezones.h:511 #, fuzzy msgid "Moscow+08 - Kamchatka" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০৯ - ą¦•ą¦¾ą¦®ą¦šą¦¾ą¦Ÿą¦•ą¦¾" #: timezones.h:512 msgid "Asia/Karachi" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦•ą§°ą¦¾ą¦šą§€" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/কাশগাৰা" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦¤ą¦æą¦¬ą§ą¦¬ą¦¤ & ą¦œą¦æą¦‚ą¦œą¦æą§Ÿą¦¾ą¦‚" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦•ą¦¾ą¦Ÿą¦®ą¦¾ą¦Øą§ą¦”ą§ą§" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦•ą¦¾ą¦Ÿą¦®ą¦¾ą¦Øą§ą¦”ą§" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/কোলকাতা" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦•ą§ą§°ą¦¾ą¦øą¦Øą§‹ą§Ÿą¦¾ą§°ą§ą¦øą§ą¦•" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০৪ - ą¦‡ą§Ÿą§‡ą¦Øą¦æą¦šą§‡ą¦‡ নদী" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦•ą§ą§Ÿą¦¾ą¦²ą¦¾ ą¦²ą¦¾ą¦®ą§ą¦Ŗą§ą§° (_L)" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "ą¦®ą¦¾ą¦²ą¦¾ą§Ÿą§‡ą¦›ą¦æą§Ÿą¦¾ ą¦‰ą¦Ŗą¦¦ą§ą¦¬ą§€ą¦Ŗ" #: timezones.h:525 msgid "Asia/Kuching" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦•ą§ą¦šą¦æą¦‚" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "ą¦šą¦¾ą¦¬ą¦¾ą¦• & ą¦šą¦¾ą§°ą¦¾ą§±ą¦¾ą¦•" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/কুৱেইত" #: timezones.h:529 msgid "Asia/Macao" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/মাকাও" #: timezones.h:530 msgid "Asia/Macau" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/মাকাও" #: timezones.h:531 msgid "Asia/Magadan" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/মাগাদান" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০৮ - মাগাদান" #: timezones.h:534 msgid "Asia/Makassar" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦®ą¦¾ą¦•ą¦¾ą¦šą§ą¦šą¦¾ą§°" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "ą¦Ŗą§‚ą§°ą§ą¦¬ & ą¦¦ą¦•ą§ą¦·ą¦æą¦£ ą¦¬ą§‹ą§°ą§ą¦Øą¦æą¦“, ą¦šą§‡ą¦²ą§‡ą¦¬ą§‡ą¦š, বালি, নুচা ą¦Ÿą§‡ą¦‚ą¦—ą§‡ą§°ą¦¾, ą¦Ŗą¦¶ą§ą¦šą¦æą¦® তিমুৰ" #: timezones.h:537 msgid "Asia/Manila" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/মেনিলা" #: timezones.h:538 msgid "Asia/Muscat" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦®ą¦¾ą¦øą¦•ą¦¾ą¦Ÿ" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦Øą¦æą¦•ą§‹ą¦øą¦æą§Ÿą¦¾" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦‡ą§°ą¦•ą§ą¦Ÿą§ą¦øą§ą¦•ą§" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০৩ - ą¦Øą§‹ą¦­ą§‹ą¦šą¦æą¦¬ą¦¾ą§°ą§ą¦øą§ą¦•" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦Øą§‹ą¦­ą§‹ą¦øą¦æą¦¬ą¦¾ą§°ą§ą¦øą§ą¦•" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০৩ - ą¦Øą§‹ą¦­ą§‹ą¦šą¦æą¦¬ą¦¾ą§°ą§ą¦øą§ą¦•" #: timezones.h:546 msgid "Asia/Omsk" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦“ą¦®ą¦øą§ą¦•" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০৩ - ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦šą¦¾ą¦‡ą¦¬ą§‡ą§°ą¦æą§Ÿą¦¾" #: timezones.h:549 msgid "Asia/Oral" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ওৰাল" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦•ą¦¾ą¦œą¦¾ą¦–ą¦øą§ą¦¤ą¦¾ą¦Ø" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/নোম ফেন (_P)" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦Ŗą¦Øą§ą¦Ÿą¦æą§Ÿą¦¾ą¦Øą¦¾ą¦•" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "ą¦Ŗą¦¶ą§ą¦šą¦æą¦® & ą¦®ą¦§ą§ą¦Æ ą¦¬ą§‹ą§°ą§ą¦Øą¦æą¦“" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦Ŗą¦æą§Ÿą§‹ą¦‚ą¦‡ą§Ÿą¦¾ą¦‚" #: timezones.h:557 msgid "Asia/Qatar" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/কাতাৰ" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦•ą¦æą¦œą¦æą¦²ą§‹ą§°ą§ą¦¦ą¦¾" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "ą¦•ą¦æą¦œą¦æą¦²ą§‹ą§°ą§ą¦¦ą¦¾ (ą¦•ą¦æą¦œą¦æą¦²ą§‹ą§°ą§ą¦¦ą¦¾, ą¦•ą¦æą¦œą¦æą¦²-ą¦“ą§°ą§ą¦¦ą¦¾)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦‡ą§Ÿą¦¾ą¦‚ą¦—ą¦Ø" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ৰিয়াধ" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ৰিয়াধ৮৭" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ৰিয়াধ৮৮" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ৰিয়াধ৮৯" #: timezones.h:566 msgid "Asia/Saigon" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦øą¦¾ą§Ÿą¦—ą¦Ø" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/শাকালিন" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০৭ - ą¦šą¦¾ą¦–ą¦¾ą¦²ą¦æą¦Ø ą¦¦ą§ą¦¬ą§€ą¦Ŗ" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦øą¦¾ą¦®ą¦¾ą§°ą¦–ą¦¾ą¦Øą§ą¦¦" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦‰ą¦œą§ą¦¬ą§‡ą¦•ą¦æą¦øą§ą¦¤ą¦¾ą¦Ø" #: timezones.h:573 msgid "Asia/Seoul" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦šą¦æą¦“ą¦²" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦øą¦¾ą¦‚ą¦˜ą¦¾ą¦‡" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "ą¦Ŗą§‚ą§°ą§ą¦¬ ą¦šą§€ą¦Ø - ą¦¬ą§‡ą¦‡ą¦œą¦æą¦‚, ą¦—ą§ą§Ÿą¦¾ą¦‚ą¦”ą¦Ø, ą¦øą¦¾ą¦‚ą¦˜ą¦¾ą¦‡ ą¦Ŗą§ą§°ą¦­ą§ƒą¦¤ą¦æ" #: timezones.h:577 msgid "Asia/Singapore" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦øą¦æą¦™ą§ą¦—ą¦¾ą¦Ŗą§ą§°" #: timezones.h:578 msgid "Asia/Taipei" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/তাইপে" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦¤ą¦¾ą¦øą¦•ą§‡ą¦Øą§ą¦¤" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "ą¦Ŗą§‚ą§°ą§ą¦¬ ą¦‰ą¦œą§ą¦¬ą§‡ą¦•ą¦æą¦øą§ą¦¤ą¦¾ą¦Ø" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/তবিলিছি" #: timezones.h:583 msgid "Asia/Tehran" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/তেহেৰান" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/তেল আভিভ (_A)" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦„ą¦æą¦®ą§ą¦¬ą§" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦„ą¦æą¦®ą§ą¦Ŗą§" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦Ÿą§‹ą¦•ą¦æą¦“" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦‰ą¦œą§ą¦‚ ą¦Ŗą¦¾ą¦Øą§ą¦¦ą¦¾ą¦‚ (_P)" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/উলানবাতোৰ" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/উলান বাতোৰ (_B)" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/উৰুমকি" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "অধিকাংশ ą¦¤ą¦æą¦¬ą§ą¦¬ą¦¤ & ą¦œą¦æą¦‚ą¦œą¦æą§Ÿą¦¾ą¦‚" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦­ą¦æą§Ÿą§‡ą¦Øą¦¤ą¦æą§Ÿą§‡ą¦Ø" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦­ą§ą¦²ą¦¾ą¦”ą¦æą¦­ą§‹ą¦øą§ą¦Ÿą¦•" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০৭ - আমুৰ নদী" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦‡ą§Ÿą¦¾ą¦•ą§ą¦Ÿą¦ø" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০৬ - লেনা নদী" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦‡ą§Ÿą¦¾ą¦•ą¦¾ą¦¤ą¦¾ą§°ą¦æą¦Øą¦¬ą§ą§°ą§ą¦—" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০২ - উৰাল" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "ą¦ą¦›ą¦æą§Ÿą¦¾/ą¦‡ą§Ÿą¦¾ą§°ą§ą¦­ą¦¾ą¦Ø" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/ą¦ą¦œą§‹ą§°ą§‡" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "ą¦ą¦œą§‹ą§°ą§‡ą¦›" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/বাৰমুঔা" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/কেনাৰি" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "কেনাৰি ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/কেপ ą¦­ą¦¾ą§°ą§ą¦”ą¦æ (_V)" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/ফেৰো" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/ফেৰো" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/জান ą¦®ą¦¾ą§Ÿą§‡ą¦Ø (_M)" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/মাদিইৰা" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "মাদেইৰা ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/ą§°ą¦æą¦•ą§Ÿą¦¾ą¦­ą¦æą¦•" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/ą¦šą¦¾ą¦‰ą¦„ ą¦œą§°ą§ą¦œą¦æą§Ÿą¦¾ (_G)" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/ą¦øą§ą¦Ÿą§‡ą¦Øą¦²ą¦æ" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/ą¦šą§‡ą¦Øą§ą¦Ÿą§ হেলেনা (_H)" #: timezones.h:625 msgid "Australia/ACT" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦ą¦”ą¦æą¦²ą§‡ą¦”" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "ą¦¦ą¦•ą§ą¦·ą¦æą¦£ ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦¬ą§ą§°ą¦æą¦øą¦¬ą§‡ą¦Ø" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "ą¦•ą§ą¦‡ą¦Øą§ą¦øą¦²ą§‡ą¦Øą§ą¦” - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦¬ą§ą§°ą§‹ą¦•ą§‡ą¦Ø হিল (_H)" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "নিউ ą¦¦ą¦•ą§ą¦·ą¦æą¦£ ą§±ą§‡ą¦²ą§ą¦šą§ā€Œ - ą¦‡ą§Ÿą¦¾ą¦Øą¦•ą§‹ą¦‰ą¦‡ą¦Øą¦¾" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/কেনবেৰা" #: timezones.h:636 msgid "Australia/Currie" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/কাৰি" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "ą¦¤ą¦¾ą¦øą§ą¦®ą¦¾ą¦Øą¦æą§Ÿą¦¾ - কিং ą¦¦ą§ą¦¬ą§€ą¦Ŗ" #: timezones.h:639 msgid "Australia/Darwin" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/ঔাৰউইন" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "ą¦‰ą¦¤ą§ą¦¤ą§° ą¦…ą¦žą§ą¦šą¦²" #: timezones.h:642 msgid "Australia/Eucla" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦‡ą¦‰ą¦•ą§ą¦²ą¦¾" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾ - ą¦‡ą¦‰ą¦•ą§ą¦²ą¦¾ ą¦…ą¦žą§ą¦šą¦²" #: timezones.h:645 msgid "Australia/Hobart" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦¹ą§‹ą¦¬ą¦¾ą§°ą§ą¦Ÿ" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "ą¦¤ą¦¾ą¦øą§ą¦®ą¦¾ą¦Øą¦æą§Ÿą¦¾ - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:648 msgid "Australia/LHI" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦²ą¦æą¦Øą§ą¦”ą¦¾ą¦®ą§‡ą¦Ø" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "ą¦•ą§ą¦‡ą¦Øą§ą¦øą¦²ą§‡ą¦Øą§ą¦” - হলিঔে ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦²ą§°ą§ą¦” হাউই (_H)" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "ą¦²ą§°ą§ą¦” হ'ৱি ą¦¦ą§ą¦¬ą§€ą¦Ŗ" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦®ą§‡ą¦²ą¦¬ą§‹ą§°ą§ą¦Ø" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "ą¦­ą¦æą¦•ą§ą¦Ÿą§‹ą§°ą¦æą§Ÿą¦¾" #: timezones.h:658 msgid "Australia/North" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦‰ą¦¤ą§ą¦¤ą§°" #: timezones.h:659 msgid "Australia/NSW" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/নিউ সাই঄ ą¦“ą§Ÿą§‡ą¦²ą¦ø" #: timezones.h:660 msgid "Australia/Perth" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦Ŗą¦¾ą§°ą§ą¦„" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾ - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:663 msgid "Australia/Queensland" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦•ą§ą¦‡ą¦Øą§ą¦øą¦²ą§‡ą¦Øą§ą¦”" #: timezones.h:664 msgid "Australia/South" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦¦ą¦•ą§ą¦·ą¦æą¦£" #: timezones.h:665 msgid "Australia/Sydney" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦šą¦æą¦”ą§ą¦Øą¦æ" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "নিউ ą¦¦ą¦•ą§ą¦·ą¦æą¦£ ą§±ą§‡ą¦²ą§ą¦šą§ā€Œ - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦¤ą¦¾ą¦šą§ą¦®ą¦¾ą¦Øą¦æą§Ÿą¦¾" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦­ą¦æą¦•ą§ą¦Ÿą§‹ą§°ą¦æą§Ÿą¦¾" #: timezones.h:670 msgid "Australia/West" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦Ŗą¦¶ą§ą¦šą¦æą¦®" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą§°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦‡ą§Ÿą¦¾ą¦Øą¦•ą§‹ą¦‰ą¦‡ą¦Øą¦¾" #: timezones.h:672 msgid "Brazil/Acre" msgstr "ą¦¬ą§ą§°ą¦¾ą¦œą¦æą¦²/ą¦ą¦•ą§°" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "ą¦¬ą§ą§°ą¦¾ą¦œą¦æą¦²/ঔিনহোনহা" #: timezones.h:674 msgid "Brazil/East" msgstr "ą¦¬ą§ą§°ą¦¾ą¦œą¦æą¦²/ą¦Ŗą§‚ą§°ą§ą¦¬" #: timezones.h:675 msgid "Brazil/West" msgstr "ą¦¬ą§ą§°ą¦¾ą¦œą¦æą¦²/ą¦Ŗą¦¶ą§ą¦šą¦æą¦®" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "কানাঔা/ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•" #: timezones.h:677 msgid "Canada/Central" msgstr "কানাঔা/ą¦šą§‡ą¦Øą§ą¦Ÿą§ą§°ą§‡ą¦²" #: timezones.h:678 msgid "Canada/Eastern" msgstr "কানাঔা/ą¦Ŗą§‚ą§°ą§ą¦¬" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "কানাঔা/ą¦Ŗą§‚ą§°ą§ą¦¬-ą¦øą¦¾ą¦øą¦•ą¦¾ą¦šą§ą§Ÿą¦¾ą¦Ø" #: timezones.h:680 msgid "Canada/Mountain" msgstr "কানাঔা/ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "কানাঔা/ą¦Øą¦æą¦‰ą¦«ą¦¾ą¦‰ą¦Øą§ą¦”ą¦²ą§‡ą¦Øą§ą¦”" #: timezones.h:682 msgid "Canada/Pacific" msgstr "কানাঔা/ą¦Ŗą§‡ą¦šą¦æą¦«ą¦æą¦•" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "কানাঔা/ą¦øą¦¾ą¦øą¦•ą¦¾ą¦šą§ą§Ÿą¦¾ą¦Ø" #: timezones.h:684 msgid "Canada/Yukon" msgstr "কানাঔা/ইউকোন" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "চিলি/ą¦•ą¦Øą§ą¦Ÿą¦æą¦Øą§‡ą¦Øą§ą¦Ÿą¦¾ą¦²" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "চিলি/ą¦‡ą¦øą§ą¦Ÿą¦¾ą§°ą¦†ą¦‡ą¦²ą§‡ą¦Øą§ą¦”" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "কিউবা" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "মিচৰ" #: timezones.h:692 msgid "Eire" msgstr "ą¦†ą§Ÿą¦¾ą§°" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/ą¦—ą§ą§°ą¦æą¦Øą¦‰ą¦‡ą¦š" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/জুলু" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "ইউৰোপ/ą¦†ą¦®ą¦øą§ą¦Ÿą¦¾ą§°ą¦”ą¦¾ą¦®" #: timezones.h:731 msgid "Europe/Andorra" msgstr "ইউৰোপ/ą¦ą¦Øą§ą¦”ą§‹ą§°ą¦¾" #: timezones.h:732 msgid "Europe/Athens" msgstr "ইউৰোপ/ą¦ą¦„ą§‡ą¦Øą§ą¦ø" #: timezones.h:733 msgid "Europe/Belfast" msgstr "ইউৰোপ/ą¦¬ą§‡ą¦²ą¦«ą¦¾ą¦øą§ą¦Ÿ" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "ইউৰোপ/ą¦¬ą§‡ą¦²ą¦—ą§ą§°ą§‡ą¦”" #: timezones.h:735 msgid "Europe/Berlin" msgstr "ইউৰোপ/ą¦¬ą¦¾ą§°ą§ą¦²ą¦æą¦Ø" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "ইউৰোপ/ą¦¬ą§ą§°ą¦¾ą¦¤ą¦æą¦øą¦²ą¦¾ą¦­ą¦¾" #: timezones.h:737 msgid "Europe/Brussels" msgstr "ইউৰোপ/ą¦¬ą§ą§°ą¦¾ą¦øą§‡ą¦²ą¦ø" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "ইউৰোপ/ą¦¬ą§ą¦–ą¦¾ą§°ą§‡ą¦øą§ą¦Ÿ" #: timezones.h:739 msgid "Europe/Budapest" msgstr "ইউৰোপ/ą¦¬ą§ą¦”ą¦¾ą¦Ŗą§‡ą¦øą§ą¦Ÿ" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "ইউৰোপ/ą¦šą¦æą¦¶ą¦æą¦Øą¦¾ą¦‰" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "ইউৰোপ/কোপেনহেগেন" #: timezones.h:742 msgid "Europe/Dublin" msgstr "ইউৰোপ/ঔাবলিন" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "ইউৰোপ/ą¦œą¦æą¦¬ą§ą§°ą¦¾ą¦²ą¦Ÿą¦¾ą§°" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "ইউৰোপ/ą¦—ą§ą§Ÿą§‡ą§°ą§ą¦Øą§ą¦øą§‡" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "ইউৰোপ/ą¦¹ą§‡ą¦²ą¦øą¦æą¦™ą§ą¦•ą¦æ" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "ইউৰোপ/আইল_অফ_মেন" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "ইউৰোপ/ą¦‡ą¦øą§ą¦¤ą¦¾ą¦Øą¦¬ą§ą¦²" #: timezones.h:748 msgid "Europe/Jersey" msgstr "ইউৰোপ/ą¦œą¦¾ą§°ą§ą¦øą¦æ" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "ইউৰোপ/ą¦•ą¦¾ą¦²ą¦æą¦Øą¦æą¦Øą¦—ą§ą§°ą¦¾ą¦”" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "ą¦®ą¦øą§ą¦•ą§‹-০১ - ą¦•ą¦¾ą¦²ą¦æą¦Øą¦—ą§ą§°ą¦¾ą¦”" #: timezones.h:752 msgid "Europe/Kiev" msgstr "ইউৰোপ/কিভ" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "ইউৰোপ/ą¦²ą¦æą¦šą§ą¦¬ą¦Øą§" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "ইউৰোপ/ą¦²ą§ą¦¬ą¦²ą¦‡ą§Ÿą¦¾ą¦Øą¦¾" #: timezones.h:759 msgid "Europe/London" msgstr "ইউৰোপ/ą¦²ą¦£ą§ą¦”ą¦Ø" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "ইউৰোপ/ą¦²ą§ą¦•ą§ą¦øą§‡ą¦®ą¦¬ą§ą§°ą§ą¦—" #: timezones.h:761 msgid "Europe/Madrid" msgstr "ইউৰোপ/ą¦®ą¦¾ą¦¦ą§ą§°ą¦æą¦¦" #: timezones.h:764 msgid "Europe/Malta" msgstr "ইউৰোপ/ą¦®ą¦²ą§ą¦Ÿą¦¾" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "ইউৰোপ/মাৰিহাম" #: timezones.h:766 msgid "Europe/Minsk" msgstr "ইউৰোপ/ą¦®ą¦æą¦Øą¦øą§ą¦•" #: timezones.h:767 msgid "Europe/Monaco" msgstr "ইউৰোপ/মোনেকো" #: timezones.h:768 msgid "Europe/Moscow" msgstr "ইউৰোপ/ą¦®ą¦øą§ą¦•ą§‹" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০০ - ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą§°ą¦¾ą¦›ą¦æą§Ÿą¦¾" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "ইউৰোপ/ą¦Øą¦æą¦•ą§‹ą¦øą¦æą§Ÿą¦¾" #: timezones.h:772 msgid "Europe/Oslo" msgstr "ইউৰোপ/ওসলো" #: timezones.h:773 msgid "Europe/Paris" msgstr "ইউৰোপ/ą¦Ŗą§‡ą§°ą¦æą¦¶ą§ą¦¬" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "ইউৰোপ/প'ঔগোৰিকা" #: timezones.h:775 msgid "Europe/Prague" msgstr "ইউৰোপ/ą¦Ŗą§ą§°ą¦¾ą¦—" #: timezones.h:776 msgid "Europe/Riga" msgstr "ইউৰোপ/ৰিগা" #: timezones.h:777 msgid "Europe/Rome" msgstr "ইউৰোপ/ৰোম" #: timezones.h:778 msgid "Europe/Samara" msgstr "ইউৰোপ/সামাৰা" #. comment for time zone Europe/Samara #: timezones.h:780 #, fuzzy msgid "Moscow - Samara, Udmurtia" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০১ - চামাৰা, ą¦‰ą¦¦ą¦®ą§ą§°ą§ą¦¤ą¦æą§Ÿą¦¾" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "ইউৰোপ/চান মাৰিনো (_M)" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "ইউৰোপ/ą¦øą¦¾ą§°ą¦¾ą§Ÿą§‡ą¦­ą§‹" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "ইউৰোপ/ą¦øą¦æą¦®ą§ą¦«ą¦æą§°ą§‹ą¦Ŗą§‡ą¦²" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "ą¦®ą¦§ą§ą¦Æ ą¦•ą§ą§°ą¦æą¦®ą¦æą§Ÿą¦¾" #: timezones.h:786 msgid "Europe/Skopje" msgstr "ইউৰোপ/ą¦øą§ą¦•ą¦Ŗą§Ÿą¦¾" #: timezones.h:787 msgid "Europe/Sofia" msgstr "ইউৰোপ/ą¦øą§‹ą¦«ą¦æą§Ÿą¦¾" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "ইউৰোপ/ą¦øą§ą¦Ÿą¦•ą¦¹ą§‹ą¦®" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "ইউৰোপ/ą¦Ÿą§ą¦Æą¦¾ą¦²ą¦æą¦Ø" #: timezones.h:790 msgid "Europe/Tirane" msgstr "ইউৰোপ/তিৰানা" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "ইউৰোপ/তিৰাসপোল" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "ইউৰোপ/ą¦‰ą¦œą¦—ą§‹ą§°ą§‹ą¦¦" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "ą§°ą§ą¦„ą§‡ą¦Øą¦æą§Ÿą¦¾" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "ইউৰোপ/ভাদুজ" #: timezones.h:796 msgid "Europe/Vatican" msgstr "ইউৰোপ/ą¦­ą§ą¦Æą¦¾ą¦Ÿą¦æą¦•ą§‡ą¦Ø" #: timezones.h:797 msgid "Europe/Vienna" msgstr "ইউৰোপ/ą¦­ą¦æą§Ÿą§‡ą¦Øą¦¾" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "ইউৰোপ/ভিলনিয়াস" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "ইউৰোপ/ą¦­ą§‹ą¦²ą§ą¦—ą§‹ą¦—ą§ą§°ą¦¾ą¦”" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০০ - ą¦•ą¦¾ą¦øą§ą¦Ŗą¦æą§Ÿą¦¾ą¦Ø সাগৰ" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "ইউৰোপ/ą¦“ą§Ÿą¦¾ą§°ą¦ø" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "ইউৰোপ/ą¦œą¦¾ą¦—ą§ą§°ą§‡ą¦¬" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "ইউৰোপ/ą¦œą¦¾ą¦Ŗą§‹ą§°ą§‹ą¦Æą§‡ą¦‡" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "ą¦œą§‡ą¦«ą§‹ą§°ą¦æą¦œą¦æą§Ÿą¦¾, পূ ą¦²ą§ą¦—ą¦¾ą¦Øą¦øą§ą¦• / ą¦œą§‡ą¦«ą§‹ą§°ą¦æą¦œą¦æą§Ÿą¦¾, পূ ą¦²ą§ą¦¹ą¦¾ą¦Øą¦øą§ą¦•" #: timezones.h:807 msgid "Europe/Zurich" msgstr "ইউৰোপ/ą¦œą§ą§°ą¦æą¦–" #: timezones.h:808 msgid "Factory" msgstr "ą¦«ą§ą¦Æą¦¾ą¦•ą§ą¦Ÿą§°ą¦æ" #: timezones.h:809 msgid "GB" msgstr "ą¦—ą§ą§°ą§‡ą¦Ÿ ą¦¬ą§ą§°ą¦æą¦Ÿą§‡ą¦Ø" #: timezones.h:810 msgid "GB-Eire" msgstr "ą¦—ą§ą§°ą§‡ą¦Ÿ ą¦¬ą§ą§°ą¦æą¦Ÿą§‡ą¦Ø-আয়াৰ" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "ą¦—ą§ą§°ą¦æą¦Øą¦‰ą¦‡ą¦š" #: timezones.h:816 msgid "Hongkong" msgstr "হং কং" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "ą¦†ą¦‡ą¦øą¦²ą§‡ą¦Øą§ą¦”" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "ভাৰত মহাসাগৰ/ą¦†ą¦Øą§ą¦¤ą¦¾ą¦Øą¦¾ą¦Øą¦¾ą§°ą¦æą¦­ą§‹" #: timezones.h:820 msgid "Indian/Chagos" msgstr "ভাৰত মহাসাগৰ/ą¦šą¦¾ą¦—ą§‹ą¦ø" #: timezones.h:821 msgid "Indian/Christmas" msgstr "ভাৰত মহাসাগৰ/ą¦•ą§ą§°ą¦æą¦øą§ą¦Ÿą¦®ą¦¾ą¦ø" #: timezones.h:822 msgid "Indian/Cocos" msgstr "ভাৰত মহাসাগৰ/কোকোস" #: timezones.h:823 msgid "Indian/Comoro" msgstr "ভাৰত মহাসাগৰ/কোমোৰো" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "ভাৰত মহাসাগৰ/ą¦•ą¦¾ą§°ą¦—ą§ą§Ÿą§‡ą¦²ą§‡ą¦Ø" #: timezones.h:825 msgid "Indian/Mahe" msgstr "ভাৰত মহাসাগৰ/মাহে" #: timezones.h:826 msgid "Indian/Maldives" msgstr "ভাৰত মহাসাগৰ/মালদিভ" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "ভাৰত মহাসাগৰ/মৰিশাস" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "ভাৰত মহাসাগৰ/ą¦®ą§‡ą§Ÿą§‹ą¦¤ą§‡" #: timezones.h:829 msgid "Indian/Reunion" msgstr "ভাৰত মহাসাগৰ/ą§°ą¦æą¦‰ą¦Øą¦æą§Ÿą¦Ø" #: timezones.h:830 msgid "Iran" msgstr "ইৰাণ" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "ą¦‡ą¦œą§ą§°ą¦¾ą§Ÿą§‡ą¦²" #: timezones.h:833 msgid "Jamaica" msgstr "ą¦œą¦¾ą¦®ą¦¾ą¦‡ą¦•ą¦¾" #: timezones.h:834 msgid "Japan" msgstr "জাপান" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "ą¦•ą§Ÿą¦¾ą¦œą¦¾ą¦²ą¦æą¦‡ą¦Ø" #: timezones.h:836 msgid "Libya" msgstr "লিবিয়া" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "ą¦®ą§‡ą¦•ą§ą¦øą¦æą¦•ą§‹/ą¦¬ą¦¾ą¦¹ą¦¾ą¦Øą§‹ą§°ą§ą¦¤ą§‡" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "ą¦®ą§‡ą¦•ą§ą¦øą¦æą¦•ą§‹/বাহাসুৰ" #: timezones.h:840 msgid "Mexico/General" msgstr "ą¦®ą§‡ą¦•ą§ą¦øą¦æą¦•ą§‹/সাধাৰণ" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "ą¦®ą¦§ą§ą¦Æą¦Ŗą§ą§°ą¦¾ą¦šą§ą¦Æ/ৰিয়াধ৮৭" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "ą¦®ą¦§ą§ą¦Æą¦Ŗą§ą§°ą¦¾ą¦šą§ą¦Æ/ৰিয়াধ৮৮" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "ą¦®ą¦§ą§ą¦Æą¦Ŗą§ą§°ą¦¾ą¦šą§ą¦Æ/ৰিয়াধ৮৯" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "ą¦Øą¦¾ą¦­ą¦¾ą¦œą§‹" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦ą¦Ŗą¦æą§Ÿą¦¾" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦…ą¦•ą¦²ą§‡ą¦Øą§ą¦”" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦šą§ą¦Æą¦¾ą¦Ÿą¦¹ą¦¾ą¦®" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "ą¦•ą§‡ą¦Ÿą¦¹ą§‡ą¦® ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦Ÿą§ą§°ą§ą¦•" #. comment for time zone Pacific/Chuuk #: timezones.h:858 #, fuzzy msgid "Chuuk (Truk) and Yap" msgstr "ą¦Ÿą§ą§°ą§ą¦• (ą¦šą§ą¦•) আৰু ą¦‡ą§Ÿą¦¾ą¦Ŗ" #: timezones.h:859 msgid "Pacific/Easter" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦ˆą¦·ą§ą¦Ÿą¦¾ą§°" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "ą¦‡ą¦øą§ą¦Ÿą¦¾ą§° ą¦¦ą§ą¦¬ą§€ą¦Ŗ & চালা ই ą¦—ą§‹ą¦®ą§‡ą¦œ" #: timezones.h:862 msgid "Pacific/Efate" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦ą¦«ą¦¾ą¦¤ą§‡" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦ą¦Øą§ą¦”ą¦¾ą§°ą¦¬ą§ą§°ą¦æ" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "ą¦«ą¦æą¦Øą¦æą¦•ą§ą¦ø ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ফাকাওফো" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ফিজি" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ফুনাফুতি" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/গালাপাগোস" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "ą¦—ą§‡ą¦²ą¦¾ą¦Ŗą¦¾ą¦—ą§‹ą¦š ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦—ą§ą¦Æą¦¾ą¦®ą¦¬ą¦æą§Ÿą¦¾ą§°" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "ą¦—ą§‡ą¦®ą§ą¦¬ą¦æą§Ÿą¦¾ą§° ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦—ą§ą§Ÿą¦¾ą¦”ą¦¾ą¦²ą¦•ą¦¾ą¦Øą¦¾ą¦²" #: timezones.h:876 msgid "Pacific/Guam" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦—ą§ą§Ÿą¦¾ą¦®" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/হনোলুলু" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "হাৱাই" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦œą¦Øą¦øą§ą¦Ÿą¦Ø" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "ą¦œą¦Øą¦øą§ą¦Ÿą¦Ø ą¦ą¦Ÿą§‹ą¦²" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦•ą¦æą§°ą¦æą¦¤ą¦æą¦®ą¦¾ą¦Ÿą¦æ" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "লাইন ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" # is this kiribati? #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/কোসৰে" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "কোসৰেই" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦•ą§Ÿą¦¾ą¦œą¦¾ą¦²ą¦æą¦‡ą¦Ø" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦®ą¦¾ą¦œą§ą§°ą§‹" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/মাৰকিসাস" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "ą¦®ą¦¾ą§°ą§ą¦•ą§ą¦‡ą¦šą¦¾ą¦š ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" # not sure #: timezones.h:898 msgid "Pacific/Midway" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦®ą¦æą¦”ą¦“ą§Ÿą§‡" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "মিঔৱে ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/নাউৰু" #: timezones.h:902 msgid "Pacific/Niue" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/নিউ" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦Øą§‹ą§°ą¦«ą§‹ą¦²ą§ą¦•" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/নুমিয়া" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/পাগো_পাগো" #: timezones.h:906 msgid "Pacific/Palau" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/পালাউ" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦Ŗą¦æą¦Ÿą¦•ą§‡ą§Ÿą¦¾ą§°ą§ą¦Ø" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/পোনাপে" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 #, fuzzy msgid "Pohnpei (Ponape)" msgstr "পোনাপে (পোনপেই)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/পোনাপে" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦Ŗą§‹ą§°ą§ą¦Ÿ-ą¦®ą§‹ą§°ą§ą¦øą¦¬ą¦æ" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą§°ą¦¾ą§°ą§‹ą¦Ÿą§‹ą¦™ą§ą¦—ą¦¾" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/সাইপান" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦øą¦¾ą¦®ą§‹ą§Ÿą¦¾" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/তাহিতি" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "ą¦šą§‹ą¦šą¦¾ą¦‡ą¦Ÿą¦æ ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦¤ą¦¾ą§°ą¦¾ą¦“ą§Ÿą¦¾" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "ą¦—ą¦æą¦²ą¦¬ą¦¾ą§°ą§ą¦Ÿ ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦Ÿą§‹ą¦™ą§ą¦—ą¦¾ą¦Ÿą¦¾ą¦Ŗą§" #: timezones.h:923 msgid "Pacific/Truk" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦Ÿą§ą§°ą§ą¦•" #: timezones.h:924 msgid "Pacific/Wake" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦“ą§Ÿą§‡ą¦•" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "ৱেক ą¦¦ą§ą¦¬ą§€ą¦Ŗ" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦“ą§Ÿą¦¾ą¦²ą¦æą¦š" #: timezones.h:928 msgid "Pacific/Yap" msgstr "ą¦Ŗą§ą§°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগৰ/ą¦‡ą§Ÿą¦¾ą¦Ŗ" #: timezones.h:929 msgid "Poland" msgstr "ą¦Ŗą§‹ą¦²ą§‡ą¦Øą§ą¦”" #: timezones.h:930 msgid "Portugal" msgstr "ą¦Ŗą§°ą§ą¦¤ą§ą¦—ą¦¾ą¦²" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "ą¦øą¦æą¦™ą§ą¦—ą¦¾ą¦Ŗą§ą§°" #: timezones.h:937 msgid "Turkey" msgstr "ą¦¤ą§ą§°ą¦øą§ą¦•" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą§°ą¦¾ą¦·ą§ą¦Ÿą§ą§°/ą¦†ą¦²ą¦¾ą¦øą§ą¦•ą¦¾" #: timezones.h:941 msgid "US/Aleutian" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą§°ą¦¾ą¦·ą§ą¦Ÿą§ą§°/ą¦†ą¦²ą¦æą¦‰ą¦›ą¦æą§Ÿą¦¾ą¦Ø" #: timezones.h:942 msgid "US/Arizona" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą§°ą¦¾ą¦·ą§ą¦Ÿą§ą§°/ą¦†ą§°ą¦æą¦œą§‹ą¦Øą¦¾" #: timezones.h:943 msgid "US/Central" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą§°ą¦¾ą¦·ą§ą¦Ÿą§ą§°/ą¦šą§‡ą¦Øą§ą¦Ÿą§ą§°ą§‡ą¦²" #: timezones.h:944 msgid "US/Eastern" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą§°ą¦¾ą¦·ą§ą¦Ÿą§ą§°/ą¦‡ą¦šą§ą¦Ÿą¦¾ą§°ą§ą¦Ø" # msgstr "ą¦Æą§ą¦•ą§ą¦¤ą§°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦Ŗą§‚ą¦°ą§ą¦¬ą¦¬ą¦°ą§ą¦¤ą§€" #: timezones.h:945 msgid "US/East-Indiana" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą§°ą¦¾ą¦·ą§ą¦Ÿą§ą§°/ą¦Ŗą§‚ą§°ą§ą¦¬-ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾" #: timezones.h:946 msgid "US/Hawaii" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą§°ą¦¾ą¦·ą§ą¦Ÿą§ą§°/ą¦¹ą¦¾ą¦“ą§Ÿą¦¾ą¦‡" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą§°ą¦¾ą¦·ą§ą¦Ÿą§ą§°/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾-ą¦øą§ą¦Ÿą¦¾ą§°ą§ą¦•" #: timezones.h:948 msgid "US/Michigan" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą§°ą¦¾ą¦·ą§ą¦Ÿą§ą§°/মিশিগান" #: timezones.h:949 msgid "US/Mountain" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą§°ą¦¾ą¦·ą§ą¦Ÿą§ą§°/ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø" #: timezones.h:950 msgid "US/Pacific" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą§°ą¦¾ą¦·ą§ą¦Ÿą§ą§°/পেসিফিক" #: timezones.h:951 msgid "US/Samoa" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą§°ą¦¾ą¦·ą§ą¦Ÿą§ą§°/ą¦øą¦¾ą¦®ą§‹ą§Ÿą¦¾" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "জুলু" #~ msgid "US/Pacific-New" #~ msgstr "ą¦Æą§ą¦•ą§ą¦¤ą§°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦Ŗą§ą¦Æą¦¾ą¦øą¦æą¦«ą¦æą¦•-নিউ" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/tr.po0000664000175000017500000016650014632072346023714 0ustar fabiofabio# translation of tr.po to Turkish # Bahadir Yagan , 2004. # Egemen Metin Turan , 2006, 2007. msgid "" msgstr "" "Project-Id-Version: system-config-date-timezones\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-11-01 10:58+0200\n" "Last-Translator: Hasan Alp iNAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: tr\n" "X-Generator: KBabel 1.11.4\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Afrika/Abidyan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Afrika/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Afrika/Adisababa" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Afrika/Cezayir" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Afrika/Asmara" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Afrika/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Afrika/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Afrika/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Afrika/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Afrika/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Afrika/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Afrika/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Afrika/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Afrika/Kahire" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Afrika/Kazablanka" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Afrika/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Afrika/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Afrika/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Afrika/DarüsSelam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Afrika/Cibuti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Afrika/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Afrika/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Afrika/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Afrika/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Afrika/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Afrika/Yohanesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Afrika/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Afrika/Hartum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Afrika/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Afrika/Kinşasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Afrika/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Afrika/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Afrika/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Afrika/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Afrika/Lubumbaşi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Afrika/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Afrika/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Afrika/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Afrika/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Afrika/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Afrika/Mogadişu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Afrika/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Afrika/Nayrobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Afrika/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Afrika/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Afrika/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Afrika/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Afrika/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Afrika/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Afrika/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Afrika/Trablus" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Afrika/Tunus" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Afrika/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "Amerika/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "Aleutian Adaları" #: timezones.h:63 msgid "America/Anchorage" msgstr "Amerika/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "Alaska Zamanı" #: timezones.h:66 msgid "America/Anguilla" msgstr "Amerika/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "Amerika/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "Amerika/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Amerika/Arjantin/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Buenos Aires (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Amerika/Arjantin/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Amerika/Arjantin/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Amerika/Arjantin/Kordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Amerika/Arjantin/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Jujuy (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Amerika//Arjantin/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Amerika/Arjantin/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Amerika/Arjantin/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "Amerika/Arjantin/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Amerika/Arjantin/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "San Juan (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "Amerika/Arjantin/San_Luis" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "San Luis (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Amerika/Arjantin/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Amerika/Arjantin/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "Amerika/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "Amerika/Asuncion" #: timezones.h:110 msgid "America/Atikokan" msgstr "Amerika/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "Amerika/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "Amerika/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "Amerika/Bahia_Banderas" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "Amerika/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "Amerika/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "Amerika/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "Amerika/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Amerika/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "Amerika/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "Amerika/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Amerika/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Amerika/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "Amerika/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "Amerika/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "Amerika/Karakas" #: timezones.h:146 msgid "America/Catamarca" msgstr "Amerika/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "Amerika/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "Amerika/Kayman" #: timezones.h:149 msgid "America/Chicago" msgstr "Amerika/Şikago" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "ABD/Merkez" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Amerika/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "Amerika/Coral_Limanı" #: timezones.h:156 msgid "America/Cordoba" msgstr "Amerika/Kordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Amerika/Kosta_Rika" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Amerika/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "Amerika/Kurakao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Amerika/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "Amerika/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "Pasifik Zamanı - Kuzey Yukon" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Amerika/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "Amerika/Denver" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "ABD/Mountain" #: timezones.h:174 msgid "America/Detroit" msgstr "Amerika/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "Amerika/Dominik" #: timezones.h:178 msgid "America/Edmonton" msgstr "Amerika/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "America/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Amerika/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "Amerika/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Amerika/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Amerika/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Amerika/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "Amerika/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 #: timezones.h:364 #: timezones.h:453 #: timezones.h:591 #: timezones.h:754 #: timezones.h:852 #: timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Amerika/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Amerika/Türk_Adaları" #: timezones.h:200 msgid "America/Grenada" msgstr "Amerika/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Amerika/Guadalup" #: timezones.h:202 msgid "America/Guatemala" msgstr "Amerika/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Amerika/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 #: timezones.h:757 #: timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "Amerika/Guyana" #: timezones.h:207 msgid "America/Halifax" msgstr "Amerika/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "Amerika/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Amerika/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Amerika/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Amerika/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Amerika/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "Amerika/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Amerika/Indianapolis" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "Amerika/Indiana/Tell_City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "Amerika/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "Amerika/Indiana/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "Amerika/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Amerika/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "Amerika/Jameika" #: timezones.h:246 msgid "America/Jujuy" msgstr "Amerika/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "Amerika/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Amerika/Kentucy/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "Doğu Zamanı - Kentucky - Louisville bƶlgesi" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Amerika/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Amerika/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "Amerika/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "Amerika/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Amerika/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "Pasifik Zamanı" #: timezones.h:262 msgid "America/Louisville" msgstr "Amerika/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "Amerika/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "Amerika/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "Amerika/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 msgid "America/Marigot" msgstr "Amerika/Marigot" #: timezones.h:271 msgid "America/Martinique" msgstr "Amerika/Martinik" #: timezones.h:272 msgid "America/Matamoros" msgstr "Amerika/Matamoros" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Amerika/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "Amerika/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "Amerika/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "Amerika/Mendoza" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Amerika/Meksiko" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "Amerika/Miquelon" #: timezones.h:289 msgid "America/Moncton" msgstr "Amerika/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "Amerika/Montserrat" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "Amerika/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "Amerika/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "Amerika/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "Amerika/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "Amerika/New_York" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "Doğu Zamanı" #: timezones.h:304 msgid "America/Nipigon" msgstr "Amerika/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "Amerika/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "Amerika/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "Atlantik adaları" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Amerika/Kuzey_Dakota/Merkez" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "Amerika/Kuzey_Dakota/New_salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 msgid "America/Ojinaga" msgstr "Amerika/Ojinaga" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "Amerika/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Amerika/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Amerika/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "Amerika/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Amerika/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Amerika/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Amerika/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Amerika/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Amerika/Porto_Riko" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Amerika/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Amerika/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "America/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "Amerika/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 msgid "America/Resolute" msgstr "Amerika/Resolute" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Amerika/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "Amerika/Rosario" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "Amerika/Santa_Isabel" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 msgid "America/Santarem" msgstr "Amerika/Santarem" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "Amerika/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Amerika/Santo_Dominyo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Amerika/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Amerika/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "Amerika/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "Amerika/St_Barthelemy" #: timezones.h:376 msgid "America/St_Johns" msgstr "Amerika/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Amerika/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Amerika/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Amerika/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Amerika/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Amerika/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Amerika/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "Amerika/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Amerika/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "Amerika/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "Amerika/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "Amerika/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "Amerika/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "Amerika/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Amerika/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Amerika/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "Amerika/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Amerika/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Antartika/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Antartika/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Antartika/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "Antartika/Macquarie" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Antartika/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Antartika/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Antartika/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Antartika/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antartika/Güney_Kutbu" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Antartika/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Antartika/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Arctic/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Asya/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Asya/Almaata" #: timezones.h:454 msgid "Asia/Amman" msgstr "Asya/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Asya/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "Moskova+08 - Bering Denizi" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Asya/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Asya/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Asya/Aşkabad" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Asya/Aşkabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Asya/Bağdat" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Asya/Bahreyn" #: timezones.h:468 msgid "Asia/Baku" msgstr "Asya/Bakü" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Asya/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Asya/Beyrut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Asya/Bişkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Asya/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Asya/Kalküta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Asya/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Asya/Chngqking" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "Asya/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Asya/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Asya/Dakka" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Asya/Şam" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Asya/Daka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Asya/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Asya/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Asya/Duşanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Asya/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Asya/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "Asya/Ho_Chi_Minh" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Asya/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Asya/Aden" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Asya/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "Moskova+05 - Baykal Gƶlü" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Asya/İstanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Asya/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Asya/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Asya/Kudüs" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Asya/Kabil" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Asya/KamƧatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "Moskova+08 - Kamchatka" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Asya/KaraƧi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Asya/Kaşgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "batı Tibet & Xinjiang" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "Asya/Katmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Asya/Katmandu" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "Asya/Kalküta" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Asya/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "Moskova+04 - Yenisey Nehri" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Asya/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Asya/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Asya/Kuveyt" #: timezones.h:529 msgid "Asia/Macao" msgstr "Asya/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Asya/Macau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Asya/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "Moskova+08 - Magadan" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Asya/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "Asya/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Asya/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Asya/Lefkoşa" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "Asya/Novokuznetsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "Moskova+03 - Novokuznetsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Asya/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "Moskova+03 - Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Asya/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "Moskova+03 - batı Sibirya" #: timezones.h:549 msgid "Asia/Oral" msgstr "Asya/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "Batı Kazakistan" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Asya/Pnom_Pen" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Asya/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Asya/Piongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Asya/Katar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Asya/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Asya/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Asya/Riyad" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Asya/Riyad87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Asya/Riyad88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Asya/Riyad89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Asya/Saygon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Asya/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "Moskova+07 - Sakhalin Adası" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Asya/Semerkant" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Asya/Seul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Asya/Şanghay" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "Asya/Singapur" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Asya/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Asya/Taşkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "doğu Ɩzbekistan" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Asya/Tiflis" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Asya/Tahran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Asya/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Asya/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Asya/Thimbu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Asya/Tokyo" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Asya/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Asya/Ulan_Bator" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Asya/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Asya/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Asya/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Asya/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "Moskova+07 - Amur Nehri" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Asya/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "Moskova+06 - Lena Nehri" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Asya/Yekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "Moskova+02 - Urallar" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Asya/Erivan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlantik/Azorlar" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlantik/Bermuda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlantik/Kanarya" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlantik/Cape_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlantik/Faroe" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "Atlantik/Faroe" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlantik/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlantik/Madeyra" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlantik/Reykjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlantik/Güney_Georgia" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlantik/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlantik/St_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "Avustralya/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Avustralya/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "Güney Avustralya" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Avustralya/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Avustralya/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Avustralya/Canberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "Avustralya/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Avustralya/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 msgid "Australia/Eucla" msgstr "Avustralya/Eucla" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "Batı Avustralya - Eucla bƶlgesi" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Avustralya/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "Avustralya/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Avustralya/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Avustralya/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Avustralya/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "Viktoria" #: timezones.h:658 msgid "Australia/North" msgstr "Avustralya/Kuzey" #: timezones.h:659 msgid "Australia/NSW" msgstr "Avustralya/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "Avustralya/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Avustralya/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "Avustralya/Güney" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Avustralya/Sidney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Avustralya/Tazmanya" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Avustralya/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "Avustralya/Batı" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Avustralya/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brezilya/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brezilya/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brezilya/Doğu" #: timezones.h:675 msgid "Brazil/West" msgstr "Brezilya/Batı" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Kanada/Atlantik" #: timezones.h:677 msgid "Canada/Central" msgstr "Kanada/Orta" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Kanada/Doğu" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Kanada/East-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Kanada/Dağlık" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Kanada/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Kanada/Pasifik" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Kanada/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Kanada/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Şili/Kıta" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Şili/EasterAdaları" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Küba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Mısır" #: timezones.h:692 msgid "Eire" msgstr "Eire" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Evrensel" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Sıfır" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Avrupa/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Avrupa/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Avrupa/Atina" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Avrupa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Avrupa/Belgrat" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Avrupa/Berlin" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Avrupa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Avrupa/Brüksel" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Avrupa/Bükreş" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Avrupa/Budapeşte" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Avrupa/Kişinev" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Avrupa/Kopenhag" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Avrupa/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Avrupa/Cebelitarık" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Avrupa/Guernsey" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Avrupa/Helsinki" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Avrupa/Man_Adası" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Avrupa/İstanbul" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Avrupa/Jersey" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Avrupa/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "Moskova-01 - Kaliningrad" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Avrupa/Kiev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Avrupa/Lizbon" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Avrupa/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Avrupa/Londra" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Avrupa/Lüksemburg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Avrupa/Madrit" #: timezones.h:764 msgid "Europe/Malta" msgstr "Avrupa/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Avrupa/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Avrupa/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Avrupa/Monako" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Avrupa/Moskova" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "Moskova+00 - batı Rusya" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Avrupa/Lefkoşa" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Avrupa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Avrupa/Paris" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Avrupa/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Avrupa/Prag" #: timezones.h:776 msgid "Europe/Riga" msgstr "Avrupa/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Avrupa/Roma" #: timezones.h:778 msgid "Europe/Samara" msgstr "Avrupa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "Moskova - Samara, Udmurtia" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Avrupa/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Avrupa/Saray_Bosna" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Avrupa/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Avrupa/Üsküp" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Avrupa/Sofya" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Avrupa/Stokholm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Avrupa/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Avrupa/Tiran" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Avrupa/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Avrupa/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Avrupa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Avrupa/Vatikan" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Avrupa/Viyana" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Avrupa/Vilnius" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Avrupa/Volgograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "Moskova+00 - Hazar Denizi" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Avrupa/Varşova" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Avrupa/Zagrep" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Avrupa/Zaporozya" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Avrupa/Zürih" #: timezones.h:808 msgid "Factory" msgstr "Factory" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "İzlanda" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Hint_Okyanusu/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Hint_Okyanusu/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Hint_Okyanusu/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Hint_Okyanusu/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Hint_Okyanusu/Comoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Hint_Okyanusu/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Hint_Okyanusu/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Hint_Okyanusu/Maldives" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Hint_Okyanusu/Mauritius" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Hint_Okyanusu/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Hint_Okyanusu/Reunion" #: timezones.h:830 msgid "Iran" msgstr "İran" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "İsrail" #: timezones.h:833 msgid "Jamaica" msgstr "Jameika" #: timezones.h:834 msgid "Japan" msgstr "Japonya" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 #: timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libya" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Meksika/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Meksika/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Meksika/Genel" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "OrtaDoğu/Riyad87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "OrtaDoğu/Riyad88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "OrtaDoğu/Riyad89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Pasifik/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Pasifik/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Pasifik/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 #, fuzzy msgid "Chatham Islands" msgstr "Şili/EasterAdaları" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "Pasifik/Chuuk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 msgid "Pacific/Easter" msgstr "Pasifik/Easter" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Pasifik/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Pasifik/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Pasifik/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Pasifik/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Pasifik/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Pasifik/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "Galapagos Adaları" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Pasifik/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Pasifik/Guadalkanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Pasifik/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Pasifik/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "Hawaii" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Pasifik/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Pasifik/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Pasifik/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "Kosrae" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Pasifik/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Pasifik/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Pasifik/Markiz" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Pasifik/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Pasifik/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Pasifik/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Pasifik/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Pasifik/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Pasifik/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Pasifik/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Pasifik/Pitcairn" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "Pasifik/Pohnpei" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "Pohnpei (Ponape)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Pasifik/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Pasifik/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Pasifik/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Pasifik/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Pasifik/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Pasifik/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Pasifik/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 #, fuzzy msgid "Gilbert Islands" msgstr "Şili/EasterAdaları" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Pasifik/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Pasifik/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Pasifik/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Pasifik/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Pasifik/Yap" #: timezones.h:929 msgid "Poland" msgstr "Polonya" #: timezones.h:930 msgid "Portugal" msgstr "Portekiz" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapur" #: timezones.h:937 msgid "Turkey" msgstr "Türkiye" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Evrensel" #: timezones.h:940 msgid "US/Alaska" msgstr "ABD/Alaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "ABD/Aleutian" #: timezones.h:942 msgid "US/Arizona" msgstr "ABD/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "ABD/Merkez" #: timezones.h:944 msgid "US/Eastern" msgstr "ABD/Doğu" #: timezones.h:945 msgid "US/East-Indiana" msgstr "ABD/East-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "ABD/Hawaii" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "ABD/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "ABD/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "ABD/Mountain" #: timezones.h:950 msgid "US/Pacific" msgstr "ABD/Pasifik" #: timezones.h:951 msgid "US/Samoa" msgstr "ABD/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" #~ msgid "US/Pacific-New" #~ msgstr "ABD/Pasifik-Yeni" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/de.po0000664000175000017500000020227514632072346023657 0ustar fabiofabio# translation of system-config-date.master-timezones.po to # translation of system-config-date.master-timezones.de.po to # Ferman translation of system-config-date.timezones # Copyright (C) 2004 Red Hat, Inc. # This file is distributed under the same license as the system-config-date package. # # # Automatically generated, 2004. # Jens Maucher , 2009. # Nils Philippsen , 2009, 2010. # Fabian Affolter , 2008, 2009. # Hedda Peters , 2009. # sknirT omiT , 2010. msgid "" msgstr "" "Project-Id-Version: system-config-date.master-timezones\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-08-16 14:09+0100\n" "Last-Translator: Nils Philippsen \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-Language: German\n" "X-Generator: vim\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Afrika/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Afrika/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Afrika/Addis_Abeba" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Afrika/Algier" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Afrika/Asmera" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Afrika/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Afrika/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Afrika/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Afrika/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Afrika/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Afrika/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Afrika/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Afrika/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Afrika/Kairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Afrika/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Afrika/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Ceuta & Melilla" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Afrika/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Afrika/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Afrika/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Afrika/Dschibuti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Afrika/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Afrika/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Afrika/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Afrika/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Afrika/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Afrika/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Afrika/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Afrika/Khartum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Afrika/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Afrika/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "Westl. Dem. Rep. Kongo" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Afrika/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Afrika/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Afrika/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Afrika/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Afrika/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "Ɩstl. Dem. Rep. Kongo" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Afrika/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Afrika/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Afrika/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Afrika/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Afrika/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Afrika/Mogadischu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Afrika/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Afrika/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Afrika/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Afrika/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Afrika/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Afrika/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Afrika/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Afrika/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Afrika/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Afrika/Tripolis" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Afrika/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Afrika/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "Amerika/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "Aleuten Inseln" #: timezones.h:63 msgid "America/Anchorage" msgstr "Amerika/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "Alaska-Zeit" #: timezones.h:66 msgid "America/Anguilla" msgstr "Amerika/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "Amerika/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "Amerika/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Tocantins" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Amerika/Argentinien/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Buenos Aires (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Amerika/Argentinien/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "Catamarca (CT), Chubut (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Amerika/Argentinien/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Amerika/Argentinien/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "fast alle Orte (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Amerika/Argentinien/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Jujuy (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Amerika/Argentinien/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "La Rioja (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Amerika/Argentinien/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "Mendoza (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Amerika/Argentinien/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Santa Cruz (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "Amerika/Argentinien/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Amerika/Argentinien/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "San Juan (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "Amerika/Argentinien/San_Luis" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "San Luis (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Amerika/Argentinien/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Tucuman (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Amerika/Argentinien/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Feuerland (Tierra del Fuego, TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "Amerika/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "Amerika/Asuncion" #: timezones.h:110 msgid "America/Atikokan" msgstr "Amerika/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "Eastern Standard Time - Atikokan, Ontario und Southampton Insel, Nunavut" #: timezones.h:113 msgid "America/Atka" msgstr "Amerika/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "Amerika/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "Bahia" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "Amerika/Bahia_Banderas" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "Mexican Central Time - Bahia de Banderas" #: timezones.h:120 msgid "America/Barbados" msgstr "Amerika/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "Amerika/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "Amapa, E Para" #: timezones.h:124 msgid "America/Belize" msgstr "Amerika/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "Amerika/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "Atlantic Standard Time - Quebec - Untere Nordküste" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Amerika/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "Roraima" #: timezones.h:131 msgid "America/Bogota" msgstr "Amerika/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "Amerika/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "Mountain Time - Süd-Idaho & Ost-Oregon" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Amerika/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Amerika/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "Mountain Time - West-Nunavut" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "Amerika/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "Mato Grosso do Sul" #: timezones.h:142 msgid "America/Cancun" msgstr "Amerika/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "Central Time - Quintana Roo" #: timezones.h:145 msgid "America/Caracas" msgstr "Amerika/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "Amerika/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "Amerika/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "Amerika/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "Amerika/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "Central Time" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Amerika/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "Mexican Mountain Time - Chihuahua fern der US-Grenze" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "Amerika/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "Amerika/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Amerika/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Amerika/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "Mato Grosso" #: timezones.h:161 msgid "America/Curacao" msgstr "Amerika/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Amerika/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "Ostküste, im Norden von Scoresbysund" #: timezones.h:165 msgid "America/Dawson" msgstr "Amerika/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "Pacific Time - Nord Yukon" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Amerika/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" #: timezones.h:171 msgid "America/Denver" msgstr "Amerika/Denver" # #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "Mountain Time" #: timezones.h:174 msgid "America/Detroit" msgstr "Amerika/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "Eastern Time - Michigan - fast alle Orte" #: timezones.h:177 msgid "America/Dominica" msgstr "Amerika/Dominica" # #: timezones.h:178 msgid "America/Edmonton" msgstr "Amerika/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "Mountain Time - Alberta, ƶstl. British-Columbia & westl. Saskatchewan" # #: timezones.h:181 msgid "America/Eirunepe" msgstr "Amerika/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "Westl. Amazonas" # #: timezones.h:184 msgid "America/El_Salvador" msgstr "Amerika/El_Salvador" # #: timezones.h:185 msgid "America/Ensenada" msgstr "Amerika/Ensenada" # #: timezones.h:186 msgid "America/Fortaleza" msgstr "Amerika/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "Nordƶstl. Brasilien (MA, PI, CE, RN, PB)" # #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Amerika/Fort_Wayne" # #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Amerika/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "Atlantic Time - Nova Scotia - Orte, die der DST (Sommerzeit) 1966-1971 nicht folgten" # #: timezones.h:193 msgid "America/Godthab" msgstr "Amerika/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 #: timezones.h:364 #: timezones.h:453 #: timezones.h:591 #: timezones.h:754 #: timezones.h:852 #: timezones.h:894 msgid "most locations" msgstr "fast alle Orte" # #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Amerika/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "Atlantic Time - Labrador - fast alle Orte" # #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Amerika/Grand_Turk" # #: timezones.h:200 msgid "America/Grenada" msgstr "Amerika/Grenada" # #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Amerika/Guadeloupe" # #: timezones.h:202 msgid "America/Guatemala" msgstr "Amerika/Guatemala" # #: timezones.h:203 msgid "America/Guayaquil" msgstr "Amerika/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 #: timezones.h:757 #: timezones.h:763 msgid "mainland" msgstr "Festland" # #: timezones.h:206 msgid "America/Guyana" msgstr "Amerika/Guyana" # #: timezones.h:207 msgid "America/Halifax" msgstr "Amerika/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "Atlantic Time - Nova Scotia (fast alle Orte), PEI" # #: timezones.h:210 msgid "America/Havana" msgstr "Amerika/Havanna" # #: timezones.h:211 msgid "America/Hermosillo" msgstr "Amerika/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "Mountain Standard Time - Sonora" # #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Amerika/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "Eastern Time - Indiana - fast alle Orte" # #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Amerika/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "Central Time - Indiana - Starke County" # #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Amerika/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "Eastern Time - Indiana - Crawford County" # #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "Amerika/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "Eastern Time - Indiana - Pike County" # #: timezones.h:226 msgid "America/Indianapolis" msgstr "Amerika/Indianapolis" # #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "Amerika/Indiana/Tell_City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "Central Time - Indiana - Perry County" # #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "Eastern Time - Indiana - Switzerland County" # #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "Amerika/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" # #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "Amerika/Indiana/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "Eastern Time - Indiana - Pulaski County" # #: timezones.h:239 msgid "America/Inuvik" msgstr "Amerika/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "Mountain Time - westliche Northwest Territories" # #: timezones.h:242 msgid "America/Iqaluit" msgstr "Amerika/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "Eastern Time - Ost-Nunavut - fast alle Orte" # #: timezones.h:245 msgid "America/Jamaica" msgstr "Amerika/Jamaika" # #: timezones.h:246 msgid "America/Jujuy" msgstr "Amerika/Jujuy" # #: timezones.h:247 msgid "America/Juneau" msgstr "Amerika/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "Alaska Time - Alaska Panhandle" # #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Amerika/Kentucky/Louisville" # #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "Amerika/Kentucky/Louisville" # #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Amerika/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "Eastern Time - Kentucky - Wayne County" # #: timezones.h:256 msgid "America/Knox_IN" msgstr "Amerika/Knox_IN" # #: timezones.h:257 msgid "America/La_Paz" msgstr "Amerika/La_Paz" # #: timezones.h:258 msgid "America/Lima" msgstr "Amerika/Lima" # #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Amerika/Los_Angeles" # #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "Pacific Time" # #: timezones.h:262 msgid "America/Louisville" msgstr "Amerika/Louisville" # #: timezones.h:263 msgid "America/Maceio" msgstr "Amerika/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "Alagoas" # #: timezones.h:266 msgid "America/Managua" msgstr "Amerika/Managua" # #: timezones.h:267 msgid "America/Manaus" msgstr "Amerika/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "Ɩstl. Amazonas" # #: timezones.h:270 msgid "America/Marigot" msgstr "Amerika/Marigot" # #: timezones.h:271 msgid "America/Martinique" msgstr "Amerika/Martinique" # #: timezones.h:272 msgid "America/Matamoros" msgstr "Amerika/Matamoros" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas nahe der US-Grenze" # #: timezones.h:275 msgid "America/Mazatlan" msgstr "Amerika/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "Mountain Time - Südl. Baja, Nayarit, Sinaloa" # #: timezones.h:278 msgid "America/Mendoza" msgstr "Amerika/Mendoza" # #: timezones.h:279 msgid "America/Menominee" msgstr "Amerika/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" # #: timezones.h:282 msgid "America/Merida" msgstr "Amerika/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "Central Time - Campeche, Yucatan" # #: timezones.h:285 msgid "America/Mexico_City" msgstr "Amerika/Mexiko_Stadt" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "Central Time - fast alle Orte" # #: timezones.h:288 msgid "America/Miquelon" msgstr "Amerika/Miquelon" # #: timezones.h:289 msgid "America/Moncton" msgstr "Amerika/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "Atlantic Time - New Brunswick" # #: timezones.h:292 msgid "America/Monterrey" msgstr "Amerika/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from US border" msgstr "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas fern der US-Grenze" # #: timezones.h:295 msgid "America/Montevideo" msgstr "Amerika/Montevideo" # #: timezones.h:296 msgid "America/Montreal" msgstr "Amerika/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "Eastern Time - Quebec - fast alle Orte" # #: timezones.h:299 msgid "America/Montserrat" msgstr "Amerika/Montserrat" # #: timezones.h:300 msgid "America/Nassau" msgstr "Amerika/Nassau" # #: timezones.h:301 msgid "America/New_York" msgstr "Amerika/New_York" # #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "Eastern Time" # #: timezones.h:304 msgid "America/Nipigon" msgstr "Amerika/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "Eastern Time - Ontario & Quebec - Orte, die der DST (Sommerzeit) 1967-1973 nicht folgten" # #: timezones.h:307 msgid "America/Nome" msgstr "Amerika/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "Alaska Time - West-Alaska" # #: timezones.h:310 msgid "America/Noronha" msgstr "Amerika/Noronha" # #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "Atlantische Inseln" # #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Amerika/North_Dakota/Zentrum" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "Central Time - North Dakota - Oliver County" # #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "Amerika/North_Dakota/New_Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "Central Time - North Dakota - Morton County (außer Mandan-Region)" # #: timezones.h:319 msgid "America/Ojinaga" msgstr "Amerika/Ojinaga" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "US Mountain Time - Chihuahua nahe der US-Grenze" # #: timezones.h:322 msgid "America/Panama" msgstr "Amerika/Panama" # #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Amerika/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "Eastern Time - Pangnirtung, Nunavut" # #: timezones.h:326 msgid "America/Paramaribo" msgstr "Amerika/Paramaribo" # #: timezones.h:327 msgid "America/Phoenix" msgstr "Amerika/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "Mountain Standard Time - Arizona" # #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Amerika/Port-au-Prince" # #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Amerika/Porto_Acre" # #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Amerika/Port_of_Spain" # #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Amerika/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "Rondonia" # #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Amerika/Puerto_Rico" # #: timezones.h:337 msgid "America/Rainy_River" msgstr "Amerika/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "Central Time - Rainy River & Fort Frances, Ontario" # #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Amerika/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "Central Time - Zentral-Nunavut" # #: timezones.h:343 msgid "America/Recife" msgstr "Amerika/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "Pernambuco" # #: timezones.h:346 msgid "America/Regina" msgstr "Amerika/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "Central Standard Time - Saskatchewan - fast alle Orte" #: timezones.h:349 msgid "America/Resolute" msgstr "Amerika/Resolute" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "Eastern Standard Time - Resolute, Nunavut" # #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Amerika/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "Acre" # #: timezones.h:355 msgid "America/Rosario" msgstr "Amerika/Rosario" # #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "Amerika/Santa_Isabel" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "Mexican Pacific Time - Baja California fern der US-Grenze" # #: timezones.h:359 msgid "America/Santarem" msgstr "Amerika/Santarem" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "Westl. Para" # #: timezones.h:362 msgid "America/Santiago" msgstr "Amerika/Santiago" # #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Amerika/Santo_Domingo" # #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Amerika/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "Südl. & Südƶstl. Brasilien (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" # #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Amerika/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Scoresbysund / Ittoqqortoormiit" # #: timezones.h:372 msgid "America/Shiprock" msgstr "Amerika/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "Mountain Time - Navajo" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "Amerika/St_Barthelemy" # #: timezones.h:376 msgid "America/St_Johns" msgstr "Amerika/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "Newfoundland Time, einschließlich südƶstl. Labrador" # #: timezones.h:379 msgid "America/St_Kitts" msgstr "Amerika/St_Kitts" # #: timezones.h:380 msgid "America/St_Lucia" msgstr "Amerika/St_Lucia" # #: timezones.h:381 msgid "America/St_Thomas" msgstr "Amerika/St_Thomas" # #: timezones.h:382 msgid "America/St_Vincent" msgstr "Amerika/St_Vincent" # #: timezones.h:383 msgid "America/Swift_Current" msgstr "Amerika/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "Central Standard Time - Saskatchewan - Mittlerer Westen" # #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Amerika/Tegucigalpa" # #: timezones.h:387 msgid "America/Thule" msgstr "Amerika/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "Thule / Pituffik" # #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Amerika/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "Eastern Time - Thunder Bay, Ontario" # #: timezones.h:393 msgid "America/Tijuana" msgstr "Amerika/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "US Pacific Time - Baja California nahe der US-Grenze" # #: timezones.h:396 msgid "America/Toronto" msgstr "Amerika/Tortola" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "Eastern Time - Ontario - fast alle Orte" # #: timezones.h:399 msgid "America/Tortola" msgstr "Amerika/Tortola" # #: timezones.h:400 msgid "America/Vancouver" msgstr "Amerika/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "Pacific Time - Westliches British Columbia" # #: timezones.h:403 msgid "America/Virgin" msgstr "Amerika/Virgin" # #: timezones.h:404 msgid "America/Whitehorse" msgstr "Amerika/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "Pacific Time - Süd-Yukon" # #: timezones.h:407 msgid "America/Winnipeg" msgstr "Amerika/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "Central Time - Manitoba & West-Ontario" # #: timezones.h:410 msgid "America/Yakutat" msgstr "Amerika/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "Alaska Time - Alaska Panhandle" # #: timezones.h:413 msgid "America/Yellowknife" msgstr "Amerika/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "Mountain Time - zentrale Northwest Territories" # #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Antarktis/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "Casey Station, Bailey Peninsula" # #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Antarktis/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "Davis Station, Vestfold Hills" # #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Antarktis/Dumont d'Urville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Dumont-d'Urville Station, Terre Adelie" # #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "Antarktis/Macquarie" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "Macquarie-Insel Station, Macquarie-Insel" # #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Antarktis/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "Mawson Station, Holme Bay" # #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Antarktis/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "McMurdo Station, Ross Island" # #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Antarktis/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "Palmer Station, Anvers Island" # #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Antarktis/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "Rothera Station, Adelaide Island" # #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antarktis/Südpol" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "Amundsen-Scott Station, South Pole" # #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Antarktis/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "Syowa Station, ƶstl. Ongul Insel" # #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Antarktis/Wostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "Vostok Station, magnetischer Südpol" # #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Arktis/Longyearbyen" # #: timezones.h:450 msgid "Asia/Aden" msgstr "Asien/Aden" # #: timezones.h:451 msgid "Asia/Almaty" msgstr "Asien/Almaty" # #: timezones.h:454 msgid "Asia/Amman" msgstr "Asien/Amman" # #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Asien/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "Moskau+08 - Beringsee" # #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Asien/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" # #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Asien/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "Aqtobe (Aktobe)" # #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Asien/Ashgabat" # #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Asien/Ashkhabad" # #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Asien/Bagdad" # #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Asien/Bahrain" # #: timezones.h:468 msgid "Asia/Baku" msgstr "Asien/Baku" # #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Asien/Bangkok" # #: timezones.h:470 msgid "Asia/Beirut" msgstr "Asien/Beirut" # #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Asien/Bishkek" # #: timezones.h:472 msgid "Asia/Brunei" msgstr "Asien/Brunei" # #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Asien/Kalkutta" # #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Asien/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "Dornod, Sukhbaatar" # #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Asien/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "Zentral-China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, usw." # #: timezones.h:480 msgid "Asia/Chungking" msgstr "Asien/Chungking" # #: timezones.h:481 msgid "Asia/Colombo" msgstr "Asien/Colombo" # #: timezones.h:482 msgid "Asia/Dacca" msgstr "Asien/Dacca" # #: timezones.h:483 msgid "Asia/Damascus" msgstr "Asien/Damaskus" # #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Asien/Dhaka" # #: timezones.h:485 msgid "Asia/Dili" msgstr "Asien/Dili" # #: timezones.h:486 msgid "Asia/Dubai" msgstr "Asien/Dubai" # #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Asien/Duschanbe" # #: timezones.h:488 msgid "Asia/Gaza" msgstr "Asien/Gaza" # #: timezones.h:489 msgid "Asia/Harbin" msgstr "Asien/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Heilongjiang (außer Mohe), Jilin" # #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "Asien/Ho_Chi_Minh_Stadt" # #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Asien/Hong_Kong" # #: timezones.h:494 msgid "Asia/Hovd" msgstr "Asien/Chowd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Bajan-Ɩlgii, Gobi-Altai, Chowd, Uws, Zawchan" # #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Asien/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "Moskau+05 - Baikal-See" # #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Asien/Istanbul" # #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Asien/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "Java & Sumatra" # #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Asien/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "Irian Jaya & die Molukken" # #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Asien/Jerusalem" # #: timezones.h:508 msgid "Asia/Kabul" msgstr "Asien/Kabul" # #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Asien/Kamtschatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "Moskau+08 - Kamtschatka" # #: timezones.h:512 msgid "Asia/Karachi" msgstr "Asien/Karachi" # #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Asien/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "West-Tibet & Xinjiang" # #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "Asien/Kathmandu" # #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Asien/Katmandu" # #: timezones.h:518 msgid "Asia/Kolkata" msgstr "Asien/Kalkutta" # #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Asien/Krasnojarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "Moskau+04 - Jenissei Fluss" # #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Asien/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "Halbinsel Malaysia" # #: timezones.h:525 msgid "Asia/Kuching" msgstr "Asien/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "Sabah & Sarawak" # #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Asien/Kuwait" # #: timezones.h:529 msgid "Asia/Macao" msgstr "Asien/Macao" # #: timezones.h:530 msgid "Asia/Macau" msgstr "Asien/Macau" # #: timezones.h:531 msgid "Asia/Magadan" msgstr "Asien/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "Moskau+08 - Magadan" # #: timezones.h:534 msgid "Asia/Makassar" msgstr "Asien/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "Ost- & Süd-Borneo, Sulawesi, Bali, Kleine Sunda-Inseln, West-Timor" # #: timezones.h:537 msgid "Asia/Manila" msgstr "Asien/Manila" # #: timezones.h:538 msgid "Asia/Muscat" msgstr "Asien/Maskat" # #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Asien/Nikosia" # #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "Asien/Nowokusnezk" # #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "Moskau+03 - Nowokusnezk" # #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Asien/Nowosibirsk" # #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "Moskau+03 - Nowosibirsk" # #: timezones.h:546 msgid "Asia/Omsk" msgstr "Asien/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "Moskau+03 - Westl. Sibirien" # #: timezones.h:549 msgid "Asia/Oral" msgstr "Asien/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "Westl. Kasachstan" # #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Asien/Phnom_Penh" # #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Asien/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "West- & Zentral-Borneo" # #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Asien/Pjƶngjang" # #: timezones.h:557 msgid "Asia/Qatar" msgstr "Asien/Katar" # #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Asien/Qysylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "Qysylorda (Kysyl-Orda, Ksyl-Orda)" # #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Asien/Rangun" # #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Asien/Riad" # #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Asien/Riad87" # #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Asien/Riad88" # #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Asien/Riad89" # #: timezones.h:566 msgid "Asia/Saigon" msgstr "Asien/Saigon" # #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Asien/Sachalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "Moskau+07 - Sachalin Inseln" # #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Asien/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "Westliches Usbekistan" # #: timezones.h:573 msgid "Asia/Seoul" msgstr "Asien/Seoul" # #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Asien/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "Ɩstl. China - Peking, Guangdong, Shanghai, etc." # #: timezones.h:577 msgid "Asia/Singapore" msgstr "Asien/Singapur" # #: timezones.h:578 msgid "Asia/Taipei" msgstr "Asien/Taipei" # #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Asien/Taschkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "Ɩstl. Usbekistan" # #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Asien/Tiflis" # #: timezones.h:583 msgid "Asia/Tehran" msgstr "Asien/Teheran" # #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Asien/Tel_Aviv" # #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Asien/Thimbu" # #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Asien/Thimphu" # #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Asien/Tokio" # #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Asien/Ujung_Pandang" # #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Asien/Ulaanbaatar" # #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Asien/Ulan_Bator" # #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Asien/Ürümqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "Große Teile von Tibet & Xinjiang" # #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Asien/Vientiane" # #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Asien/Wladiwostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "Moskau+07 - Amur Fluss" # #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Asien/Jakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "Moskau+06 - Lena Fluss" # #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Asien/Jekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "Moskau+02 - Ural" # #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Asien/Eriwan" # #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlantik/Azoren" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "Azoren" # #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlantik/Bermuda" # #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlantik/Kanaren" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "Kanarische Inseln" # #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlantik/Kap_Verde" # #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlantik/FƤrƶer" # #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "Atlantik/FƤrƶer" # #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlantik/Jan_Mayen" # #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlantik/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "Madeira Inseln" # #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlantik/Reykjavik" # #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlantik/Südgeorgien" # #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlantik/Stanley" # #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlantik/St._Helena" # #: timezones.h:625 msgid "Australia/ACT" msgstr "Australien/ACT" # #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Australien/Adelaide" # #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "Südaustralien" # #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Australien/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "Queensland - fast alle Orte" # #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Australien/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "Neusüdwales - Yancowinna" # #: timezones.h:635 msgid "Australia/Canberra" msgstr "Australien/Canberra" # #: timezones.h:636 msgid "Australia/Currie" msgstr "Australien/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "Tasmanien - King Island" # #: timezones.h:639 msgid "Australia/Darwin" msgstr "Australien/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "Nordterritorium" # #: timezones.h:642 msgid "Australia/Eucla" msgstr "Australien/Eucla" # #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "Westaustralien - Eucla-Gebiet" # #: timezones.h:645 msgid "Australia/Hobart" msgstr "Australien/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "Tasmanien - fast alle Orte" # #: timezones.h:648 msgid "Australia/LHI" msgstr "Australien/LHI" # #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Australien/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "Queensland - Holiday Islands" # #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Australien/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "Lord-Howe-Insel" # #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Australien/Melbourne" # #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "Viktoria" # #: timezones.h:658 msgid "Australia/North" msgstr "Australien/Nord" # #: timezones.h:659 msgid "Australia/NSW" msgstr "Australien/NSW" # #: timezones.h:660 msgid "Australia/Perth" msgstr "Australien/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "Westaustralien - fast alle Orte" # #: timezones.h:663 msgid "Australia/Queensland" msgstr "Australien/Queensland" # #: timezones.h:664 msgid "Australia/South" msgstr "Australien/Süd" # #: timezones.h:665 msgid "Australia/Sydney" msgstr "Australien/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "Neusüdwales - fast alle Orte" # #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Australien/Tasmanien" # #: timezones.h:669 msgid "Australia/Victoria" msgstr "Australien/Viktoria" # #: timezones.h:670 msgid "Australia/West" msgstr "Australien/West" # #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Australien/Yancowinna" # #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brasilien/Acre" # #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brasilien/DeNoronha" # #: timezones.h:674 msgid "Brazil/East" msgstr "Brasilien/Ost" # #: timezones.h:675 msgid "Brazil/West" msgstr "Brasilien/West" # #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Kanada/Atlantik" # #: timezones.h:677 msgid "Canada/Central" msgstr "Kanada/Zentral" # #: timezones.h:678 msgid "Canada/Eastern" msgstr "Kanada/Ost" # #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Kanada/Ost-Saskatchewan" # #: timezones.h:680 msgid "Canada/Mountain" msgstr "Kanada/Mountain" # #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Kanada/Neufundland" # #: timezones.h:682 msgid "Canada/Pacific" msgstr "Kanada/Pazifik" # #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Kanada/Saskatchewan" # #: timezones.h:684 msgid "Canada/Yukon" msgstr "Kanada/Yukon" # #: timezones.h:685 msgid "CET" msgstr "CET" # #: timezones.h:686 msgid "Chile/Continental" msgstr "Chile/Kontinental" # #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chile/Osterinsel" # #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Kuba" # #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Ƅgypten" #: timezones.h:692 msgid "Eire" msgstr "Irland" # #: timezones.h:693 msgid "EST" msgstr "EST" # #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" # #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" # #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" # #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" # #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" # #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" # #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" # #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" # #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" # #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" # #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" # #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" # #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" # #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" # #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" # #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" # #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" # #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" # #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" # #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" # #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" # #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" # #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" # #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" # #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" # #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" # #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" # #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" # #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" # #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" # #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" # #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" # #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" # #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" # #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" # #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" # #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Europa/Amsterdam" # #: timezones.h:731 msgid "Europe/Andorra" msgstr "Europa/Andorra" # #: timezones.h:732 msgid "Europe/Athens" msgstr "Europa/Athen" # #: timezones.h:733 msgid "Europe/Belfast" msgstr "Europa/Belfast" # #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Europa/Belgrad" # #: timezones.h:735 msgid "Europe/Berlin" msgstr "Europa/Berlin" # #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Europa/Bratislava" # #: timezones.h:737 msgid "Europe/Brussels" msgstr "Europa/Brüssel" # #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Europa/Bukarest" # #: timezones.h:739 msgid "Europe/Budapest" msgstr "Europa/Budapest" # #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Europa/Chişinău" # #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Europa/Kopenhagen" # #: timezones.h:742 msgid "Europe/Dublin" msgstr "Europa/Dublin" # #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Europa/Gibraltar" # #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Europa/Guernsey" # #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Europa/Helsinki" # #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Europa/Isle_of_Man" # #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Europa/Istanbul" # #: timezones.h:748 msgid "Europe/Jersey" msgstr "Europa/Jersey" # #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Europa/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "Moskau-01 - Kaliningrad" # #: timezones.h:752 msgid "Europe/Kiev" msgstr "Europa/Kiew" # #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Europa/Lissabon" # #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Europa/Ljubljana" # #: timezones.h:759 msgid "Europe/London" msgstr "Europa/London" # #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Europa/Luxemburg" # #: timezones.h:761 msgid "Europe/Madrid" msgstr "Europa/Madrid" # #: timezones.h:764 msgid "Europe/Malta" msgstr "Europa/Malta" # #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Europa/Mariehamn" # #: timezones.h:766 msgid "Europe/Minsk" msgstr "Europa/Minsk" # #: timezones.h:767 msgid "Europe/Monaco" msgstr "Europa/Monaco" # #: timezones.h:768 msgid "Europe/Moscow" msgstr "Europa/Moskau" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "Moskau+00 - Westliches Russland" # #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Europa/Nikosia" # #: timezones.h:772 msgid "Europe/Oslo" msgstr "Europa/Oslo" # #: timezones.h:773 msgid "Europe/Paris" msgstr "Europa/Paris" # #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Europa/Podgorica" # #: timezones.h:775 msgid "Europe/Prague" msgstr "Europa/Prag" # #: timezones.h:776 msgid "Europe/Riga" msgstr "Europa/Riga" # #: timezones.h:777 msgid "Europe/Rome" msgstr "Europa/Rom" # #: timezones.h:778 msgid "Europe/Samara" msgstr "Europa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "Moskau - Samara, Udmurtia" # #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Europa/San_Marino" # #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Europa/Sarajevo" # #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Europa/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "Zentral-Crimea" # #: timezones.h:786 msgid "Europe/Skopje" msgstr "Europa/Skopje" # #: timezones.h:787 msgid "Europe/Sofia" msgstr "Europa/Sofia" # #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Europa/Stockholm" # #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Europa/Tallinn" # #: timezones.h:790 msgid "Europe/Tirane" msgstr "Europa/Tirana" # #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Europa/Tiraspol" # #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Europa/Uschhorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "Ruthenien" # #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Europa/Vaduz" # #: timezones.h:796 msgid "Europe/Vatican" msgstr "Europa/Vatikan" # #: timezones.h:797 msgid "Europe/Vienna" msgstr "Europa/Wien" # #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Europa/Vilnius" # #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Europa/Wolgograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "Moskau+00 - Kaspisches Meer" # #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Europa/Warschau" # #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Europa/Zagreb" # #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Europa/Saporischschja" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Saporoschje, ƶstl. Lugansk / Saporischschja, ƶstl. Luhansk" # #: timezones.h:807 msgid "Europe/Zurich" msgstr "Europa/Zürich" # #: timezones.h:808 msgid "Factory" msgstr "Factory" # #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Irland" # #: timezones.h:811 msgid "GMT" msgstr "GMT" # #: timezones.h:812 msgid "GMT0" msgstr "GMT0" # #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" # #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" # #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" # #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" # #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Island" # #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Indischer Ozean/Antananarivo" # #: timezones.h:820 msgid "Indian/Chagos" msgstr "Indischer Ozean/Chagos" # #: timezones.h:821 msgid "Indian/Christmas" msgstr "Indischer Ozean/Weihnachtsinseln" # #: timezones.h:822 msgid "Indian/Cocos" msgstr "Indischer Ozean/Kokosinseln" # #: timezones.h:823 msgid "Indian/Comoro" msgstr "Indischer Ozean/Komoren" # #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Indischer Ozean/Kerguelen" # #: timezones.h:825 msgid "Indian/Mahe" msgstr "Indischer Ozean/Mahe" # #: timezones.h:826 msgid "Indian/Maldives" msgstr "Indischer Ozean/Malediven" # #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Indischer Ozean/Mauritius" # #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Indischer Ozean/Mayotte" # #: timezones.h:829 msgid "Indian/Reunion" msgstr "Indischer Ozean/RĆ©union" # #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" # #: timezones.h:832 msgid "Israel" msgstr "Israel" # #: timezones.h:833 msgid "Jamaica" msgstr "Jamaika" # #: timezones.h:834 msgid "Japan" msgstr "Japan" # #. comment for time zone Pacific/Kwajalein #: timezones.h:835 #: timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libyen" # #: timezones.h:837 msgid "MET" msgstr "MET" # #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Mexiko/BajaNorte" # #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Mexiko/BajaSur" # #: timezones.h:840 msgid "Mexico/General" msgstr "Mexiko/General" # #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Mittlerer Osten/Riad87" # #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Mittlerer Osten/Riad88" # #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Mittlerer Osten/Riad89" # #: timezones.h:844 msgid "MST" msgstr "MST" # #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" # #: timezones.h:846 msgid "Navajo" msgstr "Navajo" # #: timezones.h:847 msgid "NZ" msgstr "NZ" # #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" # #: timezones.h:849 msgid "Pacific/Apia" msgstr "Pazifik/Apia" # #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Pazifik/Auckland" # #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Pazifik/Chatham" # #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "Chatham Inseln" # #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "Pazifik/Chuuk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "Chuuk (Truk) und Yap" # #: timezones.h:859 msgid "Pacific/Easter" msgstr "Pazifik/Osterinsel" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "Osterinseln & Sala y Gomez" # #: timezones.h:862 msgid "Pacific/Efate" msgstr "Pazifik/Efate" # #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Pazifik/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "Phoenixinseln" # #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Pazifik/Fakaofo" # #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Pazifik/Fidschi" # #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Pazifik/Funafuti" # #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Pazifik/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "Galapagos-Inseln" # #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Pazifik/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "Gambier Inseln" # #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Pazifik/Guadalcanal" # #: timezones.h:876 msgid "Pacific/Guam" msgstr "Pazifik/Guam" # #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Pazifik/Honolulu" # #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "Hawaii" # #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Pazifik/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "Johnston-Atoll" # #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Pazifik/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "Line-Inseln" # #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Pazifik/Kosrae" # #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "Kosrae" # #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Pazifik/Kwajalein" # #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Pazifik/Majuro" # #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Pazifik/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "Marquesas-Inseln" # #: timezones.h:898 msgid "Pacific/Midway" msgstr "Pazifik/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "Midway-Inseln" # #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Pazifik/Nauru" # #: timezones.h:902 msgid "Pacific/Niue" msgstr "Pazifik/Niue" # #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Pazifik/Norfolk" # #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Pazifik/Noumea" # #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Pazifik/Pago_Pago" # #: timezones.h:906 msgid "Pacific/Palau" msgstr "Pazifik/Palau" # #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Pazifik/Pitcairn" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "Pazifik/Pohnpei" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "Pohnpei (Ponape)" # #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Pazifik/Ponape" # #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Pazifik/Port_Moresby" # #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Pazifik/Rarotonga" # #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Pazifik/Saipan" # #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Pazifik/Samoa" # #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Pazifik/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "Gesellschaftsinseln" # #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Pazifik/Tarawa" # #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "Gilbert-Inseln" # #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Pazifik/Tongatapu" # #: timezones.h:923 msgid "Pacific/Truk" msgstr "Pazifik/Truk" # #: timezones.h:924 msgid "Pacific/Wake" msgstr "Pazifik/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "Wake Island" # #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Pazifik/Wallis" # #: timezones.h:928 msgid "Pacific/Yap" msgstr "Pazifik/Yap" #: timezones.h:929 msgid "Poland" msgstr "Polen" # #: timezones.h:930 msgid "Portugal" msgstr "Portugal" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" # #: timezones.h:932 msgid "PRC" msgstr "PRC" # #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" # #: timezones.h:934 msgid "ROC" msgstr "ROC" # #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapur" #: timezones.h:937 msgid "Turkey" msgstr "Türkei" # #: timezones.h:938 msgid "UCT" msgstr "UCT" # #: timezones.h:939 msgid "Universal" msgstr "Universal" # #: timezones.h:940 msgid "US/Alaska" msgstr "US/Alaska" # #: timezones.h:941 msgid "US/Aleutian" msgstr "US/Aleutian" # #: timezones.h:942 msgid "US/Arizona" msgstr "US/Arizona" # #: timezones.h:943 msgid "US/Central" msgstr "US/Central" # #: timezones.h:944 msgid "US/Eastern" msgstr "US/Eastern" # #: timezones.h:945 msgid "US/East-Indiana" msgstr "US/Ost-Indiana" # #: timezones.h:946 msgid "US/Hawaii" msgstr "US/Hawaii" # #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "US/Indiana-Starke" # #: timezones.h:948 msgid "US/Michigan" msgstr "US/Michigan" # #: timezones.h:949 msgid "US/Mountain" msgstr "US/Mountain" # #: timezones.h:950 msgid "US/Pacific" msgstr "US/Pacific" # #: timezones.h:951 msgid "US/Samoa" msgstr "US/Samoa" # #: timezones.h:952 msgid "UTC" msgstr "UTC" # #: timezones.h:953 msgid "WET" msgstr "WET" # #: timezones.h:954 msgid "W-SU" msgstr "W-SU" # #: timezones.h:955 msgid "Zulu" msgstr "Zulu" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/sq.po0000664000175000017500000016631414632072346023715 0ustar fabiofabio# Albanian Translation of Timezones. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the Timezones package. # Besnik Bleta , 2008. # msgid "" msgstr "" "Project-Id-Version: master\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2008-09-27 10:37+0200\n" "Last-Translator: Besnik Bleta \n" "Language-Team: Albanian \n" "Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "AfrikĆ«/Abixhan" #: timezones.h:2 msgid "Africa/Accra" msgstr "AfrikĆ«/Akra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "AfrikĆ«/Adis_Abeba" #: timezones.h:4 msgid "Africa/Algiers" msgstr "AfrikĆ«/Algjer" #: timezones.h:5 #, fuzzy msgid "Africa/Asmara" msgstr "AfrikĆ«/Asmera" #: timezones.h:6 msgid "Africa/Asmera" msgstr "AfrikĆ«/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "AfrikĆ«/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "AfrikĆ«/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "AfrikĆ«/Banxhul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "AfrikĆ«/Bisau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "AfrikĆ«/BlentajĆ«r" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "AfrikĆ«/Brazavil" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "AfrikĆ«/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "AfrikĆ«/Kairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "AfrikĆ«/Kazablanka" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "AfrikĆ«/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "AfrikĆ«/Konakri" #: timezones.h:20 msgid "Africa/Dakar" msgstr "AfrikĆ«/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "AfrikĆ«/Dar_es_Salam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "AfrikĆ«/Xhibut" #: timezones.h:23 msgid "Africa/Douala" msgstr "AfrikĆ«/Duala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "AfrikĆ«/El_Ajun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "AfrikĆ«/Fritaun" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "AfrikĆ«/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "AfrikĆ«/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "AfrikĆ«/Johanesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "AfrikĆ«/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "AfrikĆ«/Kartum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "AfrikĆ«/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "AfrikĆ«/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "AfrikĆ«/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "AfrikĆ«/LibrĆ«vil" #: timezones.h:37 msgid "Africa/Lome" msgstr "AfrikĆ«/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "AfrikĆ«/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "AfrikĆ«/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "AfrikĆ«/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "AfrikĆ«/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "AfrikĆ«/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "AfrikĆ«/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "AfrikĆ«/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "AfrikĆ«/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "AfrikĆ«/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "AfrikĆ«/Najrobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "AfrikĆ«/Nxhamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "AfrikĆ«/Niamei" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "AfrikĆ«/Nuakshot" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "AfrikĆ«/Uagadugu" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "AfrikĆ«/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "AfrikĆ«/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "AfrikĆ«/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "AfrikĆ«/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "AfrikĆ«/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "AfrikĆ«/Uindhoek" #: timezones.h:60 msgid "America/Adak" msgstr "AmerikĆ«/Adak" #. comment for time zone America/Adak #: timezones.h:62 #, fuzzy msgid "Aleutian Islands" msgstr "Australi/Kuinslend" #: timezones.h:63 msgid "America/Anchorage" msgstr "AmerikĆ«/Ankorazh" #. comment for time zone America/Anchorage #: timezones.h:65 #, fuzzy msgid "Alaska Time" msgstr "SHBA/AlaskĆ« " #: timezones.h:66 msgid "America/Anguilla" msgstr "AmerikĆ«/Anguila" #: timezones.h:67 msgid "America/Antigua" msgstr "AmerikĆ«/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "AmerikĆ«/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "AmerikĆ«/ArgjentinĆ«/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "AmerikĆ«/ArgjentinĆ«/Katamarka" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "AmerikĆ«/ArgjentinĆ«/KomodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "AmerikĆ«/ArgjentinĆ«/Kordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "AmerikĆ«/ArgjentinĆ«/Jujui" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "AmerikĆ«/ArgjentinĆ«/La_Rioha" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "AmerikĆ«/ArgjentinĆ«/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "AmerikĆ«/ArgjentinĆ«/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 #, fuzzy msgid "America/Argentina/Salta" msgstr "AmerikĆ«/ArgjentinĆ«/San_Huan" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "AmerikĆ«/ArgjentinĆ«/San_Huan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 #, fuzzy msgid "America/Argentina/San_Luis" msgstr "AmerikĆ«/ArgjentinĆ«/San_Huan" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "AmerikĆ«/ArgjentinĆ«/Tukuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "AmerikĆ«/ArgjentinĆ«/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "AmerikĆ«/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "AmerikĆ«/Asuncion" #: timezones.h:110 msgid "America/Atikokan" msgstr "AmerikĆ«/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "AmerikĆ«/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "AmerikĆ«/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "AmerikĆ«/Bahia" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "AmerikĆ«/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "AmerikĆ«/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "AmerikĆ«/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "AmerikĆ«/Blank-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "AmerikĆ«/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "AmerikĆ«/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "AmerikĆ«/BuazĆ«" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "AmerikĆ«/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "AmerikĆ«/Kembrixh_Bej" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "AmerikĆ«/Kampo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "AmerikĆ«/Kankun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "AmerikĆ«/Karakas" #: timezones.h:146 msgid "America/Catamarca" msgstr "AmerikĆ«/Katamarka" #: timezones.h:147 msgid "America/Cayenne" msgstr "AmerikĆ«/Kajen" #: timezones.h:148 msgid "America/Cayman" msgstr "AmerikĆ«/KajmĆ«n" #: timezones.h:149 msgid "America/Chicago" msgstr "AmerikĆ«/Ƈikago" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "SHBA/Qendrore" #: timezones.h:152 msgid "America/Chihuahua" msgstr "AmerikĆ«/Ƈiuaua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "AmerikĆ«/Porti_i_Koraleve" #: timezones.h:156 msgid "America/Cordoba" msgstr "AmerikĆ«/Kordoba " #: timezones.h:157 msgid "America/Costa_Rica" msgstr "AmerikĆ«/Kosta_Rika" #: timezones.h:158 msgid "America/Cuiaba" msgstr "AmerikĆ«/Kujaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "AmerikĆ«/KuraƧao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "AmerikĆ«/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "AmerikĆ«/Douson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "AmerikĆ«/Douson_Krik" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "AmerikĆ«/Denver" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "SHBA/Mali" #: timezones.h:174 msgid "America/Detroit" msgstr "AmerikĆ«/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "AmerikĆ«/Dominika" #: timezones.h:178 msgid "America/Edmonton" msgstr "AmerikĆ«/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "AmerikĆ«/Irunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "AmerikĆ«/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "AmerikĆ«/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "AmerikĆ«/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "AmerikĆ«/Fort_Uejn" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "AmerikĆ«/Glas_Bej" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "AmerikĆ«/Gotab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "AmerikĆ«/Gus_Bej" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "AmerikĆ«/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "AmerikĆ«/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "AmerikĆ«/GuadalupĆ«" #: timezones.h:202 msgid "America/Guatemala" msgstr "AmerikĆ«/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "AmerikĆ«/Guajakil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "AmerikĆ«/Guajana" #: timezones.h:207 msgid "America/Halifax" msgstr "AmerikĆ«/Halifaks" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "AmerikĆ«/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "AmerikĆ«/Hermosilo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "AmerikĆ«/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "AmerikĆ«/Indiana/Noks" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "AmerikĆ«/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "AmerikĆ«/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "AmerikĆ«/Indianapolis" #: timezones.h:227 #, fuzzy msgid "America/Indiana/Tell_City" msgstr "AmerikĆ«/Indiana/Vevej" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "AmerikĆ«/Indiana/Vevej" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "AmerikĆ«/Indiana/Vincen" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 #, fuzzy msgid "America/Indiana/Winamac" msgstr "AmerikĆ«/Indiana/Vincen" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "AmerikĆ«/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "AmerikĆ«/Ikaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "AmerikĆ«/XhamaikĆ«" #: timezones.h:246 msgid "America/Jujuy" msgstr "AmerikĆ«/Jujui" #: timezones.h:247 msgid "America/Juneau" msgstr "AmerikĆ«/Zhuno" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "AmerikĆ«/Kentaki/Luisvil" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 #, fuzzy msgid "Eastern Time - Kentucky - Louisville area" msgstr "AmerikĆ«/Kentaki/Luisvil" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "AmerikĆ«/Kentaki/MontiƧelo" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "AmerikĆ«/Noks_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "AmerikĆ«/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "AmerikĆ«/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "AmerikĆ«/Los_Anxhelos" #. comment for time zone America/Los_Angeles #: timezones.h:261 #, fuzzy msgid "Pacific Time" msgstr "PaqĆ«sor/Niue" #: timezones.h:262 msgid "America/Louisville" msgstr "AmerikĆ«/Luisvil" #: timezones.h:263 msgid "America/Maceio" msgstr "AmerikĆ«/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "AmerikĆ«/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "AmerikĆ«/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 #, fuzzy msgid "America/Marigot" msgstr "AmerikĆ«/Maceio" #: timezones.h:271 msgid "America/Martinique" msgstr "AmerikĆ«/MartinikĆ«" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "AmerikĆ«/Manaus" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "AmerikĆ«/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "AmerikĆ«/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "AmerikĆ«/Menomini" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "AmerikĆ«/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "AmerikĆ«/Meksiko_Siti" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "AmerikĆ«/MikĆ«lon" #: timezones.h:289 msgid "America/Moncton" msgstr "AmerikĆ«/Monkton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "AmerikĆ«/Monterrej" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "AmerikĆ«/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "AmerikĆ«/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "AmerikĆ«/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "AmerikĆ«/Nasau" #: timezones.h:301 msgid "America/New_York" msgstr "AmerikĆ«/Nju_Jork" #. comment for time zone America/New_York #: timezones.h:303 #, fuzzy msgid "Eastern Time" msgstr "SHBA/Lindore" #: timezones.h:304 msgid "America/Nipigon" msgstr "AmerikĆ«/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "AmerikĆ«/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "AmerikĆ«/Noronja" #. comment for time zone America/Noronha #: timezones.h:312 #, fuzzy msgid "Atlantic islands" msgstr "Atlantik/Kanarie" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "AmerikĆ«/Dakota_e_Veriut/Qendrore" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "AmerikĆ«/Dakota_e_Veriut/Salemi_i_Ri" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "AmerikĆ«/Managua" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "AmerikĆ«/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "AmerikĆ«/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "AmerikĆ«/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "AmerikĆ«/Feniks" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "AmerikĆ«/Port-o-Prins" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "AmerikĆ«/Porto_Akre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "AmerikĆ«/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "AmerikĆ«/Porto_Velo" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "AmerikĆ«/Porto_Riko" #: timezones.h:337 msgid "America/Rainy_River" msgstr "AmerikĆ«/Reini_RivĆ«r" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "AmerikĆ«/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "AmerikĆ«/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "AmerikĆ«/Rexhina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 #, fuzzy msgid "America/Resolute" msgstr "AmerikĆ«/Belem" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "AmerikĆ«/Rio_Branko" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "AmerikĆ«/Rozario" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "AmerikĆ«/Santiago" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 #, fuzzy msgid "America/Santarem" msgstr "AmerikĆ«/Santiago" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "AmerikĆ«/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "AmerikĆ«/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "AmerikĆ«/San_Paolo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "AmerikĆ«/Skorsbajsund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "AmerikĆ«/Shiprok" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 #, fuzzy msgid "America/St_Barthelemy" msgstr "AmerikĆ«/Belem" #: timezones.h:376 msgid "America/St_Johns" msgstr "AmerikĆ«/St_Xhons" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "AmerikĆ«/St_Kits" #: timezones.h:380 msgid "America/St_Lucia" msgstr "AmerikĆ«/St_LuƧia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "AmerikĆ«/St_Tomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "AmerikĆ«/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "AmerikĆ«/Suift_Kurrent" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "AmerikĆ«/TeguƧigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "AmerikĆ«/Tjul" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "AmerikĆ«/Gjiri_i_RrufesĆ«" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "AmerikĆ«/Tihuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "AmerikĆ«/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "AmerikĆ«/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "AmerikĆ«/Vankuver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "AmerikĆ«/VirgjĆ«rt" #: timezones.h:404 msgid "America/Whitehorse" msgstr "AmerikĆ«/Uajthors" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "AmerikĆ«/Uinipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "AmerikĆ«/Jakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "AmerikĆ«/Jellounajf" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "AntarktidĆ«/Kasi" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "AntarktidĆ«/Dejvis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "AntarktidĆ«/DymoDYrvil" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "AntarktidĆ«/MkMĆ«rdo" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "AntarktidĆ«/Mouson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "AntarktidĆ«/MkMĆ«rdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "AntarktidĆ«/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "AntarktidĆ«/Rotera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "AntarktidĆ«/Poli_i_Jugut" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "AntarktidĆ«/Sjoua" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "AntarktidĆ«/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Arktik/LongjirbajĆ«n" #: timezones.h:450 msgid "Asia/Aden" msgstr "Azi/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Azi/Almati" #: timezones.h:454 msgid "Asia/Amman" msgstr "Azi/Aman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Azi/Anadir" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Azi/Aktau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Azi/Aktobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Azi/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Azi/Ashkabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Azi/Bagdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Azi/Bahrein" #: timezones.h:468 msgid "Asia/Baku" msgstr "Azi/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Azi/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Azi/Bejrut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Azi/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Azi/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Azi/Kalkuta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Azi/Koibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Azi/Congqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "Azi/Ƈungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Azi/Kolombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Azi/Daca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Azi/Damask" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Azi/Daka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Azi/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Azi/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Azi/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Azi/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Azi/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 #, fuzzy msgid "Asia/Ho_Chi_Minh" msgstr "Azi/Congqing" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Azi/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Azi/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Azi/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Azi/Stamboll" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Azi/XhakartĆ«" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Azi/Xhajapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Azi/Jerusalem" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Azi/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Azi/KamƧatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Azi/Karashi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Azi/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 #, fuzzy msgid "Asia/Kathmandu" msgstr "Azi/Katmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Azi/Katmandu" #: timezones.h:518 #, fuzzy msgid "Asia/Kolkata" msgstr "Azi/XhakartĆ«" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Azi/Krasnojarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Azi/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Azi/Kushing" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Azi/Kuvait" #: timezones.h:529 msgid "Asia/Macao" msgstr "Azi/Makao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Azi/Makau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Azi/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Azi/Makasar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "Azi/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Azi/Muskat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Azi/Nikozia" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "Azi/Irkutsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "Azi/Novosibirsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Azi/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 #, fuzzy msgid "Moscow+03 - Novosibirsk" msgstr "Azi/Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Azi/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "Azi/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Azi/Phnom_Pen" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Azi/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Azi/Pjongjang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Azi/Katar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Azi/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Azi/Rangun" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Azi//Riad" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Azi//Riad87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Azi//Riad88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Azi//Riad89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Azi/Sajgon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Azi/Sakalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Azi/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Azi/Seul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Azi/Shangai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "Azi/Singapor" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Azi/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Azi/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Azi/Tbilis" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Azi/Teheran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Azi/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Azi/Timbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Azi/Timpu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Azi/Tokio" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Azi/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Azi/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Azi/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Azi/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Azi/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Azi/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Azi/Jakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Azi/Ekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Azi/Erevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlantik/Azore" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlantik/Bermuda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlantik/Kanarie" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlantik/Kepi_i_GjelbĆ«r" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlantik/Faroe" #: timezones.h:616 #, fuzzy msgid "Atlantic/Faroe" msgstr "Atlantik/Faroe" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlantik/Jan_Majen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlantik/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlantik/Reikjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlantik/Gjeorgji_e_Jugut" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlantik/Stanlei" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlantik/ShĆ«n_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "Australi/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Australi/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 #, fuzzy msgid "South Australia" msgstr "Australi/ACT" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Australi/BrisbĆ«n" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Australi/Kodr_Ā“_e_Thyer" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Australi/KanberrĆ«" #: timezones.h:636 msgid "Australia/Currie" msgstr "Australi/Kurri" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Australi/Darvin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 #, fuzzy msgid "Australia/Eucla" msgstr "Australi/Kuinslend" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Australi/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "Australi/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Australi/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Australi/Lord_Houv" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Australi/Melburn" #. comment for time zone Australia/Melbourne #: timezones.h:657 #, fuzzy msgid "Victoria" msgstr "Australi/Viktoria" #: timezones.h:658 msgid "Australia/North" msgstr "Australi/Veri" #: timezones.h:659 msgid "Australia/NSW" msgstr "Australi/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "Australi/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Australi/Kuinslend" #: timezones.h:664 msgid "Australia/South" msgstr "Australi/Jug" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Australi/Sidni" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Australi/Tasmani" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Australi/Viktoria" #: timezones.h:670 msgid "Australia/West" msgstr "Australi/PerĆ«ndim" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Australi/Jankovina" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brazil/Akre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brazil/DeNoronja" #: timezones.h:674 msgid "Brazil/East" msgstr "Brazil/Lindje" #: timezones.h:675 msgid "Brazil/West" msgstr "Brazil/PerĆ«ndim" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Kanada/Atlantik" #: timezones.h:677 msgid "Canada/Central" msgstr "Kanada/Qendrore" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Kanada/Lindore" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Kanada/SaskaƧevan_i_Lindjes" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Kanada/Malore" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Kanada/Njufaundlend" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Kanada/PaqĆ«sor" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Kanada/SaskaƧevan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Kanada/Jukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Kili/Kontinentale" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Kili/Ishulli_Lindor" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "KubĆ«" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Egjypt" #: timezones.h:692 msgid "Eire" msgstr "IrlandĆ«" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/GrinuiƧ" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universale" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "EuropĆ«/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "EuropĆ«/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "EuropĆ«/AthinĆ«" #: timezones.h:733 msgid "Europe/Belfast" msgstr "EuropĆ«/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "EuropĆ«/Beograd" #: timezones.h:735 msgid "Europe/Berlin" msgstr "EuropĆ«/Berlin" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "EuropĆ«/BratislavĆ«" #: timezones.h:737 msgid "Europe/Brussels" msgstr "EuropĆ«/Bruksel" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "EuropĆ«/Bukuresht" #: timezones.h:739 msgid "Europe/Budapest" msgstr "EuropĆ«/Budapest" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "EuropĆ«/Kishinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "EuropĆ«/Kopenhagen" #: timezones.h:742 msgid "Europe/Dublin" msgstr "EuropĆ«/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "EuropĆ«/Gjibraltar" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "EuropĆ«/Guernsi" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "EuropĆ«/Helsinki" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "EuropĆ«/Ishulli_i_Robit" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "EuropĆ«/Stamboll" #: timezones.h:748 msgid "Europe/Jersey" msgstr "EuropĆ«/Xhersi" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "EuropĆ«/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "EuropĆ«/Kiev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "EuropĆ«/LisbonĆ«" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "EuropĆ«/LjubljanĆ«" #: timezones.h:759 msgid "Europe/London" msgstr "EuropĆ«/LondĆ«r" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "EuropĆ«/Luksemburg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "EuropĆ«/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "EuropĆ«/MaltĆ«" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "EuropĆ«/Marihamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "EuropĆ«/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "EuropĆ«/Monako" #: timezones.h:768 msgid "Europe/Moscow" msgstr "EuropĆ«/MoskĆ«" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "EuropĆ«/Nikozi" #: timezones.h:772 msgid "Europe/Oslo" msgstr "EuropĆ«/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "EuropĆ«/Paris" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "EuropĆ«/PodgoricĆ«" #: timezones.h:775 msgid "Europe/Prague" msgstr "EuropĆ«/PragĆ«" #: timezones.h:776 msgid "Europe/Riga" msgstr "EuropĆ«/RigĆ«" #: timezones.h:777 msgid "Europe/Rome" msgstr "EuropĆ«/RomĆ«" #: timezones.h:778 msgid "Europe/Samara" msgstr "EuropĆ«/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "EuropĆ«/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "EuropĆ«/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "EuropĆ«/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "EuropĆ«/Shkup" #: timezones.h:787 msgid "Europe/Sofia" msgstr "EuropĆ«/Sofie" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "EuropĆ«/Stokholm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "EuropĆ«/Talin" #: timezones.h:790 msgid "Europe/Tirane" msgstr "EuropĆ«/TiranĆ«" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "EuropĆ«/Amsterdam" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "EuropĆ«/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "EuropĆ«/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "EuropĆ«/Vatikan" #: timezones.h:797 msgid "Europe/Vienna" msgstr "EuropĆ«/VienĆ«" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "EuropĆ«/Vilnius" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "EuropĆ«/Volgograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "EuropĆ«/VarshavĆ«" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "EuropĆ«/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "EuropĆ«/Zaporozhje" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "EuropĆ«/Zyrih" #: timezones.h:808 msgid "Factory" msgstr "Punishte" #: timezones.h:809 msgid "GB" msgstr "BM" #: timezones.h:810 msgid "GB-Eire" msgstr "BM-IrlandĆ«" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "GrinuiƧ" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "IslandĆ«" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Indian/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Indian/Ƈagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Indian/KĆ«rshĆ«ndella" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Indian/Kokos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Indian/Komoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Indian/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Indian/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Indian/Maldive" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Indian/Mauricius" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Indian/Majot" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Indian/Ribashkim" #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "Izrael" #: timezones.h:833 msgid "Jamaica" msgstr "Xhamaika" #: timezones.h:834 msgid "Japan" msgstr "Japoni" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kuajalin" #: timezones.h:836 msgid "Libya" msgstr "Libi" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "MeksikĆ«/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "MeksikĆ«/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "MeksikĆ«/E-pĆ«rgjithshme" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Lindje_e_Mesme/Riad87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Lindje_e_Mesme/Riad88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Lindje_e_Mesme/Riad89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navaho" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "PaqĆ«sor/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "PaqĆ«sor/Okland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "PaqĆ«sor/ƇatĆ«m" #. comment for time zone Pacific/Chatham #: timezones.h:855 #, fuzzy msgid "Chatham Islands" msgstr "Kili/Ishulli_Lindor" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "PaqĆ«sor/Truk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 msgid "Pacific/Easter" msgstr "PaqĆ«sor/PashkĆ«" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "PaqĆ«sor/Efat" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "PaqĆ«sor/EnderbĆ«ri" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "PaqĆ«sor/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "PaqĆ«sor/Fixhi" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "PaqĆ«sor/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "PaqĆ«sor/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "PaqĆ«sor/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "PaqĆ«sor/Guadalkanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "PaqĆ«sor/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "PaqĆ«sor/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 #, fuzzy msgid "Hawaii" msgstr "SHBA/Havai" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "PaqĆ«sor/Xhonston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "PaqĆ«sor/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "PaqĆ«sor/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 #, fuzzy msgid "Kosrae" msgstr "Izrael" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "PaqĆ«sor/Kuajalin" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "PaqĆ«sor/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "PaqĆ«sor/Markuezas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "PaqĆ«sor/Miduej" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "PaqĆ«sor/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "PaqĆ«sor/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "PaqĆ«sor/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "PaqĆ«sor/Numea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "PaqĆ«sor/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "PaqĆ«sor/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "PaqĆ«sor/Pitkern" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "PaqĆ«sor/Ponape" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "PaqĆ«sor/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "PaqĆ«sor/Port_Moresbi" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "PaqĆ«sor/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "PaqĆ«sor/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "PaqĆ«sor/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "PaqĆ«sor/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "PaqĆ«sor/Taraua" #. comment for time zone Pacific/Tarawa #: timezones.h:921 #, fuzzy msgid "Gilbert Islands" msgstr "Kili/Ishulli_Lindor" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "PaqĆ«sor/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "PaqĆ«sor/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "PaqĆ«sor/Uejk" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "PaqĆ«sor/Ualis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "PaqĆ«sor/Jap" #: timezones.h:929 msgid "Poland" msgstr "Poloni" #: timezones.h:930 msgid "Portugal" msgstr "Portugali" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapor" #: timezones.h:937 msgid "Turkey" msgstr "Turqi" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universale" #: timezones.h:940 msgid "US/Alaska" msgstr "SHBA/AlaskĆ« " #: timezones.h:941 msgid "US/Aleutian" msgstr "SHBA/Aleutine" #: timezones.h:942 msgid "US/Arizona" msgstr "SHBA/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "SHBA/Qendrore" #: timezones.h:944 msgid "US/Eastern" msgstr "SHBA/Lindore" #: timezones.h:945 msgid "US/East-Indiana" msgstr "SHBA/Indiana-e-Lindjes" #: timezones.h:946 msgid "US/Hawaii" msgstr "SHBA/Havai" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "SHBA/Indiana-Stark" #: timezones.h:948 msgid "US/Michigan" msgstr "SHBA/MiƧigan" #: timezones.h:949 msgid "US/Mountain" msgstr "SHBA/Mali" #: timezones.h:950 msgid "US/Pacific" msgstr "SHBA/PaqĆ«sor" #: timezones.h:951 msgid "US/Samoa" msgstr "SHBA/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" #~ msgid "US/Pacific-New" #~ msgstr "SHBA/PaqĆ«sor-I-ri" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/meson.build0000664000175000017500000000005614632072346025062 0ustar fabiofabio i18n.gettext(gettext_package + '-timezones') cinnamon-control-center-6.2.0/panels/datetime/po-timezones/en_GB.po0000664000175000017500000017671714632072346024254 0ustar fabiofabio# English (British) translation. # Copyright (C) 2010 system-config-date's COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Abigail Brady , Bastien Nocera , 2010. # Bruce Cowan , 2010. msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-02-28 20:20+0100\n" "Last-Translator: Bruce Cowan \n" "Language-Team: British English \n" "Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Virtaal 0.5.2\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Africa/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Africa/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Africa/Addis_Ababa" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Africa/Algiers" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Africa/Asmara" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Africa/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Africa/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Africa/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Africa/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Africa/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Africa/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Africa/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Africa/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Africa/Cairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Africa/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Africa/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Ceuta & Melilla" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Africa/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Africa/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Africa/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Africa/Djibouti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Africa/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Africa/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Africa/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Africa/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Africa/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Africa/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Africa/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Africa/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Africa/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Africa/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "west Dem. Rep. of Congo" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Africa/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Africa/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Africa/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Africa/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Africa/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "east Dem. Rep. of Congo" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Africa/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Africa/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Africa/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Africa/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Africa/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Africa/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Africa/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Africa/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Africa/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Africa/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Africa/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Africa/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Africa/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Africa/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Africa/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Africa/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Africa/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Africa/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "America/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "Aleutian Islands" #: timezones.h:63 msgid "America/Anchorage" msgstr "America/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "Alaska Time" #: timezones.h:66 msgid "America/Anguilla" msgstr "America/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "America/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "America/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Tocantins" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "America/Argentina/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Buenos Aires (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "America/Argentina/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "Catamarca (CT), Chubut (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "America/Argentina/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "America/Argentina/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "America/Argentina/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Jujuy (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "America/Argentina/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "La Rioja (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "America/Argentina/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "Mendoza (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "America/Argentina/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Santa Cruz (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "America/Argentina/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "America/Argentina/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "San Juan (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "America/Argentina/San_Luis" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "San Luis (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "America/Argentina/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Tucuman (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "America/Argentina/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Tierra del Fuego (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "America/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "America/Asuncion" #: timezones.h:110 msgid "America/Atikokan" msgstr "America/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" #: timezones.h:113 msgid "America/Atka" msgstr "America/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "America/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "Bahia" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "America/Bahia" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "America/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "America/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "Amapa, E Para" #: timezones.h:124 msgid "America/Belize" msgstr "America/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "America/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "Atlantic Standard Time - Quebec - Lower North Shore" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "America/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "Roraima" #: timezones.h:131 msgid "America/Bogota" msgstr "America/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "America/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "Mountain Time - south Idaho & east Oregon" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "America/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "America/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "Mountain Time - west Nunavut" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "America/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "Mato Grosso do Sul" #: timezones.h:142 msgid "America/Cancun" msgstr "America/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "Central Time - Quintana Roo" #: timezones.h:145 msgid "America/Caracas" msgstr "America/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "America/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "America/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "America/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "America/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "Central Time" #: timezones.h:152 msgid "America/Chihuahua" msgstr "America/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 #, fuzzy msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "Mountain Time - Chihuahua" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "America/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "America/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "America/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "America/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "Mato Grosso" #: timezones.h:161 msgid "America/Curacao" msgstr "America/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "America/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "east coast, north of Scoresbysund" #: timezones.h:165 msgid "America/Dawson" msgstr "America/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "Pacific Time - north Yukon" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "America/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" #: timezones.h:171 msgid "America/Denver" msgstr "America/Denver" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "Mountain Time" #: timezones.h:174 msgid "America/Detroit" msgstr "America/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "Eastern Time - Michigan - most locations" #: timezones.h:177 msgid "America/Dominica" msgstr "America/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "America/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "Mountain Time - Alberta, east British Columbia & west Saskatchewan" #: timezones.h:181 msgid "America/Eirunepe" msgstr "America/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "W Amazonas" #: timezones.h:184 msgid "America/El_Salvador" msgstr "America/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "America/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "America/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "NE Brazil (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "America/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "America/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" #: timezones.h:193 msgid "America/Godthab" msgstr "America/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "most locations" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "America/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "Atlantic Time - Labrador - most locations" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "America/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "America/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "America/Guadeloupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "America/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "America/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "mainland" #: timezones.h:206 msgid "America/Guyana" msgstr "America/Guyana" #: timezones.h:207 msgid "America/Halifax" msgstr "America/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "Atlantic Time - Nova Scotia (most places), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "America/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "America/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "Mountain Standard Time - Sonora" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "America/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "Eastern Time - Indiana - most locations" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "America/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "Central Time - Indiana - Starke County" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "America/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "Eastern Time - Indiana - Crawford County" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "America/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "Eastern Time - Indiana - Pike County" #: timezones.h:226 msgid "America/Indianapolis" msgstr "America/Indianapolis" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "America/Indiana/Tell_City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "Central Time - Indiana - Perry County" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "America/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "Eastern Time - Indiana - Switzerland County" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "America/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "America/Indiana/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "Eastern Time - Indiana - Pulaski County" #: timezones.h:239 msgid "America/Inuvik" msgstr "America/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "Mountain Time - west Northwest Territories" #: timezones.h:242 msgid "America/Iqaluit" msgstr "America/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "Eastern Time - east Nunavut - most locations" #: timezones.h:245 msgid "America/Jamaica" msgstr "America/Jamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "America/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "America/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "Alaska Time - Alaska panhandle" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "America/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "Eastern Time - Kentucky - Louisville area" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "America/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "Eastern Time - Kentucky - Wayne County" #: timezones.h:256 msgid "America/Knox_IN" msgstr "America/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "America/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "America/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "America/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "Pacific Time" #: timezones.h:262 msgid "America/Louisville" msgstr "America/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "America/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "Alagoas, Sergipe" #: timezones.h:266 msgid "America/Managua" msgstr "America/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "America/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "E Amazonas" #: timezones.h:270 msgid "America/Marigot" msgstr "America/Marigot" #: timezones.h:271 msgid "America/Martinique" msgstr "America/Martinique" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "America/Manaus" #. comment for time zone America/Matamoros #: timezones.h:274 #, fuzzy msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" #: timezones.h:275 msgid "America/Mazatlan" msgstr "America/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "Mountain Time - S Baja, Nayarit, Sinaloa" #: timezones.h:278 msgid "America/Mendoza" msgstr "America/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "America/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" #: timezones.h:282 msgid "America/Merida" msgstr "America/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "Central Time - Campeche, Yucatan" #: timezones.h:285 msgid "America/Mexico_City" msgstr "America/Mexico_City" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "Central Time - most locations" #: timezones.h:288 msgid "America/Miquelon" msgstr "America/Miquelon" #: timezones.h:289 msgid "America/Moncton" msgstr "America/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "Atlantic Time - New Brunswick" #: timezones.h:292 msgid "America/Monterrey" msgstr "America/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 #, fuzzy msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas" #: timezones.h:295 msgid "America/Montevideo" msgstr "America/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "America/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "Eastern Time - Quebec - most locations" #: timezones.h:299 msgid "America/Montserrat" msgstr "America/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "America/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "America/New_York" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "Eastern Time" #: timezones.h:304 msgid "America/Nipigon" msgstr "America/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" #: timezones.h:307 msgid "America/Nome" msgstr "America/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "Alaska Time - west Alaska" #: timezones.h:310 msgid "America/Noronha" msgstr "America/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "Atlantic islands" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "America/North_Dakota/Centre" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "Central Time - North Dakota - Oliver County" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "America/North_Dakota/New_Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "Central Time - North Dakota - Morton County (except Mandan area)" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "America/Managua" #. comment for time zone America/Ojinaga #: timezones.h:321 #, fuzzy msgid "US Mountain Time - Chihuahua near US border" msgstr "Mountain Time - Chihuahua" #: timezones.h:322 msgid "America/Panama" msgstr "America/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "America/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "Eastern Time - Pangnirtung, Nunavut" #: timezones.h:326 msgid "America/Paramaribo" msgstr "America/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "America/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "Mountain Standard Time - Arizona" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "America/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "America/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "America/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "America/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "Rondonia" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "America/Puerto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "America/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "Central Time - Rainy River & Fort Frances, Ontario" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "America/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "Central Time - central Nunavut" #: timezones.h:343 msgid "America/Recife" msgstr "America/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "Pernambuco" #: timezones.h:346 msgid "America/Regina" msgstr "America/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "Central Standard Time - Saskatchewan - most locations" #: timezones.h:349 msgid "America/Resolute" msgstr "America/Resolute" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "Eastern Standard Time - Resolute, Nunavut" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "America/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "Acre" #: timezones.h:355 msgid "America/Rosario" msgstr "America/Rosario" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "America/Santarem" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 msgid "America/Santarem" msgstr "America/Santarem" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "W Para" #: timezones.h:362 msgid "America/Santiago" msgstr "America/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "America/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "America/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "America/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Scoresbysund / Ittoqqortoormiit" #: timezones.h:372 msgid "America/Shiprock" msgstr "America/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "Mountain Time - Navajo" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "America/St_Barthelemy" #: timezones.h:376 msgid "America/St_Johns" msgstr "America/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "Newfoundland Time, including SE Labrador" #: timezones.h:379 msgid "America/St_Kitts" msgstr "America/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "America/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "America/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "America/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "America/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "Central Standard Time - Saskatchewan - midwest" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "America/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "America/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "Thule / Pituffik" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "America/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "Eastern Time - Thunder Bay, Ontario" #: timezones.h:393 msgid "America/Tijuana" msgstr "America/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "America/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "Eastern Time - Ontario - most locations" #: timezones.h:399 msgid "America/Tortola" msgstr "America/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "America/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "Pacific Time - west British Columbia" #: timezones.h:403 msgid "America/Virgin" msgstr "America/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "America/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "Pacific Time - south Yukon" #: timezones.h:407 msgid "America/Winnipeg" msgstr "America/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "Central Time - Manitoba & west Ontario" #: timezones.h:410 msgid "America/Yakutat" msgstr "America/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "Alaska Time - Alaska panhandle neck" #: timezones.h:413 msgid "America/Yellowknife" msgstr "America/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "Mountain Time - central Northwest Territories" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Antarctica/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "Casey Station, Bailey Peninsula" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Antarctica/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "Davis Station, Vestfold Hills" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Antarctica/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Dumont-d'Urville Station, Terre Adelie" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "Antarctica/McMurdo" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 #, fuzzy msgid "Macquarie Island Station, Macquarie Island" msgstr "McMurdo Station, Ross Island" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Antarctica/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "Mawson Station, Holme Bay" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Antarctica/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "McMurdo Station, Ross Island" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Antarctica/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "Palmer Station, Anvers Island" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Antarctica/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "Rothera Station, Adelaide Island" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antarctica/South_Pole" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "Amundsen-Scott Station, South Pole" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Antarctica/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "Syowa Station, E Ongul I" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Antarctica/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "Vostok Station, S Magnetic Pole" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Arctic/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Asia/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Asia/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Asia/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Asia/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 #, fuzzy msgid "Moscow+08 - Bering Sea" msgstr "Moscow+10 - Bering Sea" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Asia/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Asia/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "Aqtobe (Aktobe)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Asia/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Asia/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Asia/Baghdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Asia/Bahrain" #: timezones.h:468 msgid "Asia/Baku" msgstr "Asia/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Asia/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Asia/Beirut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Asia/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Asia/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Asia/Calcutta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Asia/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "Dornod, Sukhbaatar" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Asia/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." #: timezones.h:480 msgid "Asia/Chungking" msgstr "Asia/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Asia/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Asia/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Asia/Damascus" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Asia/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Asia/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Asia/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Asia/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Asia/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Asia/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Heilongjiang (except Mohe), Jilin" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "Asia/Ho_Chi_Minh" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Asia/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Asia/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Asia/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "Moscow+05 - Lake Baikal" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Asia/Istanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Asia/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "Java & Sumatra" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Asia/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "Irian Jaya & the Moluccas" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Asia/Jerusalem" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Asia/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Asia/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 #, fuzzy msgid "Moscow+08 - Kamchatka" msgstr "Moscow+09 - Kamchatka" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Asia/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Asia/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "west Tibet & Xinjiang" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "Asia/Kathmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Asia/Katmandu" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "Asia/Kolkata" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Asia/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "Moscow+04 - Yenisei River" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Asia/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "peninsular Malaysia" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Asia/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "Sabah & Sarawak" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Asia/Kuwait" #: timezones.h:529 msgid "Asia/Macao" msgstr "Asia/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Asia/Macau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Asia/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "Moscow+08 - Magadan" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Asia/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" #: timezones.h:537 msgid "Asia/Manila" msgstr "Asia/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Asia/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Asia/Nicosia" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "Asia/Irkutsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "Moscow+03 - Novosibirsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Asia/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "Moscow+03 - Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Asia/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "Moscow+03 - west Siberia" #: timezones.h:549 msgid "Asia/Oral" msgstr "Asia/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "West Kazakhstan" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Asia/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Asia/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "west & central Borneo" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Asia/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Asia/Qatar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Asia/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "Qyzylorda (Kyzylorda, Kzyl-Orda)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Asia/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Asia/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Asia/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Asia/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Asia/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Asia/Saigon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Asia/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "Moscow+07 - Sakhalin Island" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Asia/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "west Uzbekistan" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Asia/Seoul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Asia/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "east China - Beijing, Guangdong, Shanghai, etc." #: timezones.h:577 msgid "Asia/Singapore" msgstr "Asia/Singapore" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Asia/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Asia/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "east Uzbekistan" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Asia/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Asia/Tehran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Asia/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Asia/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Asia/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Asia/Tokyo" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Asia/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Asia/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Asia/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Asia/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "most of Tibet & Xinjiang" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Asia/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Asia/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "Moscow+07 - Amur River" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Asia/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "Moscow+06 - Lena River" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Asia/Yekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "Moscow+02 - Urals" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Asia/Yerevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlantic/Azores" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "Azores" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlantic/Bermuda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlantic/Canary" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "Canary Islands" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlantic/Cape_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlantic/Faeroe" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "Atlantic/Faroe" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlantic/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlantic/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "Madeira Islands" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlantic/Reykjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlantic/South_Georgia" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlantic/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlantic/St_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "Australia/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Australia/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "South Australia" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Australia/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "Queensland - most locations" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Australia/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "New South Wales - Yancowinna" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Australia/Canberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "Australia/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "Tasmania - King Island" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Australia/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "Northern Territory" #: timezones.h:642 msgid "Australia/Eucla" msgstr "Australia/Eucla" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "Western Australia - Eucla area" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Australia/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "Tasmania - most locations" #: timezones.h:648 msgid "Australia/LHI" msgstr "Australia/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Australia/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "Queensland - Holiday Islands" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Australia/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "Lord Howe Island" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Australia/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "Australia/North" #: timezones.h:659 msgid "Australia/NSW" msgstr "Australia/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "Australia/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "Western Australia - most locations" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Australia/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "Australia/South" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Australia/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "New South Wales - most locations" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Australia/Tasmania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Australia/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "Australia/West" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Australia/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brazil/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brazil/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brazil/East" #: timezones.h:675 msgid "Brazil/West" msgstr "Brazil/West" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Canada/Atlantic" #: timezones.h:677 msgid "Canada/Central" msgstr "Canada/Central" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Canada/Eastern" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Canada/East-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Canada/Mountain" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Canada/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Canada/Pacific" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Canada/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Canada/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Chile/Continental" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chile/EasterIsland" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Cuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Egypt" #: timezones.h:692 msgid "Eire" msgstr "Eire" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Europe/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Europe/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Europe/Athens" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Europe/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Europe/Belgrade" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Europe/Berlin" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Europe/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Europe/Brussels" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Europe/Bucharest" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Europe/Budapest" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Europe/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Europe/Copenhagen" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Europe/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Europe/Gibraltar" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Europe/Guernsey" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Europe/Helsinki" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Europe/Isle_of_Man" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Europe/Istanbul" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Europe/Jersey" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Europe/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "Moscow-01 - Kaliningrad" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Europe/Kiev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Europe/Lisbon" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Europe/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Europe/London" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Europe/Luxembourg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Europe/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Europe/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Europe/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Europe/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Europe/Monaco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Europe/Moscow" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "Moscow+00 - west Russia" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Europe/Nicosia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Europe/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Europe/Paris" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Europe/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Europe/Prague" #: timezones.h:776 msgid "Europe/Riga" msgstr "Europe/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Europe/Rome" #: timezones.h:778 msgid "Europe/Samara" msgstr "Europe/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 #, fuzzy msgid "Moscow - Samara, Udmurtia" msgstr "Moscow+01 - Samara, Udmurtia" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Europe/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Europe/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Europe/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "central Crimea" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Europe/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Europe/Sofia" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Europe/Stockholm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Europe/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Europe/Tirane" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Europe/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Europe/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "Ruthenia" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Europe/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Europe/Vatican" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Europe/Vienna" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Europe/Vilnius" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Europe/Volgograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "Moscow+00 - Caspian Sea" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Europe/Warsaw" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Europe/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Europe/Zaporozhye" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Europe/Zurich" #: timezones.h:808 msgid "Factory" msgstr "Factory" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Iceland" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Indian/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Indian/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Indian/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Indian/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Indian/Comoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Indian/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Indian/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Indian/Maldives" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Indian/Mauritius" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Indian/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Indian/Reunion" #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "Israel" #: timezones.h:833 msgid "Jamaica" msgstr "Jamaica" #: timezones.h:834 msgid "Japan" msgstr "Japan" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libya" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Mexico/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Mexico/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Mexico/General" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Mideast/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Mideast/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Mideast/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Pacific/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Pacific/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Pacific/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "Chatham Islands" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "Pacific/Truk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 #, fuzzy msgid "Chuuk (Truk) and Yap" msgstr "Truk (Chuuk) and Yap" #: timezones.h:859 msgid "Pacific/Easter" msgstr "Pacific/Easter" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "Easter Island & Sala y Gomez" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Pacific/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Pacific/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "Phoenix Islands" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Pacific/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Pacific/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Pacific/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Pacific/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "Galapagos Islands" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Pacific/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "Gambier Islands" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Pacific/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Pacific/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Pacific/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "Hawaii" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Pacific/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "Johnston Atoll" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Pacific/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "Line Islands" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Pacific/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "Kosrae" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Pacific/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Pacific/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Pacific/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "Marquesas Islands" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Pacific/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "Midway Islands" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Pacific/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Pacific/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Pacific/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Pacific/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Pacific/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Pacific/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Pacific/Pitcairn" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "Pacific/Ponape" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 #, fuzzy msgid "Pohnpei (Ponape)" msgstr "Ponape (Pohnpei)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Pacific/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Pacific/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Pacific/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Pacific/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Pacific/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Pacific/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "Society Islands" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Pacific/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "Gilbert Islands" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Pacific/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Pacific/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Pacific/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "Wake Island" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Pacific/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Pacific/Yap" #: timezones.h:929 msgid "Poland" msgstr "Poland" #: timezones.h:930 msgid "Portugal" msgstr "Portugal" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapore" #: timezones.h:937 msgid "Turkey" msgstr "Turkey" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "US/Alaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "US/Aleutian" #: timezones.h:942 msgid "US/Arizona" msgstr "US/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "US/Central" #: timezones.h:944 msgid "US/Eastern" msgstr "US/Eastern" #: timezones.h:945 msgid "US/East-Indiana" msgstr "US/East-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "US/Hawaii" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "US/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "US/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "US/Mountain" #: timezones.h:950 msgid "US/Pacific" msgstr "US/Pacific" #: timezones.h:951 msgid "US/Samoa" msgstr "US/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/zh_TW.po0000664000175000017500000020442514632072346024321 0ustar fabiofabio# translation of system-config-date.master-timezones.po to Traditional Chinese # Copyright (C) 2002 Red Hat Inc. # This file is distributed under the same license as the x package. # # # Ben Wu , 2002,2003. # Chester Cheng , 2004, 2005, 2006, 2007. # Waika Liu , 2005. # Leah Liu , 2005. # Walter Cheuk , 2005. # Terry Chuang , 2008. # Terry Chuang , 2009. # pingman , 2009. # Chester Cheng , 2010. # msgid "" msgstr "" "Project-Id-Version: x \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-09-28 00:53+0800\n" "Last-Translator: root \n" "Language-Team: Chinese (traditional) \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "éžę“²/é˜æåæ…å°š" #: timezones.h:2 msgid "Africa/Accra" msgstr "éžę“²/é˜æå…‹ę‹‰" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "éžę“²/é˜æčæŖę–Æé˜æč²å·“" #: timezones.h:4 msgid "Africa/Algiers" msgstr "éžę“²/é˜æēˆ¾åŠēˆ¾" #: timezones.h:5 msgid "Africa/Asmara" msgstr "éžę“²/é˜æę–Æé¦¬ę‹‰" #: timezones.h:6 msgid "Africa/Asmera" msgstr "éžę“²/é˜æę–Æé¦¬ę‹‰" #: timezones.h:7 msgid "Africa/Bamako" msgstr "éžę“²/巓馬科" #: timezones.h:8 msgid "Africa/Bangui" msgstr "éžę“²/ē­åŸŗ" #: timezones.h:9 msgid "Africa/Banjul" msgstr "éžę“²/ē­ē«¹" #: timezones.h:10 msgid "Africa/Bissau" msgstr "éžę“²/比瓢" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "éžę“²/布蘭泰爾" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "éžę“²/åøƒę‹‰č–©" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "éžę“²/åøƒē“Šåøƒę‹‰" #: timezones.h:14 msgid "Africa/Cairo" msgstr "éžę“²/é–‹ē¾…" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "éžę“²/å”č–©åøƒč˜­å”" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "éžę“²/休達" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "ä¼‘é”åŠę¢…åˆ©åˆ©äŗž" #: timezones.h:19 msgid "Africa/Conakry" msgstr "éžę“²/ē§‘ē“å…‹é‡Œ" #: timezones.h:20 msgid "Africa/Dakar" msgstr "éžę“²/é”å–€ēˆ¾" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "éžę“²/äø‰č˜­ęøÆ" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "éžę“²/å‰åøƒåœ°" #: timezones.h:23 msgid "Africa/Douala" msgstr "éžę“²/ęœē“¦ę‹‰" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "éžę“²/č‰¾ę‹‰č˜Š" #: timezones.h:25 msgid "Africa/Freetown" msgstr "éžę“²/č‡Ŗē”±åŸŽ" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "éžę“²/å˜‰ä¼Æåø•é‡Œ" #: timezones.h:27 msgid "Africa/Harare" msgstr "éžę“²/å“ˆę‹‰é›·" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "éžę“²/瓄翰尼斯堔" #: timezones.h:29 msgid "Africa/Kampala" msgstr "éžę“²/åŽåø•ę‹‰" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "éžę“²/å–€åœŸē©†" #: timezones.h:31 msgid "Africa/Kigali" msgstr "éžę“²/儇佳利" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "éžę“²/é‡‘å¤ę²™" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "west Dem. å‰›ęžœę°‘äø»å…±å’Œåœ‹" #: timezones.h:35 msgid "Africa/Lagos" msgstr "éžę“²/拉哄斯" #: timezones.h:36 msgid "Africa/Libreville" msgstr "éžę“²/自由市" #: timezones.h:37 msgid "Africa/Lome" msgstr "éžę“²/擛梅" #: timezones.h:38 msgid "Africa/Luanda" msgstr "éžę“²/盧安達" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "éžę“²/ē›§ęœ¬å·“åøŒ" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "east Dem. å‰›ęžœę°‘äø»å…±å’Œåœ‹" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "éžę“²/č·Æę²™å”" #: timezones.h:43 msgid "Africa/Malabo" msgstr "éžę“²/é¦¬ę‹‰åš" #: timezones.h:44 msgid "Africa/Maputo" msgstr "éžę“²/é¦¬ę™®ę‰˜" #: timezones.h:45 msgid "Africa/Maseru" msgstr "éžę“²/é¦¬å”žé­Æ" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "éžę“²/墨巓本" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "éžę“²/ę‘©åŠ čæŖä¼‘" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "éžę“²/č’™ē¾…ē¶­äŗž" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "éžę“²/å„ˆē¾…ęÆ”" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "éžę“²/ę©å˜‰ē¾Žē“" #: timezones.h:51 msgid "Africa/Niamey" msgstr "éžę“²/å°¼äŗžē¾Ž" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "éžę“²/諾克少" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "éžę“²/ē“¦åŠ ęœå¤" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "éžę“²/ę–°ęøÆ" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "éžę“²/č–å¤šē¾Ž" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "éžę“²/堤巓土" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "éžę“²/ēš„é»Žę³¢é‡Œ" #: timezones.h:58 msgid "Africa/Tunis" msgstr "éžę“²/突尼斯" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "éžę“²/ę–‡å¾·éœå…‹" #: timezones.h:60 msgid "America/Adak" msgstr "ē¾Žę“²/艾達克" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "é˜æē•™ē”³ē¾¤å³¶" #: timezones.h:63 msgid "America/Anchorage" msgstr "ē¾Žę“²/å®‰å…‹é‡Œę²»" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "é˜æę‹‰ę–ÆåŠ ę™‚å€" #: timezones.h:66 msgid "America/Anguilla" msgstr "ē¾Žę“²/å®‰åœ­ę‹‰" #: timezones.h:67 msgid "America/Antigua" msgstr "ē¾Žę“²/å®‰å ¤ē“œ" #: timezones.h:68 msgid "America/Araguaina" msgstr "ē¾Žę“²/é˜æę‹‰ē“œå› é‚£" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "ę‰˜č‚Æäøę–Æ" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "ē¾Žę“²/阿根廷/åøƒå®œč«¾ę–Æč‰¾åˆ©ę–Æ" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "åøƒåŸƒč«¾ę–Æč‰¾é›·ę–Æļ¼ˆBA,CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "ē¾Žę“²/阿根廷/å”é”é¦¬é­Æå”" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "å”å””é¦¬å”ēœļ¼ˆCTļ¼‰ļ¼Œäø˜åøƒē‰¹ēœļ¼ˆCH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "ē¾Žę“²āˆ•é˜æę ¹å»·āˆ•ē§‘ęœØå¤šę“›" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "ē¾Žę“²/阿根廷/å“„å¤ščÆ" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "å¤§éƒØåˆ†åœ°å€ļ¼ˆCB态CC态CN态ER态FM态MN态SE态SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "ē¾Žę“²/阿根廷/胔胔伊" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "夫夫伊(JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "ē¾Žę“²/阿根廷/ę‹‰č£å„§å“ˆ" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "ę‹‰č£”å„§å“ˆļ¼ˆLR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "ē¾Žę“²/阿根廷/é–€å¤šč–©" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "ę›¼å¤šč–©ļ¼ˆMZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "ē¾Žę“²āˆ•é˜æę ¹å»·āˆ•é‡Œå„§åŠ č€¶ęˆˆę–Æ" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "č–å…‹é­ÆčŒ²ļ¼ˆSC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "ē¾Žę“²/阿根廷/č–©ę’»ēœ" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA态LP态NQ态RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "ē¾Žę“²/阿根廷/č–čƒ”å®‰" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "č–čƒ”å®‰ļ¼ˆSJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "ē¾Žę“²/阿根廷/č–č·Æę˜“å£«" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "č–č·Æę˜“å£«ļ¼ˆSL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "ē¾Žę“²/阿根廷/åœ–åŗ«ę›¼" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "åœ–åŗ«ę›¼ļ¼ˆTM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "ē¾Žę“²/阿根廷/ēƒę–Æę‡·äŗž" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "火地島(TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "ē¾Žę“²/é˜æē›§å·“" #: timezones.h:109 msgid "America/Asuncion" msgstr "ē¾Žę“²/äŗžę¾ę£®" #: timezones.h:110 msgid "America/Atikokan" msgstr "ē¾Žę“²āˆ•é˜æč’‚ē§‘č‚Æ" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "ę±éƒØęØ™ęŗ–ę™‚é–“ - é˜æęē§‘åŽć€å®‰å¤§ē•„ä»„åŠå—å®‰ę™®é “ć€åŠŖé‚£ē¦" #: timezones.h:113 msgid "America/Atka" msgstr "ē¾Žę“²/é˜æęå”" #: timezones.h:114 msgid "America/Bahia" msgstr "ē¾Žę“²/å·“ä¼Šäŗž" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "å·“ä¼Šäŗž" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "ē¾Žę“²/å·“ä¼Šäŗžē­å¾·ę‹‰ę–Æ" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "墨脿哄中央時間 - å·“ä¼Šäŗžē­å¾·ę‹‰ę–Æ" #: timezones.h:120 msgid "America/Barbados" msgstr "ē¾Žę“²/å·“č²å¤š" #: timezones.h:121 msgid "America/Belem" msgstr "ē¾Žę“²/巓連姆" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "é˜æē‘Ŗåø•" #: timezones.h:124 msgid "America/Belize" msgstr "ē¾Žę“²/č²é‡Œę–Æ" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "ē¾Žę“²āˆ•åøƒęœ—å…‹ę²™ä¼Æå€«" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "大脿擋標準時間 - 魁北克 - ä½ŽåŒ—å²ø" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "ē¾Žę“²/ę³¢äŗžē¶­ę–Æå””" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "羅賓馬" #: timezones.h:131 msgid "America/Bogota" msgstr "ē¾Žę“²/波哄大" #: timezones.h:132 msgid "America/Boise" msgstr "ē¾Žę“²/波伊脿" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "å±±č„ˆę™‚é–“ - å—ę„›é”č·čˆ‡ę±äæ„å‹’å²”" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "ē¾Žę“²/åøƒå®œč«¾ę–Æč‰¾åˆ©ę–Æ" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "ē¾Žę“²/åŠę©‹ē£" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "å±±č„ˆę™‚é–“ - č„æåŠŖé‚£ē¦" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "ē¾Žę“²/åŽę™®ę ¼č˜­" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "é¦¬ę‰˜ę ¼ē¾…ē“¢å·ž" #: timezones.h:142 msgid "America/Cancun" msgstr "ē¾Žę“²/åŽåŗ«ę©" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "中央時間 - é‡‘å””ē“ē¾…å„§" #: timezones.h:145 msgid "America/Caracas" msgstr "ē¾Žę“²/å”ę‹‰å”ę–Æ" #: timezones.h:146 msgid "America/Catamarca" msgstr "ē¾Žę“²/å”å®ƒé¦¬ēˆ¾å”" #: timezones.h:147 msgid "America/Cayenne" msgstr "ē¾Žę“²/協宓" #: timezones.h:148 msgid "America/Cayman" msgstr "ē¾Žę“²/開曼" #: timezones.h:149 msgid "America/Chicago" msgstr "ē¾Žę“²/čŠåŠ å“„" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "中央時間" #: timezones.h:152 msgid "America/Chihuahua" msgstr "ē¾Žę“²/徹瓦瓦" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "å¢Øč„æå“„å±±č„ˆę™‚é–“ - é›¢ē¾Žåœ‹é‚Šē•Œč¼ƒé ēš„å„‡ē“¦ē“¦" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "ē¾Žę“²/ēŠē‘šęøÆ" #: timezones.h:156 msgid "America/Cordoba" msgstr "ē¾Žę“²/ē§‘å¤šå·“" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "ē¾Žę“²/å“„ę–Æå¤§é»ŽåŠ " #: timezones.h:158 msgid "America/Cuiaba" msgstr "ē¾Žę“²/åœ­äŗžå·“" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "é¦¬ę‰˜ę ¼ē¾…ē“¢å·ž" #: timezones.h:161 msgid "America/Curacao" msgstr "ē¾Žę“²/庫拉攑" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "ē¾Žę“²/丹馬沙文" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "ę±å²øć€åøå»“ēˆ¾ęÆ”ę”‘åŒ—éƒØ" #: timezones.h:165 msgid "America/Dawson" msgstr "ē¾Žę“²/道森" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "太平擋時間 - č‚²ē©ŗåŒ—éƒØ" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "ē¾Žę“²/é“ę£®å…‹é‡Œå…‹" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "å±±č„ˆęØ™ęŗ–ę™‚é–“ - é“ę£®å…‹é‡Œå…‹ä»„åŠē¦č–ē“„ēæ°ļ¼Œč‹±å±¬å“„å€«ęÆ”äŗž" #: timezones.h:171 msgid "America/Denver" msgstr "ē¾Žę“²/丹佛" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "å±±č„ˆę™‚é–“" #: timezones.h:174 msgid "America/Detroit" msgstr "ē¾Žę“²/底特律" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "ę±éƒØę™‚é–“ - åÆ†č„æę ¹å·ž - å¤§éƒØåˆ†åœ°å€" #: timezones.h:177 msgid "America/Dominica" msgstr "ē¾Žę“²/å¤šę˜Žå°¼åŠ " #: timezones.h:178 msgid "America/Edmonton" msgstr "ē¾Žę“²/艾德蒙頓" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "å±±č„ˆę™‚é–“ - č‰¾ä¼Æå””ļ¼Œč‹±å±¬å“„å€«ęÆ”äŗžę±éƒØä»„åŠč–©å…‹å…¶č¬ēœč„æéƒØ" #: timezones.h:181 msgid "America/Eirunepe" msgstr "ē¾Žę“²/艾魯內佩" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "äŗžé¦¬éœč„æéƒØ" #: timezones.h:184 msgid "America/El_Salvador" msgstr "ē¾Žę“²/č–©ēˆ¾ē“¦å¤š" #: timezones.h:185 msgid "America/Ensenada" msgstr "ē¾Žę“²/恩森那達" #: timezones.h:186 msgid "America/Fortaleza" msgstr "ē¾Žę“²/ē¦å””é›·č–©" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "å·“č„æę±åŒ—éƒØļ¼ˆMA态PI态CE态RN态PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "ē¾Žę“²/éŸ‹ę©å ”" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "ē¾Žę“²/葛雷斯灣" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "大脿擋時間 - ę–°ę–Æē§‘ē“°äŗžēœ - ęœŖéµē…§ DST 1966-1971 ēš„åœ°å€" #: timezones.h:193 msgid "America/Godthab" msgstr "ē¾Žę“²/é«˜ē‰¹å“ˆ" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "å¤§éƒØåˆ†åœ°å€" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "ē¾Žę“²/éµē£" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "大脿擋時間 - ę‹‰åøƒå¤šēˆ¾ - å¤§éƒØåˆ†åœ°å€" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "ē¾Žę“²/大特克" #: timezones.h:200 msgid "America/Grenada" msgstr "ē¾Žę“²/ę ¼ē‘žē“é”" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "ē¾Žę“²/ē“œå¾·ę“›ä½©" #: timezones.h:202 msgid "America/Guatemala" msgstr "ē¾Žę“²/ē“œåœ°é¦¬ę‹‰" #: timezones.h:203 msgid "America/Guayaquil" msgstr "ē¾Žę“²/ē“œäŗžåŸŗēˆ¾" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "大陸" #: timezones.h:206 msgid "America/Guyana" msgstr "ē¾Žę“²/č“‹äŗžé‚£" #: timezones.h:207 msgid "America/Halifax" msgstr "ē¾Žę“²/å“ˆåˆ©ę³•å…‹ę–Æ" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "大脿擋時間 - ę–°ę–Æē§‘ē“°äŗžēœļ¼ˆå¤§éƒØåˆ†åœ°å€ļ¼‰ļ¼ŒPEI" #: timezones.h:210 msgid "America/Havana" msgstr "ē¾Žę“²/å“ˆē“¦é‚£" #: timezones.h:211 msgid "America/Hermosillo" msgstr "ē¾Žę“²/č‰¾ēˆ¾čŽ«č„æę­" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "å±±č„ˆęØ™ęŗ–ę™‚é–“ - 瓢諾拉" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "ē¾Žę“²/å°ē¬¬å®‰é‚£å·ž/å°ē¬¬å®‰ē“ę³¢é‡Œ" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "ę±éƒØę™‚é–“ - å°åœ°å®‰ē“å·ž - å¤§éƒØåˆ†åœ°å€" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "ē¾Žę“²/å°ē¬¬å®‰é‚£å·ž/ē“å…‹ę–Æ" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "中央時間 - å°åœ°å®‰ē“å·ž - 史唔克郔" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "ē¾Žę“²/å°ē¬¬å®‰é‚£å·ž/é¦¬å€«ęˆˆ" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "ę±éƒØę™‚é–“ - å°åœ°å®‰ē“å·ž - å…‹å‹žē¦éƒ”" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "ē¾Žę“²āˆ•å°ē¬¬å®‰é‚£å·žāˆ•å½¼å¾—å ”" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "ę±éƒØę™‚é–“ - å°åœ°å®‰ē“å·ž - ę“¾å…‹éƒ”" #: timezones.h:226 msgid "America/Indianapolis" msgstr "ē¾Žę“²/å°ē¬¬å®‰ē“ę³¢é‡Œ" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "ē¾Žę“²āˆ•å°ē¬¬å®‰é‚£å·žāˆ•ę³°ēˆ¾åŸŽ" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "中央時間 - å°åœ°å®‰ē“å·ž - 佩裔郔" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "ē¾Žę“²/å°ē¬¬å®‰é‚£å·ž/偉威" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "ę±éƒØę™‚é–“ - å°åœ°å®‰ē“å·ž - ē‘žå£«éƒ”" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "ē¾Žę“²āˆ•å°ē¬¬å®‰é‚£å·žāˆ•ęŗ«ę£®ę–Æ" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "ę±éƒØę™‚é–“ - å°åœ°å®‰ē“å·ž - ęˆ“ē¶­ę–Æć€ęœäæę–Æć€ē“å…‹ę–Æä»„åŠé¦¬äøéƒ”" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "ē¾Žę“²āˆ•å°ē¬¬å®‰é‚£å·žāˆ•åØē“é¦¬å…‹" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "ę±éƒØę™‚é–“ - å°åœ°å®‰ē“ - ę™®ę‹‰ę–ÆåŸŗéƒ”" #: timezones.h:239 msgid "America/Inuvik" msgstr "ē¾Žę“²/ä¼Šē“ē¶­å…‹" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "å±±č„ˆę™‚é–“ - č„æåŒ—åœ°å€č„æéƒØ" #: timezones.h:242 msgid "America/Iqaluit" msgstr "ē¾Žę“²/ä¼Šå”é­Æä¼Šē‰¹" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "ę±éƒØę™‚é–“ - åŠŖé‚£ē¦ę±éƒØ - å¤§éƒØåˆ†åœ°å€" #: timezones.h:245 msgid "America/Jamaica" msgstr "ē¾Žę“²/ē‰™č²·åŠ " #: timezones.h:246 msgid "America/Jujuy" msgstr "ē¾Žę“²/čƒ”å‰" #: timezones.h:247 msgid "America/Juneau" msgstr "ē¾Žę“²/朱諾" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "é˜æę‹‰ę–ÆåŠ ę™‚é–“ - é˜æę‹‰ę–ÆåŠ ē‹¹é•·åœ°" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "ē¾Žę“²/č‚Æå””åŸŗå·ž/č·Æę˜“ē¶­ēˆ¾" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "ę±éƒØę™‚é–“ - č‚Æå””åŸŗå·ž - č·Æę˜“ē¶­ēˆ¾åœ°å€" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "ē¾Žę“²/č‚Æå””åŸŗå·ž/č’™åœ°å»ē¾…" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "ę±éƒØę™‚é–“ - č‚Æå””åŸŗå·ž - å‰ę©éƒ”" #: timezones.h:256 msgid "America/Knox_IN" msgstr "ē¾Žę“²āˆ•ē“å…‹ę–Æļ¼ˆå°ē¬¬å®‰é‚£å·žļ¼‰" #: timezones.h:257 msgid "America/La_Paz" msgstr "ē¾Žę“²/拉巓斯" #: timezones.h:258 msgid "America/Lima" msgstr "ē¾Žę“²/利馬" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "ē¾Žę“²/ę“›ę‰ē£Æ" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "太平擋時間" #: timezones.h:262 msgid "America/Louisville" msgstr "ē¾Žę“²/č·Æę˜“ē¶­ēˆ¾" #: timezones.h:263 msgid "America/Maceio" msgstr "ē¾Žę“²/å¢Øå”žę­" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "é˜æę‹‰ęˆˆę–Æļ¼Œč³½å‰č²" #: timezones.h:266 msgid "America/Managua" msgstr "ē¾Žę“²/é¦¬ę‹æē“œ" #: timezones.h:267 msgid "America/Manaus" msgstr "ē¾Žę“²/瑪瑙斯" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "äŗžé¦¬éœę±éƒØ" #: timezones.h:270 msgid "America/Marigot" msgstr "ē¾Žę“²āˆ•é¦¬åˆ©ę ¼" #: timezones.h:271 msgid "America/Martinique" msgstr "ē¾Žę“²/馬汀尼克" #: timezones.h:272 msgid "America/Matamoros" msgstr "ē¾Žę“²/é¦¬å””čŽ«ē¾…ę–Æ" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "ē¾Žåœ‹äø­å¤®ę™‚é–“ - ē§‘é˜æéŸ‹ę‹‰ć€ęœč˜­å“„ć€ę–°čŠę˜‚ć€å””ęÆ›åˆ©åø•ę–Æļ¼Œčæ‘ē¾Žåœ‹é‚Šē•Œ" #: timezones.h:275 msgid "America/Mazatlan" msgstr "ē¾Žę“²/é¦¬å”žē‰¹č˜­" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "å±±č„ˆę™‚é–“ - S Bajać€ē“äŗžé‡Œē‰¹å·žć€ę–°ē“åØœé˜æå·ž" #: timezones.h:278 msgid "America/Mendoza" msgstr "ē¾Žę“²/é–€å¤šč–©" #: timezones.h:279 msgid "America/Menominee" msgstr "ē¾Žę“²/門諾米尼" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "中央時間 - 密脿根 - 迪金森、喬治比克、Iron ä»„åŠē±³č«¾ē±³å°¼éƒ”" #: timezones.h:282 msgid "America/Merida" msgstr "ē¾Žę“²/ę¢…é‡Œé”" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "中央時間 - åŽä½©åˆ‡ć€å°¤å”å¦" #: timezones.h:285 msgid "America/Mexico_City" msgstr "ē¾Žę“²/墨脿哄" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "中央時間 - å¤§éƒØåˆ†åœ°å€" #: timezones.h:288 msgid "America/Miquelon" msgstr "ē¾Žę“²/åÆ†å…‹ęœ—" #: timezones.h:289 msgid "America/Moncton" msgstr "ē¾Žę“²āˆ•č’™å…‹é “" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "大脿擋時間 - ę–°ä¼Æå€«ē‘žå…‹" #: timezones.h:292 msgid "America/Monterrey" msgstr "ē¾Žę“²/č’™ē‰¹ē‘ž" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from US border" msgstr "墨脿哄中央時間 - ē§‘é˜æéŸ‹ę‹‰ć€ęœč˜­å“„ć€ę–°čŠę˜‚ć€å””ęÆ›åˆ©åø•ę–Æļ¼Œé›¢ē¾Žåœ‹é‚Šē•Œč¼ƒé " #: timezones.h:295 msgid "America/Montevideo" msgstr "ē¾Žę“²/č’™ē‰¹ē¶­å¤š" #: timezones.h:296 msgid "America/Montreal" msgstr "ē¾Žę“²/蒙特婁" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "ę±éƒØę™‚é–“ - 魁北克 - å¤§éƒØåˆ†åœ°å€" #: timezones.h:299 msgid "America/Montserrat" msgstr "ē¾Žę“²/č’™å”žę‹‰ē‰¹" #: timezones.h:300 msgid "America/Nassau" msgstr "ē¾Žę“²/拿梭" #: timezones.h:301 msgid "America/New_York" msgstr "ē¾Žę“²/瓐瓄" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "ę±éƒØę™‚é–“" #: timezones.h:304 msgid "America/Nipigon" msgstr "ē¾Žę“²/尼埤哗" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "ę±éƒØę™‚é–“ - å®‰å¤§ē•„čˆ‡é­åŒ—å…‹ - ęœŖéµē…§ DST 1967-1973 ēš„åœ°å€" #: timezones.h:307 msgid "America/Nome" msgstr "ē¾Žę“²/諾姆" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "é˜æę‹‰ę–ÆåŠ ę™‚é–“ - é˜æę‹‰ę–ÆåŠ č„æéƒØ" #: timezones.h:310 msgid "America/Noronha" msgstr "ē¾Žę“²/č«¾č‹„å°¼äŗž" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "大脿擋群島" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "ē¾Žę“²āˆ•åŒ—é”ē§‘ä»–āˆ•äø­éƒØ" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "中央時間 - åŒ—é”ē§‘ä»– - 儧利佛郔" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "ē¾Žę“²āˆ•åŒ—é”ē§‘ä»–āˆ•ē“ę²™å€«" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "中央時間 - åŒ—é”ē§‘ä»– - ę‘©é “éƒ”ļ¼ˆäøåŒ…å«ę›¼äø¹åœ°å€ļ¼‰" #: timezones.h:319 msgid "America/Ojinaga" msgstr "ē¾Žę“²/Ojinaga" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "ē¾Žåœ‹å±±č„ˆę™‚é–“ - å„‡ē“¦ē“¦ļ¼Œčæ‘ē¾Žåœ‹é‚Šē•Œ" #: timezones.h:322 msgid "America/Panama" msgstr "ē¾Žę“²/巓拿馬" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "ē¾Žę“²/ę½˜å°¼ēˆ¾ę±" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "ę±éƒØę™‚é–“ - ę—å°¼å”ć€åŠŖē“ę­¦ē‰¹" #: timezones.h:326 msgid "America/Paramaribo" msgstr "ē¾Žę“²/å·“ę‹‰é¦¬åˆ©ę³¢" #: timezones.h:327 msgid "America/Phoenix" msgstr "ē¾Žę“²/鳳凰城" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "å±±č„ˆęØ™ęŗ–ę™‚é–“ - äŗžåˆ©ę”‘é‚£" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "ē¾Žę“²/太子港" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "ē¾Žę“²āˆ•ę³¢å¤šč«¾ä½›" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "ē¾Žę“²/č„æē­ē‰™ęøÆ" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "ē¾Žę“²/維利尤港" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "ęœ—å¤šå°¼äŗžå·ž" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "ē¾Žę“²/ę³¢å¤šé»Žå„" #: timezones.h:337 msgid "America/Rainy_River" msgstr "ē¾Žę“²/ē‘žå°¼ę²³" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "中央時間 - ē‘žå°¼ę²³čˆ‡å¼—ęœ—č„æę–Æå ”ć€å®‰å¤§ē•„" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "ē¾Žę“²/ęœ—é‡‘ē£" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "中央時間 - åŠŖé‚£ē¦äø­éƒØ" #: timezones.h:343 msgid "America/Recife" msgstr "ē¾Žę“²/ē‘žč„æä½›" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "ę³¢ē“å§†åøƒęŸÆå·ž" #: timezones.h:346 msgid "America/Regina" msgstr "ē¾Žę“²/ē‘žå‚‘é‚£" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "中央標準時間 - č–©å…‹å…¶č¬ēœ - å¤§éƒØåˆ†åœ°å€" #: timezones.h:349 msgid "America/Resolute" msgstr "ē¾Žę“²āˆ•ē¾…ę–Æé­Æē‰¹" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "ę±éƒØęØ™ęŗ–ę™‚é–“ - ē¾…ę–Æé­Æē‰¹ć€åŠŖé‚£ē¦" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "ē¾Žę“²/åøƒč˜­ē§‘ę²³" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "é˜æå”" #: timezones.h:355 msgid "America/Rosario" msgstr "ē¾Žę“²/ē¾…č–©é‡Œå„§" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "ē¾Žę“²/č–å””ä¼ŠčŽŽč²ēˆ¾" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "墨脿哄太平擋時間 - é›¢ē¾Žåœ‹é‚Šē•Œč¼ƒé ēš„åŒ—äø‹åŠ åˆ©ē¦å°¼äŗžå·ž" #: timezones.h:359 msgid "America/Santarem" msgstr "ē¾Žę“²/聖唔倫" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "W Para" #: timezones.h:362 msgid "America/Santiago" msgstr "ē¾Žę“²/č–åœ°ē‰™å“„" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "ē¾Žę“²/č–å¤šę˜Žå“„" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "ē¾Žę“²/č–äæē¾…" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "å·“č„æå—éƒØčˆ‡ę±å—éƒØļ¼ˆGO态DF态MG态ES态RJ态SP态PR态SC态RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "ē¾Žę“²/åøå»“ēˆ¾ęÆ”ę”‘" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "åøå»“ēˆ¾ęÆ”ę”‘/Ittoqqortoormiit" #: timezones.h:372 msgid "America/Shiprock" msgstr "ē¾Žę“²/船岩" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "å±±č„ˆę™‚é–“ - ē“ē“¦éœ" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "ē¾Žę“²āˆ•č–å·“ę‰˜ę“›ē¹†" #: timezones.h:376 msgid "America/St_Johns" msgstr "ē¾Žę“²/聖瓄翰" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "ē“čŠ¬č˜­ęØ™ęŗ–ę™‚é–“ļ¼ŒåŒ…ę‹¬ę‹‰åøƒå¤šēˆ¾ę±å—éƒØ" #: timezones.h:379 msgid "America/St_Kitts" msgstr "ē¾Žę“²/č–åŸŗę¬”" #: timezones.h:380 msgid "America/St_Lucia" msgstr "ē¾Žę“²/č–éœ²č„æäŗž" #: timezones.h:381 msgid "America/St_Thomas" msgstr "ē¾Žę“²/聖湯馬斯" #: timezones.h:382 msgid "America/St_Vincent" msgstr "ē¾Žę“²/č–ę–‡ē”Ÿ" #: timezones.h:383 msgid "America/Swift_Current" msgstr "ē¾Žę“²/ę¹ę°“" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "中央標準時間 - č–©å…‹å…¶č¬ēœ - 中脿部" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "ē¾Žę“²/å¾·å¤ę–ÆåŠ å·“" #: timezones.h:387 msgid "America/Thule" msgstr "ē¾Žę“²/圖里" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "圖里/ēš®åœ–éžå…‹" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "ē¾Žę“²/雷灣" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "ę±éƒØę™‚é–“ - 雷灣、安大畄" #: timezones.h:393 msgid "America/Tijuana" msgstr "ē¾Žę“²/ęäŗžē“¦ē“" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "墨脿哄太平擋時間 - é›¢ē¾Žåœ‹é‚Šē•Œč¼ƒčæ‘ēš„åŒ—äø‹åŠ åˆ©ē¦å°¼äŗžå·ž" #: timezones.h:396 msgid "America/Toronto" msgstr "ē¾Žę“²/多倫多" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "ę±éƒØę™‚é–“ - 安大畄 - å¤§éƒØåˆ†åœ°å€" #: timezones.h:399 msgid "America/Tortola" msgstr "ē¾Žę“²/ę‰˜ēˆ¾ę‰˜ę‹‰" #: timezones.h:400 msgid "America/Vancouver" msgstr "ē¾Žę“²/ęŗ«å“„čÆ" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "太平擋時間 - č‹±å±¬å“„å€«ęÆ”äŗžč„æéƒØ" #: timezones.h:403 msgid "America/Virgin" msgstr "ē¾Žę“²āˆ•ē¶­ēˆ¾äŗ¬" #: timezones.h:404 msgid "America/Whitehorse" msgstr "ē¾Žę“²/白馬" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "太平擋時間 - č‚²å…‰å—éƒØ" #: timezones.h:407 msgid "America/Winnipeg" msgstr "ē¾Žę“²/溫尼伯" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "中央時間 - ę›¼å°¼ę‰˜å·“ä»„åŠå®‰å¤§ē•„č„æéƒØ" #: timezones.h:410 msgid "America/Yakutat" msgstr "ē¾Žę“²/äŗžåŗ«ē‰¹" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "é˜æę‹‰ę–ÆåŠ ę™‚é–“ - Alaska panhandle neck" #: timezones.h:413 msgid "America/Yellowknife" msgstr "ē¾Žę“²/黃刀" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "å±±č„ˆę™‚é–“ - äø­å¤®č„æåŒ—åœ°å€" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "å—ę„µę“²/凱脿" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "å‡±č„æē«™ļ¼Œč²é‡ŒåŠå³¶" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "å—ę„µę“²/ęˆ“ē¶­ę–Æ" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "ęˆ“ē¶­ę–Æē«™ļ¼Œē¶­ę–Æē‰¹ē¦ēˆ¾å¾—å¶ŗ" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "å—ę„µę“²/čæŖč’™ā€§čæŖēˆ¾ē¶­ēˆ¾" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "čæŖč’™ā€§čæŖēˆ¾ē¶­ēˆ¾ē«™ļ¼Œé˜æé»›åˆ©åœ°" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "å—ę„µę“²/麄格理" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "éŗ„ę ¼ē†å³¶ē«™ļ¼Œéŗ„ę ¼ē†å³¶" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "å—ę„µę“²/å¢Øē”Ÿ" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "å¢Øē”Ÿē«™ļ¼Œéœå§†ē£" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "å—ę„µę“²/éŗ„å…‹čŽ«å¤š" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "éŗ„å…‹čŽ«å¤šē«™ļ¼Œē¾…ę–Æå³¶" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "å—ę„µę“²/åø•ēˆ¾čŽ«" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "åø•ēˆ¾čŽ«ē«™ļ¼Œę˜‚éŸ‹ēˆ¾å³¶" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "å—ę„µę“²āˆ•ē¾…č„æę‹‰" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "ē¾…č„æę‹‰ē«™ļ¼Œč‰¾ē‰¹åˆ©å³¶" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "å—ę„µę“²/å—ę„µé»ž" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "é˜æę…•å¾—ę£®-å²č€ƒē‰¹ē«™ļ¼Œå—ę„µ" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "å—ę„µę“²/ę˜­å’Œ" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "ę˜­å’Œē«™ļ¼Œå—ę„µé‡£é‰¤å³¶ę±éƒØ" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "å—ę„µę“²/ę±ę–¹" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "ę²ƒę–Æę‰˜å…‹ē«™ļ¼Œå— ē£é»ž" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "åŒ—ę„µ/ęœ—ä¼Šēˆ¾åŸŽ" #: timezones.h:450 msgid "Asia/Aden" msgstr "äŗžę“²/äŗžäø" #: timezones.h:451 msgid "Asia/Almaty" msgstr "äŗžę“²/é˜æę‹‰ęœØåœ–" #: timezones.h:454 msgid "Asia/Amman" msgstr "äŗžę“²/安曼" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "äŗžę“²/é˜æē“å¾·ēˆ¾" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "čŽ«ę–Æē§‘+08 - 白令海" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "äŗžę“²/é˜æå…‹å„—" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "é˜æē‰¹å‹žļ¼ˆAtirau,Gur'yevļ¼‰ć€ę›¼ę ¼ę–Æå„—ļ¼ˆMankistau)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "äŗžę“²/é˜æå…‹ę‰˜č²" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "é˜æå…‹ę‰˜č²ļ¼ˆAktobe)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "äŗžę“²/é˜æä»€å–€å·“å¾—" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "äŗžę“²āˆ•é˜æä»€å“ˆå·“å¾·" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "äŗžę“²/巓格達" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "äŗžę“²/å·“ęž—" #: timezones.h:468 msgid "Asia/Baku" msgstr "äŗžę“²/å·“åŗ«" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "äŗžę“²/曼谷" #: timezones.h:470 msgid "Asia/Beirut" msgstr "äŗžę“²/č²é­Æē‰¹" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "äŗžę“²/比什凱克" #: timezones.h:472 msgid "Asia/Brunei" msgstr "äŗžę“²/汶萊" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "äŗžę“²/åŠ ēˆ¾å„ē­”" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "äŗžę“²āˆ•å–¬å·“å±±" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "č’™å¤ę±ę–¹ēœļ¼Œč˜‡čµ«å·“ē‰¹" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "äŗžę“²āˆ•é‡ę…¶" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "äø­åœ‹å¤§é™øäø­éƒØ - å››å·ć€é›²å—ć€å»£č„æć€é™œč„æć€č²“å·žē­‰ē­‰ć€‚" #: timezones.h:480 msgid "Asia/Chungking" msgstr "äŗžę“²āˆ•é‡ę…¶" #: timezones.h:481 msgid "Asia/Colombo" msgstr "äŗžę“²/åÆå€«å”" #: timezones.h:482 msgid "Asia/Dacca" msgstr "äŗžę“²āˆ•é”å”" #: timezones.h:483 msgid "Asia/Damascus" msgstr "äŗžę“²/大馬士革" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "äŗžę“²/達協" #: timezones.h:485 msgid "Asia/Dili" msgstr "äŗžę“²/åøåŠ›" #: timezones.h:486 msgid "Asia/Dubai" msgstr "äŗžę“²/Ꝝꋜ" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "äŗžę“²/ęœę”‘č²" #: timezones.h:488 msgid "Asia/Gaza" msgstr "äŗžę“²/迦薩" #: timezones.h:489 msgid "Asia/Harbin" msgstr "äŗžę“²/å“ˆēˆ¾ęæ±" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "é»‘é¾ę±Ÿļ¼ˆę¼ ę²³é™¤å¤–ļ¼‰ļ¼Œå‰ęž—" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "äŗžę“²āˆ•čƒ”åæ—ę˜Žåø‚" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "äŗžę“²/香港" #: timezones.h:494 msgid "Asia/Hovd" msgstr "äŗžę“²/ē§‘åøƒå¤š" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "å·“å½„ēƒåˆ—č“‹ć€ęˆˆå£é˜æēˆ¾ę³°ć€å‘¼åøƒå¾·ć€ēƒåøƒč˜‡ć€ęœ­åøƒę±—" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "äŗžę“²/ä¼Šēˆ¾åŗ«čŒØå…‹" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "čŽ«ę–Æē§‘+05 - č²åŠ ēˆ¾ę¹–" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "äŗžę“²/ä¼Šę–Æå¦å ”" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "äŗžę“²/雅加達" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "ēˆŖå“‡čˆ‡č˜‡é–€ē­”č‡˜" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "äŗžę“²/å˜‰é›…ęµ¦ę‹‰" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "ä¼Šåˆ©å®‰ęŸ„äŗžčˆ‡ę‘©é¹æåŠ " #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "äŗžę“²/耶路撒冷" #: timezones.h:508 msgid "Asia/Kabul" msgstr "äŗžę“²/å–€åøƒēˆ¾" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "äŗžę“²/堪察加" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "čŽ«ę–Æē§‘+08 - 堪察加" #: timezones.h:512 msgid "Asia/Karachi" msgstr "äŗžę“²/å–€ę‹‰čš©" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "äŗžę“²/å–€ä»€å™¶ēˆ¾" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "č„æč—čˆ‡ę–°ē–†" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "äŗžę“²/加德滿都" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "äŗžę“²/加德滿都" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "äŗžę“²/åŠ ēˆ¾å„ē­”" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "äŗžę“²/å…‹ę‹‰ę–Æč«¾äŗžēˆ¾ę–Æå…‹" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "čŽ«ę–Æē§‘+04 - č‘‰å°¼å”žę²³" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "äŗžę“²/吉隆坔" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "é¦¬ä¾†č„æäŗžåŠå³¶" #: timezones.h:525 msgid "Asia/Kuching" msgstr "äŗžę“²/å¤ę™‰" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "ę²™å·“čˆ‡ę²™å‹žč¶Š" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "äŗžę“²/科威特" #: timezones.h:529 msgid "Asia/Macao" msgstr "äŗžę“²/澳門" #: timezones.h:530 msgid "Asia/Macau" msgstr "äŗžę“²/澳門" #: timezones.h:531 msgid "Asia/Magadan" msgstr "äŗžę“²/馬加丹" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "čŽ«ę–Æē§‘+08 - 馬加丹" #: timezones.h:534 msgid "Asia/Makassar" msgstr "äŗžę“²āˆ•éŒ«ę±Ÿ" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "å©†ē¾…ę±éƒØčˆ‡å—éƒØć€č„æé‡Œč²ę–Æć€å³‡é‡Œå³¶ć€Nusa Tengarrać€č„æåøę±¶" #: timezones.h:537 msgid "Asia/Manila" msgstr "äŗžę“²/馬尼拉" #: timezones.h:538 msgid "Asia/Muscat" msgstr "äŗžę“²/馬斯喀特" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "äŗžę“²/å°¼ē§‘č„æäŗž" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "äŗžę“²/新庫斯內欔" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "čŽ«ę–Æē§‘+03 - 新庫斯內欔" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "äŗžę“²/ę–°č„æä¼Æåˆ©äŗž" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "čŽ«ę–Æē§‘+03 - ę–°č„æä¼Æåˆ©äŗž" #: timezones.h:546 msgid "Asia/Omsk" msgstr "äŗžę“²/é„‚ęœØę–Æå…‹" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "čŽ«ę–Æē§‘+03 - č„æä¼Æåˆ©äŗžč„æéƒØ" #: timezones.h:549 msgid "Asia/Oral" msgstr "äŗžę“²āˆ•ę­ē¾…" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "å“ˆč–©å…‹č„æéƒØ" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "äŗžę“²/金邊" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "äŗžę“²/å¤ē”ø" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "å©†ē¾…č„æéƒØčˆ‡äø­éƒØ" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "äŗžę“²/平壤" #: timezones.h:557 msgid "Asia/Qatar" msgstr "äŗžę“²/協達" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "äŗžę“²āˆ•å„ŽčŒ²ē¾…ē­”" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "å…‹å­œå‹’å„§ēˆ¾é”ļ¼ˆKyzylorda态Kzyl-Orda)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "äŗžę“²/仰光" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "äŗžę“²/利雅得" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "äŗžę“²/利雅得87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "äŗžę“²/利雅得88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "äŗžę“²/利雅得89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "äŗžę“²/čƒ”åæ—ę˜Žåø‚" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "äŗžę“²āˆ•åŗ«é " #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "čŽ«ę–Æē§‘+07 - 庫頁島" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "äŗžę“²/ę’’é¦¬ēˆ¾ē½•" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "ēƒčŒ²åˆ„å…‹ę–Æå¦č„æéƒØ" #: timezones.h:573 msgid "Asia/Seoul" msgstr "äŗžę“²/é¦–ēˆ¾" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "äŗžę“²/上海" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "äø­åœ‹å¤§é™øę±éƒØ - åŒ—äŗ¬ć€å»£ę±ć€äøŠęµ·ē­‰ē­‰" #: timezones.h:577 msgid "Asia/Singapore" msgstr "äŗžę“²/ę–°åŠ å”" #: timezones.h:578 msgid "Asia/Taipei" msgstr "äŗžę“²/台北" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "äŗžę“²/唔什干" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "ēƒčŒ²åˆ„å…‹ę–Æå¦ę±éƒØ" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "äŗžę“²/ē¬¬ęÆ”åˆ©ę–Æ" #: timezones.h:583 msgid "Asia/Tehran" msgstr "äŗžę“²/å¾·é»‘č˜­" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "äŗžę“²āˆ•ē‰¹ę‹‰ē¶­å¤«" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "äŗžę“²/č¾›åøƒ" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "äŗžę“²/č¾›åøƒ" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "äŗžę“²/ę±äŗ¬" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "äŗžę“²/ēƒęˆŽę½˜ē•¶" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "äŗžę“²/ēƒč˜­å·“ę‰˜" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "äŗžę“²/ēƒč˜­å·“ę‰˜" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "äŗžę“²/ēƒé­ÆęœØé½Š" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "å¤§éƒØåˆ†č„æč—å’Œę–°ē–†åœ°å€" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "äŗžę“²/ę°øē" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "äŗžę“²/ęµ·åƒå““" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "čŽ«ę–Æē§‘+07 - é˜æå§†ę²³" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "äŗžę“²/雅庫欔克" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "čŽ«ę–Æē§‘+06 - čŠē“ę²³" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "äŗžę“²/č‘‰å”ę·ē³å ”" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "čŽ«ę–Æē§‘+02 - ēƒę‹‰å±±" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "äŗžę“²/č‘‰é‡Œęŗ«" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "大脿擋/äŗžé€Ÿēˆ¾ē¾¤å³¶" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "äŗžé€Ÿēˆ¾ē¾¤å³¶" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "大脿擋/百慕達" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "大脿擋/å”ē“é‡Œē¾¤å³¶" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "åŠ é‚£åˆ©ē¾¤å³¶" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "大脿擋/ē¶­å¾·č§’" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "大脿擋/法羅群島" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "大脿擋/法羅群島" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "大脿擋/ęšé¦¬å»¶å³¶" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "大脿擋/馬德拉群島" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "馬德拉群島" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "大脿擋/é›·å…‹é›…ē¶­å…‹" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "大脿擋/å—å–¬ę²»äŗž" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "大脿擋/史坦利島" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "大脿擋/č–čµ«å‹’ē“å³¶" #: timezones.h:625 msgid "Australia/ACT" msgstr "ę¾³ę“²āˆ•ę¾³ę“²é¦–åŗœ" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ę¾³ę“²āˆ•é˜æå¾·čŠå¾·" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "å—ę¾³ę“²" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "澳擲/åøƒé‡Œę–Æęœ¬" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "ę˜†å£«č˜­ - å¤§éƒØåˆ†åœ°å€" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ę¾³ę“²āˆ•åøƒē¾…č‚ÆåøŒēˆ¾" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "ę–°å—åØēˆ¾ę–Æ - Yancowinna" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ę¾³ę“²āˆ•åŽåŸ¹ę‹‰" #: timezones.h:636 msgid "Australia/Currie" msgstr "ę¾³ę“²āˆ•å”é‡Œ" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "å””ę–Æé¦¬å°¼äŗž - åœ‹ēŽ‹å³¶" #: timezones.h:639 msgid "Australia/Darwin" msgstr "澳擲/é”ēˆ¾ę–‡åø‚" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "ę¾³ę“²åŒ—é ˜åœ°" #: timezones.h:642 msgid "Australia/Eucla" msgstr "澳擲/尤克拉" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "č„æę¾³å¤§åˆ©äŗž - å°¤å…‹ę‹‰åœ°å€" #: timezones.h:645 msgid "Australia/Hobart" msgstr "澳擲/å“ˆå·“ē‰¹" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "å””ę–Æé¦¬å°¼äŗž - å¤§éƒØåˆ†åœ°å€" #: timezones.h:648 msgid "Australia/LHI" msgstr "ę¾³ę“²āˆ•LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "澳擲/ęž—å¾·ę›¼" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "ę˜†å£«č˜­ - 假旄群島" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "澳擲/ē¾…č±Ŗ" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "ē¾…č±Ŗå³¶" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "澳擲/墨爾本" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "ē¶­å¤šåˆ©äŗž" #: timezones.h:658 msgid "Australia/North" msgstr "ę¾³ę“²āˆ•åŒ—éƒØ" #: timezones.h:659 msgid "Australia/NSW" msgstr "ę¾³ę“²āˆ•ę–°å—åØēˆ¾ę–Æ" #: timezones.h:660 msgid "Australia/Perth" msgstr "澳擲/伯斯" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "č„æę¾³å¤§åˆ©äŗž - å¤§éƒØåˆ†åœ°å€" #: timezones.h:663 msgid "Australia/Queensland" msgstr "澳擲/ę˜†å£«č˜­" #: timezones.h:664 msgid "Australia/South" msgstr "ę¾³ę“²āˆ•å—éƒØ" #: timezones.h:665 msgid "Australia/Sydney" msgstr "澳擲/雪梨" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "ę–°å—åØēˆ¾ę–Æ - å¤§éƒØåˆ†åœ°å€" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ę¾³ę“²āˆ•å””ę–Æé¦¬å°¼äŗž" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ę¾³ę“²āˆ•ē¶­å¤šåˆ©äŗž" #: timezones.h:670 msgid "Australia/West" msgstr "ę¾³ę“²āˆ•č„æéƒØ" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ę¾³ę“²āˆ•ęšē§‘ē¶­ē“" #: timezones.h:672 msgid "Brazil/Acre" msgstr "å·“č„æāˆ•é˜æå”" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "å·“č„æāˆ•čæŖč«¾ē¾…å°¼äŗžå³¶" #: timezones.h:674 msgid "Brazil/East" msgstr "å·“č„æāˆ•ę±å²ø" #: timezones.h:675 msgid "Brazil/West" msgstr "å·“č„æāˆ•č„æéƒØ" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "åŠ ę‹æå¤§āˆ•å¤§č„æę“‹å²ø" #: timezones.h:677 msgid "Canada/Central" msgstr "åŠ ę‹æå¤§āˆ•äø­éƒØ" #: timezones.h:678 msgid "Canada/Eastern" msgstr "åŠ ę‹æå¤§āˆ•ę±å²ø" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "åŠ ę‹æå¤§āˆ•č–©å®¢å…¶č¬ēœ" #: timezones.h:680 msgid "Canada/Mountain" msgstr "åŠ ę‹æå¤§āˆ•å±±č„ˆå€" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "åŠ ę‹æå¤§āˆ•ē“čŠ¬č˜­" #: timezones.h:682 msgid "Canada/Pacific" msgstr "åŠ ę‹æå¤§āˆ•å¤Ŗå¹³ę“‹å²ø" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "åŠ ę‹æå¤§āˆ•č–©å…‹ę–Æå…¶č¬ēœ" #: timezones.h:684 msgid "Canada/Yukon" msgstr "åŠ ę‹æå¤§āˆ•č‚²ē©ŗ" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "ę™ŗåˆ©āˆ•å¤§é™øę™‚å€" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "ę™ŗåˆ©āˆ•å¾©ę“»å³¶" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "古巓" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "埃及" #: timezones.h:692 msgid "Eire" msgstr "ę„›ēˆ¾č˜­" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/ę ¼ęž—åØę²»" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/é€šē”Ø" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/ē„–é­Æ" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "歐擲/é˜æå§†ę–Æē‰¹äø¹" #: timezones.h:731 msgid "Europe/Andorra" msgstr "歐擲/å®‰é“ēˆ¾" #: timezones.h:732 msgid "Europe/Athens" msgstr "歐擲/é›…å…ø" #: timezones.h:733 msgid "Europe/Belfast" msgstr "歐擲/č²ēˆ¾ē™¼ę–Æē‰¹" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "歐擲/č²ēˆ¾ę ¼å‹’" #: timezones.h:735 msgid "Europe/Berlin" msgstr "歐擲/꟏ꞗ" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "歐擲/åøƒę‹‰ē¬¬ę–Æę‹‰ē“¦" #: timezones.h:737 msgid "Europe/Brussels" msgstr "歐擲/åøƒé­Æå”žēˆ¾" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "歐擲/åøƒåŠ å‹’ę–Æē‰¹" #: timezones.h:739 msgid "Europe/Budapest" msgstr "歐擲/åøƒé”ä½©ę–Æ" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "歐擲/åŸŗåøŒé‚£ēƒ" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "歐擲/å“„ęœ¬å“ˆę ¹" #: timezones.h:742 msgid "Europe/Dublin" msgstr "歐擲/éƒ½ęŸęž—" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "歐擲/ē›“åøƒē¾…é™€" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "ę­ę“²āˆ•ę ¹č„æ" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "歐擲/čµ«ēˆ¾č¾›åŸŗ" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "ę­ę“²āˆ•ę›¼å³¶" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "歐擲/ä¼Šę–Æå¦å ”" #: timezones.h:748 msgid "Europe/Jersey" msgstr "ę­ę“²āˆ•ę¾¤č„æå³¶" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "歐擲/åŠ é‡ŒåÆ§ę ¼å‹’" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "čŽ«ę–Æē§‘-01 - åŠ é‡ŒåÆ§ę ¼å‹’" #: timezones.h:752 msgid "Europe/Kiev" msgstr "歐擲/åŸŗč¼”" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "歐擲/é‡Œę–Æęœ¬" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "歐擲/ē›§åøƒé›…é‚£" #: timezones.h:759 msgid "Europe/London" msgstr "歐擲/倫敦" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "歐擲/盧森堔" #: timezones.h:761 msgid "Europe/Madrid" msgstr "歐擲/馬德里" #: timezones.h:764 msgid "Europe/Malta" msgstr "歐擲/é¦¬ēˆ¾ä»–" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "ę­ę“²āˆ•ē‘Ŗéŗ—ęøÆ" #: timezones.h:766 msgid "Europe/Minsk" msgstr "歐擲/ę˜Žę–Æå…‹" #: timezones.h:767 msgid "Europe/Monaco" msgstr "歐擲/ę‘©ē“å“„" #: timezones.h:768 msgid "Europe/Moscow" msgstr "歐擲/čŽ«ę–Æē§‘" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "čŽ«ę–Æē§‘+00 - äæ„ē¾…ę–Æč„æéƒØ" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "歐擲/å°¼ē§‘č„æäŗž" #: timezones.h:772 msgid "Europe/Oslo" msgstr "歐擲/儧斯陸" #: timezones.h:773 msgid "Europe/Paris" msgstr "歐擲/巓黎" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "ę­ę“²āˆ•ę™®å“„é‡Œå”" #: timezones.h:775 msgid "Europe/Prague" msgstr "歐擲/åøƒę‹‰ę ¼" #: timezones.h:776 msgid "Europe/Riga" msgstr "歐擲/里加" #: timezones.h:777 msgid "Europe/Rome" msgstr "歐擲/羅馬" #: timezones.h:778 msgid "Europe/Samara" msgstr "歐擲/沙馬拉" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "čŽ«ę–Æē§‘ - ę²™é¦¬ę‹‰ć€ēƒå¾·ē©†ēˆ¾ē‰¹" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "歐擲/č–é¦¬åˆ©č«¾" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "歐擲/薩拉耶佛" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "歐擲/č¾›č²ę“›ę™®" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "å…‹č£ē±³äŗžåŠå³¶äø­éƒØ" #: timezones.h:786 msgid "Europe/Skopje" msgstr "歐擲/å²é«˜å½¼č€¶" #: timezones.h:787 msgid "Europe/Sofia" msgstr "歐擲/ē“¢éžäŗž" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "歐擲/ę–Æå¾·å“„ēˆ¾ę‘©" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "歐擲/å””ęž—" #: timezones.h:790 msgid "Europe/Tirane" msgstr "歐擲/åœ°ę‹‰é‚£" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "ę­ę“²āˆ•č’‚ę‹‰ę–Æę³¢ēˆ¾" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "歐擲/ēƒę—„ęˆˆē¾…å¾·" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "ē›§ę£®å°¼äŗž" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "歐擲/ē“¦ęœčŒ²" #: timezones.h:796 msgid "Europe/Vatican" msgstr "歐擲/梵蒂岔" #: timezones.h:797 msgid "Europe/Vienna" msgstr "歐擲/ē¶­ä¹Ÿē“" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "歐擲/ē¶­ēˆ¾ę‹æ" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "ę­ę“²āˆ•ä¼ēˆ¾åŠ ę ¼å‹’" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "čŽ«ę–Æē§‘+00 - č£ęµ·" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "歐擲/čÆę²™" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "歐擲/ęœ­ę ¼å‹’åøƒ" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "歐擲/ę‰Žę³¢ē¾…ē†±" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "瓮波羅熱、盧干斯克/č–©ę³¢é‡Œč³ˆę±éƒØć€åˆ©č„æę˜Œę–Æå…‹ę±éƒØ" #: timezones.h:807 msgid "Europe/Zurich" msgstr "歐擲/č˜‡é»Žäø–" #: timezones.h:808 msgid "Factory" msgstr "å·„å» " #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "č‹±åœ‹-ę„›ēˆ¾č˜­" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "ę ¼ęž—åØę²»" #: timezones.h:816 msgid "Hongkong" msgstr "香港" #: timezones.h:817 msgid "HST" msgstr "å¤åØå¤·ęØ™ęŗ–ę™‚é–“" #: timezones.h:818 msgid "Iceland" msgstr "冰島" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "å°åŗ¦/安唔那那利佛" #: timezones.h:820 msgid "Indian/Chagos" msgstr "å°åŗ¦/ęŸ„ęˆˆę–Æ" #: timezones.h:821 msgid "Indian/Christmas" msgstr "å°åŗ¦/ęŸ„ęˆˆę–Æ" #: timezones.h:822 msgid "Indian/Cocos" msgstr "å°åŗ¦/åÆåÆę–Æ" #: timezones.h:823 msgid "Indian/Comoro" msgstr "å°åŗ¦/葛摩群島" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "å°åŗ¦/å…‹ēˆ¾ę ¼å€«ē¾¤å³¶" #: timezones.h:825 msgid "Indian/Mahe" msgstr "å°åŗ¦/瑪黑" #: timezones.h:826 msgid "Indian/Maldives" msgstr "å°åŗ¦/馬爾地夫" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "å°åŗ¦/ęØ”é‡Œč„æę–Æ" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "å°åŗ¦/馬瓄特島" #: timezones.h:829 msgid "Indian/Reunion" msgstr "å°åŗ¦/留尼旺島" #: timezones.h:830 msgid "Iran" msgstr "ä¼Šęœ—" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "ä»„č‰²åˆ—" #: timezones.h:833 msgid "Jamaica" msgstr "ē‰™č²·åŠ " #: timezones.h:834 msgid "Japan" msgstr "ę—„ęœ¬" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "ē“œåŠ ęž—å³¶" #: timezones.h:836 msgid "Libya" msgstr "åˆ©ęÆ”äŗž" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "å¢Øč„æå“„āˆ•åŒ—äø‹åŠ åˆ©ē¦å°¼äŗžå·ž" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "å¢Øč„æå“„āˆ•å—äø‹åŠ åˆ©ē¦å°¼äŗžå·ž" #: timezones.h:840 msgid "Mexico/General" msgstr "å¢Øč„æå“„āˆ•ę™®é€šåœ°å€" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "äø­ę±āˆ•åˆ©é›…å¾· 87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "äø­ę±āˆ•åˆ©é›…å¾· 88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "äø­ę±āˆ•åˆ©é›…å¾· 89" #: timezones.h:844 msgid "MST" msgstr "å±±å€ęØ™ęŗ–ę™‚é–“" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "ē“ē“¦éœ" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "太平擋/äŗžåŗ‡" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "太平擋/å„§å…‹č˜­" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "太平擋/å ę¾" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "ęŸ„å””å§†ē¾¤å³¶" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "太平擋/ę„šå…‹" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "ę„šå…‹ļ¼ˆē‰¹é­Æå…‹ļ¼‰čˆ‡é›…ęµ¦å³¶" #: timezones.h:859 msgid "Pacific/Easter" msgstr "太平擋/復擻島" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "å¾©ę“»å³¶ä»„åŠ Sala y Gomez" #: timezones.h:862 msgid "Pacific/Efate" msgstr "太平擋/ä¼Šę³•ę" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "太平擋/č‹±å¾·č²é‡Œ" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "費尼克斯群島" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "太平擋/法克儧佛" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "太平擋/ę–ęæŸ" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "太平擋/ē¦é‚£åÆŒę" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "太平擋/åŠ ę‹‰åø•å“„ē¾¤å³¶" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "åŠ ę‹‰å·“ęˆˆę–Æē¾¤å³¶" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "太平擋/ē”˜ē•¢ēˆ¾" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "ē”˜ęÆ”ēˆ¾ē¾¤å³¶" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "太平擋/ē“œé”ēˆ¾å”ē“ēˆ¾å³¶" #: timezones.h:876 msgid "Pacific/Guam" msgstr "太平擋/關島" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "太平擋/檀香山" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "å¤åØå¤·" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "太平擋/強斯敦" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "強斯頓環礁" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "太平擋/聖誕島" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "åˆ—å¶¼ē¾¤å³¶" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "太平擋/ē§‘ę–ÆčŠ" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "ęŸÆę–Æé›·" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "太平擋/å¤øåŠ é€£å³¶" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "太平擋/馬久羅" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "太平擋/馬凱薩斯" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "馬克薩斯群島" #: timezones.h:898 msgid "Pacific/Midway" msgstr "太平擋/中途島" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "中途島" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "太平擋/諾魯" #: timezones.h:902 msgid "Pacific/Niue" msgstr "太平擋/瓐埃島" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "太平擋/č«¾ē¦å…‹" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "太平擋/åŠŖē¾Žé›…" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "太平擋/åø•ęžœåø•ęžœ" #: timezones.h:906 msgid "Pacific/Palau" msgstr "太平擋/帛琉" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "太平擋/ēš®ē‰¹å‡±ę©" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "太平擋/ę¾Žč²å³¶" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "ę¾Žč²å³¶ļ¼ˆę³¢ē“ä½©å³¶ļ¼‰" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "太平擋/波那佩" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "太平擋/摩勒斯比港" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "太平擋/ę‹‰ē¾…ę±åŠ å³¶" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "太平擋/å”žē­å³¶" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "å¤Ŗå¹³ę“‹āˆ•č–©ę‘©äŗžē¾¤å³¶" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "太平擋/大溪地島" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "社會群島" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "太平擋/唔拉瓦島" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "å‰ēˆ¾ä¼Æē‰¹ē¾¤å³¶" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "太平擋/ę±åŠ å””ę™®" #: timezones.h:923 msgid "Pacific/Truk" msgstr "太平擋/ę„šå…‹" #: timezones.h:924 msgid "Pacific/Wake" msgstr "太平擋/威克島" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "ē¾Žå±¬åØå…‹å³¶" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "太平擋/ę²ƒåˆ©ę–Æ" #: timezones.h:928 msgid "Pacific/Yap" msgstr "太平擋/雅浦島" #: timezones.h:929 msgid "Poland" msgstr "波蘭" #: timezones.h:930 msgid "Portugal" msgstr "葔萄牙" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "äø­čÆäŗŗę°‘å…±å’Œåœ‹" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "äø­čÆę°‘åœ‹" #: timezones.h:935 msgid "ROK" msgstr "å¤§éŸ“ę°‘åœ‹" #: timezones.h:936 msgid "Singapore" msgstr "ę–°åŠ å”" #: timezones.h:937 msgid "Turkey" msgstr "åœŸč€³å…¶" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "é€šē”Ø" #: timezones.h:940 msgid "US/Alaska" msgstr "ē¾Žåœ‹āˆ•é˜æę‹‰ę–ÆåŠ " #: timezones.h:941 msgid "US/Aleutian" msgstr "ē¾Žåœ‹āˆ•é˜æē•™ē”³ē¾¤å³¶" #: timezones.h:942 msgid "US/Arizona" msgstr "ē¾Žåœ‹āˆ•äŗžåˆ©ę”‘ē“å·ž" #: timezones.h:943 msgid "US/Central" msgstr "ē¾Žåœ‹āˆ•äø­éƒØ" #: timezones.h:944 msgid "US/Eastern" msgstr "ē¾Žåœ‹āˆ•ę±éƒØ" #: timezones.h:945 msgid "US/East-Indiana" msgstr "ē¾Žåœ‹āˆ•ę±-å°ē¬¬å®‰é‚£" #: timezones.h:946 msgid "US/Hawaii" msgstr "ē¾Žåœ‹āˆ•å¤åØå¤·" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "ē¾Žåœ‹āˆ•å°ē¬¬å®‰é‚£-史唔克" #: timezones.h:948 msgid "US/Michigan" msgstr "ē¾Žåœ‹āˆ•åÆ†č„æę ¹" #: timezones.h:949 msgid "US/Mountain" msgstr "ē¾Žåœ‹āˆ•å±±č„ˆå€" #: timezones.h:950 msgid "US/Pacific" msgstr "ē¾Žåœ‹āˆ•å¤Ŗå¹³ę“‹å²ø" #: timezones.h:951 msgid "US/Samoa" msgstr "ē¾Žåœ‹āˆ•č–©ę‘©äŗžē¾¤å³¶" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "ē„–é­Æ" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/cs.po0000664000175000017500000017756714632072346023713 0ustar fabiofabio# translation of timezones.tip.po to Czech # # Milan Kerslager , 2002, 2007, 2010. # Miloslav Trmac , 2004. # Nikola Å tohanzl , 2006. # Adam Pribyl , 2008. # msgid "" msgstr "" "Project-Id-Version: timezones.tip\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-20 16:04+0200\n" "PO-Revision-Date: 2010-08-22 10:45+0100\n" "Last-Translator: Milan KerÅ”lĆ”ger \n" "Language-Team: Czech >\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Afrika/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Afrika/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Afrika/Addis_Abeba" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Afrika/Alžírsko" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Afrika/Asmara" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Afrika/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Afrika/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Afrika/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Afrika/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Afrika/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Afrika/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Afrika/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Afrika/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Afrika/Cairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Afrika/Kasablanka" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Afrika/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Ceuta & Melilla" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Afrika/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Afrika/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Afrika/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Afrika/Džibuti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Afrika/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Afrika/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Afrika/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Afrika/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Afrika/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Afrika/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Afrika/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Afrika/ChartĆŗm" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Afrika/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Afrika/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "ZĆ”p. Dem. Rep. Kongo" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Afrika/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Afrika/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Afrika/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Afrika/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Afrika/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "Vých. Dem. Rep. Kongo" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Afrika/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Afrika/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Afrika/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Afrika/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Afrika/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Afrika/MogadiÅ”o" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Afrika/Monrovie" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Afrika/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Afrika/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Afrika/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Afrika/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Afrika/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Afrika/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Afrika/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Afrika/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Afrika/Tripolis" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Afrika/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Afrika/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "Amerika/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "AleutskĆ© ostrovy" #: timezones.h:63 msgid "America/Anchorage" msgstr "Amerika/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "AljaÅ”ský čas" #: timezones.h:66 msgid "America/Anguilla" msgstr "Amerika/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "Amerika/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "Amerika/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Tocantins" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Amerika/Argentina/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Buenos Aires (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Amerika/Argentina/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "Catamarca (CT), Chubut (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Amerika/Argentina/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Amerika/Argentina/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "VětÅ”ina umĆ­stěnĆ­ (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Amerika/Argentina/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Jujuy (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Amerika/Argentina/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "La Rioja (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Amerika/Argentina/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "Mendoza (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Amerika/Argentina/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Santa Cruz (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "Amerika/Argentina/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Amerika/Argentina/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "San Juan (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "Amerika/Argentina/San_Luis" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "San Luis (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Amerika/Argentina/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Tucuman (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Amerika/Argentina/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Tierra del Fuego (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "Amerika/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "Amerika/Asuncion" #: timezones.h:110 msgid "America/Atikokan" msgstr "Amerika/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "VýchodnĆ­ standardnĆ­ čas - Atikokan, Ontario a Southampton I, Nunavut" #: timezones.h:113 msgid "America/Atka" msgstr "Amerika/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "Amerika/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "BahĆ­a" #: timezones.h:117 msgid "America/Barbados" msgstr "Amerika/Barbados" #: timezones.h:118 msgid "America/Belem" msgstr "Amerika/Belem" #. comment for time zone America/Belem #: timezones.h:120 msgid "Amapa, E Para" msgstr "Amapa, E Para" #: timezones.h:121 msgid "America/Belize" msgstr "Amerika/Belize" #: timezones.h:122 msgid "America/Blanc-Sablon" msgstr "Amerika/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:124 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "Atlantský standardnĆ­ čas - Quebec - Lower North Shore" #: timezones.h:125 msgid "America/Boa_Vista" msgstr "Amerika/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:127 msgid "Roraima" msgstr "Roraima" #: timezones.h:128 msgid "America/Bogota" msgstr "Amerika/Bogota" #: timezones.h:129 msgid "America/Boise" msgstr "Amerika/Boise" #. comment for time zone America/Boise #: timezones.h:131 msgid "Mountain Time - south Idaho & east Oregon" msgstr "Horský čas - jižnĆ­ Idaho & východnĆ­ Oregon" #: timezones.h:132 msgid "America/Buenos_Aires" msgstr "Amerika/Buenos_Aires" #: timezones.h:133 msgid "America/Cambridge_Bay" msgstr "Amerika/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:135 msgid "Mountain Time - west Nunavut" msgstr "Horský čas - zĆ”padnĆ­ Nunavut" #: timezones.h:136 msgid "America/Campo_Grande" msgstr "Amerika/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:138 msgid "Mato Grosso do Sul" msgstr "Mato Grosso do Sul" #: timezones.h:139 msgid "America/Cancun" msgstr "Amerika/Cancun" #. comment for time zone America/Cancun #: timezones.h:141 msgid "Central Time - Quintana Roo" msgstr "CentrĆ”lnĆ­ čas - Quintana Roo" #: timezones.h:142 msgid "America/Caracas" msgstr "Amerika/Karakas" #: timezones.h:143 msgid "America/Catamarca" msgstr "Amerika/Catamarca" #: timezones.h:144 msgid "America/Cayenne" msgstr "Amerika/Cayenne" #: timezones.h:145 msgid "America/Cayman" msgstr "Amerika/Cayman" #: timezones.h:146 msgid "America/Chicago" msgstr "Amerika/Chicago" #. comment for time zone America/Chicago #: timezones.h:148 msgid "Central Time" msgstr "CentrĆ”lnĆ­ čas" #: timezones.h:149 msgid "America/Chihuahua" msgstr "Amerika/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:151 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "Mexický horský čas - Chihuahua dĆ”le od US hranice" #: timezones.h:152 msgid "America/Coral_Harbour" msgstr "Amerika/Coral_Harbour" #: timezones.h:153 msgid "America/Cordoba" msgstr "Amerika/Kordóba" #: timezones.h:154 msgid "America/Costa_Rica" msgstr "Amerika/Costa_Rica" #: timezones.h:155 msgid "America/Cuiaba" msgstr "Amerika/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:157 msgid "Mato Grosso" msgstr "Mato Grosso" #: timezones.h:158 msgid "America/Curacao" msgstr "Amerika/Curacao" #: timezones.h:159 msgid "America/Danmarkshavn" msgstr "Amerika/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:161 msgid "east coast, north of Scoresbysund" msgstr "VýchodnĆ­ zĆ”liv, sever Scoresbysundu" #: timezones.h:162 msgid "America/Dawson" msgstr "Amerika/Dawson" #. comment for time zone America/Dawson #: timezones.h:164 msgid "Pacific Time - north Yukon" msgstr "Pacifický čas - severnĆ­ Yukon" #: timezones.h:165 msgid "America/Dawson_Creek" msgstr "Amerika/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:167 msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "Horský standardnĆ­ čas - Dawson Creek & Fort Saint John, BritskĆ” Kolumbie" #: timezones.h:168 msgid "America/Denver" msgstr "Amerika/Denver" #. comment for time zone America/Denver #: timezones.h:170 msgid "Mountain Time" msgstr "Horský čas" #: timezones.h:171 msgid "America/Detroit" msgstr "Amerika/Detroit" #. comment for time zone America/Detroit #: timezones.h:173 msgid "Eastern Time - Michigan - most locations" msgstr "VýchodnĆ­ čas - Michigan - větÅ”ina mĆ­st" #: timezones.h:174 msgid "America/Dominica" msgstr "Amerika/Dominica" #: timezones.h:175 msgid "America/Edmonton" msgstr "Amerika/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:177 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "Horský čas - Alberta, východnĆ­ BritskĆ” Kolumbie & zĆ”padnĆ­ Saskatchewan" #: timezones.h:178 msgid "America/Eirunepe" msgstr "Amerika/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:180 msgid "W Amazonas" msgstr "ZĆ”padnĆ­ Amazonie" #: timezones.h:181 msgid "America/El_Salvador" msgstr "Amerika/El_Salvador" #: timezones.h:182 msgid "America/Ensenada" msgstr "Amerika/Ensenada" #: timezones.h:183 msgid "America/Fortaleza" msgstr "Amerika/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:185 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "SeverovýchodnĆ­ BrazĆ­lie (MA, PI, CE, RN, PB)" #: timezones.h:186 msgid "America/Fort_Wayne" msgstr "Amerika/Fort_Wayne" #: timezones.h:187 msgid "America/Glace_Bay" msgstr "Amerika/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:189 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "Atlantský čas - NovĆ© Skotsko - mĆ­sta bez letnĆ­ho času 1966-1971" #: timezones.h:190 msgid "America/Godthab" msgstr "Amerika/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:192 #: timezones.h:361 #: timezones.h:450 #: timezones.h:588 #: timezones.h:751 #: timezones.h:849 #: timezones.h:888 msgid "most locations" msgstr "větÅ”ina mĆ­st" #: timezones.h:193 msgid "America/Goose_Bay" msgstr "Amerika/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:195 msgid "Atlantic Time - Labrador - most locations" msgstr "Atlantský čas - Labrador - větÅ”ina mĆ­st" #: timezones.h:196 msgid "America/Grand_Turk" msgstr "Amerika/Grand_Turk" #: timezones.h:197 msgid "America/Grenada" msgstr "Amerika/Grenada" #: timezones.h:198 msgid "America/Guadeloupe" msgstr "Amerika/Guadeloupe" #: timezones.h:199 msgid "America/Guatemala" msgstr "Amerika/Guatemala" #: timezones.h:200 msgid "America/Guayaquil" msgstr "Amerika/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:202 #: timezones.h:754 #: timezones.h:760 msgid "mainland" msgstr "vnitrozemĆ­" #: timezones.h:203 msgid "America/Guyana" msgstr "Amerika/Guyana" #: timezones.h:204 msgid "America/Halifax" msgstr "Amerika/Halifax" #. comment for time zone America/Halifax #: timezones.h:206 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "Atlantský čas - NovĆ© Skotsko (větÅ”ina mĆ­st), PEI" #: timezones.h:207 msgid "America/Havana" msgstr "Amerika/Havana" #: timezones.h:208 msgid "America/Hermosillo" msgstr "Amerika/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:210 msgid "Mountain Standard Time - Sonora" msgstr "Horský standardnĆ­ čas - Sonora" #: timezones.h:211 msgid "America/Indiana/Indianapolis" msgstr "Amerika/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:213 msgid "Eastern Time - Indiana - most locations" msgstr "VýchodnĆ­ čas - Indiana - větÅ”ina mĆ­st" #: timezones.h:214 msgid "America/Indiana/Knox" msgstr "Amerika/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:216 msgid "Central Time - Indiana - Starke County" msgstr "CentrĆ”lnĆ­ čas - Indiana - Starke County" #: timezones.h:217 msgid "America/Indiana/Marengo" msgstr "Amerika/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:219 msgid "Eastern Time - Indiana - Crawford County" msgstr "VýchodnĆ­ čas - Indiana - Crawford County" #: timezones.h:220 msgid "America/Indiana/Petersburg" msgstr "Amerika/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:222 msgid "Eastern Time - Indiana - Pike County" msgstr "VýchodnĆ­ čas - Indiana - Pike County" #: timezones.h:223 msgid "America/Indianapolis" msgstr "Amerika/Indianapolis" #: timezones.h:224 msgid "America/Indiana/Tell_City" msgstr "Amerika/Indiana/Tell_City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:226 msgid "Central Time - Indiana - Perry County" msgstr "CentrĆ”lnĆ­ čas - Indiana - Perry County" #: timezones.h:227 msgid "America/Indiana/Vevay" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:229 msgid "Eastern Time - Indiana - Switzerland County" msgstr "VýchodnĆ­ čas - Indiana - Switzerland County" #: timezones.h:230 msgid "America/Indiana/Vincennes" msgstr "Amerika/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:232 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "VýchodnĆ­ čas - Indiana - Daviess, Dubois, Knox & Martin Counties" #: timezones.h:233 msgid "America/Indiana/Winamac" msgstr "Amerika/Indiana/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:235 msgid "Eastern Time - Indiana - Pulaski County" msgstr "VýchodnĆ­ čas - Indiana - Pulaski County" #: timezones.h:236 msgid "America/Inuvik" msgstr "Amerika/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:238 msgid "Mountain Time - west Northwest Territories" msgstr "Horský čas - zĆ”padnĆ­ SeverozĆ”padnĆ­ teritoria" #: timezones.h:239 msgid "America/Iqaluit" msgstr "Amerika/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:241 msgid "Eastern Time - east Nunavut - most locations" msgstr "VýchodnĆ­ čas - východnĆ­ Nunavut - větÅ”ina mĆ­st" #: timezones.h:242 msgid "America/Jamaica" msgstr "Amerika/Jamaica" #: timezones.h:243 msgid "America/Jujuy" msgstr "Amerika/Jujuy" #: timezones.h:244 msgid "America/Juneau" msgstr "Amerika/Juneau" #. comment for time zone America/Juneau #: timezones.h:246 msgid "Alaska Time - Alaska panhandle" msgstr "AljaÅ”ský čas - AljaÅ”ka panhandle" #: timezones.h:247 msgid "America/Kentucky/Louisville" msgstr "Amerika/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:249 msgid "Eastern Time - Kentucky - Louisville area" msgstr "VýchodnĆ­ čas - Kentucky - Louisville" #: timezones.h:250 msgid "America/Kentucky/Monticello" msgstr "Amerika/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:252 msgid "Eastern Time - Kentucky - Wayne County" msgstr "VýchodnĆ­ čas - Kentucky - Wayne County" #: timezones.h:253 msgid "America/Knox_IN" msgstr "Amerika/Knox_IN" #: timezones.h:254 msgid "America/La_Paz" msgstr "Amerika/La_Paz" #: timezones.h:255 msgid "America/Lima" msgstr "Amerika/Lima" #: timezones.h:256 msgid "America/Los_Angeles" msgstr "Amerika/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:258 msgid "Pacific Time" msgstr "Pacifický čas" #: timezones.h:259 msgid "America/Louisville" msgstr "Amerika/Louisville" #: timezones.h:260 msgid "America/Maceio" msgstr "Amerika/Maceio" #. comment for time zone America/Maceio #: timezones.h:262 msgid "Alagoas, Sergipe" msgstr "Alagoas, Sergipe" #: timezones.h:263 msgid "America/Managua" msgstr "Amerika/Managua" #: timezones.h:264 msgid "America/Manaus" msgstr "Amerika/Manaus" #. comment for time zone America/Manaus #: timezones.h:266 msgid "E Amazonas" msgstr "VýchodnĆ­ Amazonie" #: timezones.h:267 msgid "America/Marigot" msgstr "Amerika/Marigot" #: timezones.h:268 msgid "America/Martinique" msgstr "Amerika/Martinique" #: timezones.h:269 msgid "America/Matamoros" msgstr "Amerika/Matamoros" #. comment for time zone America/Matamoros #: timezones.h:271 msgid "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "US centrĆ”lnĆ­ čas - Coahuila, Durango, Nuevo Leon, Tamaulipas u US hranice" #: timezones.h:272 msgid "America/Mazatlan" msgstr "Amerika/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:274 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "Horský čas - S Baja, Nayarit, Sinaloa" #: timezones.h:275 msgid "America/Mendoza" msgstr "Amerika/Mendoza" #: timezones.h:276 msgid "America/Menominee" msgstr "Amerika/Menominee" #. comment for time zone America/Menominee #: timezones.h:278 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "CentrĆ”lnĆ­ čas - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" #: timezones.h:279 msgid "America/Merida" msgstr "Amerika/Merida" #. comment for time zone America/Merida #: timezones.h:281 msgid "Central Time - Campeche, Yucatan" msgstr "CentrĆ”lnĆ­ čas - Campeche, Yucatan" #: timezones.h:282 msgid "America/Mexico_City" msgstr "Amerika/Mexico_City" #. comment for time zone America/Mexico_City #: timezones.h:284 msgid "Central Time - most locations" msgstr "CentrĆ”lnĆ­ čas - větÅ”ina mĆ­st" #: timezones.h:285 msgid "America/Miquelon" msgstr "Amerika/Miquelon" #: timezones.h:286 msgid "America/Moncton" msgstr "Amerika/Moncton" #. comment for time zone America/Moncton #: timezones.h:288 msgid "Atlantic Time - New Brunswick" msgstr "Atlantský čas - New Brunswick" #: timezones.h:289 msgid "America/Monterrey" msgstr "Amerika/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:291 msgid "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from US border" msgstr "Mexický centrĆ”lnĆ­ čas - Coahuila, Durango, Nuevo Leon, Tamaulipas dĆ”le od US hranice" #: timezones.h:292 msgid "America/Montevideo" msgstr "Amerika/Montevideo" #: timezones.h:293 msgid "America/Montreal" msgstr "Amerika/Montreal" #. comment for time zone America/Montreal #: timezones.h:295 msgid "Eastern Time - Quebec - most locations" msgstr "VýchodnĆ­ čas - Quebec - větÅ”ina mĆ­st" #: timezones.h:296 msgid "America/Montserrat" msgstr "Amerika/Montserrat" #: timezones.h:297 msgid "America/Nassau" msgstr "Amerika/Nassau" #: timezones.h:298 msgid "America/New_York" msgstr "Amerika/New_York" #. comment for time zone America/New_York #: timezones.h:300 msgid "Eastern Time" msgstr "VýchodnĆ­ čas" #: timezones.h:301 msgid "America/Nipigon" msgstr "Amerika/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:303 msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "VýchodnĆ­ čas - Ontario & Quebec - mĆ­sta bez letnĆ­ho času 1967-1973" #: timezones.h:304 msgid "America/Nome" msgstr "Amerika/Nome" #. comment for time zone America/Nome #: timezones.h:306 msgid "Alaska Time - west Alaska" msgstr "AljaÅ”ský čas - zĆ”padnĆ­ AljaÅ”ka" #: timezones.h:307 msgid "America/Noronha" msgstr "Amerika/Noronha" #. comment for time zone America/Noronha #: timezones.h:309 msgid "Atlantic islands" msgstr "AtlantskĆ© ostrovy" #: timezones.h:310 msgid "America/North_Dakota/Center" msgstr "Amerika/SevernĆ­_Dakota/Střed" #. comment for time zone America/North_Dakota/Center #: timezones.h:312 msgid "Central Time - North Dakota - Oliver County" msgstr "CentrĆ”lnĆ­ čas - SevernĆ­ Dakota - Oliver County" #: timezones.h:313 msgid "America/North_Dakota/New_Salem" msgstr "Amerika/SevernĆ­_Dakota/New_Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:315 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "CentrĆ”lnĆ­ čas - SevernĆ­ Dakota - Morton County (mimo oblast Mandan)" #: timezones.h:316 msgid "America/Ojinaga" msgstr "Amerika/Ojinaga" #. comment for time zone America/Ojinaga #: timezones.h:318 msgid "US Mountain Time - Chihuahua near US border" msgstr "US horský čas - Chihuahua blĆ­zko US hranice" #: timezones.h:319 msgid "America/Panama" msgstr "Amerika/Panama" #: timezones.h:320 msgid "America/Pangnirtung" msgstr "Amerika/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:322 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "VýchodnĆ­ čas - Pangnirtung, Nunavut" #: timezones.h:323 msgid "America/Paramaribo" msgstr "Amerika/Paramaribo" #: timezones.h:324 msgid "America/Phoenix" msgstr "Amerika/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:326 msgid "Mountain Standard Time - Arizona" msgstr "Horský standardnĆ­ čas - Arizona" #: timezones.h:327 msgid "America/Port-au-Prince" msgstr "Amerika/Port-au-Prince" #: timezones.h:328 msgid "America/Porto_Acre" msgstr "Amerika/Porto_Acre" #: timezones.h:329 msgid "America/Port_of_Spain" msgstr "Amerika/Port_of_Spain" #: timezones.h:330 msgid "America/Porto_Velho" msgstr "Amerika/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:332 msgid "Rondonia" msgstr "RondĆ“nia" #: timezones.h:333 msgid "America/Puerto_Rico" msgstr "Amerika/Portoriko" #: timezones.h:334 msgid "America/Rainy_River" msgstr "Amerika/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:336 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "CentrĆ”lnĆ­ čas - Rainy River & Fort Frances, Ontario" #: timezones.h:337 msgid "America/Rankin_Inlet" msgstr "Amerika/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:339 msgid "Central Time - central Nunavut" msgstr "CentrĆ”lnĆ­ čas - centrĆ”lnĆ­ Nunavut" #: timezones.h:340 msgid "America/Recife" msgstr "Amerika/Recife" #. comment for time zone America/Recife #: timezones.h:342 msgid "Pernambuco" msgstr "Pernambuco" #: timezones.h:343 msgid "America/Regina" msgstr "Amerika/Regina" #. comment for time zone America/Regina #: timezones.h:345 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "CentrĆ”lnĆ­ standardnĆ­ čas - Saskatchewan - větÅ”ina mĆ­st" #: timezones.h:346 msgid "America/Resolute" msgstr "Amerika/Resolute" #. comment for time zone America/Resolute #: timezones.h:348 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "VýchodnĆ­ standardnĆ­ čas - Resolute, Nunavut" #: timezones.h:349 msgid "America/Rio_Branco" msgstr "Amerika/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:351 msgid "Acre" msgstr "Acre" #: timezones.h:352 msgid "America/Rosario" msgstr "Amerika/Rosario" #: timezones.h:353 msgid "America/Santa_Isabel" msgstr "Amerika/Santa Isabel" #. comment for time zone America/Santa_Isabel #: timezones.h:355 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "Mexický pacifický čas - Baja California dĆ”le od US hranice" #: timezones.h:356 msgid "America/Santarem" msgstr "Amerika/Santarem" #. comment for time zone America/Santarem #: timezones.h:358 msgid "W Para" msgstr "ZĆ”padnĆ­ Para" #: timezones.h:359 msgid "America/Santiago" msgstr "Amerika/Santiago" #: timezones.h:362 msgid "America/Santo_Domingo" msgstr "Amerika/Santo_Domingo" #: timezones.h:363 msgid "America/Sao_Paulo" msgstr "Amerika/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:365 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "JižnĆ­ a jihovýchodnĆ­ BrazĆ­lie (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:366 msgid "America/Scoresbysund" msgstr "Amerika/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:368 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Scoresbysund / Ittoqqortoormiit" #: timezones.h:369 msgid "America/Shiprock" msgstr "Amerika/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:371 msgid "Mountain Time - Navajo" msgstr "Horský čas - Navajo" #: timezones.h:372 msgid "America/St_Barthelemy" msgstr "Amerika/St_Barthelemy" #: timezones.h:373 msgid "America/St_Johns" msgstr "Amerika/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:375 msgid "Newfoundland Time, including SE Labrador" msgstr "Newfoundlandský čas, včetně jihovýchodnĆ­ho Labradoru" #: timezones.h:376 msgid "America/St_Kitts" msgstr "Amerika/St_Kitts" #: timezones.h:377 msgid "America/St_Lucia" msgstr "Amerika/St_Lucia" #: timezones.h:378 msgid "America/St_Thomas" msgstr "Amerika/St_Thomas" #: timezones.h:379 msgid "America/St_Vincent" msgstr "Amerika/St_Vincent" #: timezones.h:380 msgid "America/Swift_Current" msgstr "Amerika/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:382 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "CentrĆ”lnĆ­ čas - Saskatchewan - středozĆ”pad" #: timezones.h:383 msgid "America/Tegucigalpa" msgstr "Amerika/Tegucigalpa" #: timezones.h:384 msgid "America/Thule" msgstr "Amerika/Thule" #. comment for time zone America/Thule #: timezones.h:386 msgid "Thule / Pituffik" msgstr "Thule / Pituffik" #: timezones.h:387 msgid "America/Thunder_Bay" msgstr "Amerika/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:389 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "VýchodnĆ­ čas - Thunder Bay, Ontario" #: timezones.h:390 msgid "America/Tijuana" msgstr "Amerika/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:392 msgid "US Pacific Time - Baja California near US border" msgstr "Mexický pacifický čas - Baja California blĆ­zko u US hranice" #: timezones.h:393 msgid "America/Toronto" msgstr "Amerika/Toronto" #. comment for time zone America/Toronto #: timezones.h:395 msgid "Eastern Time - Ontario - most locations" msgstr "VýchodnĆ­ čas - Ontario - větÅ”ina mĆ­st" #: timezones.h:396 msgid "America/Tortola" msgstr "Amerika/Tortola" #: timezones.h:397 msgid "America/Vancouver" msgstr "Amerika/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:399 msgid "Pacific Time - west British Columbia" msgstr "Pacifický čas - zĆ”padnĆ­ BritskĆ” Kolumbie" #: timezones.h:400 msgid "America/Virgin" msgstr "Amerika/Virgin" #: timezones.h:401 msgid "America/Whitehorse" msgstr "Amerika/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:403 msgid "Pacific Time - south Yukon" msgstr "Pacifický čas - jižnĆ­ Yukon" #: timezones.h:404 msgid "America/Winnipeg" msgstr "Amerika/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:406 msgid "Central Time - Manitoba & west Ontario" msgstr "CentrĆ”lnĆ­ čas - Manitoba & zĆ”padnĆ­ Ontario" #: timezones.h:407 msgid "America/Yakutat" msgstr "Amerika/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:409 msgid "Alaska Time - Alaska panhandle neck" msgstr "AljaÅ”ský čas - Alaska panhandle neck" #: timezones.h:410 msgid "America/Yellowknife" msgstr "Amerika/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:412 msgid "Mountain Time - central Northwest Territories" msgstr "Horský čas - centrĆ”lnĆ­ SeverozĆ”padnĆ­ teritoria" #: timezones.h:413 msgid "Antarctica/Casey" msgstr "Antarktis/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:415 msgid "Casey Station, Bailey Peninsula" msgstr "Casey Station, Bailey Peninsula" #: timezones.h:416 msgid "Antarctica/Davis" msgstr "Antarktis/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:418 msgid "Davis Station, Vestfold Hills" msgstr "Davis Station, Vestfold Hills" #: timezones.h:419 msgid "Antarctica/DumontDUrville" msgstr "Antarktis/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:421 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Dumont-d'Urville Station, Terre Adelie" #: timezones.h:422 msgid "Antarctica/Macquarie" msgstr "Antarktida/Macquarie" #. comment for time zone Antarctica/Macquarie #: timezones.h:424 msgid "Macquarie Island Station, Macquarie Island" msgstr "Macquarie Island Station, Macquarie Island" #: timezones.h:425 msgid "Antarctica/Mawson" msgstr "Antarktis/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:427 msgid "Mawson Station, Holme Bay" msgstr "Mawson Station, Holme Bay" #: timezones.h:428 msgid "Antarctica/McMurdo" msgstr "Antarktis/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:430 msgid "McMurdo Station, Ross Island" msgstr "McMurdo Station, Ross Island" #: timezones.h:431 msgid "Antarctica/Palmer" msgstr "Antarktis/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:433 msgid "Palmer Station, Anvers Island" msgstr "Palmer Station, Anvers Island" #: timezones.h:434 msgid "Antarctica/Rothera" msgstr "Antarktis/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:436 msgid "Rothera Station, Adelaide Island" msgstr "Rothera Station, Adelaide Island" #: timezones.h:437 msgid "Antarctica/South_Pole" msgstr "Antarktis/JižnĆ­ pól" #. comment for time zone Antarctica/South_Pole #: timezones.h:439 msgid "Amundsen-Scott Station, South Pole" msgstr "Amundsen-Scott stanice, JižnĆ­ pól" #: timezones.h:440 msgid "Antarctica/Syowa" msgstr "Antarktis/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:442 msgid "Syowa Station, E Ongul I" msgstr "Syowa Station, E Ongul I" #: timezones.h:443 msgid "Antarctica/Vostok" msgstr "Antarktis/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:445 msgid "Vostok Station, S Magnetic Pole" msgstr "Vostok Station, severnĆ­ magnetický pól" #: timezones.h:446 msgid "Arctic/Longyearbyen" msgstr "Arctic/Longyearbyen" #: timezones.h:447 msgid "Asia/Aden" msgstr "Asie/Aden" #: timezones.h:448 msgid "Asia/Almaty" msgstr "Asie/Almaty" #: timezones.h:451 msgid "Asia/Amman" msgstr "Asie/Amman" #: timezones.h:452 msgid "Asia/Anadyr" msgstr "Asie/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:454 msgid "Moscow+08 - Bering Sea" msgstr "Moskva+08 - Beringovo moře" #: timezones.h:455 msgid "Asia/Aqtau" msgstr "Asie/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:457 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" #: timezones.h:458 msgid "Asia/Aqtobe" msgstr "Asie/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:460 msgid "Aqtobe (Aktobe)" msgstr "Aqtobe (Aktobe)" #: timezones.h:461 msgid "Asia/Ashgabat" msgstr "Asie/Ashgabat" #: timezones.h:462 msgid "Asia/Ashkhabad" msgstr "Asie/Ashkhabad" #: timezones.h:463 msgid "Asia/Baghdad" msgstr "Asie/BagdĆ”d" #: timezones.h:464 msgid "Asia/Bahrain" msgstr "Asie/Bahrain" #: timezones.h:465 msgid "Asia/Baku" msgstr "Asie/Baku" #: timezones.h:466 msgid "Asia/Bangkok" msgstr "Asie/Bangkok" #: timezones.h:467 msgid "Asia/Beirut" msgstr "Asie/BejrĆŗt" #: timezones.h:468 msgid "Asia/Bishkek" msgstr "Asie/Bishkek" #: timezones.h:469 msgid "Asia/Brunei" msgstr "Asie/Brunea" #: timezones.h:470 msgid "Asia/Calcutta" msgstr "Asie/Kalkata" #: timezones.h:471 msgid "Asia/Choibalsan" msgstr "Asie/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:473 msgid "Dornod, Sukhbaatar" msgstr "Dornod, Sukhbaatar" #: timezones.h:474 msgid "Asia/Chongqing" msgstr "Asie/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:476 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "CentrĆ”lnĆ­ Čína - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, atp." #: timezones.h:477 msgid "Asia/Chungking" msgstr "Asie/Chungking" #: timezones.h:478 msgid "Asia/Colombo" msgstr "Asie/Colombo" #: timezones.h:479 msgid "Asia/Dacca" msgstr "Asie/Dacca" #: timezones.h:480 msgid "Asia/Damascus" msgstr "Asie/DamaÅ”ek" #: timezones.h:481 msgid "Asia/Dhaka" msgstr "Asie/Dhaka" #: timezones.h:482 msgid "Asia/Dili" msgstr "Asie/DilĆ­" #: timezones.h:483 msgid "Asia/Dubai" msgstr "Asie/Dubai" #: timezones.h:484 msgid "Asia/Dushanbe" msgstr "Asie/DuÅ”anbe" #: timezones.h:485 msgid "Asia/Gaza" msgstr "Asie/Gaza" #: timezones.h:486 msgid "Asia/Harbin" msgstr "Asie/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:488 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Heilongjiang (mimo Mohe), Jilin" #: timezones.h:489 msgid "Asia/Ho_Chi_Minh" msgstr "Asie/Ho-Či-Minovo Město" #: timezones.h:490 msgid "Asia/Hong_Kong" msgstr "Asie/Hong_Kong" #: timezones.h:491 msgid "Asia/Hovd" msgstr "Asie/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:493 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" #: timezones.h:494 msgid "Asia/Irkutsk" msgstr "Asie/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:496 msgid "Moscow+05 - Lake Baikal" msgstr "Moscow+05 - jezero Bajkal" #: timezones.h:497 msgid "Asia/Istanbul" msgstr "Asie/Istanbul" #: timezones.h:498 msgid "Asia/Jakarta" msgstr "Asie/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:500 msgid "Java & Sumatra" msgstr "JĆ”va & Sumatra" #: timezones.h:501 msgid "Asia/Jayapura" msgstr "Asie/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:503 msgid "Irian Jaya & the Moluccas" msgstr "Irian Jaya & the Moluccas" #: timezones.h:504 msgid "Asia/Jerusalem" msgstr "Asie/JeruzalĆ©m" #: timezones.h:505 msgid "Asia/Kabul" msgstr "Asie/KĆ”bul" #: timezones.h:506 msgid "Asia/Kamchatka" msgstr "Asie/Kamčatka" #. comment for time zone Asia/Kamchatka #: timezones.h:508 msgid "Moscow+08 - Kamchatka" msgstr "Moscow+08 - Kamčatka" #: timezones.h:509 msgid "Asia/Karachi" msgstr "Asie/KarĆ”ÄĆ­" #: timezones.h:510 msgid "Asia/Kashgar" msgstr "Asie/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:512 msgid "west Tibet & Xinjiang" msgstr "ZĆ”padnĆ­ Tibet & Xinjiang" #: timezones.h:513 msgid "Asia/Kathmandu" msgstr "Asie/KĆ”thmĆ”ndĆŗ" #: timezones.h:514 msgid "Asia/Katmandu" msgstr "Asie/KĆ”tmĆ”ndĆŗ" #: timezones.h:515 msgid "Asia/Kolkata" msgstr "Asie/Kalkata" #: timezones.h:516 msgid "Asia/Krasnoyarsk" msgstr "Asie/Krasnojarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:518 msgid "Moscow+04 - Yenisei River" msgstr "Moscow+04 - řeka Jenisej" #: timezones.h:519 msgid "Asia/Kuala_Lumpur" msgstr "Asie/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:521 msgid "peninsular Malaysia" msgstr "Malajsie (peninsular)" #: timezones.h:522 msgid "Asia/Kuching" msgstr "Asie/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:524 msgid "Sabah & Sarawak" msgstr "Sabah & Sarawak" #: timezones.h:525 msgid "Asia/Kuwait" msgstr "Asie/Kuvait" #: timezones.h:526 msgid "Asia/Macao" msgstr "Asie/Makao" #: timezones.h:527 msgid "Asia/Macau" msgstr "Asie/Macao" #: timezones.h:528 msgid "Asia/Magadan" msgstr "Asie/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:530 msgid "Moscow+08 - Magadan" msgstr "Moskva+08 - Magadan" #: timezones.h:531 msgid "Asia/Makassar" msgstr "Asie/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:533 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "VýchodnĆ­ & jižnĆ­ Borneo, Celebes, Bali, Nusa Tengarra, zĆ”padnĆ­ Timor" #: timezones.h:534 msgid "Asia/Manila" msgstr "Asie/Manila" #: timezones.h:535 msgid "Asia/Muscat" msgstr "Asie/Muscat" #: timezones.h:536 msgid "Asia/Nicosia" msgstr "Asie/Nikósie" #: timezones.h:537 msgid "Asia/Novokuznetsk" msgstr "Asie/Novokuznětsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:539 msgid "Moscow+03 - Novokuznetsk" msgstr "Moskva+03 - Novokuznětsk" #: timezones.h:540 msgid "Asia/Novosibirsk" msgstr "Asie/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:542 msgid "Moscow+03 - Novosibirsk" msgstr "Moskva+03 - Novosibirsk" #: timezones.h:543 msgid "Asia/Omsk" msgstr "Asie/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:545 msgid "Moscow+03 - west Siberia" msgstr "Moskva+03 - zĆ”padnĆ­ Sibiř" #: timezones.h:546 msgid "Asia/Oral" msgstr "Asie/Oral" #. comment for time zone Asia/Oral #: timezones.h:548 msgid "West Kazakhstan" msgstr "ZĆ”padnĆ­ KazachstĆ”n" #: timezones.h:549 msgid "Asia/Phnom_Penh" msgstr "Asie/Phnom_Penh" #: timezones.h:550 msgid "Asia/Pontianak" msgstr "Asie/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:552 msgid "west & central Borneo" msgstr "ZĆ”padnĆ­ & centrĆ”lnĆ­ Borneo" #: timezones.h:553 msgid "Asia/Pyongyang" msgstr "Asie/Pchjongjang" #: timezones.h:554 msgid "Asia/Qatar" msgstr "Asie/Qatar" #: timezones.h:555 msgid "Asia/Qyzylorda" msgstr "Asie/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:557 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "Qyzylorda (Kyzylorda, Kzyl-Orda)" #: timezones.h:558 msgid "Asia/Rangoon" msgstr "Asie/RangÅÆn" #: timezones.h:559 msgid "Asia/Riyadh" msgstr "Asie/RijĆ”d" #: timezones.h:560 msgid "Asia/Riyadh87" msgstr "Asie/RijĆ”d87" #: timezones.h:561 msgid "Asia/Riyadh88" msgstr "Asie/RijĆ”d88" #: timezones.h:562 msgid "Asia/Riyadh89" msgstr "Asie/RijĆ”d89" #: timezones.h:563 msgid "Asia/Saigon" msgstr "Asie/Saigon" #: timezones.h:564 msgid "Asia/Sakhalin" msgstr "Asie/Sachalin" #. comment for time zone Asia/Sakhalin #: timezones.h:566 msgid "Moscow+07 - Sakhalin Island" msgstr "Moskva+07 - ostrov Å akalin" #: timezones.h:567 msgid "Asia/Samarkand" msgstr "Asie/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:569 msgid "west Uzbekistan" msgstr "ZĆ”padnĆ­ UzbekistĆ”n" #: timezones.h:570 msgid "Asia/Seoul" msgstr "Asie/Soul" #: timezones.h:571 msgid "Asia/Shanghai" msgstr "Asie/Å anghai" #. comment for time zone Asia/Shanghai #: timezones.h:573 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "VýchodnĆ­ Čína - Peking, Guangdong, Å anghaj atp." #: timezones.h:574 msgid "Asia/Singapore" msgstr "Asie/Singapore" #: timezones.h:575 msgid "Asia/Taipei" msgstr "Asie/Taipei" #: timezones.h:576 msgid "Asia/Tashkent" msgstr "Asie/TaÅ”kent" #. comment for time zone Asia/Tashkent #: timezones.h:578 msgid "east Uzbekistan" msgstr "VýchodnĆ­ UzbekistĆ”n" #: timezones.h:579 msgid "Asia/Tbilisi" msgstr "Asie/Tbilisi" #: timezones.h:580 msgid "Asia/Tehran" msgstr "Asie/TeherĆ”n" #: timezones.h:581 msgid "Asia/Tel_Aviv" msgstr "Asie/Tel_Aviv" #: timezones.h:582 msgid "Asia/Thimbu" msgstr "Asie/Thimbu" #: timezones.h:583 msgid "Asia/Thimphu" msgstr "Asie/Thimphu" #: timezones.h:584 msgid "Asia/Tokyo" msgstr "Asie/Tokio" #: timezones.h:585 msgid "Asia/Ujung_Pandang" msgstr "Asie/Ujung_Pandang" #: timezones.h:586 msgid "Asia/Ulaanbaatar" msgstr "Asie/Ulaanbaatar" #: timezones.h:589 msgid "Asia/Ulan_Bator" msgstr "Asie/Ulan_Bator" #: timezones.h:590 msgid "Asia/Urumqi" msgstr "Asie/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:592 msgid "most of Tibet & Xinjiang" msgstr "VětÅ”ina Tibetu & Xinjiang" #: timezones.h:593 msgid "Asia/Vientiane" msgstr "Asie/Vientiane" #: timezones.h:594 msgid "Asia/Vladivostok" msgstr "Asie/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:596 msgid "Moscow+07 - Amur River" msgstr "Moskva+07 - řeka Amur" #: timezones.h:597 msgid "Asia/Yakutsk" msgstr "Asie/Jakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:599 msgid "Moscow+06 - Lena River" msgstr "Moskva+06 - řeka Lena" #: timezones.h:600 msgid "Asia/Yekaterinburg" msgstr "Asie/Jekatěrinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:602 msgid "Moscow+02 - Urals" msgstr "Moskva+02 - Ural" #: timezones.h:603 msgid "Asia/Yerevan" msgstr "Asie/Jerevan" #: timezones.h:604 msgid "Atlantic/Azores" msgstr "Atlantik/Azory" #. comment for time zone Atlantic/Azores #: timezones.h:606 msgid "Azores" msgstr "Azory" #: timezones.h:607 msgid "Atlantic/Bermuda" msgstr "Atlantik/Bermudy" #: timezones.h:608 msgid "Atlantic/Canary" msgstr "Atlantik/KanĆ”rskĆ©_ostrovy" #. comment for time zone Atlantic/Canary #: timezones.h:610 msgid "Canary Islands" msgstr "KanĆ”rskĆ© ostrovy" #: timezones.h:611 msgid "Atlantic/Cape_Verde" msgstr "Atlantik/CapeverdskĆ©_ostrovy" #: timezones.h:612 msgid "Atlantic/Faeroe" msgstr "Atlantik/FaerskĆ©_ostrovy" #: timezones.h:613 msgid "Atlantic/Faroe" msgstr "Atlantik/Faroe" #: timezones.h:614 msgid "Atlantic/Jan_Mayen" msgstr "Atlantik/Jan_Mayen" #: timezones.h:615 msgid "Atlantic/Madeira" msgstr "Atlantik/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:617 msgid "Madeira Islands" msgstr "Madeira (ostrovy)" #: timezones.h:618 msgid "Atlantic/Reykjavik" msgstr "Atlantik/RejkjavĆ­k" #: timezones.h:619 msgid "Atlantic/South_Georgia" msgstr "Atlantik/South_Georgia" #: timezones.h:620 msgid "Atlantic/Stanley" msgstr "Atlantik/Stanley" #: timezones.h:621 msgid "Atlantic/St_Helena" msgstr "Atlantik/SvatĆ”_Helena" #: timezones.h:622 msgid "Australia/ACT" msgstr "AustrĆ”lie/ACT" #: timezones.h:623 msgid "Australia/Adelaide" msgstr "AustrĆ”lie/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:625 msgid "South Australia" msgstr "JižnĆ­ AustrĆ”lie" #: timezones.h:626 msgid "Australia/Brisbane" msgstr "AustrĆ”lie/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:628 msgid "Queensland - most locations" msgstr "Queensland - větÅ”ina mĆ­st" #: timezones.h:629 msgid "Australia/Broken_Hill" msgstr "AustrĆ”lie/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:631 msgid "New South Wales - Yancowinna" msgstr "Nový JižnĆ­ Wales - Yancowinna" #: timezones.h:632 msgid "Australia/Canberra" msgstr "AustrĆ”lie/Canberra" #: timezones.h:633 msgid "Australia/Currie" msgstr "AustrĆ”lie/Currie" #. comment for time zone Australia/Currie #: timezones.h:635 msgid "Tasmania - King Island" msgstr "TasmĆ”nie - King Island" #: timezones.h:636 msgid "Australia/Darwin" msgstr "AustrĆ”lie/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:638 msgid "Northern Territory" msgstr "SevernĆ­ teritorium" #: timezones.h:639 msgid "Australia/Eucla" msgstr "AustrĆ”lie/Eucla" #. comment for time zone Australia/Eucla #: timezones.h:641 msgid "Western Australia - Eucla area" msgstr "ZĆ”padnĆ­ AustrĆ”lie - oblast Eucla" #: timezones.h:642 msgid "Australia/Hobart" msgstr "AustrĆ”lie/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:644 msgid "Tasmania - most locations" msgstr "TasmĆ”nie - větÅ”ina mĆ­st" #: timezones.h:645 msgid "Australia/LHI" msgstr "AustrĆ”lie/LHI" #: timezones.h:646 msgid "Australia/Lindeman" msgstr "AustrĆ”lie/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:648 msgid "Queensland - Holiday Islands" msgstr "Queensland - Holiday Islands" #: timezones.h:649 msgid "Australia/Lord_Howe" msgstr "AustrĆ”lie/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:651 msgid "Lord Howe Island" msgstr "Lord Howe Island" #: timezones.h:652 msgid "Australia/Melbourne" msgstr "AustrĆ”lie/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:654 msgid "Victoria" msgstr "Victorie" #: timezones.h:655 msgid "Australia/North" msgstr "AustrĆ”lie/Sever" #: timezones.h:656 msgid "Australia/NSW" msgstr "AustrĆ”lie/NSW" #: timezones.h:657 msgid "Australia/Perth" msgstr "AustrĆ”lie/Perth" #. comment for time zone Australia/Perth #: timezones.h:659 msgid "Western Australia - most locations" msgstr "ZĆ”padnĆ­ AustrĆ”lie - větÅ”ina mĆ­st" #: timezones.h:660 msgid "Australia/Queensland" msgstr "AustrĆ”lie/Queensland" #: timezones.h:661 msgid "Australia/South" msgstr "AustrĆ”lie/Jih" #: timezones.h:662 msgid "Australia/Sydney" msgstr "AustrĆ”lie/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:664 msgid "New South Wales - most locations" msgstr "Nový JižnĆ­ Wales - větÅ”ina mĆ­st" #: timezones.h:665 msgid "Australia/Tasmania" msgstr "AustrĆ”lie/Tasmania" #: timezones.h:666 msgid "Australia/Victoria" msgstr "AustrĆ”lie/Victoria" #: timezones.h:667 msgid "Australia/West" msgstr "AustrĆ”lie/ZĆ”pad" #: timezones.h:668 msgid "Australia/Yancowinna" msgstr "AustrĆ”lie/Yancowinna" #: timezones.h:669 msgid "Brazil/Acre" msgstr "BrazĆ­lie/Acre" #: timezones.h:670 msgid "Brazil/DeNoronha" msgstr "BrazĆ­lie/DeNoronha" #: timezones.h:671 msgid "Brazil/East" msgstr "BrazĆ­lie/Východ" #: timezones.h:672 msgid "Brazil/West" msgstr "BrazĆ­lie/ZĆ”pad" #: timezones.h:673 msgid "Canada/Atlantic" msgstr "Kanada/Atlantik" #: timezones.h:674 msgid "Canada/Central" msgstr "Kanada/CentralnĆ­" #: timezones.h:675 msgid "Canada/Eastern" msgstr "Kanada/VýchodnĆ­" #: timezones.h:676 msgid "Canada/East-Saskatchewan" msgstr "Kanada/VýchodnĆ­-Saskatchewan" #: timezones.h:677 msgid "Canada/Mountain" msgstr "Kanada/Mountain" #: timezones.h:678 msgid "Canada/Newfoundland" msgstr "Kanada/Newfoundland" #: timezones.h:679 msgid "Canada/Pacific" msgstr "Kanada/Pacifik" #: timezones.h:680 msgid "Canada/Saskatchewan" msgstr "Kanada/Saskatchewan" #: timezones.h:681 msgid "Canada/Yukon" msgstr "Kanada/Jukon" #: timezones.h:682 msgid "CET" msgstr "CET" #: timezones.h:683 msgid "Chile/Continental" msgstr "Chile/Continental" #: timezones.h:684 msgid "Chile/EasterIsland" msgstr "Chile/EasterIsland" #: timezones.h:685 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:686 msgid "Cuba" msgstr "Kuba" #: timezones.h:687 msgid "EET" msgstr "EET" #: timezones.h:688 msgid "Egypt" msgstr "Egypt" #: timezones.h:689 msgid "Eire" msgstr "Eire" #: timezones.h:690 msgid "EST" msgstr "EST" #: timezones.h:691 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:692 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:693 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:694 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:695 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:696 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:697 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:698 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:699 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:700 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:701 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:702 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:703 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:704 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:705 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:706 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:707 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:708 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:709 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:710 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:711 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:712 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:713 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:714 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:715 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:716 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:717 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:718 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:719 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:720 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:721 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:722 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:723 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:724 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:725 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:726 msgid "Etc/Zulu" msgstr "Etc/Zulu" #: timezones.h:727 msgid "Europe/Amsterdam" msgstr "Evropa/Amsterodam" #: timezones.h:728 msgid "Europe/Andorra" msgstr "Evropa/Andora" #: timezones.h:729 msgid "Europe/Athens" msgstr "Evropa/AthĆ©ny" #: timezones.h:730 msgid "Europe/Belfast" msgstr "Evropa/Belfast" #: timezones.h:731 msgid "Europe/Belgrade" msgstr "Evropa/Bělehrad" #: timezones.h:732 msgid "Europe/Berlin" msgstr "Evropa/BerlĆ­n" #: timezones.h:733 msgid "Europe/Bratislava" msgstr "Evropa/Bratislava" #: timezones.h:734 msgid "Europe/Brussels" msgstr "Evropa/Brusel" #: timezones.h:735 msgid "Europe/Bucharest" msgstr "Evropa/BukureŔń" #: timezones.h:736 msgid "Europe/Budapest" msgstr "Evropa/BudapeŔń" #: timezones.h:737 msgid "Europe/Chisinau" msgstr "Evropa/Chisinau" #: timezones.h:738 msgid "Europe/Copenhagen" msgstr "Evropa/Kodaň" #: timezones.h:739 msgid "Europe/Dublin" msgstr "Evropa/Dublin" #: timezones.h:740 msgid "Europe/Gibraltar" msgstr "Evropa/Gibraltar" #: timezones.h:741 msgid "Europe/Guernsey" msgstr "Evropa/Guernsey" #: timezones.h:742 msgid "Europe/Helsinki" msgstr "Evropa/Helsinky" #: timezones.h:743 msgid "Europe/Isle_of_Man" msgstr "Evropa/Isle_of_Man" #: timezones.h:744 msgid "Europe/Istanbul" msgstr "Evropa/Istanbul" #: timezones.h:745 msgid "Europe/Jersey" msgstr "Evropa/Jersey" #: timezones.h:746 msgid "Europe/Kaliningrad" msgstr "Evropa/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:748 msgid "Moscow-01 - Kaliningrad" msgstr "Moskva-01 - Kaliningrad" #: timezones.h:749 msgid "Europe/Kiev" msgstr "Evropa/Kijev" #: timezones.h:752 msgid "Europe/Lisbon" msgstr "Evropa/Lisabon" #: timezones.h:755 msgid "Europe/Ljubljana" msgstr "Evropa/Ljubljana" #: timezones.h:756 msgid "Europe/London" msgstr "Evropa/Londýn" #: timezones.h:757 msgid "Europe/Luxembourg" msgstr "Evropa/Lucembursko" #: timezones.h:758 msgid "Europe/Madrid" msgstr "Evropa/Madrid" #: timezones.h:761 msgid "Europe/Malta" msgstr "Evropa/Malta" #: timezones.h:762 msgid "Europe/Mariehamn" msgstr "Evropa/Mariehamn" #: timezones.h:763 msgid "Europe/Minsk" msgstr "Evropa/Minsk" #: timezones.h:764 msgid "Europe/Monaco" msgstr "Evropa/Monako" #: timezones.h:765 msgid "Europe/Moscow" msgstr "Evropa/Moskva" #. comment for time zone Europe/Moscow #: timezones.h:767 msgid "Moscow+00 - west Russia" msgstr "Moskva+00 - zĆ”padnĆ­ Rusko" #: timezones.h:768 msgid "Europe/Nicosia" msgstr "Evropa/Nicosia" #: timezones.h:769 msgid "Europe/Oslo" msgstr "Evropa/Oslo" #: timezones.h:770 msgid "Europe/Paris" msgstr "Evropa/Paříž" #: timezones.h:771 msgid "Europe/Podgorica" msgstr "Evropa/Podgorica" #: timezones.h:772 msgid "Europe/Prague" msgstr "Evropa/Praha" #: timezones.h:773 msgid "Europe/Riga" msgstr "Evropa/Riga" #: timezones.h:774 msgid "Europe/Rome" msgstr "Evropa/Řím" #: timezones.h:775 msgid "Europe/Samara" msgstr "Evropa/Samara" #. comment for time zone Europe/Samara #: timezones.h:777 msgid "Moscow - Samara, Udmurtia" msgstr "Moskva - Samara, Udmurtia" #: timezones.h:778 msgid "Europe/San_Marino" msgstr "Evropa/San_Marino" #: timezones.h:779 msgid "Europe/Sarajevo" msgstr "Evropa/Sarajevo" #: timezones.h:780 msgid "Europe/Simferopol" msgstr "Evropa/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:782 msgid "central Crimea" msgstr "Krym (centrĆ”lnĆ­)" #: timezones.h:783 msgid "Europe/Skopje" msgstr "Evropa/Skopje" #: timezones.h:784 msgid "Europe/Sofia" msgstr "Evropa/Sofie" #: timezones.h:785 msgid "Europe/Stockholm" msgstr "Evropa/Stockholm" #: timezones.h:786 msgid "Europe/Tallinn" msgstr "Evropa/Talin" #: timezones.h:787 msgid "Europe/Tirane" msgstr "Evropa/Tirana" #: timezones.h:788 msgid "Europe/Tiraspol" msgstr "Evropa/Tiraspol" #: timezones.h:789 msgid "Europe/Uzhgorod" msgstr "Evropa/Užhorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:791 msgid "Ruthenia" msgstr "Bělorusko" #: timezones.h:792 msgid "Europe/Vaduz" msgstr "Evropa/Vaduz" #: timezones.h:793 msgid "Europe/Vatican" msgstr "Evropa/VatikĆ”n" #: timezones.h:794 msgid "Europe/Vienna" msgstr "Evropa/VĆ­deň" #: timezones.h:795 msgid "Europe/Vilnius" msgstr "Evropa/Vilnius" #: timezones.h:796 msgid "Europe/Volgograd" msgstr "Evropa/Volgograd" #. comment for time zone Europe/Volgograd #: timezones.h:798 msgid "Moscow+00 - Caspian Sea" msgstr "Moskva+00 - KaspickĆ© moře" #: timezones.h:799 msgid "Europe/Warsaw" msgstr "Evropa/VarÅ”ava" #: timezones.h:800 msgid "Europe/Zagreb" msgstr "Evropa/ZĆ”hřeb" #: timezones.h:801 msgid "Europe/Zaporozhye" msgstr "Evropa/Zaporozhye" #. comment for time zone Europe/Zaporozhye #: timezones.h:803 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "ZĆ”poroží, E Lugansk / Zaporizhia, E Luhansk" #: timezones.h:804 msgid "Europe/Zurich" msgstr "Evropa/Curich" #: timezones.h:805 msgid "Factory" msgstr "TovĆ”rnĆ­" #: timezones.h:806 msgid "GB" msgstr "GB" #: timezones.h:807 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:808 msgid "GMT" msgstr "GMT" #: timezones.h:809 msgid "GMT0" msgstr "GMT0" #: timezones.h:810 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:811 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:812 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:813 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:814 msgid "HST" msgstr "HST" #: timezones.h:815 msgid "Iceland" msgstr "Island" #: timezones.h:816 msgid "Indian/Antananarivo" msgstr "Indie/Antananarivo" #: timezones.h:817 msgid "Indian/Chagos" msgstr "Indie/Chagos" #: timezones.h:818 msgid "Indian/Christmas" msgstr "Indie/Christmas" #: timezones.h:819 msgid "Indian/Cocos" msgstr "Indie/Cocos" #: timezones.h:820 msgid "Indian/Comoro" msgstr "Indie/Comoro" #: timezones.h:821 msgid "Indian/Kerguelen" msgstr "Indie/Kerguelen" #: timezones.h:822 msgid "Indian/Mahe" msgstr "Indie/Mahe" #: timezones.h:823 msgid "Indian/Maldives" msgstr "Indie/Maldives" #: timezones.h:824 msgid "Indian/Mauritius" msgstr "Indie/Mauritius" #: timezones.h:825 msgid "Indian/Mayotte" msgstr "Indie/Mayotte" #: timezones.h:826 msgid "Indian/Reunion" msgstr "Indie/Reunion" #: timezones.h:827 msgid "Iran" msgstr "ƍrĆ”n" #: timezones.h:828 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:829 msgid "Israel" msgstr "Izrael" #: timezones.h:830 msgid "Jamaica" msgstr "Jamajka" #: timezones.h:831 msgid "Japan" msgstr "Japonsko" #. comment for time zone Pacific/Kwajalein #: timezones.h:832 #: timezones.h:885 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:833 msgid "Libya" msgstr "Libye" #: timezones.h:834 msgid "MET" msgstr "MET" #: timezones.h:835 msgid "Mexico/BajaNorte" msgstr "Mexiko/BajaNorte" #: timezones.h:836 msgid "Mexico/BajaSur" msgstr "Mexiko/BajaSur" #: timezones.h:837 msgid "Mexico/General" msgstr "Mexiko/General" #: timezones.h:838 msgid "Mideast/Riyadh87" msgstr "StřednĆ­_východ/RijĆ”d87" #: timezones.h:839 msgid "Mideast/Riyadh88" msgstr "StřednĆ­_východ/RijĆ”d88" #: timezones.h:840 msgid "Mideast/Riyadh89" msgstr "StřednĆ­_východ/RijĆ”d89" #: timezones.h:841 msgid "MST" msgstr "MST" #: timezones.h:842 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:843 msgid "Navajo" msgstr "Navajo" #: timezones.h:844 msgid "NZ" msgstr "NZ" #: timezones.h:845 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:846 msgid "Pacific/Apia" msgstr "Pacifik/Apia" #: timezones.h:847 msgid "Pacific/Auckland" msgstr "Pacifik/Auckland" #: timezones.h:850 msgid "Pacific/Chatham" msgstr "Pacifik/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:852 msgid "Chatham Islands" msgstr "ChathamskĆ© ostrovy" #: timezones.h:853 msgid "Pacific/Easter" msgstr "Pacifik/VelikonočnĆ­" #. comment for time zone Pacific/Easter #: timezones.h:855 msgid "Easter Island & Sala y Gomez" msgstr "VýchodnĆ­ ostrovy & Sala y Gomez" #: timezones.h:856 msgid "Pacific/Efate" msgstr "Pacifik/Efate" #: timezones.h:857 msgid "Pacific/Enderbury" msgstr "Pacifik/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:859 msgid "Phoenix Islands" msgstr "Phoenix Islands" #: timezones.h:860 msgid "Pacific/Fakaofo" msgstr "Pacifik/Fakaofo" #: timezones.h:861 msgid "Pacific/Fiji" msgstr "Pacifik/Fidži" #: timezones.h:862 msgid "Pacific/Funafuti" msgstr "Pacifik/Funafuti" #: timezones.h:863 msgid "Pacific/Galapagos" msgstr "Pacifik/GalapĆ”gy" #. comment for time zone Pacific/Galapagos #: timezones.h:865 msgid "Galapagos Islands" msgstr "GalapĆ”gy (ostrovy)" #: timezones.h:866 msgid "Pacific/Gambier" msgstr "Pacifik/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:868 msgid "Gambier Islands" msgstr "Gambier Islands" #: timezones.h:869 msgid "Pacific/Guadalcanal" msgstr "Pacifik/Guadalcanal" #: timezones.h:870 msgid "Pacific/Guam" msgstr "Pacifik/Guam" #: timezones.h:871 msgid "Pacific/Honolulu" msgstr "Pacifik/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:873 msgid "Hawaii" msgstr "Havaj" #: timezones.h:874 msgid "Pacific/Johnston" msgstr "Pacifik/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:876 msgid "Johnston Atoll" msgstr "Johnston Atoll" #: timezones.h:877 msgid "Pacific/Kiritimati" msgstr "Pacifik/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:879 msgid "Line Islands" msgstr "Line Islands" #: timezones.h:880 msgid "Pacific/Kosrae" msgstr "Pacifik/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:882 msgid "Kosrae" msgstr "Kosrae" #: timezones.h:883 msgid "Pacific/Kwajalein" msgstr "Pacifik/Kwajalein" #: timezones.h:886 msgid "Pacific/Majuro" msgstr "Pacifik/Majuro" #: timezones.h:889 msgid "Pacific/Marquesas" msgstr "Pacifik/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:891 msgid "Marquesas Islands" msgstr "MarkĆ©zskĆ© ostrovy" #: timezones.h:892 msgid "Pacific/Midway" msgstr "Pacifik/Midway" #. comment for time zone Pacific/Midway #: timezones.h:894 msgid "Midway Islands" msgstr "Midway (ostrovy)" #: timezones.h:895 msgid "Pacific/Nauru" msgstr "Pacifik/Nauru" #: timezones.h:896 msgid "Pacific/Niue" msgstr "Pacifik/Niue" #: timezones.h:897 msgid "Pacific/Norfolk" msgstr "Pacifik/Norfolk" #: timezones.h:898 msgid "Pacific/Noumea" msgstr "Pacifik/Noumea" #: timezones.h:899 msgid "Pacific/Pago_Pago" msgstr "Pacifik/Pago_Pago" #: timezones.h:900 msgid "Pacific/Palau" msgstr "Pacifik/Palau" #: timezones.h:901 msgid "Pacific/Pitcairn" msgstr "Pacifik/Pitcairn" #: timezones.h:902 msgid "Pacific/Ponape" msgstr "Pacifik/Ponape" #. comment for time zone Pacific/Ponape #: timezones.h:904 msgid "Ponape (Pohnpei)" msgstr "Ponape (Pohnpei)" #: timezones.h:905 msgid "Pacific/Port_Moresby" msgstr "Pacifik/Port_Moresby" #: timezones.h:906 msgid "Pacific/Rarotonga" msgstr "Pacifik/Rarotonga" #: timezones.h:907 msgid "Pacific/Saipan" msgstr "Pacifik/Saipan" #: timezones.h:908 msgid "Pacific/Samoa" msgstr "Pacifik/Samoa" #: timezones.h:909 msgid "Pacific/Tahiti" msgstr "Pacifik/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:911 msgid "Society Islands" msgstr "SpolečenskĆ© ostrovy" #: timezones.h:912 msgid "Pacific/Tarawa" msgstr "Pacifik/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:914 msgid "Gilbert Islands" msgstr "Gilbertovy ostrovy" #: timezones.h:915 msgid "Pacific/Tongatapu" msgstr "Pacifik/Tongatapu" #: timezones.h:916 msgid "Pacific/Truk" msgstr "Pacifik/Truk" #. comment for time zone Pacific/Truk #: timezones.h:918 msgid "Truk (Chuuk) and Yap" msgstr "Truk (Chuuk) a Yap" #: timezones.h:919 msgid "Pacific/Wake" msgstr "Pacifik/Wake" #. comment for time zone Pacific/Wake #: timezones.h:921 msgid "Wake Island" msgstr "Wake Island" #: timezones.h:922 msgid "Pacific/Wallis" msgstr "Pacifik/Wallis" #: timezones.h:923 msgid "Pacific/Yap" msgstr "Pacifik/Yap" #: timezones.h:924 msgid "Poland" msgstr "Polsko" #: timezones.h:925 msgid "Portugal" msgstr "Portugalsko" #: timezones.h:926 msgid "posixrules" msgstr "posixrules" #: timezones.h:927 msgid "PRC" msgstr "PRC" #: timezones.h:928 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:929 msgid "ROC" msgstr "ROC" #: timezones.h:930 msgid "ROK" msgstr "ROK" #: timezones.h:931 msgid "Singapore" msgstr "Singapore" #: timezones.h:932 msgid "Turkey" msgstr "Turecko" #: timezones.h:933 msgid "UCT" msgstr "UCT" #: timezones.h:934 msgid "Universal" msgstr "Universal" #: timezones.h:935 msgid "US/Alaska" msgstr "US/AljaÅ”ka" #: timezones.h:936 msgid "US/Aleutian" msgstr "US/Aleutian" #: timezones.h:937 msgid "US/Arizona" msgstr "US/Arizona" #: timezones.h:938 msgid "US/Central" msgstr "US/CentrĆ”lnĆ­" #: timezones.h:939 msgid "US/Eastern" msgstr "US/VýchodnĆ­" #: timezones.h:940 msgid "US/East-Indiana" msgstr "US/VýchodnĆ­-Indiana" #: timezones.h:941 msgid "US/Hawaii" msgstr "US/Hawaj" #: timezones.h:942 msgid "US/Indiana-Starke" msgstr "US/Indiana-Starke" #: timezones.h:943 msgid "US/Michigan" msgstr "US/Michigan" #: timezones.h:944 msgid "US/Mountain" msgstr "US/Mountain" #: timezones.h:945 msgid "US/Pacific" msgstr "US/Pacifik" #: timezones.h:946 msgid "US/Samoa" msgstr "US/Samoa" #: timezones.h:947 msgid "UTC" msgstr "UTC" #: timezones.h:948 msgid "WET" msgstr "WET" #: timezones.h:949 msgid "W-SU" msgstr "W-SU" #: timezones.h:950 msgid "Zulu" msgstr "Zulu" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/nl.po0000664000175000017500000020105314632072346023671 0ustar fabiofabio# Dutch translation of timezones. # Copyright (c) 2003 The free software foundation, inc. # This file is distributed under the same license as the timezones package. # Tino Meinen , 2003. # Peter van Egdom , 2006, 2007, 2008. # Geert Warrink , 2009, 2010. msgid "" msgstr "" "Project-Id-Version: timezones\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-08-25 14:12+0200\n" "Last-Translator: Geert Warrink \n" "Language-Team: Fedora\n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Virtaal 0.6.1\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Afrika/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Afrika/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Afrika/Addis_Ababa" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Afrika/Algiers" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Afrika/Asmara" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Afrika/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Afrika/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Afrika/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Afrika/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Afrika/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Afrika/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Afrika/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Afrika/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Afrika/CaĆÆro" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Afrika/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Afrika/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Ceuta & Melilla" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Afrika/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Afrika/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Afrika/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Afrika/Djibouti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Afrika/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Afrika/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Afrika/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Afrika/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Afrika/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Afrika/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Afrika/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Afrika/Khartoem" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Afrika/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Afrika/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "west Dem. Rep. Congo" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Afrika/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Afrika/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Afrika/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Afrika/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Afrika/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "oost Dem. Rep. Congo" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Afrika/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Afrika/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Afrika/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Afrika/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Afrika/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Afrika/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Afrika/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Afrika/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Afrika/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Afrika/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Afrika/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Afrika/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Afrika/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Afrika/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Afrika/Timboektoe" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Afrika/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Afrika/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Afrika/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "Amerika/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "Aleoeten" #: timezones.h:63 msgid "America/Anchorage" msgstr "Amerika/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "Alaska tijd" #: timezones.h:66 msgid "America/Anguilla" msgstr "Amerika/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "Amerika/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "Amerika/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Tocantins" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Amerika/ArgentiniĆ«/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Buenos Aires (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Amerika/ArgentiniĆ«/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "Catamarca (CT), Chubut (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Amerika/ArgentiniĆ«/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Amerika/ArgentiniĆ«/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "meeste locaties (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Amerika/ArgentiniĆ«/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Jujuy (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Amerika/ArgentiniĆ«/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "La Rioja (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Amerika/ArgentiniĆ«/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "Mendoza (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Amerika/ArgentiniĆ«/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Santa Cruz (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "Amerika/ArgentiniĆ«/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Amerika/ArgentiniĆ«/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "San Juan (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "Amerika/ArgentiniĆ«/San_Luis" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "San Luis (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Amerika/ArgentiniĆ«/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Tucuman (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Amerika/ArgentiniĆ«/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Vuurland (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "Amerika/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "Amerika/Asunción" #: timezones.h:110 msgid "America/Atikokan" msgstr "Amerika/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" #: timezones.h:113 msgid "America/Atka" msgstr "Amerika/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "Amerika/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "Bahia" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "Amerika/Bahia_Banderas" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "Mexican Central Time - Bahia de Banderas" #: timezones.h:120 msgid "America/Barbados" msgstr "Amerika/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "Amerika/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "Amapa, E Para" #: timezones.h:124 msgid "America/Belize" msgstr "Amerika/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "Amerika/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "Atlantic Standard Time - Quebec - Lower North Shore" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Amerika/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "Roraima" #: timezones.h:131 msgid "America/Bogota" msgstr "Amerika/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "Amerika/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "Mountain Time - zuid Idaho & oost Oregon" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Amerika/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Amerika/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "Mountain Time - west Nunavut" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "Amerika/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "Mato Grosso do Sul" #: timezones.h:142 msgid "America/Cancun" msgstr "Amerika/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "Central Time - Quintana Roo" #: timezones.h:145 msgid "America/Caracas" msgstr "Amerika/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "Amerika/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "Amerika/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "Amerika/Caymaneilanden" #: timezones.h:149 msgid "America/Chicago" msgstr "Amerika/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "Central Time" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Amerika/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "Mexico Mountain Time - Chihuahua of afstand van de VS grens" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "Amerika/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "Amerika/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Amerika/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Amerika/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "Mato Grosso" #: timezones.h:161 msgid "America/Curacao" msgstr "Amerika/CuraƧao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Amerika/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "oost kust, ten noorden van Scoresbysund" #: timezones.h:165 msgid "America/Dawson" msgstr "Amerika/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "Pacific Time - noord Yukon" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Amerika/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" "Mountain Standard Time - Dawson Creek & Fort Saint John, Brits-Columbia" #: timezones.h:171 msgid "America/Denver" msgstr "Amerika/Denver" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "Mountain Time" #: timezones.h:174 msgid "America/Detroit" msgstr "Amerika/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "Eastern Time - Michigan - meeste locaties" #: timezones.h:177 msgid "America/Dominica" msgstr "Amerika/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "Amerika/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "Mountain Time - Alberta, oost Brits-Columbia & west Saskatchewan" #: timezones.h:181 msgid "America/Eirunepe" msgstr "Amerika/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "W Amazonas" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Amerika/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "Amerika/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Amerika/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "NO BrazilĆÆe (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Amerika/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Amerika/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "Atlantic Time - Nova Scotia - plaatsen die DST 1966-1971 niet naleven" #: timezones.h:193 msgid "America/Godthab" msgstr "Amerika/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "meeste locaties" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Amerika/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "Atlantic Time - Labrador - meeste locaties" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Amerika/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "Amerika/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Amerika/Guadeloupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "Amerika/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Amerika/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "vasteland" #: timezones.h:206 msgid "America/Guyana" msgstr "Amerika/Guyana" #: timezones.h:207 msgid "America/Halifax" msgstr "Amerika/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "Atlantic Time - Nova Scotia (meeste plaatsen), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "Amerika/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Amerika/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "Mountain Standard Time - Sonora" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Amerika/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "Eastern Time - Indiana - meeste locaties" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Amerika/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "Central Time - Indiana - Starke County" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Amerika/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "Eastern Time - Indiana - Crawford County" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "Amerika/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "Eastern Time - Indiana - Pike County" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Amerika/Indianapolis" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "Amerika/Indiana/Tell_City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "Central Time - Indiana - Perry County" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "Eastern Time - Indiana - Switzerland County" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "Amerika/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "Amerika/Indiana/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "Eastern Time - Indiana - Pulaski County" #: timezones.h:239 msgid "America/Inuvik" msgstr "Amerika/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "Mountain Time - west Northwest Territories" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Amerika/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "Eastern Time - oost Nunavut - meeste locaties" #: timezones.h:245 msgid "America/Jamaica" msgstr "Amerika/Jamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "Amerika/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "Amerika/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "Alaska Time - Alaska Panhandle" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Amerika/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "Eastern Time - Kentucky - Louisville gebied" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Amerika/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "Eastern Time - Kentucky - Wayne County" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Amerika/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "Amerika/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "Amerika/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Amerika/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "Pacific Time" #: timezones.h:262 msgid "America/Louisville" msgstr "Amerika/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "Amerika/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "Alagoas, Sergipe" #: timezones.h:266 msgid "America/Managua" msgstr "Amerika/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "Amerika/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "E Amazonas" #: timezones.h:270 msgid "America/Marigot" msgstr "Amerika/Marigot" #: timezones.h:271 msgid "America/Martinique" msgstr "Amerika/Martinique" #: timezones.h:272 msgid "America/Matamoros" msgstr "Amerika/Matamoros" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" "VS Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas bij VS grens" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Amerika/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "Mountain Time - S Baja, Nayarit, Sinaloa" #: timezones.h:278 msgid "America/Mendoza" msgstr "Amerika/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "Amerika/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" #: timezones.h:282 msgid "America/Merida" msgstr "Amerika/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "Central Time - Campeche, Yucatan" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Amerika/Mexico_City" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "Central Time - meeste locaties" #: timezones.h:288 msgid "America/Miquelon" msgstr "Amerika/Miquelon" #: timezones.h:289 msgid "America/Moncton" msgstr "Amerika/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "Atlantic Time - New Brunswick" #: timezones.h:292 msgid "America/Monterrey" msgstr "Amerika/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" "Mexico Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas weg van de " "VS grens" #: timezones.h:295 msgid "America/Montevideo" msgstr "Amerika/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "Amerika/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "Eastern Time - Quebec - meeste locaties" #: timezones.h:299 msgid "America/Montserrat" msgstr "Amerika/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "Amerika/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "Amerika/New_York" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "Eastern Time" #: timezones.h:304 msgid "America/Nipigon" msgstr "Amerika/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" "Eastern Time - Ontario & Quebec - plaatsen die DST 1967-1973 niet naleven" #: timezones.h:307 msgid "America/Nome" msgstr "Amerika/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "Alaska Time - west Alaska" #: timezones.h:310 msgid "America/Noronha" msgstr "Amerika/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "Atlantische eilanden" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Amerika/North_Dakota/Center" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "Central Time - North Dakota - Oliver County" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "Amerika/North_Dakota/New_Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "Central Time - North Dakota - Morton County (behalve Mandan gebied)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "Amerika/Ojinaga" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "VS Mountain Time - Chihuahua bij de VS grens" #: timezones.h:322 msgid "America/Panama" msgstr "Amerika/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Amerika/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "Eastern Time - Pangnirtung, Nunavut" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Amerika/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "Amerika/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "Mountain Standard Time - Arizona" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Amerika/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Amerika/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Amerika/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Amerika/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "Rondonia" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Amerika/Puerto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Amerika/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "Central Time - Rainy River & Fort Frances, Ontario" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Amerika/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "Central Time - centraal Nunavut" #: timezones.h:343 msgid "America/Recife" msgstr "Amerika/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "Pernambuco" #: timezones.h:346 msgid "America/Regina" msgstr "Amerika/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "Central Standard Time - Saskatchewan - meeste locaties" #: timezones.h:349 msgid "America/Resolute" msgstr "Amerika/Resolute" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "Eastern Standard Time - Resolute, Nunavut" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Amerika/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "Acre" #: timezones.h:355 msgid "America/Rosario" msgstr "Amerika/Rosario" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "Amerika/Santa_Isabel" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "Mexico Pacific Time - Baja California weg vanaf VS grens" #: timezones.h:359 msgid "America/Santarem" msgstr "Amerika/Santarem" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "W Para" #: timezones.h:362 msgid "America/Santiago" msgstr "Amerika/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Amerika/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Amerika/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "Z & ZO BrazilĆÆe (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Amerika/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Scoresbysund / Ittoqqortoormiit" #: timezones.h:372 msgid "America/Shiprock" msgstr "Amerika/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "Mountain Time - Navajo" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "Amerika/St_Barthelemy" #: timezones.h:376 msgid "America/St_Johns" msgstr "Amerika/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "Newfoundland Time, inclusief ZO Labrador" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Amerika/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Amerika/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Amerika/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Amerika/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Amerika/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "Central Standard Time - Saskatchewan - middenwesten" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Amerika/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "Amerika/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "Thule / Pituffik" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Amerika/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "Eastern Time - Thunder Bay, Ontario" #: timezones.h:393 msgid "America/Tijuana" msgstr "Amerika/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "VS Pacific Time - Baja California bij de VS grens" #: timezones.h:396 msgid "America/Toronto" msgstr "Amerika/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "Eastern Time - Ontario - meeste locaties" #: timezones.h:399 msgid "America/Tortola" msgstr "Amerika/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "Amerika/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "Pacific Time - west Brits-Columbia" #: timezones.h:403 msgid "America/Virgin" msgstr "Amerika/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Amerika/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "Pacific Time - zuid Yukon" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Amerika/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "Central Time - Manitoba & west Ontario" #: timezones.h:410 msgid "America/Yakutat" msgstr "Amerika/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "Alaska Time - Alaska Panhandle neck" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Amerika/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "Mountain Time - centraal Northwest Territories" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Antarctica/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "Casey Station, Bailey Peninsula" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Antarctica/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "Davis Station, Vestfold Hills" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Antarctica/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Dumont-d'Urville Station, Terre Adelie" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "Antarctica/Macquarie" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "Macquarie Island Station, Macquarie Island" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Antarctica/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "Mawson Station, Holme Bay" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Antarctica/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "McMurdo Station, Ross Island" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Antarctica/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "Palmer Station, Anvers Island" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Antarctica/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "Rothera Station, Adelaide Island" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antarctica/South_Pole" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "Amundsen-Scott Station, Zuidpool" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Antarctica/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "Syowa Station, O Ongul I" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Antarctica/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "Vostok Station, Z Magnetic Pole" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Arctic/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "AziĆ«/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "AziĆ«/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "AziĆ«/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "AziĆ«/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "Moskou+08 - Bering Zee" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "AziĆ«/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "AziĆ«/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "Aqtobe (Aktobe)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "AziĆ«/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "AziĆ«/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "AziĆ«/Bagdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "AziĆ«/Bahrein" #: timezones.h:468 msgid "Asia/Baku" msgstr "AziĆ«/Bakoe" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "AziĆ«/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "AziĆ«/Beiroet" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "AziĆ«/Bisjkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "AziĆ«/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "AziĆ«/Calcutta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "AziĆ«/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "Dornod, Sukhbaatar" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "AziĆ«/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "centraal China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, enz." #: timezones.h:480 msgid "Asia/Chungking" msgstr "AziĆ«/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "AziĆ«/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "AziĆ«/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "AziĆ«/Damascus" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "AziĆ«/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "AziĆ«/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "AziĆ«/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "AziĆ«/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "AziĆ«/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "AziĆ«/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Heilongjiang (behalve Mohe), Jilin" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "AziĆ«/Ho_Chi_Minh" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "AziĆ«/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "AziĆ«/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "AziĆ«/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "Moskou+05 - Baikalmeer" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "AziĆ«/Istanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "AziĆ«/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "Java & Sumatra" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "AziĆ«/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "Papoea & de Molukken" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "AziĆ«/Jeruzalem" #: timezones.h:508 msgid "Asia/Kabul" msgstr "AziĆ«/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "AziĆ«/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "Moskou+08 - Kamchatka" #: timezones.h:512 msgid "Asia/Karachi" msgstr "AziĆ«/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "AziĆ«/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "west Tibet & Xinjiang" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "AziĆ«/Kathmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "AziĆ«/Katmandu" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "AziĆ«/Calcutta" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "AziĆ«/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "Moskou+04 - Jenisej" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "AziĆ«/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "schiereiland MaleisiĆ«" #: timezones.h:525 msgid "Asia/Kuching" msgstr "AziĆ«/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "Sabah & Sarawak" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "AziĆ«/Kuwait" #: timezones.h:529 msgid "Asia/Macao" msgstr "AziĆ«/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "AziĆ«/Macau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "AziĆ«/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "Moskou+08 - Magadan" #: timezones.h:534 msgid "Asia/Makassar" msgstr "AziĆ«/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "oost & zuid Borneo, Celebes, Bali, Nusa Tengarra, west Timor" #: timezones.h:537 msgid "Asia/Manila" msgstr "AziĆ«/Manilla" #: timezones.h:538 msgid "Asia/Muscat" msgstr "AziĆ«/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "AziĆ«/Nicosia" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "AziĆ«/Novokuznetsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "Moskou+03 - Novokuznetsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "AziĆ«/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "Moskou+03 - Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "AziĆ«/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "Moskou+03 - west SiberiĆ«" #: timezones.h:549 msgid "Asia/Oral" msgstr "AziĆ«/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "West Kazachstan" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "AziĆ«/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "AziĆ«/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "west & centraal Borneo" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "AziĆ«/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "AziĆ«/Qatar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "AziĆ«/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "Qyzylorda (Kyzylorda, Kzyl-Orda)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "AziĆ«/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "AziĆ«/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "AziĆ«/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "AziĆ«/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "AziĆ«/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "AziĆ«/Saigon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "AziĆ«/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "Moskou+07 - Sachalin eilanden" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "AziĆ«/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "west Oezbekistan" #: timezones.h:573 msgid "Asia/Seoul" msgstr "AziĆ«/Seoel" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "AziĆ«/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "oost China - Beijing, Guangdong, Shanghai, enz." #: timezones.h:577 msgid "Asia/Singapore" msgstr "AziĆ«/Singapore" #: timezones.h:578 msgid "Asia/Taipei" msgstr "AziĆ«/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "AziĆ«/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "oost Oezbekistan" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "AziĆ«/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "AziĆ«/Teheran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "AziĆ«/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "AziĆ«/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "AziĆ«/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "AziĆ«/Tokio" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "AziĆ«/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "AziĆ«/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "AziĆ«/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "AziĆ«/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "merendeel van Tibet & Xinjiang" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "AziĆ«/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "AziĆ«/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "Moskou+07 - Amoer rivier" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "AziĆ«/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "Moskou+06 - Lena rivier" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "AziĆ«/Yekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "Moskou+02 - Oeral" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "AziĆ«/Yerevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlantisch/Azoren" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "Azoren" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlantisch/Bermuda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlantisch/Canarisch" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "Canarische Eilanden" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlantisch/Kaap_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlantisch/Faeroe" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "Atlantisch/Faroe" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlantisch/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlantisch/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "Madeira eilanden" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlantisch/Reykjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlantisch/South_Georgia" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlantisch/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlantisch/St_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "AustraliĆ«/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "AustraliĆ«/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "Zuid AustraliĆ«" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "AustraliĆ«/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "Queensland - meeste locaties" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "AustraliĆ«/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "Nieuw-Zuid-Wales - Yancowinna" #: timezones.h:635 msgid "Australia/Canberra" msgstr "AustraliĆ«/Canberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "AustraliĆ«/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "TasmaniĆ« - King Island" #: timezones.h:639 msgid "Australia/Darwin" msgstr "AustraliĆ«/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "Noordelijk Territorium" #: timezones.h:642 msgid "Australia/Eucla" msgstr "AustraliĆ«/Eucla" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "West AustraliĆ« - Eucla gebied" #: timezones.h:645 msgid "Australia/Hobart" msgstr "AustraliĆ«/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "TasmaniĆ« - meeste locaties" #: timezones.h:648 msgid "Australia/LHI" msgstr "AustraliĆ«/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "AustraliĆ«/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "Queensland - Holiday Islands" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "AustraliĆ«/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "Lord Howe Island" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "AustraliĆ«/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "AustraliĆ«/North" #: timezones.h:659 msgid "Australia/NSW" msgstr "AustraliĆ«/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "AustraliĆ«/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "West-AustraliĆ« - meeste locaties" #: timezones.h:663 msgid "Australia/Queensland" msgstr "AustraliĆ«/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "AustraliĆ«/South" #: timezones.h:665 msgid "Australia/Sydney" msgstr "AustraliĆ«/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "Nieuw-Zuid-Wales - meeste locaties" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "AustraliĆ«/TasmaniĆ«" #: timezones.h:669 msgid "Australia/Victoria" msgstr "AustraliĆ«/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "AustraliĆ«/West" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "AustraliĆ«/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "BraziliĆ«/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "BraziliĆ«/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "BraziliĆ«/Oost" #: timezones.h:675 msgid "Brazil/West" msgstr "BraziliĆ«/West" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Canada/Atlantic" #: timezones.h:677 msgid "Canada/Central" msgstr "Canada/Centraal" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Canada/Oost" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Canada/East-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Canada/Mountain" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Canada/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Canada/Pacific" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Canada/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Canada/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Chili/Continentaal" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chili/Paaseiland" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Cuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Egypte" #: timezones.h:692 msgid "Eire" msgstr "Eire" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Europa/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Europa/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Europa/Athene" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Europa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Europa/Belgrado" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Europa/Berlijn" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Europa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Europa/Brussel" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Europa/Boekarest" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Europa/Boedapest" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Europa/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Europa/Kopenhagen" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Europa/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Europa/Gibraltar" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Europa/Guernsey" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Europa/Helsinki" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Europa/Isle_of_Man" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Europa/Istanbul" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Europa/Jersey" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Europa/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "Moskou-01 - Kaliningrad" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Europa/Kiev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Europa/Lissabon" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Europa/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Europa/Londen" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Europa/Luxemburg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Europa/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Europa/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Europa/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Europa/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Europa/Monaco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Europa/Moskou" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "Moskou+00 - west Rusland" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Europa/Nicosia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Europa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Europa/Parijs" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Europa/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Europa/Praag" #: timezones.h:776 msgid "Europe/Riga" msgstr "Europa/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Europa/Rome" #: timezones.h:778 msgid "Europe/Samara" msgstr "Europa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "Moskou - Samara, Udmurtia" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Europa/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Europa/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Europa/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "centraal Krimrepubliek" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Europa/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Europa/Sofia" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Europa/Stockholm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Europa/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Europa/Tirane" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Europa/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Europa/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "RoetheniĆ«" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Europa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Europa/Vaticaan" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Europa/Wenen" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Europa/Vilnius" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Europa/Volgograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "Moskou+00 - Kaspische Zee" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Europa/Warschau" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Europa/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Europa/Zaporozhye" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Zaporozh'ye, O Lugansk / Zaporizhia, O Luhansk" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Europa/Zürich" #: timezones.h:808 msgid "Factory" msgstr "Factory" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Ijsland" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Indian/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Indian/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Indian/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Indian/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Indian/Comoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Indian/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Indian/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Indian/Maldives" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Indian/Mauritius" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Indian/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Indian/Reunion" #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "IsraĆ«l" #: timezones.h:833 msgid "Jamaica" msgstr "Jamaica" #: timezones.h:834 msgid "Japan" msgstr "Japan" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libya" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Mexico/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Mexico/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Mexico/General" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Middenoosten/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Middenoosten/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Middenoosten/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Pacific/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Pacific/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Pacific/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "Chathameilanden" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "Pacific/Chuuk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "Chuuk (Truk) en Yap" #: timezones.h:859 msgid "Pacific/Easter" msgstr "Pacific/Paaseiland" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "Paaseiland & Sala y Gomez" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Pacific/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Pacific/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "Phoenixeilanden" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Pacific/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Pacific/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Pacific/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Pacific/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "Galapagoseilanden" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Pacific/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "Gambiereilanden" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Pacific/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Pacific/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Pacific/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "HawaĆÆ" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Pacific/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "Johnston Atol" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Pacific/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "Line-eilanden" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Pacific/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "Kosrae" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Pacific/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Pacific/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Pacific/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "Marquesaseilanden" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Pacific/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "Midway-eilanden" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Pacific/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Pacific/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Pacific/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Pacific/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Pacific/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Pacific/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Pacific/Pitcairn" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "Pacific/Pohnpei" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "Pohnpei (Ponape)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Pacific/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Pacific/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Pacific/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Pacific/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Pacific/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Pacific/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "Genootschapseilanden" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Pacific/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "Gilberteilanden" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Pacific/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Pacific/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Pacific/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "Wake" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Pacific/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Pacific/Yap" #: timezones.h:929 msgid "Poland" msgstr "Polen" #: timezones.h:930 msgid "Portugal" msgstr "Portugal" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapore" #: timezones.h:937 msgid "Turkey" msgstr "Turkije" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "US/Alaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "US/Aleutian" #: timezones.h:942 msgid "US/Arizona" msgstr "US/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "US/Central" #: timezones.h:944 msgid "US/Eastern" msgstr "US/Eastern" #: timezones.h:945 msgid "US/East-Indiana" msgstr "US/East-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "US/Hawaii" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "US/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "US/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "US/Mountain" #: timezones.h:950 msgid "US/Pacific" msgstr "US/Pacific" #: timezones.h:951 msgid "US/Samoa" msgstr "US/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" #~ msgid "US/Pacific-New" #~ msgstr "US/Pacific-New" #~ msgid "SystemV/AST4" #~ msgstr "SystemV/AST4" #~ msgid "SystemV/AST4ADT" #~ msgstr "SystemV/AST4ADT" #~ msgid "SystemV/CST6" #~ msgstr "SystemV/CST6" #~ msgid "SystemV/CST6CDT" #~ msgstr "SystemV/CST6CDT" #~ msgid "SystemV/EST5" #~ msgstr "SystemV/EST5" #~ msgid "SystemV/EST5EDT" #~ msgstr "SystemV/EST5EDT" #~ msgid "SystemV/HST10" #~ msgstr "SystemV/HST10" #~ msgid "SystemV/MST7" #~ msgstr "SystemV/MST7" #~ msgid "SystemV/MST7MDT" #~ msgstr "SystemV/MST7MDT" #~ msgid "SystemV/PST8" #~ msgstr "SystemV/PST8" #~ msgid "SystemV/PST8PDT" #~ msgstr "SystemV/PST8PDT" #~ msgid "SystemV/YST9" #~ msgstr "SystemV/YST9" #~ msgid "SystemV/YST9YDT" #~ msgstr "SystemV/YST9YDT" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/da.po0000664000175000017500000017721514632072346023660 0ustar fabiofabio# Danish translation of system-config-date # Claus Hindsgaul , 2001. # Keld Simonsen , 2002. # Keld Simonsen , 2006, 2007. # Kris Thomsen , 2009, 2010. # msgid "" msgstr "" "Project-Id-Version: system-config-date\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-04-27 17:56+0200\n" "Last-Translator: Kris Thomsen \n" "Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Afrika/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Afrika/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Afrika/Addis_Ababa" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Afrika/Algier" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Afrika/Asmara" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Afrika/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Afrika/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Afrika/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Afrika/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Afrika/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Afrika/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Afrika/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Afrika/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Afrika/Kairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Afrika/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Afrika/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Ceuta & Melilla" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Afrika/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Afrika/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Afrika/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Afrika/Djibouti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Afrika/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Afrika/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Afrika/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Afrika/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Afrika/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Afrika/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Afrika/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Afrika/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Afrika/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Afrika/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "vest Demokratiske republik Congo" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Afrika/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Afrika/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Afrika/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Afrika/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Afrika/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "Ćøst Demokratiske republik Congo" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Afrika/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Afrika/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Afrika/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Afrika/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Afrika/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Afrika/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Afrika/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Afrika/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Afrika/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Afrika/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Afrika/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Afrika/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Afrika/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Afrika/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Afrika/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Afrika/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Afrika/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Afrika/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "Amerika/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "Aleutian Ƙer" #: timezones.h:63 msgid "America/Anchorage" msgstr "Amerika/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "Alaska-tid" #: timezones.h:66 msgid "America/Anguilla" msgstr "Amerika/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "Amerika/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "Amerika/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Tocantins" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Amerika/Argentina/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Buenos Aires (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Amerika/Argentina/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "Catamarca (CT), Chubut (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Amerika/Argentina/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Amerika/Argentina/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "fleste placeringer (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Amerika/Argentina/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Jujuy (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Amerika/Argentina/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "La Rioja (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Amerika/Argentina/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "Mendoza (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Amerika/Argentina/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Santa Cruz (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "Amerika/Argentina/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Amerika/Argentina/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "San Juan (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "Amerika/Argentina/San_Luis" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "San Luis (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Amerika/Argentina/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Tucuman (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Amerika/Argentina/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Tierra del Fuego (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "Amerika/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "Amerika/Asuncion" #: timezones.h:110 msgid "America/Atikokan" msgstr "Amerika/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "Ƙststandardtid - Atikokan, Ontario og Southampton I, Nunavut" #: timezones.h:113 msgid "America/Atka" msgstr "Amerika/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "Amerika/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "Bahia" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "Amerika/Bahia" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "Amerika/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "Amerika/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "Amapa, E Para" #: timezones.h:124 msgid "America/Belize" msgstr "Amerika/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "Amerika/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "Atlantisk standardtid - Quebec - Nedre Nord Shore" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Amerika/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "Roraima" #: timezones.h:131 msgid "America/Bogota" msgstr "Amerika/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "Amerika/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "Bjergtid - syd Idaho & Ćøst Oregon" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Amerika/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Amerika/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "Bjergtid - vest Nunavut" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "Amerika/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "Mato Grosso do Sul" #: timezones.h:142 msgid "America/Cancun" msgstr "Amerika/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "Centraltid - Quintana Roo" #: timezones.h:145 msgid "America/Caracas" msgstr "Amerika/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "Amerika/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "Amerika/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "Amerika/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "Amerika/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "Central-tid" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Amerika/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "Mexikansk bjertid - Chihuahua vƦk fra US-grƦnse" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "Amerika/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "Amerika/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Amerika/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Amerika/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "Mato Grosso" #: timezones.h:161 msgid "America/Curacao" msgstr "Amerika/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Amerika/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "Ćøstkyst, nord for Scoresbysund" #: timezones.h:165 msgid "America/Dawson" msgstr "Amerika/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "Stillehavstid - nord Yukon" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Amerika/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "Bjerg-standardtid - Dawson Creek & Fort Saint John, Britisk Columbia" #: timezones.h:171 msgid "America/Denver" msgstr "Amerika/Denver" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "Bjergtid" #: timezones.h:174 msgid "America/Detroit" msgstr "Amerika/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "Ƙsttid - Michigan - fleste placeringer" #: timezones.h:177 msgid "America/Dominica" msgstr "Amerika/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "Amerika/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "Bjergtid - Alberta, Ćøst Britisk Columbia & vest Saskatchewan" #: timezones.h:181 msgid "America/Eirunepe" msgstr "Amerika/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "W Amazonas" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Amerika/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "Amerika/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Amerika/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "NE Brazilien (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Amerika/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Amerika/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" "Atlanterhavstid - Nova Scotia - steder, som ikke observerede DST 1966-1971" #: timezones.h:193 msgid "America/Godthab" msgstr "Amerika/GodthĆ„b" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "fleste placeringer" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Amerika/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "Atlanterhavstid - Labrador - fleste placeringer" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Amerika/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "Amerika/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Amerika/Guadeloupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "Amerika/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Amerika/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "hovedland" #: timezones.h:206 msgid "America/Guyana" msgstr "Amerika/Guyana" #: timezones.h:207 msgid "America/Halifax" msgstr "Amerika/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "Atlanterhavstid - Nova Scotia (fleste steder), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "Amerika/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Amerika/Hermosillio" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "Bjergstandardtid - Sonora" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Amerika/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "Ƙsttid - Indiana - fleste placeringer" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Amerika/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "Centraltid - Indiana - Starke County" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Amerika/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "Ƙsttid - Indiana - Crawford County" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "Amerika/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "Ƙsttid - Indiana - Pike County" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Amerika/Indianapolis" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "Amerika/Indiana/Tell_City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "Centraltid - Indiana - Perry County" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "Ƙsttid - Indiana - Switzerland County" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "Amerika/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "Ƙsttid - Indiana - Daviess, Dubois, Knox & Martin Counties" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "Amerika/Indiana/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "Ƙsttid - Indiana - Pulaski County" #: timezones.h:239 msgid "America/Inuvik" msgstr "Amerika/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "Bjergtid - vest Nordvest Territorier" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Amerika/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "Ƙsttid - Ćøst Nunavut - fleste placeringer" #: timezones.h:245 msgid "America/Jamaica" msgstr "Amerika/Jamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "Amerika/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "Amerika/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "Alaska-tid - Alaska panhandle" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Amerika/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "Ƙsttid - Kentucky - Louisville-omrĆ„det" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Amerika/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "Ƙsttid - Kentucky - Wayne County" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Amerika/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "Amerika/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "Amerika/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Amerika/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "Stillehavstid" #: timezones.h:262 msgid "America/Louisville" msgstr "Amerika/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "Amerika/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "Alagoas, Sergipe" #: timezones.h:266 msgid "America/Managua" msgstr "Amerika/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "Amerika/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "E Amazonas" #: timezones.h:270 msgid "America/Marigot" msgstr "Amerika/Marigot" #: timezones.h:271 msgid "America/Martinique" msgstr "Amerika/Martinique" #: timezones.h:272 msgid "America/Matamoros" msgstr "Amerika/Matamoros" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" "US Centraltid - Coahuila, Durango, Nuevo Leon, Tamaulipas nƦr US-grƦnse" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Amerika/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "Bjergtid - S Baja, Nayarit, Sinaloa" #: timezones.h:278 msgid "America/Mendoza" msgstr "Amerika/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "Amerika/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "Centraltid - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" #: timezones.h:282 msgid "America/Merida" msgstr "Amerika/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "Centraltid - Campeche, Yucatan" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Amerika/Mexico_By" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "Centraltid - fleste placeringer" #: timezones.h:288 msgid "America/Miquelon" msgstr "Amerika/Miquelon" #: timezones.h:289 msgid "America/Moncton" msgstr "Amerika/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "Atlanterhavstid - New Brunswick" #: timezones.h:292 msgid "America/Monterrey" msgstr "Amerika/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" "Mexikansk centraltid - Coahuila, Durango, Nuevo Leon, Tamaulipas vƦk fra US-" "grƦnse" #: timezones.h:295 msgid "America/Montevideo" msgstr "Amerika/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "Amerika/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "Ƙsttid - Quebec - fleste placeringer" #: timezones.h:299 msgid "America/Montserrat" msgstr "Amerika/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "Amerika/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "Amerika/New_York" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "Ƙsttid" #: timezones.h:304 msgid "America/Nipigon" msgstr "Amerika/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "Ƙsttid - Ontario & Quebec - steder som ikke observerer DST 1967-1973" #: timezones.h:307 msgid "America/Nome" msgstr "Amerika/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "Alaska-tid - vest Alaska" #: timezones.h:310 msgid "America/Noronha" msgstr "Amerika/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "AtlanterhavsĆøer" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Amerika/North_Dakota/Center" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "Centraltid - Nord Dakota - Oliver County" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "Amerika/North_Dakota/New_Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "Centraltid - Nord Dakota - Morton County (undtagen Mandan-omrĆ„det)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "Amerika/Ojinaga" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "US bjertid - Chihuahua nƦr US-grƦnse" #: timezones.h:322 msgid "America/Panama" msgstr "Amerika/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Amerika/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "Ƙsttid - Pangnirtung, Nunavut" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Amerika/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "Amerika/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "Bjergstandardtid - Arizona" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Amerika/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Amerika/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Amerika/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Amerika/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "Rondonia" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Amerika/Puerto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Amerika/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "Centraltid - Rainy River & Fort Frances, Ontario" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Amerika/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "Centraltid - centrak Nunavut" #: timezones.h:343 msgid "America/Recife" msgstr "Amerika/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "Pernambuco" #: timezones.h:346 msgid "America/Regina" msgstr "Amerika/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "Centralstandardtid - Saskatchewan - fleste placeringer" #: timezones.h:349 msgid "America/Resolute" msgstr "Amerika/Resolute" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "Ƙststandardtid - Resolute, Nunavut" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Amerika/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "Acre" #: timezones.h:355 msgid "America/Rosario" msgstr "Amerika/Rosario" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "Amerika/Santa_Isabel" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "Mexikansk stillehavstid - Baja Californien vƦk fra US-grƦnse" #: timezones.h:359 msgid "America/Santarem" msgstr "Amerika/Santarem" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "W Para" #: timezones.h:362 msgid "America/Santiago" msgstr "Amerika/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Amerika/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Amerika/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "S & SE Brazilien (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Amerika/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Scoresbysund / Ittoqqortoormiit" #: timezones.h:372 msgid "America/Shiprock" msgstr "Amerika/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "Bjertid - Navajo" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "Amerika/St_Barthelemy" #: timezones.h:376 msgid "America/St_Johns" msgstr "Amerika/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "Newfoundlandtid, inkluderer SE Labrador" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Amerika/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Amerika/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Amerika/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Amerika/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Amerika/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "Centralstandardtid - Saskatchewan - midt-vest" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Amerika/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "Amerika/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "Thule / Pituffik" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Amerika/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "Ƙsttid - Thunder Bay, Ontario" #: timezones.h:393 msgid "America/Tijuana" msgstr "Amerika/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "US stillehavstid - Baja Californien nƦr US-grƦnse" #: timezones.h:396 msgid "America/Toronto" msgstr "Amerika/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "Ƙsttid - Ontario - fleste placeringer" #: timezones.h:399 msgid "America/Tortola" msgstr "Amerika/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "Amerika/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "Stillehavstid - Vest Britisk Columbia" #: timezones.h:403 msgid "America/Virgin" msgstr "Amerika/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Amerika/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "Stillehavstid - Syd Yukon" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Amerika/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "Centraltid - Manitoba & vest Ontario" #: timezones.h:410 msgid "America/Yakutat" msgstr "Amerika/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "Alaska-tid - Alaska panhandle neck" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Amerika/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "Bjergtid central-nord-vest territorierne" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Antarktis/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "Casey Station, Bailey Peninsula" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Antarktis/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "Davis Station, Vestfold Hills" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Antarktis/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Dumont-d'Urville Station, Terre Adelie" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "Antarktis/Macquarie" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "Macquarie Island Station, Macquarie Island" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Antarktis/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "Mawson Station, Holme Bay" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Antarktis/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "McMurdo Station, Ross Island" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Antarktis/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "Palmer Station, Anvers Island" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Antarktis/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "Rothera Station, Adelaide Island" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antarktis/South_Pole" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "Amundsen-Scott Station, South Pole" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Antarktis/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "Syowa Station, E Ongul I" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Antarktis/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "Vostok Station, S Magnetic Pole" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Arktis/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Asien/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Asien/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Asien/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Asien/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "Moskva+08 - Bering Sea" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Asien/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Asien/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "Aqtobe (Aktobe)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Asien/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Asien/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Asien/Baghdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Asien/Bahrain" #: timezones.h:468 msgid "Asia/Baku" msgstr "Asien/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Asien/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Asien/Beirut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Asien/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Asien/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Asien/Calcutta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Asien/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "Dornod, Sukhbaatar" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Asien/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "Central Kina - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." #: timezones.h:480 msgid "Asia/Chungking" msgstr "Asien/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Asien/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Asien/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Asien/Damaskus" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Asien/Daka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Asien/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Asien/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Asien/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Asien/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Asien/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Heilongjiang (undtagen Mohe), Jilin" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "Asien/Ho_Chi_Minh" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Asien/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Asien/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Asien/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "Moskva+05 - Lake Baikal" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Asien/Istanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Asien/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "Java & Sumatra" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Asien/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "Irian Jaya & the Moluccas" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Asien/Jerusalem" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Asien/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Asien/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "Moskva+08 - Kamchatka" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Asien/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Asien/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "Vest Tibet & Xinjiang" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "Asien/Katmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Asien/Katmandu" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "Asien/Kolkata" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Asien/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "Moskva+04 - Yenisei River" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Asien/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "peninsular Malaysia" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Asien/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "Sabah & Sarawak" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Asien/Kuwait" #: timezones.h:529 msgid "Asia/Macao" msgstr "Asien/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Asien/Macau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Asien/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "Moskva+08 - Magadan" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Asien/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "Ƙst- & Syd-borneo, Celebes, Bali, Nusa Tengarra, Vesttimor" #: timezones.h:537 msgid "Asia/Manila" msgstr "Asien/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Asien/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Asien/Nicosia" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "Asien/Novokuznetsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "Moskva+03 - Novokuznetsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Asien/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "Moskva+03 - Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Asien/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "Moskva+03 - Vestsiberien" #: timezones.h:549 msgid "Asia/Oral" msgstr "Asien/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "Vestkazakhstan" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Asien/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Asien/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "Vest- & Central-borneo" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Asien/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Asien/Qatar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Asien/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "Qyzylorda (Kyzylorda, Kzyl-Orda)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Asien/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Asien/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Asien/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Asien/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Asien/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Asien/Saigon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Asien/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "Moskva+07 - Sakhalin Ƙen" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Asien/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "Vestuzbekistan" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Asien/Seoul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Asien/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "Ƙstkina - Beijing, Guangdong, Shanghai osv." #: timezones.h:577 msgid "Asia/Singapore" msgstr "Asien/Singapore" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Asien/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Asien/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "Ƙstuzbekistan" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Asien/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Asien/Teheran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Asien/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Asien/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Asien/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Asien/Tokyo" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Asien/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Asien/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Asien/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Asien/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "meste af Tibet & Xinjiang" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Asien/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Asien/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "Moskva+07 - Amur River" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Asien/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "Moskva+06 - Lena River" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Asien/Jekaterineburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "Moskva+02 - Urals" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Asien/Jerevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlanterhav/Azores" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "Azores" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlanterhav/Bermuda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlanterhav/Kanariske Ƙer" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "De Kanariske Ƙer" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlanterhav/Cape_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlanterhav/FƦrĆøerne" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "Atlanterhav/Faroe" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlanterhav/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlanterhav/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "Madeira Ƙerne" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlanterhav/Reykjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlanterhav/South_Georgia" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlanterhav/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlanterhav/St_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "Australien/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Australien/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "Sydaustralien" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Australien/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "Queensland - fleste steder" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Australien/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "Nye Syd Wales - Yancowinna" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Australien/Canberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "Australien/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "Tasmanien - King Ƙen" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Australien/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "Nordterritoriet" #: timezones.h:642 msgid "Australia/Eucla" msgstr "Australien/Eucla" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "Vestaustralien - Eucla-omrĆ„det" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Australien/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "Tasmanien - fleste steder" #: timezones.h:648 msgid "Australia/LHI" msgstr "Australien/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Australien/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "Queensland - Holiday Ƙerne" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Australien/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "Lord Howe Ƙen" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Australien/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "Australien/North" #: timezones.h:659 msgid "Australia/NSW" msgstr "Australien/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "Australien/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "Vestaustralien - fleste steder" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Australien/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "Australien/South" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Australien/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "Nye Syd Wales - fleste steder" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Australien/Tasmania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Australien/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "Australien/West" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Australien/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brasilien/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brasilien/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brasilien/Ƙst" #: timezones.h:675 msgid "Brazil/West" msgstr "Brasilien/Vest" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Canada/Atlanterhav" #: timezones.h:677 msgid "Canada/Central" msgstr "Canada/Central" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Canada/Ƙst" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Canada/Ƙst-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Canada/Mountain" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Canada/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Canada/Stillehav" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Canada/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Canada/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Chile/Kontinental" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chile/EasterIsland" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Cuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Ɔgypten" #: timezones.h:692 msgid "Eire" msgstr "Irland" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universel" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Europa/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Europa/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Europa/Athen" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Europa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Europa/Beograd" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Europa/Berlin" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Europa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Europa/Bryssel" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Europa/Bukarest" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Europa/Budapest" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Europa/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Europa/KĆøbenhavn" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Europa/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Europa/Gibraltar" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Europa/Guernsey" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Europa/Helsinki" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Europa/Isle_of_Man" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Europa/Istanbul" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Europa/Jersey" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Europa/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "Moskva-01 - Kaliningrad" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Europa/Kiev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Europa/Lissabon" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Europa/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Europa/London" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Europa/Luxembourg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Europa/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Europa/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Europa/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Europa/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Europa/Monaco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Europa/Moskva" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "Moskva+00 - Vestrusland" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Europa/Nicosia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Europa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Europa/Paris" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Europa/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Europa/Prag" #: timezones.h:776 msgid "Europe/Riga" msgstr "Europa/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Europa/Rom" #: timezones.h:778 msgid "Europe/Samara" msgstr "Europa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "Moskva - Samara, Udmurtia" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Europa/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Europa/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Europa/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "Central Crimea" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Europa/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Europa/Sofia" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Europa/Stockholm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Europa/Tallin" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Europa/Tirana" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Europa/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Europa/Uzhgrod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "Ruthenia" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Europa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Europa/Vatikanet" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Europa/Wien" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Europa/Vilnius" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Europa/Volgograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "Moskva+00 - Kaspiskehav" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Europa/Warsawa" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Europa/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Europa/Zaporozhye" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Europa/Zürich" #: timezones.h:808 msgid "Factory" msgstr "Fabrik" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Irland" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Island" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "IndiskOcean/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "IndiskOcean/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "IndiskOcean/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "IndiskOcean/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "IndiskOcean/Comoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "IndiskOcean/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "IndiskOcean/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "IndiskOcean/Maldiverne" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "IndiskOcean/Mauritius" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "IndiskOcean/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "IndiskOcean/Reunion" #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "Israel" #: timezones.h:833 msgid "Jamaica" msgstr "Jamaica" #: timezones.h:834 msgid "Japan" msgstr "Japan" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libyen" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Mexico/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Mexico/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Mexico/Generel" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "MellemĆøsten/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "MellemĆøsten/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "MellemĆøsten/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Stillehav/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Stillehav/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Stillehav/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "ChathamĆøerne" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "Stillehav/Truk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 #, fuzzy msgid "Chuuk (Truk) and Yap" msgstr "Truk (Chuuk) og Yap" #: timezones.h:859 msgid "Pacific/Easter" msgstr "Stillehavet/Easter" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "Easter Ƙen & Sala y Gomez" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Stillehav/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Stillehav/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "Phoenix Ƙerne" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Stillehav/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Stillehav/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Stillehav/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Stillehav/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "Galapagos Ƙerne" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Stillehav/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "Gambier Ƙerne" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Stillehav/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Stillehav/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Stillehav/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "Hawaii" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Stillehav/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "Johnston Atoll" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Stillehav/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "Line Ƙerne" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Stillehav/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "Kosrae" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Stillehav/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Stillehav/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Stillehav/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "Marquesas Ƙerne" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Stillehav/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "Midway Ƙerne" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Stillehav/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Stillehav/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Stillehav/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Stillehav/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Stillehav/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Stillehav/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Stillehav/Pitcairn" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "Stillehav/Ponape" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 #, fuzzy msgid "Pohnpei (Ponape)" msgstr "Ponape (Pohnpei)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Stillehav/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Stillehav/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Stillehav/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Stillehav/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Stillehav/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Stillehav/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "Society Ƙerne" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Stillehav/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "GilbertĆøerne" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Stillehav/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Stillehav/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Stillehav/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "Wake Ƙen" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Stillehav/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Stillehav/Yap" #: timezones.h:929 msgid "Poland" msgstr "Polen" #: timezones.h:930 msgid "Portugal" msgstr "Portugal" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapore" #: timezones.h:937 msgid "Turkey" msgstr "Tyrkiet" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universel" #: timezones.h:940 msgid "US/Alaska" msgstr "USA/Alaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "USA/Aleutian" #: timezones.h:942 msgid "US/Arizona" msgstr "USA/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "USA/Central" #: timezones.h:944 msgid "US/Eastern" msgstr "USA/Eastern" #: timezones.h:945 msgid "US/East-Indiana" msgstr "USA/East-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "USA/Hawaii" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "USA/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "USA/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "USA/Mountain" #: timezones.h:950 msgid "US/Pacific" msgstr "USA/Pacific" #: timezones.h:951 msgid "US/Samoa" msgstr "USA/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" #~ msgid "US/Pacific-New" #~ msgstr "US/Pacific-New" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/ru.po0000664000175000017500000023012714632072346023712 0ustar fabiofabio# translation of ru.po to Russian # Andrew Martynov , 2004, 2006. # Yulia , 2006, 2009, 2010. # translation of ru.po to msgid "" msgstr "" "Project-Id-Version: ru\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-09-06 09:19\n" "Last-Translator: Yulia \n" "Language-Team: Russian\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: \n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Африка/АбиГжан" #: timezones.h:2 msgid "Africa/Accra" msgstr "Африка/Аккра" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Африка/АГГис-Абеба" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Африка/Алжир" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Африка/Асмара" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Африка/ŠŃŠ¼ŃŃ€Š°" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Африка/Бамако" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Африка/Банги" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Африка/Š‘Š°Š½Š¶ŃƒŠ»" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Африка/Š‘ŠøŃŠ°Ńƒ" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Африка/Блантайр" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Африка/Š‘Ń€Š°Š·Š·Š°Š²ŠøŠ»ŃŒ" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Африка/Š‘ŃƒŠ¶ŃƒŠ¼Š±ŃƒŃ€Š°" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Африка/ŠšŠ°ŠøŃ€" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Африка/Касабланка" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Африка/Š”ŠµŃƒŃ‚Š°" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Š”ŠµŃƒŃ‚Š° Šø Мелилла" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Африка/ŠšŠ¾Š½Š°ŠŗŃ€Šø" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Африка/Дакар" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Африка/Дар-эс-Далам" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Африка/Š”Š¶ŠøŠ±ŃƒŃ‚Šø" #: timezones.h:23 msgid "Africa/Douala" msgstr "Африка/Š”ŃƒŠ°Š»Š°" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Африка/Эль_ŠŃŽŠ½" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Африка/Š¤Ń€ŠøŃ‚Š°ŃƒŠ½" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Африка/Габороне" #: timezones.h:27 msgid "Africa/Harare" msgstr "Африка/Єараре" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Африка/Š™Š¾Ń…Š°Š½Š½ŠµŃŠ±ŃƒŃ€Š³" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Африка/Кампала" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Африка/Š„Š°Ń€Ń‚ŃƒŠ¼" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Африка/Кигали" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Африка/Киншаса" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "ЗапаГ Дем. Республики Конго" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Африка/Лагос" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Африка/Š›ŠøŠ±Ń€ŠµŠ²ŠøŠ»ŃŒ" #: timezones.h:37 msgid "Africa/Lome" msgstr "Африка/Ломе" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Африка/Š›ŃƒŠ°Š½Š“Š°" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Африка/Š›ŃƒŠ±ŃƒŠ¼Š±Š°ŃˆŠø" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "Восток Дем. Республики Конго" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Африка/Š›ŃƒŃŠ°ŠŗŠ°" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Африка/Малабо" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Африка/ŠœŠ°ŠæŃƒŃ‚Ńƒ" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Африка/ŠœŠ°ŃŠµŃ€Ńƒ" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Африка/Мамбоне" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Африка/МогаГишо" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Африка/ŠœŠ¾Š½Ń€Š¾Š²ŠøŃ" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Африка/ŠŠ°Š¹Ń€Š¾Š±Šø" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Африка/ŠŠ“Š¶Š°Š¼ŠµŠ½Š°" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Африка/ŠŠøŠ°Š¼ŠµŠ¹" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Африка/ŠŃƒŠ°ŠŗŃˆŠ¾Ń‚" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Африка/УагаГугу" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Африка/ŠŸŠ¾Ń€Ń‚Š¾-ŠŠ¾Š²Š¾" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Африка/Дан_Томе" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Африка/Š¢Š¾Š¼Š±ŃƒŠŗŃ‚Ńƒ" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Африка/Триполи" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Африка/Тунис" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Африка/Š’ŠøŠ½Š“Ń…ŃƒŠŗ" #: timezones.h:60 msgid "America/Adak" msgstr "Америка/АГак" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "ŠŠ»ŠµŃƒŃ‚ŃŠŗŠøŠµ острова" #: timezones.h:63 msgid "America/Anchorage" msgstr "Америка/АнкориГж" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "ŠŠ»ŃŃŠŗŠ° Š²Ń€ŠµŠ¼Ń" #: timezones.h:66 msgid "America/Anguilla" msgstr "Америка/ŠŠ½Š³ŠøŠ»ŃŒŃ" #: timezones.h:67 msgid "America/Antigua" msgstr "Америка/ŠŠ½Ń‚ŠøŠ³ŃƒŠ°" #: timezones.h:68 msgid "America/Araguaina" msgstr "Америка/ŠŃ€Š°Š³ŃƒŠ°ŠøŠ½Š°" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Токантинс" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Америка/Аргентина/Š‘ŃƒŃŠ½Š¾Ń_Айрес" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Š‘ŃƒŃŠ½Š¾Ń-Айрес (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Америка/Аргентина/ŠšŠ°Ń‚Š°Š¼Š°Ń€ŠŗŠ°" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "ŠšŠ°Ń‚Š°Š¼Š°Ń€ŠŗŠ° (CT), Š§ŃƒŠ±ŃƒŃ‚ (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Америка/Аргентина/ŠšŠ¾Š¼Š¾Š“Š¾Ń€Š¾-Š ŠøŠ²Š°Š“Š°Š²ŠøŃ" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Америка/Аргентина/ŠšŠ¾Ń€Š“Š¾Š²Š°" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "Š¾ŃŠ½Š¾Š²Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Америка/Аргентина/Š–ŃƒŠ¶ŃƒŠ¹" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Š–ŃƒŠ¶ŃƒŠ¹ (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Америка/Аргентина/Ла-Риоха" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "Ла-Риоха (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Америка/Аргентина/МенГоса" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "МенГоза (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Америка/Аргентина/Рио-Š“Š°Š»ŃŒŠµŠ³Š¾Ń" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Данта-ŠšŃ€ŃƒŠ· (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "Америка/Аргентина/Š”Š°Š»ŃŒŃ‚Š°" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Америка/Аргентина/Дан-Єуан" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "Дан-Єуан (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "Америка/Аргентина/Дан-Š›ŃƒŠøŃ" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "Дан-Š›ŃƒŠøŃ (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Америка/Аргентина/Тукуман" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Тукуман (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Америка/Аргентина/Š£ŃˆŃƒŠ°Ń" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Архипелаг ŠžŠ³Š½ŠµŠ½Š½Š°Ń Š—ŠµŠ¼Š»Ń (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "Америка/ŠŃ€ŃƒŠ±Š°" #: timezones.h:109 msgid "America/Asuncion" msgstr "Америка/Асунсьон" #: timezones.h:110 msgid "America/Atikokan" msgstr "Америка/Атикокан" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "Восточное станГартное Š²Ń€ŠµŠ¼Ń — Атикокан, ŠžŠ½Ń‚Š°Ń€ŠøŠ¾ Šø Š”Š°ŃƒŃ‚Š³ŠµŠ¼ŠæŃ‚Š¾Š½, ŠŃƒŠ½Š°Š²ŃƒŃ‚" #: timezones.h:113 msgid "America/Atka" msgstr "Америка/Атка" #: timezones.h:114 msgid "America/Bahia" msgstr "Америка/Š‘Š°Š¹Ń" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "Š‘Š°Š¹Ń" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "Америка/Š‘Š°Š¹Ń-Ге-БанГерас" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Šµ Š²Ń€ŠµŠ¼Ń (Мексика) — Š‘Š°Š¹Ń-Ге-БанГерас" #: timezones.h:120 msgid "America/Barbados" msgstr "Америка/БарбаГос" #: timezones.h:121 msgid "America/Belem" msgstr "Америка/Белен" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "Амапа, восток ŠŸŠ°Ń€Š°" #: timezones.h:124 msgid "America/Belize" msgstr "Америка/Белиз" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "Америка/Бланк-Даблон" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "Атлантическое станГартное Š²Ń€ŠµŠ¼Ń — Квебек - Деверный берег" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Америка/Боа_Виста" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "Рорайма" #: timezones.h:131 msgid "America/Bogota" msgstr "Америка/Богота" #: timezones.h:132 msgid "America/Boise" msgstr "Америка/Бойсе" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "Горное Š²Ń€ŠµŠ¼Ń — ŃŽŠ¶Š½Ń‹Š¹ АйГахо Šø восточный ŠžŃ€ŠµŠ³Š¾Š½" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Америка/Š‘ŃƒŃŠ½Š¾Ń_Айрес" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Америка/ŠšŠµŠ¹Š¼Š±Ń€ŠøŠ“Š¶-Бей" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "Горное Š²Ń€ŠµŠ¼Ń — запаГный ŠŃƒŠ½Š°Š²ŃƒŃ‚" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "Америка/Кампо-ГранГе" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "ŠœŠ°Ń‚Š¾-Гроссо-Гу-Дул" #: timezones.h:142 msgid "America/Cancun" msgstr "Америка/Канкун" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Šµ Š²Ń€ŠµŠ¼Ń — ŠšŠ²ŠøŠ½Ń‚Š°Š½Š°-Роо" #: timezones.h:145 msgid "America/Caracas" msgstr "Америка/ŠšŠ°Ń€Š°ŠŗŠ°Ń" #: timezones.h:146 msgid "America/Catamarca" msgstr "Америка/ŠšŠ°Ń‚Š°Š¼Š°Ń€ŠŗŠ°" #: timezones.h:147 msgid "America/Cayenne" msgstr "Америка/Кайенна" #: timezones.h:148 msgid "America/Cayman" msgstr "Америка/ŠšŠ°Š¹Š¼Š°Š½Ń‹" #: timezones.h:149 msgid "America/Chicago" msgstr "Америка/Чикаго" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Šµ Š²Ń€ŠµŠ¼Ń" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Америка/Чиуауа" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "Горное Š²Ń€ŠµŠ¼Ń (Мексика) — Чиуауа за преГелами границы ДША" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "Америка/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "Америка/ŠšŠ¾Ń€Š“Š¾Š²Š°" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Америка/ŠšŠ¾ŃŃ‚Š°_Рика" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Америка/ŠšŃƒŃŠ±Š°" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "ŠœŠ°Ń‚Š¾-Гроссо" #: timezones.h:161 msgid "America/Curacao" msgstr "Америка/ŠšŃŽŃ€Š°ŃŠ°Š¾" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Америка/Š”ŠµŠ½Š¼Š°Ń€ŠŗŃˆŠ°Š²Š½" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "востоное ŠæŠ¾Š±ŠµŃ€ŠµŠ¶ŃŒŠµ, север Š”ŠŗŠ¾Ń€ŃŠ±ŠøŠ·ŃƒŠ½Š“" #: timezones.h:165 msgid "America/Dawson" msgstr "Америка/Š”Š¾ŃƒŃŠ¾Š½" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "Тихоокеанское Š²Ń€ŠµŠ¼Ń — северный Юкон" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Америка/Досон_ŠšŃ€ŠøŠŗ" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" "Горное станГартное Š²Ń€ŠµŠ¼Ń — Досон крик, Форт Ден-Джон, Š‘Ń€ŠøŃ‚Š°Š½ŃŠŗŠ°Ń " "ŠšŠ¾Š»ŃƒŠ¼Š±ŠøŃ" #: timezones.h:171 msgid "America/Denver" msgstr "Америка/Денвер" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "Горное Š²Ń€ŠµŠ¼Ń" #: timezones.h:174 msgid "America/Detroit" msgstr "Америка/Детройт" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "Восточное Š²Ń€ŠµŠ¼Ń — ŠœŠøŃ‡ŠøŠ³Š°Š½ - Š¾ŃŠ½Š¾Š²Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ" #: timezones.h:177 msgid "America/Dominica" msgstr "Америка/Š”Š¾Š¼ŠøŠ½ŠøŠŗŠ°Š½ŃŠŗŠ°Ń_респ" #: timezones.h:178 msgid "America/Edmonton" msgstr "Америка/ЭГмонтон" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" "Горное Š²Ń€ŠµŠ¼Ń — ŠŠ»ŃŒŠ±ŠµŃ€Ń‚Š°, восток Британской Колумбии Šø запаГный " "Даскачеван" #: timezones.h:181 msgid "America/Eirunepe" msgstr "Америка/Š­Š¹Ń€ŃƒŠ½ŠµŠæŠµ" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "Амазонас, запаГ" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Америка/Š”Š°Š»ŃŒŠ²Š°Š“Š¾Ń€" #: timezones.h:185 msgid "America/Ensenada" msgstr "Америка/ЕнсенаГа" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Америка/Форталеза" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "Деверо-восток Бразилии (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Америка/Форт-Š£ŃŠ¹Š½" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Америка/Глейс-Бей" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" "Атлантическое Š²Ń€ŠµŠ¼Ń — ŠŠ¾Š²Š°Ń ŠØŠ¾Ń‚Š»Š°Š½Š“ŠøŃ - гГе не ŃƒŃ‡ŠøŃ‚Ń‹Š²Š°ŠµŃ‚ŃŃ Гневной " "станГарт 1966-1971" #: timezones.h:193 msgid "America/Godthab" msgstr "Америка/Готхоб" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "Š¾ŃŠ½Š¾Š²Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Америка/Š“ŃƒŃ_Бей" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "Атлантическое Š²Ń€ŠµŠ¼Ń — ЛабраГор - Š¾ŃŠ½Š¾Š²Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Америка/ГранГ_Терк" #: timezones.h:200 msgid "America/Grenada" msgstr "Америка/ГренаГа" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Америка/Š“ŃƒŠ°Š“ŠµŠ»ŃƒŠæŠµ" #: timezones.h:202 msgid "America/Guatemala" msgstr "Америка/Гватемала" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Америка/Š“ŃƒŠ°ŃŠŗŠøŠ»ŃŒ" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "материк" #: timezones.h:206 msgid "America/Guyana" msgstr "Америка/Гайана" #: timezones.h:207 msgid "America/Halifax" msgstr "Америка/Галифакс" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "Атлантическое Š²Ń€ŠµŠ¼Ń — ŠŠ¾Š²Š°Ń ŠØŠ¾Ń‚Š»Š°Š½Š“ŠøŃ (Š¾ŃŠ½Š¾Š²Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ)" #: timezones.h:210 msgid "America/Havana" msgstr "Америка/Гавана" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Америка/Š­Ń€Š¼Š¾ŃŠøŠ»ŃŒŠ¾" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "Горное станГартное Š²Ń€ŠµŠ¼Ń — Донора" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Америка/ИнГиана/ИнГианаполис" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "Восточное Š²Ń€ŠµŠ¼Ń — ИнГиана - Š¾ŃŠ½Š¾Š²Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Америка/ИнГиана/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Šµ Š²Ń€ŠµŠ¼Ń — ИнГиана - Š¾ŠŗŃ€ŃƒŠ³ Дтарк" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Америка/ИнГиана/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "Восточное Š²Ń€ŠµŠ¼Ń — ИнГиана - Š¾ŠŗŃ€ŃƒŠ³ ŠšŃ€Š¾ŃƒŃ„Š¾Ń€Š“" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "Америка/ИнГиана/ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "Восточное Š²Ń€ŠµŠ¼Ń — ИнГиана - Š¾ŠŗŃ€ŃƒŠ³ Пайк" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Америка/ИнГианаполис" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "Америка/ИнГиана/Tell_City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Šµ Š²Ń€ŠµŠ¼Ń — ИнГиана - Š¾ŠŗŃ€ŃƒŠ³ ŠŸŠµŃ€Ń€Šø" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Америка/ИнГиана/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "Восточное Š²Ń€ŠµŠ¼Ń — ИнГиана - Š¾ŠŗŃ€ŃƒŠ³ ŠØŠ²ŠµŠ¹Ń†Š°Ń€ŠøŃ" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "Америка/ИнГиана/Винсеннес" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "Восточное Š²Ń€ŠµŠ¼Ń — ИнГиана - Š¾ŠŗŃ€ŃƒŠ³ Дейвес, Š”ŃŽŠ±ŃƒŠ°, ŠŠ¾ŠŗŃ, ŠœŠ°Ń€Ń‚ŠøŠ½" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "Америка/ИнГиана/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "Восточное Š²Ń€ŠµŠ¼Ń — ИнГиана - Š¾ŠŗŃ€ŃƒŠ³ Пуласки" #: timezones.h:239 msgid "America/Inuvik" msgstr "Америка/Инувик" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "Горное Š²Ń€ŠµŠ¼Ń — Š·Š°ŠæŠ°Š“Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ ДеверозапаГных Территорий" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Америка/Š˜ŠŗŠ°Š»ŃƒŠøŃ‚" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "Восточное Š²Ń€ŠµŠ¼Ń — восточный ŠŃƒŠ½Š°Š²ŃƒŃ‚ - Š¾ŃŠ½Š¾Š²Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ" #: timezones.h:245 msgid "America/Jamaica" msgstr "Америка/Ямайка" #: timezones.h:246 msgid "America/Jujuy" msgstr "Америка/Š–ŃƒŠ¶ŃƒŠ¹" #: timezones.h:247 msgid "America/Juneau" msgstr "Америка/Š”Š¶ŃƒŠ½Š¾" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "ŠŠ»ŃŃŠŗŠ°" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Америка/ŠšŠµŠ½Ń‚ŃƒŠŗŠŗŠø/Š›ŃƒŠøŃŠ²ŠøŠ»Š»" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "Восточное Š²Ń€ŠµŠ¼Ń — ŠšŠµŠ½Ń‚ŃƒŠŗŠŗŠø - Š›ŃƒŠøŃŠ²ŠøŠ»Š»" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Америка/ŠšŠµŠ½Ń‚ŃƒŠŗŠŗŠø/ŠœŠ¾Š½Ń‚ŠøŃ‡ŠµŠ»Š»Š¾" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "Восточное Š²Ń€ŠµŠ¼Ń — ŠšŠµŠ½Ń‚ŃƒŠŗŠŗŠø - Š¾ŠŗŃ€ŃƒŠ³ Š£ŃŠ¹Š½" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Америка/Кнокс_Ин" #: timezones.h:257 msgid "America/La_Paz" msgstr "Америка/Ла_Пас" #: timezones.h:258 msgid "America/Lima" msgstr "Америка/Лима" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Америка/Лос_Анжелес" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "Тихоокеанское Š²Ń€ŠµŠ¼Ń" #: timezones.h:262 msgid "America/Louisville" msgstr "Америка/Š›ŃƒŠøŃŠ²ŠøŠ»Š»" #: timezones.h:263 msgid "America/Maceio" msgstr "Америка/Масейо" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "Алагоас, ДерГжпайп" #: timezones.h:266 msgid "America/Managua" msgstr "Америка/Манагуа" #: timezones.h:267 msgid "America/Manaus" msgstr "Америка/Манаус" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "Амазонас, восток" #: timezones.h:270 msgid "America/Marigot" msgstr "Америка/ŠœŠ°Ń€ŠøŠ³Š¾Ń‚" #: timezones.h:271 msgid "America/Martinique" msgstr "Америка/ŠœŠ°Ń€Ń‚ŠøŠ½ŠøŠŗŠ°" #: timezones.h:272 msgid "America/Matamoros" msgstr "Америка/ŠœŠ°Ń‚Š°Š¼Š¾Ń€Š¾Ń" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Šµ Š²Ń€ŠµŠ¼Ń (ДША) — Коауила, Š”ŃƒŃ€Š°Š½Š³Š¾, ŠŃƒŃŠ²Š¾-Леон, Тамаулипас " "возле границы ДША" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Америка/ŠœŠ°ŃŠ°Ń‚Š»Š°Š½" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "Горное Š²Ń€ŠµŠ¼Ń — Š‘Š°Š¹Ń, ŠŠ°ŃŃ€ŠøŃ‚, Диналоа" #: timezones.h:278 msgid "America/Mendoza" msgstr "Америка/МенГоса" #: timezones.h:279 msgid "America/Menominee" msgstr "Америка/Меномини" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Šµ Š²Ń€ŠµŠ¼Ń — ŠœŠøŃ‡ŠøŠ³Š°Š½ - Š¾ŠŗŃ€ŃƒŠ³ Дикинсон, ГоГжебик, Айрон, Меномини" #: timezones.h:282 msgid "America/Merida" msgstr "Америка/ŠœŠµŃ€ŠøŠ“Š°" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Šµ Š²Ń€ŠµŠ¼Ń — ŠšŠ°Š¼ŠæŠµŃ‡Šµ, Юкатан" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Америка/ŠœŠµŃ…ŠøŠŗŠ¾" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Šµ Š²Ń€ŠµŠ¼Ń — Š¾ŃŠ½Š¾Š²Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ" #: timezones.h:288 msgid "America/Miquelon" msgstr "Америка/Микелон" #: timezones.h:289 msgid "America/Moncton" msgstr "Америка/ŠœŠ¾Š½ŠŗŃ‚Š¾Š½" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "Атлантическое Š²Ń€ŠµŠ¼Ń — ŠŠ¾Š²Ń‹Š¹ Брансвик" #: timezones.h:292 msgid "America/Monterrey" msgstr "Америка/ŠœŠ¾Š½Ń‚ŠµŃ€Ń€ŠµŠ¹" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Šµ Š²Ń€ŠµŠ¼Ń (Мексика) — Коауила, Š”ŃƒŃ€Š°Š½Š³Š¾, ŠŃƒŃŠ²Š¾-Леон, Тамаулипас " "за преГелами границы ДША" #: timezones.h:295 msgid "America/Montevideo" msgstr "Америка/ŠœŠ¾Š½Ń‚ŠµŠ²ŠøŠ“ŠµŠ¾" #: timezones.h:296 msgid "America/Montreal" msgstr "Америка/ŠœŠ¾Š½Ń€ŠµŠ°Š»ŃŒ" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "Восточное Š²Ń€ŠµŠ¼Ń — Квебек - Š¾ŃŠ½Š¾Š²Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ" #: timezones.h:299 msgid "America/Montserrat" msgstr "Америка/ŠœŠ¾Š½Ń‚ŃŠµŃ€Ń€Š°Ń‚" #: timezones.h:300 msgid "America/Nassau" msgstr "Америка/ŠŠ°ŃŃŠ°Ńƒ" #: timezones.h:301 msgid "America/New_York" msgstr "Америка/ŠŃŒŃŽ_Йорк" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "Восточное Š²Ń€ŠµŠ¼Ń" #: timezones.h:304 msgid "America/Nipigon" msgstr "Америка/ŠŠøŠæŠøŠ³Š¾Š½" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" "Восточное Š²Ń€ŠµŠ¼Ń — ŠžŠ½Ń‚Š°Ń€ŠøŠ¾ Šø Квебек - гГе не ŃƒŃ‡ŠøŃ‚Ń‹Š²Š°ŠµŃ‚ŃŃ Гневной " "станГарт 1967-1973" #: timezones.h:307 msgid "America/Nome" msgstr "Америка/ŠŠ¾Š¼" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "ŠŠ»ŃŃŠŗŠ° Š²Ń€ŠµŠ¼Ń — Š·Š°ŠæŠ°Š“Š½Š°Ń ŠŠ»ŃŃŠŗŠ°" #: timezones.h:310 msgid "America/Noronha" msgstr "Америка/ŠŠ¾Ń€Š¾Š½ŃŒŃ" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "ŠžŃŃ‚Ń€Š¾Š²Š° Атлантического океана" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Америка/Š”ŠµŠ²ŠµŃ€Š½Š°Ń_Дакота/Центр" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Šµ Š²Ń€ŠµŠ¼Ń — Š”ŠµŠ²ŠµŃ€Š½Š°Ń Дакота - ŠžŠŗŃ€ŃƒŠ³ ŠžŠ»ŠøŠ²ŠµŃ€" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "Америка/Š”ŠµŠ²ŠµŃ€Š½Š°Ń_Дакота/ŠŃŒŃŽ_Далем" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Šµ Š²Ń€ŠµŠ¼Ń — Š”ŠµŠ²ŠµŃ€Š½Š°Ń Дакота - ŠžŠŗŃ€ŃƒŠ³ ŠœŠ¾Ń€Ń‚Š¾Š½ (кроме ŠœŠ°Š½Š“ŃŠ½)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "Америка/ŠžŃ…ŠøŠ½Š°Š³Š°" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "Горное Š²Ń€ŠµŠ¼Ń (ДША) — Чиуауа возле границы ДША" #: timezones.h:322 msgid "America/Panama" msgstr "Америка/Панама" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Америка/ŠŸŠ°Š½Š³Š½ŠøŃ€Ń‚Š°Š½Š³" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "Восточное Š²Ń€ŠµŠ¼Ń — ŠŸŠ°Š½ŠøŃ€Ń‚Š°Š½Š³, ŠŃƒŠ½Š°Š²ŃƒŃ‚" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Америка/ŠŸŠ°Ń€Š°Š¼Š°Ń€ŠøŠ±Š¾" #: timezones.h:327 msgid "America/Phoenix" msgstr "Америка/Феникс" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "Горное станГартное Š²Ń€ŠµŠ¼Ń — Аризона" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Америка/ŠŸŠ¾Ń€Ń‚-о-ŠŸŃ€ŠµŠ½Ń" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Америка/ŠŸŠ¾Ń€Ń‚_Акра" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Америка/ŠŸŠ¾Ń€Ń‚_оф_Дпейн" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Америка/ŠŸŠ¾Ń€Ń‚Š¾_Š’ŠµŠ»ŃŒŃŽ" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "Š Š¾Š½Š“Š¾Š½ŠøŃ" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Америка/ŠŸŃƒŃŃ€Ń‚Š¾-Рико" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Америка/река_Рейни" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Šµ Š²Ń€ŠµŠ¼Ń — Рейни Ривер Šø Форт Франсис, ŠžŠ½Ń‚Š°Ń€ŠøŠ¾" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Америка/залив_Ранкин" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Šµ Š²Ń€ŠµŠ¼Ń — Ń†ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠŃƒŠ½Š°Š²ŃƒŃ‚" #: timezones.h:343 msgid "America/Recife" msgstr "Америка/Ресифи" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "ŠŸŠµŃ€Š½Š°Š¼Š±ŃƒŠŗŃƒ" #: timezones.h:346 msgid "America/Regina" msgstr "Америка/РеГжайна" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Šµ станГартное Š²Ń€ŠµŠ¼Ń — Даскачеван - Š¾ŃŠ½Š¾Š²Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ" #: timezones.h:349 msgid "America/Resolute" msgstr "Америка/Š ŠµŠ·Š¾Š»ŃŽŃ‚" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "Восточное станГартное Š²Ń€ŠµŠ¼Ń — Š ŠµŠ·Š¾Š»ŃŽŃ‚, ŠŃƒŠ½Š°Š²ŃƒŃ‚" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Америка/Риу_Š‘Ń€Š°Š½ŠŗŃƒ" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "Акре" #: timezones.h:355 msgid "America/Rosario" msgstr "Америка/Росарио" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "Америка/Данта-Изабел" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" "Тихоокеанское Š²Ń€ŠµŠ¼Ń (Мексика) — ŠŠøŠ¶Š½ŃŃ ŠšŠ°Š»ŠøŃ„Š¾Ń€Š½ŠøŃ за преГелами границы " "ДША" #: timezones.h:359 msgid "America/Santarem" msgstr "Америка/Дантарем" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "ЗапаГ ŠŸŠ°Ń€Š°" #: timezones.h:362 msgid "America/Santiago" msgstr "Америка/Š”Š°Š½Ń‚ŃŒŃŠ³Š¾" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Америка/Данто-Доминго" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Америка/Дан_Паулу" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "Юг Šø ŃŽŠ³Š¾-восток Бразилии (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Америка/Š”ŠŗŠ¾Ń€ŃŠ±ŠøŃŃƒŠ½Š½" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Š”ŠŗŠ¾Ń€ŃŠ±ŠøŠ·ŃƒŠ½Š“ / Š˜Ń‚Š¾ŠŗŠ¾Ń€Ń‚ŃƒŃ€Š¼ŠøŠøŃ‚" #: timezones.h:372 msgid "America/Shiprock" msgstr "Америка/Шипрок" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "Горное Š²Ń€ŠµŠ¼Ń — ŠŠ°Š²Š°Ń…Š¾" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "Америка/St_Barthelemy" #: timezones.h:376 msgid "America/St_Johns" msgstr "Америка/Дент-Джонс" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "ŠŃŒŃŽŃ„Š°ŃƒŠ½Š“Š»ŠµŠ½Š“, ŃŽŠ³Š¾-восток ЛабраГора" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Америка/Дент-ŠšŠøŃ‚Ń" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Америка/Дент-Š›ŃŽŃŠøŃ" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Америка/Дент_Томас" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Америка/Дент_Винсент" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Америка/Š”ŃƒŠøŃ„Ń‚-ŠšŠ°Ń€Ń€ŠµŠ½Ń‚" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Šµ станГартное Š²Ń€ŠµŠ¼Ń — Даскачеван - среГний запаГ" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Америка/Тегусигальпа" #: timezones.h:387 msgid "America/Thule" msgstr "Америка/Туле" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "Туле / ŠŸŠøŃ‚ŃƒŃ„ŠøŠŗ" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Америка/ТанГер-Бей" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "Восточное Š²Ń€ŠµŠ¼Ń — ТанГер-Бей, ŠžŠ½Ń‚Š°Ń€ŠøŠ¾" #: timezones.h:393 msgid "America/Tijuana" msgstr "Америка/Š¢ŠøŃ…ŃƒŠ°Š½Š°" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "Тихоокеанское Š²Ń€ŠµŠ¼Ń (ДША) — ŠŠøŠ¶Š½ŃŃ ŠšŠ°Š»ŠøŃ„Š¾Ń€Š½ŠøŃ возле границы ДША" #: timezones.h:396 msgid "America/Toronto" msgstr "Америка/Торонто" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "Восточное Š²Ń€ŠµŠ¼Ń — ŠžŠ½Ń‚Š°Ń€ŠøŠ¾ - Š¾ŃŠ½Š¾Š²Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ" #: timezones.h:399 msgid "America/Tortola" msgstr "Америка/Тортола" #: timezones.h:400 msgid "America/Vancouver" msgstr "Америка/Š’Š°Š½ŠŗŃƒŠ²ŠµŃ€" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "Тихоокеанское Š²Ń€ŠµŠ¼Ń — Š·Š°ŠæŠ°Š“Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ Британской Колумбии" #: timezones.h:403 msgid "America/Virgin" msgstr "Америка/ВирГжин" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Америка/Уайтхорс" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "Тихоокеанское Š²Ń€ŠµŠ¼Ń — ŃŽŠ¶Š½Ń‹Š¹ Юкон" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Америка/Виннипег" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š¾Šµ Š²Ń€ŠµŠ¼Ń — ŠœŠ°Š½ŠøŃ‚Š¾Š±Š° Šø запаГный ŠžŠ½Ń‚арио" #: timezones.h:410 msgid "America/Yakutat" msgstr "Америка/ŠÆŠŗŃƒŃ‚Š°Ń‚" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "ŠŠ»ŃŃŠŗŠ° Š²Ń€ŠµŠ¼Ń — ŠŠ»ŃŃŠŗŠ°, ŠæŠµŃ€ŠµŃˆŠµŠµŠŗ" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Америка/Š™ŠµŠ»Š»Š¾ŃƒŠ½Š°Š¹Ń„" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "Горное Š²Ń€ŠµŠ¼Ń — Ń†ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š°Ń Ń‡Š°ŃŃ‚ŃŒ ДеверозапаГных Территорий" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Антарктика/Кейси" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "Кейси, ŃŃ‚Š°Š½Ń†ŠøŃ Кейси, ŠæŠ¾Š»ŃƒŠ¾ŃŃ‚Ń€Š¾Š² Бейли" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Антарктика/Дейвис" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "Дейвис, ŃŃ‚Š°Š½Ń†ŠøŃ Дейвис, ВестфолГ Єиллс" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Антарктика/Š”ŃŽŠ¼Š¾Š½_Š“_Š®Ń€Š²ŠøŠ»ŃŒ" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Š”ŃŽŠ¼Š¾Š½-Š“-Š®Ń€Š²ŠøŠ»ŃŒ, ŃŃ‚Š°Š½Ń†ŠøŃ Š”ŃŽŠ¼Š¾Š½-Š“-Š®Ń€Š²ŠøŠ»ŃŒ, Терра-АГели" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "Антарктика/ŠœŠ°ŠŗŠŗŃƒŠ¾Ń€Šø" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "Š”Ń‚Š°Š½Ń†ŠøŃ на острове ŠœŠ°ŠŗŠŗŃƒŠ¾Ń€Šø, о. ŠœŠ°ŠŗŠŗŃƒŠ¾Ń€Šø" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Антарктика/Моусон" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "Моусон, ŃŃ‚Š°Š½Ń†ŠøŃ Моусон, Š±ŃƒŃ…. Єолме" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Антарктика/Мак_ŠœŠµŃ€Š“Š¾" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "Мак-ŠœŠµŃ€Š“Š¾, ŃŃ‚Š°Š½Ń†ŠøŃ Мак-ŠœŠµŃ€Š“Š¾, остров Росс" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Антарктика/ŠŸŠ°Š»Š¼ŠµŃ€" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "ŠŸŠ°Š»Š¼ŠµŃ€, ŃŃ‚Š°Š½Ń†ŠøŃ ŠŸŠ°Š»Š¼ŠµŃ€, остров Анверс" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Антарктика/Ротера" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "Ротера, ŃŃ‚Š°Š½Ń†ŠøŃ Ротера, остров АГелаиГы" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Антарктика/Южный_ŠŸŠ¾Š»ŃŽŃ" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "АмуГсен-Дкотт, ŃŃ‚Š°Š½Ń†ŠøŃ АмуГсен-Дкотт, Южный ŠæŠ¾Š»ŃŽŃ" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Антарктика/Дёва" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "Дёва, ŃŃ‚Š°Š½Ń†ŠøŃ Дёва" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Антарктика/Восток" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "Š”Ń‚Š°Š½Ń†ŠøŃ Восток, Южный ŠæŠ¾Š»ŃŽŃ" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Арктика/Лонгйир" #: timezones.h:450 msgid "Asia/Aden" msgstr "ŠŠ·ŠøŃ/АГен" #: timezones.h:451 msgid "Asia/Almaty" msgstr "ŠŠ·ŠøŃ/Алматы" #: timezones.h:454 msgid "Asia/Amman" msgstr "ŠŠ·ŠøŃ/Амман" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "ŠŠ·ŠøŃ/ŠŠ½Š°Š“Ń‹Ń€ŃŒ" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "Москва+08 — Берингово море" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "ŠŠ·ŠøŃ/ŠŠŗŃ‚Š°Ńƒ" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "ŠŃ‚Ń‹Ń€Š°Ńƒ (Š±Ń‹Š²ŃˆŠøŠ¹ Š“ŃƒŃ€ŃŒŠµŠ²), ŠœŠ°Š½Š³Ń‹ŃŃ‚Š°Ńƒ" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "ŠŠ·ŠøŃ/ŠŠŗŃ‚ŃŽŠ±ŠøŠ½ŃŠŗ" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "ŠŠŗŃ‚ŃŽŠ±ŠøŠ½ŃŠŗ" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "ŠŠ·ŠøŃ/АшгабаГ" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "ŠŠ·ŠøŃ/ŠŃˆŃ…Š°Š±Š°Š“" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "ŠŠ·ŠøŃ/БагГаГ" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "ŠŠ·ŠøŃ/Бахрейн" #: timezones.h:468 msgid "Asia/Baku" msgstr "ŠŠ·ŠøŃ/Š‘Š°ŠŗŃƒ" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "ŠŠ·ŠøŃ/Банкок" #: timezones.h:470 msgid "Asia/Beirut" msgstr "ŠŠ·ŠøŃ/Š‘ŠµŠ¹Ń€ŃƒŃ‚" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "ŠŠ·ŠøŃ/Š‘ŠøŃˆŠŗŠµŠŗ" #: timezones.h:472 msgid "Asia/Brunei" msgstr "ŠŠ·ŠøŃ/Š‘Ń€ŃƒŠ½ŠµŠ¹" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "ŠŠ·ŠøŃ/ŠšŠ°Š»ŃŒŠŗŃƒŃ‚Ń‚Š°" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "ŠŠ·ŠøŃ/Чойбалсан" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "ДорноГ, Š”ŃƒŃ…Š±Š°Ń‚Š°Š°Ń€" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "ŠŠ·ŠøŃ/Š§ŃƒŠ½Ń†ŠøŠ½" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š°Ń Ń‡Š°ŃŃ‚ŃŒ ŠšŠøŃ‚Š°Ń - Š”Ń‹Ń‡ŃƒŠ°Š½ŃŒ, Юннань, Š“ŃƒŠ°Š½ŃŠø, Шеньси, Š“ŃƒŠ°Š½Ń‡Š¶Š¾Ńƒ Šø Гр." #: timezones.h:480 msgid "Asia/Chungking" msgstr "ŠŠ·ŠøŃ/Чункинг" #: timezones.h:481 msgid "Asia/Colombo" msgstr "ŠŠ·ŠøŃ/Коломбо" #: timezones.h:482 msgid "Asia/Dacca" msgstr "ŠŠ·ŠøŃ/Дака" #: timezones.h:483 msgid "Asia/Damascus" msgstr "ŠŠ·ŠøŃ/Дамаск" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "ŠŠ·ŠøŃ/Дакка" #: timezones.h:485 msgid "Asia/Dili" msgstr "ŠŠ·ŠøŃ/Дили" #: timezones.h:486 msgid "Asia/Dubai" msgstr "ŠŠ·ŠøŃ/Š”ŃƒŠ±Š°Š¹" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "ŠŠ·ŠøŃ/Š”ŃƒŃˆŠ°Š½Š±Šµ" #: timezones.h:488 msgid "Asia/Gaza" msgstr "ŠŠ·ŠøŃ/Газа" #: timezones.h:489 msgid "Asia/Harbin" msgstr "ŠŠ·ŠøŃ/Єарбин" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Š„ŃŠ¹Š»ŃƒŠ½Ń†Š·ŃŠ½ (кроме ŠœŠ¾Ń…е), Цзилинь" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "ŠŠ·ŠøŃ/Єо-Чи-Мин" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "ŠŠ·ŠøŃ/Гонконг" #: timezones.h:494 msgid "Asia/Hovd" msgstr "ŠŠ·ŠøŃ/ЄовГ" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Байан-ŠžŠ»Š³Ń‹, Гови-Алтай, ЄовГ, Увс, Завхан" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "ŠŠ·ŠøŃ/Š˜Ń€ŠŗŃƒŃ‚ŃŠŗ" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "Москва+05 - Байкал" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "ŠŠ·ŠøŃ/Š”Ń‚Š°Š¼Š±ŃƒŠ»" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "ŠŠ·ŠøŃ/Джакарта" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "Ява Šø Š”ŃƒŠ¼Š°Ń‚Ń€Š°" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "ŠŠ·ŠøŃ/Š”Š¶Š°ŃŠæŃƒŃ€Š°" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "Š˜Ń€ŠøŠ°Š½ Š”Š¶Š°Š¹Ń Šø Молуккские острова" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "ŠŠ·ŠøŃ/Š˜ŠµŃ€ŃƒŃŠ°Š»ŠøŠ¼" #: timezones.h:508 msgid "Asia/Kabul" msgstr "ŠŠ·ŠøŃ/Кабул" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "ŠŠ·ŠøŃ/ŠšŠ°Š¼Ń‡Š°Ń‚ŠŗŠ°" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "Москва+08 — ŠšŠ°Š¼Ń‡Š°Ń‚ŠŗŠ°" #: timezones.h:512 msgid "Asia/Karachi" msgstr "ŠŠ·ŠøŃ/ŠšŠ°Ń€Š°Ń‡Šø" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "ŠŠ·ŠøŃ/ŠšŠ°ŃˆŠ³Š°Ń€" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "ЗапаГный Тибет Šø Š”ŠøŠ½Ń†Š·ŃŠ½" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "ŠŠ·ŠøŃ/ŠšŠ°Ń‚Š¼Š°Š½Š“Ńƒ" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "ŠŠ·ŠøŃ/ŠšŠ°Ń‚Š¼Š°Š½Š“Ńƒ" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "ŠŠ·ŠøŃ/ŠšŠ°Š»ŃŒŠŗŃƒŃ‚Ń‚Š°" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "ŠŠ·ŠøŃ/ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗ" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "Москва+04 - Енисей" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "ŠŠ·ŠøŃ/Куала_Š›ŃƒŠ¼ŠæŃƒŃ€" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "ŠœŠ°Š»Š°Š¹Š·ŠøŃ, ŠæŠ¾Š»ŃƒŠ¾ŃŃ‚Ń€Š¾Š²Š½Š°Ń" #: timezones.h:525 msgid "Asia/Kuching" msgstr "ŠŠ·ŠøŃ/ŠšŃƒŃ‡ŠøŠ½Š³" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "Даба Šø Даравак" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "ŠŠ·ŠøŃ/ŠšŃƒŠ²ŠµŠ¹Ń‚" #: timezones.h:529 msgid "Asia/Macao" msgstr "ŠŠ·ŠøŃ/Макао" #: timezones.h:530 msgid "Asia/Macau" msgstr "ŠŠ·ŠøŃ/Макао" #: timezones.h:531 msgid "Asia/Magadan" msgstr "ŠŠ·ŠøŃ/МагаГан" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "Москва+08 - МагаГан" #: timezones.h:534 msgid "Asia/Makassar" msgstr "ŠŠ·ŠøŃ/ŠœŠ°ŠŗŠ°ŃŠ°Ń€ŃŠŗŠøŠ¹_пролив" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "Южный Šø восточный Борнео, Целебес, Бали, ŠŃƒŃŠ° Тенгара, запаГный Тимор" #: timezones.h:537 msgid "Asia/Manila" msgstr "ŠŠ·ŠøŃ/Манила" #: timezones.h:538 msgid "Asia/Muscat" msgstr "ŠŠ·ŠøŃ/ŠœŠ°ŃŠŗŠ°Ń‚" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "ŠŠ·ŠøŃ/ŠŠøŠŗŠ¾Š·ŠøŃ" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "ŠŠ·ŠøŃ/ŠŠ¾Š²Š¾ŠŗŃƒŠ·Š½ŠµŃ†Šŗ" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "Москва+03 — ŠŠ¾Š²Š¾ŠŗŃƒŠ·Š½ŠµŃ†Šŗ" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "ŠŠ·ŠøŃ/ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗ" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "Москва+03 - ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗ" #: timezones.h:546 msgid "Asia/Omsk" msgstr "ŠŠ·ŠøŃ/ŠžŠ¼ŃŠŗ" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "Москва+03 - запаГ Дибири" #: timezones.h:549 msgid "Asia/Oral" msgstr "ŠŠ·ŠøŃ/Š£Ń€Š°Š»ŃŒŃŠŗ" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "Š—Š°ŠæŠ°Š“Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ ŠšŠ°Š·Š°Ń…ŃŃ‚Š°Š½Š°" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "ŠŠ·ŠøŃ/Пномпень" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "ŠŠ·ŠøŃ/ŠŸŠ¾Š½Ń‚ŠøŠ°Š½Š°Šŗ" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "ЗапаГный Šø Ń†ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ Борнео" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "ŠŠ·ŠøŃ/ŠŸŃ…ŠµŠ½ŃŒŃŠ½" #: timezones.h:557 msgid "Asia/Qatar" msgstr "ŠŠ·ŠøŃ/ŠšŠ°Ń‚Š°Ń€" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "ŠŠ·ŠøŃ/ŠšŠ·Ń‹Š»-ŠžŃ€Š“Š°" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "ŠšŃ‹Š·Ń‹Š»Š¾Ń€Š“Š°" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "ŠŠ·ŠøŃ/Рангун" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "ŠŠ·ŠøŃ/Š­Ń€-Š ŠøŃŠ“" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "ŠŠ·ŠøŃ/Š­Ń€-Š ŠøŃŠ“87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "ŠŠ·ŠøŃ/Š­Ń€-Š ŠøŃŠ“88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "ŠŠ·ŠøŃ/Š­Ń€-Š ŠøŃŠ“89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "ŠŠ·ŠøŃ/Дайгон" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "ŠŠ·ŠøŃ/Дахалин" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "Москва+07 - Дахалин, остров" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "ŠŠ·ŠøŃ/ДамарканГ" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "Š—Š°ŠæŠ°Š“Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ Узбекистана" #: timezones.h:573 msgid "Asia/Seoul" msgstr "ŠŠ·ŠøŃ/Деул" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "ŠŠ·ŠøŃ/Шанхай" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "Š’Š¾ŃŃ‚Š¾Ń‡Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ ŠšŠøŃ‚Š°Ń - Пекин, Š“ŃƒŠ°Š½Š“ŃƒŠ½, Шанхай Šø Гр." #: timezones.h:577 msgid "Asia/Singapore" msgstr "ŠŠ·ŠøŃ/Š”ŠøŠ½Š³Š°ŠæŃƒŃ€" #: timezones.h:578 msgid "Asia/Taipei" msgstr "ŠŠ·ŠøŃ/Тайпей" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "ŠŠ·ŠøŃ/Š¢Š°ŃˆŠŗŠµŠ½Ń‚" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "Š’Š¾ŃŃ‚Š¾Ń‡Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ Узбекистана" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "ŠŠ·ŠøŃ/Тбилиси" #: timezones.h:583 msgid "Asia/Tehran" msgstr "ŠŠ·ŠøŃ/Тегеран" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "ŠŠ·ŠøŃ/Тель-Авив" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "ŠŠ·ŠøŃ/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "ŠŠ·ŠøŃ/Š¢Ń…ŠøŠ¼ŠæŃ…Ńƒ" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "ŠŠ·ŠøŃ/Токио" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "ŠŠ·ŠøŃ/Юнг_ПаГан" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "ŠŠ·ŠøŃ/Улан-Батор" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "ŠŠ·ŠøŃ/Улан_Батор" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "ŠŠ·ŠøŃ/Š£Ń€ŃƒŠ¼Ń‡Šø" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "ŠžŃŠ½Š¾Š²Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ Тибета Šø Š”ŠøŠ½Ń†Š·ŃŠ½" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "ŠŠ·ŠøŃ/Š’ŃŒŠµŠ½Ń‚ŃŒŃŠ½" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "ŠŠ·ŠøŃ/ВлаГивосток" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "Москва+07 - ŠŠ¼ŃƒŃ€" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "ŠŠ·ŠøŃ/ŠÆŠŗŃƒŃ‚ŃŠŗ" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "Москва+06 - река Лена" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "ŠŠ·ŠøŃ/Š•ŠŗŠ°Ń‚ŠµŃ€ŠøŠ½Š±ŃƒŃ€Š³" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "Москва+02 - Урал" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "ŠŠ·ŠøŃ/Ереван" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Атлантический океан/Азорские_острова" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "Азорские острова" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Атлантический океан/Š‘ŠµŃ€Š¼ŃƒŠ“Ń‹" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Атлантический океан/ŠšŠ°Š½Š°Ń€Ń‹" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "ŠšŠ°Š½Š°Ń€ŃŠŗŠøŠµ острова" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Атлантический океан/ŠžŃŃ‚Ń€Š¾Š²Š°_Зеленого_ŠœŃ‹ŃŠ°" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Атлантический океан/Фарерские_острова" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "Атлантический океан/Фарерские_острова" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Атлантический океан/Ян_Майен" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Атлантический океан/ŠœŠ°Š“ŠµŠ¹Ń€Š°" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "ŠœŠ°Š“ŠµŠ¹Ń€Š°, острова" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Атлантический океан/Š ŠµŠ¹ŠŗŃŠ²ŠøŠŗ" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Атлантический океан/Š®Š¶Š½Š°Ń_Š“ŠµŠ¾Ń€Š³ŠøŃ" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Атлантический океан/ФолкленГские_острова" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Атлантический океан/Дв_Елена" #: timezones.h:625 msgid "Australia/ACT" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/АГелаиГа" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "Š®Š¶Š½Š°Ń ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Брисбен" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "КвинсленГ - Š¾ŃŠ½Š¾Š²Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Брокен_Єилл" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "ŠŠ¾Š²Ń‹Š¹ Южный Š£ŃŠ»ŃŒŃ - Янковинна" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/ŠšŠ°Š½Š±ŠµŃ€Ń€Š°" #: timezones.h:636 msgid "Australia/Currie" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/ŠšŠµŃ€Š½Ń" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "Š¢Š°ŃŠ¼Š°Š½ŠøŃ - остров Кинг" #: timezones.h:639 msgid "Australia/Darwin" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Дарвин" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "Š”ŠµŠ²ŠµŃ€Š½Š°Ń Ń‚ŠµŃ€Ń€ŠøŃ‚Š¾Ń€ŠøŃ" #: timezones.h:642 msgid "Australia/Eucla" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Юкла" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "Š—Š°ŠæŠ°Š“Š½Š°Ń ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ - Юкла" #: timezones.h:645 msgid "Australia/Hobart" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Єобарт" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "Š¢Š°ŃŠ¼Š°Š½ŠøŃ - Š¾ŃŠ½Š¾Š²Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ" #: timezones.h:648 msgid "Australia/LHI" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/ЛинГеман" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "КвинсленГ - острова ЄолиГей" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/ЛорГ_Єау" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "ЛорГ Єау, остров" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/ŠœŠµŠ»ŃŒŠ±ŃƒŃ€Š½" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "Š’ŠøŠŗŃ‚Š¾Ń€ŠøŃ" #: timezones.h:658 msgid "Australia/North" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Девер" #: timezones.h:659 msgid "Australia/NSW" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/ŠŸŠµŃ€Ń‚" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "Š—Š°ŠæŠ°Š“Š½Š°Ń ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ - Š¾ŃŠ½Š¾Š²Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ" #: timezones.h:663 msgid "Australia/Queensland" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/КвинсленГ" #: timezones.h:664 msgid "Australia/South" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Юг" #: timezones.h:665 msgid "Australia/Sydney" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/ДиГней" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "ŠŠ¾Š²Ń‹Š¹ Южный Š£ŃŠ»ŃŒŃ - Š¾ŃŠ½Š¾Š²Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Š¢Š°ŃŠ¼Š°Š½ŠøŃ" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Š’ŠøŠŗŃ‚Š¾Ń€ŠøŃ" #: timezones.h:670 msgid "Australia/West" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/ЗапаГ" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Янковина" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Š‘Ń€Š°Š·ŠøŠ»ŠøŃ/Акри" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Š‘Ń€Š°Š·ŠøŠ»ŠøŃ/Š”ŠµŠŠ¾Ń€Š¾Š½ŃŒŃ" #: timezones.h:674 msgid "Brazil/East" msgstr "Š‘Ń€Š°Š·ŠøŠ»ŠøŃ/ЗапаГ" #: timezones.h:675 msgid "Brazil/West" msgstr "Š‘Ń€Š°Š·ŠøŠ»ŠøŃ/Восток" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "КанаГа/Атлантика" #: timezones.h:677 msgid "Canada/Central" msgstr "КанаГа/Центр" #: timezones.h:678 msgid "Canada/Eastern" msgstr "КанаГа/Восток" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "КанаГа/Восточный_Даскачеван" #: timezones.h:680 msgid "Canada/Mountain" msgstr "КанаГа/Горы" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "КанаГа/ŠŃŒŃŽŃ„Š°ŃƒŠ½Š“Š»ŠµŠ½Š“" #: timezones.h:682 msgid "Canada/Pacific" msgstr "КанаГа/Тихий_океан" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "КанаГа/Даскачеван" #: timezones.h:684 msgid "Canada/Yukon" msgstr "КанаГа/Юкон" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Чили/ŠšŠ¾Š½Ń‚ŠøŠ½ŠµŠ½Ń‚Š°Š»ŃŒŠ½Ń‹Š¹" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Чили/ŠžŃŃ‚Ń€Š¾Š²_ŠŸŠ°ŃŃ…Šø" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Куба" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Египт" #: timezones.h:692 msgid "Eire" msgstr "Eire" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Гринвич" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Š—ŃƒŠ»Ńƒ" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Европа/АмстерГам" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Европа/АнГорра" #: timezones.h:732 msgid "Europe/Athens" msgstr "Европа/Афины" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Европа/Белфаст" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Европа/БелграГ" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Европа/Берлин" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Европа/Братислава" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Европа/Š‘Ń€ŃŽŃŃŠµŠ»ŃŒ" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Европа/Š‘ŃƒŃ…Š°Ń€ŠµŃŃ‚" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Европа/Š‘ŃƒŠ“Š°ŠæŠµŃˆŃ‚" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Европа/Кишинев" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Европа/Копенгаген" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Европа/Š”ŃƒŠ±Š»ŠøŠ½" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Европа/Гибралтар" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Европа/Гернси" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Европа/Єельсинки" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Европа/ŠžŃŃ‚Ń€Š¾Š²_ŠœŃŠ½" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Европа/Š”Ń‚Š°Š¼Š±ŃƒŠ»" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Европа/Джерси" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Европа/ŠšŠ°Š»ŠøŠ½ŠøŠ½Š³Ń€Š°Š“" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "Москва-01 - ŠšŠ°Š»ŠøŠ½ŠøŠ½Š³Ń€Š°Š“" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Европа/Киев" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Европа/Лиссабон" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Европа/Š›ŃŽŠ±Š»ŃŠ½Š°" #: timezones.h:759 msgid "Europe/London" msgstr "Европа/ЛонГон" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Европа/Š›ŃŽŠŗŃŠµŠ¼Š±ŃƒŃ€Š³" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Европа/ŠœŠ°Š“Ń€ŠøŠ“" #: timezones.h:764 msgid "Europe/Malta" msgstr "Европа/ŠœŠ°Š»ŃŒŃ‚Š°" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Европа/ŠœŠ°Ń€ŠøŠµŃ…Š°Š¼Š½" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Европа/Минск" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Европа/Монако" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Европа/Москва" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "Москва+00 - Š—Š°ŠæŠ°Š“Š½Š°Ń Ń‡Š°ŃŃ‚ŃŒ России" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Европа/ŠŠøŠŗŠ¾Š·ŠøŃ" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Европа/ŠžŃŠ»Š¾" #: timezones.h:773 msgid "Europe/Paris" msgstr "Европа/ŠŸŠ°Ń€ŠøŠ¶" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Европа/ŠŸŠ¾Š“Š³Š¾Ń€ŠøŃ†Š°" #: timezones.h:775 msgid "Europe/Prague" msgstr "Европа/ŠŸŃ€Š°Š³Š°" #: timezones.h:776 msgid "Europe/Riga" msgstr "Европа/Рига" #: timezones.h:777 msgid "Europe/Rome" msgstr "Европа/Рим" #: timezones.h:778 msgid "Europe/Samara" msgstr "Европа/Дамара" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "Москва — Дамара, Š£Š“Š¼ŃƒŃ€Ń‚ŠøŃ" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Европа/Дан_ŠœŠ°Ń€ŠøŠ½Š¾" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Европа/Дараево" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Европа/Š”ŠøŠ¼Ń„ŠµŃ€Š¾ŠæŠ¾Š»ŃŒ" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Ń‹Š¹ ŠšŃ€Ń‹Š¼" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Европа/Дкопье" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Европа/Š”Š¾Ń„ŠøŃ" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Европа/Š”Ń‚Š¾ŠŗŠ³Š¾Š»ŃŒŠ¼" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Европа/Таллинн" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Европа/Тарана" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Европа/Š¢ŠøŃ€Š°ŃŠæŠ¾Š»ŃŒ" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Европа/УжгороГ" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "ŠœŠ°Š»Š¾Ń€Š¾ŃŃŠøŃ" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Европа/Š’Š°Š“ŃƒŃ†" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Европа/Ватикан" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Европа/Вена" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Европа/Š’ŠøŠ»ŃŒŠ½ŃŽŃ" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Европа/ВолгограГ" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "Москва+00 - Каспийское море" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Европа/Š’Š°Ń€ŃˆŠ°Š²Š°" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Европа/Загреб" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Европа/Š—Š°ŠæŠ¾Ń€Š¾Š¶ŃŒŠµ" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Š—Š°ŠæŠ¾Ń€Š¾Š¶ŃŒŠµ, Š›ŃƒŠ³Š°Š½ŃŠŗ" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Европа/Š¦ŃŽŃ€ŠøŃ…" #: timezones.h:808 msgid "Factory" msgstr "Factory" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Гринвич" #: timezones.h:816 msgid "Hongkong" msgstr "Гонконг" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Š˜ŃŠ»Š°Š½Š“ŠøŃ" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Š˜Š½Š“ŠøŃ/ŠŠ½Ń‚Š°Š½Š°Š½Š°Ń€ŠøŠ²Ńƒ" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Š˜Š½Š“ŠøŃ/Чагос" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Š˜Š½Š“ŠøŃ/ŠžŃŃ‚Ń€Š¾Š²_РожГества" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Š˜Š½Š“ŠøŃ/ŠšŠ¾ŠŗŠ¾ŃŠ¾Š²Ń‹Šµ_острова" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Š˜Š½Š“ŠøŃ/ŠšŠ¾Š¼Š¾Ń€ŃŠŗŠøŠµ_острова" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Š˜Š½Š“ŠøŃ/ŠšŠµŃ€Š³ŠµŠ»ŠµŠ½" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Š˜Š½Š“ŠøŃ/ŠœŠ°Ń" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Š˜Š½Š“ŠøŃ/ŠœŠ°Š»ŃŒŠ“ŠøŠ²ŃŠŗŠ°Ń_респ" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Š˜Š½Š“ŠøŃ/ŠœŠ°Š²Ń€ŠøŠŗŠøŠ¹" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Š˜Š½Š“ŠøŃ/ŠœŠ°Š¹Š¾Ń‚Ń‚Š°" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Š˜Š½Š“ŠøŃ/Š ŠµŃŽŠ½ŃŒŠ¾Š½" #: timezones.h:830 msgid "Iran" msgstr "Š˜Ń€Š°Š½" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "Š˜Š·Ń€Š°ŠøŠ»ŃŒ" #: timezones.h:833 msgid "Jamaica" msgstr "Ямайка" #: timezones.h:834 msgid "Japan" msgstr "ŠÆŠæŠ¾Š½ŠøŃ" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "КваГжалейн" #: timezones.h:836 msgid "Libya" msgstr "Š›ŠøŠ²ŠøŃ" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Мексика/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Мексика/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Мексика/General" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Š”Ń€ŠµŠ“Š½ŃŃ_ŠŠ·ŠøŃ/Š ŠøŃŠ“87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Š”Ń€ŠµŠ“Š½ŃŃ_ŠŠ·ŠøŃ/Š ŠøŃŠ“88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Š”Ń€ŠµŠ“Š½ŃŃ_ŠŠ·ŠøŃ/Š ŠøŃŠ“89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Тихий океан/Апиа" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Тихий океан/ŠžŠŗŠ»ŠµŠ½Š“" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Тихий океан/Чатем" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "Чатем, острова" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "Тихий океан/Чуук" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "Чуук (Š¢Ń€ŃƒŠŗ) Šø ŠÆŠæ" #: timezones.h:859 msgid "Pacific/Easter" msgstr "Тихий океан/ŠžŃŃ‚Ń€Š¾Š²_ŠŸŠ°ŃŃ…Šø" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "ŠžŃŃ‚Ń€Š¾Š² ŠŸŠ°ŃŃ…Šø Šø Дала-Šø-Гомес" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Тихий океан/Эфате" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Тихий океан/ЭнГербери" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "Феникс, острова" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Тихий океан/Факаофо" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Тихий океан/ФиГжи" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Тихий океан/Š¤ŃƒŠ½Š°Ń„ŃƒŃ‚Šø" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Тихий океан/Галапагоские_острова" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "Галапагосские острова" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Тихий океан/Š“Š°Š¼Š±ŃŒŠµ" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "ŠžŃŃ‚Ń€Š¾Š²Š° Š“Š°Š¼Š±ŃŒŠµ" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Тихий океан/Š“ŃƒŠ°Š“Š°Š»ŠŗŠ°Š½Š°Š»" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Тихий океан/Š“ŃƒŠ°Š¼" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Тихий океан/Š“Š¾Š½Š¾Š»ŃƒŠ»Ńƒ" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "Гавайи" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Тихий океан/Джонстон" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "Атолл Джонстон" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Тихий океан/ŠšŠøŃ€ŠøŃ‚ŠøŠ¼Š°Ń‚Šø" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "Лайн, острова" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Тихий океан/Кусаие" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "ŠšŠ¾ŃŃ€Š°Šµ" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Тихий океан/КваГжалейн" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Тихий океан/ŠœŠ°Š“Š¶ŃƒŃ€Š¾" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Тихий океан/ŠœŠ°Ń€ŠŗŠøŠ·ŃŠŗŠøŠµ_острова" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "ŠœŠ°Ń€ŠŗŠøŠ·ŃŠŗŠøŠµ острова" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Тихий океан/ŠœŠøŠ“ŃƒŃŠ¹" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "ŠœŠøŠ“ŃƒŃŠ¹, острова" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Тихий океан/ŠŠ°ŃƒŃ€Ńƒ" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Тихий океан/ŠŠøŃƒŃ" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Тихий океан/ŠŠ¾Ń€Ń„Š¾Š»Šŗ" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Тихий океан/ŠŃƒŠ¼ŠµŠ°" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Тихий океан/Паго_Паго" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Тихий океан/Палау" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Тихий океан/ŠžŃŃ‚Ń€Š¾Š²Š°_ŠŸŠøŃ‚ŠŗŠµŃ€Š½" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "Тихий океан/Понпеи" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "Понпеи (Понапе)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Тихий океан/Понпеи" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Тихий океан/ŠŸŠ¾Ń€Ń‚_ŠœŠ¾Ń€ŃŠ±Šø" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Тихий океан/Раротонга" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Тихий океан/Дайпан" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Тихий океан/Дамоа" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Тихий океан/Таити" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "ŠžŃŃ‚Ń€Š¾Š²Š° ŠžŠ±Ń‰ŠµŃŃ‚Š²Š°" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Тихий океан/Тарава" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "Гилберта, острова" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Тихий океан/Š¢Š¾Š½Š³Š°Ń‚Š°ŠæŃƒ" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Тихий океан/Š¢Ń€ŃƒŠŗ" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Тихий океан/Š£ŃŠ¹Šŗ" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "Š£ŃŠ¹Šŗ, остров" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Тихий океан/Уоллис" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Тихий океан/ŠÆŠæ" #: timezones.h:929 msgid "Poland" msgstr "Польша" #: timezones.h:930 msgid "Portugal" msgstr "ŠŸŠ¾Ń€Ń‚ŃƒŠ³Š°Š»ŠøŃ" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Š”ŠøŠ½Š³Š°ŠæŃƒŃ€" #: timezones.h:937 msgid "Turkey" msgstr "Š¢ŃƒŃ€Ń†ŠøŃ" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "ДША/ŠŠ»ŃŃŠŗŠ°" #: timezones.h:941 msgid "US/Aleutian" msgstr "ДША/ŠŠ»ŠµŃƒŃ‚ŃŠŗŠøŠµ_острова" #: timezones.h:942 msgid "US/Arizona" msgstr "ДША/Аризона" #: timezones.h:943 msgid "US/Central" msgstr "ДША/Центр" #: timezones.h:944 msgid "US/Eastern" msgstr "ДША/Восток" #: timezones.h:945 msgid "US/East-Indiana" msgstr "ДША/Š—Š°ŠæŠ°Š“Š½Š°Ń_ИнГиана" #: timezones.h:946 msgid "US/Hawaii" msgstr "ДША/Гавайи" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "ДША/ИнГиана-Дтарк" #: timezones.h:948 msgid "US/Michigan" msgstr "ДША/ŠœŠøŃ‡ŠøŠ³Š°Š½" #: timezones.h:949 msgid "US/Mountain" msgstr "ДША/Горы" #: timezones.h:950 msgid "US/Pacific" msgstr "ДША/Тихий_океан" #: timezones.h:951 msgid "US/Samoa" msgstr "ДША/Дамоа" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Š—ŃƒŠ»Ńƒ" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/si.po0000664000175000017500000023141114632072346023674 0ustar fabiofabio# translation of si.po to Sinhala # Sinhalese translations for PACKAGE package. # Copyright (C) 2004 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Automatically generated, 2004. # Tyronne Wickramarathne , 2006. msgid "" msgstr "" "Project-Id-Version: si\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2006-12-13 12:26+0530\n" "Last-Translator: Tyronne Wickramarathne \n" "Language-Team: Sinhala \n" "Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶…ą¶¶ą·’ą¶¢ą·ą¶±ą·Š" #: timezones.h:2 msgid "Africa/Accra" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶…ą¶šą·Šā€ą¶»ą·" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶…ą¶©ą·Šą¶©ą·’ą·ƒą·Š_ą¶…ą¶¶ą¶¶ą·" #: timezones.h:4 msgid "Africa/Algiers" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶‡ą¶½ą·Šą¶¢ą·’ą¶ŗą¶»ą·Šą·ƒą·Š" #: timezones.h:5 #, fuzzy msgid "Africa/Asmara" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶‡ą·ƒą·Šą¶øą¶»ą·" #: timezones.h:6 msgid "Africa/Asmera" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶‡ą·ƒą·Šą¶øą¶»ą·" #: timezones.h:7 msgid "Africa/Bamako" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶¶ą·ą¶øą·ą¶šą·" #: timezones.h:8 msgid "Africa/Bangui" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶¶ą·ą¶±ą·Šą¶œą·”ą¶ŗą·’" #: timezones.h:9 msgid "Africa/Banjul" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶¶ą·ą¶±ą·Šą¶¢ą·”ą¶½ą·Š" #: timezones.h:10 msgid "Africa/Bissau" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶¶ą·’ą·ƒą·Šą·ƒą·ą¶ŗą·”" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶¶ą·Šą¶½ą·ą¶±ą·Šą¶§ą·’ą¶ŗą¶»ą·Š" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶¶ą·Šā€ą¶»ą·ą·ƒą·Šą·ƒą·ą·€ą·’ą¶½ą·Š" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶¶ą·”ą¶¢ą·”ą¶øą·Šą¶¶ą¶»ą·" #: timezones.h:14 msgid "Africa/Cairo" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶šą¶ŗą·’ą¶»ą·" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶šą·ą·ƒą¶¶ą¶½ą·ą¶±ą·Šą¶šą·" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶šą·’ą¶ŗą·”ą¶§ą·" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶šą·œą¶±ą·ą¶šą·Šā€ą¶»ą·’" #: timezones.h:20 msgid "Africa/Dakar" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶©ą¶šą·ą¶»ą·Š" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶©ą·ą¶»ą·Š_ą¶‘ą·ƒą·Š_ą·ƒą¶½ą·ą¶øą·Š" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ජිබූටි" #: timezones.h:23 msgid "Africa/Douala" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶©ą·”ą¶†ą¶½ą·" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶‘ą¶½ą·Š_ą¶†ą¶ŗą·”ą¶±ą·Š" #: timezones.h:25 msgid "Africa/Freetown" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą·†ą·Šā€ą¶»ą·“ą¶§ą·€ą·”ą¶±ą·Š" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶œą·ą¶¶ą·œą¶»ą·ą¶±ą·Š" #: timezones.h:27 msgid "Africa/Harare" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą·„ą¶»ą·ą¶»ą·™" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶¢ą·œą·„ą·ą¶±ą·ƒą·Šą¶¶ą¶»ą·Šą¶œą·Š" #: timezones.h:29 msgid "Africa/Kampala" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶šą¶øą·Šą¶“ą·ą¶½ą·" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶šą·ą¶»ą·Šą¶§ą·–ą¶øą·Š" #: timezones.h:31 msgid "Africa/Kigali" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶šą·’ą¶½ą·ą¶œą·’" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶šą·’ą¶±ą·Šą·‚ą·ą·ƒą·" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶½ą·ą¶œą·œą·ƒą·Š" #: timezones.h:36 msgid "Africa/Libreville" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶½ą·’ą¶¶ą·Šā€ą¶»ą·€ą·’ą¶½ą·Š" #: timezones.h:37 msgid "Africa/Lome" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶½ą·ą¶øą·Š" #: timezones.h:38 msgid "Africa/Luanda" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶½ą·”ą¶…ą¶±ą·Šą¶©ą·" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶½ą·”ą¶¶ą·”ą¶øą·Šą¶¶ą·ą·‚ą·’" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶½ą·”ą·ƒą·ą¶šą·" #: timezones.h:43 msgid "Africa/Malabo" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶øą·ą¶½ą¶¶ą·" #: timezones.h:44 msgid "Africa/Maputo" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶øą·ą¶“ą·–ą¶§ą·" #: timezones.h:45 msgid "Africa/Maseru" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶øą·ą·ƒą·™ą¶»ą·”" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ම්බැබේන්" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶øą·œą¶œą¶©ą·’ą·‚ą·”" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶øą·œą¶±ą·œą¶»ą·œą·€ą·’ą¶ŗą·" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶±ą¶ŗą·’ą¶»ą·ą¶¶ą·’" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶¢ą·ą¶øą·’ą¶±ą·" #: timezones.h:51 msgid "Africa/Niamey" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶±ą·’ą¶ŗą·ą¶øą·™ą¶ŗą·’" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶±ą·œą¶ŗą·”ą¶†ą¶šą·Šą¶ ą·œą¶§ą·Š" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶•ą·€ą·ą¶œą·œą¶©ą·žą¶œą·" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶“ą·ą¶»ą·Šą¶§ą·-ą¶±ą·ą·€ą·" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą·ƒą·ą·€ą·œ_ą¶§ą·ą¶øą·Š" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶§ą·’ą¶øą·Šą¶¶ą·”ą¶šą·Šą¶§ą·”" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶§ą·Šā€ą¶»ą·’ą¶“ą·œą¶½ą·’" #: timezones.h:58 msgid "Africa/Tunis" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą¶§ą·’ą¶ŗą·”ą¶±ą·’ą·ƒą·Š" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "ą¶…ą¶“ą·Šā€ą¶»ą·’ą¶šą·ą·€/ą·€ą·’ą¶±ą·Šą¶©ą·Šą·„ą·ą¶šą·Š" #: timezones.h:60 msgid "America/Adak" msgstr "ą¶‡ą¶øą·™ą¶»ą·’ą¶šą·ą·€/ą¶‡ą¶©ą¶šą·Š" #. comment for time zone America/Adak #: timezones.h:62 #, fuzzy msgid "Aleutian Islands" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ą¶šą·Šą·€ą·“ą¶±ą·ƒą·Šą¶½ą¶±ą·Šą¶©ą·Š" #: timezones.h:63 msgid "America/Anchorage" msgstr "ą¶‡ą¶øą·™ą¶»ą·’ą¶šą·ą·€/ą¶‡ą¶±ą·Šą¶šą·œą¶»ą·ą¶¢ą·Š" #. comment for time zone America/Anchorage #: timezones.h:65 #, fuzzy msgid "Alaska Time" msgstr "ą¶‘ą¶¢/ą¶‡ą¶½ą·ƒą·Šą¶šą·ą·€" #: timezones.h:66 msgid "America/Anguilla" msgstr "ą¶‡ą¶øą·™ą¶»ą·’ą¶šą·ą·€/ą¶‡ą¶±ą·Šą¶œą·”ą¶ŗą·’ą¶½ą·" #: timezones.h:67 msgid "America/Antigua" msgstr "ą¶‡ą¶øą·™ą¶»ą·’ą¶šą·ą·€/ą¶‡ą¶±ą·Šą¶§ą·’ą¶œą·”ą·€ą·" #: timezones.h:68 msgid "America/Araguaina" msgstr "ą¶‡ą¶øą·™ą¶»ą·’ą¶šą·ą·€/ą¶‡ą¶»ą¶œą·”ą¶ŗą·’ą¶±ą·" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "ą¶‡ą¶øą·™ą¶»ą·’ą¶šą·ą·€/ą¶…ą¶»ą·Šą¶¢ą·™ą¶±ą·Šą¶§ą·’ą¶±ą·ą·€/ą¶¶ą·”ą·€ą¶±ą·ą¶»ą·Šą·ƒą·Š_ą¶…ą¶ŗą¶»ą·Šą·ƒą·Š" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "ą¶‡ą¶øą·™ą¶»ą·’ą¶šą·ą·€/ą¶…ą¶»ą·Šą¶¢ą·™ą¶±ą·Šą¶§ą·’ą¶±ą·ą·€/ą¶šą·ą¶§ą¶øą¶»ą·Šą¶šą·ą·€" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "ą¶‡ą¶øą·™ą¶»ą·’ą¶šą·ą·€/ą¶…ą¶»ą·Šą¶¢ą·™ą¶±ą·Šą¶§ą·’ą¶±ą·ą·€/ą¶šą·œą¶øą·œą¶Æą·Šą¶»ą·’ą·€ą¶©ą·€ą·’ą¶ŗą·" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "ą¶‡ą¶øą·™ą¶»ą·’ą¶šą·ą·€/ą¶…ą¶»ą·Šą¶¢ą·™ą¶±ą·Šą¶§ą·’ą¶±ą·ą·€/ą¶šą·œą¶»ą·Šą¶©ą·œą¶¶ą·" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "ą¶‡ą¶øą·™ą¶»ą·’ą¶šą·ą·€/ą¶…ą¶»ą·Šą¶¢ą·™ą¶±ą·Šą¶§ą·’ą¶±ą·ą·€/ජූජුයි" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "ą¶‡ą¶øą·™ą¶»ą·’ą¶šą·ą·€/ą¶…ą¶»ą·Šą¶¢ą·™ą¶±ą·Šą¶§ą·’ą¶±ą·ą·€/ą¶½ą·_ą¶»ą·’ą¶ŗą·ą¶¢ą·" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "ą¶‡ą¶øą·™ą¶»ą·’ą¶šą·ą·€/ą¶…ą¶»ą·Šą¶¢ą·™ą¶±ą·Šą¶§ą·’ą¶±ą·ą·€/ą¶øą·™ą¶±ą·Šą¶©ą·ą·ƒą·" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "ą¶‡ą¶øą·™ą¶»ą·’ą¶šą·ą·€/ą¶…ą¶»ą·Šą¶¢ą·™ą¶±ą·Šą¶§ą·’ą¶±ą·ą·€/ą¶»ą·’ą¶ŗą·_ą¶œą·ą¶½ą·Šą¶½ą·™ą¶œą·œą·ƒą·Š" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 #, fuzzy msgid "America/Argentina/Salta" msgstr "ą¶‡ą¶øą·™ą¶»ą·’ą¶šą·ą·€/ą¶…ą¶»ą·Šą¶¢ą·™ą¶±ą·Šą¶§ą·’ą¶±ą·ą·€/ą·ƒą·‘ą¶±ą·Š_ą¶¢ą·”ą·€ą·‘ą¶±ą·Š" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "ą¶‡ą¶øą·™ą¶»ą·’ą¶šą·ą·€/ą¶…ą¶»ą·Šą¶¢ą·™ą¶±ą·Šą¶§ą·’ą¶±ą·ą·€/ą·ƒą·‘ą¶±ą·Š_ą¶¢ą·”ą·€ą·‘ą¶±ą·Š" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 #, fuzzy msgid "America/Argentina/San_Luis" msgstr "ą¶‡ą¶øą·™ą¶»ą·’ą¶šą·ą·€/ą¶…ą¶»ą·Šą¶¢ą·™ą¶±ą·Šą¶§ą·’ą¶±ą·ą·€/ą·ƒą·‘ą¶±ą·Š_ą¶¢ą·”ą·€ą·‘ą¶±ą·Š" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "ą¶‡ą¶øą·™ą¶»ą·’ą¶šą·ą·€/ą¶…ą¶»ą·Šą¶¢ą·™ą¶±ą·Šą¶§ą·’ą¶±ą·ą·€/ą¶§ą·”ą¶šą·”ą¶øą·ą¶±ą·Š" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "ą¶‡ą¶øą·™ą¶»ą·’ą¶šą·ą·€/ą¶…ą¶»ą·Šą¶¢ą·™ą¶±ą·Šą¶§ą·’ą¶±ą·ą·€/ą¶‹ą·‚ą·”ą¶ŗą·šą¶ŗą·’ą¶ŗą·" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶‡ą¶»ą·”ą¶¶ą·" #: timezones.h:109 msgid "America/Asuncion" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶‡ą·ƒą·”ą¶±ą·Šą·ƒą·’ą¶ŗą·œą¶±ą·Š" #: timezones.h:110 msgid "America/Atikokan" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶‡ą¶§ą·’ą¶šą·œą¶šą·ą¶±ą·Š" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶‡ą¶§ą·Šą¶šą·" #: timezones.h:114 msgid "America/Bahia" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶¶ą·ą·„ą·’ą¶ŗą·" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶¶ą·ą·„ą·’ą¶ŗą·" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶¶ą·ą¶»ą·Šą¶¶ą·™ą¶©ą·ą·ƒą·Š" #: timezones.h:121 msgid "America/Belem" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶¶ą·šą¶½ą·™ą¶øą·Š" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶¶ą·™ą¶½ą·’ą·ƒą·Š" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/බ්ලැන්ක්-සැබ්ලොන්" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶¶ą·œą·€ą·_ą·€ą·’ą·ƒą·Šą¶§ą·" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶¶ą·œą¶œą·ą¶§ą·" #: timezones.h:132 msgid "America/Boise" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶¶ą·œą¶ŗą·’ą·ƒą·Š" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶¶ą·”ą·€ą¶±ą·_ą¶…ą¶ŗą¶»ą·Šą·ƒą·Š" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶šą·šą¶øą·Šą¶¶ą·Šā€ą¶»ą·’ą¶¢ą·Š_බොක්ක" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/කැම්ඓො_ą¶œą·Šā€ą¶»ą·ą¶±ą·Šą¶©ą·™" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶šą¶±ą·Šą¶šą·”ą¶±ą·Š" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶šą·ą¶»ą¶šą·ą·ƒą·Š" #: timezones.h:146 msgid "America/Catamarca" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶šą·ą¶§ą¶øą¶»ą·Šą¶šą·ą·€" #: timezones.h:147 msgid "America/Cayenne" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶šą·šą¶ŗą·’ą¶±ą·Šą¶±ą·™" #: timezones.h:148 msgid "America/Cayman" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/කේමන්" #: timezones.h:149 msgid "America/Chicago" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶ ą·’ą¶šą·ą¶œą·" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "ą¶‘ą¶¢/ą¶øą¶°ą·Šā€ą¶ŗą¶ø" #: timezones.h:152 msgid "America/Chihuahua" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶ ą·’ą·„ą·”ą·€ą·ą·„ą·" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶šą·ą¶»ą¶½ą·Š_ą·„ą·ą¶»ą·Šą¶¶ą¶»ą·Š" #: timezones.h:156 msgid "America/Cordoba" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶šą·œą¶»ą·Šą¶©ą·œą¶¶ą·" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶šą·œą·ƒą·Šą¶§ą·_ą¶»ą·’ą¶šą·" #: timezones.h:158 msgid "America/Cuiaba" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶šą¶ŗą·”ą¶ŗą·’ą¶¶ą·" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶šą·”ą¶»ą·ą¶šą·ą·€ą·" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶©ą·ą¶±ą·Šą¶øą·ą¶»ą·Šą¶šą·Šą·ƒą·‚ą·ą·€ą·Šą¶±ą·Š" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶©ą·ą·ƒą¶±ą·Š" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶©ą·ą·ƒą¶±ą·Š_ą¶šą·Šā€ą¶»ą·“ą¶šą·Š" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶©ą·™ą¶±ą·Šą·€ą¶»ą·Š" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "ą¶‘ą¶¢/ą¶šą¶³ą·”ą¶šą¶»" #: timezones.h:174 msgid "America/Detroit" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶©ą·šą¶§ą·Šā€ą¶»ą·’ą¶ŗą¶§ą·Š" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶©ą·œą¶øą·’ą¶±ą·’ą¶šą·" #: timezones.h:178 msgid "America/Edmonton" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶‘ą¶©ą·Šą¶øą¶±ą·Šą¶§ą¶±ą·Š" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/අයිරුනෙඓෙ" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶‘ą¶½ą·Š_ą·ƒą·ą¶½ą·Šą·€ą¶Æą·ą¶»ą¶ŗ" #: timezones.h:185 msgid "America/Ensenada" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶‘ą¶±ą·Šą·ƒą·™ą¶±ą¶©ą·ą·€" #: timezones.h:186 msgid "America/Fortaleza" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·†ą·ą¶»ą·Šą¶§ą¶½ą·šą·ƒą·" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·†ą·ą¶»ą·Šą¶§ą·Š_ą·€ą·™ą¶ŗą·’ą¶±ą·Š" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ග්ලේස්_බොක්ක" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶œą·ą¶©ą·Šą¶­ą·ą¶¶ą·Š" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶œą·–ą·ƒą·Š_බොක්ක" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶œą·Šā€ą¶»ą·‘ą¶±ą·Šą¶©ą·Š_ටර්ක්" #: timezones.h:200 msgid "America/Grenada" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶œą·Šā€ą¶»ą·™ą¶±ą¶©ą·ą·€" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶œą·ą¶©ą·™ą¶½ą·–ą¶“ą·Š" #: timezones.h:202 msgid "America/Guatemala" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶œą·ą¶­ą¶øą·ą¶½ą·ą·€" #: timezones.h:203 msgid "America/Guayaquil" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶œą·ą¶ŗą·ą¶šą·Šą·€ą·’ą¶½ą·Š" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶œą¶ŗą·ą¶±ą·ą·€" #: timezones.h:207 msgid "America/Halifax" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·„ą·šą¶½ą·’ą·†ą·ą¶šą·Šą·ƒą·Š" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·„ą·€ą·ą¶±ą·" #: timezones.h:211 msgid "America/Hermosillo" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·„ą¶»ą·Šą¶øą·œą·ƒą·’ą¶½ą·Šą¶½ą·" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·ą·€/ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·ą¶“ą·œą¶½ą·’ą·ƒą·Š" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·ą·€/ක්නොක්ස්" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·ą·€/ą¶øą·™ą¶»ą·™ą¶±ą·Šą¶œą·" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·ą·€/ą¶“ą·“ą¶§ą¶»ą·Šą·ƒą·Šą¶¶ą¶»ą·Šą¶œą·Š" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·ą¶“ą·œą¶½ą·’ą·ƒą·Š/" #: timezones.h:227 #, fuzzy msgid "America/Indiana/Tell_City" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·ą·€/වෙවෙයි" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·ą·€/වෙවෙයි" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·ą·€/ą·€ą·’ą¶±ą·Šą·ƒą·™ą¶±ą·Šą·ƒą·Š" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 #, fuzzy msgid "America/Indiana/Winamac" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·ą·€/ą·€ą·’ą¶±ą·Šą·ƒą·™ą¶±ą·Šą·ƒą·Š" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶‰ą¶±ą·”ą·€ą·’ą¶šą·Š" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶‰ą¶šą·ą¶½ą·”ą¶ŗą·’ą¶§ą·Š" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶¢ą·ą¶øą·™ą¶ŗą·’ą¶šą·ą·€" #: timezones.h:246 msgid "America/Jujuy" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ජූජුයි" #: timezones.h:247 msgid "America/Juneau" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶¢ą·”ą¶±ą·šą¶ŗą·”" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶šą·™ą¶±ą·Šą¶§ą¶šą·’/ą¶½ą·”ą¶ŗą·’ą·ƒą·Šą·€ą·’ą¶½ą·Š" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 #, fuzzy msgid "Eastern Time - Kentucky - Louisville area" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶šą·™ą¶±ą·Šą¶§ą¶šą·’/ą¶½ą·”ą¶ŗą·’ą·ƒą·Šą·€ą·’ą¶½ą·Š" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶šą·™ą¶±ą·Šą¶§ą¶šą·’/ą¶øą·œą¶±ą·Šą¶§ą·’ą·ƒą·™ą¶½ą·Šą¶½ą·" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ක්නොකස්_ą¶‰ą¶±ą·Š" #: timezones.h:257 msgid "America/La_Paz" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶½ą·_ą¶“ą·‘ą·ƒą·Š" #: timezones.h:258 msgid "America/Lima" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶½ą·“ą¶øą·" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ලොස්_ą¶‡ą¶±ą·Šą¶¢ą¶½ą·’ą·ƒą·Š" #. comment for time zone America/Los_Angeles #: timezones.h:261 #, fuzzy msgid "Pacific Time" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/නියූ" #: timezones.h:262 msgid "America/Louisville" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶½ą·”ą¶ŗą·’ą·ƒą·Šą·€ą·’ą¶½ą·Š" #: timezones.h:263 msgid "America/Maceio" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶øą·ą·ƒą·’ą¶ŗą·" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶øą·ą¶±ą¶œą·”ą·€ą·" #: timezones.h:267 msgid "America/Manaus" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶øą·ą¶±ą·ą¶ŗą·”ą·ƒą·Š" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 #, fuzzy msgid "America/Marigot" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶øą·ą·ƒą·’ą¶ŗą·" #: timezones.h:271 msgid "America/Martinique" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶øą·ą¶»ą·Šą¶§ą·’ą¶±ą·’ą¶šą·Š" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶øą·ą¶±ą·ą¶ŗą·”ą·ƒą·Š" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶øą·ą·ƒą·ą¶§ą·Šą¶½ą·‘ą¶±ą·Š" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶øą·™ą¶±ą·Šą¶©ą·ą·ƒą·" #: timezones.h:279 msgid "America/Menominee" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶øą·™ą¶±ą·œą¶øą·’ą¶±ą·“" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶øą·™ą¶»ą·’ą¶©ą·" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶øą·™ą¶šą·Šą·ƒą·’ą¶šą· _නගරය" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶øą·’ą¶šą·Šą·€ą·’ą¶½ą·ą¶±ą·Š" #: timezones.h:289 msgid "America/Moncton" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶øą·œą¶±ą·Šą¶šą·Šą¶§ą·ą¶±ą·Š" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶øą·œą¶±ą·Šą¶§ą·™ą¶»ą·Šą¶»ą·™ą¶ŗą·’" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶øą·œą¶±ą·Šą¶§ą·™ą·€ą·’ą¶©ą·’ą¶ŗą·" #: timezones.h:296 msgid "America/Montreal" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶øą·œą¶±ą·Šą¶§ą·™ą¶»ą·’ą¶ŗą¶½ą·Š" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶øą·œą¶±ą·Šą¶§ą·Šą·ƒą·™ą¶»ą·ą¶§ą·Š" #: timezones.h:300 msgid "America/Nassau" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶±ą·ƒą·Šą·ƒą·ą¶ŗą·”" #: timezones.h:301 msgid "America/New_York" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶±ą·’ą·€ą·Š_ą¶ŗą·ą¶»ą·Šą¶šą·Š" #. comment for time zone America/New_York #: timezones.h:303 #, fuzzy msgid "Eastern Time" msgstr "ą¶‘ą¶¢/ą¶±ą·ą¶œą·™ą¶±ą·„ą·’ą¶»" #: timezones.h:304 msgid "America/Nipigon" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶±ą·’ą¶“ą·’ą¶œą¶±ą·Š" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶±ą·ą¶øą·Š" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶±ą·œą¶»ą·œą¶±ą·Šą·„ą·" #. comment for time zone America/Noronha #: timezones.h:312 #, fuzzy msgid "Atlantic islands" msgstr "ą¶…ą¶­ą·Šą¶½ą·ą¶±ą·Šą¶­ą·’ą¶šą·Š/ą¶šą·ą¶±ą·ą¶»ą·’" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/උතුරු_ą¶©ą¶šą·ą¶§ą·/ą¶øą¶°ą·Šā€ą¶ŗą¶ø" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/උතුරු_ą¶©ą¶šą·ą¶§ą·/නව_ą·ƒą·ą¶½ą·™ą¶øą·Š" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶øą·ą¶±ą¶œą·”ą·€ą·" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶“ą·ą¶±ą¶øą·ą·€" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ඓැනග්නර්ටන්ග්" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶“ą·ą¶»ą¶øą·ą¶»ą·’ą¶¶ą·" #: timezones.h:327 msgid "America/Phoenix" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·†ą·“ą¶±ą·’ą¶šą·Šą·ƒą·Š" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ඓොර්ට්-ආවු-ą¶“ą·Šā€ą¶»ą·’ą¶±ą·ƒą·Š" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶“ą·ą¶»ą·Šą¶§ą·_ą¶†ą¶šą·Šā€ą¶»ą·™" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶“ą·ą¶»ą·Šą¶§ą·Š_ą¶”ą·†ą·Š_ස්ඓේන්" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶“ą·ą¶»ą·Šą¶§ą·_ą·€ą·™ą¶½ą·Šą·„ą·" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶“ą·œą¶»ą·Šą¶§ą·_ą¶»ą·’ą¶šą·" #: timezones.h:337 msgid "America/Rainy_River" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶»ą·šą¶±ą·’_ą¶»ą·’ą·€ą¶»ą·Š" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶»ą·ą¶±ą·Šą¶šą·’ą¶±ą·Š_ą¶‰ą¶±ą·Šą¶½ą¶§ą·Š" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶»ą·šą·ƒą·’ą·†ą·Š" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶»ą·™ą¶¢ą·’ą¶±ą·" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 #, fuzzy msgid "America/Resolute" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶¶ą·šą¶½ą·™ą¶øą·Š" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶»ą·’ą¶ŗą·_ą¶¶ą·Šā€ą¶»ą·ą¶±ą·Šą¶šą·" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶»ą·œą·ƒą·ą¶»ą·’ą¶ŗą·" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·ƒą¶±ą·Šą¶­ą·’ą¶ŗą·ą¶œą·”" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 #, fuzzy msgid "America/Santarem" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·ƒą¶±ą·Šą¶­ą·’ą¶ŗą·ą¶œą·”" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·ƒą¶±ą·Šą¶­ą·’ą¶ŗą·ą¶œą·”" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·ƒą·ą¶±ą·Šą¶§ą·_ą¶©ą·œą¶øą·’ą¶±ą·Šą¶œą·" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·ƒą·ą·€ą·_ą¶“ą·ą¶½ą·" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·ƒą·Šą¶šą·œą¶»ą·Šą·ƒą·Šą¶¶ą·’ą·ƒą¶±ą·Šą¶©ą·Š" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·‚ą·’ą¶“ą·Šą¶»ą·œą¶šą·Š" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 #, fuzzy msgid "America/St_Barthelemy" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶¶ą·šą¶½ą·™ą¶øą·Š" #: timezones.h:376 msgid "America/St_Johns" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·ą·ą¶±ą·Šą¶­ą·Šą¶­_ą¶¢ą·ą¶±ą·Šą·ƒą·Š" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·ą·ą¶±ą·Šą¶­_ą¶šą·’ą¶§ą·Šą·ƒą·Š" #: timezones.h:380 msgid "America/St_Lucia" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·ƒą·ą¶±ą·Šą¶­_ą¶½ą·”ą·ƒą·’ą¶ŗą·" #: timezones.h:381 msgid "America/St_Thomas" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·ą·ą¶±ą·Šą¶­_ą¶­ą·ą¶øą·ƒą·Š" #: timezones.h:382 msgid "America/St_Vincent" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·ą·ą¶±ą·Šą¶­_ą·€ą·’ą¶±ą·Šą·ƒą¶±ą·Š" #: timezones.h:383 msgid "America/Swift_Current" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·ą·“ą¶ą·Šā€ą¶»_ą·€ą¶­ą·Šą¶øą¶±ą·Š" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶§ą·™ą¶œą·”ą·ƒą·’ą¶œą·ą¶½ą·Šą¶“ą·" #: timezones.h:387 msgid "America/Thule" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶­ą·–ą¶½ą·Š" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/තන්ඩර්_බොක්ක" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶§ą·’ą¶¢ą·”ą·€ą·ą¶±ą·" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶§ą·œą¶»ą·œą¶±ą·Šą¶§ą·" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶§ą·œą¶»ą·Šą¶§ą·ą¶½ą·" #: timezones.h:400 msgid "America/Vancouver" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·€ą·ą¶±ą·Šą¶šą·–ą·€ą¶»ą·Š" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·€ą¶»ą·Šą¶¢ą·’ą¶±ą·Š" #: timezones.h:404 msgid "America/Whitehorse" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·€ą¶ŗą·’ą¶§ą·Šą·„ą·ą¶»ą·Šą·ƒą·Š" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą·€ą·’ą¶±ą·Šą¶±ą·’ą¶“ą·™ą¶œą·Š" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶ŗą¶šą·”ą¶§ą·ą¶§ą·Š" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "ą¶‡ą¶øą¶»ą·’ą¶šą·ą·€/ą¶ŗą·™ą¶½ą·ą¶±ą¶ŗą·’ą·†ą·Š" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "ą¶‡ą¶±ą·Šą¶§ą·ą¶šą·Šą¶§ą·’ą¶šą·ą·€/කැසේ" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "ą¶‡ą¶±ą·Šą¶§ą·ą¶šą·Šą¶§ą·’ą¶šą·ą·€/ą¶©ą·šą·€ą·’ą·ƒą·Š" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "ą¶‡ą¶±ą·Šą¶§ą·ą¶šą·Šą¶§ą·’ą¶šą·ą·€/ą¶©ą·”ą¶øą·œą¶±ą·Šą¶§ą·Šą¶©ą¶»ą·Šą·€ą·’ą¶½ą·Š" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "ą¶‡ą¶±ą·Šą¶§ą·ą¶šą·Šą¶§ą·’ą¶šą·ą·€/ą¶øą·ą¶šą·Šą¶øą¶»ą·Šą¶©ą·" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "ą¶‡ą¶±ą·Šą¶§ą·ą¶šą·Šą¶§ą·’ą¶šą·ą·€/ą¶øą·ą·ƒą¶±ą·Š" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "ą¶‡ą¶±ą·Šą¶§ą·ą¶šą·Šą¶§ą·’ą¶šą·ą·€/ą¶øą·ą¶šą·Šą¶øą¶»ą·Šą¶©ą·" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "ą¶‡ą¶±ą·Šą¶§ą·ą¶šą·Šą¶§ą·’ą¶šą·ą·€/ą¶“ą·ą¶øą¶»ą·Š" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "ą¶‡ą¶±ą·Šą¶§ą·ą¶šą·Šą¶§ą·’ą¶šą·ą·€/ą¶»ą·œą¶­ą·šą¶»ą·" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "ą¶‡ą¶±ą·Šą¶§ą·ą¶šą·Šą¶§ą·’ą¶šą·ą·€/ą·ƒą·€ą·”ą¶­ą·Š_ą¶“ą·ą¶½ą·Š" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "ą¶‡ą¶±ą·Šą¶§ą·ą¶šą·Šą¶§ą·’ą¶šą·ą·€/ą·ƒą·’ą¶ŗą·ą·€ą·" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "ą¶‡ą¶±ą·Šą¶§ą·ą¶šą·Šą¶§ą·’ą¶šą·ą·€/ą·€ą·œą·ƒą·Šą¶§ą·œą¶šą·Š" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "ą¶†ą¶»ą·Šą¶šą·Šą¶§ą·’ą¶šą·Š/ą¶½ą·ą¶±ą·Šą¶œą·Šą¶‰ą¶ŗą¶»ą·Šą¶¶ą·Šą¶ŗą·™ą¶±ą·Š" #: timezones.h:450 msgid "Asia/Aden" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶’ą¶©ą¶±ą·Š" #: timezones.h:451 msgid "Asia/Almaty" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶•ą¶½ą·Šą¶øą·ą¶§ą·’" #: timezones.h:454 msgid "Asia/Amman" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶…ą¶øą·Šą¶øą·ą¶±ą·Š" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶‡ą¶±ą¶©ą·’ą¶»ą·Š" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶‡ą¶šą·Šą¶§ą·ą·€ą·”" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶‡ą¶šą·Šą¶§ą·ą¶¶ą·Š" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶‡ą·ą·Šą¶œą·ą¶¶ą·ą¶§ą·Š" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶…ą·ą·Šą¶šą·ą¶¶ą·ą¶©ą·Š" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶¶ą·‘ą¶œą·Šą¶©ą·‘ą¶œą·Š" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶¶ą·„ą¶»ą·šą¶±ą·Š" #: timezones.h:468 msgid "Asia/Baku" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶¶ą¶šą·–" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶¶ą·ą¶‚ą¶šą·œą¶šą·Š" #: timezones.h:470 msgid "Asia/Beirut" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶¶ą·“ą¶»ą·–ą¶§ą·Š" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶¶ą·’ą·‚ą·Šą¶šą·™ą¶šą·Š" #: timezones.h:472 msgid "Asia/Brunei" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶¶ą·²ą¶±ą·ą¶ŗą·’" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶šą¶½ą·Šą¶šą¶§ą·" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶ ą·œą¶ŗą·’ą¶¶ą¶½ą·Šą·ƒą·ą¶±ą·Š" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶ ą·œą¶±ą·Šą¶šą·’ą¶±ą·Š" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶ ą·”ą¶±ą·Šą¶šą·’ą¶±ą·Š" #: timezones.h:481 msgid "Asia/Colombo" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶šą·œą·…ą¶¹" #: timezones.h:482 msgid "Asia/Dacca" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶©ą·ą¶šą·Šą¶šą·" #: timezones.h:483 msgid "Asia/Damascus" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶©ą·™ą¶øą·ƒą·Šą¶šą·ƒą·Š" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶©ą¶šą·" #: timezones.h:485 msgid "Asia/Dili" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ඩිලි" #: timezones.h:486 msgid "Asia/Dubai" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶©ą·”ą¶¶ą·ą¶ŗą·’" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶©ą·”ą·‚ą·ą¶±ą·Šą¶¶ą·™" #: timezones.h:488 msgid "Asia/Gaza" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶œą·ą·ƒą·" #: timezones.h:489 msgid "Asia/Harbin" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą·„ą·ą¶»ą·Šą¶¶ą·’ą¶±ą·Š" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 #, fuzzy msgid "Asia/Ho_Chi_Minh" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶ ą·œą¶±ą·Šą¶šą·’ą¶±ą·Š" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą·„ą·œą¶‚_ą¶šą·œą¶‚" #: timezones.h:494 msgid "Asia/Hovd" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą·„ą·ą·€ą·Šą¶©ą·Š" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶‰ą¶»ą·Šą¶šą¶§ą·Šą·ƒą·Šą¶šą·Š" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶‰ą·ƒą·Šą¶­ą·ą¶±ą·Šą¶¶ą·”ą¶½ą·Š" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶¢ą¶šą¶»ą·Šą¶­ą·" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶¢ą¶ŗą·€ą¶»ą·Šą¶°ą¶±_ඓුර" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶¢ą·™ą¶»ą·”ą·ƒą¶½ą¶ø" #: timezones.h:508 msgid "Asia/Kabul" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶šą·ą¶¶ą·”ą¶½ą·Š" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶šą¶øą·Šą¶ ą¶§ą·Šą¶šą·" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶šą¶»ą¶ ą·Šą¶ ą·’ą¶ŗ" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶šą·‚ą·Šą¶œą·ą¶»ą·Š" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 #, fuzzy msgid "Asia/Kathmandu" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶šą¶­ą·Šą¶øą¶±ą·Šą¶©ą·”" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶šą¶­ą·Šą¶øą¶±ą·Šą¶©ą·”" #: timezones.h:518 #, fuzzy msgid "Asia/Kolkata" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶¢ą¶šą¶»ą·Šą¶­ą·" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶šą·Šā€ą¶»ą·ą·ƒą·Šą¶±ą·œą¶ŗą·ą¶»ą·Šą·ƒą·Šą¶šą·Š" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶šą·Šą·€ą·ą¶½ą·_ą¶½ą¶øą·Šą¶“ą·–ą¶»ą·Š" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶šą·”ą¶ ą·’ą¶±ą·Šą¶œą·Š" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶šą·”ą·€ą·šą¶§ą·Š" #: timezones.h:529 msgid "Asia/Macao" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶øą·ą¶šą·ą·€ą·" #: timezones.h:530 msgid "Asia/Macau" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶øą·ą¶šą·" #: timezones.h:531 msgid "Asia/Magadan" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶øą·ą¶œą¶©ą·‘ą¶±ą·Š" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶øą¶šą·ą·ƒą·Šą·ƒą·ą¶»ą·Š" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶øą·ą¶±ą·’ą¶½ą·" #: timezones.h:538 msgid "Asia/Muscat" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/මස්කට්" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶±ą·’ą¶šą·ą·ƒą·’ą¶ŗą·ą·€" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶‰ą¶»ą·Šą¶šą¶§ą·Šą·ƒą·Šą¶šą·Š" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶±ą·œą·€ą·œą·ƒą·’ą¶¶ą·Šā€ą¶»ą·’ą·ƒą·Šą¶šą·Š" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶±ą·œą·€ą·œą·ƒą·’ą¶¶ą·Šā€ą¶»ą·’ą·ƒą·Šą¶šą·Š" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 #, fuzzy msgid "Moscow+03 - Novosibirsk" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶±ą·œą·€ą·œą·ƒą·’ą¶¶ą·Šā€ą¶»ą·’ą·ƒą·Šą¶šą·Š" #: timezones.h:546 msgid "Asia/Omsk" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶•ą¶øą·Šą·ƒą·Šą¶šą·Š" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶•ą¶»ą¶½ą·Š" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/නොම්_ą¶“ą·™ą¶±ą·Š" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶“ą·œą¶±ą·Šą¶§ą·’ą¶ŗą·ą¶±ą¶šą·Š" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶ŗą·œą¶‚ą¶ŗą·‘ą¶‚" #: timezones.h:557 msgid "Asia/Qatar" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶šą¶§ą·ą¶»ą·Š" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶šą·’ą·ƒą·’ą¶½ą·ą¶»ą·Šą¶©ą·" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶»ą·ą¶±ą·Šą¶œą·–ą¶±ą·Š" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶»ą·’ą¶ŗą·ą¶Æą·Š" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶»ą·’ą¶ŗą·ą¶Æą·Š87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶»ą·’ą¶ŗą·ą¶Æą·Š88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶»ą·’ą¶ŗą·ą¶Æą·Š89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą·ƒą¶ŗą¶œą·ą¶±ą·Š" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą·ƒą¶šą·ą¶½ą·’ą¶±ą·Š" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą·ƒą·ą¶øą¶»ą·Šą¶šą·ą¶±ą·Šą¶©ą·Š" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą·ƒą·ą¶½ą·Š" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą·‚ą·ą¶‚ą¶œą·Šą·„ą·ą¶ŗą·’" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą·ƒą·’ą¶‚ą¶œą¶“ą·Šą¶“ą·–ą¶»ą·”ą·€" #: timezones.h:578 msgid "Asia/Taipei" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶­ą·ą¶ŗą·’ą¶“ą·™" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶­ą·ą·‚ą·Šą¶šą·™ą¶±ą·Šą¶§ą·Š" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶¶ą·’ą¶½ą·’ą·ƒą·’" #: timezones.h:583 msgid "Asia/Tehran" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶§ą·™ą·„ą·™ą¶»ą·ą¶±ą¶ŗ" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶§ą·™ą¶½ą·Š_ą¶…ą·€ą·“ą·€ą·Š" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶­ą·’ą¶øą·Šą¶¶ą·”" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶­ą·’ą¶øą·Šą¶“ą·”" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶§ą·ą¶šą·’ą¶ŗą·" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶‹ą¶¢ą¶±ą·Šą¶œą·Š_ą¶“ą·ą¶±ą·Šą¶©ą·‘ą¶‚" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶‹ą¶½ą·ą¶±ą·Šą¶¶ą·ą¶§ą¶»ą·Š" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶‹ą¶½ą·ą¶±ą·Š_ą¶¶ą·ą¶§ą·ą¶»ą·Š" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶‹ą¶»ą·”ą¶øą·Šą¶šą·’" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą·€ą·’ą¶ŗą¶§ą·’ą¶ŗą·™ą¶±ą·Š" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą·€ą·Šą¶½ą·ą¶©ą·’ą·€ą·œą·ƒą·Šą¶§ą·œą¶šą·Š" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶ŗą¶šą·”ą¶§ą·Šą·ƒą·Šą¶šą·Š" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "ą¶†ą·ƒą·’ą¶ŗą·ą·€/ą¶ŗą·™ą¶šą·ą¶§ą·™ą¶»ą·’ą¶±ą·Šą¶¶ą¶»ą·Šą¶œą·Š" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "ą¶…ą·ƒą·’ą¶ŗą·ą·€/ą¶ŗą·™ą¶»ą·™ą·€ą·ą¶±ą·Š" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "ą¶…ą¶­ą·Šą¶½ą·ą¶±ą·Šą¶­ą·’ą¶šą·Š/ą¶‡ą·ƒą·ą¶»ą·ƒą·Š" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "ą¶…ą¶­ą·Šą¶½ą·ą¶±ą·Šą¶­ą·’ą¶šą·Š/ą¶¶ą¶»ą·Šą¶øą·”ą¶©ą·" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "ą¶…ą¶­ą·Šą¶½ą·ą¶±ą·Šą¶­ą·’ą¶šą·Š/ą¶šą·ą¶±ą·ą¶»ą·’" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "ą¶…ą¶­ą·Šą¶½ą·ą¶±ą·Šą¶­ą·’ą¶šą·Š/කේඓ්_ą·€ą¶»ą·Šą¶©ą·™" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "ą¶…ą¶­ą·Šą¶½ą·ą¶±ą·Šą¶­ą·’ą¶šą·Š/ą·†ą·šą¶»ą·" #: timezones.h:616 #, fuzzy msgid "Atlantic/Faroe" msgstr "ą¶…ą¶­ą·Šą¶½ą·ą¶±ą·Šą¶­ą·’ą¶šą·Š/ą·†ą·šą¶»ą·" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "ą¶…ą¶­ą·Šą¶½ą·ą¶±ą·Šą¶­ą·’ą¶šą·Š/ą¶¢ą·‘ą¶±ą·Š_ą¶øą·ą¶ŗą·™ą¶±ą·Š" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "ą¶…ą¶­ą·Šą¶½ą·ą¶±ą·Šą¶­ą·’ą¶šą·Š/ą¶øą·ą¶©ą·šą¶ŗą·’ą¶»ą·" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "ą¶…ą¶­ą·Šą¶½ą·ą¶±ą·Šą¶­ą·’ą¶šą·Š/ą¶»ą·™ą¶šą·Šą¶ŗą·ą·€ą·’ą¶šą·Š" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "ą¶…ą¶­ą·Šą¶½ą·ą¶±ą·Šą¶­ą·’ą¶šą·Š/ą¶Æą¶šą·”ą¶«ą·”_ą¶¢ą·ą¶¢ą·’ą¶ŗą·ą·€" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "ą¶…ą¶­ą·Šą¶½ą·ą¶±ą·Šą¶­ą·’ą¶šą·Š/ą·ƒą·Šą¶§ą·ą¶±ą·Šą¶½ą·’" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "ą¶…ą¶­ą·Šą¶½ą·ą¶±ą·Šą¶­ą·’ą¶šą·Š/ą·ą·ą¶±ą·Šą¶­_ą·„ą·™ą¶½ą·™ą¶±ą·" #: timezones.h:625 msgid "Australia/ACT" msgstr "ą¶…ą¶­ą·Šą¶½ą·ą¶±ą·Šą¶­ą·’ą¶šą·Š/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ą¶‡ą¶©ą·’ą¶½ą·šą¶©ą·Š" #. comment for time zone Australia/Adelaide #: timezones.h:628 #, fuzzy msgid "South Australia" msgstr "ą¶…ą¶­ą·Šą¶½ą·ą¶±ą·Šą¶­ą·’ą¶šą·Š/ACT" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ą¶¶ą·Šā€ą¶»ą·’ą·ƒą·Šą¶¶ą·šą¶±ą·Š" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ą¶¶ą·Šā€ą¶»ą·ą¶šą¶±ą·Š_ą·„ą·’ą¶½ą·Š" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ą¶šą·ą¶±ą·Šą¶¶ą¶»ą·" #: timezones.h:636 msgid "Australia/Currie" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ą¶šą·”ą¶»ą·“" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ą¶©ą·ą¶»ą·Šą·€ą·’ą¶±ą·Š" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 #, fuzzy msgid "Australia/Eucla" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ą¶šą·Šą·€ą·“ą¶±ą·ƒą·Šą¶½ą¶±ą·Šą¶©ą·Š" #. comment for time zone Australia/Eucla #: timezones.h:644 #, fuzzy msgid "Western Australia - Eucla area" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ą¶šą·Šą·€ą·“ą¶±ą·ƒą·Šą¶½ą¶±ą·Šą¶©ą·Š" #: timezones.h:645 msgid "Australia/Hobart" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ą·„ą·ą¶¶ą·ą¶»ą·Šą¶§ą·Š" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ą¶½ą·’ą¶±ą·Šą¶©ą·Šą¶øą·ą¶±ą·Š" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ą¶½ą·ą¶»ą·Šą¶©ą·Š_ą·„ą·ą·€ą·Š" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ą¶øą·™ą¶½ą·Šą¶¶ą·ą¶±ą·Š" #. comment for time zone Australia/Melbourne #: timezones.h:657 #, fuzzy msgid "Victoria" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ą·€ą·’ą¶šą·Šą¶§ą·ą¶»ą·’ą¶ŗą·" #: timezones.h:658 msgid "Australia/North" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /උතුරු" #: timezones.h:659 msgid "Australia/NSW" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ą¶±ą·’ą·€ą·Š_ą·ƒą·€ą·”ą¶­ą·Š_ą·€ą·šą¶½ą·Šą·ƒą·Š" #: timezones.h:660 msgid "Australia/Perth" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ඓර්ත්" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ą¶šą·Šą·€ą·“ą¶±ą·ƒą·Šą¶½ą¶±ą·Šą¶©ą·Š" #: timezones.h:664 msgid "Australia/South" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ą¶Æą¶šą·”ą¶«ą·”" #: timezones.h:665 msgid "Australia/Sydney" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ą·ƒą·’ą¶©ą·Šą¶±ą·’" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ą¶§ą·ƒą·Šą¶øą·šą¶±ą·’ą¶ŗą·ą·€" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ą·€ą·’ą¶šą·Šą¶§ą·ą¶»ą·’ą¶ŗą·" #: timezones.h:670 msgid "Australia/West" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ą¶¶ą¶§ą·„ą·’ą¶»" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ą¶•ą·ƒą·Šą¶§ą·Šā€ą¶»ą·šą¶½ą·’ą¶ŗą·ą¶ /ą¶ŗą·ą¶±ą·Šą¶šą·œą·€ą·’ą¶±ą·Šą¶±ą·" #: timezones.h:672 msgid "Brazil/Acre" msgstr "ą¶¶ą·Šā€ą¶»ą·ƒą·’ą¶½ą¶ŗ/ą¶‡ą¶šą·Šā€ą¶»ą·™" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "ą¶¶ą·Šā€ą¶»ą·ƒą·’ą¶½ą¶ŗ/ą¶©ą·™ą¶±ą·œą¶»ą·œą¶±ą·Šą·„ą·" #: timezones.h:674 msgid "Brazil/East" msgstr "ą¶¶ą·Šā€ą¶»ą·ƒą·’ą¶½ą¶ŗ/ą¶±ą·ą¶œą·™ą¶±ą·„ą·’ą¶»" #: timezones.h:675 msgid "Brazil/West" msgstr "ą¶¶ą·Šā€ą¶»ą·ƒą·’ą¶½ą¶ŗ/ą¶¶ą¶§ą·„ą·’ą¶»" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "ą¶šą·ą¶±ą¶©ą·/ą¶…ą¶­ą·Šą¶½ą·ą¶±ą·Šą¶­ą·’ą¶šą·Š" #: timezones.h:677 msgid "Canada/Central" msgstr "ą¶šą·ą¶±ą¶©ą·/ą¶øą¶°ą·Šā€ą¶ŗą¶ø" #: timezones.h:678 msgid "Canada/Eastern" msgstr "ą¶šą·ą¶±ą¶©ą·/ą¶±ą·ą¶œą·™ą¶±ą·„ą·’ą¶»" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "ą¶šą·ą¶±ą¶©ą·ą·€/ą¶±ą·ą¶œą·™ą¶±ą·„ą·’ą¶»-ą·ƒą·ą·ƒą·Šą¶šą·ą¶ ą·Šą·€ą·ą¶±ą·Š" #: timezones.h:680 msgid "Canada/Mountain" msgstr "ą¶šą·ą¶±ą¶©ą·/ą¶šą¶³ą·”ą¶šą¶»" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "ą¶šą·ą¶±ą¶©ą·/ą¶±ą·’ą·€ą·Šą·†ą·€ą·”ą¶±ą·Šą¶©ą·Šą¶½ą¶±ą·Šą¶©ą·Š" #: timezones.h:682 msgid "Canada/Pacific" msgstr "ą¶šą·ą¶±ą¶©ą·/ą¶“ą·ą·ƒą·’ą·†ą·’ą¶šą·Š" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "ą¶šą·ą¶±ą¶©ą·ą·€/ą·ƒą·ą·ƒą·Šą¶šą·ą¶ ą·Šą·€ą·ą¶±ą·Š" #: timezones.h:684 msgid "Canada/Yukon" msgstr "ą¶šą·ą¶±ą¶©ą·/ą¶ŗą·–ą¶šą·ą¶±ą·Š" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "චිලී/ą¶šą·œą¶±ą·Šą¶§ą·’ą¶±ą·™ą¶±ą·Šą¶§ą¶½ą·Š" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "චිලී/ą¶Šą·ƒą·Šą¶§ą¶»ą·Šą¶…ą¶ŗą·’ą¶½ą¶±ą·Šą¶©ą·Š" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "ą¶šą·’ą¶ŗą·”ą¶¶ą·ą·€" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "ą¶Šą¶¢ą·’ą¶“ą·Šą¶­ą·”ą·€" #: timezones.h:692 msgid "Eire" msgstr "අයරය" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/ą¶œą·Šā€ą¶»ą·“ą¶±ą·Šą·€ą·’ą¶ ą·Š" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/සම්මත" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/ą·ƒą·–ą¶½ą·”" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶‡ą¶øą·ƒą·Šą¶§ą¶»ą·Šą¶©ą·‘ą¶øą·Š" #: timezones.h:731 msgid "Europe/Andorra" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶‡ą¶±ą·Šą¶©ą·ą¶»ą·" #: timezones.h:732 msgid "Europe/Athens" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶‡ą¶­ą¶±ą·Šą·ƒą·Š" #: timezones.h:733 msgid "Europe/Belfast" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶¶ą·™ą¶½ą·Šą·†ą·ą·ƒą·Šą¶§ą·Š" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶¶ą·™ą¶½ą·Šą¶œą·Šā€ą¶»ą·šą¶©ą·Š" #: timezones.h:735 msgid "Europe/Berlin" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶¶ą¶»ą·Šą¶½ą·’ą¶±ą·Š" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶¶ą·Šā€ą¶»ą·ą¶§ą·’ą·ƒą·Šą¶½ą·ą·€ą·" #: timezones.h:737 msgid "Europe/Brussels" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶¶ą·Šā€ą¶»ą·ƒą¶½ą·Šą·ƒą·Š" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶¶ą·”ą¶šą¶»ą·ƒą·Šą¶§ą·Š" #: timezones.h:739 msgid "Europe/Budapest" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶¶ą·”ą¶©ą¶“ą·™ą·ƒą·Šą¶§ą·Š" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶ ą·’ą·ƒą·’ą¶±ą·ą·€ą·”" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶šą·œą¶“ą·™ą¶±ą·Šą·„ą·ą¶œą·™ą¶±ą·Š" #: timezones.h:742 msgid "Europe/Dublin" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶©ą¶¶ą·Šą¶½ą·’ą¶±ą·Š" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶œą·’ą¶¶ą·Šā€ą¶»ą·ą¶½ą·Šą¶§ą·ą¶»ą·Š" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶œą·”ą·€ą¶»ą·Šą¶±ą·Šą·ƒą·’" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą·„ą·™ą¶½ą·Šą·ƒą·’ą¶±ą·Šą¶šą·’" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶…ą¶ŗą·’ą¶½ą·Š_ą¶”ą·†ą·Š_ą¶øą·‘ą¶±ą·Š" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶‰ą·ƒą·Šą¶­ą·ą¶±ą¶¶ą·”ą¶½ą·Š" #: timezones.h:748 msgid "Europe/Jersey" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶¢ą¶»ą·Šą·ƒą·’" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶šą¶½ą·’ą¶±ą·’ą¶±ą·Šą¶œą·Šā€ą¶»ą·ą¶©ą·Š" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶šą·“ą¶ŗą·™ą·€ą·Š" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶½ą·’ą·ƒą·Šą¶¶ą·œą¶±ą·Š" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶½ą·”ą¶¶ą·Šą¶¢ą·ą¶±ą·" #: timezones.h:759 msgid "Europe/London" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ලන්ඩන්" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ලක්සම්බර්ග්" #: timezones.h:761 msgid "Europe/Madrid" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶øą·‘ą¶©ą·Šą¶»ą·“ą¶©ą·Š" #: timezones.h:764 msgid "Europe/Malta" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶øą·ą¶½ą·Šą¶§ą·" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶øą·ą¶»ą·“ą·„ą·ą¶øą·Šą¶±ą·Š" #: timezones.h:766 msgid "Europe/Minsk" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶øą·’ą¶±ą·Šą·ƒą·Šą¶šą·Š" #: timezones.h:767 msgid "Europe/Monaco" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶øą·œą¶±ą·ą¶šą·" #: timezones.h:768 msgid "Europe/Moscow" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶øą·œą·ƒą·Šą¶šą·€ą·Š" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶±ą·’ą¶šą·ą·ƒą·’ą¶ŗą·" #: timezones.h:772 msgid "Europe/Oslo" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶”ą·ƒą·Šą¶½ą·" #: timezones.h:773 msgid "Europe/Paris" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶“ą·ą¶»ą·’ą·ƒą·Š" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶“ą·œą¶©ą·Šą¶œą·œą¶»ą·’ą¶šą·ą¶œą·Šā€ą¶»ą·ą¶©ą·Š" #: timezones.h:775 msgid "Europe/Prague" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶“ą·Šā€ą¶»ą·ą¶œą·Š" #: timezones.h:776 msgid "Europe/Riga" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶»ą·’ą¶œą·" #: timezones.h:777 msgid "Europe/Rome" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶»ą·ą¶øą¶ŗ" #: timezones.h:778 msgid "Europe/Samara" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą·ƒą¶øą·ą¶»ą·" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/සැන්_ą¶øą·ą¶»ą·’ą¶±ą·" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą·ƒą¶»ą¶ŗą·šą·€ą·" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą·ƒą·’ą¶øą·Šą·†ą·™ą¶»ą·œą¶“ą·œą¶½ą·Š" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą·ƒą·Šą¶šą·ą¶ŗą·™" #: timezones.h:787 msgid "Europe/Sofia" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą·ƒą·œą·†ą·’ą¶ŗą·" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą·ƒą·Šą¶§ą·œą¶šą·Šą·„ą·ą¶øą·Š" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶§ą¶½ą·Šą¶½ą·’ą¶±ą·Š" #: timezones.h:790 msgid "Europe/Tirane" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶§ą·’ą¶»ą·™ą¶±ą·Š" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶§ą·’ą¶»ą·ą·ƒą·Šą¶“ą·œą¶½ą·Š" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą¶‹ą·ƒą·Šą¶œą·œą¶»ą·ą¶©ą·Š" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą·€ą·ą¶©ą·”ą·ƒą·Š" #: timezones.h:796 msgid "Europe/Vatican" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą·€ą¶­ą·’ą¶šą·ą¶±ą·”ą·€" #: timezones.h:797 msgid "Europe/Vienna" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą·€ą·’ą¶ŗą·ą¶±ą·" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą·€ą·’ą¶½ą·Šą¶±ą·’ą¶ŗą·”ą·ƒą·Š" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą·€ą·ą¶½ą·œą¶œą·Šā€ą¶»ą·ą¶©ą·Š" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą·€ą·ą¶»ą·Šą·ƒą·ą·€ą·Š" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą·ƒą·ą¶œą·Šą¶»ą·™ą¶¶ą·Š" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą·ƒą·ą¶“ą·œą¶»ą·œą·ƒą·Šą·„ą¶ŗą·’" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "ą¶ŗą·”ą¶»ą·ą¶“ą¶ŗ/ą·ƒą·–ą¶»ą·’ą¶šą·Š" #: timezones.h:808 msgid "Factory" msgstr "ą·†ą·ą¶šą·Šą¶§ą·œą¶»ą·’" #: timezones.h:809 msgid "GB" msgstr "ą¶øą¶¶ą·Šā€ą¶»ą·’" #: timezones.h:810 msgid "GB-Eire" msgstr "ą¶øą¶¶ą·Šā€ą¶»ą·’-ą¶Šą¶»ą·™" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "ą¶œą·Šā€ą¶»ą·“ą¶±ą·Šą·€ą·’ą¶ ą·Š" #: timezones.h:816 msgid "Hongkong" msgstr "ą·„ą·œą¶‚ą¶šą·œą¶‚" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "ą¶…ą¶ŗą·’ą·ƒą·Šą¶½ą¶±ą·Šą¶­ą¶ŗ" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·”/ą¶‡ą¶±ą·Šą¶§ą¶±ą·ą¶±ą·ą¶»ą·’ą·€ą·" #: timezones.h:820 msgid "Indian/Chagos" msgstr "ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·”/ą¶ ą·ą¶œą·œą·ƒą·Š" #: timezones.h:821 msgid "Indian/Christmas" msgstr "ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·”/ą¶šą·Šā€ą¶»ą·’ą·ƒą·Šą¶§ą·Šą¶øą·ƒą·Š" #: timezones.h:822 msgid "Indian/Cocos" msgstr "ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·”/කොකොස්" #: timezones.h:823 msgid "Indian/Comoro" msgstr "ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·”/ą¶šą·œą¶øą·œą¶»ą·" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·”/ą¶šą¶»ą·Šą¶œą·”ą¶ŗą·’ą¶½ą·™ą¶±ą·Š" #: timezones.h:825 msgid "Indian/Mahe" msgstr "ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·”/ą¶øą·šą·„ą·™" #: timezones.h:826 msgid "Indian/Maldives" msgstr "ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·”/ą¶øą·ą¶½ą¶Æą·’ą·€ą¶ŗą·’ą¶±" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·”/මරූටි" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·”/මේයොට්" #: timezones.h:829 msgid "Indian/Reunion" msgstr "ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·”/ą¶»ą·“ą¶ŗą·”ą¶±ą·’ą¶ŗą¶±ą·Š" #: timezones.h:830 msgid "Iran" msgstr "ą¶‰ą¶»ą·ą¶±ą¶ŗ" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "ą¶Šą·ą·Šā€ą¶»ą·ą¶ŗą¶½ą¶ŗ" #: timezones.h:833 msgid "Jamaica" msgstr "ą¶¢ą·ą¶øą·™ą¶ŗą·’ą¶šą·ą·€" #: timezones.h:834 msgid "Japan" msgstr "ą¶¢ą¶“ą·ą¶±ą¶ŗ" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "ą¶šą·Šą·€ą¶¢ą¶½ą·“ą¶±ą·Š" #: timezones.h:836 msgid "Libya" msgstr "ą¶½ą·’ą¶¶ą·’ą¶ŗą·ą·€" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "ą¶øą·™ą¶šą·Šą·ƒą·’ą¶šą·/ą¶¶ą¶¢ą·ą¶±ą·œą¶»ą·Šą¶§ą·š" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "ą¶øą·™ą¶šą·Šą·ƒą·’ą¶šą·/ą¶¶ą¶¢ą·ą·ƒą¶»ą·Š" #: timezones.h:840 msgid "Mexico/General" msgstr "ą¶øą·™ą¶šą·Šą·ƒą·’ą¶šą·/ą·ƒą·ą¶øą·ą¶±ą·Šā€ą¶ŗ" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "ą¶øą·ą¶Æą¶“ą¶»ą¶Æą·’ą¶œ/ą¶»ą·’ą¶ŗą·ą¶Æą·Š87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "ą¶øą·ą¶Æą¶“ą¶»ą¶Æą·’ą¶œ/ą¶»ą·’ą¶ŗą·ą¶Æą·Š88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "ą¶øą·ą¶Æą¶“ą¶»ą¶Æą·’ą¶œ/ą¶»ą·’ą¶ŗą·ą¶Æą·Š89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "ą¶±ą·€ą¶¢ą·" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶‡ą¶“ą·’ą¶ŗą·" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶•ą¶šą·Šą¶½ą¶±ą·Šą¶­ą¶ŗ" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/චැතම්" #. comment for time zone Pacific/Chatham #: timezones.h:855 #, fuzzy msgid "Chatham Islands" msgstr "චිලී/ą¶Šą·ƒą·Šą¶§ą¶»ą·Šą¶…ą¶ŗą·’ą¶½ą¶±ą·Šą¶©ą·Š" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶§ą·Šā€ą¶»ą¶šą·Š" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 #, fuzzy msgid "Pacific/Easter" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ඊස්ටර්" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶‘ą·†ą·šą¶§ą·Š" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶‘ą¶±ą·Šą¶©ą¶¶ą¶»ą·’" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą·†ą·ą¶šą·ą·€ą·œą·†ą·œ" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ෆිජි" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą·†ą·”ą¶±ą·ą·†ą·”ą¶§ą·’" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ගලැඓැගොස්" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶œą·ą¶øą·Šą¶¶ą·’ą¶ŗą¶»ą·Š" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶œą·ą¶©ą¶½ą·Šą¶šą·ą¶±ą·‘ą¶½ą·Š" #: timezones.h:876 msgid "Pacific/Guam" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶œą·ą¶øą·Š" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą·„ą·œą¶±ą¶½ą·”ą¶½ą·–" #. comment for time zone Pacific/Honolulu #: timezones.h:879 #, fuzzy msgid "Hawaii" msgstr "ą¶‘ą¶¢/ą·„ą·€ą·ą¶ŗą·’" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ජොන්ස්ටන්" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶šą·’ą¶»ą·’ą¶§ą·’ą¶øą·ą¶§ą·’" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/කොස්රේ" #. comment for time zone Pacific/Kosrae #: timezones.h:888 #, fuzzy msgid "Kosrae" msgstr "ą¶Šą·ą·Šā€ą¶»ą·ą¶ŗą¶½ą¶ŗ" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶šą·Šą·€ą·ą¶¢ą¶½ą·“ą¶±ą·Š" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶øą·ą¶¢ą·”ą¶»ą·" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶øą·ą¶»ą·Šą¶šą·Šā€ą¶ŗą·”ą·ƒą·ą·ƒą·Š" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶øą·’ą¶©ą·Šą·€ą·š" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶±ą·ą¶»ą·”" #: timezones.h:902 msgid "Pacific/Niue" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/නියූ" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶±ą·ą·†ą·ą¶šą·Š" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶±ą·žą¶øą·™ą¶ŗą·" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶“ą·ą¶œą·_ą¶“ą·ą¶œą·" #: timezones.h:906 msgid "Pacific/Palau" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶“ą·ą¶½ą·" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶“ą·’ą¶§ą·Šą¶šą·™ą¶ŗą·ą¶»ą·Šą¶±ą·Š" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶“ą·œą¶±ą·ą¶“ą·™" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶“ą·œą¶±ą·ą¶“ą·™" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶“ą·ą¶»ą·Šą¶§ą·Š_ą¶øą·œą¶»ą·Šą·ƒą·Šą¶¶ą·’" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶»ą·ą¶»ą·œą¶§ą·œą¶±ą·Šą¶œą·" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą·ƒą·ą¶ŗą·’ą¶“ą·ą¶±ą·Š" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą·ƒą·ą¶øą·ą·€ą·" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶­ą¶ŗą·’ą¶§ą·’" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶§ą¶»ą·ą·€ą·" #. comment for time zone Pacific/Tarawa #: timezones.h:921 #, fuzzy msgid "Gilbert Islands" msgstr "චිලී/ą¶Šą·ƒą·Šą¶§ą¶»ą·Šą¶…ą¶ŗą·’ą¶½ą¶±ą·Šą¶©ą·Š" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶§ą·œą¶±ą·Šą¶œą¶§ą·ą¶“ą·”" #: timezones.h:923 msgid "Pacific/Truk" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą¶§ą·Šā€ą¶»ą¶šą·Š" #: timezones.h:924 msgid "Pacific/Wake" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą·€ą·šą¶šą·Š" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/ą·€ą·ą¶½ą·’ą·ƒą·Š" #: timezones.h:928 msgid "Pacific/Yap" msgstr "ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š/යැඓ්" #: timezones.h:929 msgid "Poland" msgstr "ą¶“ą·ą¶½ą¶±ą·Šą¶­ą¶ŗ" #: timezones.h:930 msgid "Portugal" msgstr "ą¶“ą·˜ą¶­ą·”ą¶œą·ą¶½ą¶ŗ" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "ą·ƒą·’ą¶‚ą¶œą¶“ą·Šą¶“ą·–ą¶»ą·”ą·€" #: timezones.h:937 msgid "Turkey" msgstr "ą¶­ą·”ą¶»ą·Šą¶šą·’ą¶ŗ" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "සම්මත" #: timezones.h:940 msgid "US/Alaska" msgstr "ą¶‘ą¶¢/ą¶‡ą¶½ą·ƒą·Šą¶šą·ą·€" #: timezones.h:941 msgid "US/Aleutian" msgstr "ą¶‘ą¶¢/ą¶‡ą¶½ą·–ą·‚ą¶±ą·Š" #: timezones.h:942 msgid "US/Arizona" msgstr "ą¶‘ą¶¢/ą¶‡ą¶»ą·’ą·ƒą·ą¶±ą·ą·€" #: timezones.h:943 msgid "US/Central" msgstr "ą¶‘ą¶¢/ą¶øą¶°ą·Šā€ą¶ŗą¶ø" #: timezones.h:944 msgid "US/Eastern" msgstr "ą¶‘ą¶¢/ą¶±ą·ą¶œą·™ą¶±ą·„ą·’ą¶»" #: timezones.h:945 msgid "US/East-Indiana" msgstr "ą¶‘ą¶¢/ą¶±ą·ą¶œą·™ą¶±ą·„ą·’ą¶»-ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·ą·€" #: timezones.h:946 msgid "US/Hawaii" msgstr "ą¶‘ą¶¢/ą·„ą·€ą·ą¶ŗą·’" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "ą¶‘ą¶¢/ą¶‰ą¶±ą·Šą¶Æą·’ą¶ŗą·ą¶±ą·-ą·ƒą¶§ą·ą¶»ą·Šą¶šą·Š" #: timezones.h:948 msgid "US/Michigan" msgstr "ą¶‘ą¶¢/ą¶øą·’ą¶ ą·’ą¶œą¶±ą·Š" #: timezones.h:949 msgid "US/Mountain" msgstr "ą¶‘ą¶¢/ą¶šą¶³ą·”ą¶šą¶»" #: timezones.h:950 msgid "US/Pacific" msgstr "ą¶‘ą¶¢/ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š" #: timezones.h:951 msgid "US/Samoa" msgstr "ą¶‘ą¶¢/ą·ƒą·ą¶øą·ą·€ą·" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "ą·ƒą·–ą¶½ą·”" #~ msgid "US/Pacific-New" #~ msgstr "ą¶‘ą¶¢/නව-ą¶“ą·ą·ƒą·’ą¶“ą·’ą¶šą·Š" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/or.po0000664000175000017500000025457514632072346023721 0ustar fabiofabio# translation of or.po to Oriya # This file is distributed under the same license as the PACKAGE package. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. # # Subhransu Behera , 2006. # Subhransu Behera , 2007. # saroj kumar padhy , 2008. # Manoj Kumar Giri , 2009, 2010. msgid "" msgstr "" "Project-Id-Version: or\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-12-06 15:28+0530\n" "Last-Translator: \n" "Language-Team: Oriya \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: or\n" "X-Generator: Lokalize 1.1\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" "\n" "\n" "\n" "\n" "\n" "\n" "\n" "\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬…ą¬¬ą­€ą¬”ą¬œą¬Ø" #: timezones.h:2 msgid "Africa/Accra" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬…ą¬•ą­ą¬°ą¬¾" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬ą¬¦ą¬æą¬ø_ଅବାବା" #: timezones.h:4 msgid "Africa/Algiers" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬…ą¬²ą¬œą¬æą­Ÿą¬°ą­ą¬ø" #: timezones.h:5 msgid "Africa/Asmara" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ଅସମେରା" #: timezones.h:6 msgid "Africa/Asmera" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ଅସମେରା" #: timezones.h:7 msgid "Africa/Bamako" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ବାମାକୋ" #: timezones.h:8 msgid "Africa/Bangui" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬¬ą¬‚ą¬™ą­ą¬—ą­ą¬ˆ" #: timezones.h:9 msgid "Africa/Banjul" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬¬ą¬‚ą¬œą¬²" #: timezones.h:10 msgid "Africa/Bissau" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ବିସୂ" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬¬ą­ą¬²ą­‡ą¬Øą¬Ÿą¬°ą­€" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬¬ą­ą¬°ą¬¾ą¬œą¬¾ą¬¬ą¬æą¬²" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ବୁଜମବୁରା" #: timezones.h:14 msgid "Africa/Cairo" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/କାଇରୋ" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬•ą¬¾ą¬øą¬¾ą¬¬ą­ą¬²ą¬¾ą¬™ą­ą¬•ą¬¾" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ସିୟୁଟା" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "ą¬øą­ą¬¬ą­‡ą¬Ÿą¬¾ ą¬ą¬¬ą¬‚ ମେଲିଲା" #: timezones.h:19 msgid "Africa/Conakry" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬•ą­‹ą¬Øą¬¾ą¬•ą­ą¬°ą­€" #: timezones.h:20 msgid "Africa/Dakar" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ଔାକର" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ଔାର_ą¬ą¬ø_ą¬øą­ą¬²ą­‡ą¬®" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬”ą­ą¬œą¬æą¬¬ą­‹ą¬Ÿą¬æ" #: timezones.h:23 msgid "Africa/Douala" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ଔୂଅଲା" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬ą¬²_ଐନ" #: timezones.h:25 msgid "Africa/Freetown" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬«ą­ą¬°ą­€ą¬Ÿą¬¾ą¬“ą¬Ø" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬—ą­ˆą¬¬ą­ą¬°ą­‹ą¬Ø" #: timezones.h:27 msgid "Africa/Harare" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ହରାରେ" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬œą­‹ą¬¹ą¬¾ą¬‚ą¬Øą­ą¬øą¬¬ą¬°ą­ą¬—" #: timezones.h:29 msgid "Africa/Kampala" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬•ą¬®ą­ą¬Ŗą¬¾ą¬²ą¬¾" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬–ą¬¾ą¬°ą­ą¬¤ą­ą¬®" #: timezones.h:31 msgid "Africa/Kigali" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/କିଗାଲୀ" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/କିଂସାସା" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "ą¬Ŗą¬¶ą­ą¬šą¬æą¬® ą¬•ą­‹ą¬™ą­ą¬—ą­‹ ର ą¬²ą­‹ą¬•ą¬¤ą¬¾ą¬Øą­ą¬¤ą­ą¬°ą¬æą¬• ą¬—ą¬£ą¬°ą¬¾ą¬œą­ą¬Æ" #: timezones.h:35 msgid "Africa/Lagos" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ଲାଗୋସ" #: timezones.h:36 msgid "Africa/Libreville" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ଲିବରଭିଲ" #: timezones.h:37 msgid "Africa/Lome" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ଲୋମ" #: timezones.h:38 msgid "Africa/Luanda" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬²ą­ą¬†ą¬£ą­ą¬”ą¬¾" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ଲୁବୂଂବଶୀ" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ ą¬•ą­‹ą¬™ą­ą¬—ą­‹ ą¬²ą­‹ą¬•ą¬¤ą¬¾ą¬Øą­ą¬¤ą­ą¬°ą¬æą¬• ą¬—ą¬£ą¬°ą¬¾ą¬œą­ą¬Æ" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ଲୁସାକା" #: timezones.h:43 msgid "Africa/Malabo" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ମଲାବୋ" #: timezones.h:44 msgid "Africa/Maputo" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ମାପୁତୋ" #: timezones.h:45 msgid "Africa/Maseru" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬®ą­ˆą¬øą­‡ą¬°ą­" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬®ą­ą¬¬ą­‡ą¬¬ą¬¾ą¬Øą­‡" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ମୋଗାଔୀଶୂ" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬®ą­‹ą¬Øą¬°ą­‹ą¬¬ą¬æą­Ÿą¬¾" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ନାଇରୋବୀ" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬Øą¬œą­‡ą¬®ą­‡ą¬Øą¬¾" #: timezones.h:51 msgid "Africa/Niamey" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬Øą¬æą­Ÿą¬¾ą¬®ą­‡" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬Øą­Œą¬•ą¬šą­‹ą¬Ÿ" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ଔଗାଦୂଗୋ" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬Ŗą­‹ą¬°ą­ą¬Ÿą­‹_ନୋଭୋ" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ସାଓ_ą¬Ÿą­‹ą¬®" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬¤ą¬æą¬‚ą¬¬ą¬•ą¬Ÿą­‚" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬¤ą­ą¬°ą¬æą¬Ŗą­‹ą¬²ą­€" #: timezones.h:58 msgid "Africa/Tunis" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą¬Ÿą­ą¬Æą­‚ą¬Øą¬æą¬ø" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "ą¬†ą¬«ą­ą¬°ą­€ą¬•ą¬¾/ą­±ą¬æą¬£ą­ą¬”ą¬¹ą­‹ą¬•" #: timezones.h:60 msgid "America/Adak" msgstr "ଆମେରିକା/ଅଦାକ" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "ą¬ą¬²ą­ą¬Æą­ą¬øą¬æą­Ÿą¬¾ą¬Ø ą¬¦ą­ą¬¬ą­€ą¬Ŗ" #: timezones.h:63 msgid "America/Anchorage" msgstr "ଆମେରିକା/ą¬ą¬™ą­ą¬•ą¬°ą­‡ą¬œ" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "ą¬†ą¬²ą¬¾ą¬øą­ą¬•ą¬¾ ସମୟ" #: timezones.h:66 msgid "America/Anguilla" msgstr "ଆମେରିକା/ą¬ą¬™ą­ą¬—ą­ą¬²ą¬¾" #: timezones.h:67 msgid "America/Antigua" msgstr "ଆମେରିକା/ą¬ą¬£ą­ą¬Ÿą¬æą¬—ą­ą¬†" #: timezones.h:68 msgid "America/Araguaina" msgstr "ଆମେରିକା/ą¬…ą¬°ą¬¾ą¬—ą­ą¬¬ą­‡ą¬Øą¬¾" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "ą¬¤ą­‹ą¬•ą¬¾ą¬£ą­ą¬Ÿą¬æą¬Øą¬ø" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "ଆମେରିକା/ą¬†ą¬°ą­ą¬œą­‡ą¬£ą­ą¬Ÿą­€ą¬Øą¬¾/ą¬¬ą­ą¬Æą­ą¬Øą¬ø_ą¬†ą­Ÿą¬°ą­ą¬ø" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "ą¬¬ą­ą¬Æą­ą¬Øą¬ø ą¬†ą­Ÿą¬°ą­ą¬ø (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "ଆମେରିକା/ą¬†ą¬°ą­ą¬œą­‡ą¬£ą­ą¬Ÿą­€ą¬Øą¬¾/ą¬•ą­ˆą¬Ÿą¬¾ą¬®ą¬¾ą¬°ą­ą¬•ą¬¾" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "ą¬•ą¬¾ą¬Ÿą¬¾ą¬®ą¬¾ą¬°ą­ą¬•ą¬¾ (CT), ଚୁବୁତ (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "ଆମେରିକା/ą¬†ą¬°ą­ą¬œą­‡ą¬£ą­ą¬Ÿą­€ą¬Øą¬¾/କୋମୋଔରିଭାଔାଭିଆ" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "ଆମେରିକା/ą¬†ą¬°ą­ą¬œą­‡ą¬£ą­ą¬Ÿą­€ą¬Øą¬¾/କୋରଔୋଭା" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "ଅଧିକାଂଶ ą¬øą­ą¬„ą¬¾ą¬Øą¬—ą­ą¬”ą¬¼ą¬æą¬• (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "ଆମେରିକା/ą¬†ą¬°ą­ą¬œą­‡ą¬£ą­ą¬Ÿą­€ą¬Øą¬¾/ଜୁଜୈ" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "ଜୁଜୈ (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "ଆମେରିକା/ą¬†ą¬°ą­ą¬œą­‡ą¬£ą­ą¬Ÿą­€ą¬Øą¬¾/ଲା_ą¬°ą¬æą­Ÿą­‹ą¬œą¬¾" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "ଲା ą¬°ą¬æą­Ÿą­‹ą¬œą¬¾ (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "ଆମେରିକା/ą¬†ą¬°ą­ą¬œą­‡ą¬£ą­ą¬Ÿą­€ą¬Øą¬¾/ą¬®ą­‹ą¬Øą¬”ą­‹ą¬œą¬¾" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "ą¬®ą­‡ą¬£ą­ą¬”ą­‹ą¬œą¬¾ (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "ଆମେରିକା/ą¬†ą¬°ą­ą¬œą­‡ą¬£ą­ą¬Ÿą­€ą¬Øą¬¾/ą¬°ą¬æą­Ÿą­‹_ą¬—ą­ˆą¬²ą¬æą­Ÿą¬ø" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "ą¬øą¬¾ą¬Øą­ą¬¤ą¬¾ ą¬•ą­ą¬°ą­ą¬œ (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "ଆମେରିକା/ą¬†ą¬°ą­ą¬œą­‡ą¬£ą­ą¬Ÿą­€ą¬Øą¬¾/ସାଲଟା" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "ଆମେରିକା/ą¬†ą¬°ą­ą¬œą­‡ą¬£ą­ą¬Ÿą­€ą¬Øą¬¾/ସାନ_ą¬œą­ą¬†ą¬Ø" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "ସାନ ą¬œą­ą¬†ą¬Ø (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "ଆମେରିକା/ą¬†ą¬°ą­ą¬œą­‡ą¬£ą­ą¬Ÿą­€ą¬Øą¬¾/ସାନ_ଲୁଇସ" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "ସାନ ଲୁଇସ (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "ଆମେରିକା/ą¬†ą¬°ą­ą¬œą­‡ą¬£ą­ą¬Ÿą­€ą¬Øą¬¾/ą¬Ÿą¬•ą¬®ą­ˆą¬Ø" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "ą¬Ÿą­ą¬•ą­ą¬®ą¬¾ą¬Ø (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "ଆମେରିକା/ą¬†ą¬°ą­ą¬œą­‡ą¬£ą­ą¬Ÿą­€ą¬Øą¬¾/ą¬“ą¬¶ą­ą¬†ą¬¹ą¬æą­Ÿą¬¾" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "ą¬¤ą¬æą­Ÿą­‡ą¬°ą¬¾ ଔେଲ ą¬«ą­ą­Ÿą­‡ą¬—ą­‹ (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "ଆମେରିକା/ଅରୁବା" #: timezones.h:109 msgid "America/Asuncion" msgstr "ଆମେରିକା/ą¬…ą¬øą¬Øą¬¶ą¬æą­Ÿą¬Ø" #: timezones.h:110 msgid "America/Atikokan" msgstr "ଆମେରିକା/ą¬…ą¬Ÿą¬æą¬•ą­‹ą¬•ą¬¾ą¬Ø" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ą­€ ମାନକ ସମୟ - ą¬ą¬Ÿą¬æą¬•ą­‹ą¬•ą¬¾ą¬Ø, ą¬“ą¬£ą­ą¬Ÿą¬¾ą¬°ą¬æą¬“ ą¬ą¬¬ą¬‚ ą¬øą¬¾ą¬‰ą¬„ą¬¾ą¬®ą­ą¬Ŗą¬Ÿą­‹ą¬Ø ଆଇ, ନୁନାଭଟ" #: timezones.h:113 msgid "America/Atka" msgstr "ଆମେରିକା/ą¬…ą¬Ÿą¬•ą¬¾" #: timezones.h:114 msgid "America/Bahia" msgstr "ଆମେରିକା/ą¬¬ą¬æą¬øą­ą¬¤ą¬¾" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "ବାହିଆ" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "ଆମେରିକା/ବାହିଆ_ą¬¬ą¬¾ą¬Øą­ą¬¦ą­‡ą¬°ą¬¾ą¬ø" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "ą¬®ą­‡ą¬•ą­ą¬øą¬æą¬•ą¬¾ą¬Ø ą¬®ą¬§ą­ą¬Æ ସମୟ - ବାହିଆ ଦେ ą¬¬ą¬¾ą¬Øą­ą¬¦ą­‡ą¬°ą¬¾ą¬ø" #: timezones.h:120 msgid "America/Barbados" msgstr "ଆମେରିକା/ą¬¬ą¬¾ą¬°ą­ą¬¬ą¬¾ą¬”ą­‹ą¬ø" #: timezones.h:121 msgid "America/Belem" msgstr "ଆମେରିକା/ବେଲେମ" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "ଆମାପା, ą¬Ŗą­‚ą¬°ą­ą¬¬ ପାରା" #: timezones.h:124 msgid "America/Belize" msgstr "ଆମେରିକା/ą¬¬ą­‡ą¬²ą¬æą¬œ" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "ଆମେରିକା/ą¬¬ą­ą¬²ą¬¾ą¬™ą­ą¬•-ą¬øą¬¾ą¬¬ą­ą¬²ą­‹ą¬Ø" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "ą¬†ą¬Ÿą¬²ą¬¾ą¬£ą­ą¬Ÿą¬æą¬• ମାନକ ସମୟ - ą¬•ą­ą¬Æą­ą¬¬ą­‡ą¬• - ą¬Øą¬æą¬®ą­ą¬Ø ą¬‰ą¬¤ą­ą¬¤ą¬° ଉପକୂଳ" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "ଆମେରିକା/ବୋଆ_ą¬­ą¬æą¬øą­ą¬Ÿą¬¾" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "ରୋରାଇମା" #: timezones.h:131 msgid "America/Bogota" msgstr "ଆମେରିକା/ą¬¬ą­‹ą¬—ą­‹ą¬Ÿą¬¾" #: timezones.h:132 msgid "America/Boise" msgstr "ଆମେରିକା/ବୋଇସ" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "ą¬Ŗą¬°ą­ą¬¬ą¬¤ą­€ą­Ÿ ସମୟ - ą¬¦ą¬•ą­ą¬·ą¬æą¬£ ଇଦାହୋ ą¬ą¬¬ą¬‚ ą¬Ŗą­‚ą¬°ą­ą¬¬ ଓରେଗୋନ" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "ଆମେରିକା/ą¬¬ą­ą¬Æą­ą¬Øą­‹ą¬¶_ą¬†ą­Ÿą¬°ą­ą¬ø" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "ଆମେରିକା/ą¬•ą­ˆą¬®ą­ą¬¬ą¬°ą­€ą¬œ_ବେ" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "ą¬Ŗą¬°ą­ą¬¬ą¬¤ ସମୟ - ą¬Ŗą¬¶ą­ą¬šą¬æą¬® ନୁନାଭଟ" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "ଆମେରିକା/ą¬•ą¬®ą­ą¬Ŗą­‹_ą¬—ą­ą¬°ą­‡ą¬£ą­ą¬”" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "ମାତୋ ą¬—ą­ą¬°ą¬øą­‹ ଦୋ ସୁଲ" #: timezones.h:142 msgid "America/Cancun" msgstr "ଆମେରିକା/କାନକୁନ" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ସମୟ - ą¬•ą­ą¬¬ą¬æą¬Øą¬£ą­ą¬Ÿą¬¾ą¬Øą¬¾ ରୁ" #: timezones.h:145 msgid "America/Caracas" msgstr "ଆମେରିକା/ą¬•ą­ˆą¬°ą¬¾ą¬•ą¬ø" #: timezones.h:146 msgid "America/Catamarca" msgstr "ଆମେରିକା/ą¬•ą­ˆą¬Ÿą¬¾ą¬®ą¬¾ą¬°ą­ą¬•ą¬¾" #: timezones.h:147 msgid "America/Cayenne" msgstr "ଆମେରିକା/ą¬•ą­ˆą­Ÿą­‡ą¬Ø" #: timezones.h:148 msgid "America/Cayman" msgstr "ଆମେରିକା/ą¬•ą­ˆą¬®ą­‡ą¬Ø" #: timezones.h:149 msgid "America/Chicago" msgstr "ଆମେରିକା/ą¬šą¬æą¬•ą¬¾ą¬—ą­‹" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "ą¬®ą¬§ą­ą¬Æą¬¬ą¬°ą­ą¬¤ą­ą¬¤ą­€ ସମୟ" #: timezones.h:152 msgid "America/Chihuahua" msgstr "ଆମେରିକା/ą¬šą¬æą¬¹ą­ą¬†ą¬¹ą­ą¬†" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "ą¬®ą­‡ą¬•ą­ą¬øą¬æą¬•ą¬¾ą¬Ø ą¬Ŗą¬°ą­ą¬¬ą¬¤ ସମୟ - ą¬šą¬æą¬¹ą­ą­Ÿą­ą¬¹ą­‡ US ସୀମାରୁ ଦୂରରେ" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "ଆମେରିକା/କୋରଲ_ą¬¹ą¬¾ą¬°ą­ą¬¬ą¬°" #: timezones.h:156 msgid "America/Cordoba" msgstr "ଆମେରିକା/ą¬•ą­‹ą¬°ą­ą¬”ą­‹ą¬¬ą¬¾" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "ଆମେରିକା/ą¬•ą­‹ą¬·ą­ą¬Ÿą¬¾_ରିକା" #: timezones.h:158 msgid "America/Cuiaba" msgstr "ଆମେରିକା/ą¬•ą­ą¬Æą­ą­Ÿą¬æą¬¬ą¬¾" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "ମାତୋ ą¬—ą­ą¬°ą¬øą­‹" #: timezones.h:161 msgid "America/Curacao" msgstr "ଆମେରିକା/କୁରାକାଓ" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "ଆମେରିକା/ą¬”ą­‡ą¬Øą¬®ą¬¾ą¬°ą­ą¬•ą¬¶ą¬¾ą¬Ø" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ ą¬šą¬Ÿą¬øą­ą¬„, ą¬øą­ą¬•ą­‹ą¬°ą¬°ą­ą¬øą­ą¬¬ą¬¾ą­Ÿą¬øą¬£ą­ą¬” ର ą¬‰ą¬¤ą­ą¬¤ą¬°" #: timezones.h:165 msgid "America/Dawson" msgstr "ଆମେରିକା/ଔାଓଶନ" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "ą¬Ŗą­ą¬°ą¬¶ą¬¾ą¬Øą­ą¬¤ ସମୟ - ą¬‰ą¬¤ą­ą¬¤ą¬° ą­Ÿą­ą¬•ą­‹ą¬Ø" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "ଆମେରିକା/ଔାଓଶନ_ą¬•ą­ą¬°ą­€ą¬•" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "ą¬Ŗą¬°ą­ą¬¬ą¬¤ą­€ą­Ÿ ମାନକ ସମୟ - ଔାଉସନ ą¬•ą­ą¬°ą­€ą¬• ą¬ą¬¬ą¬‚ ą¬øą­‡ą¬£ą­ą¬Ÿ ą¬œą­‹ą¬Ø ą¬¦ą­ą¬°ą­ą¬—, ą¬¬ą­ą¬°ą¬æą¬Ÿą¬æą¬¶ ą¬•ą­‹ą¬²ą¬®ą­ą¬¬ą¬æą­Ÿą¬¾" #: timezones.h:171 msgid "America/Denver" msgstr "ଆମେରିକା/ଔେନଭର" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "ą¬®ą¬¾ą¬‰ą¬£ą­ą¬Ÿą­‡ą¬Ø ସମୟ" #: timezones.h:174 msgid "America/Detroit" msgstr "ଆମେରିକା/ą¬”ą­‹ą¬Ÿą­ą¬°ą­‹ą¬‡ą¬Ÿ" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ą­€ ସମୟ - ą¬®ą¬æą¬šą¬æą¬—ą¬¾ą¬Ø - ଅଧିକାଂଶ ą¬…ą¬žą­ą¬šą¬³" #: timezones.h:177 msgid "America/Dominica" msgstr "ଆମେରିକା/ଔୋମିନିକା" #: timezones.h:178 msgid "America/Edmonton" msgstr "ଆମେରିକା/ą¬ą¬”ą¬®ą­‹ą¬£ą­ą¬Ÿą­‹ą¬Ø" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "ą¬Ŗą¬°ą­ą¬¬ą¬¤ą­€ą­Ÿ ସମୟ - ą¬…ą¬²ą¬¬ą­‡ą¬°ą­ą¬Ÿą¬¾, ą¬Ŗą­‚ą¬°ą­ą¬¬ ą¬¬ą­ą¬°ą¬æą¬Ÿą¬æą¬¶ ą¬•ą­‹ą¬²ą¬®ą­ą¬¬ą¬æą­Ÿą¬¾ ą¬ą¬¬ą¬‚ ą¬Ŗą¬¶ą­ą¬šą¬æą¬® ą¬øą¬¾ą¬øą¬•ą­‡ą¬šą­±ą¬¾ą¬Ø" #: timezones.h:181 msgid "America/Eirunepe" msgstr "ଆମେରିକା/ą­Ÿą­ą¬°ą­€ą¬Øą¬ą¬Ŗ" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "ą¬Ŗą¬¶ą­ą¬šą¬æą¬®ą­€ ą¬†ą¬®ą¬¾ą¬œą­‹ą¬Øą¬øą­" #: timezones.h:184 msgid "America/El_Salvador" msgstr "ଆମେରିକା/ą¬ą¬²_ସେଲଭାଔୋର" #: timezones.h:185 msgid "America/Ensenada" msgstr "ଆମେରିକା/ą¬ą¬Øą¬øą­‡ą¬Øą­‡ą¬”ą¬¾" #: timezones.h:186 msgid "America/Fortaleza" msgstr "ଆମେରିକା/ą¬«ą­‹ą¬°ą­ą¬Ÿą¬²ą­‡ą¬œą¬¾" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "ą¬‰ą¬¤ą­ą¬¤ą¬°ą¬Ŗą­‚ą¬°ą­ą¬¬ ą¬¬ą­ą¬°ą¬¾ą¬œą¬æą¬² (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "ଆମେରିକା/ą¬«ą­‹ą¬°ą­ą¬Ÿ_ୱେନ" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "ଆମେରିକା/ą¬—ą­ą¬²ą­‡ą¬ø_ବେ" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "ą¬†ą¬Ÿą¬²ą¬¾ą¬£ą­ą¬Ÿą¬æą¬• ସମୟ - ନୋଭା ą¬øą­ą¬•ą­‹ą¬Ÿą¬æą­Ÿą¬¾ - ą¬…ą¬žą­ą¬šą¬³ ଯାହାକି DST 1966-1971 କୁ ଦେଖେ ନାହିଁ" #: timezones.h:193 msgid "America/Godthab" msgstr "ଆମେରିକା/ą¬—ą¬”ą­ą¬„ą¬¬" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "ଅଧିକାଂଶ ą¬…ą¬žą­ą¬šą¬³" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "ଆମେରିକା/ଗୂସ_ବେ" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "ą¬†ą¬Ÿą¬²ą¬¾ą¬£ą­ą¬Ÿą¬æą¬• ସମୟ - ą¬²ą¬¾ą¬¬ą­ą¬°ą¬¾ą¬”ą­‹ą¬° - ଅଧିକାଂଶ ą¬…ą¬žą­ą¬šą¬³" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "ଆମେରିକା/ą¬—ą­ą¬°ą¬¾ą¬£ą­ą¬”_ą¬¤ą­ą¬°ą­ą¬•" #: timezones.h:200 msgid "America/Grenada" msgstr "ଆମେରିକା/ą¬—ą­ą¬°ą­ˆą¬Øą­‡ą¬”ą¬¾" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "ଆମେରିକା/ą¬—ą­ą¬¬ą¬¾ą¬”ą­‡ą¬²ą­‹ą¬Ŗą­‡" #: timezones.h:202 msgid "America/Guatemala" msgstr "ଆମେରିକା/ą¬—ą­ą¬¬ą¬¾ą¬Ÿą­‡ą¬®ą¬¾ą¬²ą¬¾" #: timezones.h:203 msgid "America/Guayaquil" msgstr "ଆମେରିକା/ą¬—ą­ą¬†ą­Ÿą¬¾ą¬•ą¬æą¬²" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "ą¬®ą­‡ą¬Øą¬²ą­ą¬Æą¬¾ą¬£ą­ą¬”" #: timezones.h:206 msgid "America/Guyana" msgstr "ଆମେରିକା/ଗୁଆନା" #: timezones.h:207 msgid "America/Halifax" msgstr "ଆମେରିକା/ą¬¹ą­‡ą¬²ą¬æą¬«ą­‡ą¬•ą­ą¬ø" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "ą¬†ą¬Ÿą¬²ą¬¾ą¬£ą­ą¬Ÿą¬æą¬• ସମୟ - ନୋଭା ą¬øą­ą¬•ą­‹ą¬Ÿą¬æą­Ÿą¬¾ (ଅଧିକାଂଶ ą¬…ą¬žą­ą¬šą¬³), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "ଆମେରିକା/ହଭାନା" #: timezones.h:211 msgid "America/Hermosillo" msgstr "ଆମେରିକା/ą¬¹ą¬°ą­ą¬®ą­‹ą¬øą¬æą¬²ą­‹" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "ą¬Ŗą¬°ą­ą¬¬ą¬¤ą­€ą­Ÿ ମାନକ ସମୟ - ସୋନୋରା" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "ଆମେରିକା/ą¬‡ą¬£ą­ą¬”ą¬æą­Ÿą¬¾ą¬Øą¬¾/ą¬‡ą¬£ą­ą¬”ą¬æą­Ÿą¬¾ą¬Øą¬¾ą¬Ŗą­‹ą¬²ą¬æą¬ø" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ą­€ ସମୟ - ą¬‡ą¬£ą­ą¬”ą¬æą­Ÿą¬¾ą¬Øą¬¾ - ଅଧିକାଂଶ ą¬…ą¬žą­ą¬šą¬³" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "ଆମେରିକା/ą¬‡ą¬£ą­ą¬”ą¬æą­Ÿą¬¾ą¬Øą¬¾/ą¬Øą¬•ą­ą¬ø" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "ą¬®ą¬§ą­ą¬Æą¬¬ą¬°ą­ą¬¤ą­ą¬¤ą­€ ସମୟ - ą¬­ą¬¾ą¬°ą¬¤ą­€ą­Ÿ - ą¬·ą­ą¬Ÿą¬¾ą¬°ą­ą¬• ଦେଶ" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "ଆମେରିକା/ą¬‡ą¬£ą­ą¬”ą¬æą­Ÿą¬¾ą¬Øą¬¾/ą¬®ą¬¾ą¬°ą­‡ą¬™ą­ą¬—ą­‹" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ą­€ ସମୟ - ą¬‡ą¬£ą­ą¬”ą¬æą­Ÿą¬¾ą¬Øą¬¾ - ą¬•ą­ą¬°ą­‹ą¬«ą­‹ą¬°ą­ą¬” ą¬•ą¬¾ą¬‰ą¬£ą­ą¬Ÿą­€" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "ଆମେରିକା/ą¬‡ą¬£ą­ą¬”ą¬æą­Ÿą¬¾ą¬Øą¬¾/ą¬Ŗą¬æą¬Ÿą¬°ą­ą¬øą¬¬ą¬°ą­ą¬—" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ą­€ ସମୟ - ą¬‡ą¬£ą­ą¬”ą¬æą­Ÿą¬¾ą¬Øą¬¾ - ପାଇକ ą¬•ą¬¾ą¬‰ą¬£ą­ą¬Ÿą­€" #: timezones.h:226 msgid "America/Indianapolis" msgstr "ଆମେରିକା/ą¬‡ą¬£ą­ą¬”ą¬æą­Ÿą¬¾ą¬Øą¬¾ą¬Ŗą­‹ą¬²ą¬æą¬ø" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "ଆମେରିକା/ą¬‡ą¬£ą­ą¬”ą¬æą­Ÿą¬¾ą¬Øą¬¾/ą¬Ÿą­‡ą¬²ą­_ସିଟି" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ସମୟ - ą¬‡ą¬£ą­ą¬”ą¬æą­Ÿą¬¾ą¬Øą¬¾ - ପେରୀ ą¬•ą¬¾ą¬‰ą¬£ą­ą¬Ÿą­€" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "ଆମେରିକା/ą¬‡ą¬£ą­ą¬”ą¬æą­Ÿą¬¾ą¬Øą¬¾/ଭିଭେ" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ą­€ ସମୟ - ą¬‡ą¬£ą­ą¬”ą¬æą­Ÿą¬¾ą¬Øą¬¾ - ą¬øą­ą¬¬ą¬æą¬œą¬°ą¬²ą­ą¬Æą¬¾ą¬£ą­ą¬” ą¬•ą¬¾ą¬‰ą¬£ą­ą¬Ÿą­€" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "ଆମେରିକା/ą¬‡ą¬£ą­ą¬”ą¬æą­Ÿą¬¾ą¬Øą¬¾/ą¬­ą¬æą¬Øą¬øą­‡ą¬Øą­ą¬ø" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ ସମୟ - ą¬‡ą¬£ą­ą¬”ą¬æą­Ÿą¬¾ą¬Øą¬¾ - ଔେଭିସ, ą¬”ą­ą¬Æą­ą¬¬ą­‹ą¬‡ą¬ø, ą¬Øą­‹ą¬•ą­ą¬ø & ą¬®ą¬¾ą¬°ą­ą¬Ÿą¬æą¬Ø ą¬•ą¬¾ą¬‰ą¬£ą­ą¬Ÿą­€" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "ଆମେରିକା/ą¬‡ą¬£ą­ą¬”ą¬æą­Ÿą¬¾ą¬Øą¬¾/ą­±ą¬æą¬Øą¬¾ą¬®ą­‡ą¬•ą­" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ą­€ ସମୟ - ą¬‡ą¬£ą­ą¬”ą¬æą­Ÿą¬¾ą¬Øą¬¾ - ą¬Ŗą­‹ą¬²ą¬øą­ą¬•ą¬æ ą¬•ą¬¾ą¬‰ą¬£ą­ą¬Ÿą­€" #: timezones.h:239 msgid "America/Inuvik" msgstr "ଆମେରିକା/ଇନୁବିକ" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "ą¬Ŗą¬°ą­ą¬¬ą¬¤ą­€ą­Ÿ ସମୟ - ą¬Ŗą¬¶ą­ą¬šą¬æą¬® ą¬‰ą¬¤ą­ą¬¤ą¬°ą¬Ŗą¬¶ą­ą¬šą¬æą¬® ą¬Ŗą­ą¬°ą¬¦ą­‡ą¬¶" #: timezones.h:242 msgid "America/Iqaluit" msgstr "ଆମେରିକା/ଇକାଲୁଇତ" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ą­€ ସମୟ - ą¬Ŗą­‚ą¬°ą­ą¬¬ą­€ ନୁନାଭଟ - ଅଧିକାଂଶ ą¬…ą¬žą­ą¬šą¬³" #: timezones.h:245 msgid "America/Jamaica" msgstr "ଆମେରିକା/ą¬œą¬¾ą¬®ą¬¾ą¬‡ą¬•ą¬¾" #: timezones.h:246 msgid "America/Jujuy" msgstr "ଆମେରିକା/ଜୁଜୈ" #: timezones.h:247 msgid "America/Juneau" msgstr "ଆମେରିକା/ą¬œą­‚ą¬Øą­‹" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "ą¬†ą¬²ą¬¾ą¬øą­ą¬•ą¬¾ ସମୟ - ą¬†ą¬²ą¬¾ą¬øą­ą¬•ą¬¾ ą¬Ŗą¬¾ą¬Øą¬¹ą­ą¬Æą¬¾ą¬£ą­ą¬”ą­‡ą¬²" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "ଆମେରିକା/ą¬•ą­‡ą¬£ą­ą¬Ÿą­ą¬•ą­€/ଲୁଈବିଲ" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ą­€ ସମୟ - ą¬•ą­‡ą¬£ą­ą¬Ÿą­ą¬•ą­€ - ą¬²ą­‹ą¬‰ą¬øą¬­ą¬æą¬²ą­ą¬²ą¬¾ ą¬•ą­ą¬·ą­‡ą¬¤ą­ą¬°" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "ଆମେରିକା/ą¬•ą­‡ą¬£ą­ą¬Ÿą­ą¬•ą­€/ą¬®ą­‹ą¬£ą­ą¬Ÿą¬æą¬•ą¬²ą­‡" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ą­€ ସମୟ - ą¬•ą­‡ą¬£ą­ą¬Ÿą­ą¬•ą­€ - ୱେନ ą¬•ą¬¾ą¬‰ą¬£ą­ą¬Ÿą­€" #: timezones.h:256 msgid "America/Knox_IN" msgstr "ଆମେରିକା/ą¬Øą¬•ą­ą¬øą¬‡ą¬Ø" #: timezones.h:257 msgid "America/La_Paz" msgstr "ଆମେରିକା/ଲା_ପାଜ" #: timezones.h:258 msgid "America/Lima" msgstr "ଆମେରିକା/ଲିମା" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "ଆମେରିକା/ଲୋସ_ą¬ą¬Øą­ą¬œą­‡ą¬²ą¬ø" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "ą¬øą­ą¬„ą¬æą¬° ସମୟ" #: timezones.h:262 msgid "America/Louisville" msgstr "ଆମେରିକା/ଲୁଈବିଲ" #: timezones.h:263 msgid "America/Maceio" msgstr "ଆମେରିକା/ą¬®ą­ˆą¬øą¬æą­Ÿą­‹" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "ଆଲାଗାଓସ, ą¬øą¬°ą­ą¬œą¬æą¬Ŗ" #: timezones.h:266 msgid "America/Managua" msgstr "ଆମେରିକା/ମେନେଗୁଆ" #: timezones.h:267 msgid "America/Manaus" msgstr "ଆମେରିକା/ମୈନାସ" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ ą¬†ą¬®ą¬¾ą¬œą­‹ą¬Øą¬ø" #: timezones.h:270 msgid "America/Marigot" msgstr "ଆମେରିକା/ą¬®ą­‡ą¬°ą¬æą¬—ą¬Ÿą­" #: timezones.h:271 msgid "America/Martinique" msgstr "ଆମେରିକା/ą¬®ą­‹ą¬°ą¬Ÿą¬æą¬Øą¬æą¬•" #: timezones.h:272 msgid "America/Matamoros" msgstr "ଆମେରିକା/ą¬®ą­‡ą¬Ÿą¬¾ą¬®ą­‹ą¬°ą­‹ą¬ø" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "US ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ସମୟ - କୋହୁଲା, ą¬¦ą­ą¬°ą¬¾ą¬™ą­ą¬—ą­‹, ą¬Øą­ą¬Æą­ą¬­ą­‹ ଲିଓନ, US ସୀମା ą¬Øą¬æą¬•ą¬Ÿą¬¬ą¬°ą­ą¬¤ą­ą¬¤ą­€ ତାମାଓଲିପାସ" #: timezones.h:275 msgid "America/Mazatlan" msgstr "ଆମେରିକା/ą¬®ą­‡ą¬œą­‡ą¬Ÿą¬²ą­‡ą¬Ø" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "ą¬Ŗą¬°ą­ą¬¬ą¬¤ą­€ą­Ÿ ସମୟ - ą¬¦ą¬•ą­ą¬·ą¬æą¬£ ବାଜା, ନାୟାରିତ, ସିନାଲୋଆ" #: timezones.h:278 msgid "America/Mendoza" msgstr "ଆମେରିକା/ą¬®ą­‡ą¬Øą¬”ą­‹ą¬œą¬¾" #: timezones.h:279 msgid "America/Menominee" msgstr "ଆମେରିକା/ମେନୋମିନୀ" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ସମୟ - ą¬®ą¬æą¬šą­€ą¬—ą¬¾ą¬Ø - ଔିକିସୋନ, ଗୋଗେବିକ, ଆଇରୋନ ą¬ą¬¬ą¬‚ ମେନୋମିନୀ ą¬•ą¬¾ą¬‰ą¬£ą­ą¬Ÿą¬æą¬œ" #: timezones.h:282 msgid "America/Merida" msgstr "ଆମେରିକା/ମେରୀଔା" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ସମୟ - ą¬•ą¬¾ą¬®ą¬Ŗą­ˆą¬œ, ą­Ÿą­ą¬•ą¬¾ą¬Ÿą¬Ø" #: timezones.h:285 msgid "America/Mexico_City" msgstr "ଆମେରିକା/ą¬®ą­‡ą¬•ą­ą¬øą¬æą¬•ą­‹_ସହର" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ସମୟ - ଅଧିକାଂଶ ą¬…ą¬žą­ą¬šą¬³" #: timezones.h:288 msgid "America/Miquelon" msgstr "ଆମେରିକା/ą¬®ą¬æą¬•ą­ą¬²ą­‹ą¬Ø" #: timezones.h:289 msgid "America/Moncton" msgstr "ଆମେରିକା/ą¬®ą­‹ą¬™ą­ą¬•ą¬Ÿą­‹ą¬Ø" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "ą¬†ą¬Ÿą¬²ą¬¾ą¬£ą­ą¬Ÿą¬æą¬• ସମୟ - ନୂତନ ą¬¬ą­ą¬°ą­ą¬Øą¬øą­ą¬¬ą¬æą¬•" #: timezones.h:292 msgid "America/Monterrey" msgstr "ଆମେରିକା/ą¬®ą¬¾ą¬£ą­ą¬Ÿą­‹ą¬°ą­€" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" "ą¬®ą­‡ą¬•ą­ą¬øą¬æą¬•ą¬¾ą¬Ø ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ସମୟ - କୋହୁଲା, ą¬¦ą­ą¬°ą¬¾ą¬™ą­ą¬—ą­‹, ą¬Øą­ą¬Æą­ą¬­ą­‹ ଲିଓନ, US ସୀମା ą¬¦ą­‚ą¬°ą¬¬ą¬°ą­ą¬¤ą­ą¬¤ą­€ ତାମାଓଲିପାସ" #: timezones.h:295 msgid "America/Montevideo" msgstr "ଆମେରିକା/ą¬®ą¬¾ą¬£ą­ą¬Ÿą­‡ą¬­ą¬æą¬”ą¬æą¬“" #: timezones.h:296 msgid "America/Montreal" msgstr "ଆମେରିକା/ą¬®ą¬¾ą¬£ą­ą¬Ÿą­‡ą­Ÿą¬²" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ą­€ ସମୟ - ą¬•ą­ą¬Æą­ą¬¬ą­‡ą¬• - ଅଧିକାଂଶ ą¬…ą¬žą­ą¬šą¬³" #: timezones.h:299 msgid "America/Montserrat" msgstr "ଆମେରିକା/ą¬®ą¬¾ą¬£ą­ą¬Ÿą­‡ą¬øą­‡ą¬°ą¬¾ą¬Ÿ" #: timezones.h:300 msgid "America/Nassau" msgstr "ଆମେରିକା/ନସୋ" #: timezones.h:301 msgid "America/New_York" msgstr "ଆମେରିକା/ą¬Øą­ą¬Æą­_ą­Ÿą¬°ą­ą¬•" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ą­€ ସମୟ" #: timezones.h:304 msgid "America/Nipigon" msgstr "ଆମେରିକା/ନିପୀଗନ" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ą­€ ସମୟ - ą¬“ą¬£ą­ą¬Ÿą¬¾ą¬°ą¬æą­Ÿą­‹ ą¬ą¬¬ą¬‚ ą¬•ą­ą¬Æą­ą¬¬ą­‡ą¬• - ą¬…ą¬žą­ą¬šą¬³ ଯେଉଁ ଗୁଔିକ DST 1967-1973 କୁ ą¬¦ą­‡ą¬–ą¬Øą­ą¬¤ą¬æ ନାହିଁ" #: timezones.h:307 msgid "America/Nome" msgstr "ଆମେରିକା/ନୋମ" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "ą¬†ą¬²ą¬¾ą¬øą­ą¬•ą¬¾ ସମୟ - ą¬Ŗą¬¶ą­ą¬šą¬æą¬® ą¬†ą¬²ą¬¾ą¬øą­ą¬•ą¬¾" #: timezones.h:310 msgid "America/Noronha" msgstr "ଆମେରିକା/ନୋରୋଂହା" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "ą¬†ą¬Ÿą¬²ą¬¾ą¬£ą­ą¬Ÿą¬æą¬• ą¬¦ą­ą¬¬ą­€ą¬Ŗ" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "ଆମେରିକା/ą¬‰ą¬¤ą­ą¬¤ą¬°_ą¬”ą¬•ą­‹ą¬Ÿą¬¾/ą¬®ą¬¦ą­ą¬¦ą­ą¬Æ" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ସମୟ - ą¬‰ą¬¤ą­ą¬¤ą¬° ą¬”ą¬¾ą¬•ą­‹ą¬Ÿą¬¾ - ଓଲିଭର ą¬•ą¬¾ą¬‰ą¬£ą­ą¬Ÿą­€" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "ଆମେରିକା/ą¬‰ą¬¤ą­ą¬¤ą¬°_ą¬”ą¬•ą­‹ą¬Ÿą¬¾/ą¬Øą­ą¬Æą­_ସାଲେମ" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ସମୟ - ą¬‰ą¬¤ą­ą¬¤ą¬° ą¬”ą¬¾ą¬•ą­‹ą¬Ÿą¬¾ - ą¬®ą­‹ą¬°ą­ą¬Ÿą­‹ą¬Ø ą¬•ą¬¾ą¬‰ą¬£ą­ą¬Ÿą­€ (ମାନଔାନ ą¬•ą­ą¬·ą­‡ą¬¤ą­ą¬° ą¬¬ą­ą¬Æą¬¤ą­€ą¬„)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "ଆମେରିକା/ą¬“ą¬œą¬æą¬Øą¬¾ą¬—ą¬¾" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "US ą¬Ŗą¬°ą­ą¬¬ą¬¤ą­€ą­Ÿ ସମୟ - US ସୀମା ą¬Øą¬æą¬•ą¬Ÿą¬¬ą¬°ą­ą¬¤ą­ą¬¤ą­€ ą¬šą­€ą¬¹ą­ą¬¬ą¬¾ą¬¹ą­ą¬¬ą¬¾" #: timezones.h:322 msgid "America/Panama" msgstr "ଆମେରିକା/ପାନାମା" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "ଆମେରିକା/ą¬Ŗą­‡ą¬™ą­ą¬—ą¬Øą­€ą¬°ą¬Ÿą¬™ą­ą¬—" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ą­€ ସମୟ - ą¬Ŗą¬¾ą¬™ą­ą¬—ą¬Øą¬æą¬°ą­ą¬Ÿą¬™ą­ą¬—, ନୁନାଭଟ" #: timezones.h:326 msgid "America/Paramaribo" msgstr "ଆମେରିକା/ପାରାମାରୀବୋ" #: timezones.h:327 msgid "America/Phoenix" msgstr "ଆମେରିକା/ą¬«ą­‹ą¬Øą¬æą¬•ą­ą¬ø" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "ą¬Ŗą¬°ą­ą¬¬ą¬¤ą­€ą­Ÿ ମାନକ ସମୟ - ą¬ą¬°ą¬æą¬œą­‹ą¬Øą¬¾" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "ଆମେରିକା/ą¬Ŗą­‹ą¬°ą­ą¬Ÿ_ଓ_ą¬Ŗą­ą¬°ą¬æą¬Øą­ą¬ø" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "ଆମେରିକା/ą¬Ŗą­‹ą¬°ą­ą¬Ÿ_ą¬ą¬•ą¬°" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "ଆମେରିକା/ą¬Ŗą­‹ą¬°ą­ą¬Ÿ_ଅଫ_ą¬øą­ą¬Ŗą­‡ą¬Ø" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "ଆମେରିକା/ą¬Ŗą­‹ą¬°ą­ą¬Ÿą­‹_ଭେଲୋ" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "ą¬°ą­‹ą¬£ą­ą¬”ą­‹ą¬Øą¬æą­Ÿą¬¾" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "ଆମେରିକା/ą¬Ŗą­ą¬Æą­ą¬°ą¬æą¬Ÿą­‹_ରିକୋ" #: timezones.h:337 msgid "America/Rainy_River" msgstr "ଆମେରିକା/ą¬°ą­ˆą¬Øą­€_ରିଭର" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ସମୟ - ରେନୀ ନଦୀ ą¬ą¬¬ą¬‚ ą¬«ą­ą¬°ą¬¾ą¬Øą­ą¬øą¬æą¬ø ą¬¦ą­ą¬°ą­ą¬—, ą¬“ą¬£ą­ą¬Ÿą¬¾ą¬°ą¬æą­Ÿą­‹" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "ଆମେରିକା/ରେନକୀନ_ą¬‡ą¬Øą¬²ą­‡ą¬Ÿ" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ସମୟ - ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ନୁନାଭଟ" #: timezones.h:343 msgid "America/Recife" msgstr "ଆମେରିକା/ରିସୀଫ" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "ą¬Ŗą¬¾ą¬°ą­ą¬Øą¬¾ą¬®ą¬¬ą­ą¬•ą­‹" #: timezones.h:346 msgid "America/Regina" msgstr "ଆମେରିକା/ą¬°ą­‡ą¬œą­€ą¬Øą¬¾" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ମାନକ ସମୟ - ą¬øą¬¾ą¬øą¬•ą¬šą­±ą¬¾ą¬Ø - ଅଧିକାଂଶ ą¬…ą¬žą­ą¬šą¬³" #: timezones.h:349 msgid "America/Resolute" msgstr "ଆମେରିକା/ą¬°ą¬æą¬œą­‹ą¬²ą­ą¬Æą­ą¬Ÿą­" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ą­€ ମାନକ ସମୟ - ą¬°ą¬æą¬œą­‹ą¬²ą­ą­Ÿą­ą¬Ÿ, ନୁନାଭୁତ" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "ଆମେରିକା/ରିଓ_ą¬¬ą­ą¬°ą¬¾ą¬™ą­ą¬•ą­‹" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "ą¬…ą¬•ą­ą¬°ą­‡" #: timezones.h:355 msgid "America/Rosario" msgstr "ଆମେରିକା/ą¬°ą­‹ą¬øą¬¾ą¬°ą¬æą­Ÿą­‹" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "ଆମେରିକା/ą¬øą­‡ą¬£ą­ą¬Ÿą¬¾_ ଇସାବେଲ" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "ą¬®ą­‡ą¬•ą­ą¬øą¬æą¬•ą¬¾ą¬Ø ą¬Ŗą­ą¬°ą¬øą¬¾ą¬Øą­ą¬¤ ମହାସାଗର ସମୟ - US ସୀମା ą¬¦ą­‚ą¬°ą¬¬ą¬°ą­ą¬¤ą­ą¬¤ ବାଜା ą¬•ą¬¾ą¬²ą¬æą¬«ą¬°ą­ą¬Øą¬æą­Ÿą¬¾" #: timezones.h:359 msgid "America/Santarem" msgstr "ଆମେରିକା/ą¬øą­‡ą¬£ą­ą¬Ÿą¬¾ą¬°ą­‡ą¬®" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "W ପାରା" #: timezones.h:362 msgid "America/Santiago" msgstr "ଆମେରିକା/ą¬øą­‡ą¬£ą­ą¬Ÿą¬æą­Ÿą¬¾ą¬—ą­‹" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "ଆମେରିକା/ą¬øą­‡ą¬£ą­ą¬Ÿą­‹_ą¬”ą­‹ą¬®ą¬æą¬™ą­ą¬—ą­‹" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "ଆମେରିକା/ସାଓ_ପୋଲୋ" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "ଦ ą¬ą¬¬ą¬‚ ଦପ ą¬¬ą­ą¬°ą¬¾ą¬œą¬æą¬² (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "ଆମେରିକା/ą¬øą­ą¬•ą­‹ą¬°ą­ą¬øą¬¬ą¬¾ą­Ÿą¬øą¬‚ą¬”" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "ą¬øą­ą¬•ą­‹ą¬°ą¬°ą­ą¬øą­ą¬¬ą¬¾ą­Ÿą¬øą¬£ą­ą¬” / ą¬‡ą¬Ÿą­ą¬Ÿą­‹ą¬–ą­‹ą¬°ą¬Ÿą­ą¬°ą¬®ą¬æą¬Ÿ" #: timezones.h:372 msgid "America/Shiprock" msgstr "ଆମେରିକା/ଶିପରୋକ" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "ą¬Ŗą¬°ą­ą¬¬ą¬¤ą­€ą­Ÿ ସମୟ - ą¬Øą¬­ą¬¾ą¬œą­‹" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "ଆମେରିକା/ą¬øą­‡ą¬‡ą¬£ą­ą¬Ÿą­_ą¬¬ą¬¾ą¬°ą­ą¬„ą­‡ą¬²ą­‡ą¬®ą­€" #: timezones.h:376 msgid "America/St_Johns" msgstr "ଆମେରିକା/ą¬øą­‡ą¬£ą­ą¬Ÿ_ą¬œą­‹ą¬Øą­ą¬ø" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "ą¬Øą­ą¬Æą­ą¬«ą¬¾ą¬‰ą¬£ą­ą¬”ą¬²ą­ą¬Æą¬¾ą¬£ą­ą¬” ସମୟ, ą¬¦ą¬•ą­ą¬·ą¬æą¬£ ą¬Ŗą­‚ą¬°ą­ą¬¬ ą¬²ą¬¾ą¬¬ą­ą¬°ą¬¾ą¬”ą­‹ą¬° ସହିତ" #: timezones.h:379 msgid "America/St_Kitts" msgstr "ଆମେରିକା/ą¬øą­‡ą¬£ą­ą¬Ÿ_ą¬•ą¬æą¬Ÿą­ą¬ø" #: timezones.h:380 msgid "America/St_Lucia" msgstr "ଆମେରିକା/ą¬øą­‡ą¬£ą­ą¬Ÿ_ଲୁସିୟା" #: timezones.h:381 msgid "America/St_Thomas" msgstr "ଆମେରିକା/ą¬øą­‡ą¬£ą­ą¬Ÿ_଄ୋମାସ" #: timezones.h:382 msgid "America/St_Vincent" msgstr "ଆମେରିକା/ą¬øą­‡ą¬£ą­ą¬Ÿ_ą¬­ą¬æą¬Øą¬øą­‡ą¬£ą­ą¬Ÿ" #: timezones.h:383 msgid "America/Swift_Current" msgstr "ଆମେରିକା/ą¬øą­ą¬¬ą¬æą¬«ą­ą¬Ÿ_ą¬•ą¬°ą­‡ą¬£ą­ą¬Ÿ" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ମାନକ ସମୟ - ą¬øą¬¾ą¬øą¬•ą¬šą­±ą¬¾ą¬Ø - ą¬®ą¬§ą­ą¬Æą¬Ŗą¬¶ą­ą¬šą¬æą¬®ą­€" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "ଆମେରିକା/ତେଗୁସୀଗାଲପା" #: timezones.h:387 msgid "America/Thule" msgstr "ଆମେରିକା/଄ୁଲେ" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "଄ୁଲେ / ą¬Ŗą¬æą¬Ÿą­ą¬«ą¬æą¬•" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "ଆମେରିକା/ą¬„ą¬£ą­ą¬”ą¬°_ବେ" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ą­€ ସମୟ - ą¬„ą¬£ą­ą¬”ą¬° ବେ, ą¬“ą¬£ą­ą¬Ÿą¬¾ą¬°ą¬æą­Ÿą­‹" #: timezones.h:393 msgid "America/Tijuana" msgstr "ଆମେରିକା/ą¬¤ą­€ą¬œą­ą¬Øą¬¾" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "US ą¬Ŗą­ą¬°ą¬øą¬¾ą¬Øą­ą¬¤ ମହାସାଗର ସମୟ - US ସୀମା ą¬Øą¬æą¬•ą¬Ÿą¬¬ą¬°ą­ą¬¤ą­ą¬¤ą­€ ବାଜା ą¬•ą¬¾ą¬²ą¬æą¬«ą¬°ą­ą¬Øą¬æą­Ÿą¬¾" #: timezones.h:396 msgid "America/Toronto" msgstr "ଆମେରିକା/ą¬Ÿą­‹ą¬°ą­‹ą¬£ą­ą¬Ÿą­‹" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ą­€ ସମୟ - ą¬“ą¬£ą­ą¬Ÿą¬¾ą¬°ą¬æą­Ÿą­‹ - ଅଧିକାଂଶ ą¬…ą¬žą­ą¬šą¬³" #: timezones.h:399 msgid "America/Tortola" msgstr "ଆମେରିକା/ą¬Ÿą­‹ą¬°ą­ą¬Ÿą­‹ą¬²ą¬¾" #: timezones.h:400 msgid "America/Vancouver" msgstr "ଆମେରିକା/ą¬­ą¬¾ą¬™ą­ą¬•ą­‹ą¬¬ą­‡ą¬°" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "ą¬Ŗą­ą¬°ą¬¶ą¬¾ą¬Øą­ą¬¤ ସମୟ - ą¬Ŗą¬¶ą­ą¬šą¬æą¬® ą¬¬ą­ą¬°ą¬æą¬Ÿą­€ą¬¶ ą¬•ą­‹ą¬²ą¬®ą­ą¬¬ą¬æą­Ÿą¬¾" #: timezones.h:403 msgid "America/Virgin" msgstr "ଆମେରିକା/ą¬­ą¬°ą­ą¬œą¬æą¬Ø" #: timezones.h:404 msgid "America/Whitehorse" msgstr "ଆମେରିକା/ą¬¹ą­ą¬¬ą¬¾ą¬‡ą¬Ÿą¬¹ą­‹ą¬°ą­ą¬ø" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "ą¬Ŗą­ą¬°ą¬¶ą¬¾ą¬Øą­ą¬¤ ସମୟ - ą¬¦ą¬•ą­ą¬·ą¬æą¬£ ą­Ÿą­ą¬•ą­‹ą¬Ø" #: timezones.h:407 msgid "America/Winnipeg" msgstr "ଆମେରିକା/ୱିନୀପେଗ" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ସମୟ - ą¬®ą­‡ą¬Øą¬æą¬Ÿą­‹ą¬¬ą¬¾ ą¬ą¬¬ą¬‚ ą¬Ŗą¬¶ą­ą¬šą¬æą¬® ą¬“ą¬£ą­ą¬Ÿą¬¾ą¬°ą¬æą­Ÿą­‹" #: timezones.h:410 msgid "America/Yakutat" msgstr "ଆମେରିକା/ą­Ÿą¬•ą­ą¬Ÿą­‡ą¬Ÿ" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "ą¬†ą¬²ą¬¾ą¬øą­ą¬•ą¬¾ ସମୟ - ą¬†ą¬²ą¬¾ą¬øą­ą¬•ą¬¾ ą¬Ŗą¬¾ą¬Øą¬¹ą­ą¬Æą¬¾ą¬£ą­ą¬”ą­‡ą¬² ନେକ" #: timezones.h:413 msgid "America/Yellowknife" msgstr "ଆମେରିକା/ą­Ÿą¬²ą­‹ą¬Øą¬¾ą¬‡ą¬«" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "ą¬Ŗą¬°ą­ą¬¬ą¬¤ą­€ą­Ÿ ସମୟ - ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ą¬‰ą¬¤ą­ą¬¤ą¬°ą¬Ŗą¬¶ą­ą¬šą¬æą¬®ą­€ ą¬Ŗą­ą¬°ą¬¦ą­‡ą¬¶" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "ą¬†ą¬£ą­ą¬Ÿą¬¾ą¬°ą­ą¬•ą¬Ÿą¬æą¬•ą¬¾/କେସେ" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "କାସେ ą¬·ą­ą¬Ÿą­‡ą¬øą¬Ø, ବୈଲି ą¬Ŗą­‡ą¬Øą¬æą¬žą­ą¬œą­ą¬²ą¬¾" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "ą¬†ą¬£ą­ą¬Ÿą¬¾ą¬°ą­ą¬•ą¬Ÿą¬æą¬•ą¬¾/ଔେଭିସ" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "ଔେଭିସ ą¬·ą­ą¬Ÿą­‡ą¬øą¬Ø, ą¬­ą­‡ą¬·ą­ą¬Ÿą¬«ą­‹ą¬²ą­ą¬” ą¬Ŗą¬°ą­ą¬¬ą¬¤ą¬®ą¬¾ą¬³ą¬¾" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "ą¬†ą¬£ą­ą¬Ÿą¬¾ą¬°ą­ą¬•ą¬Ÿą¬æą¬•ą¬¾/ą¬”ą­‚ą¬®ą¬¾ą¬£ą­ą¬Ÿą¬”ą¬°ą¬¬ą¬æą¬²" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "ą¬”ą­ą¬Æą­ą¬®ą­‹ą¬£ą­ą¬Ÿ-ଔି'ą¬†ą¬°ą¬­ą¬æą¬²ą­ą¬²ą­‡ ଆଧାର, ą¬Ÿą­‡ą¬°ą­‡ ą¬ą¬”ą¬æą¬²ą­€" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "ą¬†ą¬£ą­ą¬Ÿą¬¾ą¬°ą­ą¬•ą¬Ÿą¬æą¬•ą¬¾/ą¬®ą­‡ą¬•ą­ą­Ÿą­ą¬°ą­€" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "ą¬®ą­‡ą¬•ą­ą­Ÿą­ą¬°ą­€ ą¬¦ą­ą­±ą­€ą¬Ŗ ą¬·ą­ą¬Ÿą­‡ą¬øą¬Ø, ą¬®ą­‡ą¬•ą­ą­Ÿą­ą¬°ą­€ ą¬¦ą­ą­±ą­€ą¬Ŗ" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "ą¬†ą¬£ą­ą¬Ÿą¬¾ą¬°ą­ą¬•ą¬Ÿą¬æą¬•ą¬¾/ମୋସନ" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "ମାଓସନ ą¬·ą­ą¬Ÿą­‡ą¬®ą¬Ø, ହୋମ ବେ" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "ą¬†ą¬£ą­ą¬Ÿą¬¾ą¬°ą­ą¬•ą¬Ÿą¬æą¬•ą¬¾/ମେକମୁରଔୋ" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "ମେକମୁରଔୋ ą¬·ą­ą¬Ÿą­‡ą¬øą¬Ø, ରୋସ ą¬¦ą­ą¬¬ą­€ą¬Ŗ" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "ą¬†ą¬£ą­ą¬Ÿą¬¾ą¬°ą­ą¬•ą¬Ÿą¬æą¬•ą¬¾/ପାମର" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "ପାମର ą¬·ą­ą¬Ÿą­‡ą¬øą¬Ø, ą¬†ą¬Øą¬­ą¬°ą­ą¬ø ą¬¦ą­ą¬¬ą­€ą¬Ŗ" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "ą¬†ą¬£ą­ą¬Ÿą¬¾ą¬°ą­ą¬•ą¬Ÿą¬æą¬•ą¬¾/ą¬°ą­‹ą¬„ą­‡ą¬°ą¬æą­Ÿą¬¾" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "ରୋ଄େରା ą¬·ą­ą¬Ÿą­‡ą¬øą¬Ø, ą¬ą¬”ą¬æą¬²ą­‡ą¬” ą¬¦ą­ą¬¬ą­€ą¬Ŗ" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "ą¬†ą¬£ą­ą¬Ÿą¬¾ą¬°ą­ą¬•ą¬Ÿą¬æą¬•ą¬¾/ସାଉ଄_ପୋଲ" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "ą¬†ą¬®ą­ą¬£ą­ą¬”ą¬øą­‡ą¬Ø-ą¬øą­ą¬•ą¬Ÿ ą¬·ą­ą¬Ÿą­‡ą¬øą¬Ø, କୁମେରୁ" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "ą¬†ą¬£ą­ą¬Ÿą¬¾ą¬°ą­ą¬•ą¬Ÿą¬æą¬•ą¬¾/ą¬øą­ą¬Æą­‹ą­±ą¬¾" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "ą¬øą­ą¬Æą­‹ą­±ą¬¾ ą¬·ą­ą¬Ÿą­‡ą¬øą¬Ø, ଇ ą¬“ą¬™ą­ą¬—ą­ą¬² ଆଇ" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "ą¬†ą¬£ą­ą¬Ÿą¬¾ą¬°ą­ą¬•ą¬Ÿą¬æą¬•ą¬¾/ą¬¬ą­‹ą¬øą­ą¬¤ą­‹ą¬•" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "ą¬­ą­‹ą¬·ą­ą¬Ÿą­‹ą¬• ą¬·ą­ą¬Ÿą­‡ą¬øą¬Ø, ଦ ą¬šą­ą¬®ą­ą¬¬ą¬•ą­€ą­Ÿ ମେରୁ" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "ą¬†ą¬°ą­ą¬•ą¬Ÿą¬æą¬•/ą¬²ą¬™ą­ą¬—ą¬ˆą­Ÿą¬°ą¬¬ą­ą¬Æą­‡ą¬Ø" #: timezones.h:450 msgid "Asia/Aden" msgstr "ą¬ą¬øą¬æą¬†/ą¬ą¬”ą­‡ą¬Ø" #: timezones.h:451 msgid "Asia/Almaty" msgstr "ą¬ą¬øą¬æą¬†/ą¬…ą¬²ą¬®ą¬Ÿą­€" #: timezones.h:454 msgid "Asia/Amman" msgstr "ą¬ą¬øą¬æą¬†/ą¬…ą¬®ą­ą¬®ą¬¾ą¬Ø" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "ą¬ą¬øą¬æą¬†/ଅନାଔିର" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "ą¬®ą­‹ą¬øą­ą¬•ą­‹+08 - ą¬¬ą­‡ą¬°ą¬æą¬™ą­ą¬— ą¬øą¬®ą­ą¬¦ą­ą¬°" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "ą¬ą¬øą¬æą¬†/ą¬ą¬•ą¬¤ą­‹" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "ą¬…ą¬Ÿą­ą¬Æą¬æą¬°ą¬¾ą¬“ (ą¬…ą¬Ÿą¬æą¬°ą¬¾ą¬“, ą¬—ą­ą¬°ą­Ÿą­‡ą¬¬), ą¬®ą¬¾ą¬™ą­ą¬˜ą¬æą¬øą­ą¬¤ą¬¾ą¬“ (ą¬®ą¬¾ą¬™ą­ą¬•ą¬æą¬øą­ą¬¤ą¬¾ą¬“)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "ą¬ą¬øą¬æą¬†/ଅକତୂବ" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "ą¬…ą¬•ą­ą¬Ÿą­‹ą¬¬ (ą¬…ą¬•ą­ą¬Ÿą­‹ą¬¬)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "ą¬ą¬øą¬æą¬†/ą¬…ą¬¶ą¬—ą¬¾ą¬¬ą¬Ÿ" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "ą¬ą¬øą¬æą¬†/ą¬…ą¬øą­ą¬–ą¬¾ą¬¬ą¬¾ą¬¦" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "ą¬ą¬øą¬æą¬†/ବାଗଦାଦ" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "ą¬ą¬øą¬æą¬†/ବାହରୀନ" #: timezones.h:468 msgid "Asia/Baku" msgstr "ą¬ą¬øą¬æą¬†/ବାକୂ" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "ą¬ą¬øą¬æą¬†/ą¬¬ą­‡ą¬™ą­ą¬—ą¬•ą­‹ą¬•" #: timezones.h:470 msgid "Asia/Beirut" msgstr "ą¬ą¬øą¬æą¬†/ą¬¬ą­‡ą¬°ą­ą¬Ÿ" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "ą¬ą¬øą¬æą¬†/ବିଶକେକ" #: timezones.h:472 msgid "Asia/Brunei" msgstr "ą¬ą¬øą¬æą¬†/ą¬¬ą­ą¬°ą­ą¬Øą­‡ą¬ˆ" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "ą¬ą¬øą¬æą¬†/କୋଲକାତା" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "ą¬ą¬øą¬æą¬†/ą¬›ą­‹ą¬ˆą¬¬ą¬²ą¬øą¬Ø" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "ଔୋରନୋଔ, ସୁଖବାତର" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "ą¬ą¬øą¬æą¬†/ą¬šą¬¾ą¬™ą­ą¬—ą¬•ą¬æą¬™ą­ą¬—" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ą¬šą­€ą¬Ø - ą¬øą¬æą¬šą­ą¬†ą¬Ø, ୟୁନାନ, ą¬—ą­ą¬†ą¬™ą­ą¬—ą¬•ą­ą¬øą¬æ, ą¬¶ą¬¾ą¬Øą¬•ą­ą¬øą¬æ, ą¬—ą­ą¬‡ą¬ą­Œ, ą¬‡ą¬¤ą­ą¬Æą¬¾ą¬¦ą¬æą„¤" #: timezones.h:480 msgid "Asia/Chungking" msgstr "ą¬ą¬øą¬æą¬†/ą¬šą­ą¬™ą­ą¬—ą¬•ą¬æą¬™ą­ą¬—" #: timezones.h:481 msgid "Asia/Colombo" msgstr "ą¬ą¬øą¬æą¬†/ą¬•ą­‹ą¬²ą­‹ą¬®ą­ą¬¬ą­‹" #: timezones.h:482 msgid "Asia/Dacca" msgstr "ą¬ą¬øą¬æą¬†/ą¬”ą¬•ą­ą¬•ą¬¾" #: timezones.h:483 msgid "Asia/Damascus" msgstr "ą¬ą¬øą¬æą¬†/ą¬”ą¬®ą¬øą­ą¬•ą¬ø" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "ą¬ą¬øą¬æą¬†/ଢାକା" #: timezones.h:485 msgid "Asia/Dili" msgstr "ą¬ą¬øą¬æą¬†/ą¬¦ą¬æą¬²ą­ą¬²ą­€" #: timezones.h:486 msgid "Asia/Dubai" msgstr "ą¬ą¬øą¬æą¬†/ଦୁବାଈ" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "ą¬ą¬øą¬æą¬†/ଦୁସାନବେ" #: timezones.h:488 msgid "Asia/Gaza" msgstr "ą¬ą¬øą¬æą¬†/ą¬—ą¬¾ą¬œą¬¾" #: timezones.h:489 msgid "Asia/Harbin" msgstr "ą¬ą¬øą¬æą¬†/ହରବୀନ" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "ą¬¹ą­‡ą¬²ą­‹ą¬™ą­ą¬—ą¬œą¬æą¬†ą¬™ą­ą¬— (ମୋହେ ą¬¬ą­ą¬Æą¬¤ą­€ą¬„), ଜିଲିନ" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "ą¬ą¬øą¬æą¬†/ହୋ_ଚି_ମିନ" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "ą¬ą¬øą¬æą¬†/ą¬¹ą¬™ą­ą¬—ą¬•ą¬™ą­ą¬—" #: timezones.h:494 msgid "Asia/Hovd" msgstr "ą¬ą¬øą¬æą¬†/ହାବଔ" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "ବାୟନ-ą¬“ą¬²ą¬œą­€, ଗୋଭି-ଆଲତାଇ, ą¬¹ą­‹ą¬¬ą­ą¬”, ą­Ÿą­ą¬¬ą­ą¬ø, ą¬œą¬¾ą¬­ą¬–ą¬Ø" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "ą¬ą¬øą¬æą¬†/ą¬‡ą¬°ą¬•ą­ą¬Ÿą­ą¬øą­ą¬•" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "ą¬®ą­‹ą¬øą­ą¬•ą­‹+05 - ą¬¬ą­ˆą¬•ą¬¾ą¬² ନଦୀ" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "ą¬ą¬øą¬æą¬†/ą¬‡ą¬øą­ą¬¤ą¬¾ą¬Øą¬¬ą­ą¬²" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "ą¬ą¬øą¬æą¬†/ą¬œą¬¾ą¬•ą¬°ą­ą¬¤ą¬¾" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "ଜାଭା ą¬ą¬¬ą¬‚ ą¬øą­ą¬®ą¬¾ą¬¤ą­ą¬°ą¬¾" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "ą¬ą¬øą¬æą¬†/ଜୟପୁରା" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "ą¬†ą¬‡ą¬°ą¬æą­Ÿą¬¾ą¬Ø ଜାୟା ą¬ą¬¬ą¬‚ ମୋଲୁକାସ" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "ą¬ą¬øą¬æą¬†/ą¬œą­‡ą¬°ą­ą¬œą­‡ą¬²ą¬®" #: timezones.h:508 msgid "Asia/Kabul" msgstr "ą¬ą¬øą¬æą¬†/କାବୂଲ" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "ą¬ą¬øą¬æą¬†/ą¬•ą¬¾ą¬®ą¬šą¬Ÿą¬•ą¬¾" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "ą¬®ą­‹ą¬øą­ą¬•ą­‹+08 - ą¬•ą¬¾ą¬®ą¬šą¬Ÿą¬•ą¬¾" #: timezones.h:512 msgid "Asia/Karachi" msgstr "ą¬ą¬øą¬æą¬†/ą¬•ą¬°ą¬¾ą¬šą­€" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "ą¬ą¬øą¬æą¬†/କେଶଗର" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "ą¬¤ą¬æą¬¬ą­ą¬¬ą¬¤ ą¬ą¬¬ą¬‚ ą¬œą¬æą¬Øą¬œą¬æą­Ÿą¬¾ą¬™ą­ą¬— ą­Ÿą­ą¬—ą­‹ą¬¹ą¬° ର ଅଧିକାଂଶ ą¬…ą¬žą­ą¬šą¬³" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "ą¬ą¬øą¬æą¬†/ą¬•ą¬¾ą¬ ą¬®ą¬¾ą¬£ą­ą¬”ą­" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "ą¬ą¬øą¬æą¬†/ą¬•ą¬¾ą¬ ą¬®ą¬¾ą¬£ą­ą¬”ą­" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "ą¬ą¬øą¬æą¬†/କଲିକତା" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "ą¬ą¬øą¬æą¬†/ą¬•ą­ą¬°ą¬øą­ą¬Øą­‹ą­Ÿą¬¾ą¬øą­ą¬•" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "ą¬®ą­‹ą¬øą­ą¬•ą­‹+04 - ą­Ÿą­‡ą¬Øą¬æą¬øą­€ ନଦୀ" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "ą¬ą¬øą¬æą¬†/ą¬•ą­ą¬¬ą¬¾ą¬²ą¬¾ą¬²ą¬¾ą¬®ą¬Ŗą­ą¬°" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "ą¬®ą¬²ą­‡ą¬¶ą¬æą­Ÿą¬¾ ą¬‰ą¬Ŗą¬¦ą­ą¬¬ą­€ą¬Ŗ" #: timezones.h:525 msgid "Asia/Kuching" msgstr "ą¬ą¬øą¬æą¬†/ą¬•ą­ą¬šą¬æą¬™ą­ą¬—" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "ସାବାହ ą¬ą¬¬ą¬‚ ସାରୱାକ" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "ą¬ą¬øą¬æą¬†/ą¬•ą­ą¬ą¬¤" #: timezones.h:529 msgid "Asia/Macao" msgstr "ą¬ą¬øą¬æą¬†/ମକାଓ" #: timezones.h:530 msgid "Asia/Macau" msgstr "ą¬ą¬øą¬æą¬†/ମକାଉ" #: timezones.h:531 msgid "Asia/Magadan" msgstr "ą¬ą¬øą¬æą¬†/ମଗାଦନ" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "ą¬®ą­‹ą¬øą­ą¬•ą­‹+08 - ମାଗାଦନ" #: timezones.h:534 msgid "Asia/Makassar" msgstr "ą¬ą¬øą¬æą¬†/ą¬®ą¬•ą¬øą­ą¬øą¬°" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ ą¬ą¬¬ą¬‚ ą¬¦ą¬•ą­ą¬·ą¬æą¬£ ą¬¬ą­‹ą¬°ą­ą¬Øą¬æą­Ÿą­‹, ସେଲେବିସ, ବାଲି, ନୁସା ତେନଗେରା, ą¬Ŗą¬¶ą­ą¬šą¬æą¬® ą¬Ÿą¬æą¬®ą­‹ą¬°" #: timezones.h:537 msgid "Asia/Manila" msgstr "ą¬ą¬øą¬æą¬†/ମନୀଲା" #: timezones.h:538 msgid "Asia/Muscat" msgstr "ą¬ą¬øą¬æą¬†/ą¬®ą¬¾ą¬øą­ą¬•ą¬Ÿ" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "ą¬ą¬øą¬æą¬†/ą¬Øą¬æą¬•ą­‹ą¬øą¬æą­Ÿą¬¾" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "ą¬ą¬øą¬æą¬†/ą¬Øą­‹ą¬­ą­‹ą¬•ą­ą¬Øą­‡ą¬š" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "ą¬®ą­‹ą¬øą­ą¬•ą­‹+03 - ą¬Øą­‹ą¬­ą­‹ą¬•ą­ą¬Øą­‡ą¬š" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "ą¬ą¬øą¬æą¬†/ą¬Øą­‹ą¬­ą­‹ą¬øą¬æą¬¬ą­ą¬°ą¬æą¬øą­ą¬•" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "ą¬®ą­‹ą¬øą­ą¬•ą­‹+03 - ą¬Øą­‹ą¬­ą­‹ą¬øą¬æą¬¬ą­ą¬°ą¬æą¬øą­ą¬•" #: timezones.h:546 msgid "Asia/Omsk" msgstr "ą¬ą¬øą¬æą¬†/ą¬“ą¬®ą¬øą­ą¬•" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "ą¬®ą­‹ą¬øą­ą¬•ą­‹+03 - ą¬Ŗą¬¶ą­ą¬šą¬æą¬® ą¬øą¬¾ą¬‡ą¬¬ą­‡ą¬°ą¬æą­Ÿą¬¾" #: timezones.h:549 msgid "Asia/Oral" msgstr "ą¬ą¬øą¬æą¬†/ଓରାଲ" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "ą¬Ŗą¬¶ą­ą¬šą¬æą¬® ą¬•ą¬¾ą¬œą¬¾ą¬–ą¬øą­ą¬¤ą¬¾ą¬Ø" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "ą¬ą¬øą¬æą¬†/ନୋମ_ą¬Ŗą­‡ą¬Øą­ą¬¹" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "ą¬ą¬øą¬æą¬†/ą¬Ŗą­‹ą¬£ą­ą¬Ÿą¬æą­Ÿą¬¾ą¬Øą¬•" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "ą¬Ŗą¬¶ą­ą¬šą¬æą¬® ą¬ą¬¬ą¬‚ ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬° ą¬¬ą­‹ą¬°ą­ą¬Øą¬æą­Ÿą­‹" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "ą¬ą¬øą¬æą¬†/ą¬Ŗą­ą¬Æą­‹ą¬™ą­ą¬—ą­Ÿą¬¾ą¬™ą­ą¬—" #: timezones.h:557 msgid "Asia/Qatar" msgstr "ą¬ą¬øą¬æą¬†/କାତର" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "ą¬ą¬øą¬æą¬†/ą¬•ą­ˆą¬œą­€ą¬²ą­‹ą¬°ą¬”ą¬¾" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "ą¬–ą¬æą¬œą¬æą¬²ą­‹ą¬°ą¬”ą¬¾ (ą¬•ą¬æą¬œą¬æą¬²ą­‹ą¬°ą¬”ą¬¾, ą¬•ą¬æą¬œą¬æą¬²-ଓରଔା)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "ą¬ą¬øą¬æą¬†/ą¬°ą­‡ą¬™ą­ą¬—ą­ą¬Ø" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "ą¬ą¬øą¬æą¬†/ରିୟାଦ" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "ą¬ą¬øą¬æą¬†/ରିୟାଦ87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "ą¬ą¬øą¬æą¬†/ରିୟାଦ88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "ą¬ą¬øą¬æą¬†/ରିୟାଦ89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "ą¬ą¬øą¬æą¬†/ą¬¶ą­ˆą¬—ą­‹ą¬Ø" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "ą¬ą¬øą¬æą¬†/ସାଖାଲୀନ" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "ą¬®ą­‹ą¬øą­ą¬•ą­‹+07 - ସାଖାଲିନ ą¬¦ą­ą¬¬ą­€ą¬Ŗ" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "ą¬ą¬øą¬æą¬†/ą¬øą¬®ą¬°ą¬•ą¬£ą­ą¬”" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "ą¬Ŗą¬¶ą­ą¬šą¬æą¬® ą¬‰ą¬œą¬¬ą­‡ą¬•ą¬æą¬øą­ą¬¤ą¬¾ą¬Ø" #: timezones.h:573 msgid "Asia/Seoul" msgstr "ą¬ą¬øą¬æą¬†/ą¬øą¬æą­Ÿą­‹ą¬²" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "ą¬ą¬øą¬æą¬†/ą¬øą¬¾ą¬™ą­ą¬˜ą¬¾ą¬ˆ" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ ą¬šą­€ą¬Ø - ą¬¬ą­‡ą¬œą¬æą¬™ą­ą¬—, ą¬—ą­ą¬†ą¬™ą­ą¬—ą¬”ą­‹ą¬™ą­ą¬—, ą¬øą¬¾ą¬™ą­ą¬˜ą¬¾ą¬ˆ, ą¬‡ą¬¤ą­ą¬Æą¬¾ą¬¦ą¬æą„¤" #: timezones.h:577 msgid "Asia/Singapore" msgstr "ą¬ą¬øą¬æą¬†/ą¬øą¬æą¬™ą­ą¬—ą¬¾ą¬Ŗą­ą¬°" #: timezones.h:578 msgid "Asia/Taipei" msgstr "ą¬ą¬øą¬æą¬†/ą¬¤ą¬¾ą¬ˆą¬Ŗą­‡ą¬‡" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "ą¬ą¬øą¬æą¬†/ą¬¤ą¬¾ą¬¶ą¬•ą­‡ą¬‚ą¬Ÿ" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "ą¬Ŗą­‚ą¬°ą­ą¬¬ ą¬‰ą¬œą¬¬ą­‡ą¬•ą¬æą¬øą­ą¬¤ą¬¾ą¬Ø" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "ą¬ą¬øą¬æą¬†/ତବୀଲିସୀ" #: timezones.h:583 msgid "Asia/Tehran" msgstr "ą¬ą¬øą¬æą¬†/ତେହରାନ" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "ą¬ą¬øą¬æą¬†/ତେଲ_ଅଭିବ" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "ą¬ą¬øą¬æą¬†/଄ିମବୁ" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "ą¬ą¬øą¬æą¬†/ą¬„ą¬æą¬®ą­ą¬Ŗą­" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "ą¬ą¬øą¬æą¬†/ą¬Ÿą­‹ą¬•ą¬æą­Ÿą­‹" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "ą¬ą¬øą¬æą¬†/ą¬Šą¬œą­ą¬™ą­ą¬—_ą¬Ŗą¬Øą­ą¬¦ą¬¾ą¬™ą­ą¬—" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "ą¬ą¬øą¬æą¬†/ଉଲାନବାତର" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "ą¬ą¬øą¬æą¬†/ଉଲାନ_ବାତୋର" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "ą¬ą¬øą¬æą¬†/ଉଋମକୀ" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "ą¬¤ą¬æą¬¬ą­ą¬¬ą¬¤ ą¬ą¬¬ą¬‚ ą¬œą¬æą¬Øą¬œą¬æą­Ÿą¬¾ą¬™ą­ą¬— ର ଅଧିକାଂଶ ą¬…ą¬žą­ą¬šą¬³" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "ą¬ą¬øą¬æą¬†/ą¬­ą­‡ą¬Ÿą­€ą­Ÿą­‡ą¬Ø" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "ą¬ą¬øą¬æą¬†/ą¬­ą­ą¬²ą¬¾ą¬”ą¬æą¬¬ą¬¾ą¬·ą­ą¬Ÿą¬•" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "ą¬®ą­‹ą¬øą­ą¬•ą­‹+07 - ଅମୁର ନଦୀ" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "ą¬ą¬øą¬æą¬†/ą­Ÿą¬•ą­ą¬Ÿą¬øą­ą¬•" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "ą¬®ą­‹ą¬øą­ą¬•ą­‹+06 - ଲୀନା ନଦୀ" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "ą¬ą¬øą¬æą¬†/ą­Ÿą­‡ą¬•ą¬¾ą¬¤ą¬°ą­€ą¬Øą¬¬ą¬°ą­ą¬—" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "ą¬®ą­‹ą¬øą­ą¬•ą­‹+02 - ୟୁରାଲ" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "ą¬ą¬øą¬æą¬†/ą­Ÿą­‡ą¬°ą­€ą¬­ą¬¾ą¬Ø" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "ą¬†ą¬Ÿą¬²ą¬¾ą¬£ą­ą¬Ÿą¬æą¬•/ą¬…ą¬œą­‹ą¬°ą­ą¬ø" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "ą¬†ą¬œą­‹ą¬°ą¬ø" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "ą¬†ą¬Ÿą¬²ą¬¾ą¬£ą­ą¬Ÿą¬æą¬•/ą¬¬ą¬°ą­ą¬®ą­ą¬”ą¬¾" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "ą¬†ą¬Ÿą¬²ą¬¾ą¬£ą­ą¬Ÿą¬æą¬•/ą¬•ą­ˆą¬Øą­‡ą¬°ą­€" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "କାନାରୀ ą¬¦ą­ą¬¬ą­€ą¬Ŗ" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "ą¬†ą¬Ÿą¬²ą¬¾ą¬£ą­ą¬Ÿą¬æą¬•/କେପ_ą¬­ą¬°ą­ą¬¦ą­‡" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "ą¬†ą¬Ÿą¬²ą¬¾ą¬£ą­ą¬Ÿą¬æą¬•/ą¬«ą­ˆą¬°ą­‹" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "ą¬†ą¬Ÿą¬²ą¬¾ą¬£ą­ą¬Ÿą¬æą¬•/ଫେରୋ" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "ą¬†ą¬Ÿą¬²ą¬¾ą¬£ą­ą¬Ÿą¬æą¬•/ଜାନ_ą¬®ą­Ÿą­‡ą¬Ø" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "ą¬†ą¬Ÿą¬²ą¬¾ą¬£ą­ą¬Ÿą¬æą¬•/ମାଔିରା" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "ମାଔେରା ą¬¦ą­ą¬¬ą­€ą¬Ŗ" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "ą¬†ą¬Ÿą¬²ą¬¾ą¬£ą­ą¬Ÿą¬æą¬•/ą¬°ą­‡ą¬•ą­ą¬œą¬¾ą¬­ą¬æą¬•" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "ą¬†ą¬Ÿą¬²ą¬¾ą¬£ą­ą¬Ÿą¬æą¬•/ą¬¦ą¬•ą­ą¬·ą¬æą¬£_ą¬œą­‡ą¬°ą­ą¬œą¬æą­Ÿą¬¾" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "ą¬†ą¬Ÿą¬²ą¬¾ą¬£ą­ą¬Ÿą¬æą¬•/ą¬·ą­ą¬Ÿą­‡ą¬Øą¬²ą­€" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "ą¬†ą¬Ÿą¬²ą¬¾ą¬£ą­ą¬Ÿą¬æą¬•/ą¬øą­‡ą¬£ą­ą¬Ÿ_ହେଲେନା" #: timezones.h:625 msgid "Australia/ACT" msgstr "ą¬†ą¬Ÿą¬²ą¬¾ą¬£ą­ą¬Ÿą¬æą¬•/ą¬.ସୀ.ą¬Ÿą­€." #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾/ą¬ą¬”ą­€ą¬²ą­‡ą¬”" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "ą¬¦ą¬•ą­ą¬·ą¬æą¬£ ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą¬†" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾/ą¬¬ą­ą¬°ą¬æą¬øą¬¬ą­‡ą¬Ø" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "ą¬•ą­ą¬‡ą¬Øą­ą¬øą¬²ą­ą¬Æą¬¾ą¬£ą­ą¬” - ଅଧିକାଂଶ ą¬…ą¬žą­ą¬šą¬³" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾/ą¬¬ą­ą¬°ą­‹ą¬•ą­‡ą¬Ø_ହିଲ" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "ନୂତନ ą¬¦ą¬•ą­ą¬·ą¬æą¬£ ୱାଲସ - ą­Ÿą¬¾ą¬Øą¬•ą­‹ą­±ą¬æą¬Øą¬¾" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾/କାନବେରା" #: timezones.h:636 msgid "Australia/Currie" msgstr "ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾/ą¬•ą­ą¬Æą­ą¬°ą­€" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "ą¬¤ą¬¾ą¬øą­ą¬®ą¬¾ą¬Øą¬æą­Ÿą¬¾ - ą¬•ą¬æą¬™ą­ą¬— ą¬¦ą­ą¬¬ą­€ą¬Ŗ" #: timezones.h:639 msgid "Australia/Darwin" msgstr "ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾/ଔାରୱିନ" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "ą¬‰ą¬¤ą­ą¬¤ą¬°ą­€ą­Ÿ ą¬Ŗą­ą¬°ą¬¦ą­‡ą¬¶" #: timezones.h:642 msgid "Australia/Eucla" msgstr "ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾/ą¬‡ą¬‰ą¬•ą­ą¬²ą¬¾" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "ą¬Ŗą¬¶ą­ą¬šą¬æą¬®ą­€ ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾ - ą¬‡ą¬‰ą¬•ą­ą¬²ą¬¾ ą¬…ą¬žą­ą¬šą¬³" #: timezones.h:645 msgid "Australia/Hobart" msgstr "ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾/ą¬¹ą­‹ą¬¬ą¬°ą­ą¬Ÿ" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "ą¬¤ą¬¾ą¬øą­ą¬®ą¬¾ą¬Øą¬æą­Ÿą¬¾ - ଅଧିକାଂଶ ą¬…ą¬žą­ą¬šą¬³" #: timezones.h:648 msgid "Australia/LHI" msgstr "ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾/ą¬ą¬².ą¬ą¬š.ଆଇ." #: timezones.h:649 msgid "Australia/Lindeman" msgstr "ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾/ą¬²ą¬æą¬£ą­ą¬”ą­‡ą¬®ą­ą¬Æą¬¾ą¬Ø" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "ą¬•ą­ą¬‡ą¬Øą­ą¬øą¬²ą­ą¬Æą¬¾ą¬£ą­ą¬” - ହୋଲିଔେ ą¬¦ą­ą¬¬ą­€ą¬Ŗ" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾/ą¬²ą­‹ą¬°ą­ą¬”_ą¬¹ą­‹ą¬" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "ą¬²ą¬°ą­ą¬” ହାଵ ą¬¦ą­ą¬¬ą­€ą¬Ŗ" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾/ą¬®ą­‡ą¬²ą¬¬ą­‹ą¬°ą­ą¬Ø" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "ą¬­ą¬æą¬•ą­ą¬Ÿą­‹ą¬°ą¬æą­Ÿą¬¾" #: timezones.h:658 msgid "Australia/North" msgstr "ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾/ą¬‰ą¬¤ą­ą¬¤ą¬°" #: timezones.h:659 msgid "Australia/NSW" msgstr "ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾/ą¬Ŗą¬°ą­ą¬„" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "ą¬Ŗą¬¶ą­ą¬šą¬æą¬®ą¬æ ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą¬† - ଅଧିକାଂଶ ą¬…ą¬žą­ą¬šą¬³" #: timezones.h:663 msgid "Australia/Queensland" msgstr "ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾/ą¬•ą­ą¬‡ą¬Øą­ą¬øą¬²ą­ą¬Æą¬¾ą¬£ą­ą¬”" #: timezones.h:664 msgid "Australia/South" msgstr "ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾/ą¬¦ą¬•ą­ą¬·ą¬æą¬£" #: timezones.h:665 msgid "Australia/Sydney" msgstr "ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾/ସିଔନୀ" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "ନୂତନ ą¬¦ą¬•ą­ą¬·ą¬æą¬£ ୱାଲସ - ଅଧିକାଂଶ ą¬…ą¬žą­ą¬šą¬³" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾/ą¬¤ą¬øą­ą¬®ą­‡ą¬Øą¬æą­Ÿą¬¾" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾/ą¬­ą¬æą¬•ą­ą¬Ÿą­‹ą¬°ą¬æą­Ÿą¬¾" #: timezones.h:670 msgid "Australia/West" msgstr "ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾/ą¬Ŗą¬¶ą­ą¬šą¬æą¬®" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ą¬…ą¬·ą­ą¬Ÿą­ą¬°ą­‡ą¬²ą¬æą­Ÿą¬¾/ą­Ÿą¬¾ą¬Øą¬•ą­‹ą­±ą¬æą¬Øą­ą¬Øą¬¾" #: timezones.h:672 msgid "Brazil/Acre" msgstr "ą¬¬ą­ą¬°ą¬¾ą¬œą¬æą¬²/ą¬†ą¬•ą­ą¬°ą­‡" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "ą¬¬ą­ą¬°ą¬¾ą¬œą¬æą¬²/ଔିନୋରୋନା" #: timezones.h:674 msgid "Brazil/East" msgstr "ą¬¬ą­ą¬°ą¬¾ą¬œą¬æą¬²/ą¬Ŗą­‚ą¬°ą­ą¬¬" #: timezones.h:675 msgid "Brazil/West" msgstr "ą¬¬ą­ą¬°ą¬¾ą¬œą¬æą¬²/ą¬Ŗą¬¶ą­ą¬šą¬æą¬®" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "କାନାଔା/ą¬†ą¬Ÿą¬²ą¬¾ą¬£ą­ą¬Ÿą¬æą¬•" #: timezones.h:677 msgid "Canada/Central" msgstr "କାନାଔା/ą¬®ą¬§ą­ą¬Æ" #: timezones.h:678 msgid "Canada/Eastern" msgstr "କାନାଔା/ą¬Ŗą­‚ą¬°ą­ą¬¬ą­€" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "କାନାଔା/ą¬Ŗą­‚ą¬°ą­ą¬¬-ą¬øą¬¾ą¬øą­ą¬•ą¬šą­‡ą¬¬ą¬¾ą¬Ø" #: timezones.h:680 msgid "Canada/Mountain" msgstr "କାନାଔା/ą¬®ą¬¾ą¬‰ą¬£ą­ą¬Ÿą­‡ą¬Ø" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "କାନାଔା/ą¬Øą­ą¬Æą­ą¬«ą¬¾ą¬‰ą¬£ą­ą¬”ą¬²ą­ą¬Æą¬¾ą¬£ą­ą¬”" #: timezones.h:682 msgid "Canada/Pacific" msgstr "କାନାଔା/ପେସୀଫିକ" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "କାନାଔା/ą¬øą¬¾ą¬øą­ą¬•ą¬šą­‡ą¬¬ą¬¾ą¬Ø" #: timezones.h:684 msgid "Canada/Yukon" msgstr "କାନାଔା/ą­Ÿą­ą¬•ą­‹ą¬Ø" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "ą¬šą¬æą¬²ą­€/ą¬•ą­‹ą¬£ą­ą¬Ÿą­€ą¬Øą­‡ą¬£ą­ą¬Ÿą¬¾ą¬²" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "ą¬šą¬æą¬²ą­€/ą¬‡ą¬·ą­ą¬Ÿą¬°ą¬¦ą­ą¬¬ą­€ą¬Ŗ" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "ą¬•ą­ą¬Æą­ą¬¬ą¬¾" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "ମିଶର" #: timezones.h:692 msgid "Eire" msgstr "ą¬†ą­Ÿą¬°" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/ą¬—ą­ą¬°ą­€ą¬Øą­±ą¬æą¬š" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/ą­Ÿą­ą¬Øą¬æą¬­ą¬°ą­ą¬øą¬²" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/ଜୁଲୁ" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬†ą¬®ą¬·ą­ą¬Ÿą¬°ą¬”ą¬¾ą¬®" #: timezones.h:731 msgid "Europe/Andorra" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬†ą¬£ą­ą¬”ą­‹ą¬°ą¬¾" #: timezones.h:732 msgid "Europe/Athens" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬ą¬„ą­‡ą¬Øą­ą¬ø" #: timezones.h:733 msgid "Europe/Belfast" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬¬ą­‡ą¬²ą¬«ą¬¾ą¬·ą­ą¬Ÿ" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬¬ą­‡ą¬²ą¬—ą­ą¬°ą­‡ą¬”" #: timezones.h:735 msgid "Europe/Berlin" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬¬ą¬°ą­ą¬²ą¬æą¬Ø" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬¬ą­ą¬°ą¬¾ą¬Ÿą¬æą¬¶ą¬²ą­‹ą¬­ą¬¾" #: timezones.h:737 msgid "Europe/Brussels" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬¬ą­ƒą¬øą­‡ą¬²ą­ą¬ø" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬¬ą­ą¬–ą¬¾ą¬°ą­‡ą¬·ą­ą¬Ÿ" #: timezones.h:739 msgid "Europe/Budapest" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬¬ą­ą¬”ą¬¾ą¬Ŗą­‡ą¬·ą­ą¬Ÿ" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬šą¬æą¬øą­€ą¬Øą­‹" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/କୋପନହେଗନ" #: timezones.h:742 msgid "Europe/Dublin" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬”ą¬¬ą­ą¬²ą¬æą¬Ø" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬œą¬æą¬¬ą­ą¬°ą¬¾ą¬²ą­ą¬Ÿą¬°" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬—ą­ą­Ÿą­‡ą¬°ą­ą¬Øą¬øą­€" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬¹ą­‡ą¬²ą¬øą¬æą¬™ą­ą¬•ą­€" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ଇସଲେ_ଅଫ_ମେନ" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬‡ą¬øą­ą¬¤ą¬¾ą¬‚ą¬¬ą­ą¬²" #: timezones.h:748 msgid "Europe/Jersey" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬œą¬°ą­ą¬øą­€" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬•ą¬¾ą¬²ą¬æą¬Øą­€ą¬—ą­ą¬°ą¬¾ą¬”" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "ą¬®ą­‹ą¬øą­ą¬•ą­‹+01 - ą¬•ą¬¾ą¬²ą­€ą¬Øą¬æą¬Øą¬—ą­ą¬°ą¬¾ą¬”" #: timezones.h:752 msgid "Europe/Kiev" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/କୀବ" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ଲିସବନ" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ଲଜୁବଲଜାନା" #: timezones.h:759 msgid "Europe/London" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬²ą¬£ą­ą¬”ą¬Ø" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬²ą­‡ą¬•ą­ą¬øą¬‚ą¬¬ą¬°ą­ą¬—" #: timezones.h:761 msgid "Europe/Madrid" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬®ą¬¾ą¬¦ą­ą¬°ą¬æą¬¦" #: timezones.h:764 msgid "Europe/Malta" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬®ą¬¾ą¬²ą­ą¬Ÿą¬¾" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ମେରୀହାମ" #: timezones.h:766 msgid "Europe/Minsk" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬®ą¬æą¬Øą¬øą­ą¬•" #: timezones.h:767 msgid "Europe/Monaco" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ମୋନାକୋ" #: timezones.h:768 msgid "Europe/Moscow" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬®ą­‹ą¬øą­ą¬•ą­‹" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "ą¬®ą­‹ą¬øą­ą¬•ą­‹+00 - ą¬Ŗą¬¶ą­ą¬šą¬æą¬® ରୁଷ" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬Øą¬æą¬•ą­‹ą¬øą¬æą­Ÿą¬¾" #: timezones.h:772 msgid "Europe/Oslo" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ଓସଲୋ" #: timezones.h:773 msgid "Europe/Paris" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ପାରିସ" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ପୋଔଗୋରିକା" #: timezones.h:775 msgid "Europe/Prague" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬Ŗą­ą¬°ą¬¾ą¬—" #: timezones.h:776 msgid "Europe/Riga" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ରିଗା" #: timezones.h:777 msgid "Europe/Rome" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ରୋମ" #: timezones.h:778 msgid "Europe/Samara" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ସାମାରା" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "ą¬®ą­‹ą¬øą­ą¬•ą­‹ - ସାମରା, ą¬‰ą¬”ą¬®ą­ą¬°ą­ą¬Ÿą¬æą¬†" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ସେନ_ମରୀନୋ" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬øą¬°ą¬¾ą¬œą­‡ą¬­ą­‹" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ସିମଫେରୋପୋଲ" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ ą¬•ą­ą¬°ą­€ą¬®ą¬æą¬†" #: timezones.h:786 msgid "Europe/Skopje" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬øą­ą¬•ą¬Ŗą¬œą­‡" #: timezones.h:787 msgid "Europe/Sofia" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬øą­‹ą¬«ą¬æą­Ÿą¬¾" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬·ą­ą¬Ÿą­‹ą¬•ą¬¹ą­‹ą¬®" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ତାଲୀନ" #: timezones.h:790 msgid "Europe/Tirane" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ତିରେନ" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ତିରାସପୋଲ" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬“ą¬œą¬—ą­‹ą¬°ą­‹ą¬”" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "ą¬°ą­ą¬„ą­‡ą¬Øą¬æą­Ÿą¬¾" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ବାଔୁଜ" #: timezones.h:796 msgid "Europe/Vatican" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬­ą¬¾ą¬Ÿą­€ą¬•ą­‡ą¬Ø" #: timezones.h:797 msgid "Europe/Vienna" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬­ą¬æą­Ÿą­‡ą¬Øą¬¾" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ଭିଲନିୟସ" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬­ą­‹ą¬²ą­ą¬—ą­‹ą¬—ą­ą¬°ą¬¾ą¬”" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "ą¬®ą­‹ą¬øą­ą¬•ą­‹+00 - ą¬•ą¬¾ą¬øą­ą¬Ŗą¬æą­Ÿą¬¾ą¬Ø ସାଗର" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ୱିରସୋ" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬œą­‡ą¬—ą¬°ą­€ą¬¬" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬œą¬Ŗą­‹ą¬°ą­‹ą¬œą¬¾ą¬ˆ" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "ą¬œą¬¾ą¬Ŗą­ą¬°ą­‹ą¬ą¬¾ą­Ÿ, ଇ ą¬²ą­ą¬™ą­ą¬—ą¬¾ą¬øą­ą¬• / ą¬œą¬¾ą¬Ŗą­‹ą¬°ą¬æą¬ą¬æą¬†, ଇ ą¬²ą­ą¬¹ą¬¾ą¬Øą¬øą­ą¬•" #: timezones.h:807 msgid "Europe/Zurich" msgstr "ą­Ÿą­ą¬°ą­‹ą¬Ŗ/ą¬œą­ą¬Æą­ą¬°ą¬æą¬–" #: timezones.h:808 msgid "Factory" msgstr "କାରଖାନା" #: timezones.h:809 msgid "GB" msgstr "ଗିଗା-ą¬¬ą¬¾ą¬‡ą¬Ÿ" #: timezones.h:810 msgid "GB-Eire" msgstr "ଗିଗା-ą¬¬ą¬¾ą¬‡ą¬Ÿ-ଆଇର" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "ą¬—ą­ą¬°ą­€ą¬Øą­±ą¬æą¬š" #: timezones.h:816 msgid "Hongkong" msgstr "ą¬¹ą¬™ą­ą¬—ą¬•ą¬™ą­ą¬—" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "ą¬†ą¬‡ą¬øą¬²ą­ą¬Æą¬¾ą¬£ą­ą¬”" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "ą¬‡ą¬£ą­ą¬”ą¬æą¬†ą¬Ø/ą¬…ą¬Øą­ą¬¤ą¬Øą¬¾ą¬Øą¬¾ą¬°ą¬æą¬­ą­‹" #: timezones.h:820 msgid "Indian/Chagos" msgstr "ą¬‡ą¬£ą­ą¬”ą¬æą¬†ą¬Ø/ą¬šą¬¾ą¬—ą­‹ą¬ø" #: timezones.h:821 msgid "Indian/Christmas" msgstr "ą¬‡ą¬£ą­ą¬”ą¬æą¬†ą¬Ø/ą¬•ą­ą¬°ą¬æą¬·ą­ą¬Ÿą¬®ą¬¾ą¬ø" #: timezones.h:822 msgid "Indian/Cocos" msgstr "ą¬‡ą¬£ą­ą¬”ą¬æą¬†ą¬Ø/କୋକୋସ" #: timezones.h:823 msgid "Indian/Comoro" msgstr "ą¬‡ą¬£ą­ą¬”ą¬æą¬†ą¬Ø/କୋମୋରୋ" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "ą¬‡ą¬£ą­ą¬”ą¬æą¬†ą¬Ø/ą¬•ą¬°ą­ą¬—ą­ą¬Æą­ą¬²ą­‡ą¬Ø" #: timezones.h:825 msgid "Indian/Mahe" msgstr "ą¬‡ą¬£ą­ą¬”ą¬æą¬†ą¬Ø/ମାହେ" #: timezones.h:826 msgid "Indian/Maldives" msgstr "ą¬‡ą¬£ą­ą¬”ą¬æą¬†ą¬Ø/ମାଲଦୀବ" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "ą¬‡ą¬£ą­ą¬”ą¬æą¬†ą¬Ø/ą¬®ą¬°ą­€ą¬øą¬æą­Ÿą¬ø" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "ą¬‡ą¬£ą­ą¬”ą¬æą¬†ą¬Ø/ą¬®ą¬¾ą­Ÿą­‹ą¬Ÿ" #: timezones.h:829 msgid "Indian/Reunion" msgstr "ą¬‡ą¬£ą­ą¬”ą¬æą¬†ą¬Ø/ରିୟୁନିୟନ" #: timezones.h:830 msgid "Iran" msgstr "ଇରାନ" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "ą¬‡ą¬øą­ą¬°ą¬¾ą¬‡ą¬²" #: timezones.h:833 msgid "Jamaica" msgstr "ą¬œą¬¾ą¬®ą¬¾ą¬ˆą¬•ą¬¾" #: timezones.h:834 msgid "Japan" msgstr "ଜାପାନ" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "ą¬–ą­ą¬¬ą¬¾ą¬œą¬¾ą¬²ą­‡ą¬Ø" #: timezones.h:836 msgid "Libya" msgstr "ą¬²ą­€ą¬¬ą¬æą­Ÿą¬¾" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "ą¬®ą­‡ą¬•ą­ą¬øą¬æą¬•ą­‹/ą¬¬ą¬œą¬Øą­‹ą¬°ą­ą¬Ÿ" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "ą¬®ą­‡ą¬•ą­ą¬øą¬æą¬•ą­‹/ବଜାସୁର" #: timezones.h:840 msgid "Mexico/General" msgstr "ą¬®ą­‡ą¬•ą­ą¬øą¬æą¬•ą­‹/ą¬œą­‡ą¬Øą­‡ą¬°ą¬¾ą¬²" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "ଖାଔୀ/ରିୟାଦ87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "ଖାଔୀ/ରିୟାଦ88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "ଖାଔୀ/ରିୟାଦ89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "ą¬Øą¬­ą¬¾ą¬œą­‹" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "ପେସୀଫିକ/ą¬ą¬Ŗą¬æą­Ÿą¬¾" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "ପେସୀଫିକ/ą¬…ą¬•ą¬²ą­ą¬Æą¬¾ą¬£ą­ą¬”" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "ପେସୀଫିକ/ଚା଄ମ" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "ଚା଄ାମ ą¬¦ą­ą¬¬ą­€ą¬Ŗ" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "ପେସୀଫିକ/ą¬šą­ą¬•" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "ą¬šą­ą¬• (ą¬¤ą­ą¬°ą­ą¬•) ą¬ą¬¬ą¬‚ ୟାପ" #: timezones.h:859 msgid "Pacific/Easter" msgstr "ପେସିଫିକ/ą¬‡ą¬·ą­ą¬Ÿą¬°" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "ą¬‡ą¬·ą­ą¬Ÿą¬° ą¬¦ą­ą¬¬ą­€ą¬Ŗ ą¬ą¬¬ą¬‚ ସାଲା ą­Ÿą­‡ ą¬—ą­‹ą¬®ą¬æą¬œ" #: timezones.h:862 msgid "Pacific/Efate" msgstr "ପେସୀଫିକ/ą¬‡ą¬«ą­‡ą¬Ÿ" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "ପେସୀଫିକ/ą¬‡ą¬£ą­ą¬”ą¬°ą¬¬ą¬°ą­€" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "ą¬«ą­‹ą¬ą¬Øą¬æą¬•ą­ą¬ø ą¬¦ą­ą¬¬ą­€ą¬Ŗ" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "ପେସୀଫିକ/ଫକାଓଫୋ" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "ପେସୀଫିକ/ą¬«ą¬æą¬œą­€" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "ପେସୀଫିକ/ą¬«ą­ą¬Øą¬¾ą¬«ą­ą¬Ÿą­€" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "ପେସୀଫିକ/ଗଲାପଗୋସ" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "ଗାଲାପାଗୋସ ą¬¦ą­ą¬¬ą­€ą¬Ŗą¬Ŗą­ą¬žą­ą¬œ" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "ପେସୀଫିକ/ą¬—ą­‡ą¬®ą­ą¬¬ą¬æą­Ÿą¬°" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "ą¬—ą­‡ą¬®ą­ą¬¬ą¬æą¬ą¬° ą¬¦ą­ą¬¬ą­€ą¬Ŗ" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "ପେସୀଫିକ/ଗୁଆଦଲକାନଲ" #: timezones.h:876 msgid "Pacific/Guam" msgstr "ପେସୀଫିକ/ଗୁଆମ" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "ପେସୀଫିକ/ହୋନୋଲୁଲୁ" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "ହାୱାଇ" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "ପେସୀଫିକ/ą¬œą¬Øą¬·ą­ą¬Ÿą­‹ą¬Ø" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "ą¬œą­‹ą¬Øą¬·ą­ą¬Ÿą­‹ą¬Ø ą¬†ą¬Ÿą­‹ą¬²" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "ପେସୀଫିକ/ą¬•ą¬æą¬°ą­ą¬¤ą­€ą¬®ą¬¤ą¬æ" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "ଲାଇନ ą¬¦ą­ą¬¬ą­€ą¬Ŗą¬Ŗą­ą¬žą­ą¬œ" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "ପେସୀଫିକ/କୋସରେ" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "କୋସରେ" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "ପେସୀଫିକ/ą¬•ą­ą¬¬ą¬¾ą¬œą¬¾ą¬²ą­‡ą¬Ø" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "ପେସୀଫିକ/ą¬®ą¬œą­‚ą¬°ą¬¾" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "ପେସୀଫିକ/ą¬®ą¬¾ą¬°ą­ą¬•ą¬øą¬¾ą¬ø" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "ą¬®ą¬¾ą¬°ą­ą¬•ą­ą­Ÿą­ą¬øą¬¾ą¬ø ą¬¦ą­ą¬¬ą­€ą¬Ŗ" #: timezones.h:898 msgid "Pacific/Midway" msgstr "ପେସୀଫିକ/ମିଔୱେ" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "ମିଔୱେ ą¬¦ą­ą¬¬ą­€ą¬Ŗ" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "ପେସୀଫିକ/ନୋରୁ" #: timezones.h:902 msgid "Pacific/Niue" msgstr "ପେସୀଫିକ/ą¬Øą­€ą­Ÿą­" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "ପେସୀଫିକ/ନାରଫୋକ" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "ପେସୀଫିକ/ନାମିୟା" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "ପେସୀଫିକ/ą¬Ŗą­ˆą¬—ą­‹_ą¬Ŗą­ˆą¬—ą­‹" #: timezones.h:906 msgid "Pacific/Palau" msgstr "ପେସୀଫିକ/ପଲାଓ" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "ପେସୀଫିକ/ą¬Ŗą¬æą¬Ÿą¬•ą­‡ą¬°ą­€ą¬Ø" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "ପେସୀଫିକ/ପୋନପେ" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "ପୋନାପେ (ପୋହନାପୀ)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "ପେସୀଫିକ/ପୋନପେ" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "ପେସୀଫିକ/ą¬Ŗą¬°ą­ą¬Ÿ_ą¬®ą­‹ą¬°ą­ą¬øą¬¬ą­€" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "ପେସୀଫିକ/ą¬°ą¬¾ą¬°ą­‹ą¬¤ą¬™ą­ą¬—ą¬¾" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "ପେସୀଫିକ/ସାଇପେନ" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "ପେସୀଫିକ/ସମୋଆ" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "ପେସୀଫିକ/ą¬¤ą¬¾ą¬¹ą¬æą¬Ÿą­€" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "ą¬øą­‹ą¬øą¬¾ą¬‡ą¬Ÿą­€ ą¬¦ą­ą¬¬ą­€ą¬Ŗ" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "ପେସୀଫିକ/ତାରାବା" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "ą¬—ą¬æą¬²ą¬¬ą¬°ą­ą¬Ÿ ą¬¦ą­ą¬¬ą­€ą¬Ŗ" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "ପେସୀଫିକ/ą¬Ÿą¬™ą­ą¬—ą¬¾ą¬Ÿą¬¾ą¬Ŗą­" #: timezones.h:923 msgid "Pacific/Truk" msgstr "ପେସୀଫିକ/ą¬¤ą­ą¬°ą­ą¬•" #: timezones.h:924 msgid "Pacific/Wake" msgstr "ପେସୀଫିକ/ୱେକ" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "ą¬“ą­ą¬¬ą­‡ą¬• ą¬¦ą­ą¬¬ą­€ą¬Ŗ" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "ପେସୀଫିକ/ୱାଲିସ" #: timezones.h:928 msgid "Pacific/Yap" msgstr "ପେସୀଫିକ/ୟାପ" #: timezones.h:929 msgid "Poland" msgstr "ą¬Ŗą­‹ą¬²ą¬¾ą¬£ą­ą¬”" #: timezones.h:930 msgid "Portugal" msgstr "ą¬Ŗą¬°ą­ą¬¤ą­ą¬—ą¬¾ą¬²" #: timezones.h:931 msgid "posixrules" msgstr "ą¬Ŗą­‹ą¬øą¬æą¬•ą­ą¬øą¬°ą­ą¬²ą¬ø" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "ą¬øą¬æą¬™ą­ą¬—ą¬¾ą¬Ŗą­ą¬°" #: timezones.h:937 msgid "Turkey" msgstr "ą¬¤ą­ą¬°ą­ą¬•ą­€" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "ą­Ÿą­ą¬Øą¬æą¬­ą¬°ą­ą¬øą¬²" #: timezones.h:940 msgid "US/Alaska" msgstr "ą¬Æą­ą¬•ą­ą¬¤ą¬°ą¬¾ą¬·ą­ą¬Ÿą­ą¬°/ą¬†ą¬²ą¬¾ą¬øą­ą¬•ą¬¾" #: timezones.h:941 msgid "US/Aleutian" msgstr "ą¬Æą­ą¬•ą­ą¬¤ą¬°ą¬¾ą¬·ą­ą¬Ÿą­ą¬°/ą¬ą¬²ą­ą¬Æą­ą¬øą¬æą­Ÿą¬¾ą¬Ø" #: timezones.h:942 msgid "US/Arizona" msgstr "ą¬Æą­ą¬•ą­ą¬¤ą¬°ą¬¾ą¬·ą­ą¬Ÿą­ą¬°/ą¬ą¬°ą­€ą¬œą­‹ą¬Øą¬¾" #: timezones.h:943 msgid "US/Central" msgstr "ą¬Æą­ą¬•ą­ą¬¤ą¬°ą¬¾ą¬·ą­ą¬Ÿą­ą¬°/ą¬•ą­‡ą¬Øą­ą¬¦ą­ą¬°ą­€ą­Ÿ" #: timezones.h:944 msgid "US/Eastern" msgstr "ą¬Æą­ą¬•ą­ą¬¤ą¬°ą¬¾ą¬·ą­ą¬Ÿą­ą¬°/ą¬Ŗą­‚ą¬°ą­ą¬¬ą­€" #: timezones.h:945 msgid "US/East-Indiana" msgstr "ą¬Æą­ą¬•ą­ą¬¤ą¬°ą¬¾ą¬·ą­ą¬Ÿą­ą¬°/ą¬Ŗą­‚ą¬°ą­ą¬¬-ą¬‡ą¬£ą­ą¬”ą¬æą­Ÿą¬¾ą¬Øą¬¾" #: timezones.h:946 msgid "US/Hawaii" msgstr "ą¬Æą­ą¬•ą­ą¬¤ą¬°ą¬¾ą¬·ą­ą¬Ÿą­ą¬°/ହାୱାଈ" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "ą¬Æą­ą¬•ą­ą¬¤ą¬°ą¬¾ą¬·ą­ą¬Ÿą­ą¬°/ą¬‡ą¬£ą­ą¬”ą¬æą­Ÿą¬¾ą¬Øą¬¾-ą¬·ą­ą¬Ÿą¬¾ą¬°ą­ą¬•" #: timezones.h:948 msgid "US/Michigan" msgstr "ą¬Æą­ą¬•ą­ą¬¤ą¬°ą¬¾ą¬·ą­ą¬Ÿą­ą¬°/ମିସିଗନ" #: timezones.h:949 msgid "US/Mountain" msgstr "ą¬Æą­ą¬•ą­ą¬¤ą¬°ą¬¾ą¬·ą­ą¬Ÿą­ą¬°/ą¬®ą¬¾ą¬‰ą¬£ą­ą¬Ÿą­‡ą¬Ø" #: timezones.h:950 msgid "US/Pacific" msgstr "ą¬Æą­ą¬•ą­ą¬¤ą¬°ą¬¾ą¬·ą­ą¬Ÿą­ą¬°/ପେସୀଫିକ" #: timezones.h:951 msgid "US/Samoa" msgstr "ą¬Æą­ą¬•ą­ą¬¤ą¬°ą¬¾ą¬·ą­ą¬Ÿą­ą¬°/ସମୋଆ" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "ଜୁଲୁ" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/ta.po0000664000175000017500000026540714632072346023701 0ustar fabiofabio# translation of system-config-date.master-timezones.ta.po to Tamil # translation of ta.po to # This file is distributed under the same license as the PACKAGE package. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER, 2006. # # Felix , 2006. # I. Felix , 2008, 2009. # I Felix , 2010. msgid "" msgstr "" "Project-Id-Version: system-config-date.master-timezones.ta\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-12-07 11:20+0530\n" "Last-Translator: I Felix \n" "Language-Team: Tamil \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ta\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n!=1);\\n\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®Ŗą®æą®ŸąÆą®œą®¾ą®©ąÆ" #: timezones.h:2 msgid "Africa/Accra" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®•ąÆą®•ąÆą®°ą®¾" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®ŸąÆą®Ÿą®æą®šąÆ" #: timezones.h:4 msgid "Africa/Algiers" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®²ąÆą®•ąÆ†ą®°ąÆą®øąÆ" #: timezones.h:5 msgid "Africa/Asmara" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®øąÆą®®ą®¾ą®°ą®¾" #: timezones.h:6 msgid "Africa/Asmera" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®“ąÆą®®ąÆ‡ą®°ą®¾" #: timezones.h:7 msgid "Africa/Bamako" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®Ŗą®®ą®¾ą®•ąÆŠ" #: timezones.h:8 msgid "Africa/Bangui" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®Ŗą®¾ą®©ąÆą®•ąÆą®µą®æ" #: timezones.h:9 msgid "Africa/Banjul" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®Ŗą®¾ą®©ąÆą®œąÆą®²ąÆ" #: timezones.h:10 msgid "Africa/Bissau" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/பிசௌ" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®Ŗą®æą®²ą®Øą®©ąÆą®ŸąÆˆą®°ąÆ" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®Ŗą®æą®°ą®øąÆą®µą®æą®šą®æ" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®ŖąÆą®œąÆą®®ąÆą®ŖąÆą®°ą®¾" #: timezones.h:14 msgid "Africa/Cairo" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/காரியோ" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®•ą®¾ą®šą®Ŗą®²ą®¾ą®©ąÆą®•ą®¾" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®šąÆ†ą®ÆąÆ‚ą®Ÿą®¾" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "ą®šąÆ†ą®ÆąÆą®Ÿą®¾ & ą®®ąÆ†ą®²ą®æą®²ąÆą®²ą®¾" #: timezones.h:19 msgid "Africa/Conakry" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®•ąÆ‹ą®©ą®¾ą®•ąÆą®°ą®æ" #: timezones.h:20 msgid "Africa/Dakar" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®Ÿą®¾ą®•ą®°ąÆ" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®Ÿą®°ąÆ_ą®šąÆ_ą®šą®²ą®¾ą®®ąÆ" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®Ÿą®œąÆą®ŖąÆą®ŖąÆŒą®Ÿą®æ" #: timezones.h:23 msgid "Africa/Douala" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®Ÿą®µąÆą®²ą®¾" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®²ąÆ_ą®ą®°ą®©ąÆ" #: timezones.h:25 msgid "Africa/Freetown" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®ƒą®ŖąÆą®°ąÆ€ą®ŸąÆą®µąÆą®©ąÆ" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®•ą®Ŗą®°ąÆŠą®©ąÆ†" #: timezones.h:27 msgid "Africa/Harare" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ஹராரெ" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®œąÆŠą®¹ą®¾ą®©ąÆ†ą®øąÆą®Ŗą®°ąÆą®•ąÆ" #: timezones.h:29 msgid "Africa/Kampala" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®•ą®®ąÆą®Ŗą®¾ą®²ą®¾" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®•ą®¾ą®°ąÆą®ŸąÆŠą®®ąÆ" #: timezones.h:31 msgid "Africa/Kigali" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/கிகாலி" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®•ą®æą®£ąÆ" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "ą®®ąÆ‡ą®±ąÆą®•ąÆ ą®ŸąÆ†ą®®ąÆ. ą®•ąÆą®Ÿą®æą®Æą®°ą®šąÆ ą®•ą®¾ą®™ąÆą®•ąÆ‹" #: timezones.h:35 msgid "Africa/Lagos" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®²ą®¾ą®•ąÆŠą®øąÆ" #: timezones.h:36 msgid "Africa/Libreville" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®²ą®æą®Ŗą®°ąÆą®µą®æą®²ąÆą®²ą®æ" #: timezones.h:37 msgid "Africa/Lome" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®²ąÆ‹ą®®ąÆ" #: timezones.h:38 msgid "Africa/Luanda" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®²ąÆą®µą®¾ą®£ąÆą®Ÿą®¾" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®²ąÆą®®ąÆą®ŖąÆą®®ąÆą®ŖąÆą®¹ą®·ą®æ" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "ą®•ą®æą®“ą®•ąÆą®•ąÆ ą®ŸąÆ†ą®®ąÆ. ą®•ąÆą®Ÿą®æą®Æą®°ą®šąÆ ą®•ą®¾ą®™ąÆą®•ąÆ‹" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®²ąÆą®šą®•ą®¾" #: timezones.h:43 msgid "Africa/Malabo" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/மலாபோ" #: timezones.h:44 msgid "Africa/Maputo" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®®ą®ŖąÆą®ŸąÆą®ŸąÆŠ" #: timezones.h:45 msgid "Africa/Maseru" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®®ą®šąÆ€ą®°ąÆŠ" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®Žą®®ąÆą®Ŗą®ŖąÆ‡ą®©ąÆ" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®®ąÆŠą®•ą®Ÿą®æą®·ąÆ" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®®ąÆŠą®©ąÆą®°ąÆŠą®µą®æą®Æą®¾" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®©ąÆˆą®°ąÆ‹ą®Ŗą®æ" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®Žą®£ąÆą®Ÿą®æą®œą®®ąÆ€ą®©ą®¾" #: timezones.h:51 msgid "Africa/Niamey" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/னெஇமெயி" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®ØąÆŒą®•ąÆŠą®šąÆ‹ą®ŸąÆ" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®”ą®µą®•ą®¾ą®ŸąÆŠą®•ąÆ" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®ŖąÆ‹ą®°ąÆą®ŸąÆ‹-னோவோ" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®šą®¾ą®µąÆ‹_ą®ŸąÆ‹ą®®ąÆ" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®¤ą®æą®®ąÆą®ŖąÆą®•ąÆą®•ąÆą®¤ąÆ" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®ŸąÆą®°ą®æą®ŖąÆ‹ą®²ą®æ" #: timezones.h:58 msgid "Africa/Tunis" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®ŸąÆą®©ą®æą®øąÆ" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "ą®†ą®ŖąÆą®°ą®æą®•ąÆą®•ą®¾/ą®µą®æą®¤ąÆ‹ą®µąÆ†ą®•ąÆ" #: timezones.h:60 msgid "America/Adak" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾ą®•ąÆą®•ą®¾/ą®…ą®Ÿą®¾ą®•ąÆ" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "ą®…ą®²ąÆą®ÆąÆą®Ÿą®æą®Æą®©ąÆ ą®¤ąÆ€ą®µąÆą®•ą®³ąÆ" #: timezones.h:63 msgid "America/Anchorage" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®©ąÆą®·ąÆŠą®°ąÆ‡ą®œąÆ" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "ą®…ą®²ą®¾ą®øąÆą®•ą®¾ ą®ØąÆ‡ą®°ą®®ąÆ" #: timezones.h:66 msgid "America/Anguilla" msgstr "ą®…ą®®ąÆ‡ą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®©ąÆą®•ą®æą®²ąÆą®²ą®¾" #: timezones.h:67 msgid "America/Antigua" msgstr "ą®…ą®®ąÆ‡ą®°ą®æą®•ąÆą®•ą®¾/ą®†ą®£ąÆą®Ÿą®æą®•ąÆą®µą®¾" #: timezones.h:68 msgid "America/Araguaina" msgstr "ą®…ą®®ąÆ‡ą®°ą®æą®•ąÆą®•ą®¾/அரகுவேஐனா" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "ą®ŸąÆ‹ą®•ą®¾ą®©ąÆą®Ÿą®æą®©ąÆą®øąÆ" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®°ąÆą®œąÆ†ą®©ąÆą®Ÿą®æą®©ą®¾/ą®Ŗą®æą®ÆąÆą®©ą®øąÆ_ą®ą®°ąÆ€ą®øąÆ" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "ą®ŖąÆą®ÆąÆ‚ą®©ą®øąÆ ą®ą®°ąÆ†ą®øąÆ (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®°ąÆą®œąÆ†ą®©ąÆą®Ÿą®æą®©ą®¾/ą®•ą®ŸąÆą®®ą®°ąÆą®•ąÆą®•ą®¾" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "ą®•ą®Ÿą®¾ą®®ą®¾ą®°ąÆą®•ą®¾ (CT), ą®šąÆą®šąÆą®Ŗą®ŸąÆ (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®°ąÆą®œąÆ†ą®©ąÆą®Ÿą®æą®©ą®¾/ą®•ą®®ąÆ‹ą®ŸąÆą®°ą®æą®µą®¾ą®ŸąÆˆą®Æą®¾" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®°ąÆą®œąÆ†ą®©ąÆą®Ÿą®æą®©ą®¾/ą®•ąÆŠą®°ąÆą®ŸąÆŠą®Ŗą®¾" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "நிறைய ą®‡ą®Ÿą®™ąÆą®•ą®³ąÆ (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®°ąÆą®œąÆ†ą®©ąÆą®Ÿą®æą®©ą®¾/ą®œą®œąÆą®ÆąÆ" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "ą®œąÆą®œąÆą®ÆąÆ (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®°ąÆą®œąÆ†ą®©ąÆą®Ÿą®æą®©ą®¾/ą®²ą®¾ą®°ą®æą®ÆąÆ‹ą®œąÆ‹" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "லா ą®°ą®æą®ÆąÆ‹ą®œą®¾ (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®°ąÆą®œąÆ†ą®©ąÆą®Ÿą®æą®©ą®¾/ą®®ąÆ†ą®£ąÆą®ŸąÆ‹ą®øą®¾" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "ą®®ąÆ†ą®©ąÆą®ŸąÆ‹ą®øą®¾ (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®°ąÆą®œąÆ†ą®©ąÆą®Ÿą®æą®©ą®¾/ரியோ_ą®•ąÆ‡ą®²ąÆą®•ąÆ‹ą®øąÆ" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "ą®šą®¾ą®©ąÆą®Ÿą®¾ ą®•ąÆą®°ąÆ‚ą®øąÆ (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®°ąÆą®œąÆ†ą®©ąÆą®Ÿą®æą®©ą®¾/ą®šą®¾ą®²ąÆą®Ÿą®¾" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®°ąÆą®œąÆ†ą®©ąÆą®Ÿą®æą®©ą®¾/ą®šą®¾ą®©ąÆ_ą®œąÆą®Æą®¾ą®©ąÆ" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "ą®šą®¾ą®©ąÆ ą®œąÆą®Æą®©ąÆ (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®°ąÆą®œąÆ†ą®©ąÆą®Ÿą®æą®©ą®¾/ą®šą®¾ą®©ąÆ_ą®²ąÆ‚ą®ÆąÆą®øąÆ" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "ą®šą®¾ą®©ąÆ ą®²ąÆ‚ą®Æą®æą®øąÆ (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®°ąÆą®œąÆ†ą®©ąÆą®Ÿą®æą®©ą®¾/ą®ŸąÆą®ÆąÆą®•ąÆą®®ą®©ąÆ" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "ą®¤ąÆą®•ąÆą®®ąÆ†ą®©ąÆ (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®°ąÆą®œąÆ†ą®©ąÆą®Ÿą®æą®©ą®¾/யுஷியேயா" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "ą®ŸąÆˆą®°ąÆą®°ą®æą®°ą®¾ ą®ŸąÆ†ą®²ąÆ ą®ƒą®ŖąÆą®ÆąÆą®•ąÆ‹ (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/அரூபா" #: timezones.h:109 msgid "America/Asuncion" msgstr "ą®…ą®®ąÆ‡ą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®øąÆą®©ąÆą®šą®æą®Æą®¾ą®©ąÆ" #: timezones.h:110 msgid "America/Atikokan" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®Ÿą®æą®•ąÆ‹ą®•ą®©ąÆ" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "ą®•ą®æą®“ą®•ąÆą®•ą®¤ąÆą®¤ą®æą®Æ நிலையான ą®ØąÆ‡ą®°ą®®ąÆ - ą®…ą®¤ą®æą®•ąÆ‹ą®•ą®¾ą®©ąÆ, ą®†ą®©ąÆą®Ÿą®°ą®æą®ÆąÆ‹ ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®šą®µąÆą®¤ą®®ąÆą®ŖąÆą®ŸąÆ‹ą®©ąÆ I, ą®ØąÆą®©ą®¾ą®µąÆą®ŸąÆ" #: timezones.h:113 msgid "America/Atka" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®…ą®ŸąÆą®•ą®¾" #: timezones.h:114 msgid "America/Bahia" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/பஹியா" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "பஹியா" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/பஹியா_ą®Ŗą®¾ą®©ąÆą®Ÿą®æą®°ą®¾ą®øąÆ" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "ą®®ąÆ†ą®•ąÆą®šą®æą®•ą®³ąÆ ą®šąÆ†ą®©ąÆą®ŸąÆą®°ą®²ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - பாஹியா டி ą®Ŗą®¾ą®©ąÆą®Ÿą®æą®°ą®¾ą®øąÆ" #: timezones.h:120 msgid "America/Barbados" msgstr "ą®…ą®®ąÆ‡ą®°ą®æą®•ąÆą®•ą®¾/ą®Ŗą®¾ą®°ąÆą®ŖąÆ‡ą®²ą®¾ą®øąÆ" #: timezones.h:121 msgid "America/Belem" msgstr "ą®…ą®®ąÆ‡ą®°ą®æą®•ąÆą®•ą®¾/ą®ŖąÆ‡ą®²ąÆ†ą®®ąÆ" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "அமாபா, E பாரா" #: timezones.h:124 msgid "America/Belize" msgstr "ą®…ą®®ąÆ‡ą®°ą®æą®•ąÆą®•ą®¾/ą®ŖąÆ†ą®²ąÆą®šą®æ" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®ŖąÆą®³ą®¾ą®™ąÆ-ą®šąÆ‡ą®ŖąÆą®²ą®¾ą®©ąÆ" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "ą®…ą®ŸąÆą®²ą®¾ą®£ąÆą®Ÿą®æą®•ąÆ நிலையான ą®ØąÆ‡ą®°ą®®ąÆ - ą®•ąÆą®±ąÆˆą®ØąÆą®¤ ą®•ą®æą®“ą®•ąÆą®•ąÆ ą®·ąÆ‹ą®°ąÆ" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/போவா_ą®µą®æą®øąÆą®Ÿą®¾" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "ą®°ąÆ‹ą®°ą®¾ą®ÆąÆą®®ą®¾" #: timezones.h:131 msgid "America/Bogota" msgstr "ą®…ą®®ąÆ‡ą®°ą®æą®•ąÆą®•ą®¾/ą®ŖąÆŠą®•ąÆ‹ą®Ÿą®¾" #: timezones.h:132 msgid "America/Boise" msgstr "ą®…ą®®ąÆ‡ą®°ą®æą®•ąÆą®•ą®¾/ą®ŖąÆ‹ą®‡ą®øąÆ" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "ą®®ą®µąÆą®£ąÆą®ŸąÆ†ą®ÆąÆą®©ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - ą®¤ąÆ†ą®±ąÆą®•ąÆ அதாஹோ & ą®•ą®æą®“ą®•ąÆą®•ąÆ ą®’ą®°ąÆ‡ą®•ą®¾ą®©ąÆ" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®Ŗą®æą®”ą®©ą®øąÆ_ą®ą®°ąÆ€ą®øąÆ" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®•ąÆ‡ą®®ąÆą®ŖąÆą®°ą®æą®ŸąÆą®œąÆ_பே" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "ą®®ą®µąÆą®£ąÆą®ŸąÆ†ą®ÆąÆą®©ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - ą®®ąÆ‡ą®±ąÆą®•ąÆ ą®ØąÆą®©ą®¾ą®µąÆą®ŸąÆ" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®•ąÆ‡ą®®ąÆą®ŖąÆ‹_ą®•ą®æą®°ą®¾ą®£ąÆą®ŸąÆ‡" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "ą®®ą®¾ą®ŸąÆ‹ ą®•ąÆą®°ąÆ‹ą®øąÆą®øą®¾ டு ą®šąÆą®²ąÆ" #: timezones.h:142 msgid "America/Cancun" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®•ą®©ąÆą®•ąÆą®©ąÆ" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "ą®šąÆ†ą®©ąÆą®ŸąÆą®°ą®²ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - ą®•ąÆą®ÆąÆą®©ąÆą®Ÿą®¾ą®©ą®¾ ரோ" #: timezones.h:145 msgid "America/Caracas" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®•ą®°ą®•ą®¾ą®øąÆ" #: timezones.h:146 msgid "America/Catamarca" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®•ą®ŸąÆą®®ą®°ąÆą®•ąÆą®•ą®¾" #: timezones.h:147 msgid "America/Cayenne" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®•ą®ÆąÆą®ÆąÆ€ą®©ąÆ" #: timezones.h:148 msgid "America/Cayman" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®•ąÆ‡ą®®ą®©ąÆ" #: timezones.h:149 msgid "America/Chicago" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®šą®æą®•ą®¾ą®•ąÆ‹" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "ą®šąÆ†ą®©ąÆą®ŸąÆą®°ą®²ąÆ ą®ØąÆ‡ą®°ą®®ąÆ" #: timezones.h:152 msgid "America/Chihuahua" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/சிஹுஹயுஹா" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "ą®®ą®µąÆą®£ąÆą®ŸąÆ†ą®ÆąÆą®©ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - சிஹுயாஹுயா ą®ÆąÆą®Žą®øąÆ ą®Žą®²ąÆą®²ąÆˆą®•ąÆą®•ąÆ வெளியே" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®•ąÆ‹ą®°ą®²ąÆ_ą®¹ą®¾ą®°ąÆą®Ŗą®°ąÆ" #: timezones.h:156 msgid "America/Cordoba" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®•ąÆŠą®°ąÆą®ŸąÆŠą®Ŗą®¾" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®•ą®¾ą®øąÆą®Ÿą®¾_ரிகா" #: timezones.h:158 msgid "America/Cuiaba" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/குஇபா" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "ą®®ą®¾ą®ŸąÆ‹ ą®•ąÆą®°ąÆ‹ą®øąÆą®øą®¾" #: timezones.h:161 msgid "America/Curacao" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®•ąÆą®°ą®¾ą®•ą®µąÆ" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®¤ąÆ†ą®©ąÆą®®ą®¾ą®°ąÆą®•ąÆą®·ąÆą®µą®©ąÆ" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "ą®•ą®æą®“ą®•ąÆą®•ąÆ ą®•ą®¾ą®øąÆą®ŸąÆ, ą®µą®Ÿą®•ąÆą®•ąÆ ą®øąÆą®•ąÆ‹ą®°ąÆ†ą®øąÆą®ŖąÆˆą®šą®©ąÆą®ŸąÆ" #: timezones.h:165 msgid "America/Dawson" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®Ÿą®¾ą®µąÆą®šą®©ąÆ" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - ą®µą®Ÿą®•ąÆą®•ąÆ ą®ÆąÆą®•ąÆ‹ą®©ąÆ" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®Ÿą®¾ą®µąÆą®šąÆą®©ąÆ_ą®øąÆą®°ąÆ€ą®•ąÆ" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "ą®®ą®µąÆą®£ąÆą®ŸąÆ†ą®ÆąÆą®©ąÆ நிலையான ą®ØąÆ‡ą®°ą®®ąÆ - ą®Ÿą®¾ą®µąÆą®šą®©ąÆ ą®•ą®æą®°ąÆ€ą®•ąÆ & ą®ƒą®ŖąÆ‹ą®°ąÆą®ŸąÆ ą®šąÆ†ą®Æą®æą®©ąÆą®ŸąÆ ą®œą®¾ą®©ąÆ, ą®Ŗą®æą®°ą®æą®ŸąÆą®ŸąÆ€ą®·ąÆ ą®•ąÆŠą®²ą®¾ą®®ąÆą®Ŗą®æą®Æą®¾" #: timezones.h:171 msgid "America/Denver" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®ŸąÆ†ą®©ą®æą®µąÆ†ą®°ąÆ" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "ą®ą®±ąÆą®®ąÆ ą®ØąÆ‡ą®°ą®®ąÆ" #: timezones.h:174 msgid "America/Detroit" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®ŸąÆ†ą®ŸąÆą®°ą®¾ą®ą®ŸąÆ" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "ą®•ą®æą®“ą®•ąÆą®•ą®¤ąÆą®¤ą®æą®Æ ą®ØąÆ‡ą®°ą®®ąÆ - ą®®ą®æą®•ąÆą®šą®æą®•ą®©ąÆ - நிறைய ą®‡ą®Ÿą®™ąÆą®•ą®³ąÆ" #: timezones.h:177 msgid "America/Dominica" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®Ÿą®¾ą®®ą®æą®©ą®æą®•ąÆą®•ą®¾" #: timezones.h:178 msgid "America/Edmonton" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®Žą®ŸąÆą®®ą®¾ą®ØąÆą®ŸąÆŠą®©ąÆ" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "ą®®ą®µąÆą®£ąÆą®ŸąÆ†ą®ÆąÆą®©ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - ą®…ą®²ąÆą®ŖąÆ†ą®°ąÆą®Ÿą®¾, ą®•ą®æą®“ą®•ąÆą®•ąÆ ą®Ŗą®æą®°ą®æą®ŸąÆą®ŸąÆ€ą®·ąÆ ą®•ąÆŠą®²ą®¾ą®®ąÆą®Ŗą®æą®Æą®¾ & ą®®ąÆ‡ą®±ąÆą®•ąÆ ą®šą®¾ą®øąÆą®•ą®ŸąÆą®šąÆ‡ą®µą®©ąÆ" #: timezones.h:181 msgid "America/Eirunepe" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®Žą®ÆąÆą®°ąÆą®©ąÆ†ą®Ŗą®æ" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "W ą®…ą®®ą®¾ą®øąÆŠą®©ą®¾ą®øąÆ" #: timezones.h:184 msgid "America/El_Salvador" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ ą®Žą®²ąÆ_ą®šą®¾ą®²ąÆą®µą®¾ą®ŸąÆŠą®°ąÆ" #: timezones.h:185 msgid "America/Ensenada" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®Žą®©ąÆą®šąÆ†ą®©ąÆą®©ą®Ÿą®¾" #: timezones.h:186 msgid "America/Fortaleza" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®ƒą®ŖąÆ‹ą®Ÿą®²ąÆ€ą®øą®¾" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "NE ą®ŖąÆą®°ąÆ‡ą®šą®æą®²ąÆ (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®ƒą®ŖąÆ‹ą®°ąÆą®ŸąÆ_ą®µąÆ‡ą®©ąÆ" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®•ąÆą®²ąÆ‡ą®øąÆ_பே" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "ą®…ą®ŸąÆą®²ą®¾ą®£ąÆą®Ÿą®æą®•ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - நோவா ą®øąÆą®•ąÆ‹ą®Ÿą®æą®Æą®¾ - ą®‡ą®Ÿą®™ąÆą®•ą®³ąÆ DST 1966-1971ஐ ą®•ą®µą®©ą®æą®•ąÆą®• ą®®ąÆą®Ÿą®æą®Æą®µą®æą®²ąÆą®²ąÆˆ" #: timezones.h:193 msgid "America/Godthab" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®•ą®¾ą®¹ą®¾ą®ŖąÆ" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 #: timezones.h:364 #: timezones.h:453 #: timezones.h:591 #: timezones.h:754 #: timezones.h:852 #: timezones.h:894 msgid "most locations" msgstr "நிறைய ą®‡ą®Ÿą®™ąÆą®•ą®³ąÆ" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®•ąÆ‚ą®øąÆ_பே" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "ą®…ą®ŸąÆą®²ą®¾ą®£ąÆą®Ÿą®æą®•ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - நிறைய ą®…ą®Ÿą®™ąÆą®•ą®³ąÆ" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®•ąÆą®°ą®¾ą®£ąÆą®ŸąÆ_ą®ŸąÆą®°ą®©ąÆą®•ąÆ" #: timezones.h:200 msgid "America/Grenada" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®•ąÆą®°ąÆ†ą®©ąÆ‡ą®Ÿą®¾" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®•ąÆą®•ąÆą®µą®¾ą®ŸąÆ†ą®²ąÆ‹ą®ŖąÆ" #: timezones.h:202 msgid "America/Guatemala" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®•ąÆą®•ąÆą®µą®¾ą®ŸąÆ†ą®®ą®¾ą®²ą®¾" #: timezones.h:203 msgid "America/Guayaquil" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®•ąÆą®Æą®¾ą®ƒą®•ąÆą®Æą®æą®²ąÆ" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 #: timezones.h:757 #: timezones.h:763 msgid "mainland" msgstr "ą®®ąÆˆą®Æą®æą®©ąÆą®²ą®¾ą®£ąÆą®ŸąÆ" #: timezones.h:206 msgid "America/Guyana" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/குயானா" #: timezones.h:207 msgid "America/Halifax" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®¹ąÆ†ą®²ąÆą®ƒą®Ŗą®¾ą®øąÆ" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "ą®…ą®ŸąÆą®²ą®¾ą®£ąÆą®Ÿą®æą®•ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - நோவா ą®øąÆą®•ąÆ‹ą®Ÿą®æą®Æą®¾(நிறைய ą®‡ą®Ÿą®™ąÆą®•ą®³ąÆ), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ஹவானா" #: timezones.h:211 msgid "America/Hermosillo" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®¹ąÆ†ą®°ąÆą®®ąÆ‹ą®šą®æą®²ąÆ‹" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "ą®®ą®µąÆą®£ąÆą®ŸąÆ†ą®ÆąÆą®©ąÆ நிலையான ą®ØąÆ‡ą®°ą®®ąÆ - ą®šąÆ‹ą®©ąÆ‹ą®°ą®¾" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®‡ą®ØąÆą®¤ą®æą®Æą®¾ą®©ą®¾/ą®‡ą®ØąÆą®¤ą®æą®Æą®¾ą®©ą®¾ą®ŖąÆ‹ą®²ąÆą®øąÆ" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "ą®•ą®æą®“ą®•ąÆą®•ą®¤ąÆą®¤ą®æą®Æ ą®ØąÆ‡ą®°ą®®ąÆ - ą®‡ą®©ąÆą®Ÿą®æą®Æą®¾ą®©ą®¾ - நிறைய ą®‡ą®Ÿą®™ąÆą®•ą®³ąÆ" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®‡ą®ØąÆą®¤ą®æą®Æą®¾ą®©ą®¾/ą®•ąÆą®©ą®¾ą®øąÆ" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "ą®šąÆ†ą®©ąÆą®ŸąÆą®°ą®²ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - ą®‡ą®©ąÆą®Ÿą®æą®Æą®¾ą®©ą®¾ - ą®øąÆą®Ÿą®¾ą®°ąÆą®•ąÆ€ ą®•ą®µąÆą®£ąÆą®Ÿą®æ" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®‡ą®ØąÆą®¤ą®æą®Æą®¾ą®©ą®¾/ą®®ą®°ąÆ‡ą®©ąÆą®•ąÆ‹" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "ą®•ą®æą®“ą®•ąÆą®•ą®¤ąÆą®¤ą®æą®Æ ą®ØąÆ‡ą®°ą®®ąÆ - ą®‡ą®©ąÆą®Ÿą®æą®Æą®¾ą®©ą®¾ - ą®•ąÆą®°ą®¾ą®µąÆą®ƒą®ŖąÆ‹ą®°ąÆą®ŸąÆ ą®•ą®µąÆą®£ąÆą®Ÿą®æ" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®‡ą®ØąÆą®¤ą®æą®Æą®¾ą®©ą®¾/ą®ŖąÆ€ą®ŸąÆą®Ÿą®°ąÆą®øąÆą®ŖąÆ†ą®°ąÆą®•ąÆ" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "ą®•ą®æą®“ą®•ąÆą®•ą®¤ąÆą®¤ą®æą®Æ ą®ØąÆ‡ą®°ą®®ąÆ - ą®‡ą®©ąÆą®Ÿą®æą®Æą®¾ą®©ą®¾ - ą®Ŗą®æą®•ąÆ ą®•ą®µąÆą®£ąÆą®Ÿą®æ" #: timezones.h:226 msgid "America/Indianapolis" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®‡ą®ØąÆą®¤ą®æą®Æą®¾ą®©ą®¾ą®ŖąÆ‹ą®²ą®æą®øąÆ" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®‡ą®ØąÆą®¤ą®æą®Æą®¾ą®©ą®¾/Tell_City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "ą®šąÆ†ą®©ąÆą®ŸąÆą®°ą®²ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - ą®‡ą®©ąÆą®Ÿą®æą®Æą®¾ą®©ą®¾ - ą®ŖąÆ†ą®°ąÆą®°ą®æ ą®•ą®µąÆą®£ąÆą®Ÿą®æ" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®‡ą®ØąÆą®¤ą®æą®Æą®¾ą®©ą®¾/ą®µą®æą®µąÆ‡ą®ÆąÆˆ" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "ą®•ą®æą®“ą®•ąÆą®•ą®¤ąÆą®¤ą®æą®Æ ą®ØąÆ‡ą®°ą®®ąÆ - ą®‡ą®©ąÆą®Ÿą®æą®Æą®¾ą®©ą®¾ - ą®šąÆą®µą®æą®ŸąÆą®øąÆ†ą®°ąÆą®²ą®¾ą®£ąÆą®ŸąÆ ą®•ą®µąÆą®£ąÆą®Ÿą®æ" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®‡ą®ØąÆą®¤ą®æą®Æą®¾ą®©ą®¾/ą®µą®æą®©ąÆą®šą®æą®©ąÆ†ą®øąÆ" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "ą®•ą®æą®“ą®•ąÆą®•ą®¤ąÆą®¤ą®æą®Æ ą®ØąÆ‡ą®°ą®®ąÆ - ą®‡ą®©ąÆą®Ÿą®æą®Æą®¾ą®©ą®¾ - ą®Ÿą®¾ą®µą®æą®ÆąÆą®øąÆ, ą®ŸąÆą®ŖąÆ‹ą®ÆąÆą®øąÆ, ą®•ą®©ąÆ‹ą®øąÆ & ą®®ą®¾ą®°ąÆą®Ÿą®æą®©ąÆ ą®•ą®µąÆą®£ąÆą®Ÿą®æą®øąÆ" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®‡ą®ØąÆą®¤ą®æą®Æą®¾ą®©ą®¾/ą®µą®æą®©ąÆą®©ą®¾ą®®ąÆ‡ą®•ąÆ" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "ą®•ą®æą®“ą®•ąÆą®•ą®¤ąÆą®¤ą®æą®Æ ą®ØąÆ‡ą®°ą®®ąÆ - ą®‡ą®©ąÆą®Ÿą®æą®Æą®¾ą®©ą®¾ - ą®ŖąÆą®²ą®¾ą®øąÆą®•ą®æ ą®•ą®µąÆą®£ąÆą®Ÿą®æ" #: timezones.h:239 msgid "America/Inuvik" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®‡ą®©ąÆą®µą®æą®•ąÆ" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "ą®®ą®µąÆą®£ąÆą®ŸąÆ†ą®ÆąÆą®©ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - ą®®ąÆ‡ą®±ąÆą®•ąÆ ą®µą®Ÿą®®ąÆ‡ą®±ąÆą®•ąÆ ą®ŸąÆ†ą®°ąÆą®ŸąÆ‹ą®°ą®æą®Æą®øąÆ" #: timezones.h:242 msgid "America/Iqaluit" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®‡ą®•ąÆą®•ą®²ąÆą®Æą®æą®ŸąÆ" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "ą®•ą®æą®“ą®•ąÆą®•ą®¤ąÆą®¤ą®æą®Æ ą®ØąÆ‡ą®°ą®®ąÆ - ą®•ą®æą®“ą®•ąÆą®•ąÆ ą®ØąÆą®©ą®¾ą®µąÆą®ŸąÆ - நிறைய ą®‡ą®Ÿą®™ąÆą®•ą®³ąÆ" #: timezones.h:245 msgid "America/Jamaica" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®œą®®ąÆ‡ą®•ąÆą®•ą®¾" #: timezones.h:246 msgid "America/Jujuy" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ஜுஜுவி" #: timezones.h:247 msgid "America/Juneau" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®œąÆą®©ąÆ‡ą®ÆąÆ" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "ą®…ą®²ą®¾ą®øąÆą®•ą®¾ ą®ØąÆ‡ą®°ą®®ąÆ - ą®…ą®²ą®¾ą®øąÆą®•ą®¾ ą®Ŗą®¾ą®©ąÆą®¹ą®¾ą®©ąÆą®Ÿą®æą®²ąÆ" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®•ąÆ†ą®£ąÆą®Ÿą®•ąÆą®•ą®æ/ą®²ąÆ‚ą®Æą®æą®øąÆą®µą®æą®²ąÆ€" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "ą®•ą®æą®“ą®•ą®¤ąÆą®¤ą®æą®Æ ą®ØąÆ‡ą®°ą®®ąÆ - ą®•ąÆ†ą®£ąÆą®Ÿą®•ąÆą®•ą®æ - ą®²ąÆ‚ą®Æą®æą®øąÆą®µą®æą®²ąÆ€ą®ŖąÆ பகுதி" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®•ąÆ†ą®£ąÆą®Ÿą®•ąÆą®•ą®æ/ą®®ą®¾ą®ØąÆą®¤ą®æą®šąÆ†ą®²ąÆą®²ąÆ‹" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "ą®•ą®æą®“ą®•ąÆą®•ą®¤ąÆą®¤ą®æą®Æ ą®ØąÆ‡ą®°ą®®ąÆ - ą®•ąÆ†ą®©ąÆą®¤ąÆą®•ąÆą®•ąÆˆ - ą®µąÆˆą®ÆąÆą®©ąÆ ą®•ą®µąÆą®£ąÆą®Ÿą®æ" #: timezones.h:256 msgid "America/Knox_IN" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®•ąÆą®©ą®¾ą®•ąÆą®øąÆ_ą®‡ą®©ąÆ" #: timezones.h:257 msgid "America/La_Paz" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/லா_ą®Ŗą®¾ą®øąÆ" #: timezones.h:258 msgid "America/Lima" msgstr "ą®…ą®®ą®°ą®æą®•ąÆą®•ą®¾/லிமா" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®²ą®¾ą®øąÆ_ą®ą®œą®²ąÆ†ą®øąÆ" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ ą®ØąÆ‡ą®°ą®®ąÆ" #: timezones.h:262 msgid "America/Louisville" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®²ąÆ‚ą®Æą®æą®øąÆą®µą®æą®²ąÆ€" #: timezones.h:263 msgid "America/Maceio" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®®ą®•ą®ÆąÆą®ÆąÆ‹" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "ą®…ą®²ą®¾ą®•ąÆ‹ą®Æą®øąÆ, ą®šąÆ†ą®°ąÆą®•ą®æą®ŖąÆ€" #: timezones.h:266 msgid "America/Managua" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/மானகுவா" #: timezones.h:267 msgid "America/Manaus" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®®ą®©ąÆŒą®øąÆ" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "E ą®…ą®®ą®¾ą®øąÆ‹ą®©ą®¾ą®øąÆ" #: timezones.h:270 msgid "America/Marigot" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®®ą®¾ą®°ą®æą®•ąÆ‹ą®ŸąÆ" #: timezones.h:271 msgid "America/Martinique" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®®ą®¾ą®°ąÆą®Ÿą®æą®©ą®æą®•ąÆ" #: timezones.h:272 msgid "America/Matamoros" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®®ą®ŸąÆą®Ÿą®¾ą®®ąÆ‹ą®°ąÆ‹ą®øąÆ" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "ą®ÆąÆą®Žą®øąÆ ą®šąÆ†ą®©ąÆą®ŸąÆą®°ą®²ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - ą®•ąÆ‹ą®¹ąÆą®ÆąÆą®²ą®¾, ą®¤ąÆą®°ą®©ąÆą®•ąÆ‹, நியுவோ ą®²ą®æą®ÆąÆ‹ą®©ąÆ, ą®¤ą®¾ą®®ąÆą®²ą®æą®Ŗą®¾ą®øąÆ ą®ÆąÆą®Žą®øąÆ ą®Žą®²ąÆą®²ąÆˆ அருகே" #: timezones.h:275 msgid "America/Mazatlan" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®®ą®øą®Ÿą®²ą®©ąÆ" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "ą®®ą®µąÆą®£ąÆą®ŸąÆ†ą®ÆąÆą®©ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - S பாஜா, ą®Øą®Æą®¾ą®°ą®æą®ŸąÆ, ą®šą®æą®©ą®¾ą®²ąÆŒą®µąÆ" #: timezones.h:278 msgid "America/Mendoza" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®®ąÆ†ą®£ąÆą®ŸąÆ‹ą®øą®¾" #: timezones.h:279 msgid "America/Menominee" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/மெமோமினீ" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "ą®šąÆ†ą®©ąÆą®ŸąÆą®°ą®²ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - ą®®ą®æą®šą®æą®•ą®©ąÆ - ą®Ÿą®æą®•ąÆą®•ą®æą®©ąÆą®šą®©ąÆ, ą®•ąÆ‹ą®œąÆą®Ŗą®æą®•ąÆ, ą®ą®Æą®©ąÆ& ą®®ąÆ†ą®©ąÆ‹ą®®ą®æą®©ąÆą®©ąÆ€ ą®•ą®µąÆą®£ąÆą®ŸąÆ€ą®øąÆ" #: timezones.h:282 msgid "America/Merida" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®®ąÆ†ą®°ą®æą®Ÿą®¾" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "ą®šąÆ†ą®©ąÆą®ŸąÆą®°ą®²ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - ą®•ą®¾ą®®ąÆą®ŖąÆ†ą®•ąÆą®šąÆ‡, ą®ÆąÆą®•ą®¾ą®¤ą®©ąÆ" #: timezones.h:285 msgid "America/Mexico_City" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®®ąÆ†ą®•ąÆą®šą®æą®•ąÆ‹_சிடி" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "ą®šąÆ†ą®©ąÆą®ŸąÆą®°ą®²ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - நிறைய ą®‡ą®Ÿą®™ąÆą®•ą®³ąÆ" #: timezones.h:288 msgid "America/Miquelon" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®®ą®æą®•ąÆą®µąÆ†ą®²ąÆŠą®©ąÆ" #: timezones.h:289 msgid "America/Moncton" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®®ą®¾ą®™ąÆą®•ąÆą®Ÿą®¾ą®©ąÆ" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "ą®…ą®ŸąÆą®²ą®¾ą®£ąÆą®Ÿą®æą®•ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - நியூ ą®ƒą®ŖąÆą®°ąÆ‚ą®©ąÆą®øąÆą®µą®æą®•ąÆ" #: timezones.h:292 msgid "America/Monterrey" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®®ąÆ‹ą®ØąÆą®ŸąÆ†ą®°ą®æ" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from US border" msgstr "ą®®ąÆ†ą®•ąÆą®øą®æą®•ą®©ąÆ ą®šąÆ†ą®©ąÆą®ŸąÆą®°ą®²ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - ą®•ąÆ‹ą®¹ąÆą®ÆąÆą®²ą®¾, ą®¤ąÆą®°ą®©ąÆą®•ąÆ‹, நியுவோ ą®²ą®æą®ÆąÆ‹ą®©ąÆ, ą®¤ą®¾ą®®ąÆą®²ą®æą®Ŗą®¾ą®øąÆ ą®ÆąÆą®Žą®øąÆ ą®Žą®²ąÆą®²ąÆˆą®Æą®æą®²ą®æą®°ąÆą®ØąÆą®¤ąÆ வெளியே" #: timezones.h:295 msgid "America/Montevideo" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®®ą®¾ą®ØąÆą®ŸąÆ‡ą®µąÆ€ą®Ÿą®æą®ÆąÆ‹" #: timezones.h:296 msgid "America/Montreal" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®®ą®¾ą®ØąÆą®ŸąÆą®°ą®æą®Æą®²ąÆ" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "ą®•ą®æą®“ą®•ąÆą®•ą®¤ąÆą®¤ą®æą®Æ ą®ØąÆ‡ą®°ą®®ąÆ - ą®•ąÆą®ÆąÆ‚ą®ŖąÆ†ą®•ąÆ -நிறைய ą®‡ą®Ÿą®™ąÆą®•ą®³ąÆ" #: timezones.h:299 msgid "America/Montserrat" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®®ą®¾ą®ØąÆą®¤ąÆą®šąÆ‡ą®°ą®¾ą®ŸąÆ" #: timezones.h:300 msgid "America/Nassau" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®Øą®¾ą®šą®¾ą®µąÆ" #: timezones.h:301 msgid "America/New_York" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/நியூ_ą®Æą®¾ą®°ąÆą®•ąÆ" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "ą®•ą®æą®“ą®•ąÆą®•ą®¤ąÆą®¤ą®æą®Æ ą®ØąÆ‡ą®°ą®®ąÆ" #: timezones.h:304 msgid "America/Nipigon" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®ØąÆ†ą®ŖąÆą®Ŗą®æą®•ąÆą®•ą®æą®µą®¾ą®©ąÆ" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "ą®•ą®æą®“ą®•ąÆą®•ą®¤ąÆą®¤ą®æą®Æ ą®ØąÆ‡ą®°ą®®ąÆ - ą®†ą®£ąÆą®Ÿą®°ą®æą®ÆąÆ‹ & ą®•ąÆą®ÆąÆ‚ą®ŖąÆ†ą®•ąÆ - ą®‡ą®Ÿą®™ąÆą®•ą®³ąÆ ą®‡ą®¤ąÆˆ DST 1967-1973 ą®•ą®µą®©ą®æą®•ąÆą®•ą®µą®æą®²ąÆą®²ąÆˆ" #: timezones.h:307 msgid "America/Nome" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/நேமி" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "ą®…ą®²ą®¾ą®øąÆą®•ą®¾ ą®ØąÆ‡ą®°ą®®ąÆ - ą®®ąÆ‡ą®±ąÆą®•ąÆ ą®…ą®²ą®¾ą®øąÆą®•ą®¾" #: timezones.h:310 msgid "America/Noronha" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®ØąÆŠą®°ąÆŠą®©ąÆą®¹" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "ą®…ą®ŸąÆą®²ą®¾ą®£ąÆą®Ÿą®æą®•ąÆ ą®¤ąÆ€ą®µąÆą®•ą®³ąÆ" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®Øą®¾ą®°ąÆą®¤ąÆ_ą®Ÿą®•ąÆą®•ąÆ‹ą®Ÿą®¾/ą®®ąÆˆą®Æą®®ąÆ" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "ą®šąÆ†ą®©ąÆą®ŸąÆą®°ą®²ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - ą®µą®Ÿą®•ąÆą®•ąÆ ą®Ÿą®•ąÆ‹ą®Ÿą®¾ - ą®’ą®²ą®æą®µąÆ†ą®°ąÆ ą®•ą®µąÆą®£ąÆą®Ÿą®æ" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/வட_ą®Ÿą®•ąÆą®•ąÆ‹ą®Ÿą®¾/புது_ą®šą®²ąÆ€ą®®ąÆ" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "ą®šąÆ†ą®©ąÆą®ŸąÆą®°ą®²ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - ą®µą®Ÿą®•ąÆą®•ąÆ ą®Ÿą®•ąÆ‹ą®Ÿą®¾ - ą®®ą®¾ą®°ąÆą®¤ą®¾ą®©ąÆ ą®•ą®µąÆą®£ąÆą®Ÿą®æ (ą®®ą®©ąÆą®Ÿą®©ąÆ ą®Ŗą®•ąÆą®¤ą®æą®ÆąÆˆą®¤ąÆ தவிர)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/மானகுவா" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "ą®ÆąÆą®Žą®øąÆ ą®®ą®µąÆą®£ąÆą®ŸąÆ†ą®ÆąÆą®©ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - சிஹுயாஹுயா ą®ÆąÆą®Žą®øąÆ ą®Žą®²ąÆą®²ąÆˆ அருகே" #: timezones.h:322 msgid "America/Panama" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/பனாமா" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®Ŗą®©ąÆą®•ą®æą®©ą®æą®°ąÆą®ŸąÆą®Ÿą®™ąÆ" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "ą®•ą®æą®“ą®•ąÆą®•ą®¤ąÆą®¤ą®æą®Æ ą®ØąÆ‡ą®°ą®®ąÆ - ą®Ŗą®™ąÆą®©ą®æą®°ąÆą®¤ąÆą®™ąÆ, ą®ØąÆą®©ą®¾ą®µąÆą®ŸąÆ" #: timezones.h:326 msgid "America/Paramaribo" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/பரமரிபொ" #: timezones.h:327 msgid "America/Phoenix" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®ƒą®ŖąÆ‹ą®©ą®æą®•ąÆą®øąÆ" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "ą®®ą®µąÆą®£ąÆą®ŸąÆ†ą®Æą®æą®©ąÆ நிலையான ą®ØąÆ‡ą®°ą®®ąÆ - அரிஸோனா" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®ŖąÆ‹ą®°ąÆą®ŸąÆ_ą®”_ą®ŖąÆą®°ą®æą®øąÆ" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®ŖąÆ‹ą®°ąÆą®ŸąÆŠ_ą®Žą®•ąÆą®°ąÆ†" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®ŖąÆ‹ą®°ąÆą®ŸąÆ_ą®†ą®ƒą®ŖąÆ_ą®øąÆą®ŖąÆ‡ą®ÆąÆą®©ąÆ" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®ŖąÆ‹ą®°ąÆą®ŸąÆ‹_ą®µąÆ†ą®²ąÆą®¹ąÆ‹" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "ą®°ąÆ‹ą®©ąÆą®ŸąÆ‹ą®©ą®æą®Æą®¾" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®ŖąÆą®ÆąÆ†ą®°ąÆą®ŸąÆ‹_ą®°ą®æą®•ąÆŠ" #: timezones.h:337 msgid "America/Rainy_River" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®°ą®¾ą®ÆąÆą®©ą®æ_ą®°ą®æą®µą®°ąÆ" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "ą®šąÆ†ą®©ąÆą®ŸąÆą®°ą®²ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - ą®°ąÆ†ą®ÆąÆą®©ą®æ ą®°ą®æą®µą®°ąÆ & ą®ƒą®ŖąÆ‹ą®°ąÆą®ŸąÆ ą®ƒą®ŖąÆą®°ą®¾ą®©ąÆą®šąÆ†ą®øąÆ, ą®†ą®©ąÆą®Ÿą®¾ą®°ą®æą®ÆąÆ‹" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®°ą®¾ą®©ąÆą®•ą®æą®©ąÆ_ą®‡ą®©ąÆą®²ąÆ†ą®ŸąÆ" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "ą®šąÆ†ą®©ąÆą®ŸąÆą®°ą®²ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - ą®šąÆ†ą®©ąÆą®ŸąÆą®°ą®²ąÆ ą®ØąÆą®©ą®¾ą®µąÆą®ŸąÆ" #: timezones.h:343 msgid "America/Recife" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®°ąÆ†ą®•ą®æą®ŖąÆą®¹ą®æ" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "ą®ŖąÆ†ą®°ąÆą®©ą®¾ą®®ąÆą®ŖąÆą®•ąÆ‹" #: timezones.h:346 msgid "America/Regina" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ரிஜினா" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "ą®šąÆ†ą®©ąÆą®ŸąÆą®°ą®²ąÆ நிலையான ą®ØąÆ‡ą®°ą®®ąÆ - ą®šą®¾ą®øąÆą®•ą®ŸąÆą®šąÆ‡ą®µą®©ąÆ - நிறைய ą®‡ą®Ÿą®™ąÆą®•ą®³ąÆ " #: timezones.h:349 msgid "America/Resolute" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®°ą®æą®šąÆ‹ą®²ąÆą®ŸąÆ" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "ą®•ą®æą®“ą®•ąÆą®•ą®¤ąÆą®¤ą®æą®Æ நிலையான ą®ØąÆ‡ą®°ą®®ąÆ - ą®°ąÆ€ą®šąÆ‹ą®²ąÆą®ŸąÆ, ą®ØąÆą®©ą®¾ą®µąÆą®ŸąÆ " #: timezones.h:352 msgid "America/Rio_Branco" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ரியொ_ą®ŖąÆą®°ą®¾ą®©ąÆą®•ąÆ‹" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "ą®ą®•ąÆą®•ą®°ąÆ" #: timezones.h:355 msgid "America/Rosario" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®°ąÆ‹ą®šą®¾ą®°ą®æą®ÆąÆ‹" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®šą®¾ą®©ąÆą®Ÿą®¾_ą®‡ą®šą®ŖąÆ†ą®²ąÆ" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "ą®®ąÆ†ą®•ąÆą®šą®æą®•ą®©ąÆ ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - பாஜா ą®•ą®²ą®æą®ƒą®ŖąÆ‹ą®°ąÆą®©ą®æą®Æą®¾ ą®ÆąÆą®øąÆ ą®Žą®²ąÆą®²ąÆˆą®•ąÆą®•ąÆ வெளியே" #: timezones.h:359 msgid "America/Santarem" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®šą®¾ą®©ąÆą®Ÿą®°ąÆ†ą®®ąÆ" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "W பாரா" #: timezones.h:362 msgid "America/Santiago" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®šą®¾ą®ØąÆą®Ÿą®æą®Æą®¾ą®•ąÆŠ" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®šą®¾ą®£ąÆą®ŸąÆ‹_ą®Ÿą®¾ą®®ą®æą®©ąÆą®•ąÆŠ" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/சவொ_பாடொ" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "S & SE ą®ƒą®ŖąÆą®°ąÆ‡ą®šą®æą®²ąÆ (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®øąÆą®•ąÆ‹ą®°ąÆą®øąÆą®ŖąÆˆą®šą®£ąÆą®ŸąÆ" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "ą®øąÆą®•ąÆ‹ą®°ąÆ†ą®øąÆą®ŖąÆˆą®šą®©ąÆą®ŸąÆ / ą®‡ą®ŸąÆą®ŸąÆ‹ą®•ąÆą®•ąÆ‹ą®°ąÆą®ŸąÆ‚ą®°ąÆą®®ą®æą®ŸąÆ" #: timezones.h:372 msgid "America/Shiprock" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®·ą®æą®ŖąÆą®°ą®¾ą®•ąÆ" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "ą®®ą®µąÆą®£ąÆą®ŸąÆ†ą®ÆąÆą®©ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - ą®Øą®µą®¾ą®œąÆ‹" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/St_Barthelemy" #: timezones.h:376 msgid "America/St_Johns" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/St_ą®œą®¾ą®©ąÆą®øąÆ" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "ą®Øą®æą®ÆąÆ‚ą®Ŗą®µą®©ąÆą®ŸąÆą®²ą®¾ą®£ąÆą®ŸąÆ ą®ØąÆ‡ą®°ą®®ąÆ, SE ą®²ą®ŖąÆą®°ą®¾ą®Ÿą®°ąÆą®®ąÆ ą®šąÆ‡ą®°ąÆą®¤ąÆą®¤ąÆ" #: timezones.h:379 msgid "America/St_Kitts" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/" #: timezones.h:380 msgid "America/St_Lucia" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/St_ą®²ąÆ‚ą®šą®æą®Æ" #: timezones.h:381 msgid "America/St_Thomas" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/St_ą®¤ą®¾ą®®ą®øąÆ" #: timezones.h:382 msgid "America/St_Vincent" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/St_ą®µą®æą®£ąÆą®šąÆ†ą®ØąÆą®ŸąÆ" #: timezones.h:383 msgid "America/Swift_Current" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®øąÆą®µą®æą®ƒą®ŖąÆą®ŸąÆ_ą®•ą®°ą®£ąÆą®ŸąÆ" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "ą®šąÆ†ą®©ąÆą®ŸąÆą®°ą®²ąÆ நிலையான ą®ØąÆ‡ą®°ą®®ąÆ - ą®šą®¾ą®øąÆą®•ą®ŸąÆą®šąÆ‡ą®µą®©ąÆ - ą®®ą®¤ąÆą®¤ą®æą®Æą®®ąÆ‡ą®±ąÆą®•ąÆ" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/" #: timezones.h:387 msgid "America/Thule" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/துளி" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "தூலீ / ą®Ŗą®æą®¤ąÆą®ƒą®Ŗą®æą®•ąÆ" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®¤ą®£ąÆą®Ÿą®°ąÆ_பே" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "ą®•ą®æą®“ą®•ąÆą®•ą®¤ąÆą®¤ą®æą®Æ ą®ØąÆ‡ą®°ą®®ąÆ - ą®¤ą®©ąÆą®Ÿą®°ąÆ ą®ŖąÆ†ą®ÆąÆ, ą®…ą®©ąÆą®Ÿą®¾ą®°ą®æą®ÆąÆ‹" #: timezones.h:393 msgid "America/Tijuana" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/டைஜுனா" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "ą®ÆąÆą®Žą®øąÆ ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - பாஜா ą®•ą®²ą®æą®ƒą®ŖąÆ‹ą®°ąÆą®©ą®æą®Æą®¾ ą®ÆąÆą®Žą®øąÆ ą®Žą®²ąÆą®²ąÆˆ அருகே" #: timezones.h:396 msgid "America/Toronto" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®ŸąÆ†ą®°ą®£ąÆą®ŸąÆ‹" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "ą®•ą®æą®“ą®•ąÆą®•ą®¤ąÆą®¤ą®æą®Æ ą®ØąÆ‡ą®°ą®®ąÆ - ą®…ą®©ąÆą®Ÿą®¾ą®°ą®æą®ÆąÆ‹ - நிறைய ą®‡ą®Ÿą®™ąÆą®•ą®³ąÆ" #: timezones.h:399 msgid "America/Tortola" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®Ÿą®¾ą®°ąÆą®ŸąÆ‹ą®²ą®¾" #: timezones.h:400 msgid "America/Vancouver" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®µąÆ†ą®©ąÆą®•ąÆ‹ą®µą®°ąÆ" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "ą®•ą®šą®æą®Ŗą®æą®•ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - ą®®ąÆ‡ą®±ąÆą®•ąÆ ą®Ŗą®æą®°ą®æą®ŸąÆą®ŸąÆ€ą®·ąÆ ą®•ąÆŠą®²ą®¾ą®®ąÆą®Ŗą®æą®Æą®¾" #: timezones.h:403 msgid "America/Virgin" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®µą®æą®°ąÆą®œą®æą®©ąÆ" #: timezones.h:404 msgid "America/Whitehorse" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®µąÆ†ą®³ąÆą®³ąÆˆą®•ąÆą®¤ą®æą®°ąÆˆ" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - ą®¤ąÆ†ą®©ąÆ ą®ÆąÆą®•ąÆ‹ą®©ąÆ" #: timezones.h:407 msgid "America/Winnipeg" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®µą®æą®©ąÆą®©ą®æą®ŖąÆ†ą®•ąÆ" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "ą®šąÆ†ą®©ąÆą®ŸąÆą®°ą®²ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - ą®®ą®£ą®æą®ŸąÆ‹ą®Ŗą®¾ & ą®®ąÆ‡ą®±ąÆą®•ąÆ ą®†ą®©ąÆą®Ÿą®°ą®æą®ÆąÆ‹" #: timezones.h:410 msgid "America/Yakutat" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®Æą®•ąÆą®Ÿą®¾ą®ŸąÆ" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "ą®…ą®²ą®¾ą®øąÆą®•ą®¾ ą®ØąÆ‡ą®°ą®®ąÆ - ą®…ą®²ą®¾ą®øąÆą®•ą®¾ ą®Ŗą®¾ą®©ąÆą®¹ą®¾ą®©ąÆą®Ÿą®æą®²ąÆ ą®ØąÆ†ą®•ąÆ" #: timezones.h:413 msgid "America/Yellowknife" msgstr "ą®…ą®®ąÆ†ą®°ą®æą®•ąÆą®•ą®¾/ą®Žą®²ąÆą®²ąÆ‹ą®ØąÆˆą®ŖąÆą®ŖąÆ" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "ą®®ą®µąÆą®£ąÆą®ŸąÆ†ą®ÆąÆą®©ąÆ ą®ØąÆ‡ą®°ą®®ąÆ - ą®šąÆ†ą®©ąÆą®ŸąÆą®°ą®²ąÆ ą®µą®Ÿą®®ąÆ‡ą®±ąÆą®•ąÆ ą®ŸąÆ†ą®°ąÆą®ŸąÆ‹ą®°ą®æą®Æą®øąÆ" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "ą®…ą®£ąÆą®Ÿą®¾ą®°ąÆą®Ÿą®æą®•ą®¾/ą®•ą®¾ą®šąÆ‡" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "ą®•ą®¾ą®šąÆ‡ ą®øąÆą®ŸąÆ‡ą®·ą®©ąÆ, ą®Ŗą®¾ą®ÆąÆą®²ąÆ† ą®ŖąÆ†ą®©ą®æą®©ąÆą®šąÆ‚ą®²ą®¾" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "ą®…ą®£ąÆą®Ÿą®¾ą®°ąÆą®Ÿą®æą®•ą®¾/ą®ŸąÆ‡ą®µą®æą®øąÆ" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "ą®Ÿą®¾ą®µą®æą®øąÆ ą®øąÆą®ŸąÆ‡ą®·ą®©ąÆ, ą®µąÆ†ą®øąÆą®ŸąÆą®ŖąÆ‹ą®²ąÆą®ŸąÆ ą®¹ą®æą®²ąÆą®øąÆ" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "ą®…ą®£ąÆą®Ÿą®¾ą®°ąÆą®Ÿą®æą®•ą®¾/ą®ŸąÆą®®ąÆŒą®ØąÆą®ŸąÆą®Ÿą®æą®‰ą®°ąÆą®µą®æą®²ą®æ" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "ą®¤ąÆą®®ąÆ‹ą®©ąÆą®ŸąÆ-டி'ą®‰ą®°ąÆą®µą®æą®²ąÆą®²ąÆ€ ą®øąÆą®ŸąÆ‡ą®·ą®©ąÆ, ą®ŸąÆ†ą®°ąÆą®°ąÆ€ ą®…ą®ŸąÆ‡ą®²ąÆˆ" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "ą®…ą®£ąÆą®Ÿą®¾ą®°ąÆą®Ÿą®æą®•ą®¾/ą®®ąÆ†ą®•ąÆą®•ąÆą®ÆąÆą®°ąÆ‡" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "ą®®ąÆ†ą®•ąÆą®•ąÆą®°ąÆ‡ą®Æą®æ தீவு ą®øąÆą®ŸąÆ‡ą®·ą®©ąÆ, ą®®ąÆ†ą®•ąÆą®•ąÆą®°ąÆ‡ą®Æą®æ தீவு" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "ą®…ą®£ąÆą®Ÿą®¾ą®°ąÆą®Ÿą®æą®•ą®¾/ą®®ą®¾ą®µąÆą®šą®©ąÆ" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "ą®®ą®¾ą®µąÆą®šą®©ąÆ ą®øąÆą®ŸąÆ‡ą®·ą®©ąÆ, ą®¹ąÆ‹ą®²ąÆą®®ąÆ ą®®ąÆ†ą®ÆąÆ" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "ą®…ą®£ąÆą®Ÿą®¾ą®°ąÆą®Ÿą®æą®•ą®¾/ą®®ąÆ†ą®•ąÆą®®ąÆą®°ąÆą®ŸąÆ‹" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "ą®®ąÆ†ą®•ąÆą®®ąÆą®°ąÆą®ŸąÆ‹ ą®øąÆą®ŸąÆ‡ą®·ą®©ąÆ, ą®°ąÆ‹ą®øąÆ தீவு" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "ą®…ą®£ąÆą®Ÿą®¾ą®°ąÆą®Ÿą®æą®•ą®¾/ą®Ŗą®¾ą®²ąÆą®®ąÆ‡ą®°ąÆ" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "ą®Ŗą®¾ą®²ąÆą®®ąÆ†ą®°ąÆ ą®øąÆą®ŸąÆ‡ą®·ą®©ąÆ, ą®…ą®©ąÆą®µąÆ†ą®°ąÆą®øąÆ தீவு" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "ą®…ą®£ąÆą®Ÿą®¾ą®°ąÆą®Ÿą®æą®•ą®¾/ą®°ąÆ‚ą®¤ąÆą®¤ą®°ą®¾" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "ரோதெரா ą®øąÆą®ŸąÆ‡ą®·ą®©ąÆ, ą®…ą®ŸąÆ‡ą®²ą®¾ą®ÆąÆą®ŸąÆ‡ தீவு" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "ą®…ą®£ąÆą®Ÿą®¾ą®°ąÆą®Ÿą®æą®•ą®¾/ą®šą®µąÆą®¤ąÆ_ą®ŖąÆŠą®²ąÆ" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "ą®…ą®®ąÆą®©ąÆą®ŸąÆą®šąÆ†ą®©ąÆ-ą®øąÆą®•ąÆ‹ą®ŸąÆ ą®øąÆą®ŸąÆ‡ą®·ą®©ąÆ, ą®¤ąÆ†ą®±ąÆą®•ąÆ ą®ŖąÆ‹ą®²ąÆ" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "ą®…ą®£ąÆą®Ÿą®¾ą®°ąÆą®Ÿą®æą®•ą®¾/ą®øąÆą®ÆąÆŠą®µą®¾" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "ą®šąÆˆą®ÆąÆ‹ą®µą®¾ ą®øąÆą®ŸąÆ‡ą®·ą®©ąÆ, E ą®†ą®©ąÆą®•ąÆą®²ąÆ I" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "ą®…ą®£ąÆą®Ÿą®¾ą®°ąÆą®Ÿą®æą®•ą®¾/ą®µą®¾ą®øąÆą®Ÿą®¾ą®•ąÆ" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "ą®µąÆ‹ą®øąÆą®ŸąÆ‹ą®•ąÆ ą®øąÆą®ŸąÆ‡ą®·ą®©ąÆ, S ą®®ąÆ†ą®•ąÆą®©ąÆ†ą®Ÿą®æą®•ąÆ ą®ŖąÆ‹ą®²ąÆ" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "ą®†ą®°ąÆą®Ÿą®æą®•ąÆ/ą®²ą®¾ą®™ąÆą®Æą®æą®Æą®°ąÆą®Ŗą®Æą®©ąÆ" #: timezones.h:450 msgid "Asia/Aden" msgstr "ą®†ą®šą®æą®Æą®¾/ą®…ą®Ÿą®æą®©ąÆ" #: timezones.h:451 msgid "Asia/Almaty" msgstr "ą®†ą®šą®æą®Æą®¾/ą®…ą®²ąÆą®®ą®Ÿą®æ" #: timezones.h:454 msgid "Asia/Amman" msgstr "ą®†ą®šą®æą®Æą®¾/ą®…ą®®ą®¾ą®©ąÆ" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "ą®†ą®šą®æą®Æą®¾/ą®…ą®©ą®¾ą®ŸąÆˆą®Æą®°ąÆ" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "ą®®ą®¾ą®øąÆą®•ąÆ‹+08 - ą®ŖąÆ†ą®°ą®æą®™ąÆ ą®•ą®Ÿą®²ąÆ" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "ą®†ą®šą®æą®Æą®¾/ą®…ą®•ąÆą®ŸąÆą®µą®¾" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "ą®…ą®ŸąÆˆą®°ą®¾ą®µąÆ (ą®…ą®Ÿą®æą®°ą®¾ą®µąÆ, ą®•ąÆą®°ąÆ'ą®ÆąÆ‡ą®µąÆ), ą®®ą®¾ą®™ąÆą®•ąÆˆą®øąÆą®Ÿą®µąÆ (ą®®ą®©ąÆą®•ą®æą®øąÆą®Ÿą®µąÆ)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "ą®†ą®šą®æą®Æą®¾/ą®…ą®•ąÆą®ŸąÆ‹ą®Ŗą®æ" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "ą®…ą®•ąÆą®ŸąÆ‹ą®ŖąÆ (ą®…ą®•ąÆą®ŸąÆ‹ą®ŖąÆ)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "ą®†ą®šą®æą®Æą®¾/ą®†ą®¹ą®•ą®¾ą®Ŗą®¾ą®ŸąÆ" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "ą®†ą®šą®æą®Æą®¾/ą®…ą®·ąÆą®¹ą®¾ą®Ŗą®¾ą®ŸąÆ" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "ą®†ą®šą®æą®Æą®¾/ą®Ŗą®¾ą®•ąÆą®¤ą®¾ą®¤ąÆ" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "ą®†ą®šą®æą®Æą®¾/ą®Ŗą®¾ą®¹ąÆą®°ąÆ‡ą®Æą®æą®©ąÆ" #: timezones.h:468 msgid "Asia/Baku" msgstr "ą®†ą®šą®æą®Æą®¾/பாகு" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "ą®†ą®šą®æą®Æą®¾/ą®Ŗą®¾ą®™ąÆą®•ą®¾ą®•ąÆ" #: timezones.h:470 msgid "Asia/Beirut" msgstr "ą®†ą®šą®æą®Æą®¾/ą®ŖąÆ†ą®Æą®æą®°ą®ŸąÆ" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "ą®†ą®šą®æą®Æą®¾/ą®Ŗą®æą®·ąÆ†ą®•ąÆ" #: timezones.h:472 msgid "Asia/Brunei" msgstr "ą®†ą®šą®æą®Æą®¾/ą®ŖąÆą®ŸąÆ‚ą®©ąÆˆ" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "ą®†ą®šą®æą®Æą®¾/ą®•ą®²ąÆą®•ą®ŸąÆą®Ÿą®¾" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "ą®†ą®šą®æą®Æą®¾/ą®šąÆŠą®Æą®æą®Ŗą®¾ą®²ąÆą®šą®¾ą®©ąÆ" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "ą®ŸąÆ‹ą®°ąÆą®©ąÆ‹ą®ŸąÆ, ą®šąÆą®•ąÆą®¹ąÆą®Ŗą®¾ą®ŸąÆą®Ÿą®°ąÆ" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "ą®†ą®šą®æą®Æą®¾/ą®šąÆ‹ą®©ąÆą®™ąÆą®•ą®æą®©ąÆą®™ąÆ" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "ą®®ą®¤ąÆą®¤ą®æą®Æ ą®šąÆ€ą®©ą®¾ - ą®šą®æą®šąÆą®Æą®©ąÆ, ą®ÆąÆą®©ą®¾ą®©ąÆ, ą®•ąÆą®Æą®©ąÆą®™ąÆą®øą®æ, ą®·ą®¾ą®©ąÆą®øą®æ, ą®•ąÆą®ÆąÆą®øąÆą®¹ąÆŠą®µąÆ, ą®®ą®±ąÆą®±ąÆą®®ąÆ." #: timezones.h:480 msgid "Asia/Chungking" msgstr "ą®†ą®šą®æą®Æą®¾/ą®šą®¾ą®™ąÆą®•ą®æą®™ąÆ" #: timezones.h:481 msgid "Asia/Colombo" msgstr "ą®†ą®šą®æą®Æą®¾/ą®•ąÆŠą®“ąÆą®®ąÆą®ŖąÆ" #: timezones.h:482 msgid "Asia/Dacca" msgstr "ą®†ą®šą®æą®Æą®¾/ą®Ÿą®¾ą®•ą®¾" #: timezones.h:483 msgid "Asia/Damascus" msgstr "ą®†ą®šą®æą®Æą®¾/ą®Ÿą®®ą®¾ą®øąÆą®•ą®øąÆ" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "ą®†ą®šą®æą®Æą®¾/ą®Ÿą®¾ą®•ą®¾" #: timezones.h:485 msgid "Asia/Dili" msgstr "ą®†ą®šą®æą®Æą®¾/ą®Ÿą®æą®²ąÆą®²ą®æ" #: timezones.h:486 msgid "Asia/Dubai" msgstr "ą®†ą®šą®æą®Æą®¾/ą®¤ąÆą®Ŗą®¾ą®ÆąÆ" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "ą®†ą®šą®æą®Æą®¾/ą®¤ąÆą®øąÆą®šą®©ąÆą®Ŗą®æ" #: timezones.h:488 msgid "Asia/Gaza" msgstr "ą®†ą®šą®æą®Æą®¾/ą®•ą®¾ą®šą®¾" #: timezones.h:489 msgid "Asia/Harbin" msgstr "ą®†ą®šą®æą®Æą®¾/ą®¹ąÆą®°ąÆą®Ŗą®æą®©ąÆ" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "ą®¹ąÆ†ą®ÆąÆą®²ąÆ‹ą®™ąÆą®·ą®æą®Æą®™ąÆ (மோஹீ தவிர), ą®œą®æą®²ą®æą®©ąÆ" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "ą®†ą®šą®æą®Æą®¾/ą®šąÆ‹_சி_ą®®ą®æą®©ąÆą®™ąÆ" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "ą®†ą®šą®æą®Æą®¾/ą®¹ą®¾ą®™ąÆą®•ą®¾ą®™ąÆ" #: timezones.h:494 msgid "Asia/Hovd" msgstr "ą®†ą®šą®æą®Æą®¾/ą®¹ąÆ‹ą®µąÆą®ŸąÆ" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "ą®Ŗą®¾ą®Æą®©ąÆ-ą®’ą®²ą®æą®•ąÆą®ÆąÆ, கோவி-ą®…ą®²ąÆą®¤ą®¾ą®ÆąÆ, ą®¹ąÆ‹ą®µąÆą®ŸąÆ, ą®‰ą®µąÆą®øąÆ, ą®øą®¾ą®µąÆą®•ąÆą®¹ą®¾ą®©ąÆ" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "ą®†ą®šą®æą®Æą®¾/ą®‡ą®°ąÆą®•ąÆą®ŸąÆą®øąÆą®•ąÆ" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "ą®®ą®¾ą®øąÆą®•ąÆ‹+05 - ą®²ąÆ‡ą®•ąÆ ą®Ŗą®¾ą®ÆąÆą®•ą®²ąÆ" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "ą®†ą®šą®æą®Æą®¾/ą®‡ą®øąÆą®Ÿą®¾ą®©ąÆą®ŖąÆą®²ąÆ" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "ą®†ą®šą®æą®Æą®¾/ą®œą®•ą®¾ą®°ąÆą®Ÿą®¾" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "ஜாவா & ą®šąÆą®®ą®¤ąÆą®°ą®¾" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "ą®†ą®šą®æą®Æą®¾/ą®œą®Æą®ŖąÆ‚ą®°ą®¾" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "ą®‡ą®°ą®æą®Æą®©ąÆ ஜாயா & த ą®®ąÆ‹ą®²ąÆą®•ąÆą®•ą®¾ą®øąÆ" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "ą®†ą®šą®æą®Æą®¾/ą®œąÆ†ą®°ąÆą®šą®²ąÆ†ą®®ąÆ" #: timezones.h:508 msgid "Asia/Kabul" msgstr "ą®†ą®šą®æą®Æą®¾/ą®•ą®¾ą®ŖąÆą®²ąÆ" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "ą®†ą®šą®æą®Æą®¾/ą®•ą®®ąÆą®šą®ŸąÆą®•ą®¾" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "ą®®ą®¾ą®øąÆą®•ąÆ‹+08 - ą®•ą®®ą®¾ą®šąÆą®¹ąÆ†ą®ŸąÆą®•ą®¾" #: timezones.h:512 msgid "Asia/Karachi" msgstr "ą®†ą®šą®æą®Æą®¾/ą®•ą®°ą®¾ą®šąÆą®šą®æ" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "ą®†ą®šą®æą®Æą®¾/ą®•ą®·ąÆą®•ą®°ąÆ" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "ą®®ąÆ‡ą®±ąÆą®•ąÆ ą®¤ą®æą®ŖąÆ†ą®¤ąÆ & ą®øą®æą®™ąÆą®œą®æą®Æą®™ąÆ" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "ą®†ą®šą®æą®Æą®¾/ą®•ą®¾ą®ŸąÆą®®ą®¾ą®£ąÆą®ŸąÆ" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "ą®†ą®šą®æą®Æą®¾/ą®•ą®¾ą®ŸąÆą®®ą®¾ą®£ąÆą®ŸąÆ" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "ą®†ą®šą®æą®Æą®¾/ą®•ąÆŠą®²ąÆą®•ą®¤ąÆą®¤ą®¾" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "ą®†ą®šą®æą®Æą®¾/ą®•ą®°ąÆą®øąÆą®©ąÆ‹ą®Æą®¾ą®°ąÆą®øąÆą®•ąÆ" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "ą®®ą®¾ą®øąÆą®•ąÆ‹+04 - ą®ÆąÆ‡ą®©ą®æą®šąÆ†ą®ÆąÆ ą®°ą®æą®µą®°ąÆ" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "ą®†ą®šą®æą®Æą®¾/" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "ą®ŖąÆ†ą®©ą®æą®©ąÆą®šąÆą®²ą®¾ą®°ąÆ மலேஷியா" #: timezones.h:525 msgid "Asia/Kuching" msgstr "ą®†ą®šą®æą®Æą®¾/ą®•ąÆą®šą®æą®™ąÆ" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "ą®šą®¾ą®Ŗą®¾ą®¹ąÆ & ą®šą®°ą®¾ą®µą®¾ą®•ąÆ" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "ą®†ą®šą®æą®Æą®¾/ą®•ąÆą®µąÆ‡ą®Æą®æą®¤ąÆ" #: timezones.h:529 msgid "Asia/Macao" msgstr "ą®†ą®šą®æą®Æą®¾/ą®®ą®šą®¾ą®µąÆ‹" #: timezones.h:530 msgid "Asia/Macau" msgstr "ą®†ą®šą®æą®Æą®¾/மகாவோ" #: timezones.h:531 msgid "Asia/Magadan" msgstr "ą®†ą®šą®æą®Æą®¾/ą®®ą®•ą®¾ą®Ÿą®©ąÆ" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "ą®®ą®¾ą®øąÆą®•ąÆ‹+08 - ą®®ą®•ą®¾ą®Ÿą®©ąÆ" #: timezones.h:534 msgid "Asia/Makassar" msgstr "ą®†ą®šą®æą®Æą®¾/ą®®ą®•ą®šą®¾ą®°ąÆ" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "ą®•ą®æą®“ą®•ąÆą®•ąÆ & ą®¤ąÆ†ą®±ąÆą®•ąÆ ą®ŖąÆ‹ą®°ąÆą®Øą®æą®ÆąÆ‹, ą®šąÆ†ą®²ąÆ†ą®ŖąÆ†ą®øąÆ, பாலி, நுசா ą®ŸąÆ†ą®™ąÆą®•ą®¾ą®°ąÆą®°ą®¾, ą®®ąÆ‡ą®±ąÆą®•ąÆ ą®¤ą®æą®®ąÆ‹ą®°ąÆ" #: timezones.h:537 msgid "Asia/Manila" msgstr "ą®†ą®šą®æą®Æą®¾/மனிலா" #: timezones.h:538 msgid "Asia/Muscat" msgstr "ą®†ą®šą®æą®Æą®¾/ą®®ą®øąÆą®•ą®ŸąÆ" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "ą®†ą®šą®æą®Æą®¾/ą®Øą®æą®•ąÆ‹ą®šą®æą®Æą®¾" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "ą®†ą®šą®æą®Æą®¾/ą®ØąÆ‹ą®µąÆ‹ą®•ąÆą®øąÆą®ØąÆ†ą®ŸąÆą®øąÆą®•ąÆ" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "ą®®ą®¾ą®øąÆą®•ąÆ‹+03 - ą®ØąÆ‹ą®µąÆ‹ą®•ąÆą®øąÆą®ØąÆ†ą®ŸąÆą®øąÆą®•ąÆ" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "ą®†ą®šą®æą®Æą®¾/ą®©ąÆŠą®µąÆ‹ą®šą®æą®Ŗą®æą®°ąÆą®øąÆą®•ąÆ" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "ą®®ą®¾ą®øąÆą®•ąÆ‹ą®µąÆ+03 - ą®ØąÆŠą®µąÆ‹ą®šą®æą®Ŗą®æą®°ąÆą®øąÆą®•ąÆ" #: timezones.h:546 msgid "Asia/Omsk" msgstr "ą®†ą®šą®æą®Æą®¾/ą®“ą®®ąÆą®øąÆą®•ąÆ" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "ą®®ą®¾ą®øąÆą®•ąÆ‹+03 - ą®®ąÆ‡ą®±ąÆą®•ąÆ ą®šą®æą®ŖąÆ†ą®°ą®æą®Æą®¾" #: timezones.h:549 msgid "Asia/Oral" msgstr "ą®†ą®šą®æą®Æą®¾/ą®“ą®°ą®²ąÆ" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "ą®®ąÆ‡ą®±ąÆą®•ąÆ ą®•ą®øą®¾ą®•ąÆą®¹ą®æą®øąÆą®¤ą®¾ą®©ąÆ" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "ą®†ą®šą®æą®Æą®¾/ą®ƒą®ŖąÆŠą®®ąÆ_ą®ƒą®ŖąÆ†ą®©ąÆ" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "ą®†ą®šą®æą®Æą®¾/ą®Ŗą®¾ą®ØąÆą®Ÿą®æą®©ą®¾ą®•ąÆ" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "ą®®ąÆ‡ą®±ąÆą®•ąÆ & ą®šąÆ†ą®©ąÆą®ŸąÆą®°ą®²ąÆ ą®ŖąÆ‹ą®°ąÆą®Øą®æą®ÆąÆ‹" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "ą®†ą®šą®æą®Æą®¾/ą®Ŗą®Æą®¾ą®™ąÆą®Æą®¾ą®™ąÆ" #: timezones.h:557 msgid "Asia/Qatar" msgstr "ą®†ą®šą®æą®Æą®¾/ą®•ą®Ÿą®¾ą®°ąÆ" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "ą®†ą®šą®æą®Æą®¾/ą®•ąÆą®šąÆˆą®²ąÆ‹ą®°ąÆą®Ÿą®¾" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "ą®•ąÆą®ÆąÆą®øąÆˆą®²ąÆ‹ą®°ąÆą®Ÿą®¾ (ą®ŖąÆˆą®øąÆˆą®²ąÆ‹ą®°ąÆą®Ÿą®¾, ą®•ą®øąÆˆą®²ąÆ-ą®“ą®°ąÆą®Ÿą®¾)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "ą®†ą®šą®æą®Æą®¾/ą®°ą®™ąÆą®•ąÆ‹ą®©ąÆ" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "ą®†ą®šą®æą®Æą®¾/ą®°ą®æą®Æą®¾ą®¤ąÆ" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "ą®†ą®šą®æą®Æą®¾/ą®°ą®æą®Æą®¾ą®¤ąÆ87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "ą®†ą®šą®æą®Æą®¾/ą®°ą®æą®Æą®¾ą®¤ąÆ88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "ą®†ą®šą®æą®Æą®¾/ą®°ą®æą®Æą®¾ą®¤ąÆ89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "ą®†ą®šą®æą®Æą®¾/ą®šąÆˆą®•ą®¾ą®©ąÆ" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "ą®†ą®šą®æą®Æą®¾/ą®šą®•ą®¾ą®²ą®æą®©ąÆ" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "ą®®ą®¾ą®øąÆą®•ąÆ‹+07 - ą®šą®¾ą®•ąÆą®¹ą®¾ą®²ą®æą®©ąÆ தீவு" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "ą®†ą®šą®æą®Æą®¾/ą®šą®®ą®°ąÆą®•ą®£ąÆą®ŸąÆ" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "ą®®ąÆ‡ą®±ąÆą®•ąÆ ą®‰ą®øąÆą®ŖąÆ†ą®•ą®æą®øąÆą®¤ą®¾ą®©ąÆ" #: timezones.h:573 msgid "Asia/Seoul" msgstr "ą®†ą®šą®æą®Æą®¾/ą®šą®æą®ÆąÆ‹ą®²ąÆ" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "ą®†ą®šą®æą®Æą®¾/ą®·ą®¾ą®™ąÆą®•ąÆą®¹ąÆˆ" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "ą®•ą®æą®“ą®•ąÆą®•ąÆ ą®šąÆ€ą®©ą®¾ - ą®ŖąÆ†ą®ÆąÆą®œą®æą®™ąÆ, ą®•ąÆą®Æą®™ąÆą®ŸąÆ‹ą®™ąÆ, ą®·ą®¾ą®™ąÆą®¹ą®¾ą®ÆąÆ, ą®®ą®±ąÆą®±ąÆą®®ąÆ." #: timezones.h:577 msgid "Asia/Singapore" msgstr "ą®†ą®šą®æą®Æą®¾/ą®šą®æą®™ąÆą®•ą®ŖąÆą®ŖąÆ‚ą®°ąÆ" #: timezones.h:578 msgid "Asia/Taipei" msgstr "ą®†ą®šą®æą®Æą®¾/ą®Ÿą®¾ą®Æą®æą®ŖąÆ‡ą®Æą®æ" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "ą®†ą®šą®æą®Æą®¾/ą®Ÿą®¾ą®·ąÆą®•ąÆ†ą®£ąÆą®ŸąÆ" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "ą®•ą®æą®“ą®•ąÆą®•ąÆ ą®‰ą®øąÆą®ŖąÆ†ą®•ą®æą®øąÆą®¤ą®¾ą®©ąÆ" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "ą®†ą®šą®æą®Æą®¾/ą®Ÿą®æą®Ŗą®æą®²ąÆą®šą®æ" #: timezones.h:583 msgid "Asia/Tehran" msgstr "ą®†ą®šą®æą®Æą®¾/ą®ŸąÆ†ą®¹ąÆą®°ą®¾ą®©ąÆ" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "ą®†ą®šą®æą®Æą®¾/ą®ŸąÆ†ą®²ąÆ_ą®…ą®µą®æą®µąÆ" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "ą®†ą®šą®æą®Æą®¾/ą®¤ą®æą®®ąÆą®ŖąÆ" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "ą®†ą®šą®æą®Æą®¾/ą®¤ą®æą®®ąÆą®ŖąÆą®¹ąÆ" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "ą®†ą®šą®æą®Æą®¾/ą®ŸąÆ‹ą®•ąÆą®•ą®æą®ÆąÆ‹" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "ą®†ą®šą®æą®Æą®¾/ą®‰ą®œą®©ąÆą®•ąÆ_ą®Ŗą®¾ą®£ąÆą®Ÿą®™ąÆ" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "ą®†ą®šą®æą®Æą®¾/ą®‰ą®²ą®¾ą®©ąÆą®Ŗą®¾ą®Ÿą®°ąÆ" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "ą®†ą®šą®æą®Æą®¾/ą®‰ą®²ą®¾ą®©ąÆ_ą®Ŗą®Ÿą®¾ą®°ąÆ" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "ą®†ą®šą®æą®Æą®¾/ą®‰ą®°ąÆą®®ąÆą®•ą®æ" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "நிறைய ą®¤ą®æą®ŖąÆ†ą®¤ąÆą®¤ą®¾ą®•ąÆą®®ąÆ & ą®øą®æą®™ąÆą®œą®æą®Æą®™ąÆ" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "ą®†ą®šą®æą®Æą®¾/ą®µą®æą®Æą®ØąÆą®Ÿą®æą®ÆąÆ‡ą®©ąÆ" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "ą®†ą®šą®æą®Æą®¾/ą®µą®²ą®¾ą®Ÿą®æą®µą®¾ą®øąÆą®ŸąÆŠą®•ąÆ" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "ą®®ą®¾ą®øąÆą®•ąÆ‹+07 - ą®…ą®®ąÆą®°ąÆ ą®°ą®æą®µą®°ąÆ" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "ą®†ą®šą®æą®Æą®¾/ą®Æą®•ąÆą®ŸąÆą®øąÆą®•ąÆ" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "ą®®ą®¾ą®øąÆą®•ąÆ‹+06 - லெனா ą®°ą®æą®µą®°ąÆ" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "ą®†ą®šą®æą®Æą®¾/ą®ÆąÆ†ą®•ą®ŸąÆ†ą®°ą®æą®©ąÆą®ŖąÆ†ą®°ąÆą®•ąÆ" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "ą®®ą®¾ą®øąÆą®•ąÆ‹+02 - ą®‰ą®°ą®¾ą®²ąÆą®øąÆ" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "ą®†ą®šą®æą®Æą®¾/ą®Žą®°ąÆ€ą®µą®¾ą®©ąÆ" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "ą®…ą®ŸąÆą®²ą®¾ą®ØąÆą®Ÿą®æą®•ąÆ/ą®…ą®šąÆ‹ą®°ąÆą®øąÆ" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "ą®…ą®øąÆ‹ą®°ąÆ†ą®øąÆ" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "ą®…ą®ŸąÆą®²ą®¾ą®ØąÆą®Ÿą®æą®•ąÆ/ą®ŖąÆ†ą®°ąÆą®®ąÆą®Ÿą®¾" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "ą®…ą®ŸąÆą®²ą®¾ą®ØąÆą®Ÿą®æą®•ąÆ/கனேரி" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "கனாரி ą®¤ąÆ€ą®µąÆą®•ą®³ąÆ" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "ą®…ą®ŸąÆą®²ą®¾ą®ØąÆą®Ÿą®æą®•ąÆ/ą®•ąÆ‡ą®ŖąÆ_ą®µąÆ‡ą®°ąÆą®Ÿą®æ" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "ą®…ą®ŸąÆą®²ą®¾ą®ØąÆą®Ÿą®æą®•ąÆ/ą®ƒą®ŖąÆ†ą®°ąÆ‹ą®°ąÆ†" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "ą®…ą®ŸąÆą®²ą®¾ą®ØąÆą®Ÿą®æą®•ąÆ/ą®ƒą®ŖąÆ†ą®°ąÆ‹" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "ą®…ą®ŸąÆą®²ą®¾ą®ØąÆą®Ÿą®æą®•ąÆ/ą®œą®¾ą®©ąÆ_ą®®ą®¾ą®ÆąÆ†ą®©ąÆ" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "ą®…ą®ŸąÆą®²ą®¾ą®ØąÆą®Ÿą®æą®•ąÆ/ą®®ą®ŸąÆ†ą®°ą®æą®Æą®¾" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "ą®®ą®ŸąÆ†ą®ÆąÆą®°ą®¾ ą®¤ąÆ€ą®µąÆą®•ą®³ąÆ" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "ą®…ą®ŸąÆą®²ą®¾ą®ØąÆą®Ÿą®æą®•ąÆ/ą®°ąÆ†ą®•ąÆą®œą®µą®æą®•ąÆ" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "ą®…ą®ŸąÆą®²ą®¾ą®ØąÆą®Ÿą®æą®•ąÆ/ą®šąÆŒą®¤ąÆ_ą®œą®¾ą®°ąÆą®•ą®æą®Æą®¾" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "ą®…ą®ŸąÆą®²ą®¾ą®ØąÆą®Ÿą®æą®•ąÆ/ą®øąÆą®Ÿą®¾ą®©ąÆą®²ąÆ€" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "ą®…ą®ŸąÆą®²ą®¾ą®ØąÆą®Ÿą®æą®•ąÆ/St_ஹெலேனா" #: timezones.h:625 msgid "Australia/ACT" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/ą®…ą®Ÿą®æą®²ąÆ‡ą®ŸąÆ" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "ą®¤ąÆ†ą®©ąÆ ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/ą®ŖąÆą®°ą®æą®øąÆą®ŖąÆ‡ą®©ąÆ" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "ą®•ąÆą®Æą®æą®©ąÆą®øąÆą®²ą®¾ą®£ąÆą®ŸąÆ - நிறைய ą®‡ą®Ÿą®™ąÆą®•ą®³ąÆ" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/ą®ŖąÆą®°ąÆ‹ą®•ąÆą®•ą®©ąÆ_ą®¹ą®æą®²ąÆ" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "நியூ ą®¤ąÆ†ą®±ąÆą®•ąÆ ą®µąÆ‡ą®²ąÆą®øąÆ - ą®Æą®¾ą®©ąÆą®•ąÆ‹ą®µą®æą®©ąÆą®©ą®¾" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/ą®•ą®¾ą®©ąÆą®ŖąÆ†ą®°ą®¾" #: timezones.h:636 msgid "Australia/Currie" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/கரி" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "ą®¤ą®¾ą®øąÆą®®ą®¾ą®©ą®æą®Æą®¾ - ą®•ą®æą®™ąÆ தீவு" #: timezones.h:639 msgid "Australia/Darwin" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/ą®Ÿą®¾ą®°ąÆą®µą®æą®©ąÆ" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "ą®µą®Ÿą®•ąÆą®•ą®¤ąÆą®¤ą®æą®Æ ą®ŸąÆ†ą®°ąÆą®ŸąÆ‹ą®°ą®æ" #: timezones.h:642 msgid "Australia/Eucla" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/ą®ÆąÆ‚ą®•ąÆą®²ą®¾" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "ą®®ąÆ‡ą®±ąÆą®•ą®¤ąÆą®¤ą®æą®Æ ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾ - ą®ÆąÆ‚ą®•ąÆą®²ą®¾ą®ŖąÆ பகுதி" #: timezones.h:645 msgid "Australia/Hobart" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/ą®¹ąÆ‹ą®Ŗą®¾ą®°ąÆą®ŸąÆ" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "ą®¤ą®¾ą®øąÆą®®ą®¾ą®©ą®æą®Æą®¾ - நிறைய ą®‡ą®Ÿą®™ąÆą®•ą®³ąÆ" #: timezones.h:648 msgid "Australia/LHI" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/ą®²ą®æą®£ąÆą®Ÿą®æą®®ą®©ąÆ" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "ą®•ąÆą®Æą®æą®©ąÆą®øąÆą®²ą®¾ą®£ąÆą®ŸąÆ - ą®¹ą®¾ą®²ą®æą®ŸąÆ‡ ą®¤ąÆ€ą®µąÆą®•ą®³ąÆ" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/ą®²ąÆ‹ą®°ąÆą®ŸąÆ_ą®¹ąÆ‹ą®µąÆ" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "ą®²ą®¾ą®°ąÆą®ŸąÆ ą®¹ąÆ‹ą®µąÆ தீவு" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/ą®®ąÆ†ą®²ąÆą®ŖąÆ‹ą®°ąÆą®©ąÆ" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "ą®µą®æą®•ąÆą®ŸąÆ‹ą®°ą®æą®Æą®¾" #: timezones.h:658 msgid "Australia/North" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/ą®Øą®¾ą®°ąÆą®¤ąÆ" #: timezones.h:659 msgid "Australia/NSW" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/ą®ŖąÆ†ą®°ąÆą®¤ąÆ" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "ą®®ąÆ‡ą®±ąÆą®•ą®¤ąÆą®¤ą®æą®Æ ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾ - நிறைய ą®‡ą®Ÿą®™ąÆą®•ą®³ąÆ" #: timezones.h:663 msgid "Australia/Queensland" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/ą®•ąÆą®µąÆ€ą®©ąÆą®øąÆą®²ą®¾ą®£ąÆą®ŸąÆ" #: timezones.h:664 msgid "Australia/South" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/ą®šąÆŒą®¤ąÆ" #: timezones.h:665 msgid "Australia/Sydney" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/ą®šą®æą®ŸąÆą®©ą®æ" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "நியூ ą®¤ąÆ†ą®©ąÆ ą®µąÆ‡ą®²ąÆą®øąÆ - நிறைய ą®‡ą®Ÿą®™ąÆą®•ą®³ąÆ" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/ą®Ÿą®¾ą®øąÆą®®ą®¾ą®©ą®æą®Æą®¾" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/ą®µą®æą®•ąÆą®ŸąÆ‹ą®°ą®æą®Æą®¾" #: timezones.h:670 msgid "Australia/West" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/ą®µąÆ†ą®øąÆą®ŸąÆ" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ą®†ą®øąÆą®ŸąÆą®°ąÆ‡ą®²ą®æą®Æą®¾/ą®Æą®¾ą®©ąÆą®•ąÆ‹ą®µą®æą®©ą®¾" #: timezones.h:672 msgid "Brazil/Acre" msgstr "ą®Ŗą®æą®°ąÆ‡ą®øą®æą®²ąÆ/ą®Žą®•ąÆą®°ąÆ†" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "ą®Ŗą®æą®°ąÆ‡ą®øą®æą®²ąÆ/ą®Ÿą®æą®©ąÆŠą®°ąÆ‹ą®©ąÆą®¹ą®¾" #: timezones.h:674 msgid "Brazil/East" msgstr "ą®Ŗą®æą®°ąÆ‡ą®øą®æą®²ąÆ/ą®ˆą®øąÆą®ŸąÆ" #: timezones.h:675 msgid "Brazil/West" msgstr "ą®Ŗą®æą®°ąÆ‡ą®øą®æą®²ąÆ/ą®µąÆ†ą®øąÆą®ŸąÆ" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "ą®•ą®¾ą®©ą®Ÿą®¾/ą®…ą®ŸąÆą®²ą®¾ą®ØąÆą®Ÿą®æą®•ąÆ" #: timezones.h:677 msgid "Canada/Central" msgstr "ą®•ą®¾ą®©ą®Ÿą®¾/ą®šąÆ†ą®ØąÆą®ŸąÆą®°ą®²ąÆ" #: timezones.h:678 msgid "Canada/Eastern" msgstr "ą®•ą®¾ą®©ą®Ÿą®¾/ą®ˆą®øąÆą®Ÿą®°ąÆą®©ąÆ" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "ą®•ą®¾ą®©ą®Ÿą®¾/ą®ˆą®øąÆą®ŸąÆ-ą®šą®šąÆą®•ą®ŸąÆą®šąÆ†ą®µą®¾ą®©ąÆ" #: timezones.h:680 msgid "Canada/Mountain" msgstr "ą®•ą®¾ą®©ą®Ÿą®¾/ą®®ąÆŒą®ØąÆą®Ÿą®©ąÆ" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "ą®•ą®¾ą®©ą®Ÿą®¾/ą®Øą®æą®ÆąÆ‚ą®ƒą®ŖąÆŒą®£ąÆą®ŸąÆą®²ą®¾ą®ØąÆą®¤ąÆ" #: timezones.h:682 msgid "Canada/Pacific" msgstr "ą®•ą®¾ą®©ą®Ÿą®¾/ą®Ŗą®øą®æą®Ŗą®æą®•ąÆ" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "ą®•ą®¾ą®©ą®Ÿą®¾/ą®šą®øąÆą®•ą®ŸąÆą®šąÆ†ą®µą®¾ą®©ąÆ" #: timezones.h:684 msgid "Canada/Yukon" msgstr "ą®•ą®¾ą®©ą®Ÿą®¾/ą®ÆąÆą®•ąÆŠą®©ąÆ" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "ą®šąÆˆą®²ąÆ/ą®•ą®¾ą®£ąÆą®Ÿą®æą®©ąÆ†ą®ØąÆą®ŸąÆą®²ąÆ" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "ą®šąÆˆą®²ąÆ/ą®ˆą®øąÆą®ŸąÆ†ą®°ąÆą®©ąÆˆą®²ą®¾ą®£ąÆą®ŸąÆ" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "ą®•ąÆą®•ąÆą®ÆąÆ‚ą®Ŗą®¾" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "ą®Žą®•ąÆą®ÆąÆą®ŖąÆą®¤ąÆ" #: timezones.h:692 msgid "Eire" msgstr "ą®ą®°ąÆ" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/ą®•ą®æą®°ąÆ€ą®©ąÆą®µą®æą®ŸąÆą®šąÆ" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/ą®ÆąÆ‚ą®©ą®æą®µąÆ‡ą®°ąÆą®šą®²ąÆ" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/ą®šąÆą®²ąÆ‚" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®…ą®®ąÆą®øąÆą®Ÿą®°ąÆą®Ÿą®®ąÆ" #: timezones.h:731 msgid "Europe/Andorra" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®…ą®£ąÆą®ŸąÆ‡ą®°ąÆą®°ą®¾" #: timezones.h:732 msgid "Europe/Athens" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®…ą®¤ąÆ†ą®©ąÆą®øąÆ" #: timezones.h:733 msgid "Europe/Belfast" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®ŖąÆ†ą®²ąÆą®Ŗą®¾ą®øąÆą®ŸąÆ" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®ŖąÆ†ą®²ąÆą®•ą®æą®°ąÆ‡ą®ŸąÆ" #: timezones.h:735 msgid "Europe/Berlin" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®ŖąÆ†ą®°ąÆą®²ą®æą®©ąÆ" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®Ŗą®æą®°ą®¾ą®Ÿą®æą®øąÆą®²ą®µą®¾" #: timezones.h:737 msgid "Europe/Brussels" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®ŖąÆą®°ąÆą®øąÆą®šą®²ąÆą®øąÆ" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®ŖąÆą®ÆąÆą®…ą®°ą®øąÆą®ŸąÆ" #: timezones.h:739 msgid "Europe/Budapest" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®ŖąÆą®Ÿą®¾ą®ŖąÆ†ą®øąÆą®ŸąÆ" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®•ą®æą®±ą®æą®øąÆą®šą®æą®©ą®µąÆ" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®•ąÆŠą®ŖąÆ†ą®©ąÆą®¹ą®œą®©ąÆ" #: timezones.h:742 msgid "Europe/Dublin" msgstr "ą®‡ą®ØąÆą®¤ą®æą®Æą®©ąÆ/ą®ŸąÆą®Ŗą®æą®²ą®æą®©ąÆ" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®•ą®æą®Ŗą®æą®°ą®¾ą®²ąÆą®Ÿą®°ąÆ" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "ą®ą®°ąÆ‹ą®ŖąÆą®Ŗą®¾/ą®•ąÆą®ÆąÆą®°ąÆą®©ąÆą®šąÆ‡" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®¹ąÆ†ą®²ąÆą®šą®æą®™ąÆą®•ą®æ" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "ą®ą®°ąÆ‹ą®ŖąÆą®Ŗą®¾/ą®øąÆą®²ąÆ‡_ą®†ą®ƒą®ŖąÆ_ą®®ąÆ‡ą®©ąÆ" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®øąÆą®Ÿą®¾ą®©ąÆą®ŖąÆą®²ąÆ" #: timezones.h:748 msgid "Europe/Jersey" msgstr "ą®ą®°ąÆ‹ą®ŖąÆą®Ŗą®¾/ą®œąÆ†ą®°ąÆą®šą®æ" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®•ą®²ą®æą®©ąÆą®©ąÆą®•ą®æą®°ą®¾ą®ŸąÆ" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "ą®®ą®¾ą®øąÆą®•ąÆ‹-01 - ą®•ą®²ą®æą®©ąÆą®Æą®æą®™ąÆą®°ą®ŸąÆ" #: timezones.h:752 msgid "Europe/Kiev" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®•ą®æą®ÆąÆą®µą®æ" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®²ą®æą®øąÆą®Ŗą®¾ą®©ąÆ" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®œą®æą®ÆąÆą®Ŗą®æą®²ąÆą®œą®©ą®¾" #: timezones.h:759 msgid "Europe/London" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®²ą®£ąÆą®Ÿą®©ąÆ" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®²ą®•ąÆą®øąÆ†ą®®ąÆą®ŖąÆŠą®°ąÆą®•ąÆ" #: timezones.h:761 msgid "Europe/Madrid" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®®ą®¾ą®Ÿą®æą®°ą®æą®ŸąÆ" #: timezones.h:764 msgid "Europe/Malta" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®®ą®¾ą®²ąÆą®Ÿą®¾" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "ą®ą®°ąÆ‹ą®ŖąÆą®Ŗą®æą®Æ/ą®®ą®¾ą®°ą®æą®¹ą®®ąÆą®©ąÆ" #: timezones.h:766 msgid "Europe/Minsk" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®®ą®æą®©ąÆą®øąÆą®•ąÆ" #: timezones.h:767 msgid "Europe/Monaco" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/மானாகோ" #: timezones.h:768 msgid "Europe/Moscow" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®®ą®¾ą®øąÆą®•ąÆ‹" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "ą®®ą®¾ą®øąÆą®•ąÆ‹+00 - ą®®ąÆ‡ą®±ąÆą®•ąÆ ą®°ąÆą®·ąÆą®Æą®¾" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®Øą®æą®•ąÆ‹ą®šą®æą®Æ" #: timezones.h:772 msgid "Europe/Oslo" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®’ą®øąÆą®²ąÆŠ" #: timezones.h:773 msgid "Europe/Paris" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®Ŗą®¾ą®°ą®æą®øąÆ" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "ą®ą®°ąÆ‹ą®ŖąÆą®Ŗą®¾/ą®ŖąÆ‹ą®ŸąÆą®•ąÆ‹ą®°ąÆą®•ą®¾" #: timezones.h:775 msgid "Europe/Prague" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/பிராகியு" #: timezones.h:776 msgid "Europe/Riga" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ரிகா" #: timezones.h:777 msgid "Europe/Rome" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®°ąÆ‹ą®®ąÆ" #: timezones.h:778 msgid "Europe/Samara" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/சாமாரா" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "ą®®ą®¾ą®øąÆą®•ąÆ‹ - சமாரா, ą®‰ą®ŸąÆą®®ąÆą®°ąÆą®Ÿą®æą®Æą®¾" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®šą®¾ą®©ąÆ_மாரினோ" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/சரஜிவொ" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®šą®æą®®ąÆą®ŖąÆ†ą®°ą®¾ą®ŖąÆŠą®²ąÆ" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "ą®šąÆ†ą®©ąÆą®ŸąÆą®°ą®²ąÆ ą®•ąÆą®°ą®æą®®ą®æą®Æą®¾" #: timezones.h:786 msgid "Europe/Skopje" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®øąÆą®•ąÆ‹ą®Ŗą®æą®œą®æ" #: timezones.h:787 msgid "Europe/Sofia" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®šąÆ‹ą®Ŗą®æą®Æ" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®øąÆą®Ÿą®¾ą®•ąÆą®“ą®²ą®®ąÆ" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®Ÿą®¾ą®²ąÆą®²ą®æą®©ąÆ" #: timezones.h:790 msgid "Europe/Tirane" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®Ÿą®æą®°ąÆą®°ą®¾ą®©ą®æ" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®Ÿą®æą®°ą®¾ą®ŖąÆŠą®²ąÆ" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®‰ą®øąÆą®•ąÆŠą®°ąÆŠą®ŸąÆ" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "ருதெனியா" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®µą®¾ą®ŸąÆą®øąÆ" #: timezones.h:796 msgid "Europe/Vatican" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®µą®¾ą®ŸąÆą®Ÿą®æą®•ą®©ąÆ" #: timezones.h:797 msgid "Europe/Vienna" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®µąÆ€ą®©ąÆą®©ą®¾" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®µą®æą®²ąÆą®²ą®æą®©ą®æą®Æą®øąÆ" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "ą®ą®°ąÆ‹ą®ŖąÆą®Ŗą®¾/ą®µą®¾ą®²ąÆą®•ąÆ‹ą®•ąÆą®°ąÆ‡ą®ŸąÆ" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "ą®®ą®¾ą®øąÆą®•ąÆ‹+00 - ą®•ą®¾ą®øąÆą®Ŗą®æą®Æą®©ąÆ ą®•ą®Ÿą®²ąÆ" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®µą®¾ą®°ąÆą®šą®¾ą®µąÆ" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®šą®¾ą®•ą®æą®°ą®æą®ŖąÆ" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®šą®¾ą®ŖąÆ‹ą®°ąÆ‹ą®šą®æą®Æą®æ" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "ą®øą®ŖąÆ‹ą®°ąÆ‹ą®øąÆ'யே, E ą®²ąÆą®•ą®©ąÆą®øąÆą®•ąÆ/ ஸபோரிஸியா, E ą®²ąÆą®¹ą®©ąÆą®øąÆą®•ąÆ" #: timezones.h:807 msgid "Europe/Zurich" msgstr "ą®ˆą®°ąÆ‹ą®ŖąÆ/ą®šąÆą®ÆąÆą®°ą®æą®šąÆ" #: timezones.h:808 msgid "Factory" msgstr "ą®¤ąÆŠą®“ą®æą®±ąÆą®šą®¾ą®²ąÆˆ" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-ą®‡ą®°ą®æą®ÆąÆ" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "ą®•ąÆ€ą®°ą®æą®©ąÆą®µą®æą®šąÆ" #: timezones.h:816 msgid "Hongkong" msgstr "ą®¹ą®¾ą®™ąÆą®•ą®¾ą®™ąÆ" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "ą®œą®øąÆą®²ą®¾ą®ØąÆą®¤ąÆ" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "ą®‡ą®ØąÆą®¤ą®æą®Æą®©ąÆ/ą®…ą®£ąÆą®Ÿą®¾ą®©ą®©ą®°ą®æą®“" #: timezones.h:820 msgid "Indian/Chagos" msgstr "ą®‡ą®ØąÆą®¤ą®æą®Æą®©ąÆ/ą®šą®¾ą®•ąÆ‹ą®øąÆ" #: timezones.h:821 msgid "Indian/Christmas" msgstr "ą®‡ą®ØąÆą®¤ą®æą®Æą®©ąÆ/ą®•ą®æą®±ą®æą®øąÆą®¤ąÆą®®ą®øąÆ" #: timezones.h:822 msgid "Indian/Cocos" msgstr "ą®‡ą®ØąÆą®¤ą®æą®Æą®©ąÆ/ą®•ąÆŠą®•ąÆŠą®øąÆ" #: timezones.h:823 msgid "Indian/Comoro" msgstr "ą®‡ą®ØąÆą®¤ą®æą®Æą®©ąÆ/ą®•ąÆŠą®®ąÆŠą®°ąÆŠ" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "ą®‡ą®ØąÆą®¤ą®æą®Æą®©ąÆ/ą®•ą®°ąÆą®•ą®æą®ÆąÆą®‡ą®²ą®æą®©ąÆ" #: timezones.h:825 msgid "Indian/Mahe" msgstr "ą®‡ą®ØąÆą®¤ą®æą®Æą®©ąÆ/மாகி" #: timezones.h:826 msgid "Indian/Maldives" msgstr "ą®‡ą®ØąÆą®¤ą®æą®Æą®©ąÆ/ą®®ą®¾ą®²ąÆą®Ÿą®æą®µą®æą®Æą®²ąÆ" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "ą®‡ą®ØąÆą®¤ą®æą®Æą®©ąÆ/ą®®ą®¾ą®ÆąÆą®°ą®æą®Ÿą®æą®…ą®øąÆ" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "ą®‡ą®ØąÆą®¤ą®æą®Æą®©ąÆ/ą®®ą®¾ą®ÆąÆŠą®Ÿą®æą®Ÿą®æą®ÆąÆ" #: timezones.h:829 msgid "Indian/Reunion" msgstr "ą®‡ą®ØąÆą®¤ą®æą®Æą®©ąÆ/ą®®ą®±ąÆą®‡ą®£ąÆˆą®ŖąÆą®Ŗą®æ" #: timezones.h:830 msgid "Iran" msgstr "ą®ˆą®°ą®¾ą®©ąÆ" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "ą®øąÆą®°ąÆ‡ą®²ąÆ" #: timezones.h:833 msgid "Jamaica" msgstr "ą®œą®®ą®¾ą®ÆąÆą®•ą®¾" #: timezones.h:834 msgid "Japan" msgstr "ą®œą®ŖąÆą®Ŗą®¾ą®©ąÆ" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 #: timezones.h:891 msgid "Kwajalein" msgstr "ą®•ą®µą®¾ą®œą®²ąÆ€ą®©ąÆ" #: timezones.h:836 msgid "Libya" msgstr "லிபியா" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "ą®®ąÆ†ą®•ąÆą®šą®æą®•ąÆ‹/ą®Ŗą®¾ą®œą®¾ą®©ą®¾ą®°ąÆą®Ÿą®æ" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "ą®®ąÆ†ą®•ąÆą®šą®æą®•ąÆ‹/ą®Ŗą®¾ą®œą®¾ą®šąÆą®°ąÆ" #: timezones.h:840 msgid "Mexico/General" msgstr "ą®®ąÆ†ą®•ąÆą®šą®æą®•ąÆ‹/ą®Ŗą®ŸąÆˆą®ŖąÆ ą®ŖąÆ†ą®°ąÆą®ØąÆą®¤ą®²ąÆˆą®µą®°ąÆ" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "ą®®ą®æą®ŸąÆ" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "ą®Øą®ŸąÆą®•ą®æą®“ą®•ąÆą®•ąÆ/ą®°ą®æą®Æą®¾ą®ŸąÆ88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "ą®Øą®ŸąÆą®•ą®æą®“ą®•ąÆą®•ąÆ/ą®°ą®æą®Æą®¾ą®ŸąÆ89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "ą®©ą®µą®¾ą®œą®’" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/அபிய" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®†ą®•ąÆą®²ą®£ąÆą®ŸąÆ" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®šą®¤ąÆą®¤ą®®ąÆ" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "ą®šą®¾ą®ŸąÆą®¤ą®®ąÆ ą®¤ąÆ€ą®µąÆą®•ą®³ąÆ" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®šąÆą®ÆąÆą®•ąÆ" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "ą®šąÆą®ÆąÆą®•ąÆ (ą®¤ąÆą®°ąÆą®•ąÆ) ą®®ą®±ąÆą®±ąÆą®®ąÆ ą®Æą®¾ą®ŖąÆ" #: timezones.h:859 msgid "Pacific/Easter" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®ˆą®øąÆą®Ÿą®°ąÆ" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "ą®ˆą®øąÆą®Ÿą®°ąÆ தீவு & சாலா ą®’ą®ÆąÆ ą®•ąÆ‹ą®®ąÆ†ą®øąÆ" #: timezones.h:862 msgid "Pacific/Efate" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®ˆą®ŖąÆ†ą®ƒą®ŖąÆą®ŸąÆ" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®Žą®£ąÆą®Ÿą®°ąÆą®Ŗą®°ą®æ" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "ą®ŖąÆ‹ą®©ą®æą®•ąÆą®øąÆ ą®¤ąÆ€ą®µąÆą®•ą®³ąÆ" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/பகோபோ" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/பிஜி" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®ŖąÆą®©ą®¾ą®ŖąÆą®ŖąÆą®Ÿą®æ" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®•ą®³ą®¾ą®Ŗą®¾ą®•ą®øąÆ" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "ą®•ą®²ą®¾ą®Ŗą®¾ą®•ąÆ‹ą®øąÆ ą®¤ąÆ€ą®µąÆą®•ą®³ąÆ" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®•ąÆ†ą®®ąÆą®²ą®°ąÆ" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "ą®•ą®¾ą®®ąÆą®Ŗą®æą®Æą®°ąÆ ą®¤ąÆ€ą®µąÆą®•ą®³ąÆ" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®•ąÆą®Ÿą®¾ą®²ąÆą®•ą®¾ą®©ą®²ąÆ" #: timezones.h:876 msgid "Pacific/Guam" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®•ąÆą®®ąÆ" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ஹொனொலுலு" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "ą®¹ą®µą®¾ą®ÆąÆ" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®œą®¾ą®©ąÆą®øąÆą®Ÿą®¾ą®©ąÆ" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "ą®œą®¾ą®©ąÆą®øąÆą®ŸąÆ‹ą®©ąÆ ą®…ą®ŸąÆ‹ą®²ąÆ" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®•ą®æą®°ąÆą®¤ą®æą®®ą®Ÿą®æ" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "ą®²ąÆˆą®©ąÆ ą®¤ąÆ€ą®µąÆą®•ą®³ąÆ" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®•ąÆ‹ą®øąÆą®°ąÆ‡" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "ą®•ąÆ‹ą®øąÆą®°ąÆ‡ą®ÆąÆ" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®µą®¾ą®œą®¾ą®²ąÆ€ą®©ąÆ" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®®ą®¾ą®œąÆą®°ąÆ‹" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®®ą®¾ą®°ąÆą®•ąÆą®•ąÆą®ÆąÆą®šą®¾ą®øąÆ" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "ą®®ą®¾ą®°ąÆą®•ąÆą®ÆąÆą®šą®¾ą®øąÆ ą®¤ąÆ€ą®µąÆą®•ą®³ąÆ" #: timezones.h:898 msgid "Pacific/Midway" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®®ą®æą®ŸąÆą®µąÆ‡" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "ą®®ą®æą®ŸąÆą®µąÆ‡ ą®¤ąÆ€ą®µąÆą®•ą®³ąÆ" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®Øą®µąÆą®°ąÆ" #: timezones.h:902 msgid "Pacific/Niue" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/நியு" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®Øą®¾ą®°ąÆą®ŖąÆŠą®²ąÆą®•ąÆ" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/நோமியா" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/பாகோ_பாகோ" #: timezones.h:906 msgid "Pacific/Palau" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/பலோ" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "ą®Ŗą®šą®æą®Ŗą®•ąÆ/ą®Ŗą®æą®ŸąÆą®•ąÆ†ą®°ąÆą®©ąÆ" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®ŖąÆą®©ą®¾ą®ŖąÆą®Ŗą®æ" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "ą®ŖąÆ‹ą®©ąÆą®ŖąÆ†ą®ÆąÆ (ą®ŖąÆŠą®©ąÆ‡ą®ŖąÆ)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®ŖąÆą®©ą®¾ą®ŖąÆą®Ŗą®æ" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®ŖąÆ‹ą®°ąÆą®ŸąÆ_ą®®ąÆ‹ą®°ąÆą®øąÆą®ŖąÆˆ" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®°ą®°ąÆ‹ą®Ÿą®¾ą®™ąÆą®•ą®¾" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®šą®®ąÆ‹" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/தாஹிடி" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "ą®šąÆŠą®šąÆą®ŸąÆą®Ÿą®æ ą®¤ąÆ€ą®µąÆą®•ą®³ąÆ" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/டாரவா" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "ą®•ą®æą®²ąÆą®ŖąÆ†ą®°ąÆą®ŸąÆ ą®¤ąÆ€ą®µąÆą®•ą®³ąÆ" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®ŸąÆŠą®•ą®Ÿą®ŖąÆ" #: timezones.h:923 msgid "Pacific/Truk" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®Ÿą®æą®°ą®•ąÆ" #: timezones.h:924 msgid "Pacific/Wake" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®µąÆ‡ą®•ąÆ" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "ą®µąÆ‡ą®•ąÆ ą®¤ąÆ€ą®µąÆą®•ą®³ąÆ" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/ą®•ąÆ‹ą®øąÆą®°ąÆ‡" #: timezones.h:928 msgid "Pacific/Yap" msgstr "ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ/யாபு" #: timezones.h:929 msgid "Poland" msgstr "ą®ŖąÆŠą®²ą®ØąÆą®¤ąÆ" #: timezones.h:930 msgid "Portugal" msgstr "ą®ŖąÆŠą®°ąÆą®šąÆą®šą®æą®•ą®²ąÆ" #: timezones.h:931 msgid "posixrules" msgstr "ą®ŖąÆ‹ą®øą®æą®•ąÆą®øąÆą®°ąÆ‚ą®²ąÆą®øąÆ" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "ą®šą®æą®™ąÆą®•ą®ŖąÆ‚ą®°ąÆ" #: timezones.h:937 msgid "Turkey" msgstr "ą®¤ąÆą®°ąÆą®•ą®æ" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "ą®‰ą®²ą®•ą®®ąÆ" #: timezones.h:940 msgid "US/Alaska" msgstr "ą®ÆąÆą®Žą®øąÆ/ą®…ą®²ą®¾ą®øąÆą®•ą®¾" #: timezones.h:941 msgid "US/Aleutian" msgstr "ą®ÆąÆą®Žą®øąÆ/அலி" #: timezones.h:942 msgid "US/Arizona" msgstr "ą®ÆąÆą®Žą®øąÆ/ą®…ą®°ą®æą®šąÆ‹ą®©ą®¾" #: timezones.h:943 msgid "US/Central" msgstr "ą®ÆąÆą®Žą®øąÆ/ą®šąÆ†ą®©ąÆą®Ÿą®°ą®²ąÆ" #: timezones.h:944 msgid "US/Eastern" msgstr "ą®ÆąÆą®Žą®øąÆ/ą®•ą®æą®“ą®•ąÆą®•ąÆ" #: timezones.h:945 msgid "US/East-Indiana" msgstr "ą®ÆąÆą®Žą®øąÆ/ą®•ą®æą®“ą®•ąÆą®•ąÆ-ą®‡ą®£ąÆą®Ÿą®æą®Æą®¾ą®©" #: timezones.h:946 msgid "US/Hawaii" msgstr "ą®ÆąÆą®Žą®øąÆ/ą®¹ą®µą®¾ą®ÆąÆ" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "ą®ÆąÆą®Žą®øąÆ/ą®‡ą®£ąÆą®Ÿą®æą®©ą®¾-ą®øąÆą®Ÿą®¾ą®•ą®æ" #: timezones.h:948 msgid "US/Michigan" msgstr "ą®ÆąÆą®Žą®øąÆ/ą®®ą®æą®·ą®æą®•ą®©ąÆ" #: timezones.h:949 msgid "US/Mountain" msgstr "ą®ÆąÆą®Žą®øąÆ/" #: timezones.h:950 msgid "US/Pacific" msgstr "ą®ÆąÆą®Žą®øąÆ/ą®Ŗą®šą®æą®Ŗą®æą®•ąÆ" #: timezones.h:951 msgid "US/Samoa" msgstr "ą®ÆąÆą®Žą®øąÆ/ą®šą®®ąÆ‹" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "சுலு" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/cy.po0000664000175000017500000017011614632072346023700 0ustar fabiofabio# translation of timezones.pot to Cymraeg # This file is distributed under the same license as the # system-config-date package. # Copyright (C) 2004 Alan Cox # Translation by Owain Green , 2004. # msgid "" msgstr "" "Project-Id-Version: timezones.cy\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2004-02-24 12:32+0000\n" "Last-Translator: Owain Green \n" "Language-Team: Cymraeg \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.0.2\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Affrica/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Affrica/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Affrica/Addis_Ababa" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Affrica/Algiers" #: timezones.h:5 #, fuzzy msgid "Africa/Asmara" msgstr "Affrica/Asmera" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Affrica/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Affrica/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Affrica/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Affrica/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Affrica/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Affrica/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Affrica/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Affrica/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Affrica/Cairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Affrica/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Affrica/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Affrica/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Affrica/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Affrica/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Affrica/Djibouti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Affrica/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Affrica/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Affrica/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Affrica/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Affrica/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Affrica/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Affrica/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Affrica/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Affrica/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Affrica/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Affrica/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Affrica/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Affrica/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Affrica/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Affrica/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Affrica/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Affrica/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Affrica/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Affrica/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Affrica/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Affrica/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Affrica/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Affrica/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Affrica/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Affrica/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Affrica/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Affrica/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Affrica/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Affrica/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Affrica/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Affrica/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Affrica/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Affrica/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "America/Adak" #. comment for time zone America/Adak #: timezones.h:62 #, fuzzy msgid "Aleutian Islands" msgstr "Awstralia/Queensland" #: timezones.h:63 msgid "America/Anchorage" msgstr "America/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 #, fuzzy msgid "Alaska Time" msgstr "UD/Alasca" #: timezones.h:66 msgid "America/Anguilla" msgstr "America/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "America/Antigwa" #: timezones.h:68 msgid "America/Araguaina" msgstr "America/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "America/Ariannin/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "America/Ariannin/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "America/Ariannin/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "America/Ariannin/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "America/Ariannin/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "America/Ariannin/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "America/Ariannin/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "America/Ariannin/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 #, fuzzy msgid "America/Argentina/Salta" msgstr "America/Ariannin/San_Juan" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "America/Ariannin/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 #, fuzzy msgid "America/Argentina/San_Luis" msgstr "America/Ariannin/San_Juan" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "America/Ariannin/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "America/Ariannin/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "America/Arwba" #: timezones.h:109 msgid "America/Asuncion" msgstr "America/Asuncion" #: timezones.h:110 #, fuzzy msgid "America/Atikokan" msgstr "America/Atka" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "America/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "America/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "America/Bahia" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "America/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "America/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "America/BelĆ®s" #: timezones.h:125 #, fuzzy msgid "America/Blanc-Sablon" msgstr "America/Cancwn" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "America/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "America/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "America/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "America/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "America/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "America/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "America/Cancwn" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "America/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "America/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "America/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "America/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "America/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "UD/Canolbarth" #: timezones.h:152 msgid "America/Chihuahua" msgstr "America/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "America/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "America/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "America/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "America/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "America/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "America/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "America/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "America/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "America/Denver" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "UD/Mynyddoedd" #: timezones.h:174 msgid "America/Detroit" msgstr "America/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "America/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "America/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "America/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "America/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "America/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "America/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "America/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "America/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "America/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "America/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "America/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "America/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "America/Gwadelwp" #: timezones.h:202 msgid "America/Guatemala" msgstr "America/Gwatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "America/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "America/Giana" #: timezones.h:207 msgid "America/Halifax" msgstr "America/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "America/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "America/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "America/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "America/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "America/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 #, fuzzy msgid "America/Indiana/Petersburg" msgstr "America/Indiana/Marengo" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "America/Indianapolis" #: timezones.h:227 #, fuzzy msgid "America/Indiana/Tell_City" msgstr "America/Indiana/Vevay" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "America/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 #, fuzzy msgid "America/Indiana/Vincennes" msgstr "America/Indiana/Vevay" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 #, fuzzy msgid "America/Indiana/Winamac" msgstr "America/Indiana/Vevay" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "America/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "America/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "America/Jamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "America/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "America/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "America/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 #, fuzzy msgid "Eastern Time - Kentucky - Louisville area" msgstr "America/Kentucky/Louisville" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "America/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "America/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "America/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "America/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "America/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 #, fuzzy msgid "Pacific Time" msgstr "MĆ“r_tawel/Niue" #: timezones.h:262 msgid "America/Louisville" msgstr "America/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "America/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "America/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "America/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 #, fuzzy msgid "America/Marigot" msgstr "America/Maceio" #: timezones.h:271 msgid "America/Martinique" msgstr "America/Martinique" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "America/Manaus" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "America/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "America/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "America/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "America/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "America/Dinas_Mecsico" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "America/Miquelon" #: timezones.h:289 #, fuzzy msgid "America/Moncton" msgstr "America/Edmonton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "America/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "America/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "America/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "America/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "America/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "America/Efrog_Newydd" #. comment for time zone America/New_York #: timezones.h:303 #, fuzzy msgid "Eastern Time" msgstr "UD/Dwyreiniol" #: timezones.h:304 msgid "America/Nipigon" msgstr "America/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "America/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "America/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 #, fuzzy msgid "Atlantic islands" msgstr "Yr_Iwerydd/Ynysoedd_Dedwydd" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "America/Gogledd_Dakota/Center" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 #, fuzzy msgid "America/North_Dakota/New_Salem" msgstr "America/Gogledd_Dakota/Center" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "America/Managua" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "America/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "America/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "America/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "America/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "America/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "America/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "America/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "America/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "America/Puerto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "America/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "America/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "America/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "America/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 #, fuzzy msgid "America/Resolute" msgstr "America/Belem" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "America/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "America/Rosario" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "America/Santiago" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 #, fuzzy msgid "America/Santarem" msgstr "America/Santiago" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "America/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "America/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "America/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "America/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "America/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 #, fuzzy msgid "America/St_Barthelemy" msgstr "America/Belem" #: timezones.h:376 msgid "America/St_Johns" msgstr "America/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "America/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "America/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "America/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "America/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "America/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "America/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "America/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "America/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "America/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "America/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "America/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "America/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "America/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "America/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "America/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "America/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "America/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Antarctica/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Antarctica/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Antarctica/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "Antarctica/McMurdo" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Antarctica/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Antarctica/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Antarctica/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Antarctica/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antarctica/Pegwn_y_De" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Antarctica/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Antarctica/Fostoc" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Arctic/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Asia/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Asia/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Asia/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Asia/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Asia/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Asia/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Asia/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Asia/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Asia/Baghdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Asia/Bahrain" #: timezones.h:468 msgid "Asia/Baku" msgstr "Asia/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Asia/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Asia/Beirut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Asia/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Asia/Brwnei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Asia/Calcutta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Asia/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Asia/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "Asia/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Asia/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Asia/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Asia/Damascus" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Asia/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Asia/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Asia/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Asia/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Asia/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Asia/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 #, fuzzy msgid "Asia/Ho_Chi_Minh" msgstr "Asia/Chongqing" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Asia/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Asia/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Asia/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Asia/Istanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Asia/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Asia/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Asia/Jerwsalem" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Asia/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Asia/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Asia/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Asia/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 #, fuzzy msgid "Asia/Kathmandu" msgstr "Asia/Katmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Asia/Katmandu" #: timezones.h:518 #, fuzzy msgid "Asia/Kolkata" msgstr "Asia/Jakarta" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Asia/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Asia/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Asia/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Asia/Coweit" #: timezones.h:529 msgid "Asia/Macao" msgstr "Asia/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Asia/Macau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Asia/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Asia/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "Asia/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Asia/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Asia/Nicosia" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "Asia/Irkutsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "Asia/Nofosibirsc" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Asia/Nofosibirsc" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 #, fuzzy msgid "Moscow+03 - Novosibirsk" msgstr "Asia/Nofosibirsc" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Asia/Omsc" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "Asia/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Asia/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Asia/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Asia/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Asia/Qatar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Asia/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Asia/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Asia/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Asia/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Asia/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Asia/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Asia/Saigon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Asia/SachalĆ®n" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Asia/Samarcand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Asia/Seoul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Asia/Sianghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "Asia/SingapĆ“r" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Asia/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Asia/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Asia/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Asia/Tehran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Asia/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Asia/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Asia/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Asia/Tokyo" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Asia/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Asia/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Asia/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Asia/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Asia/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Asia/Fladifostoc" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Asia/Yacwtsc" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Asia/Yecaterinbwrg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Asia/Ierefan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Yr_Iwerydd/Azores" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Yr_Iwerydd/Bermwda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Yr_Iwerydd/Ynysoedd_Dedwydd" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Yr_Iwerydd/Cape_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Yr_Iwerydd/Ffarƶe" #: timezones.h:616 #, fuzzy msgid "Atlantic/Faroe" msgstr "Yr_Iwerydd/Ffarƶe" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Yr_Iwerydd/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Yr_Iwerydd/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Yr_Iwerydd/Reykjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Yr_Iwerydd/De_Georgia" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Yr_Iwerydd/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Yr_Iwerydd/St_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "Awstralia/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Awstralia/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 #, fuzzy msgid "South Australia" msgstr "Awstralia/ACT" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Awstralia/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Awstralia/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Awstralia/Canberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "Awstralia/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Awstralia/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 #, fuzzy msgid "Australia/Eucla" msgstr "Awstralia/Queensland" #. comment for time zone Australia/Eucla #: timezones.h:644 #, fuzzy msgid "Western Australia - Eucla area" msgstr "Awstralia/Queensland" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Awstralia/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "Awstralia/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Awstralia/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Awstralia/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Awstralia/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 #, fuzzy msgid "Victoria" msgstr "Awstralia/Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "Awstralia/Gogledd" #: timezones.h:659 msgid "Australia/NSW" msgstr "Awstralia/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "Awstralia/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Awstralia/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "Awstralia/De" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Awstralia/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Awstralia/Tasmania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Awstralia/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "Awstralia/Gorllewin" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Awstralia/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brasil/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brasil/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brasil/Dwyrain" #: timezones.h:675 msgid "Brazil/West" msgstr "Brasil/Gorllewin" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Canada/Iwerydd" #: timezones.h:677 msgid "Canada/Central" msgstr "Canada/Canolbarth" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Canada/Dwyreiniol" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Canada/Dwyrain-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Canada/Mynyddoedd" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Canada/Y_Tir_Newydd" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Canada/MĆ“r_Tawel" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Canada/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Canada/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Chile/Cyfandirol" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chile/Ynys_y_Pasg" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Ciwba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Yr Aifft" #: timezones.h:692 msgid "Eire" msgstr "Iwerddon" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Ayb/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Ayb/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Ayb/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Ayb/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Ayb/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Ayb/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Ayb/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Ayb/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Ayb/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Ayb/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Ayb/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Ayb/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Ayb/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Ayb/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Ayb/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Ayb/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Ayb/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Ayb/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Ayb/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Ayb/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Ayb/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Ayb/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Ayb/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Ayb/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Ayb/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Ayb/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Ayb/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Ayb/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Ayb/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Ayb/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Ayb/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Ayb/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Ayb/Byd-eang" #: timezones.h:728 msgid "Etc/UTC" msgstr "Ayb/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Ayb/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Ewrop/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Ewrop/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Ewrop/Athen" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Ewrop/Belffast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Ewrop/Belgrade" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Ewrop/Berlin" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Ewrop/Bratislafa" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Ewrop/Brwsel" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Ewrop/Bwcarest" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Ewrop/Bwdapest" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Ewrop/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Ewrop/Copenhagen" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Ewrop/Dulyn" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Ewrop/Gibraltar" #: timezones.h:744 #, fuzzy msgid "Europe/Guernsey" msgstr "Ewrop/Athen" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Ewrop/Helsinci" #: timezones.h:746 #, fuzzy msgid "Europe/Isle_of_Man" msgstr "Ewrop/Oslo" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Ewrop/Istanbwl" #: timezones.h:748 #, fuzzy msgid "Europe/Jersey" msgstr "Ewrop/Paris" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Ewrop/Caliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Ewrop/CĆÆef" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Ewrop/Lisbon" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Ewrop/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Ewrop/Llundain" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Ewrop/Lwcsembwrg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Ewrop/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Ewrop/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Ewrop/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Ewrop/Minsc" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Ewrop/Monaco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Ewrop/Mosgo" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Ewrop/Nicosia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Ewrop/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Ewrop/Paris" #: timezones.h:774 #, fuzzy msgid "Europe/Podgorica" msgstr "Ewrop/Andorra" #: timezones.h:775 msgid "Europe/Prague" msgstr "Ewrop/PrĆ¢g" #: timezones.h:776 msgid "Europe/Riga" msgstr "Ewrop/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Ewrop/Rhufain" #: timezones.h:778 msgid "Europe/Samara" msgstr "Ewrop/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Ewrop/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Ewrop/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Ewrop/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Ewrop/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Ewrop/Soffia" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Ewrop/Stockholm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Ewrop/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Ewrop/Tirane" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Ewrop/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Ewrop/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Ewrop/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Ewrop/Y Fatican" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Ewrop/Fienna" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Ewrop/Filniws" #: timezones.h:799 #, fuzzy msgid "Europe/Volgograd" msgstr "Ewrop/Belgrade" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Ewrop/Warsaw" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Ewrop/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Ewrop/Zaporozhye" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Ewrop/Zurich" #: timezones.h:808 msgid "Factory" msgstr "Ffatri" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Ynys yr IĆ¢" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Cefnfor_yr_India/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Cefnfor_yr_India/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Cefnfor_yr_India/Ynys_y_Nadolig" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Cefnfor_yr_India/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Cefnfor_yr_India/Comoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Cefnfor_yr_India/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Cefnfor_yr_India/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Cefnfor_yr_India/MaldĆ®fau" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Cefnfor_yr_India/Mawrisiws" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Cefnfor_yr_India/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Cefnfor_yr_India/Reunion" #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "Israel" #: timezones.h:833 msgid "Jamaica" msgstr "Jamaica" #: timezones.h:834 msgid "Japan" msgstr "Siapan" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libya" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Mecsico/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Mecsico/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Mecsico/Cyffredinol" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Dwyrain_canol/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Dwyrain_canol/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Dwyrain_canol/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "MĆ“r_tawel/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "MĆ“r_tawel/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "MĆ“r_tawel/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 #, fuzzy msgid "Chatham Islands" msgstr "Chile/Ynys_y_Pasg" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "MĆ“r_tawel/Truk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 #, fuzzy msgid "Pacific/Easter" msgstr "MĆ“r_tawel/Dwyrainer" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "MĆ“r_tawel/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "MĆ“r_tawel/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "MĆ“r_tawel/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "MĆ“r_tawel/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "MĆ“r_tawel/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "MĆ“r_tawel/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "MĆ“r_tawel/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "MĆ“r_tawel/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "MĆ“r_tawel/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "MĆ“r_tawel/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 #, fuzzy msgid "Hawaii" msgstr "UD/Hawaii" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "MĆ“r_tawel/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "MĆ“r_tawel/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "MĆ“r_tawel/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 #, fuzzy msgid "Kosrae" msgstr "Israel" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "MĆ“r_tawel/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "MĆ“r_tawel/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "MĆ“r_tawel/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "MĆ“r_tawel/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "MĆ“r_tawel/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "MĆ“r_tawel/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "MĆ“r_tawel/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "MĆ“r_tawel/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "MĆ“r_tawel/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "MĆ“r_tawel/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "MĆ“r_tawel/Pitcairn" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "MĆ“r_tawel/Ponape" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "MĆ“r_tawel/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "MĆ“r_tawel/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "MĆ“r_tawel/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "MĆ“r_tawel/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "MĆ“r_tawel/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "MĆ“r_tawel/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "MĆ“r_tawel/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 #, fuzzy msgid "Gilbert Islands" msgstr "Chile/Ynys_y_Pasg" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "MĆ“r_tawel/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "MĆ“r_tawel/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "MĆ“r_tawel/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "MĆ“r_tawel/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "MĆ“r_tawel/Yap" #: timezones.h:929 msgid "Poland" msgstr "Gwlad_Pwyl" #: timezones.h:930 msgid "Portugal" msgstr "Portwgal" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapore" #: timezones.h:937 msgid "Turkey" msgstr "Twrci" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Byd-eang" #: timezones.h:940 msgid "US/Alaska" msgstr "UD/Alasca" #: timezones.h:941 msgid "US/Aleutian" msgstr "UD/Alewtaidd" #: timezones.h:942 msgid "US/Arizona" msgstr "UD/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "UD/Canolbarth" #: timezones.h:944 msgid "US/Eastern" msgstr "UD/Dwyreiniol" #: timezones.h:945 msgid "US/East-Indiana" msgstr "UD/Dwyrain-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "UD/Hawaii" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "UD/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "UD/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "UD/Mynyddoedd" #: timezones.h:950 msgid "US/Pacific" msgstr "UD/MĆ“r_Tawel" #: timezones.h:951 msgid "US/Samoa" msgstr "UD/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" #, fuzzy #~ msgid "US/Pacific-New" #~ msgstr "UD/MĆ“r_Tawel" #~ msgid "SystemV/AST4" #~ msgstr "SystemV/AST4" #~ msgid "SystemV/AST4ADT" #~ msgstr "SystemV/AST4ADT" #~ msgid "SystemV/CST6" #~ msgstr "SystemV/CST6" #~ msgid "SystemV/CST6CDT" #~ msgstr "SystemV/CST6CDT" #~ msgid "SystemV/EST5" #~ msgstr "SystemV/EST5" #~ msgid "SystemV/EST5EDT" #~ msgstr "SystemV/EST5EDT" #~ msgid "SystemV/HST10" #~ msgstr "SystemV/HST10" #~ msgid "SystemV/MST7" #~ msgstr "SystemV/MST7" #~ msgid "SystemV/MST7MDT" #~ msgstr "SystemV/MST7MDT" #~ msgid "SystemV/PST8" #~ msgstr "SystemV/PST8" #~ msgid "SystemV/PST8PDT" #~ msgstr "SystemV/PST8PDT" #~ msgid "SystemV/YST9" #~ msgstr "SystemV/YST9" #~ msgid "SystemV/YST9YDT" #~ msgstr "SystemV/YST9YDT" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/kn.po0000664000175000017500000026213114632072346023674 0ustar fabiofabio# translation of system-config-date.master-timezones.kn.po to Kannada # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # shankar Prasad , 2006. # Shankar Prasad , 2008, 2009, 2010. # Savitha, 2010. msgid "" msgstr "" "Project-Id-Version: system-config-date.master-timezones.kn\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-12-07 10:52+0530\n" "Last-Translator: Savitha\n" "Language-Team: Kannada \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: \n" "X-Generator: Lokalize 1.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "\n" "\n" "\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²…ą²¬ą²æą²”ą³ą²œą²¾ą²Øą³" #: timezones.h:2 msgid "Africa/Accra" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²…ą²•ą³ą²°ą²¾" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²†ą²”ą³ą²”ą²æą²øą³_ಆಬಾಬಾ" #: timezones.h:4 msgid "Africa/Algiers" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²…ą²²ą³ą²—ą³ˆą²°ą²øą³" #: timezones.h:5 msgid "Africa/Asmara" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²…ą²øą³ą²®ą³†ą²°" #: timezones.h:6 msgid "Africa/Asmera" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²…ą²øą³ą²®ą³†ą²°" #: timezones.h:7 msgid "Africa/Bamako" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²¬ą²®ą²¾ą²•ą³Š" #: timezones.h:8 msgid "Africa/Bangui" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ಬಾಂಗುಲಿ" #: timezones.h:9 msgid "Africa/Banjul" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²¬ą²¾ą²‚ą²œą³ą²²ą³" #: timezones.h:10 msgid "Africa/Bissau" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²¬ą²æą²øą³ą²øą²¾ą²µą³" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²¬ą³ą²²ą²¾ą²Øą³ą²Ÿą³ˆą²°ą³" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²¬ą³ą²°ą²ą²¾ą²µą²æą²²ą³ą²²ą³†" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²¬ą³ą²œą³ą²‚ą²¬ą³ą²°ą²¾" #: timezones.h:14 msgid "Africa/Cairo" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²•ą³ˆą²°ą³‹" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²•ą²øą³ą²øą²¾ą²¬ą³ą²²ą²¾ą²‚ą²•ą²¾" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²øą²æą²Æą³‚ą²Ÿą²¾" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "ಸಿಯುಟಾ ಹಾಗು ಮೆಲಿಲಾ" #: timezones.h:19 msgid "Africa/Conakry" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²•ą³Šą²Øą²¾ą²•ą³ą²°ą²æ" #: timezones.h:20 msgid "Africa/Dakar" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²¦ą²•ą²¾ą²°ą³" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²¦ą²°ą³_ą²Ž_ą²øą²²ą²¾ą²®ą³" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ಜಿಬೌಟಿ" #: timezones.h:23 msgid "Africa/Douala" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²”ą³Œą²†ą²²ą²¾" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²Žą²²ą³_ą²†ą²Æą³ą²Øą³" #: timezones.h:25 msgid "Africa/Freetown" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²«ą³ą²°ą³€ą²Ÿą³Œą²Øą³" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²—ą³ą²Æą²¬ą³Šą²°ą³Šą²Øą³†" #: timezones.h:27 msgid "Africa/Harare" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ಹರಾರೆ" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²œą³Šą²¹ą²¾ą²Øą³ą²øą³ ą²¬ą²°ą³ą²—ą³" #: timezones.h:29 msgid "Africa/Kampala" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ಕಂಪಾಲಾ" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²–ą²°ą³ą²Ÿą³Œą²®ą³" #: timezones.h:31 msgid "Africa/Kigali" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ಕಿಗಲಿ" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²•ą²æą²Øą³ą²øą²¾ą²ø" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "ą²Ŗą²¶ą³ą²šą²æą²® ą²”ą³†ą²®ą³Š. ರಿಪ. ą²†ą²«ą³ ą²•ą²¾ą²‚ą²—ą³Š" #: timezones.h:35 msgid "Africa/Lagos" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²²ą²—ą³‹ą²øą³" #: timezones.h:36 msgid "Africa/Libreville" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²²ą²æą²¬ą³ą²°ą³†ą²µą²æą²²ą³ą²²ą³†" #: timezones.h:37 msgid "Africa/Lome" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²²ą³‹ą²®ą³" #: timezones.h:38 msgid "Africa/Luanda" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ಲುವಾಂಔ" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ಲುಬುಂಬಾಶಿ" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ą²”ą³†ą²®ą³Š. ರಿಪ. ą²†ą²«ą³ ą²•ą²¾ą²‚ą²—ą³Š" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ಲುಸಾಕ" #: timezones.h:43 msgid "Africa/Malabo" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ಮಲಾಬೊ" #: timezones.h:44 msgid "Africa/Maputo" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²®ą²Ŗą³ą²Ÿą³‹" #: timezones.h:45 msgid "Africa/Maseru" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ಮಸೆರು" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ಬಬಾನೆ" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²®ą³Šą²—ą²¾ą²¦ą²æą²¶ą³" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²®ą³Šą²Øą³ą²°ą³Šą²µą²æą²Æą²¾" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²Øą³ˆą²°ą³‹ą²¬ą²æ" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ಜಮಿನಾ" #: timezones.h:51 msgid "Africa/Niamey" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²Øą³ˆą²®ą³†" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²Øą³Œą²•ą³ą²šą²¾ą²Ÿą³" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²’ą²—ą²¾ą²¦ą³Šą²—ą³Š" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²Ŗą³‹ą²°ą³ą²Ÿą³Š-ನೊವೊ" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ಸಾವೊ-ą²Ÿą³‹ą²®ą³‹" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²Ÿą²æą²‚ą²¬ą³ą²•ą³ą²¤ą³" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²Ÿą³ą²°ą²æą²Ŗą³‹ą²²ą²æ" #: timezones.h:58 msgid "Africa/Tunis" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²Ÿą³ą²Æą³ą²Øą²æą²øą³" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "ą²†ą²«ą³ą²°ą²æą²•ą²¾/ą²µą²æą²‚ą²¦ą³Šą²Žą²•ą³" #: timezones.h:60 msgid "America/Adak" msgstr "ಅಮೆರಿಕ/ą²…ą²”ą²¾ą²•ą³" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "ą²…ą²²ą³‚ą²¶ą³€ą²Æą²Øą³ ą²¦ą³ą²µą³€ą²Ŗą²—ą²³ą³" #: timezones.h:63 msgid "America/Anchorage" msgstr "ಅಮೆರಿಕ/ą²†ą²‚ą²–ą³Šą²°ą³‡ą²œą³" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "ą²…ą²²ą²øą³ą²•ą²¾ ಸಮಯ" #: timezones.h:66 msgid "America/Anguilla" msgstr "ಅಮೆರಿಕ/ą²…ą²‚ą²—ą²æą²²ą³ą²²ą²¾" #: timezones.h:67 msgid "America/Antigua" msgstr "ಅಮೆರಿಕ/ą²†ą²‚ą²Ÿą²æą²—ą³ą²Æą³ą²µą²¾" #: timezones.h:68 msgid "America/Araguaina" msgstr "ಅಮೆರಿಕ/ą²…ą²°ą³ą²—ą³ą²Æą²¾ą²Øą²¾" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "ą²Ÿą³Šą²•ą²¾ą²‚ą²Ÿą²æą²Øą³ą²øą³" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "ಅಮೆರಿಕ/ą²…ą²°ą³ą²œą³†ą²‚ą²Ÿą³€ą²Øą²¾/ą²¬ą³ą²Æą³ą²Øą³‹ą²øą³_ą²ą²°ą³€ą²øą³" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "ą²¬ą³ą²Æą³‚ą²Øą³‹ą²øą³ ą²ą²°ą²æą²øą³ (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "ಅಮೆರಿಕ/ą²…ą²°ą³ą²œą³†ą²‚ą²Ÿą³€ą²Øą²¾/ą²•ą³ą²Æą²¾ą²Ÿą²®ą²¾ą²°ą³ą²•ą²¾" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "ą²•ą²Ÿą²¾ą²®ą²¾ą²°ą³ą²•ą²¾ (CT), ą²¶ą³ą²¬ą³ą²Ÿą³ (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "ಅಮೆರಿಕ/ą²…ą²°ą³ą²œą³†ą²‚ą²Ÿą³€ą²Øą²¾/ą²•ą³Šą²®ą³Šą²”ą³ ರಿವಾಔಾವಿಯಾ" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "ಅಮೆರಿಕ/ą²…ą²°ą³ą²œą³†ą²‚ą²Ÿą³€ą²Øą²¾/ą²•ą³Šą²°ą³ą²”ą³‹ą²¬ą²¾" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "ą²¹ą³†ą²šą³ą²šą²æą²Ø ą²øą³ą²„ą²³ą²—ą²³ą³ (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "ಅಮೆರಿಕ/ą²…ą²°ą³ą²œą³†ą²‚ą²Ÿą³€ą²Øą²¾/ą²œą³ą²œą³ą²Æą³" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "ą²œą³ą²œą³ą²Æą³ (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "ಅಮೆರಿಕ/ą²…ą²°ą³ą²œą³†ą²‚ą²Ÿą³€ą²Øą²¾/ಲಾ_ą²°ą²æą²Æą³‹ą²œą²¾" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "ಲಾ ą²°ą²æą²Æą³‹ą²œ (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "ಅಮೆರಿಕ/ą²…ą²°ą³ą²œą³†ą²‚ą²Ÿą³€ą²Øą²¾/ą²®ą³†ą²‚ą²”ą³‹ą²ą²¾" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "ą²®ą³†ą²‚ą²”ą³‹ą²ą²¾ (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "ಅಮೆರಿಕ/ą²…ą²°ą³ą²œą³†ą²‚ą²Ÿą³€ą²Øą²¾/ರಿಯೋ_ą²—ą³†ą²²ą³ą²²ą²¾ą²—ą³Šą²øą³" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "ą²øą²¾ą²‚ą²Ÿą²¾ ą²•ą³ą²°ą³‚ą²ą³ (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "ಅಮೆರಿಕಾ/ą²…ą²°ą³ą²œą³†ą²‚ą²Ÿą³€ą²Øą²¾/ą²øą²¾ą²²ą³ą²Ÿą²¾" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "ಅಮೆರಿಕ/ą²…ą²°ą³ą²œą³†ą²‚ą²Ÿą³€ą²Øą²¾/ą²øą²¾ą²Øą³_ą²œą³ą²µą²¾ą²Øą³" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "ą²øą³ą²Æą²¾ą²Øą³ ą²œą³ą²µą²¾ą²Øą³ (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "ಅಮೆರಿಕ/ą²…ą²°ą³ą²œą³†ą²‚ą²Ÿą³€ą²Øą²¾/ą²øą²¾ą²Øą³_ą²²ą³‚ą²Æą²æą²øą³" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "ą²øą³ą²Æą²¾ą²Øą³ ą²²ą³‚ą²Æą²æą²øą³ (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "ಅಮೆರಿಕ/ą²…ą²°ą³ą²œą³†ą²‚ą²Ÿą³€ą²Øą²¾/ą²Ÿą³ą²•ą³ą²®ą²¾ą²Øą³" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "ą²Ÿą³ą²•ą³ą²®ą²¾ą²Øą³ (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "ಅಮೆರಿಕ/ą²…ą²°ą³ą²œą³†ą²‚ą²Ÿą³€ą²Øą²¾/ಉಶುಯಾಯಿ" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "ą²Ÿą²æą²Æą³†ą²°ą²¾ ą²”ą³†ą²²ą³ ą²«ą³ą²Æą³‚ą²—ą³Š (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "ಅಮೆರಿಕ/ಅರುಬಾ" #: timezones.h:109 msgid "America/Asuncion" msgstr "ಅಮೆರಿಕ/ą²…ą²øą²‚ą²•ą²æą²Æą²¾ą²Øą³" #: timezones.h:110 msgid "America/Atikokan" msgstr "ಅಮೆರಿಕ/ą²…ą²Ÿą²æą²•ą³‹ą²•ą²Øą³" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ą²¶ą²æą²·ą³ą²Ÿ ಸಮಯ - ą²…ą²Ÿą²æą²•ą³Šą²•ą²Øą³, ą²’ą²‚ą²Ÿą²¾ą²°ą²æą²Æą³Š ಹಾಗು ą²øą³Œą²¤ą³ā€Œą²¹ą³ą²Æą²¾ą²‚ą²Ŗą³ą²Ÿą²Øą³ ಐ, ą²Øą³ą²Øą²¾ą²µą³ą²Ÿą³" #: timezones.h:113 msgid "America/Atka" msgstr "ಅಮೆರಿಕ/ą²…ą²Ÿą³ą²•ą²¾" #: timezones.h:114 msgid "America/Bahia" msgstr "ಅಮೆರಿಕ/ಬಹಿಯಾ" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "ಬಹಿಯಾ" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "ಅಮೆರಿಕ/ಬಹಿಯಾ_ą²¬ą²‚ą²”ą³†ą²°ą²¾ą²øą³" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "ą²®ą³†ą²•ą³ą²øą²æą²•ą²Øą³ ą²®ą²§ą³ą²Æ ಸಮಯ - ಬಹಿಯಾ ಔಿ ą²¬ą²‚ą²”ą³†ą²°ą²¾ą²øą³" #: timezones.h:120 msgid "America/Barbados" msgstr "ಅಮೆರಿಕ/ą²¬ą²¾ą²°ą³ą²¬ą²”ą³‹ą²øą³" #: timezones.h:121 msgid "America/Belem" msgstr "ಅಮೆರಿಕ/ą²¬ą³†ą²²ą³†ą²®ą³" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "ಅಮಾಪ, ಇ ಪಾರಾ" #: timezones.h:124 msgid "America/Belize" msgstr "ಅಮೆರಿಕ/ą²¬ą³†ą²²ą³ˆą²ą³" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "ಅಮೆರಿಕ/ą²¬ą³ą²²ą²¾ą²‚ą²•ą³-ą²øą²¾ą²¬ą³ą²²ą³‹ą²Øą³" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "ą²…ą²Ÿą³ą²²ą²¾ą²‚ą²Ÿą²æą²•ą³ ą²¶ą²æą²·ą³ą²Ÿ ಸಮಯ - ą²•ą³ą²Æą³‚ą²¬ą³†ą²•ą³ - ಕೆಳ ą²‰ą²¤ą³ą²¤ą²° ತೀರ" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "ಅಮೆರಿಕ/ಬೊವ_ą²µą²æą²øą³ą²Ÿą²¾" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "ರೊರೈಮಾ" #: timezones.h:131 msgid "America/Bogota" msgstr "ಅಮೆರಿಕ/ą²¬ą³Šą²—ą³Šą²Ÿą²¾" #: timezones.h:132 msgid "America/Boise" msgstr "ಅಮೆರಿಕ/ą²¬ą³Šą²Æą³ą²øą³†" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "ą²Ŗą²°ą³ą²µą²¤ ಸಮಯ - ą²¦ą²•ą³ą²·ą²æą²£ ą²‡ą²¦ą²¾ą²¹ą³Š ಹಾಗು ą²Ŗą³‚ą²°ą³ą²µ ą²’ą²°ą³†ą²—ą²¾ą²Øą³" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "ಅಮೆರಿಕ/ą²¬ą³ą²Æą³‚ą²Øą³‹ą²øą³_ą²ą²°ą²æą²øą³" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "ಅಮೆರಿಕ/ą²•ą³‡ą²‚ą²¬ą³ą²°ą²æą²”ą³ą²œą³_ಬೇ" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "ą²Ŗą²°ą³ą²µą²¤ ಸಮಯ - ą²Ŗą²¶ą³ą²šą²æą²® ą²Øą³ą²Øą²¾ą²µą³ą²Ÿą³" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "ಅಮೆರಿಕ/ಕಾಂಪೋ_ą²—ą³ą²°ą²¾ą²‚ą²”ą³†" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "ಮಾಟೊ ą²—ą³ą²°ą²¾ą²øą³Š ಔು ą²øą³ą²²ą³" #: timezones.h:142 msgid "America/Cancun" msgstr "ಅಮೆರಿಕ/ą²•ą³ą²Æą²¾ą²Øą³ą²•ą²Øą³" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "ą²®ą²§ą³ą²Æ ಸಮಯ - ą²•ą³ą²µą²æą²‚ą²Ÿą²¾ą²Ø ರೂ" #: timezones.h:145 msgid "America/Caracas" msgstr "ಅಮೆರಿಕ/ą²•ą³ą²Æą²¾ą²°ą²¾ą²•ą²¾ą²øą³" #: timezones.h:146 msgid "America/Catamarca" msgstr "ಅಮೆರಿಕ/ą²•ą²Ÿą²¾ą²®ą²¾ą²°ą³ą²•ą²¾" #: timezones.h:147 msgid "America/Cayenne" msgstr "ಅಮೆರಿಕ/ą²•ą²Æą³†ą²Øą³ą²Øą³†" #: timezones.h:148 msgid "America/Cayman" msgstr "ಅಮೆರಿಕ/ą²•ą²Æą³ą²®ą²¾ą²Øą³" #: timezones.h:149 msgid "America/Chicago" msgstr "ಅಮೆರಿಕ/ą²šą²æą²•ą²¾ą²—ą³Š" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "ą²®ą²§ą³ą²Æ ಸಮಯ" #: timezones.h:152 msgid "America/Chihuahua" msgstr "ಅಮೆರಿಕ/ಚಿಹುವಾ" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "ą²®ą³†ą²•ą³ą²øą²æą²•ą²Øą³ ą²Ŗą²°ą³ą²µą²¤ ಸಮಯ - ą²Æą³ą²Žą²øą³ ಗಔಿಯ ą²‡ą²Øą³ą²Øą³Šą²‚ą²¦ą³ ಬದಿಯ ಚಿಹುವಾಹುವ" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "ಅಮೆರಿಕ/ą²•ą³‹ą²°ą²²ą³_ą²¹ą²¾ą²°ą³ą²¬ą²°ą³" #: timezones.h:156 msgid "America/Cordoba" msgstr "ಅಮೆರಿಕ/ą²•ą²¾ą²°ą³ą²”ą³‹ą²¬ą²¾" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "ಅಮೆರಿಕ/ą²•ą³‹ą²øą³ą²Ÿą²¾_ರಿಕಾ" #: timezones.h:158 msgid "America/Cuiaba" msgstr "ಅಮೆರಿಕ/ą²•ą³ą²Æą³ą²µą²¾ą²¬ą²¾" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "ಮಟೊ ą²—ą³ą²°ą²¾ą²øą³Š" #: timezones.h:161 msgid "America/Curacao" msgstr "ಅಮೆರಿಕ/ą²•ą³ą²Æą³ą²°ą²¾ą²•ą²¾ą²µą³" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "ಅಮೆರಿಕ/ą²”ą²Øą³ą²®ą²¾ą²°ą³ą²•ą²¶ą²¾ą²µą³ą²Ø" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ತೀರ, ą²øą³ą²•ą³‹ą²°ą³ą²øą³-ą²¬ą²æą²øą²‚ą²”ą³ā€Œą²Ø ą²‰ą²¤ą³ą²¤ą²°" #: timezones.h:165 msgid "America/Dawson" msgstr "ಅಮೆರಿಕ/ą²”ą²¾ą²µą³ą²øą²Øą³" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³ ಸಮಯ - ą²‰ą²¤ą³ą²¤ą²° ą²Æą³ą²•ą³Šą²Øą³" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "ಅಮೆರಿಕ/ą²”ą²¾ą²µą³ą²øą²Øą³_ą²•ą³ą²°ą³€ą²•ą³" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "ą²Ŗą²°ą³ą²µą²¤ ą²¶ą²æą²·ą³ą²Ÿ ಸಮಯ - ą²”ą²¾ą²øą²Øą³ ą²•ą³ą²°ą³€ą²•ą³ ಹಾಗು ą²«ą³‹ą²°ą³ą²Ÿą³ ą²øą³‡ą²‚ą²Ÿą³ ą²œą²¾ą²Øą³, ą²¬ą³ą²°ą²æą²Ÿą³€ą²·ą³ ą²•ą³Šą²²ą²‚ą²¬ą²æą²Æą²¾" #: timezones.h:171 msgid "America/Denver" msgstr "ಅಮೆರಿಕ/ą²”ą³†ą²Øą³ą²µą³†ą²°ą³" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "ą²Ŗą²°ą³ą²µą²¤ ಸಮಯ" #: timezones.h:174 msgid "America/Detroit" msgstr "ಅಮೆರಿಕ/ą²”ą³†ą²Ÿą³ą²°ą²¾ą²Æą²æą²Ÿą³" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ಸಮಯ - ą²®ą²æą²¶ą²æą²—ą²Øą³ - ą²¹ą³†ą²šą³ą²šą²æą²Ø ಸಮಯಗಳು" #: timezones.h:177 msgid "America/Dominica" msgstr "ಅಮೆರಿಕ/ą²”ą³Šą²®ą²æą²Øą²æą²•ą²¾" #: timezones.h:178 msgid "America/Edmonton" msgstr "ಅಮೆರಿಕ/ą²Žą²”ą³ą²®ą³Šą²‚ą²Ÿą²Øą³" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "ą²Ŗą²°ą³ą²µą²¤ ಸಮಯ - ą²…ą²²ą³ą²¬ą³†ą²°ą³ą²Ÿą²¾, ą²Ŗą³‚ą²°ą³ą²µ ą²¬ą³ą²°ą²æą²Ÿą³€ą²·ą³ ą²•ą³Šą²²ą²‚ą²¬ą²æą²Æą²¾ ಹಾಗು ą²Ŗą²¶ą³ą²šą²æą²® ą²øą²øą³ą²•ą²¾ą²¶ą³†ą²µą²¾ą²Øą³" #: timezones.h:181 msgid "America/Eirunepe" msgstr "ಅಮೆರಿಕ/ಐರುನೆಪೆ" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "ą²Ŗ ą²…ą²®ą³†ą²ą³Šą²Øą²¾ą²øą³" #: timezones.h:184 msgid "America/El_Salvador" msgstr "ಅಮೆರಿಕ/ą²Žą²²ą³_ą²øą²¾ą²²ą³ą²µą³†ą²”ą²¾ą²°ą³" #: timezones.h:185 msgid "America/Ensenada" msgstr "ಅಮೆರಿಕ/ą²Žą²Øą³ą²øą³†ą²Øą²”ą²¾" #: timezones.h:186 msgid "America/Fortaleza" msgstr "ಅಮೆರಿಕ/ą²«ą³Šą²°ą³ą²Ÿą²¾ą²²ą³†ą²ą²¾" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "NE ą²¬ą³ą²°ą²ą²æą²²ą³ (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "ಅಮೆರಿಕ/ą²«ą³‹ą²°ą³ą²Ÿą³_ą²µą²Æą³ą²Øą³†" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "ಅಮೆರಿಕ/ą²—ą³ą²²ą³‡ą²øą³_ಬೇ" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "ą²…ą²Ÿą³ą²²ą²¾ą²‚ą²Ÿą²æą²•ą³ ಸಮಯ - ನೋವಾ ą²øą³ą²•ą³‹ą²Ÿą²æą²Æ - DST 1966-1971 ą²Æą²²ą³ą²²ą²æ ಕಂಔುಬರದೆ ಇರುವ ą²øą³ą²„ą²³ą²—ą²³ą³" #: timezones.h:193 msgid "America/Godthab" msgstr "ಅಮೆರಿಕ/ą²—ą³Šą²”ą³ą²¤ą²¾ą²¬ą³" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "ą²¹ą³†ą²šą³ą²šą²æą²Ø ą²øą³ą²„ą²³ą²—ą²³ą³" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "ಅಮೆರಿಕ/ą²—ą³‚ą²øą³_ಬೇ" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "ą²…ą²Ÿą³ą²²ą²¾ą²‚ą²Ÿą²æą²•ą³ ಸಮಯ - ą²²ą³ą²Æą²¾ą²¬ą³ą²°ą³Šą²”ą²¾ą²°ą³ - ą²¹ą³†ą²šą³ą²šą²æą²Ø ą²øą³ą²„ą²³ą²—ą²³ą³" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "ಅಮೆರಿಕ/ą²—ą³ą²°ą²¾ą²‚ą²”ą³_ą²Ÿą²°ą³ą²•ą³" #: timezones.h:200 msgid "America/Grenada" msgstr "ಅಮೆರಿಕ/ą²—ą³ą²°ą³†ą²Øą²”ą²¾" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "ಅಮೆರಿಕ/ą²—ą³ą²Æą²¾ą²”ą³†ą²²ą³Œą²Ŗą³" #: timezones.h:202 msgid "America/Guatemala" msgstr "ಅಮೆರಿಕ/ą²—ą³ą²µą²¾ą²Ÿą³†ą²®ą²¾ą²²ą²¾" #: timezones.h:203 msgid "America/Guayaquil" msgstr "ಅಮೆರಿಕ/ą²—ą²Æą²¾ą²•ą²æą²²ą³" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "ą²®ą³ˆą²Øą³ā€Œą²²ą³ą²Æą²¾ą²‚ą²”ą³" #: timezones.h:206 msgid "America/Guyana" msgstr "ಅಮೆರಿಕ/ಗಯಾನಾ" #: timezones.h:207 msgid "America/Halifax" msgstr "ಅಮೆರಿಕ/ą²¹ą³ą²Æą²¾ą²²ą²æą²«ą²¾ą²•ą³ą²øą³" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "ą²…ą²Ÿą³ą²²ą²¾ą²‚ą²Ÿą²æą²•ą³ ಸಮಯ - ನೋವಾ ą²øą³ą²•ą²¾ą²Ÿą²æą²Æ (ą²¹ą³†ą²šą³ą²šą²æą²Ø ą²øą³ą²„ą²³ą²—ą²³ą³), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "ಅಮೆರಿಕ/ಹವಾನಾ" #: timezones.h:211 msgid "America/Hermosillo" msgstr "ಅಮೆರಿಕ/ą²¹ą²°ą³ą²®ą³†ą²øą²æą²²ą³ą²²ą³Š" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "ą²Ŗą²°ą³ą²µą²¤ ą²¶ą²æą²·ą³ą²Ÿ ಸಮಯ - ಸೊನೊರಾ" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "ಅಮೆರಿಕ/ಇಂಔಿಯಾನಾ/ą²‡ą²‚ą²”ą²æą²Æą²¾ą²Øą²¾ą²Ŗą³Šą²²ą²æą²øą³" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ಸಮಯ - ಇಂಔಿಯಾನ - ą²¹ą³†ą²šą³ą²šą²æą²Ø ą²øą³ą²„ą²³ą²—ą²³ą³" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "ಅಮೆರಿಕ/ಇಂಔಿಯಾನಾ/ą²Øą²¾ą²•ą³ą²øą³" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "ą²®ą²§ą³ą²Æ ಸಮಯ - ಇಂಔಿಯಾನ - ą²øą³ą²Ÿą²¾ą²°ą³ą²•ą³ ą²•ą³Œą²‚ą²Ÿą²æ" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "ಅಮೆರಿಕ/ಇಂಔಿಯಾನಾ/ą²®ą²°ą³†ą²‚ą²—ą³Š" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ಸಮಯ - ಇಂಔಿಯಾನ - ą²•ą³ą²°ą²¾ą²«ą³‹ą²°ą³ą²”ą³ ą²•ą³Œą²‚ą²Ÿą²æ" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "ಅಮೆರಿಕ/ಇಂಔಿಯಾನಾ/ą²Ŗą³€ą²Ÿą²°ą³ą²øą³ ą²¬ą²°ą³ą²—ą³" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ಸಮಯ - ಇಂಔಿಯಾನ - ą²Ŗą³ˆą²•ą³ ą²•ą³Œą²‚ą²Ÿą²æ" #: timezones.h:226 msgid "America/Indianapolis" msgstr "ಅಮೆರಿಕ/ą²‡ą²‚ą²”ą²æą²Æą²¾ą²Øą²¾ą²Ŗą³Šą²²ą²æą²øą³" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "ಅಮೆರಿಕ/ಇಂಔಿಯಾನಾ/ą²Ÿą³†ą²²ą³_ಸಿಟಿ" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "ą²®ą²§ą³ą²Æ ಸಮಯ - ಇಂಔಿಯಾನ - ಪೆರಿ ą²•ą³Œą²‚ą²Ÿą²æ" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "ಅಮೆರಿಕ/ಇಂಔಿಯಾನಾ/ವೆವೆ" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ಸಮಯ - ಇಂಔಿಯಾನ - ą²øą³ą²µą²æą²Ÿą³ą²œą²°ą³ą²²ą³ą²Æą²¾ą²‚ą²”ą³ ą²•ą³Œą²‚ą²Ÿą²æ" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "ಅಮೆರಿಕ/ಇಂಔಿಯಾನಾ/ą²µą²æą²Øą³ą²øą³†ą²Øą³ą²Øą³†ą²øą³" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ಸಮಯ - ಇಂಔಿಯಾನ - ą²”ą³‡ą²µą²æą²Æą²øą³, ą²”ą³ą²¬ą³Šą²Æą²æą²øą³, ą²Øą²¾ą²•ą³ą²øą³ ಹಾಗು ą²®ą²¾ą²°ą³ą²Ÿą²æą²Øą³ ą²•ą³Œą²‚ą²Ÿą²æą²—ą²³ą³" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "ಅಮೆರಿಕ/ಇಂಔಿಯಾನಾ/ą²µą²æą²Øą²¾ą²®ą³ą²Æą²¾ą²•ą³" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ಸಮಯ - ಇಂಔಿಯಾನ - ą²Ŗą³ą²²ą²¾ą²øą³ą²•ą²æ ą²•ą³Œą²‚ą²Ÿą²æ" #: timezones.h:239 msgid "America/Inuvik" msgstr "ಅಮೆರಿಕ/ą²‡ą²Øą³ą²µą²æą²•ą³" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "ą²Ŗą²°ą³ą²µą²¤ ಸಮಯ - ą²Ŗą²¶ą³ą²šą²æą²® ą²‰ą²¤ą³ą²¤ą²°ą²Ŗą²¶ą³ą²šą²æą²® ą²Ÿą³†ą²°ą²æą²Ÿą²°ą²æą²—ą²³ą³" #: timezones.h:242 msgid "America/Iqaluit" msgstr "ಅಮೆರಿಕ/ą²‡ą²•ą³ą²µą²¾ą²²ą²æą²Ÿą³" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ಸಮಯ - ą²Ŗą³‚ą²°ą³ą²µ ą²Øą³ą²Øą²¾ą²µą³ą²Ÿą³ - ą²¹ą³†ą²šą³ą²šą²æą²Ø ą²øą³ą²„ą²³ą²—ą²³ą³" #: timezones.h:245 msgid "America/Jamaica" msgstr "ಅಮೆರಿಕ/ą²œą²®ą³ˆą²•ą²¾" #: timezones.h:246 msgid "America/Jujuy" msgstr "ಅಮೆರಿಕ/ą²œą³ą²œą³ą²Æą³" #: timezones.h:247 msgid "America/Juneau" msgstr "ಅಮೆರಿಕ/ą²œą³ą²Øą³†ą²Æą²¾" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "ą²…ą²²ą²¾ą²øą³ą²•ą²¾ ಸಮಯ - ą²…ą²²ą²¾ą²øą³ą²•ą²¾ ą²Ŗą³ą²Æą²¾ą²Øą³ā€Œą²¹ą³ą²Æą²¾ą²‚ą²”ą²²ą³" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "ಅಮೆರಿಕ/ą²•ą³†ą²‚ą²Ÿą³ą²•ą²æ/ą²²ą³Œą²øą³ą²µą²æą²²ą³ą²²ą³†" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ಸಮಯ - ą²•ą³†ą²‚ą²Ÿą³ą²•ą²æ - ą²²ą³Œą²øą³ą²µą²æą²²ą³ą²²ą³† ą²Ŗą³ą²°ą²¦ą³‡ą²¶" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "ಅಮೆರಿಕ/ą²•ą³†ą²‚ą²Ÿą³ą²•ą²æ/ą²®ą³Šą²‚ą²Ÿą²æą²øą²æą²²ą³ą²²ą³Š" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ಸಮಯ - ą²•ą³†ą²‚ą²Ÿą³ą²•ą²æ ą²µą²Æą³ą²Øą³† ą²•ą³Œą²‚ą²Ÿą²æ" #: timezones.h:256 msgid "America/Knox_IN" msgstr "ಅಮೆರಿಕ/ą²•ą³ą²Øą³Šą²•ą³ą²øą³_ą²‡ą²Øą³" #: timezones.h:257 msgid "America/La_Paz" msgstr "ಅಮೆರಿಕ/ಲಾ_ą²Ŗą²¾ą²ą³" #: timezones.h:258 msgid "America/Lima" msgstr "ಅಮೆರಿಕ/ಲಿಮಾ" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "ಅಮೆರಿಕ/ą²²ą²¾ą²øą³_ą²Žą²‚ą²œą³†ą²²ą³€ą²øą³" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "ą²«ą³†ą²øą²æą²«ą²æą²•ą³ ಸಮಯ" #: timezones.h:262 msgid "America/Louisville" msgstr "ಅಮೆರಿಕ/ą²²ą³Œą²øą³ą²µą²æą²²ą³ą²²ą³†" #: timezones.h:263 msgid "America/Maceio" msgstr "ಅಮೆರಿಕ/ą²®ą³ą²Æą²¾ą²øą²æą²Æą³Š" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "ą²…ą²²ą²—ą³‹ą²øą³, ą²øą²°ą³ą²—ą³€ą²Ŗą³" #: timezones.h:266 msgid "America/Managua" msgstr "ಅಮೆರಿಕ/ಮನಾಗುವಾ" #: timezones.h:267 msgid "America/Manaus" msgstr "ಅಮೆರಿಕ/ą²®ą²Øą²¾ą²µą³ą²øą³" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "ಪೂ ą²…ą²®ą³†ą²ą³‹ą²Øą²¾ą²øą³" #: timezones.h:270 msgid "America/Marigot" msgstr "ಅಮೆರಿಕ/ą²®ą³ą²Æą²¾ą²°ą²æą²—ą²¾ą²Ÿą³" #: timezones.h:271 msgid "America/Martinique" msgstr "ಅಮೆರಿಕ/ą²®ą²¾ą²°ą³ą²Ÿą²æą²Øą²æą²•ą³ą²Æą³" #: timezones.h:272 msgid "America/Matamoros" msgstr "ಅಮೆರಿಕ/ą²®ą²Ÿą²¾ą²®ą³Šą²°ą³Šą²øą³" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "ą²Æą³ą²Žą²øą³ ą²®ą²§ą³ą²Æ ಸಮಯ - ą²Æą³ą²Žą²øą³ ಗಔಿಯ ಸಮೀಪದ ą²•ą³Šą²¹ą³ą²Æą²æą²²ą²¾, ą²”ą³ą²°ą²¾ą²‚ą²—ą³Š, ą²Øą³ą²Æą³ą²µą³Š ą²²ą²æą²Æą³‹ą²Øą³, ą²Ÿą²®ą³Œą²²ą²æą²Ŗą²¾ą²øą³" #: timezones.h:275 msgid "America/Mazatlan" msgstr "ಅಮೆರಿಕ/ą²®ą²ą²¾ą²Ÿą³ą²²ą²¾ą²Øą³" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "ą²Ŗą²°ą³ą²µą²¤ ಸಮಯ - S ಬಾಜಾ, ą²Øą²Æą²¾ą²°ą²æą²Ÿą³, ಸಿನಾಲೊವಾ" #: timezones.h:278 msgid "America/Mendoza" msgstr "ಅಮೆರಿಕ/ą²®ą³†ą²‚ą²”ą³Šą²ą²¾" #: timezones.h:279 msgid "America/Menominee" msgstr "ಅಮೆರಿಕ/ಮೆನೋಮಿನೀ" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "ą²®ą²§ą³ą²Æ ಸಮಯ - ą²®ą²æą²¶ą²æą²—ą²Øą³, ą²”ą²æą²•ą²æą²Øą³ą²øą²Øą³, ą²—ą³Šą²—ą³†ą²¬ą²æą²•ą³, ą²ą²°ą²Øą³ ಹಾಗು ą²®ą³†ą²Øą³Šą²®ą²æą²Øą³€ ą²•ą³Œą²‚ą²Ÿą³€ą²øą³" #: timezones.h:282 msgid "America/Merida" msgstr "ಅಮೆರಿಕ/ಮೆರಿಔಾ" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "ą²®ą²§ą³ą²Æ ಸಮಯ - ą²•ą²‚ą²Ŗą²¾ą²šą³†, ą²Æą³ą²•ą²¾ą²Ÿą²Øą³" #: timezones.h:285 msgid "America/Mexico_City" msgstr "ಅಮೆರಿಕ/ą²®ą³†ą²•ą³ą²øą²æą²•ą³Š_ಸಿಟಿ" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "ą²®ą²§ą³ą²Æ ಸಮಯ - ą²¹ą³†ą²šą³ą²šą²æą²Ø ą²øą³ą²„ą²³ą²—ą²³ą³" #: timezones.h:288 msgid "America/Miquelon" msgstr "ಅಮೆರಿಕ/ą²®ą²æą²•ą³ą²Æą³ą²²ą²¾ą²Øą³" #: timezones.h:289 msgid "America/Moncton" msgstr "ಅಮೆರಿಕ/ą²®ą²¾ą²•ą³ą²Ÿą²Øą³" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "ą²…ą²Ÿą³ą²²ą²¾ą²‚ą²Ÿą²æą²•ą³ ಸಮಯ - ą²Øą³ą²Æą³‚ ą²¬ą³ą²°ą³ą²Øą³ą²øą³ā€Œą²µą²æą²•ą³" #: timezones.h:292 msgid "America/Monterrey" msgstr "ಅಮೆರಿಕ/ą²®ą³Šą²‚ą²Ÿą³†ą²°ą³ą²°ą²æ" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" "ą²®ą³†ą²•ą³ą²øą²æą²•ą²Øą³ ą²®ą²§ą³ą²Æ ಸಮಯ - ą²Æą³ą²Žą²øą³ ಗಔಿಯ ą²‡ą²Øą³ą²Øą³Šą²‚ą²¦ą³ ಬದಿಯ ą²•ą³Šą²¹ą³ą²Æą²æą²²ą²¾, ą²”ą³ą²°ą²¾ą²‚ą²—ą³Š, ą²Øą³ą²Æą³ą²µą³Š ą²²ą²æą²Æą³‹ą²Øą³, " "ą²Ÿą²®ą³Œą²²ą²æą²Ŗą²¾ą²øą³" #: timezones.h:295 msgid "America/Montevideo" msgstr "ಅಮೆರಿಕ/ą²®ą³Šą²‚ą²Øą³ą²Ÿą³†ą²µą²æą²”ą²æą²Æą³Š" #: timezones.h:296 msgid "America/Montreal" msgstr "ಅಮೆರಿಕ/ą²®ą³Šą²‚ą²Ÿą³ą²°ą³€ą²²ą³" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ಸಮಯ - ą²•ą³ą²Æą³‚ą²¬ą³†ą²•ą³ - ą²¹ą³†ą²šą³ą²šą²æą²Ø ą²øą³ą²„ą²³ą²—ą²³ą³" #: timezones.h:299 msgid "America/Montserrat" msgstr "ಅಮೆರಿಕ/ą²®ą³Šą²‚ą²Ÿą³ą²øą³†ą²°ą³ą²°ą²¾ą²Ÿą³ą²øą³" #: timezones.h:300 msgid "America/Nassau" msgstr "ಅಮೆರಿಕ/ą²Øą²øą³ą²øą²¾ą²µą³" #: timezones.h:301 msgid "America/New_York" msgstr "ಅಮೆರಿಕ/ą²Øą³ą²Æą³‚_ą²Æą³‹ą²°ą³ą²•ą³" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ಸಮಯ" #: timezones.h:304 msgid "America/Nipigon" msgstr "ಅಮೆರಿಕ/ą²Øą²æą²Ŗą²æą²—ą³‹ą²Øą³" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ಸಮಯ - ą²’ą²‚ą²Ÿą²¾ą²°ą²æą²Æą³Š ಹಾಗು ą²•ą³ą²Æą³‚ą²¬ą³†ą²•ą³ - DST 1967-1973 ą²Æą²²ą³ą²²ą²æ ಕಾಣಿಸದೆ ಇರುವ" #: timezones.h:307 msgid "America/Nome" msgstr "ಅಮೆರಿಕ/ą²Øą³‹ą²®ą³" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "ą²…ą²²ą²øą³ą²•ą²¾ ಸಮಯ - ą²Ŗą²¶ą³ą²šą²æą²® ą²…ą²²ą²øą³ą²•ą²¾" #: timezones.h:310 msgid "America/Noronha" msgstr "ಅಮೆರಿಕ/ą²Øą³Šą²°ą³Šą²Øą³ą²¹ą²¾" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "ą²…ą²Ÿą³ą²²ą²¾ą²‚ą²Ÿą²æą²•ą³ ą²¦ą³ą²µą³€ą²Ŗą²—ą²³ą³" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "ಅಮೆರಿಕ/ą²‰ą²¤ą³ą²¤ą²°_ą²”ą²•ą³‹ą²Ÿ/ą²®ą²§ą³ą²Æ" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "ą²®ą²§ą³ą²Æ ಸಮಯ - ą²‰ą²¤ą³ą²¤ą²° ą²”ą²•ą³Šą²Ÿ - ą²’ą²²ą²æą²µą²°ą³ ą²•ą³Œą²‚ą²Ÿą²æ" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "ಅಮೆರಿಕ/ą²‰ą²¤ą³ą²¤ą²°_ą²”ą²•ą³‹ą²Ÿ/ą²Øą³ą²Æą³‚_ą²øą²²ą³†ą²®ą³" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "ą²®ą²§ą³ą²Æ ಸಮಯ - ą²¦ą²•ą³ą²·ą²æą²£ ą²”ą²•ą³‹ą²Ÿ - ą²®ą²¾ą²°ą³ą²Ÿą²Øą³ ą²•ą³Œą²‚ą²Ÿą²æ (ą²®ą²‚ą²”ą²¾ą²Øą³ ą²•ą³ą²·ą³‡ą²¤ą³ą²°ą²µą²Øą³ą²Øą³ ಹೊರತುಪಔಿಸಿ)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "ಅಮೆರಿಕ/ą²’ą²œą²æą²Øą²¾ą²—" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "ą²Æą³ą²Žą²øą³ ą²Ŗą²°ą³ą²µą²¤ ಸಮಯ - ą²Æą³ą²Žą²øą³ ಗಔಿಯ ಸಮೀಪದ ಚಿಹುವಾಹುವ" #: timezones.h:322 msgid "America/Panama" msgstr "ಅಮೆರಿಕ/ಪನಾಮ" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "ಅಮೆರಿಕ/ą²Ŗą²‚ą²—ą³ą²Øą²æą²°ą³ą²Ÿą²‚ą²—ą³" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ಸಮಯ -ą²Ŗą²‚ą²—ą³ą²Øą²æą²°ą³ą²Ÿą³ą²‚ą²—ą³, ą²Øą³ą²Øą²¾ą²µą³ą²Ÿą³" #: timezones.h:326 msgid "America/Paramaribo" msgstr "ಅಮೆರಿಕ/ಪರಮಾರಿಬೊ" #: timezones.h:327 msgid "America/Phoenix" msgstr "ಅಮೆರಿಕ/ą²«ą³€ą²Øą²æą²•ą³ą²øą³" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "ą²Ŗą²°ą³ą²µą²¤ ą²¶ą²æą²·ą³ą²Ÿ ಸಮಯ - ą²…ą²°ą²æą²ą³‹ą²Ø" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "ಅಮೆರಿಕ/ą²Ŗą³‹ą²°ą³ą²Ÿą³-ą²…ą²µą³-ą²Ŗą³ą²°ą²æą²Øą³ą²øą³" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "ಅಮೆರಿಕ/ą²Ŗą³‹ą²°ą³ą²Ÿą³‹_ą²ą²•ą³ą²°ą³" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "ಅಮೆರಿಕ/ą²Ŗą³‹ą²°ą³ą²Ÿą³_ą²†ą²«ą³_ą²øą³ą²Ŗą³ˆą²Øą³" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "ಅಮೆರಿಕ/ą²Ŗą³‹ą²°ą³ą²Ÿą³‹_ą²µą³†ą²²ą³ą²¹ą³‹" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "ą²°ą³Šą²‚ą²”ą³Šą²Øą²æą²Æ" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "ಅಮೆರಿಕ/ą²Ŗą³Šą²°ą³ą²Ÿą³Š_ą²°ą²æą²•ą³Š" #: timezones.h:337 msgid "America/Rainy_River" msgstr "ಅಮೆರಿಕ/ರೈನಿ_ą²°ą²æą²µą²°ą³" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "ą²®ą²§ą³ą²Æ ಸಮಯ - ರೈನಿ ą²°ą²æą²µą²°ą³ ಹಾಗು ą²«ą³‹ą²°ą³ą²Ÿą³ ą²«ą³ą²°ą²¾ą²Øą³ą²øą³, ą²’ą²‚ą²Ÿą²¾ą²°ą²æą²Æą³Š" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "ಅಮೆರಿಕ/ą²°ą³ą²Æą²¾ą²‚ą²•ą²æą²Øą³_ą²‡ą²Øą³ą²²ą³†ą²Ÿą³" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "ą²®ą²§ą³ą²Æ ಸಮಯ - ą²®ą²§ą³ą²Æ ą²Øą³ą²Øą²¾ą²µą³ą²Ÿą³" #: timezones.h:343 msgid "America/Recife" msgstr "ಅಮೆರಿಕ/ą²°ą³†ą²øą²æą²«ą³ˆ" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "ą²Ŗą²°ą³ą²Øą³ą²Æą²¾ą²‚ą²¬ą³ą²•ą³Š" #: timezones.h:346 msgid "America/Regina" msgstr "ಅಮೆರಿಕ/ರೆಗಿನಾ" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "ą²®ą²§ą³ą²Æ ą²¶ą²æą²·ą³ą²Ÿ ಸಮಯ - ą²øą²øą³ą²•ą²¾ą²¶ą³†ą²µą²¾ą²Øą³ - ą²¹ą³†ą²šą³ą²šą²æą²Ø ą²øą³ą²„ą²³ą²—ą²³ą³" #: timezones.h:349 msgid "America/Resolute" msgstr "ಅಮೆರಿಕ/ą²°ą³†ą²øą²²ą³ą²Æą³‚ą²Ÿą³" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ą²¶ą²æą²·ą³ą²Ÿ ಸಮಯ - ą²°ą³†ą²øą³Šą²²ą³ą²Æą³‚ą²Ÿą³, ą²Øą³ą²Øą²¾ą²µą³ą²Ÿą³" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "ಅಮೆರಿಕ/ರಿಯೋ_ą²¬ą³ą²°ą²¾ą²‚ą²•ą³‹" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "ą²ą²•ą²°ą³" #: timezones.h:355 msgid "America/Rosario" msgstr "ಅಮೆರಿಕ/ą²°ą³Šą²øą²¾ą²°ą²æą²Æą³‹" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "ಅಮೆರಿಕ/ą²øą³ą²Æą²¾ą²‚ą²Ÿą²¾_ą²‡ą²øą²¾ą²¬ą³†ą²²ą³" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "ą²®ą³†ą²•ą³ą²øą²æą²•ą²Øą³ ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³ ಸಮಯ - ą²Æą³ą²Žą²øą³ ಗಔಿಯ ą²‡ą²Øą³ą²Øą³Šą²‚ą²¦ą³ ಬದಿಯ ಬಾಜಾ ą²•ą³ą²Æą²¾ą²²ą²æą²«ą³‹ą²°ą³ą²Øą²æą²Æą²¾" #: timezones.h:359 msgid "America/Santarem" msgstr "ಅಮೆರಿಕ/ą²øą³ą²Æą²¾ą²‚ą²Ÿą²°ą³†ą²®ą³" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "ą²Ŗ ಪಾರಾ" #: timezones.h:362 msgid "America/Santiago" msgstr "ಅಮೆರಿಕ/ą²øą³ą²Æą²¾ą²‚ą²Ÿą²æą²—ą³‹" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "ಅಮೆರಿಕ/ą²øą³ą²Æą²¾ą²‚ą²Ÿą³Š_ą²”ą³Šą²®ą²æą²‚ą²—ą³Š" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "ಅಮೆರಿಕ/ಸಾವೊ_ಪೌಲೊ" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "S & SE ą²¬ą³ą²°ą²ą²æą²²ą³ (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "ಅಮೆರಿಕ/ą²øą³ą²•ą³‹ą²°ą³ą²øą³ą²¬ą³ˆą²øą²‚ą²”ą³" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "ą²øą³ą²•ą³‹ą²°ą³ą²øą³-ą²¬ą²æą²øą²‚ą²”ą³ā€Œ / ą²‡ą²Ÿą²æą²•ą³Šą²°ą³ą²Ÿą³‚ą²°ą³ą²®ą²æą²Ÿą³" #: timezones.h:372 msgid "America/Shiprock" msgstr "ಅಮೆರಿಕ/ą²¶ą²æą²Ŗą³ą²°ą²¾ą²•ą³" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "ą²Ŗą²°ą³ą²µą²¤ ಸಮಯ - ನವಾಜೊ" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "ಅಮೆರಿಕ/ą²øą³ˆą²‚ą²Ÿą³_ą²¬ą²¾ą²°ą³ą²¤ą²²ą³ą²®ą²æ" #: timezones.h:376 msgid "America/St_Johns" msgstr "ಅಮೆರಿಕ/ą²øą³ˆą²‚ą²Ÿą³_ą²œą²¾ą²Øą³ą²øą³" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "ą²Øą³ą²Æą³‚ą²«ą³Œą²‚ą²”ą³ā€Œą²²ą³ą²Æą²¾ą²‚ą²”ą³ā€Œ ಸಮಯ, SE ą²²ą³ą²Æą²¾ą²¬ą³ą²°ą²”ą²¾ą²°ą³ ą²…ą²Øą³ą²Øą³‚ ą²øą²¹ ಸೇರಿ" #: timezones.h:379 msgid "America/St_Kitts" msgstr "ಅಮೆರಿಕ/ą²øą³ˆą²‚ą²Ÿą³_ą²•ą²æą²Ÿą³ą²øą³" #: timezones.h:380 msgid "America/St_Lucia" msgstr "ಅಮೆರಿಕ/ą²øą³ˆą²‚ą²Ÿą³_ಲೂಸಿಯಾ" #: timezones.h:381 msgid "America/St_Thomas" msgstr "ಅಮೆರಿಕ/ą²øą³ˆą²‚ą²Ÿą³_ą²„ą²¾ą²®ą²øą³" #: timezones.h:382 msgid "America/St_Vincent" msgstr "ಅಮೆರಿಕ/ą²øą³ˆą²‚ą²Ÿą³_ą²µą²æą²Øą³ą²øą³†ą²‚ą²Ÿą³" #: timezones.h:383 msgid "America/Swift_Current" msgstr "ಅಮೆರಿಕ/ą²øą³ą²µą²æą²«ą³ą²Ÿą³_ą²•ą²°ą³†ą²‚ą²Ÿą³" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "ą²®ą²§ą³ą²Æ ą²¶ą²æą²·ą³ą²Ÿ ಸಮಯ - ą²øą²øą³ą²•ą²¾ą²¶ą³†ą²µą²¾ą²Øą³ - ą²®ą²§ą³ą²Æą²Ŗą³‚ą²°ą³ą²µ" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "ಅಮೆರಿಕ/ą²Ÿą³†ą²—ą³ą²øą²æą²—ą²²ą²¾ą²Ŗ" #: timezones.h:387 msgid "America/Thule" msgstr "ಅಮೆರಿಕ/಄ುಲೆ" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "ತುಲೆ / ą²Ŗą²æą²Ÿą³ā€Œą²«ą²æą²•ą³" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "ಅಮೆರಿಕ/ą²„ą²‚ą²”ą²°ą³_ಬೇ" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ಸಮಯ - ą²¤ą²‚ą²”ą²°ą³ ಬೇ, ą²’ą²‚ą²Ÿą²¾ą²°ą²æą²Æą³Š" #: timezones.h:393 msgid "America/Tijuana" msgstr "ಅಮೆರಿಕ/ಟಿಜುಯಾನ" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "ą²Æą³ą²Žą²øą³ ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³ ಸಮಯ - ą²Æą³ą²Žą²øą³ ಗಔಿಯ ą²¹ą²¤ą³ą²¤ą²æą²°ą²¦ ಬಾಜಾ ą²•ą³ą²Æą²¾ą²²ą²æą²«ą³‹ą²°ą³ą²Øą²æą²Æą²¾" #: timezones.h:396 msgid "America/Toronto" msgstr "ಅಮೆರಿಕ/ą²Ÿą³Šą²°ą³†ą²‚ą²Ÿą³Š" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ಸಮಯ - ą²’ą²‚ą²Ÿą²¾ą²°ą²æą²Æą³Š - ą²¹ą³†ą²šą³ą²šą²æą²Ø ą²øą³ą²„ą²³ą²—ą²³ą³" #: timezones.h:399 msgid "America/Tortola" msgstr "ಅಮೆರಿಕ/ą²Ÿą³Šą²°ą³ą²Ÿą³‹ą²²" #: timezones.h:400 msgid "America/Vancouver" msgstr "ಅಮೆರಿಕ/ą²µą³ą²Æą²¾ą²‚ą²•ą³Šą²µą³†ą²°ą³" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³ ಸಮಯ - ą²Ŗą²¶ą³ą²šą²æą²® ą²¬ą³ą²°ą²æą²Ÿą³€ą²·ą³ ą²•ą³Šą²²ą²‚ą²¬ą²æą²Æą²¾" #: timezones.h:403 msgid "America/Virgin" msgstr "ಅಮೆರಿಕ/ą²µą²°ą³ą²œą²æą²Øą³" #: timezones.h:404 msgid "America/Whitehorse" msgstr "ಅಮೆರಿಕ/ą²µą³ˆą²Ÿą³ ą²¹ą²¾ą²°ą³ą²øą³" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³ ಸಮಯ - ą²¦ą²•ą³ą²·ą²æą²£ ą²Æą³ą²•ą³Šą²Øą³" #: timezones.h:407 msgid "America/Winnipeg" msgstr "ಅಮೆರಿಕ/ą²µą²æą²Øą³ą²Øą²æą²Ŗą³†ą²—ą³" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "ą²®ą²§ą³ą²Æ ಸಮಯ - ą²®ą²¾ą²Øą²æą²Ÿą³‹ą²¬ą²¾ ಹಾಗು ą²Ŗą²¶ą³ą²šą²æą²® ą²’ą²‚ą²Ÿą²¾ą²°ą²æą²Æą³Š" #: timezones.h:410 msgid "America/Yakutat" msgstr "ಅಮೆರಿಕ/ą²Æą²•ą³ą²Ÿą²¾ą²Ÿą³" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "ą²…ą²²ą²øą³ą²•ą²¾ ಸಮಯ - ą²…ą²²ą²øą³ą²•ą²¾ ą²Ŗą³ą²Æą²¾ą²Øą³ā€Œą²¹ą³ą²Æą²¾ą²‚ą²”ą²²ą³ ą²Øą³†ą²•ą³" #: timezones.h:413 msgid "America/Yellowknife" msgstr "ಅಮೆರಿಕ/ą²Æą³†ą²²ą³ą²²ą³Šą²Øą³ˆą²«ą³" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "ą²Ŗą²°ą³ą²µą²¤ ಸಮಯ - ą²®ą²§ą³ą²Æ ą²‰ą²¤ą³ą²¤ą²°ą²Ŗą³‚ą²°ą³ą²µ ą²Ŗą³ą²°ą²¦ą³‡ą²¶ą²—ą²³ą³" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "ą²…ą²‚ą²Ÿą²¾ą²°ą³ą²Ÿą²æą²•/ą²•ą³ą²Æą²¾ą²øą³†" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "ಕೇಸಿ ą²øą³ą²Ÿą³‡ą²¶ą²Øą³, ಬೇಲಿ ą²Ŗą³†ą²Øą²æą²Øą³ą²øą³ą²²ą²¾" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "ą²…ą²‚ą²Ÿą²¾ą²°ą³ą²Ÿą²æą²•/ą²”ą³‡ą²µą²æą²øą³" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "ą²”ą³‡ą²µą²æą²øą³ ą²øą³ą²Ÿą³‡ą²¶ą²Øą³, ą²µą³†ą²øą³ą²Ÿą³ā€Œą²«ą³‹ą²²ą³ą²”ą³ ą²¹ą²æą²²ą³ą²øą³" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "ą²…ą²‚ą²Ÿą²¾ą²°ą³ą²Ÿą²æą²•/ą²”ą³ą²®ą³Šą²‚ą²Ÿą³ ಔಿ ą²‰ą²°ą³ą²µą²æą²²ą³ą²²ą³†" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "ą²”ą³ą²®ą³Šą²‚ą²Ÿą³, ಔಿ ą²‰ą²°ą³ą²µą²æą²²ą³ ą²øą³ą²Ÿą³‡ą²¶ą²Øą³, ą²Ÿą³†ą²°ą²æ ಅಔಿಲಿ" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "ą²…ą²‚ą²Ÿą²¾ą²°ą³ą²Ÿą²æą²•/ą²®ą²•ą³ą²µą²¾ą²°ą²æ" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "ą²®ą²•ą³ą²µą²¾ą²°ą²æ ą²ą²²ą³ą²Æą²¾ą²‚ą²”ą³ ą²øą³ą²Ÿą³‡ą²¶ą²Øą³, ą²®ą²•ą³ą²µą²¾ą²°ą²æ ą²¦ą³ą²µą³€ą²Ŗ" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "ą²…ą²‚ą²Ÿą²¾ą²°ą³ą²Ÿą²æą²•/ą²®ą²¾ą²µą³ą²øą²¾ą²Øą³" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "ą²®ą²¾ą²øą²Øą³ ą²øą³ą²Ÿą³‡ą²¶ą²Øą³, ą²¹ą³Šą²®ą³ ಬೇ" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "ą²…ą²‚ą²Ÿą²¾ą²°ą³ą²Ÿą²æą²•/ą²®ą³ą²Æą²¾ą²•ą³ā€Œą²®ą³ą²°ą³ą²”ą³Š" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "ą²®ą³ą²Æą²¾ą²•ą³ā€Œą²®ą³ą²°ą³ą²”ą³Š ą²øą³ą²Ÿą³‡ą²¶ą²Øą³, ą²°ą²¾ą²øą³ ą²¦ą³ą²µą³€ą²Ŗ" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "ą²…ą²‚ą²Ÿą²¾ą²°ą³ą²Ÿą²æą²•/ą²Ŗą²¾ą²®ą²°ą³" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "ą²Ŗą²¾ą²®ą²°ą³ ą²øą³ą²Ÿą³‡ą²¶ą²Øą³, ą²†ą²Øą³ą²µą²°ą³ą²øą³ ą²¦ą³ą²µą³€ą²Ŗ" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "ą²…ą²‚ą²Ÿą²¾ą²°ą³ą²Ÿą²æą²•/ą²°ą³Šą²„ą³†ą²°ą²¾" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "ą²°ą³Šą²¤ą³‡ą²°ą²¾ ą²øą³ą²Ÿą³‡ą²¶ą²Øą³, ą²…ą²”ą²æą²²ą³‡ą²”ą³ ą²¦ą³ą²µą³€ą²Ŗ" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "ą²…ą²‚ą²Ÿą²¾ą²°ą³ą²Ÿą²æą²•ą²¾/ą²¦ą²•ą³ą²·ą²æą²£_ą²§ą³ą²°ą³ą²µ" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "ą²…ą²®ą³ą²‚ą²”ą³ą²øą²Øą³-ą²øą³ą²•ą²¾ą²Ÿą³ ą²øą³ą²Ÿą³‡ą²¶ą²Øą³, ą²¦ą²•ą³ą²·ą²æą²£ ą²§ą³ą²°ą³ą²µ" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "ą²…ą²‚ą²Ÿą²¾ą²°ą³ą²Ÿą²æą²•/ą²øą³ą²Æą³‹ą²µą²¾" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "ಸಿಯೋವಾ ą²øą³ą²Ÿą³‡ą²¶ą²Øą³, ಇ ą²’ą²‚ą²—ą³ą²²ą³ ಐ" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "ą²…ą²‚ą²Ÿą²¾ą²°ą³ą²Ÿą²æą²•/ą²µą³‹ą²øą³ą²Ÿą³‹ą²•ą³" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "ą²µą³Šą²øą³ą²Ÿą³Šą²•ą³ ą²øą³ą²Ÿą³‡ą²¶ą²Øą³, S ą²®ą³ą²Æą²¾ą²—ą³ą²Øą³†ą²Ÿą²æą²•ą³ ą²Ŗą³‹ą²²ą³" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "ą²†ą²°ą³ą²•ą²Ÿą²æą²•ą³/ą²²ą²¾ą²‚ą²—ą³ą²Æą²æą²°ą³ ą²¬ą³ą²Æą³†ą²Øą³" #: timezones.h:450 msgid "Asia/Aden" msgstr "ą²ą²·ą²æą²Æ/ą²†ą²”ą³†ą²Øą³" #: timezones.h:451 msgid "Asia/Almaty" msgstr "ą²ą²·ą²æą²Æ/ą²†ą²²ą³ą²®ą³†ą²Ÿą²æ" #: timezones.h:454 msgid "Asia/Amman" msgstr "ą²ą²·ą²æą²Æ/ą²…ą²®ą³ą²®ą²¾ą²Øą³" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "ą²ą²·ą²æą²Æ/ą²…ą²Øą²¾ą²”ą³ˆą²°ą³" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "ą²®ą²¾ą²øą³ą²•ą³Š+08 - ą²¬ą³†ą²°ą²æą²‚ą²—ą³ ą²øą²®ą³ą²¦ą³ą²°" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "ą²ą²·ą²æą²Æ/ą²…ą²•ą³ą²Ÿą²¾ą²µą³" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "ą²…ą²¤ą³ą²Æą²¾ą²°ą³ (ಅತಿರಾವು, ą²—ą³ą²°ą³ą²Æą³†ą²µą³), ą²®ą³†ą²‚ą²—ą²¾ą²¹ą²æą²øą³ą²Ÿą²¾ą²µą³ (ą²®ą²‚ą²•ą²æą²øą³ą²Ÿą²¾ą²µą³)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "ą²ą²·ą²æą²Æ/ą²Žą²•ą³ą²Ÿą³‹ą²¬ą³" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "ą²…ą²•ą³ą²Ÿą³‹ą²¬ą³" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "ą²ą²·ą²æą²Æ/ą²Žą²¶ą³ą²—ą²¾ą²¬ą³ą²Æą²¾ą²Ÿą³" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "ą²ą²·ą²æą²Æ/ą²…ą²¶ą³ą²•ą²¾ą²¬ą²¾ą²¦ą³" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "ą²ą²·ą²æą²Æ/ą²¬ą²¾ą²—ą³ą²¦ą²¾ą²¦ą³" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "ą²ą²·ą²æą²Æ/ą²¬ą²¹ą²°ą³ˆą²Øą³" #: timezones.h:468 msgid "Asia/Baku" msgstr "ą²ą²·ą²æą²Æ/ಬಾಕು" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "ą²ą²·ą²æą²Æ/ą²¬ą³ą²Æą²¾ą²‚ą²•ą²¾ą²•ą³" #: timezones.h:470 msgid "Asia/Beirut" msgstr "ą²ą²·ą²æą²Æ/ą²¬ą³€ą²°ą²Ÿą³" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "ą²ą²·ą²æą²Æ/ą²¬ą²æą²¶ą³ą²•ą³†ą²•ą³" #: timezones.h:472 msgid "Asia/Brunei" msgstr "ą²ą²·ą²æą²Æ/ą²¬ą³ą²°ą³‚ą²Øą³ˆ" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "ą²ą²·ą²æą²Æ/ą²•ą²²ą³ą²•ą²¤ą³ą²¤ą²¾" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "ą²ą²·ą²æą²Æ/ą²•ą³Šą²Æą²æą²¬ą²¾ą²²ą³ą²øą²®ą³" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "ą²”ą³Šą²°ą³ą²Øą³Šą²”ą³, ą²øą³ą²–ą³ā€Œą²¬ą²¾ą²Ÿą²¾ą²°ą³" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "ą²ą²·ą²æą²Æ/ą²šą²¾ą²‚ą²—ą³ą²•ą²æą²‚ą²—ą³" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "ą²®ą²§ą³ą²Æ ಚೈನಾ - ą²øą²æą²¶ą³ą²µą²¾ą²Øą³, ą²Æą³ą²Øą²¾ą²Øą³, ą²—ą³ą²µą²¾ą²‚ą²—ą³ā€Œą²•ą³ą²øą²æ, ą²—ą³ą²ą³Œ, ಇತರೆ" #: timezones.h:480 msgid "Asia/Chungking" msgstr "ą²ą²·ą²æą²Æ/ą²šą²‚ą²—ą³ą²•ą²æą²‚ą²—ą³" #: timezones.h:481 msgid "Asia/Colombo" msgstr "ą²ą²·ą²æą²Æ/ą²•ą³Šą²²ą³Šą²‚ą²¬ą³‹" #: timezones.h:482 msgid "Asia/Dacca" msgstr "ą²ą²·ą²æą²Æ/ą²”ą²•ą³ą²•ą²¾" #: timezones.h:483 msgid "Asia/Damascus" msgstr "ą²ą²·ą²æą²Æ/ą²”ą²®ą²øą³ą²•ą²øą³" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "ą²ą²·ą²æą²Æ/ಢಾಕಾ" #: timezones.h:485 msgid "Asia/Dili" msgstr "ą²ą²·ą²æą²Æ/ಔಿಲಿ" #: timezones.h:486 msgid "Asia/Dubai" msgstr "ą²ą²·ą²æą²Æ/ದುಬೈ" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "ą²ą²·ą²æą²Æ/ą²¦ą³ą²¶ą²¾ą²Øą³ą²¬ą³†" #: timezones.h:488 msgid "Asia/Gaza" msgstr "ą²ą²·ą²æą²Æ/ą²—ą²¾ą²ą²¾" #: timezones.h:489 msgid "Asia/Harbin" msgstr "ą²ą²·ą²æą²Æ/ą²¹ą²°ą³ą²¬ą²æą²Øą³" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "ą²¹ą³€ą²²ą²¾ą²‚ą²—ą³ā€Œą²œą²æą²Æą²¾ą²‚ą²—ą³ (ą²®ą³Šą²¹ą³†ą²Æą²Øą³ą²Øą³ ಹೊರತುಪಔಿಸಿ), ą²œą²æą²²ą²æą²Øą³" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "ą²ą²·ą²æą²Æ/ಹೊ_ಚಿ-ą²®ą²æą²Øą³" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "ą²ą²·ą²æą²Æ/ą²¹ą²¾ą²‚ą²—ą³_ą²•ą²¾ą²‚ą²—ą³" #: timezones.h:494 msgid "Asia/Hovd" msgstr "ą²ą²·ą²æą²Æ/ą²¹ą³‹ą²µą³ą²”ą³" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "ą²¬ą²Æą²¾ą²Øą³-ą²’ą²²ą³ą²—ą²æą²Æą³, ಗೋವಿ-ą²…ą²²ą³ą²Ÿą²¾ą²Æą²æ, ą²¹ą³‹ą²µą³ą²”ą³, ą²‰ą²µą³ą²øą³, ą²øą²¾ą²µą³ą²•ą²¾ą²Øą³" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "ą²ą²·ą²æą²Æ/ą²‡ą²°ą³ą²•ą³ą²Ÿą³ą²øą²•ą³" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "ą²®ą²¾ą²øą³ą²•ą³Š+05 - ą²²ą³‡ą²•ą³ ą²¬ą³ˆą²•ą²²ą³" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "ą²ą²·ą²æą²Æ/ą²‡ą²øą³ą²¤ą²¾ą²Øą³ą²¬ą³ą²²ą³" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "ą²ą²·ą²æą²Æ/ą²œą²•ą²¾ą²°ą³ą²¤" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "ಜಾವಾ ಹಾಗು ą²øą³ą²®ą²¾ą²¤ą³ą²°" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "ą²ą²·ą²æą²Æ/ಜಯಪುರ" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "ą²‡ą²°ą²æą²Æą²Øą³ ಜಯಾ ಹಾಗು ą²®ą³Šą²²ą³ą²•ą²¾ą²øą³" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "ą²ą²·ą²æą²Æ/ą²œą³†ą²°ą³ą²øą³†ą²²ą²‚" #: timezones.h:508 msgid "Asia/Kabul" msgstr "ą²ą²·ą²æą²Æ/ą²•ą²¾ą²¬ą³ą²²ą³" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "ą²ą²·ą²æą²Æ/ą²•ą²¾ą²‚ą²šą²Ÿą³ą²•ą²¾" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "ą²®ą²¾ą²øą³ą²•ą³Š+08 - ą²•ą²®ą²¾ą²šą²Ÿą³ą²•ą²¾" #: timezones.h:512 msgid "Asia/Karachi" msgstr "ą²ą²·ą²æą²Æ/ą²•ą²°ą²¾ą²šą²æ" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "ą²ą²·ą²æą²Æ/ą²•ą²¶ą³ą²—ą²°ą³" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "ą²Ŗą²¶ą³ą²šą²æą²® ą²Ÿą²æą²¬ą³†ą²Ÿą³ ಹಾಗು ą²•ą³ą²øą²æą²‚ą²œą²æą²Æą²¾ą²‚ą²—ą³" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "ą²ą²·ą²æą²Æ/ą²•ą² ą³ą²®ą²‚ą²”ą³" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "ą²ą²·ą²æą²Æ/ą²•ą² ą³ą²®ą²‚ą²”ą³" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "ą²ą²·ą²æą²Æ/ą²•ą³‹ą²²ą³ą²•ą²¤ą³ą²¤ą²¾" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "ą²ą²·ą²æą²Æ/ą²•ą³ą²°ą²øą³ą²Øą³‹ą²Æą²¾ą²°ą³ą²øą²•ą³" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "ą²®ą²¾ą²øą³ą²•ą³Š+04 - ಯೆನಿಸಿ ನದಿ" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "ą²ą²·ą²æą²Æ/ą²•ą³Œą²²ą²¾_ą²²ą³ą²‚ą²Ŗą³ą²°ą³" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "ą²Ŗą³†ą²Øą²æą²Øą³ą²øą³ą²²ą²¾ą²°ą³ ಮಲೇಶಿಯಾ" #: timezones.h:525 msgid "Asia/Kuching" msgstr "ą²ą²·ą²æą²Æ/ą²•ą³ą²šą²æą²‚ą²—ą³" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "ą²øą²¬ą²¾ą²¹ą³ ಹಾಗು ą²øą²°ą²¾ą²µą²¾ą²•ą³" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "ą²ą²·ą²æą²Æ/ą²•ą³ą²µą³ˆą²¤ą³" #: timezones.h:529 msgid "Asia/Macao" msgstr "ą²ą²·ą²æą²Æ/ą²®ą²•ą²¾ą²µą³Š" #: timezones.h:530 msgid "Asia/Macau" msgstr "ą²ą²·ą²æą²Æ/ą²®ą²•ą²¾ą²µą³" #: timezones.h:531 msgid "Asia/Magadan" msgstr "ą²ą²·ą²æą²Æ/ą²®ą²—ą²¦ą²Øą³" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "ą²®ą²¾ą²øą³ą²•ą³Š+08 - ą²®ą²—ą²”ą²¾ą²Øą³" #: timezones.h:534 msgid "Asia/Makassar" msgstr "ą²ą²·ą²æą²Æ/ą²®ą²•ą²øą³ą²øą²¾ą²°ą³" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ą²¦ą²•ą³ą²·ą²æą²£ ą²¬ą³Šą²°ą³ą²Øą²æą²Æą³Š, ą²øą³†ą²²ą³†ą²¬ą²øą³, ಬಾಲಿ, ನುಸಾ ą²Ÿą³†ą²‚ą²—ą²¾ą²°ą²¾, ą²Ŗą²¶ą³ą²šą²æą²® ą²¤ą²æą²®ą³Šą²°ą³" #: timezones.h:537 msgid "Asia/Manila" msgstr "ą²ą²·ą²æą²Æ/ą²®ą³†ą²Øą²æą²²ą³ą²²ą²¾" #: timezones.h:538 msgid "Asia/Muscat" msgstr "ą²ą²·ą²æą²Æ/ą²®ą²øą³ą²•ą²Ÿą³" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "ą²ą²·ą²æą²Æ/ನಿಕೋಶಿಯ" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "ą²ą²·ą²æą²Æ/ą²Øą³‹ą²µą²¾ą²•ą³ą²øą³ą²Øą³†ą²øą³ą²•ą³" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "ą²®ą²¾ą²øą³ą²•ą³Š+03 - ą²Øą³Šą²µą³Šą²øą²æą²¬ą²æą²°ą³ą²øą²•ą³" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "ą²ą²·ą²æą²Æ/ą²Øą³Šą²µą³Šą²øą²æą²¬ą²æą²°ą³ą²øą²•ą³" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "ą²®ą²¾ą²øą³ą²•ą³Š+03 - ą²Øą³Šą²µą³Šą²øą²æą²¬ą²æą²°ą³ą²øą²•ą³" #: timezones.h:546 msgid "Asia/Omsk" msgstr "ą²ą²·ą²æą²Æ/ą²“ą²®ą³ą²øą²•ą³" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "ą²®ą²¾ą²øą³ą²•ą³Š+03 - ą²Ŗą²¶ą³ą²šą²æą²® ą²øą³ˆą²¬ą³€ą²°ą²æą²Æ" #: timezones.h:549 msgid "Asia/Oral" msgstr "ą²ą²·ą²æą²Æ/ą²“ą²°ą²²ą³" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "ą²Ŗą²¶ą³ą²šą²æą²® ą²•ą²ą²•ą²æą²øą³ą²¤ą²¾ą²Øą³" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "ą²ą²·ą²æą²Æ/ą²«ą³ą²Øą²¾ą²®ą³_ą²Ŗą³†ą²Øą³ą²¹ą³" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "ą²ą²·ą²æą²Æ/ą²Ŗą³Šą²‚ą²Ÿą²æą²Æą²¾ą²Øą²•ą³" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "ą²Ŗą²¶ą³ą²šą²æą²® ಹಾಗು ą²®ą²§ą³ą²Æ ą²¬ą³Šą²°ą³ą²Øą²æą²Æą³Š" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "ą²ą²·ą²æą²Æ/ą²Ŗą³ą²Æą²¾ą²‚ą²Øą³ą²—ą²æą²Æą²¾ą²‚ą²—ą³" #: timezones.h:557 msgid "Asia/Qatar" msgstr "ą²ą²·ą²æą²Æ/ą²•ą²¤ą²¾ą²°ą³" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "ą²ą²·ą²æą²Æ/ą²•ą³ą²µą²æą²ą²æą²²ą³Šą²°ą³ą²”ą²¾" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "ą²•ą²æą²øą²æą²²ą³Šą²°ą³ą²”ą²¾ (ą²•ą²æą²øą²æą²²ą³ā€Œ-ą²“ą²°ą³ą²”ą²¾)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "ą²ą²·ą²æą²Æ/ą²°ą²‚ą²—ą³‚ą²Øą³" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "ą²ą²·ą²æą²Æ/ą²°ą²æą²Æą²¾ą²¦ą³" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "ą²ą²·ą²æą²Æ/ą²°ą²æą²Æą²¾ą²¦ą³ą³®ą³­" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "ą²ą²·ą²æą²Æ/ą²°ą²æą²Æą²¾ą²¦ą³ą³®ą³®" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "ą²ą²·ą²æą²Æ/ą²°ą²æą²Æą²¾ą²¦ą³ą³®ą³Æ" #: timezones.h:566 msgid "Asia/Saigon" msgstr "ą²ą²·ą²æą²Æ/ą²øą³ˆą²—ą³‚ą²Øą³" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "ą²ą²·ą²æą²Æ/ą²øą²–ą²¾ą²²ą²æą²Øą³" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "ą²®ą²¾ą²øą³ą²•ą³Š+07 - ą²øą²•ą²¾ą²²ą²æą²Øą³ ą²¦ą³ą²µą³€ą²Ŗ" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "ą²ą²·ą²æą²Æ/ą²øą²®ą²°ą²•ą²‚ą²”ą³" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "ą²Ŗą²¶ą³ą²šą²æą²® ą²‰ą²ą³ą²¬ą³‡ą²•ą²æą²øą³ą²¤ą²¾ą²Øą³" #: timezones.h:573 msgid "Asia/Seoul" msgstr "ą²ą²·ą²æą²Æ/ą²øą²æą²Æą³‹ą²²ą³" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "ą²ą²·ą²æą²Æ/ą²¶ą²¾ą²‚ą²—ą³ˆ" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "ą²Ŗą³‚ą²°ą³ą²µ ಚೈನಾ - ą²¬ą³€ą²œą²æą²‚ą²—ą³, ą²—ą³ą²µą²¾ą²‚ą²”ą²¾ą²‚ą²—ą³, ą²¶ą²¾ą²‚ą²—ą²¾ą²Æą³, ಇತರೆ" #: timezones.h:577 msgid "Asia/Singapore" msgstr "ą²ą²·ą²æą²Æ/ą²øą²æą²‚ą²—ą²Ŗą³‚ą²°ą³" #: timezones.h:578 msgid "Asia/Taipei" msgstr "ą²ą²·ą²æą²Æ/ą²¤ą³ˆą²Ŗą³†" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "ą²ą²·ą²æą²Æ/ą²¤ą²¾ą²·ą³ą²•ą³†ą²‚ą²Ÿą³" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ą²‰ą²ą³ą²¬ą³‡ą²•ą²æą²øą³ą²¤ą²¾ą²Øą³" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "ą²ą²·ą²æą²Æ/ಬಿಲಿಸಿ" #: timezones.h:583 msgid "Asia/Tehran" msgstr "ą²ą²·ą²æą²Æ/ą²Ÿą³†ą²¹ą³ą²°ą²¾ą²Øą³" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "ą²ą²·ą²æą²Æ/ą²Ÿą³†ą²²ą³_ą²Žą²µą²æą²µą³" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "ą²ą²·ą²æą²Æ/಄ಿಂಬು" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "ą²ą²·ą²æą²Æ/಄ಿಂಪು" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "ą²ą²·ą²æą²Æ/ą²Ÿą³‹ą²•ą²æą²Æą³‹" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "ą²ą²·ą²æą²Æ/ą²‰ą²œą²‚ą²—ą³_ą²Ŗą²¾ą²‚ą²”ą²‚ą²—ą³" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "ą²ą²·ą²æą²Æ/ą²‰ą²²ą²¾ą²‚ą²¬ą²¾ą²¤ą²°ą³" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "ą²ą²·ą²æą²Æ/ą²‰ą²²ą²¾ą²Øą³_ą²¬ą²¤ą²¾ą²°ą³" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "ą²ą²·ą²æą²Æ/ಉರುಂಕಿ" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "ą²Ÿą²æą²¬ą³†ą²Ÿą³ā€Œ ಹಾಗು ą²•ą³ą²øą²æą²‚ą²œą²æą²Æą²¾ą²‚ą²—ą³ā€Œą²Ø ą²¹ą³†ą²šą³ą²šą²æą²Ø ಭಾಗ" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "ą²ą²·ą²æą²Æ/ą²µą²æą²Æą³†ą²‚ą²Ÿą²æą²Æą²¾ą²Øą³†" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "ą²ą²·ą²æą²Æ/ą²µą³ą²²ą²¾ą²”ą²æą²µą³Šą²øą³ą²Ÿą³‹ą²•ą³" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "ą²®ą²¾ą²øą³ą²•ą³Š+07 - ą²…ą²®ą³ą²°ą³ ą²°ą²æą²µą²°ą³" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "ą²ą²·ą²æą²Æ/ą²Æą²•ą³ą²Ÿą³ą²øą²•ą³" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "ą²®ą²¾ą²øą³ą²•ą³Š+06 - ಲೀನಾ ą²°ą²æą²µą²°ą³" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "ą²ą²·ą²æą²Æ/ą²Æą³†ą²•ą²Ÿą³†ą²°ą²æą²Øą³ą²¬ą²°ą³ą²—ą³" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "ą²®ą²¾ą²øą³ą²•ą³Š+02 - ą²‰ą²°ą²¾ą²²ą³ą²øą³" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "ą²ą²·ą²æą²Æ/ą²Æą³†ą²°ą³†ą²µą²¾ą²Øą³" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "ą²…ą²Ÿą³ą²²ą²¾ą²‚ą²Ÿą²æą²•ą³/ą²…ą²ą³‹ą²°ą³†ą²øą³" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "ą²…ą²ą³‹ą²°ą²øą³" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "ą²…ą²Ÿą³ą²²ą²¾ą²‚ą²Ÿą²æą²•ą³/ą²¬ą²°ą³ą²®ą³ą²”ą²¾" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "ą²…ą²Ÿą³ą²²ą²¾ą²‚ą²Ÿą²æą²•ą³/ಕೆನಾರಿ" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "ಕನಾರಿ ą²¦ą³ą²µą³€ą²Ŗą²—ą²³ą³" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "ą²…ą²Ÿą³ą²²ą²¾ą²‚ą²Ÿą²æą²•ą³/ą²•ą³‡ą²Ŗą³_ą²µą²°ą³ą²”ą³" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "ą²…ą²Ÿą³ą²²ą²¾ą²‚ą²Ÿą²æą²•ą³/ą²«ą³ˆą²°ą³‹" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "ą²…ą²Ÿą³ą²²ą²¾ą²‚ą²Ÿą²æą²•ą³/ಫೆರೋ" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "ą²…ą²Ÿą³ą²²ą²¾ą²‚ą²Ÿą²æą²•ą³/ą²œą²¾ą²Øą³_ą²®ą²Æą³†ą²Øą³" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "ą²…ą²Ÿą³ą²²ą²¾ą²‚ą²Ÿą²æą²•ą³/ಮಔೆರಾ" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "ಮಔೀರಾ ą²¦ą³ą²µą³€ą²Ŗą²—ą²³ą³" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "ą²…ą²Ÿą³ą²²ą²¾ą²‚ą²Ÿą²æą²•ą³/ą²°ą³ˆą²•ą³ą²œą²¾ą²µą²æą²•ą³" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "ą²…ą²Ÿą³ą²²ą²¾ą²‚ą²Ÿą²æą²•ą³/ą²¦ą²•ą³ą²·ą²æą²£_ą²œą²¾ą²°ą³ą²œą²æą²Æą²¾" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "ą²…ą²Ÿą³ą²²ą²¾ą²‚ą²Ÿą²æą²•ą³/ą²øą³ą²Ÿą²¾ą²Øą³ą²²ą³†" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "ą²…ą²Ÿą³ą²²ą²¾ą²‚ą²Ÿą²æą²•ą³/ą²øą³ˆą²‚ą²Ÿą³_ಹೆಲೆನಾ" #: timezones.h:625 msgid "Australia/ACT" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ą²Žą²øą²æą²Ÿą²æ" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ą²…ą²”ą²æą²²ą³‡ą²”ą³" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "ą²¦ą²•ą³ą²·ą²æą²£ ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ą²¬ą³ą²°ą²æą²øą³ą²¬ą³‡ą²Øą³" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "ą²•ą³ą²µą³€ą²Øą³ą²øą³ā€Œą²²ą³ą²Æą²¾ą²‚ą²”ą³ - ą²¹ą³†ą²šą³ą²šą²æą²Ø ą²Ŗą³ą²°ą²¦ą³‡ą²¶ą²—ą²³ą³" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ą²¬ą³ą²°ą³‹ą²•ą²Øą³_ą²¹ą²æą²²ą³" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "ą²Øą³ą²Æą³‚ ą²øą³Œą²¤ą³ ą²µą³‡ą²²ą³ą²øą³ - ą²Æą²¾ą²‚ą²•ą³Šą²µą²æą²Øą²¾" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ą²•ą³ą²Æą²¾ą²Øą³ą²¬ą³†ą²°ą³ą²°ą²¾" #: timezones.h:636 msgid "Australia/Currie" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ą²•ą³ą²Æą³‚ą²°ą³ą²°ą²æ" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "ą²Ÿą²¾ą²øą³ą²®ą³‡ą²Øą²æą²Æ - ą²•ą²æą²‚ą²—ą³ ą²¦ą³ą²µą³€ą²Ŗ" #: timezones.h:639 msgid "Australia/Darwin" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ą²”ą²¾ą²°ą³ą²µą²æą²Øą³" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "ą²Ŗą³‚ą²°ą³ą²µ ą²Ÿą³†ą²°ą²æą²Ÿą²°ą²æ" #: timezones.h:642 msgid "Australia/Eucla" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ą²Æą³‚ą²•ą³ą²²ą²¾" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "ą²Ŗą²¶ą³ą²šą²æą²® ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾ - ą²Æą³‚ą²•ą³ą²²ą²¾ ą²Ŗą³ą²°ą²¦ą³‡ą²¶" #: timezones.h:645 msgid "Australia/Hobart" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ą²¹ą³‹ą²¬ą²°ą³ą²Ÿą³" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "ą²Ÿą²¾ą²øą³ą²®ą³‡ą²Øą²æą²Æ - ą²¹ą³†ą²šą³ą²šą²æą²Ø ą²øą³ą²„ą²³ą²—ą²³ą³" #: timezones.h:648 msgid "Australia/LHI" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ą²Žą²²ą³ ą²Žą²šą³ ಐ" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ą²²ą²æą²‚ą²”ą³†ą²®ą²¾ą²Øą³" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "ą²•ą³ą²µą³€ą²Øą³ą²øą³ā€Œą²²ą³ą²Æą²¾ą²‚ą²”ą³ - ಹಾಲಿಔೆ ą²¦ą³ą²µą³€ą²Ŗą²—ą²³ą³" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ą²²ą²¾ą²°ą³ą²”ą³_ą²¹ą³Šą²µą³†" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "ą²²ą³‹ą²°ą³ą²”ą³ ą²¹ą³‹ą²µą³ ą²¦ą³ą²µą³€ą²Ŗ" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ą²®ą³†ą²²ą³ą²¬ą³‹ą²°ą³ą²Øą³" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "ą²µą²æą²•ą³ą²Ÿą³‹ą²°ą²æą²Æą²¾" #: timezones.h:658 msgid "Australia/North" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ą²‰ą²¤ą³ą²¤ą²°" #: timezones.h:659 msgid "Australia/NSW" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ą²Žą²Øą³ ą²Žą²øą³ ą²”ą²¬ą³ą²²ą³ą²Æą³" #: timezones.h:660 msgid "Australia/Perth" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ą²Ŗą²°ą³ą²¤ą³" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "ą²Ŗą²¶ą³ą²šą²æą²® ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æ -ą²¹ą³†ą²šą³ą²šą²æą²Ø ą²øą³ą²„ą²³ą²—ą²³ą³" #: timezones.h:663 msgid "Australia/Queensland" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ą²•ą³ą²µą³‡ą²Øą³ą²øą³ ą²²ą³ą²Æą²¾ą²‚ą²”ą³" #: timezones.h:664 msgid "Australia/South" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ą²¦ą²•ą³ą²·ą²æą²£" #: timezones.h:665 msgid "Australia/Sydney" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ą²øą²æą²”ą³ą²Øą²æ" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "ą²Øą³ą²Æą³‚ ą²øą³Œą²¤ą³ ą²µą³‡ą²²ą³ą²øą³ - ą²¹ą³†ą²šą³ą²šą²æą²Ø ą²øą³ą²„ą²³ą²—ą²³ą³" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ą²Ÿą²¾ą²øą³ą²®ą²¾ą²Øą²æą²Æą²¾" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ą²µą²æą²•ą³ą²Ÿą³‹ą²°ą²æą²Æą²¾" #: timezones.h:670 msgid "Australia/West" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ą²Ŗą²¶ą³ą²šą²æą²®" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ą²†ą²øą³ą²Ÿą³ą²°ą³‡ą²²ą²æą²Æą²¾/ಯಾಂಕೋವಿನಾ" #: timezones.h:672 msgid "Brazil/Acre" msgstr "ą²¬ą³ą²°ą²ą²æą²²ą³/ą²ą²•ą²°ą³" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "ą²¬ą³ą²°ą²ą²æą²²ą³/ą²”ą²æą²Øą³Šą²°ą³Šą²Øą³ą²¹" #: timezones.h:674 msgid "Brazil/East" msgstr "ą²¬ą³ą²°ą²ą²æą²²ą³/ą²Ŗą³‚ą²°ą³ą²µ" #: timezones.h:675 msgid "Brazil/West" msgstr "ą²¬ą³ą²°ą²ą²æą²²ą³/ą²Ŗą²¶ą³ą²šą²æą²®" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "ಕೆನಔ/ą²…ą²Ÿą³ą²²ą²¾ą²‚ą²Ÿą²æą²•ą³" #: timezones.h:677 msgid "Canada/Central" msgstr "ಕೆನಔ/ą²øą³†ą²‚ą²Ÿą³ą²°ą²²ą³" #: timezones.h:678 msgid "Canada/Eastern" msgstr "ಕೆನಔ/ą²Ŗą³‚ą²°ą³ą²µ" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "ಕೆನಔ/ą²Ŗą³‚ą²°ą³ą²µ-ą²øą²¾ą²øą³ą²•ą²¾ą²Ÿą³ą²¶ą³†ą²µą²¾ą²Øą³" #: timezones.h:680 msgid "Canada/Mountain" msgstr "ಕೆನಔ/ą²Ŗą²°ą³ą²µą²¤" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "ಕೆನಔ/ą²Øą³ą²Æą³‚ą²«ą³Œą²‚ą²”ą³ ą²²ą³ą²Æą²¾ą²‚ą²”ą³" #: timezones.h:682 msgid "Canada/Pacific" msgstr "ಕೆನಔ/ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "ಕೆನಔ/ą²øą²¾ą²øą³ą²•ą²¾ą²Ÿą³ą²¶ą³†ą²µą²¾ą²Øą³" #: timezones.h:684 msgid "Canada/Yukon" msgstr "ಕೆನಔ/ą²Æą³ą²•ą³Šą²Øą³" #: timezones.h:685 msgid "CET" msgstr "ą²øą²æą²‡ą²Ÿą²æ" #: timezones.h:686 msgid "Chile/Continental" msgstr "ಚಿಲಿ/ą²•ą²¾ą²‚ą²Ÿą²æą²Øą³†ą²‚ą²Ÿą²²ą³" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "ಚಿಲಿ/ą²ˆą²øą³ą²Ÿą²°ą³ą²¦ą³ą²µą³€ą²Ŗ" #: timezones.h:688 msgid "CST6CDT" msgstr "ಸಿ ą²Žą²øą³ ಟಿ೬ಔಿ ą²Žą²øą³ ಟಿ" #: timezones.h:689 msgid "Cuba" msgstr "ą²•ą³ą²Æą³‚ą²¬ą²¾" #: timezones.h:690 msgid "EET" msgstr "ą²‡ą²‡ą²Ÿą²æ" #: timezones.h:691 msgid "Egypt" msgstr "ą²ˆą²œą²æą²Ŗą³ą²Ÿą³" #: timezones.h:692 msgid "Eire" msgstr "ಇರೆ" #: timezones.h:693 msgid "EST" msgstr "ಇ ą²Žą²øą³ ಟಿ" #: timezones.h:694 msgid "EST5EDT" msgstr "ಇ ą²Žą²øą³ ಟಿ ೫ ಇ ಔಿ ಟಿ" #: timezones.h:695 msgid "Etc/GMT" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ" #: timezones.h:696 msgid "Etc/GMT0" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ ೦" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ-೦" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ+೦" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ-ą³§" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ+ą³§" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ-೧೦" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ+೧೦" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ-ą³§ą³§" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ+ą³§ą³§" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ-೧೨" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ+೧೨" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ-೧೩" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ-ą³§ą³Ŗ" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ-೨" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ+೨" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ-೩" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ+೩" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ-ą³Ŗ" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ+ą³Ŗ" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ-೫" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ+೫" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ-೬" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ+೬" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ-ą³­" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ+ą³­" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ-ą³®" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ+ą³®" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ-೯" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಜಿ ą²Žą²®ą³ ಟಿ+೯" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ą²—ą³ą²°ą³€ą²Øą³ą²µą²æą²šą³" #: timezones.h:726 msgid "Etc/UCT" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಯುಸಿಟಿ" #: timezones.h:727 msgid "Etc/Universal" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ą²Æą³ą²Øą²æą²µą²°ą³ą²øą²²ą³" #: timezones.h:728 msgid "Etc/UTC" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ಯುಸಿಟಿ" #: timezones.h:729 msgid "Etc/Zulu" msgstr "ą²Žą²•ą³ą²øą³†ą²Ÿą³ą²°/ą²ą³ą²²ą³" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²†ą²®ą³ą²øą²Ÿą²°ą³ą²”ą³ą²Æą²¾ą²®ą³" #: timezones.h:731 msgid "Europe/Andorra" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ಅಂಔೋರಾ" #: timezones.h:732 msgid "Europe/Athens" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²…ą²„ą³†ą²Øą³ą²øą³" #: timezones.h:733 msgid "Europe/Belfast" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²¬ą³†ą²²ą³ą²«ą²¾ą²øą³ą²Ÿą³" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²¬ą³†ą²²ą³ą²—ą³ą²°ą³‡ą²”ą³" #: timezones.h:735 msgid "Europe/Berlin" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²¬ą²°ą³ą²²ą²æą²Øą³" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²¬ą³ą²°ą²Ÿą²æą²øą³ą²²ą²¾ą²µą²¾" #: timezones.h:737 msgid "Europe/Brussels" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²¬ą³ą²°ą³ą²øą³†ą²²ą³ą²øą³" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²¬ą³ą²Æą³ą²•ą²¾ą²°ą³†ą²øą³ą²Ÿą³" #: timezones.h:739 msgid "Europe/Budapest" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²¬ą³ą²”ą²¾ą²Ŗą³†ą²øą³ą²Ÿą³" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ಚಿಸಿನೌ" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²•ą³Šą²Ŗą²Øą³ ą²¹ą³‡ą²—ą²Øą³" #: timezones.h:742 msgid "Europe/Dublin" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²”ą²¬ą³ą²²ą²æą²Øą³" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²—ą²æą²¬ą³ą²°ą²¾ą²²ą³ą²Ÿą²°ą³" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²—ą³ą²Æą³ą²°ą³ą²Øą³†ą²øą²æ" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²¹ą³†ą²²ą³ą²øą²æą²‚ą²•ą²æ" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²ą²øą³ą²²ą³_ą²†ą²«ą³_ą²®ą³ą²Æą²¾ą²Øą³" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²‡ą²øą³ą²¤ą²¾ą²‚ą²¬ą³ą²²ą³" #: timezones.h:748 msgid "Europe/Jersey" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²œą²°ą³ą²øą²æ" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²•ą²²ą²æą²Øą²æą²‚ą²—ą³ą²°ą²¾ą²”ą³" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "ą²®ą²¾ą²øą³ą²•ą³Š-01 - ą²•ą²²ą²æą²Øą²Øą³ā€Œą²—ą³ą²°ą²¾ą²”ą³" #: timezones.h:752 msgid "Europe/Kiev" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²•ą³€ą²µą³" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²²ą²æą²øą³ą²¬ą²Øą³" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²œą³ą²¬ą³ą²²ą²œą²¾ą²Ø" #: timezones.h:759 msgid "Europe/London" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²²ą²‚ą²”ą²Øą³" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²²ą²•ą³ą²øą³†ą²‚ą²¬ą²°ą³ą²—ą³" #: timezones.h:761 msgid "Europe/Madrid" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²®ą³ą²Æą²¾ą²”ą³ą²°ą²æą²”ą³" #: timezones.h:764 msgid "Europe/Malta" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²®ą²¾ą²²ą³ą²Ÿą²¾" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²®ą²°ą³†ą²¹ą²®ą³" #: timezones.h:766 msgid "Europe/Minsk" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²®ą²æą²‚ą²•ą³ą²øą³" #: timezones.h:767 msgid "Europe/Monaco" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²®ą³Šą²Øą²¾ą²•ą³Š" #: timezones.h:768 msgid "Europe/Moscow" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²®ą²¾ą²øą³ą²•ą³‹" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "ą²®ą²¾ą²øą³ą²•ą³Š+00 - ą²Ŗą²¶ą³ą²šą²æą²® ą²°ą²·ą³ą²Æą²¾" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ನಿಕೋಸಿಯ" #: timezones.h:772 msgid "Europe/Oslo" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²“ą²øą³ą²²ą³Š" #: timezones.h:773 msgid "Europe/Paris" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²Ŗą³ą²Æą²¾ą²°ą²æą²øą³" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²Ŗą³Šą²”ą³ą²—ą³‹ą²°ą²æą²•ą²¾" #: timezones.h:775 msgid "Europe/Prague" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²Ŗą³ą²°ą²¾ą²—ą³ą²Æą³" #: timezones.h:776 msgid "Europe/Riga" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ರಿಗಾ" #: timezones.h:777 msgid "Europe/Rome" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²°ą³‹ą²®ą³" #: timezones.h:778 msgid "Europe/Samara" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ಸಮಾರಾ" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "ą²®ą²¾ą²øą³ą²•ą³Š - ಸಮಾರ, ą²‰ą²”ą³ą²®ą³ą²°ą³ą²¶ą²æą²Æ" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²øą²¾ą²Øą³_ಮಾರಿನೋ" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²øą²°ą³ą²œą³†ą²µą³‹" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²øą²æą²®ą³†ą²°ą³Šą²Ŗą³Šą²²ą³" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "ą²øą³†ą²‚ą²Ÿą³ą²°ą²²ą³ ą²•ą³ą²°ą²æą²®ą³†ą²Æ" #: timezones.h:786 msgid "Europe/Skopje" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²øą³ą²•ą³‹ą²œą³†" #: timezones.h:787 msgid "Europe/Sofia" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ಸೋಫಿಯ" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²øą³ą²Ÿą²¾ą²•ą³ ą²¹ą³Šą²‚" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²Ÿą²¾ą²²ą³ą²²ą²æą²Øą³" #: timezones.h:790 msgid "Europe/Tirane" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²Ÿą²æą²°ą²¾ą²Øą³†" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²Ÿą²æą²°ą²¾ą²øą³ą²Ŗą³Šą²²ą³" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²‰ą²ą³ą²—ą³ą²°ą³‹ą²”ą³" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "ರುತೇನಿಯ" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²µą²”ą³ą²ą³" #: timezones.h:796 msgid "Europe/Vatican" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²µą³ą²Æą²¾ą²Ÿą²æą²•ą²Øą³" #: timezones.h:797 msgid "Europe/Vienna" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²µą²æą²Æą³†ą²Øą³ą²Øą²¾" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²µą²æą²²ą³ą²Øą²æą²Æą²øą³" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²µą³Šą²²ą³ą²—ą³Šą²—ą³ą²°ą²¾ą²”ą³" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "ą²®ą²¾ą²øą³ą²•ą³Š+00 - ą²•ą³ą²Æą²¾ą²øą³ą²Ŗą²æą²Æą²Øą³ ą²øą²®ą³ą²¦ą³ą²°" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²µą²°ą³ą²øą²¾ą²µą³" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²ą²—ą³ą²°ą³†ą²¬ą³" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²ą²Ŗą³Šą²°ą³Šą²ą³ˆ" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "ಸಪೊರೊಸೈ, ಪೂ ą²²ą³ą²—ą²¾ą²Øą³ą²øą³ą²•ą³ / ಸಪೊರಿಸಿಯಾ, ಪೂ ą²²ą³ą²¹ą²¾ą²Øą³ą²øą³ą²•ą³" #: timezones.h:807 msgid "Europe/Zurich" msgstr "ą²Æą³ą²°ą³‹ą²Ŗą³/ą²ą³ą²Æą³ą²°ą²æą²šą³" #: timezones.h:808 msgid "Factory" msgstr "ą²«ą³ą²Æą²¾ą²•ą³ą²Ÿą²°ą²æ" #: timezones.h:809 msgid "GB" msgstr "ಜಿಬಿ" #: timezones.h:810 msgid "GB-Eire" msgstr "ಜಿಬಿ-ಇರೆ" #: timezones.h:811 msgid "GMT" msgstr "ą²œą²æą²Žą²‚ą²Ÿą²æ" #: timezones.h:812 msgid "GMT0" msgstr "ą²œą²æą²Žą²‚ą²Ÿą²æą³¦" #: timezones.h:813 msgid "GMT-0" msgstr "ą²œą²æą²Žą²‚ą²Ÿą²æ-೦" #: timezones.h:814 msgid "GMT+0" msgstr "ą²œą²æą²Žą²‚ą²Ÿą²æ+೦" #: timezones.h:815 msgid "Greenwich" msgstr "ą²—ą³ą²°ą³€ą²Øą³ą²µą²æą²šą³" #: timezones.h:816 msgid "Hongkong" msgstr "ą²¹ą²¾ą²‚ą²—ą³ą²•ą²¾ą²‚ą²—ą³" #: timezones.h:817 msgid "HST" msgstr "ą²¹ą³†ą²šą³ ą²Žą²øą³ ಟಿ" #: timezones.h:818 msgid "Iceland" msgstr "ą²¦ą³ą²µą³€ą²Ŗ" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "ą²‡ą²‚ą²”ą²æą²Æą²Øą³/ą²…ą²‚ą²Ÿą²Øą²¾ą²Øą²°ą²æą²µą³Š" #: timezones.h:820 msgid "Indian/Chagos" msgstr "ą²‡ą²‚ą²”ą²æą²Æą²Øą³/ą²šą²¾ą²—ą³‹ą²øą³" #: timezones.h:821 msgid "Indian/Christmas" msgstr "ą²‡ą²‚ą²”ą²æą²Æą²Øą³/ą²•ą³ą²°ą²æą²øą³ą²®ą²øą³" #: timezones.h:822 msgid "Indian/Cocos" msgstr "ą²‡ą²‚ą²”ą²æą²Æą²Øą³/ą²•ą³Šą²•ą³‹ą²øą³" #: timezones.h:823 msgid "Indian/Comoro" msgstr "ą²‡ą²‚ą²”ą²æą²Æą²Øą³/ą²•ą³Šą²®ą³Šą²°ą³Š" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "ą²‡ą²‚ą²”ą²æą²Æą²Øą³/ą²•ą³†ą²°ą³ą²—ą³ą²²ą³†ą²Øą³" #: timezones.h:825 msgid "Indian/Mahe" msgstr "ą²‡ą²‚ą²”ą²æą²Æą²Øą³/ಮಾಹೆ" #: timezones.h:826 msgid "Indian/Maldives" msgstr "ą²‡ą²‚ą²”ą²æą²Æą²Øą³/ą²®ą²¾ą²²ą³ą²”ą³€ą²µą³ą²øą³" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "ą²‡ą²‚ą²”ą²æą²Æą²Øą³/ą²®ą²¾ą²°ą²æą²·ą²øą³" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "ą²‡ą²‚ą²”ą²æą²Æą²Øą³/ą²®ą²Æą³Šą²Ÿą³ą²Ÿą³†" #: timezones.h:829 msgid "Indian/Reunion" msgstr "ą²‡ą²‚ą²”ą²æą²Æą²Øą³/ą²°ą²æą²Æą³ą²Øą²æą²Æą²Øą³" #: timezones.h:830 msgid "Iran" msgstr "ą²‡ą²°ą²¾ą²Øą³" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "ą²‡ą²øą³ą²°ą³†ą²²ą³" #: timezones.h:833 msgid "Jamaica" msgstr "ą²œą²®ą³ˆą²•ą²¾" #: timezones.h:834 msgid "Japan" msgstr "ą²œą²Ŗą²¾ą²Øą³" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "ą²•ą³ą²µą²œą²²ą³‡ą²Øą³" #: timezones.h:836 msgid "Libya" msgstr "ಲಿಬಿಯಾ" #: timezones.h:837 msgid "MET" msgstr "ą²Žą²®ą³ ಇ ಟಿ" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "ą²®ą³†ą²•ą³ą²øą²æą²•ą³Š/ą²¬ą²œą²¾ą²Øą³‹ą²°ą³ą²Ÿą³†" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "ą²®ą³†ą²•ą³ą²øą²æą²•ą³Š/ą²¬ą²œą²¾ą²øą³ą²°ą³" #: timezones.h:840 msgid "Mexico/General" msgstr "ą²®ą³†ą²•ą³ą²øą²æą²•ą³Š/ą²œą²Øą²°ą²²ą³" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "ą²®ą²§ą³ą²Æą²Ŗą³‚ą²°ą³ą²µ/ą²°ą²æą²Æą²¾ą²¦ą³ą³®ą³­" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "ą²®ą²§ą³ą²Æą²Ŗą³‚ą²°ą³ą²µ/ą²°ą²æą²Æą²¾ą²¦ą³ą³®ą³®" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "ą²®ą²§ą³ą²Æą²Ŗą³‚ą²°ą³ą²µ/ą²°ą²æą²Æą²¾ą²¦ą³ą³®ą³Æ" #: timezones.h:844 msgid "MST" msgstr "ą²Žą²®ą³ ą²Žą²øą³ ಟಿ" #: timezones.h:845 msgid "MST7MDT" msgstr "ą²Žą²®ą³ ą²Žą²øą³ ಟಿ ą³­ ą²Žą²®ą³ ಔಿ ಟಿ" #: timezones.h:846 msgid "Navajo" msgstr "ನವಾಜೊ" #: timezones.h:847 msgid "NZ" msgstr "ą²Žą²Øą³ ą²ą²”ą³" #: timezones.h:848 msgid "NZ-CHAT" msgstr "ą²Žą²Øą³ ą²ą²”ą³-ಸಿ ą²Žą²šą³ ą²Ž ಟಿ" #: timezones.h:849 msgid "Pacific/Apia" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ಅಪಿಯಾ" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²†ą²•ą³ ą²²ą³ą²Æą²¾ą²‚ą²”ą³" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²šą²¤ą²¾ą²®ą³" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "ą²šą²¾ą²¤ą²®ą³ ą²¦ą³ą²µą³€ą²Ŗą²—ą²³ą³" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²šą³‚ą²•ą³" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "ą²šą³‚ą²•ą³ (ą²Ÿą³ą²°ą²•ą³) ಹಾಗು ą²Æą²¾ą²Ŗą³" #: timezones.h:859 msgid "Pacific/Easter" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²ˆą²øą³ą²Ÿą²°ą³" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "ą²ˆą²øą³ą²Ÿą²°ą³ ą²¦ą³ą²µą³€ą²Ŗ ಹಾಗು ಸಲಾ ವೈ ą²—ą³Šą²®ą³†ą²ą³" #: timezones.h:862 msgid "Pacific/Efate" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²‡ą²«ą³‡ą²Ÿą³" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²Žą²‚ą²”ą²°ą³ą²¬ą²°ą³ą²°ą²æ" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "ą²«ą³€ą²Øą²æą²•ą³ą²øą³ ą²¦ą³ą²µą³€ą²Ŗą²—ą²³ą³" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²«ą²•ą²¾ą²«ą³Š" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ಫಿಜಿ" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ಫನಫುಟಿ" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²—ą²²ą²Ŗą³ą²Æą²¾ą²—ą³Šą²øą³" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "ą²—ą²¾ą²²ą²Ŗą²—ą³‹ą²øą³ ą²¦ą³ą²µą³€ą²Ŗą²—ą²³ą³" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²—ą³ą²Æą²¾ą²‚ą²¬ą²æą²°ą³" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "ą²—ą³‡ą²‚ą²¬ą²æą²Æą²°ą³ ą²¦ą³ą²µą³€ą²Ŗą²—ą²³ą³" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²—ą³ą²µą²¾ą²”ą³†ą²²ą³ ą²•ą³†ą²Øą²¾ą²²ą³" #: timezones.h:876 msgid "Pacific/Guam" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²—ą³ą²µą²¾ą²®ą³" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ಹೊನಲುಲು" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "ಹವಾಯಿ" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²œą²¾ą²Øą³ą²øą²Ÿą²Øą³" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "ą²œą²¾ą²Øą³ā€Œą²øą³ą²Ÿą²Øą³ ą²Žą²Ÿą³Šą²²ą³" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²•ą²æą²°ą²æą²Ÿą²æą²®ą³ą²Æą²¾ą²Ÿą²æ" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "ą²²ą³ˆą²Øą³ ą²¦ą³ą²µą³€ą²Ŗą²—ą²³ą³" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²•ą³Šą²øą³ą²°ą³†" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "ą²•ą³Šą²øą³ą²°ą³†" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²•ą³ą²µą²¾ą²œą²¾ą²²ą³‡ą²Øą³" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ಮಜುರೊ" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²®ą²°ą³ą²•ą³ą²Æą²øą²¾ą²øą³" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "ą²®ą²¾ą²°ą³ą²•ą³†ą²øą²¾ą²øą³ ą²¦ą³ą²µą³€ą²Ŗą²—ą²³ą³" #: timezones.h:898 msgid "Pacific/Midway" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²®ą²æą²”ą³ą²µą³‡" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "ą²®ą²æą²”ą³ā€Œą²µą³† ą²¦ą³ą²µą³€ą²Ŗą²—ą²³ą³" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ನೌರು" #: timezones.h:902 msgid "Pacific/Niue" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²Øą³ą²Æą³" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²Øą²¾ą²°ą³ą²«ą³‹ą²•ą³" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²Øą³Œą²®ą³†" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²Ŗą³ą²Æą²¾ą²—ą³Š_ą²Ŗą³ą²Æą²¾ą²—ą³Š" #: timezones.h:906 msgid "Pacific/Palau" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²Ŗą²²ą²µą³" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²Ŗą²æą²Ÿą²æą²•ą³‡ą²°ą³ą²Øą³" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²Ŗą³Šą²Øą³ā€Œą²Ŗą³†" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "ą²Ŗą³Šą²Øą³ā€Œą²Ŗą³† (ą²Ŗą³Šą²‚ą²Ŗą³†)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²Ŗą³Šą²Øą²¾ą²Ŗą³†" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²Ŗą³Šą²°ą³ą²Ÿą³_ą²®ą³‹ą²°ą³ą²øą³†ą²¬ą³ˆ" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²°ą²¾ą²°ą³Šą²Ÿą³Šą²‚ą²—ą²¾" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²øą³ˆą²Ŗą²¾ą²Øą³" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ಸಮೊವ" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ತಾಹಿತಿ" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "ಸೊಸೈಟಿ ą²¦ą³ą²µą³€ą²Ŗą²—ą²³ą³" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ತರಾವಾ" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "ą²—ą²æą²²ą³ą²¬ą²°ą³ą²Ÿą³ ą²¦ą³ą²µą³€ą²Ŗą²—ą²³ą³" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²Ÿą³Šą²‚ą²—ą²¾ą²Ÿą²¾ą²Ŗą³" #: timezones.h:923 msgid "Pacific/Truk" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²Ÿą³ą²°ą²•ą³" #: timezones.h:924 msgid "Pacific/Wake" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²µą³‡ą²•ą³" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "ą²µą³‡ą²•ą³ ą²¦ą³ą²µą³€ą²Ŗą²—ą²³ą³" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²µą²¾ą²²ą³ą²²ą²æą²øą³" #: timezones.h:928 msgid "Pacific/Yap" msgstr "ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³/ą²Æą²¾ą²Ŗą³" #: timezones.h:929 msgid "Poland" msgstr "ą²Ŗą³‹ą²²ą²¾ą²‚ą²”ą³" #: timezones.h:930 msgid "Portugal" msgstr "ą²Ŗą³‹ą²°ą³ą²šą³ą²—ą²²ą³" #: timezones.h:931 msgid "posixrules" msgstr "ą²Ŗą²¾ą²øą²æą²•ą³ą²øą³ā€Œą²°ą³‚ą²²ą³ą²øą³" #: timezones.h:932 msgid "PRC" msgstr "ಪಿ ą²†ą²°ą³ ಸಿ" #: timezones.h:933 msgid "PST8PDT" msgstr "ಪಿ ą²Žą²øą³ ಟಿ ą³® ಪಿ ಔಿ ಟಿ" #: timezones.h:934 msgid "ROC" msgstr "ą²†ą²°ą³ ą²’ ಸಿ" #: timezones.h:935 msgid "ROK" msgstr "ą²†ą²°ą³ ą²’ ಕೆ" #: timezones.h:936 msgid "Singapore" msgstr "ą²øą²æą²‚ą²—ą²Ŗą³ą²°ą³" #: timezones.h:937 msgid "Turkey" msgstr "ą²Ÿą²°ą³ą²•ą²æ" #: timezones.h:938 msgid "UCT" msgstr "ಯುಸಿಟಿ" #: timezones.h:939 msgid "Universal" msgstr "ą²Æą³ą²Øą²æą²µą²°ą³ą²øą²²ą³" #: timezones.h:940 msgid "US/Alaska" msgstr "ą²Æą³ą²Žą²øą³/ą²…ą²²ą²øą³ą²•ą²¾" #: timezones.h:941 msgid "US/Aleutian" msgstr "ą²Æą³ą²Žą²øą³/ą²…ą²²ą³‡ą²¶ą²æą²Æą²Øą³" #: timezones.h:942 msgid "US/Arizona" msgstr "ą²Æą³ą²Žą²øą³/ą²…ą²°ą²æą²ą³Šą²Ø" #: timezones.h:943 msgid "US/Central" msgstr "ą²Æą³ą²Žą²øą³/ą²øą³†ą²‚ą²Ÿą³ą²°ą²²ą³" #: timezones.h:944 msgid "US/Eastern" msgstr "ą²Æą³ą²Žą²øą³/ą²ˆą²øą³ą²Ÿą²°ą³ą²Øą³" #: timezones.h:945 msgid "US/East-Indiana" msgstr "ą²Æą³ą²Žą²øą³/ą²Ŗą³‚ą²°ą³ą²µ-ಇಂಔಿಯಾನ" #: timezones.h:946 msgid "US/Hawaii" msgstr "ą²Æą³ą²Žą²øą³/ಹವಾಯಿ" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "ą²Æą³ą²Žą²øą³/ಇಂಔಿಯಾನ-ą²øą³ą²Ÿą²¾ą²°ą³ą²•ą³" #: timezones.h:948 msgid "US/Michigan" msgstr "ą²Æą³ą²Žą²øą³/ą²®ą²æą²šą²æą²—ą²Øą³" #: timezones.h:949 msgid "US/Mountain" msgstr "ą²Æą³ą²Žą²øą³/ą²Ŗą²°ą³ą²µą²¤" #: timezones.h:950 msgid "US/Pacific" msgstr "ą²Æą³ą²Žą²øą³/ą²Ŗą³†ą²øą²æą²«ą²æą²•ą³" #: timezones.h:951 msgid "US/Samoa" msgstr "ą²Æą³ą²Žą²øą³/ಸಮೋವ" #: timezones.h:952 msgid "UTC" msgstr "ಯು ಟಿ ಸಿ" #: timezones.h:953 msgid "WET" msgstr "ą²”ą²¬ą³ą²²ą³ą²‡ą²Ÿą²æ" #: timezones.h:954 msgid "W-SU" msgstr "ą²”ą²¬ą³ą²²ą³ą²Æą³-ą²Žą²øą³ ಯು" #: timezones.h:955 msgid "Zulu" msgstr "ą²ą³ą²²ą³" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/es.po0000664000175000017500000020170514632072346023673 0ustar fabiofabio# translation of timezones.tip.es.po to Spanish # translation of es.po to # Copyright (C) 2004, 2006, 2008 Free Software Foundation, Inc. # # Tullio Dovera , 2000. # Yelitza Louze , 2004. # Manuel Ospina , 2006. # Domingo Becker , 2008. # HĆ©ctor Daniel Cabrera , 2010. # msgid "" msgstr "" "Project-Id-Version: timezones.tip.es\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-08-25 09:11-0300\n" "Last-Translator: Claudio Rodrigo Pereyra Diaz \n" "Language-Team: Fedora Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: \n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-Language: Spanish\n" "X-Poedit-Country: ARGENTINA\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Ɓfrica/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Ɓfrica/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Ɓfrica/Addis_Abeba" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Ɓfrica/Argelia" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Ɓfrica/Asmera" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Ɓfrica/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Ɓfrica/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Ɓfrica/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Ɓfrica/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Ɓfrica/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Ɓfrica/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Ɓfrica/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Ɓfrica/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Ɓfrica/El_Cairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Ɓfrica/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Ɓfrica/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Ceuta & Melilla" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Ɓfrica/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Ɓfrica/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Ɓfrica/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Ɓfrica/Djibouti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Ɓfrica/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Ɓfrica/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Ɓfrica/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Ɓfrica/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Ɓfrica/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Ɓfrica/Johannesburgo" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Ɓfrica/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Ɓfrica/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Ɓfrica/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Ɓfrica/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "Rep. Dem. del Congo oeste" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Ɓfrica/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Ɓfrica/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Ɓfrica/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Ɓfrica/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Ɓfrica/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "Rep. Dem. del Congo este" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Ɓfrica/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Ɓfrica/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Ɓfrica/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Ɓfrica/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Ɓfrica/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Ɓfrica/Mogadisco" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Ɓfrica/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Ɓfrica/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Ɓfrica/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Ɓfrica/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Ɓfrica/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Ɓfrica/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Ɓfrica/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Ɓfrica/Santo_TomĆ©" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Ɓfrica/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Ɓfrica/TrĆ­poli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Ɓfrica/TĆŗnez" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Ɓfrica/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "AmĆ©rica/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "Islas Aleutianas" #: timezones.h:63 msgid "America/Anchorage" msgstr "AmĆ©rica/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "Hora de Alaska" #: timezones.h:66 msgid "America/Anguilla" msgstr "AmĆ©rica/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "AmĆ©rica/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "AmĆ©rica/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Tocantins" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "AmĆ©rica/Argentina/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Buenos Aires (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "AmĆ©rica/Argentina/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "Catamarca (CT), Chubut (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "AmĆ©rica/Argentina/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "AmĆ©rica/Argentina/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "mayorĆ­a de las localidades (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "AmĆ©rica/Argentina/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Jujuy (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "AmĆ©rica/Argentina/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "La Rioja (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "AmĆ©rica/Argentina/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "Mendoza (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "AmĆ©rica/Argentina/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Santa Cruz (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "America/Argentina/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "AmĆ©rica/Argentina/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "San Juan (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "America/Argentina/San_Luis" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "San Luis (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "AmĆ©rica/Argentina/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Tucuman (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "AmĆ©rica/Argentina/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Tierra del Fuego (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "AmĆ©rica/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "AmĆ©rica/Asunción" #: timezones.h:110 msgid "America/Atikokan" msgstr "AmĆ©rica/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "Hora estĆ”ndar del este - Atikokan, Ontario e Southampton I, Nunavut" #: timezones.h:113 msgid "America/Atka" msgstr "AmĆ©rica/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "AmĆ©rica/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "Bahia" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "AmĆ©rica/Bahia_Banderas" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "Tiempo Central Mexicano - BahĆ­a de Banderas" #: timezones.h:120 msgid "America/Barbados" msgstr "AmĆ©rica/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "AmĆ©rica/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "Amapa, Para E" #: timezones.h:124 msgid "America/Belize" msgstr "AmĆ©rica/Belice" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "AmĆ©rica/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "Hora estĆ”ndar del atlĆ”ntico - Quebec - Lower North Shore" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "AmĆ©rica/Boa Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "Roraima" #: timezones.h:131 msgid "America/Bogota" msgstr "AmĆ©rica/BogotĆ”" #: timezones.h:132 msgid "America/Boise" msgstr "AmĆ©rica/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "Hora de la MontaƱa - Idaho sur & Oregon este" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "AmĆ©rica/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "AmĆ©rica/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "Hora de la MontaƱa - Nunavut oeste" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "AmĆ©rica/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "Mato Grosso do Sul" #: timezones.h:142 msgid "America/Cancun" msgstr "AmĆ©rica/CancĆŗn" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "Hora Central - Quintana Roo" #: timezones.h:145 msgid "America/Caracas" msgstr "AmĆ©rica/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "AmĆ©rica/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "AmĆ©rica/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "AmĆ©rica/CaimĆ”n" #: timezones.h:149 msgid "America/Chicago" msgstr "AmĆ©rica/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "Hora Central" #: timezones.h:152 msgid "America/Chihuahua" msgstr "AmĆ©rica/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "Hora mexicana de montaƱa - Chihuahua, lejos de la frontera norteamericana" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "AmĆ©rica/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "AmĆ©rica/Córdoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "AmĆ©rica/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "AmĆ©rica/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "Mato Grosso" #: timezones.h:161 msgid "America/Curacao" msgstr "AmĆ©rica/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "AmĆ©rica//Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "costa este, norte de Socresbysund" #: timezones.h:165 msgid "America/Dawson" msgstr "AmĆ©rica/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "Hora del PacĆ­fico - Yukon norte" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "AmĆ©rica/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "Hora estĆ”ndar de MontaƱa - Dawson Creek & Fort Saint John, British Columbia" #: timezones.h:171 msgid "America/Denver" msgstr "AmĆ©rica/Denver" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "Hora de MontaƱa" #: timezones.h:174 msgid "America/Detroit" msgstr "AmĆ©rica/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "Hora del Este - Michigan - la mayorĆ­a de las localidades" #: timezones.h:177 msgid "America/Dominica" msgstr "AmĆ©rica/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "AmĆ©rica/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "Hora de MontaƱa - Alberta, east British Columbia & west Saskatchewan" #: timezones.h:181 msgid "America/Eirunepe" msgstr "AmĆ©rica/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "Amazonas O" #: timezones.h:184 msgid "America/El_Salvador" msgstr "AmĆ©rica/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "AmĆ©rica/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "AmĆ©rica/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "NE de Brasil (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "AmĆ©rica/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "AmĆ©rica/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "Hora del AtlĆ”ntico - Nueva Escocia - lugares que no observan el DST 1966-1971" #: timezones.h:193 msgid "America/Godthab" msgstr "AmĆ©rica/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 #: timezones.h:364 #: timezones.h:453 #: timezones.h:591 #: timezones.h:754 #: timezones.h:852 #: timezones.h:894 msgid "most locations" msgstr "la mayorĆ­a de las localidades" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "AmĆ©rica/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "Hora del AtlĆ”ntico - Labrador - la mayorĆ­a de las localidades" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "AmĆ©rica/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "AmĆ©rica/Granada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "AmĆ©rica/Guadalupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "AmĆ©rica/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "AmĆ©rica/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 #: timezones.h:757 #: timezones.h:763 msgid "mainland" msgstr "Ć”rea principal" #: timezones.h:206 msgid "America/Guyana" msgstr "AmĆ©rica/Guyana" #: timezones.h:207 msgid "America/Halifax" msgstr "AmĆ©rica/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "Hora del AtlĆ”ntico - Nueva Escocia (la mayorĆ­a de las localidades), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "AmĆ©rica/Habana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "AmĆ©rica/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "Hora estĆ”ndar de la MontaƱa - Sonora" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "AmĆ©rica/Indiana/IndianĆ”polis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "Hora del Este - Indiana - la mayorĆ­a de las localidades" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "AmĆ©rica/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "Hora del Este - Indiana - Condado Starke" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "AmĆ©rica/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "Hora del Este - Indiana - Condado Crawford" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "AmĆ©rica/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "Hora del Este - Indiana - Condado Pike" #: timezones.h:226 msgid "America/Indianapolis" msgstr "AmĆ©rica/IndianĆ”polis" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "AmĆ©rica/Indiana/Tell_City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "Hora del Este - Indiana - Condado Perry" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "AmĆ©rica/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "Hora del Este - Indiana - Condado Suiza" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "AmĆ©rica/Indiana/Vencennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "Hora del Este - Indiana - Condados Daviess, Dubois, Knox & Martin" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "AmĆ©rica/Indiana/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "Hora del Este - Indiana - Condado Pulaski" #: timezones.h:239 msgid "America/Inuvik" msgstr "AmĆ©rica/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "Hora de la MontaƱa - Territorios Noroestes del oeste" #: timezones.h:242 msgid "America/Iqaluit" msgstr "AmĆ©rica/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "Hora del Este - Nunavut del este - la mayorĆ­a de las localidades" #: timezones.h:245 msgid "America/Jamaica" msgstr "AmĆ©rica/Jamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "AmĆ©rica/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "AmĆ©rica/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "Hora de Alaska - PenĆ­nsula de Alaska" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "AmĆ©rica//Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "Hora del Este - Area Kentucky - Louisville" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "AmĆ©rica/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "Hora del este - Kentucky - Condado de Wayne" #: timezones.h:256 msgid "America/Knox_IN" msgstr "AmĆ©rica/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "AmĆ©rica/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "AmĆ©rica/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "AmĆ©rica/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "Hora del PacĆ­fico" #: timezones.h:262 msgid "America/Louisville" msgstr "AmĆ©rica/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "AmĆ©rica/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "Alagoas, Sergipe" #: timezones.h:266 msgid "America/Managua" msgstr "AmĆ©rica/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "AmĆ©rica/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "Amazonas E" #: timezones.h:270 msgid "America/Marigot" msgstr "AmĆ©rica/Marigot" #: timezones.h:271 msgid "America/Martinique" msgstr "AmĆ©rica/Martinica" #: timezones.h:272 msgid "America/Matamoros" msgstr "AmĆ©rica/Matamoros" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "Hora norteamericana central - Coahuila, Durango, Nuevo Leon, Tamaulipas, cerca de la frontera con los Estados Unidos" #: timezones.h:275 msgid "America/Mazatlan" msgstr "AmĆ©rica/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "Hora de la MontaƱa - S Baja, Nayarit, Sinaloa" #: timezones.h:278 msgid "America/Mendoza" msgstr "AmĆ©rica/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "AmĆ©rica/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "Hora Central - Michigan - Condados de Dickinson, Gogebic, Iron & Menominee" #: timezones.h:282 msgid "America/Merida" msgstr "AmĆ©rica/Mendoza" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "Hora Central - Campeche, YucatĆ”n" #: timezones.h:285 msgid "America/Mexico_City" msgstr "AmĆ©rica/Ciudad_de_MĆ©xico" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "Hora Central - la mayorĆ­a de las localidades" #: timezones.h:288 msgid "America/Miquelon" msgstr "AmĆ©rica/Miquelon" #: timezones.h:289 msgid "America/Moncton" msgstr "AmĆ©rica/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "Hora del AtlĆ”ntico - Nueva Brunswick" #: timezones.h:292 msgid "America/Monterrey" msgstr "AmĆ©rica/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from US border" msgstr "Hora mexicana central - Coahuila, Durango, Nuevo Leon, Tamaulipas, lejos de la frontera norteamericana" #: timezones.h:295 msgid "America/Montevideo" msgstr "AmĆ©rica/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "AmĆ©rica/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "Hora del Este - Quebec - la mayorĆ­a de las localidades" #: timezones.h:299 msgid "America/Montserrat" msgstr "AmĆ©rica/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "AmĆ©rica/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "AmĆ©rica/Nueva_York" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "Hora del Este" #: timezones.h:304 msgid "America/Nipigon" msgstr "AmĆ©rica/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "Hora del Este - Ontario & Quebec - lugares no adheridos al DST 1967-1973" #: timezones.h:307 msgid "America/Nome" msgstr "AmĆ©rica/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "Hora de Alaska - Alaska oeste" #: timezones.h:310 msgid "America/Noronha" msgstr "AmĆ©rica/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "Islas del AtlĆ”ntico" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "AmĆ©rica/Dakota del Norte/Centro" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "Hora Central - North Dakota - Condado de Oliver" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "AmĆ©rica/Dakota del Norte/Nueva Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "Hora Central - North Dakota - Condado de Morton (excepto el Ć”rea de Mandan)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "AmĆ©rica/Ojinaga" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "Hora norteamericana de montaƱa - Chihuahua, cerca de la frontera con los Estados Unidos" #: timezones.h:322 msgid "America/Panama" msgstr "AmĆ©rica/PanamĆ”" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "AmĆ©rica/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "Hora del Este - Pangnirtung, Nunavut" #: timezones.h:326 msgid "America/Paramaribo" msgstr "AmĆ©rica/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "AmĆ©rica/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "Hora EstĆ”ndar de la MontaƱa - Arizona" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "AmĆ©rica/Puerto-PrĆ­ncipe" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "AmĆ©rica/Puerto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "AmĆ©rica/Puerto_de_EspaƱa" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "AmĆ©rica/Puerto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "Rondonia" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "AmĆ©rica/Puerto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "AmĆ©rica/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "Hora Central - Rainy River & Fort Frances, Ontario" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "AmĆ©rica/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "Hora Central - Nunavut central" #: timezones.h:343 msgid "America/Recife" msgstr "AmĆ©rica/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "Pernambuco" #: timezones.h:346 msgid "America/Regina" msgstr "AmĆ©rica/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "Hora EstĆ”ndar Central - Saskatchewan - la mayorĆ­a de las localidades" #: timezones.h:349 msgid "America/Resolute" msgstr "AmĆ©rica/Resolute" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "Hora EstĆ”ndar del Este - Resolute, Nunavut" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "AmĆ©rica/RĆ­o Blanco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "Acre" #: timezones.h:355 msgid "America/Rosario" msgstr "AmĆ©rica/Rosario" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "America/Santa_Isabel" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "Hora mexicana del PacĆ­fico - Baja California, lejos de la frontera norteamericana" #: timezones.h:359 msgid "America/Santarem" msgstr "America/Santarem" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "Para O" #: timezones.h:362 msgid "America/Santiago" msgstr "AmĆ©rica/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "AmĆ©rica/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "AmĆ©rica/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "Brasil S & SE (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "AmĆ©rica/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Scoresbysund / Ittoqqortoormiit" #: timezones.h:372 msgid "America/Shiprock" msgstr "AmĆ©rica/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "Hora de MontaƱa - Navajo" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "AmĆ©rica/San_BartolomĆ©" #: timezones.h:376 msgid "America/St_Johns" msgstr "AmĆ©rica/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "Hora de Newfoundland,incluyendo Labrador SE" #: timezones.h:379 msgid "America/St_Kitts" msgstr "AmĆ©rica/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "AmĆ©rica/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "AmĆ©rica/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "AmĆ©rica/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "AmĆ©rica/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "Hora EstĆ”ndar Central - Saskatchewan - medio oeste" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "AmĆ©rica/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "AmĆ©rica/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "Thule / Pituffik" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "AmĆ©rica/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "Hora del Este - BahĆ­a Thunder, Ontario" #: timezones.h:393 msgid "America/Tijuana" msgstr "AmĆ©rica/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "Hora norteamericana del PacĆ­fico - Baja California, cerca de la frontera con los Estados Unidos" #: timezones.h:396 msgid "America/Toronto" msgstr "AmĆ©rica/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "Hora del Este - Ontario - la mayorĆ­a de las localidades" #: timezones.h:399 msgid "America/Tortola" msgstr "AmĆ©rica/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "AmĆ©rica/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "Hora del PacĆ­fico - Columbia BritĆ”nica oeste" #: timezones.h:403 msgid "America/Virgin" msgstr "AmĆ©rica/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "AmĆ©rica/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "Hora del PacĆ­fico - Yukon sur" #: timezones.h:407 msgid "America/Winnipeg" msgstr "AmĆ©rica/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "Hora Central - Manitoba & Ontario oeste" #: timezones.h:410 msgid "America/Yakutat" msgstr "AmĆ©rica/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "Hora de Alaska - cuello panhandle de Alaska" #: timezones.h:413 msgid "America/Yellowknife" msgstr "AmĆ©rica/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "Hora de la MontaƱa - Territorios Noroeste centrales" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "AntĆ”rtida/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "Estación Casey, PenĆ­nsula de Bailey" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "AntĆ”rtida/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "Estación Davis, Vestfold Hills" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "AntĆ”rtida/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Estación Dumont-d'Urville, Terre Adelie" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "AntĆ”rtida/Macquarie" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "Estación de la Isla Macquarie, Isla Macquarie" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "AntĆ”rtida/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "Estación Mawson, BahĆ­a de Holme" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "AntĆ”rtida/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "Estación McMurdo, Isla Ross" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "AntĆ”rtida/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "Estación Palmer, Isla Anvers" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "AntĆ”rctica/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "Estación Rothera, Isla Adelaida" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "AntĆ”rtida/Polo_sur" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "Estación Amundsen-Scott, Polo Sur" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "AntĆ”rtida/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "Syowa Station, E Ongul I" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "AntĆ”rtida/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "Estación Vostok, Polo MagnĆ©tico Sur" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Ɓrtico/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Asia/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Asia/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Asia/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Asia/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "MoscĆŗ+08 - Mar de Bering" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Asia/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Asia/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "Aqtobe (Aktobe)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Asia/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Asia/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Asia/Bagdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Asia/Bahrain" #: timezones.h:468 msgid "Asia/Baku" msgstr "Asia/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Asia/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Asia/Beirut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Asia/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Asia/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Asia/Calcuta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Asia/ChoibalsĆ”n" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "Dornod, Sukhbaatar" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Asia/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "China central - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." #: timezones.h:480 msgid "Asia/Chungking" msgstr "Asia/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Asia/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Asia/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Asia/Damasco" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Asia/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Asia/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Asia/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Asia/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Asia/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Asia/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Heilongjiang (excepto Mohe), Jilin" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "Asia/Ho_Chi_Minh" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Asia/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Asia/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Asia/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "MoscĆŗ+05 - Lago Baikal" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Asia/Estambul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Asia/Yakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "Java & Sumatra" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Asia/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "Irian Jaya & las Moluccas" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Asia/JerusalĆ©n" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Asia/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Asia/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "MoscĆŗ+08 - Kamchatka" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Asia/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Asia/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "Tibet oeste & Xinjiang" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "Asia/Kathmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Asia/KatmandĆŗ" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "Asia/Kolkata" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Asia/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "MoscĆŗ+04 - Yenisei River" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Asia/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "Malasia peninsular" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Asia/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "Sabah & Sarawak" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Asia/Kuwait" #: timezones.h:529 msgid "Asia/Macao" msgstr "Asia/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Asia/Macao" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Asia/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "MoscĆŗ+08 - MagadĆ”n" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Asia/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "este & sur de Borneo, Celebes, Bali, Nusa Tengarra, Timor oeste" #: timezones.h:537 msgid "Asia/Manila" msgstr "Asia/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Asia/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Asia/Nicosia" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "Asia/Novokuznetsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "MoscĆŗ+03 - Novokuznetsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Asia/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "MoscĆŗ+03 - Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Asia/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "MoscĆŗ+03 - west Siberia" #: timezones.h:549 msgid "Asia/Oral" msgstr "Asia/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "KazajistĆ”n Oeste" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Asia/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Asia/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "Borneo oeste & central" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Asia/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Asia/Qatar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Asia/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "Qyzylorda (Kyzylorda, Kzyl-Orda)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Asia/RangĆŗn" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Asia/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Asia/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Asia/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Asia/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Asia/Saigón" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Asia/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "MoscĆŗ+07 - Isla Sakhalin" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Asia/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "UzbekistĆ”n oeste" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Asia/SeĆŗl" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Asia/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "China del este - Beijing, Guangdong, Shanghai, etc." #: timezones.h:577 msgid "Asia/Singapore" msgstr "Asia/Singapur" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Asia/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Asia/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "UzbekistĆ”n este" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Asia/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Asia/Teheran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Asia/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Asia/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Asia/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Asia/Tokio" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Asia/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Asia/Ulan_Bator" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Asia/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Asia/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "mayor parte del Tibet & Xinjiang" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Asia/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Asia/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "MoscĆŗ+07 - Amur River" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Asia/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "MoscĆŗ+06 - Lena River" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Asia/Yekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "MoscĆŗ+02 - Urales" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Asia/Yerevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "AtlĆ”ntico/Azores" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "Azores" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "AtlĆ”ntico/Bermudas" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "AtlĆ”ntico/Canarias" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "Islas Canarias" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "AtlĆ”ntico/Cabo_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "AtlĆ”ntico/Feroe" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "AtlĆ”ntico/Feroe" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "AtlĆ”ntico/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "AtlĆ”ntico/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "Islas Madeira" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "AtlĆ”ntico/Reykjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "AtlĆ”ntico/Georgia_del_Sur" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "AtlĆ”ntico/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "AtlĆ”ntico/St_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "Australia/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Australia/Adelaida" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "Sur de Australia" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Australia/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "Queensland - mayorĆ­a de las localidades" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Australia/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "Nueva Gales del Sur - Yancowinna" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Australia/Camberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "Australia/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "Tasmania - Isla del Rey" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Australia/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "Territorio Norte" #: timezones.h:642 msgid "Australia/Eucla" msgstr "Australia/Eucla" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "Australia Oeste - Area Eucla" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Australia/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "Tasmania - mayorĆ­a de las localidades" #: timezones.h:648 msgid "Australia/LHI" msgstr "Australia/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Australia/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "Queensland - Islas Holiday" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Australia/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "Isla Lord Howe" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Australia/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "Australia/Norte" #: timezones.h:659 msgid "Australia/NSW" msgstr "Australia/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "Australia/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "Australia Oeste - la mayorĆ­a de las localidades" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Australia/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "Australia/Sur" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Australia/Sidney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "Nueva Gales del Sur - la mayorĆ­a de las localidades" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Australia/Tasmania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Australia/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "Australia/Oeste" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Australia/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brasil/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brasil/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brasil/Este" #: timezones.h:675 msgid "Brazil/West" msgstr "Brasil/Oeste" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "CanadĆ”/AtlĆ”ntico" #: timezones.h:677 msgid "Canada/Central" msgstr "CanadĆ”/Central" #: timezones.h:678 msgid "Canada/Eastern" msgstr "CanadĆ”/Oriental" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "CanadĆ”/East-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "CanadĆ”/Mountain" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "CanadĆ”/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "CanadĆ”/PacĆ­fico" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "CanadĆ”/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "CanadĆ”/Saskatchewan" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Chile/Continental" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chile/Isla_de_Pascua" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Cuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Egipto" #: timezones.h:692 msgid "Eire" msgstr "Irlanda" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/ZulĆŗ" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Europa/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Europa/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Europa/Atenas" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Europa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Europa/Belgrado" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Europa/BerlĆ­n" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Europa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Europa/Bruselas" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Europa/Bucarest" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Europa/Budapest" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Europa/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Europa/Copenague" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Europa/DublĆ­n" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Europa/Gibraltar" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Europa/Guernsey" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Europa/Helsinki" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Europa/Isla del Hombre" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Europa/Estambul" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Europa/Jersey" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Europa/Kaliningrado" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "MoscĆŗ-01 - Kaliningrado" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Europa/Kiev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Europa/Lisboa" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Europa/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Europa/Londres" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Europa/Luxemburgo" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Europa/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Europa/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Europa/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Europa/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Europa/Mónaco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Europa/MoscĆŗ" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "MoscĆŗ+00 - oeste de Rusia" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Europa/Nicosia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Europa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Europa/ParĆ­s" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Europa/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Europa/Praga" #: timezones.h:776 msgid "Europe/Riga" msgstr "Europa/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Europa/Roma" #: timezones.h:778 msgid "Europe/Samara" msgstr "Europa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "MoscĆŗ - Samara, Udmurtia" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Europa/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Europa/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Europa/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "Crimea central" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Europa/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Europa/SofĆ­a" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Europa/Estocolmo" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Europa/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Europa/Tirana" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Europa/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Europa/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "Ruthenia" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Europa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Europa/Vaticano" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Europa/Viena" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Europa/Vilnius" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Europa/Volgogrado" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "MoscĆŗ+00 - Mar Caspio" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Europa/Warsaw" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Europa/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Europa/Zaporozheye" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Europa/ZĆŗrich" #: timezones.h:808 msgid "Factory" msgstr "Factory" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hong-Kong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Islandia" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Indico/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Indico/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Indico/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Indico/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Indico/Comoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Indico/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Indico/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Indico/Maldivas" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Indico/Mauricio" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "ƍndico/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "ƍndico/Reunion" #: timezones.h:830 msgid "Iran" msgstr "IrĆ”n" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "Israel" #: timezones.h:833 msgid "Jamaica" msgstr "Jamaica" #: timezones.h:834 msgid "Japan" msgstr "Japón" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 #: timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libia" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Mexico/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Mexico/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Mexico/General" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Oriente_Medio/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Oriente_Medio/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Oriente_Medio/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "PacĆ­fico/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "PacĆ­fico/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "PacĆ­fico/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "Islas Chatham" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "PacĆ­fico/Truk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "Truk (Chuuk) y Yap" #: timezones.h:859 msgid "Pacific/Easter" msgstr "PacĆ­fico/Isla de Pascua" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "Isla Easter & Sala y Gomez" #: timezones.h:862 msgid "Pacific/Efate" msgstr "PacĆ­fico/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "PacĆ­fico/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "Islas Phoenix" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "PacĆ­fico/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "PacĆ­fico/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "PacĆ­fico/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "PacĆ­fico/GalĆ”pagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "Islas GalĆ”pagos" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "PacĆ­fico/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "Islas Gambier" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "PacĆ­fico/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "PacĆ­fico/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "PacĆ­fico/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "Hawaii" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "PacĆ­fico/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "Johnston Atoll" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "PacĆ­fico/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "Islas Line" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "PacĆ­fico/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "Kosrae" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "PacĆ­fico/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "PacĆ­fico/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "PacĆ­fico/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "Islas Marquesas" #: timezones.h:898 msgid "Pacific/Midway" msgstr "PacĆ­fico/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "Islas Midway" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "PacĆ­fico/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "PacĆ­fico/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "PacĆ­fico/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "PacĆ­fico/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "PacĆ­fico/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "PacĆ­fico/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "PacĆ­fico/Pitcairn" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "PacĆ­fico/Ponape" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "Ponape (Pohnpei)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "PacĆ­fico/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "PacĆ­fico/Puerto_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "PacĆ­fico/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "PacĆ­fico/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "PacĆ­fico/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "PacĆ­fico/TahitĆ­" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "Islas Sociedad" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "PacĆ­fico/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "Islas Gilbert" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "PacĆ­fico/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "PacĆ­fico/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "PacĆ­fico/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "Isla Wake" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "PacĆ­fico/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "PacĆ­fico/Yap" #: timezones.h:929 msgid "Poland" msgstr "Polonia" #: timezones.h:930 msgid "Portugal" msgstr "Portugal" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapur" #: timezones.h:937 msgid "Turkey" msgstr "TurquĆ­a" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "EEUU/Alaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "EEUU/Aleutian" #: timezones.h:942 msgid "US/Arizona" msgstr "EEUU/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "EEUU/Central" #: timezones.h:944 msgid "US/Eastern" msgstr "EEUU/Oriental" #: timezones.h:945 msgid "US/East-Indiana" msgstr "EEUU/Indiana-Este" #: timezones.h:946 msgid "US/Hawaii" msgstr "EEUU/Hawai" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "EEUU/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "EEUU/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "EEUU/Mountain" #: timezones.h:950 msgid "US/Pacific" msgstr "EEUU/PacĆ­fico" #: timezones.h:951 msgid "US/Samoa" msgstr "EEUU/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "ZulĆŗ" #~ msgid "US/Pacific-New" #~ msgstr "EEUU/Nuevo PacĆ­fico" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/sk.po0000664000175000017500000020217314632072346023701 0ustar fabiofabio# timezones sk.po # Copyright (C) 2002-2008 RedHat, Inc. # # Stanislav Meduna , 1999. # Marcel Telka , 2002. # Mike Karas , 2007. # Pavol Å imo , 2008. # Ondrej Å ulek , 2009, 2010. msgid "" msgstr "" "Project-Id-Version: timezones\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-10-10 13:33+0200\n" "Last-Translator: Ondrej Å ulek \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sk\n" "X-Generator: Lokalize 1.1\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Afrika/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Afrika/Akkra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Afrika/Adis_Abeba" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Afrika/Alžír" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Afrika/Asmara" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Afrika/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Afrika/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Afrika/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Afrika/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Afrika/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Afrika/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Afrika/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Afrika/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Afrika/KĆ”hira" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Afrika/Kasablanka" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Afrika/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Ceuta a Melilla" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Afrika/Konakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Afrika/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Afrika/Dar_es_SalĆ”m" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Afrika/Džibuti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Afrika/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Afrika/El-AaiĆŗn" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Afrika/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Afrika/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Afrika/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Afrika/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Afrika/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Afrika/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Afrika/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Afrika/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "zĆ”padnĆ” KonžskĆ” Dem. Rep." #: timezones.h:35 msgid "Africa/Lagos" msgstr "Afrika/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Afrika/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Afrika/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Afrika/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Afrika/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "východnĆ” KonžskĆ” Dem. Rep." #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Afrika/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Afrika/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Afrika/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Afrika/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Afrika/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Afrika/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Afrika/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Afrika/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Afrika/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Afrika/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Afrika/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Afrika/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Afrika/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Afrika/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Afrika/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Afrika/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Afrika/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Afrika/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "Amerika/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "Aleuty" #: timezones.h:63 msgid "America/Anchorage" msgstr "Amerika/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "AljaÅ”ský čas" #: timezones.h:66 msgid "America/Anguilla" msgstr "Amerika/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "Amerika/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "Amerika/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Tocantins" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Amerika/ArgentĆ­na/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Buenos Aires (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Amerika/ArgentĆ­na/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "Catamarca (CT), Chubut (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Amerika/ArgentĆ­na/Rivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Amerika/ArgentĆ­na/Kordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "vĆ¤ÄÅ”ina Ćŗzemia (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Amerika/ArgentĆ­na/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Jujuy (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Amerika/ArgentĆ­na/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "La Rioja (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Amerika/ArgentĆ­na/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "Mendoza (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Amerika/ArgentĆ­na/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Santa Cruz (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "Amerika/ArgentĆ­na/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Amerika/ArgentĆ­na/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "San Juan (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "Amerika/ArgentĆ­na/San_Luis" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "San Luis (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Amerika/ArgentĆ­na/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Tucuman (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Amerika/ArgentĆ­na/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "OhňovĆ” zem (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "Amerika/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "Amerika/Asuncion" #: timezones.h:110 msgid "America/Atikokan" msgstr "Amerika/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "Východný Å”tandardný čas - OntĆ”rio a Southampton I, Nunavut" #: timezones.h:113 msgid "America/Atka" msgstr "Amerika/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "Amerika/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "Bahia" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "Amerika/Bahia de Banderas" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "Mexický centrĆ”lny čas - Bahia de Banderas" #: timezones.h:120 msgid "America/Barbados" msgstr "Amerika/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "Amerika/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "Amapa, E Para" #: timezones.h:124 msgid "America/Belize" msgstr "Amerika/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "Amerika/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "Atlantický Å”tandardný čas - Quebec - Lower North Shore" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Amerika/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "Roraima" #: timezones.h:131 msgid "America/Bogota" msgstr "Amerika/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "Amerika/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "Horský čas - južnĆ© Idaho a východný Oregon" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Amerika/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Amerika/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "Horský čas - zĆ”padnĆ© Nunavut" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "Amerika/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "Mato Grosso do Sul" #: timezones.h:142 msgid "America/Cancun" msgstr "Amerika/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "CentrĆ”lny čas - Quintana Roo" #: timezones.h:145 msgid "America/Caracas" msgstr "Amerika/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "Amerika/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "Amerika/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "Amerika/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "Amerika/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "CentrĆ”lny čas" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Amerika/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "Mexický horský čas - Chihuahua ďaleko od hranĆ­c USA" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "Amerika/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "Amerika/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Amerika/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Amerika/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "Mato Grosso" #: timezones.h:161 msgid "America/Curacao" msgstr "Amerika/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Amerika/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "východnĆ© pobrežie, severne od Scoresbysund" #: timezones.h:165 msgid "America/Dawson" msgstr "Amerika/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "Pacifický čas - severný Yukon" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Amerika/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" "Horský Å”tandardný čas - Dawson Creek a Fort Saint John, BritskĆ” Kolumbia" #: timezones.h:171 msgid "America/Denver" msgstr "Amerika/Denver" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "Horský čas" #: timezones.h:174 msgid "America/Detroit" msgstr "Amerika/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "Východný čas - Michigan - vĆ¤ÄÅ”ina Ćŗzemia" #: timezones.h:177 msgid "America/Dominica" msgstr "Amerika/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "Amerika/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "Horský čas - Alberta, východnĆ” BritskĆ” Kolumbia a zĆ”padný Saskatchewan" #: timezones.h:181 msgid "America/Eirunepe" msgstr "Amerika/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "ZĆ”padnĆ© Amazonas" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Amerika/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "Amerika/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Amerika/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "NE BrazĆ­lia (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Amerika/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Amerika/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" "Atlantický čas - NovĆ© Å kótsko - miesta bez zmeny DST času v rokoch 1966-1971" #: timezones.h:193 msgid "America/Godthab" msgstr "Amerika/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "vĆ¤ÄÅ”ina Ćŗzemia" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Amerika/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "Atlantický čas - Labrador - vĆ¤ÄÅ”ina Ćŗzemia" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Amerika/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "Amerika/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Amerika/Guadeloupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "Amerika/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Amerika/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "pevnina" #: timezones.h:206 msgid "America/Guyana" msgstr "Amerika/Guyana" #: timezones.h:207 msgid "America/Halifax" msgstr "Amerika/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "Atlantický čas - NovĆ© Å kótsko (vĆ¤ÄÅ”ina Ćŗzemia), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "Amerika/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Amerika/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "Horský Å”tandardný čas - Sonora" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Amerika/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "Východný čas - Indiana - vĆ¤ÄÅ”ina Ćŗzemia" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Amerika/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "CentrĆ”lny čas - Indiana - Starke County" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Amerika/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "Východný čas - Indiana - Crawford County" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "Amerika/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "Východný čas - Indiana - Pike County" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Amerika/Indianapolis" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "Amerika/Indiana/Tell_City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "CentrĆ”lny čas - Indiana - Perry County" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "Východný čas - Indiana - Switzerland County" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "Amerika/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "Východný čas - Indiana - Daviess, Dubois, Knox a Martin Counties" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "Amerika/Indiana/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "Východný čas - Indiana - Pulaski County" #: timezones.h:239 msgid "America/Inuvik" msgstr "Amerika/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "Horský čas - zĆ”padnĆ© SeverozĆ”padnĆ© teritóriĆ”" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Amerika/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "Východný čas - východnĆ© Nunavut - vĆ¤ÄÅ”ina Ćŗzemia" #: timezones.h:245 msgid "America/Jamaica" msgstr "Amerika/Jamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "Amerika/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "Amerika/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "AljaÅ”ský čas - AljaÅ”ka panhandle" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Amerika/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "Východný čas - Kentucky - oblasÅ„ Louisville" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Amerika/Kentucky/Montevideo" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "Východný čas - Kentucky - Wayne County" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Amerika/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "Amerika/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "Amerika/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Amerika/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "Pacifický čas" #: timezones.h:262 msgid "America/Louisville" msgstr "Amerika/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "Amerika/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "Alagoas, Sergipe" #: timezones.h:266 msgid "America/Managua" msgstr "Amerika/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "Amerika/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "VýchodnĆ© Amazonas" #: timezones.h:270 msgid "America/Marigot" msgstr "Amerika/Marigot" #: timezones.h:271 msgid "America/Martinique" msgstr "Amerika/Martinik" #: timezones.h:272 msgid "America/Matamoros" msgstr "Amerika/Matamoros" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" "CentrĆ”lny čas USA - Coahuila, Durango, Nuevo Leon, Tamaulipas pri hraniciach " "USA" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Amerika/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "Horský čas - S Baja, Nayarit, Sinaloa" #: timezones.h:278 msgid "America/Mendoza" msgstr "Amerika/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "Amerika/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" "CentrĆ”lny čas - Michigan - Dickinson, Gogebic, Iron a Menominee Counties" #: timezones.h:282 msgid "America/Merida" msgstr "Amerika/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "CentrĆ”lny čas - Campeche, Yucatan" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Amerika/Mexico_City" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "CentrĆ”lny čas - vĆ¤ÄÅ”ina Ćŗzemia" #: timezones.h:288 msgid "America/Miquelon" msgstr "Amerika/Miquelon" #: timezones.h:289 msgid "America/Moncton" msgstr "Amerika/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "Atlantický čas - New Brunswick" #: timezones.h:292 msgid "America/Monterrey" msgstr "Amerika/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" "Mexický centrĆ”lny čas - Coahuila, Durango, Nuevo Leon, Tamaulipas ďaleko od " "hranĆ­c USA" #: timezones.h:295 msgid "America/Montevideo" msgstr "Amerika/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "Amerika/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "Východný čas - Quebec - vĆ¤ÄÅ”ina Ćŗzemia" #: timezones.h:299 msgid "America/Montserrat" msgstr "Amerika/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "Amerika/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "Amerika/New_York" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "Východný čas" #: timezones.h:304 msgid "America/Nipigon" msgstr "Amerika/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" "Východný čas - OntĆ”rio a Quebec - miesta bez zmeny DST času v rokoch 1967-" "1973" #: timezones.h:307 msgid "America/Nome" msgstr "Amerika/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "AljaÅ”ský čas - zĆ”padnĆ” AljaÅ”ka" #: timezones.h:310 msgid "America/Noronha" msgstr "Amerika/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "AtlantickĆ© ostrovy" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Amerika/North_Dakota/Center" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "CentrĆ”lny čas - SevernĆ” Dakota - Oliver County" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "Amerika/North_Dakota/New_Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "CentrĆ”lny čas - SevernĆ” Dakota - Morton County (okrem oblasti Mandan)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "America/Ojinaga" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "Horský čas USA - Chihuahua pri hraniciach USA" #: timezones.h:322 msgid "America/Panama" msgstr "Amerika/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Amerika/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "Východný čas - Pangnirtung, Nunavut" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Amerika/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "Amerika/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "Horský Å”tandardný čas - Arizona" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Amerika/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Amerika/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Amerika/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Amerika/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "Rondonia" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Amerika/Puerto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Amerika/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "CentrĆ”lny čas - Rainy River a Fort Frances, OntĆ”rio" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Amerika/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "CentrĆ”lny čas - centrĆ”lne Nunavut" #: timezones.h:343 msgid "America/Recife" msgstr "Amerika/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "Pernambuco" #: timezones.h:346 msgid "America/Regina" msgstr "Amerika/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "CentrĆ”lny Å”tandardný čas - Saskatchewan - vĆ¤ÄÅ”ina Ćŗzemia" #: timezones.h:349 msgid "America/Resolute" msgstr "Amerika/Resolute" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "Východný Å”tandardný čas - Resolute, Nunavut" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Amerika/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "Acre" #: timezones.h:355 msgid "America/Rosario" msgstr "Amerika/Rosario" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "America/Santa_Isabel" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "Mexický pacifický čas - Baja California ďaleko od hranĆ­c USA" #: timezones.h:359 msgid "America/Santarem" msgstr "Amerika/Santarem" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "ZĆ”padnĆ” Para" #: timezones.h:362 msgid "America/Santiago" msgstr "Amerika/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Amerika/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Amerika/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "S a SE BrazĆ­lia (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Amerika/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Scoresbysund / Ittoqqortoormiit" #: timezones.h:372 msgid "America/Shiprock" msgstr "Amerika/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "Horský čas - Navajo" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "Amerika/St_BarthĆ©lemy" #: timezones.h:376 msgid "America/St_Johns" msgstr "Amerika/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "Newfoundlandský čas, vrĆ”tane SE Labrador" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Amerika/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Amerika/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Amerika/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Amerika/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Amerika/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "CentrĆ”lny Å”tandardný čas - Saskatchewan - stredný zĆ”pad" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Amerika/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "Amerika/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "Thule / Pituffik" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Amerika/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "Východný čas - Thunder Bay, OntĆ”rio" #: timezones.h:393 msgid "America/Tijuana" msgstr "Amerika/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "USA pacifický čas - Baja California pri hraniciach USA" #: timezones.h:396 msgid "America/Toronto" msgstr "Amerika/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "Východný čas - Ontario - vĆ¤ÄÅ”ina Ćŗzemia" #: timezones.h:399 msgid "America/Tortola" msgstr "Amerika/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "Amerika/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "Pacifický čas - zĆ”padnĆ” BritskĆ” Kolumbia" #: timezones.h:403 msgid "America/Virgin" msgstr "Amerika/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Amerika/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "Pacifický čas - južný Yukon" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Amerika/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "CentrĆ”lny čas - Manitoba a zĆ”padnĆ© OntĆ”rio" #: timezones.h:410 msgid "America/Yakutat" msgstr "Amerika/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "AljaÅ”ský čas - AljaÅ”ka panhandle neck" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Amerika/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "Horský čas - centrĆ”lne SeverozĆ”padnĆ© teritóriĆ”" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "AntarktĆ­da/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "Stanica Casey, Bailey Peninsula" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "AntarktĆ­da/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "Stanica Davis, Vestfold Hills" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "AntarktĆ­da/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Stanica Dumont-d'Urville, Terre Adelie" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "Antarctica/Macquarie" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "Stanica ostrova Macquarie, Ostrov Macquarie" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "AntarktĆ­da/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "Stanica Mawson, ZĆ”toka Holme" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "AntarktĆ­da/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "Stanica McMurdo, Rossov ostrov" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "AntarktĆ­da/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "Stanica Palmer, Ostrov Anvers" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "AntarktĆ­da/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "Stanica Rothera, Ostrov Adelaide" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "AntarktĆ­da/South_Pole" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "Stanica Amundsen-Scott, Južný pól" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "AntarktĆ­da/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "Stanica Syowa, E Ongul I" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "AntarktĆ­da/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "Stanica Vostok, Južný magnetický pól" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "ArktĆ­da/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Ɓzia/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Ɓzia/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Ɓzia/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Ɓzia/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "Moskva+08 - Beringovo more" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Ɓzia/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Ɓzia/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "Aqtobe (Aktobe)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Ɓzia/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Ɓzia/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Ɓzia/Baghdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Ɓzia/Bahrain" #: timezones.h:468 msgid "Asia/Baku" msgstr "Ɓzia/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Ɓzia/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Ɓzia/Beirut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Ɓzia/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Ɓzia/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Ɓzia/Calcutta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Ɓzia/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "Dornod, Sukhbaatar" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Ɓzia/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "centrĆ”lna Čína - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, atď." #: timezones.h:480 msgid "Asia/Chungking" msgstr "Ɓzia/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Ɓzia/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Ɓzia/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Ɓzia/Damascus" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Ɓzia/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Ɓzia/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Ɓzia/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Ɓzia/DuÅ”anbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Ɓzia/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Ɓzia/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Heilongjiang (okrem Mohe), Jilin" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "Ɓzia/Ho_Chi_Minh" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Ɓzia/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Ɓzia/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Ɓzia/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "Moskva+05 - Jazero Bajkal" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Ɓzia/Istanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Ɓzia/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "Java a Sumatra" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Ɓzia/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "Irian Jaya a Moluccas" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Ɓzia/Jeruzalem" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Ɓzia/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Ɓzia/Kamčatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "Moskva+08 - Kamčatka" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Ɓzia/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Ɓzia/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "zĆ”padný Tibet a Xinjiang" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "Ɓzia/KĆ”thmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Ɓzia/Katmandu" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "Ɓzia/Kalkata" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Ɓzia/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "Moskva+04 - Jenisej" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Ɓzia/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "Malajský poloostrov" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Ɓzia/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "Sabah a Sarawak" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Ɓzia/Kuwait" #: timezones.h:529 msgid "Asia/Macao" msgstr "Ɓzia/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Ɓzia/Macau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Ɓzia/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "Moskva+08 - Magadan" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Ɓzia/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "východnĆ© a južnĆ© Borneo, Celebes, Bali, Nusa Tengarra, zĆ”padný Timor" #: timezones.h:537 msgid "Asia/Manila" msgstr "Ɓzia/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Ɓzia/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Ɓzia/Nicosia" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "Ɓzia/Novokuzneck" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "Moskva+03 - Novokuzneck" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Ɓzia/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "Moskva+03 - Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Ɓzia/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "Moskva+03 - zĆ”padný SibĆ­r" #: timezones.h:549 msgid "Asia/Oral" msgstr "Ɓzia/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "ZĆ”padný Kazachstan" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Ɓzia/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Ɓzia/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "zĆ”padnĆ© a centrĆ”lne Borneo" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Ɓzia/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Ɓzia/Qatar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Ɓzia/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "Qyzylorda (Kyzylorda, Kzyl-Orda)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Ɓzia/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Ɓzia/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Ɓzia/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Ɓzia/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Ɓzia/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Ɓzia/Saigon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Ɓzia/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "Moskva+07 - Ostrov Sachalin" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Ɓzia/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "zĆ”padný Uzbekistan" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Ɓzia/Seoul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Ɓzia/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "východnĆ” Čína - Peking, Guangdong, Å anghaj, atď." #: timezones.h:577 msgid "Asia/Singapore" msgstr "Ɓzia/SingapĆŗr" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Ɓzia/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Ɓzia/TaÅ”kent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "východný Uzbekistan" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Ɓzia/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Ɓzia/TeherĆ”n" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Ɓzia/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Ɓzia/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Ɓzia/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Ɓzia/Tokyo" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Ɓzia/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Ɓzia/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Ɓzia/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Ɓzia/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "vĆ¤ÄÅ”ina Tibetu a Xinjiang" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Ɓzia/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Ɓzia/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "Moskva+07 - rieka Amur" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Ɓzia/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "Moskva+06 - rieka Lena" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Ɓzia/Yekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "Moskva+02 - Ural" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Ɓzia/Yerevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlantik/Azory" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "Azory" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlantik/Bermudy" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlantik/Canary" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "KanĆ”rske ostrovy" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlantik/Cape_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlantik/FaerskĆ© ostrovy" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "Atlantik/FaerskĆ© ostrovy" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlantik/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlantik/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "Madeira" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlantik/Reykjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlantik/South_Georgia" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlantik/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlantik/St_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "AustrĆ”lia/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "AustrĆ”lia/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "JužnĆ” AustrĆ”lia" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "AustrĆ”lia/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "Queensland - vĆ¤ÄÅ”ina uzemia" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "AustrĆ”lia/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "Nový Južný Wales - Yancowinna" #: timezones.h:635 msgid "Australia/Canberra" msgstr "AustrĆ”lia/Canberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "AustrĆ”lia/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "TasmĆ”nia - Ostrov King" #: timezones.h:639 msgid "Australia/Darwin" msgstr "AustrĆ”lia/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "SevernĆ© teritórium" #: timezones.h:642 msgid "Australia/Eucla" msgstr "AustrĆ”lia/Eucla" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "ZĆ”padnĆ” AustrĆ”lia - oblasÅ„ Eucla" #: timezones.h:645 msgid "Australia/Hobart" msgstr "AustrĆ”lia/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "TasmĆ”nia - vĆ¤ÄÅ”ina Ćŗzemia" #: timezones.h:648 msgid "Australia/LHI" msgstr "AustrĆ”lia/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "AustrĆ”lia/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "Queensland - ostrovy Holiday" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "AustrĆ”lia/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "Ostrov lorda Howa" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "AustrĆ”lia/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "AustrĆ”lia/Sever" #: timezones.h:659 msgid "Australia/NSW" msgstr "AustrĆ”lia/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "AustrĆ”lia/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "ZĆ”padnĆ” AustrĆ”lia - vĆ¤ÄÅ”ina Ćŗzemia" #: timezones.h:663 msgid "Australia/Queensland" msgstr "AustrĆ”lia/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "AustrĆ”lia/Juh" #: timezones.h:665 msgid "Australia/Sydney" msgstr "AustrĆ”lia/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "Nový Južný Wales - vĆ¤ÄÅ”ina Ćŗzemia" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "AustrĆ”lia/Tasmania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "AustrĆ”lia/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "AustrĆ”lia/ZĆ”pad" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "AustrĆ”lia/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "BrazĆ­lia/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "BrazĆ­lia/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "BrazĆ­lia/Východ" #: timezones.h:675 msgid "Brazil/West" msgstr "BrazĆ­lia/ZĆ”pad" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Kanada/Atlantik" #: timezones.h:677 msgid "Canada/Central" msgstr "Kanada/Central" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Kanada/Eastern" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Kanada/East-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Kanada/Mountain" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Kanada/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Kanada/Pacifický" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Kanada/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Kanada/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Chile/Continental" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chile/EasterIsland" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Kuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Egypt" #: timezones.h:692 msgid "Eire" msgstr "Eire" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "InĆ©/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "InĆ©/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "InĆ©/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "InĆ©/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "InĆ©/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "InĆ©/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "InĆ©/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "InĆ©/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "InĆ©/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "InĆ©/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "InĆ©/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "InĆ©/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "InĆ©/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "InĆ©/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "InĆ©/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "InĆ©/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "InĆ©/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "InĆ©/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "InĆ©/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "InĆ©/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "InĆ©/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "InĆ©/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "InĆ©/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "InĆ©/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "InĆ©/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "InĆ©/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "InĆ©/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "InĆ©/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "InĆ©/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "InĆ©/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "InĆ©/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "InĆ©/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "InĆ©/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "InĆ©/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "InĆ©/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Európa/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Európa/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Európa/AtĆ©ny" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Európa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Európa/Belgrade" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Európa/BerlĆ­n" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Európa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Európa/Brusel" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Európa/BukureŔń" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Európa/BudapeŔń" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Európa/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Európa/Kobenhavn" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Európa/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Európa/Gibraltar" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Európa/Guernsey" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Európa/Helsinki" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Európa/Isle_of_Man" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Európa/Istanbul" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Európa/Jersey" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Európa/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "Moskva-01 - Kaliningrad" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Európa/Kiev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Európa/Lisbon" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Európa/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Európa/Londýn" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Európa/Luxemburg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Európa/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Európa/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Európa/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Európa/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Európa/Monaco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Európa/Moskva" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "Moskva+00 - zĆ”padnĆ© Rusko" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Európa/Nicosia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Európa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Európa/Paríž" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Európa/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Európa/Praha" #: timezones.h:776 msgid "Europe/Riga" msgstr "Európa/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Európa/RĆ­m" #: timezones.h:778 msgid "Europe/Samara" msgstr "Európa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "Moskva - Samara, Udmurtsko" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Európa/San_MarĆ­no" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Európa/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Európa/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "centrum Krym" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Európa/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Európa/Sofia" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Európa/Stockholm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Európa/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Európa/Tirane" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Európa/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Európa/Užhorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "Ruthenia" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Európa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Európa/VatikĆ”n" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Európa/Viedeň" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Európa/Viľňus" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Európa/Volgograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "Moskva+00 - KaspickĆ© more" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Európa/VarÅ”ava" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Európa/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Európa/Zaporozhye" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "ZĆ”porožie, E Lugansk" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Európa/Zurich" #: timezones.h:808 msgid "Factory" msgstr "TovĆ”renskĆ©" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Island" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Indický/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Indický/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Indický/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Indický/KokosovĆ© ostrovy" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Indický/Komory" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Indický/Kergueleny" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Indický/MahĆ©" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Indický/Maledivy" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Indický/MaurĆ­cius" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Indický/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Indický/Reunion" #: timezones.h:830 msgid "Iran" msgstr "IrĆ”n" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "Izrael" #: timezones.h:833 msgid "Jamaica" msgstr "Jamajka" #: timezones.h:834 msgid "Japan" msgstr "Japonsko" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "LĆ­bya" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Mexiko/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Mexiko/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Mexiko/VÅ”eobecný" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Mideast/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Mideast/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Mideast/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Pacifik/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Pacifik/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Pacifik/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "ChathamskĆ© ostrovy" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "Pacifik/Chuuk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "Chuuk (Truk) a Yap" #: timezones.h:859 msgid "Pacific/Easter" msgstr "Pacifik/Easter" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "Veľkonočný ostrov a Sala y Gomez" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Pacifik/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Pacifik/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "PhoenixskĆ© ostrovy" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Pacifik/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Pacifik/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Pacifik/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Pacifik/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "GalapĆ”gy" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Pacifik/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "Gambierove ostrovy" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Pacifik/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Pacifik/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Pacifik/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "Hawaii" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Pacifik/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "Atol Johnston" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Pacifik/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "Ostrovy Line" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Pacifik/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "Kosrae" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Pacifik/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Pacifik/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Pacifik/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "MarkĆ©zy" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Pacifik/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "MidwayskĆ© ostrovy" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Pacifik/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Pacifik/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Pacifik/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Pacifik/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Pacifik/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Pacifik/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Pacifik/Pitcairn" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "Pacifik/Pohnpei" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "Pohnpei (Ponape)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Pacifik/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Pacifik/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Pacifik/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Pacifik/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Pacifik/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Pacifik/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "SpoločenskĆ© ostrovy" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Pacifik/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "Gilbertove ostrovy" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Pacifik/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Pacifik/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Pacifik/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "Ostrov Wake" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Pacifik/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Pacifik/Yap" #: timezones.h:929 msgid "Poland" msgstr "Poľsko" #: timezones.h:930 msgid "Portugal" msgstr "Portugalsko" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "SingapĆŗr" #: timezones.h:937 msgid "Turkey" msgstr "Turecko" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "US/AljaÅ”ka" #: timezones.h:941 msgid "US/Aleutian" msgstr "US/Aleutian" #: timezones.h:942 msgid "US/Arizona" msgstr "US/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "US/Central" #: timezones.h:944 msgid "US/Eastern" msgstr "US/Eastern" #: timezones.h:945 msgid "US/East-Indiana" msgstr "US/East-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "US/Hawaii" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "US/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "US/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "US/Mountain" #: timezones.h:950 msgid "US/Pacific" msgstr "US/Pacific" #: timezones.h:951 msgid "US/Samoa" msgstr "US/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" #~ msgid "US/Pacific-New" #~ msgstr "US/Pacific-nový" #~ msgid "SystemV/AST4" #~ msgstr "SystemV/AST4" #~ msgid "SystemV/AST4ADT" #~ msgstr "SystemV/AST4ADT" #~ msgid "SystemV/CST6" #~ msgstr "SystemV/CST6" #~ msgid "SystemV/CST6CDT" #~ msgstr "SystemV/CST6CDT" #~ msgid "SystemV/EST5" #~ msgstr "SystemV/EST5" #~ msgid "SystemV/EST5EDT" #~ msgstr "SystemV/EST5EDT" #~ msgid "SystemV/HST10" #~ msgstr "SystemV/HST10" #~ msgid "SystemV/MST7" #~ msgstr "SystemV/MST7" #~ msgid "SystemV/MST7MDT" #~ msgstr "SystemV/MST7MDT" #~ msgid "SystemV/PST8" #~ msgstr "SystemV/PST8" #~ msgid "SystemV/PST8PDT" #~ msgstr "SystemV/PST8PDT" #~ msgid "SystemV/YST9" #~ msgstr "SystemV/YST9" #~ msgid "SystemV/YST9YDT" #~ msgstr "SystemV/YST9YDT" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/README0000664000175000017500000000030114632072346023571 0ustar fabiofabioThose translations are copied from system-config-date http://git.fedorahosted.org/git/?p=system-config-date.git;a=tree;f=po/timezones and should not be modified by the GNOME translation teams. cinnamon-control-center-6.2.0/panels/datetime/po-timezones/hi.po0000664000175000017500000025073514632072346023673 0ustar fabiofabio# translation of system-config-date.master-timezones.po to Hindi # This file is distributed under the same license as the PACKAGE package. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. # # Rajesh Ranjan , 2005, 2006, 2008, 2010. # Rajesh Ranjan , 2009. msgid "" msgstr "" "Project-Id-Version: system-config-date.master-timezones\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-12-06 15:26+0530\n" "Last-Translator: Rajesh Ranjan \n" "Language-Team: Hindi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: hi\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n\n" "\n" "\n" "\n" "\n" "\n" "\n" "\n" "\n" "\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤…ą¤¬ą„€ą¤”ą„ą¤œą¤Ø" #: timezones.h:2 msgid "Africa/Accra" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤…ą¤•ą„ą¤°ą¤¾" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤ą¤¦ą¤æą¤ø_अबाबा" #: timezones.h:4 msgid "Africa/Algiers" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤…ą¤²ą¤œą¤æą¤Æą¤°ą„ą¤ø" #: timezones.h:5 msgid "Africa/Asmara" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/असमारा" #: timezones.h:6 msgid "Africa/Asmera" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤…ą¤øą¤®ą„‡ą¤°ą¤¾" #: timezones.h:7 msgid "Africa/Bamako" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤¬ą¤¾ą¤®ą¤¾ą¤•ą„‹" #: timezones.h:8 msgid "Africa/Bangui" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤¬ą¤‚ą¤—ą„ą¤ˆ" #: timezones.h:9 msgid "Africa/Banjul" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤¬ą¤‚ą¤œą¤²" #: timezones.h:10 msgid "Africa/Bissau" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤¬ą¤æą¤øą„‚" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤¬ą„ą¤²ą„‡ą¤Øą¤¤ą¤°ą„€" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤¬ą„ą¤°ą¤¾ą¤œą¤¾ą¤µą¤æą¤²" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤¬ą„ą¤œą¤®ą¤¬ą„ą¤°ą¤¾" #: timezones.h:14 msgid "Africa/Cairo" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤•ą„ˆą¤°ą„‹" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤•ą¤¾ą¤øą¤¾ą¤¬ą„ą¤²ą¤¾ą¤‚ą¤•ą¤¾" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤øą¤æą¤Æą„‚ą¤Ÿą¤¾" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "ą¤øą„‡ą¤Ÿą„ą¤† व ą¤®ą„‡ą¤²ą¤æą¤Æą¤¾" #: timezones.h:19 msgid "Africa/Conakry" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤•ą„‹ą¤Øą¤¾ą¤•ą„ą¤°ą„€" #: timezones.h:20 msgid "Africa/Dakar" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/औकर" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/दार_ą¤ą¤ø_ą¤øą„ą¤²ą„‡ą¤®" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤”ą„ą¤œą¤æą¤¬ą„‹ą¤Ÿą„€" #: timezones.h:23 msgid "Africa/Douala" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤”ą„‚ą¤…ą¤²ą¤¾" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤ą¤²_ऐन" #: timezones.h:25 msgid "Africa/Freetown" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤«ą„ą¤°ą„€ą¤Ÿą¤¾ą¤‰ą¤Ø" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤—ą„ˆą¤¬ą„ą¤°ą„‹ą¤Ø" #: timezones.h:27 msgid "Africa/Harare" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤¹ą¤°ą¤¾ą¤°ą„‡" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤œą„‹ą¤¹ą¤¾ą¤‚ą¤Øą„ą¤øą¤¬ą¤°ą„ą¤—" #: timezones.h:29 msgid "Africa/Kampala" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤•ą¤®ą„ą¤Ŗą¤¾ą¤²ą¤¾" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤–ą¤¾ą¤°ą„ą¤¤ą„ą¤®" #: timezones.h:31 msgid "Africa/Kigali" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤•ą¤æą¤—ą¤¾ą¤²ą„€" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/किंसासा" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "ą¤•ą¤¾ą¤‚ą¤—ą„‹ का ą¤Ŗą¤¶ą„ą¤šą¤æą¤®ą„€ ą¤²ą„‹ą¤•ą¤¤ą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤• ą¤—ą¤£ą¤°ą¤¾ą¤œą„ą¤Æ" #: timezones.h:35 msgid "Africa/Lagos" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤²ą¤¾ą¤—ą„‹ą¤ø" #: timezones.h:36 msgid "Africa/Libreville" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/लिबरविल" #: timezones.h:37 msgid "Africa/Lome" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤²ą„‹ą¤®" #: timezones.h:38 msgid "Africa/Luanda" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤²ą„ą¤†ą¤‚ą¤”ą¤¾" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤²ą„ą¤¬ą„‚ą¤‚ą¤¬ą¤¶ą„€" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "ą¤•ą¤¾ą¤‚ą¤—ą„‹ का ą¤Ŗą„‚ą¤°ą„ą¤µą„€ ą¤²ą„‹ą¤•ą¤¤ą¤¾ą¤‚ą¤¤ą„ą¤°ą¤æą¤• ą¤—ą¤£ą¤°ą¤¾ą¤œą„ą¤Æ" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤²ą„ą¤øą¤¾ą¤•ą¤¾" #: timezones.h:43 msgid "Africa/Malabo" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤®ą¤²ą¤¾ą¤¬ą„‹" #: timezones.h:44 msgid "Africa/Maputo" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤®ą¤Ŗą„ą¤¤ą„‹" #: timezones.h:45 msgid "Africa/Maseru" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤®ą„ˆą¤øą„‡ą¤°ą„" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤®ą„‡ą¤¬ą¤¾ą¤¬ą¤¾ą¤Øą„‡" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤®ą„‹ą¤—ą¤¾ą¤”ą„€ą¤¶ą„‚" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤®ą„‹ą¤Øą¤°ą„‹ą¤µą¤æą¤Æą¤¾" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤Øą„ˆą¤°ą„‹ą¤¬ą„€" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤Øą¤œą„‡ą¤®ą„‡ą¤Øą¤¾" #: timezones.h:51 msgid "Africa/Niamey" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤Øą„‡ą¤®ą„ˆ" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤Øą¤¾ą¤•ą¤šą¤¾ą¤Ÿ" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤Šą¤—ą„‹ą¤¦ą„‚ą¤—ą„‹" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤Ŗą„‹ą¤°ą„ą¤Ÿą„‹_ą¤Øą„‹ą¤µą„‹" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤øą¤¾ą¤µą„‹ ą¤Ÿą„‹ą¤® " #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤¤ą¤æą¤‚ą¤¬ą¤•ą¤Ÿą„‚" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤¤ą„ą¤°ą¤æą¤Ŗą„‹ą¤²ą„€" #: timezones.h:58 msgid "Africa/Tunis" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤Ÿą„ą¤Æą„‚ą¤Øą¤æą¤ø" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤µą¤æą¤‚ą¤”ą¤¹ą„‰ą¤•" #: timezones.h:60 msgid "America/Adak" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/अदक" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "ą¤ą¤²ą„ą¤Æą„ą¤¶ą¤æą¤Æą¤Ø ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:63 msgid "America/Anchorage" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤ą¤‚ą¤•ą¤°ą„‡ą¤œ" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "ą¤…ą¤²ą¤¾ą¤øą„ą¤•ą¤¾ समय" #: timezones.h:66 msgid "America/Anguilla" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤‚ą¤—ą„ą¤Æą„‚ą¤²ą¤¾" #: timezones.h:67 msgid "America/Antigua" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤ą¤‚ą¤Ÿą„€ą¤—ą„ą¤†" #: timezones.h:68 msgid "America/Araguaina" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą¤¾ą¤—ą„ą¤µą„‡ą¤Øą¤¾" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "ą¤Ÿą„‹ą¤•ą¤¾ą¤Øą„ą¤Ÿą¤æą¤Øą„ą¤ø" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤¬ą„ą¤Æą„ą¤Øą¤øą¤†ą¤Æą¤°ą„ą¤ø" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "ą¤¬ą„ą¤Æą„‚ą¤Øą¤ø ą¤†ą¤Æą¤°ą„ą¤ø (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤•ą„ˆą¤Ÿą¤¾ą¤®ą¤¾ą¤°ą¤•ą¤¾" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "ą¤•ą¤¾ą¤Ÿą¤¾ą¤®ą¤°ą„ą¤•ą¤¾ (CT), ą¤šą„ą¤¬ą„ą¤Ÿ (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤•ą„‹ą¤®ą„‹ą¤”ą¤°ą¤æą¤µą¤¾ą¤”ą¤¾ą¤µą¤æą¤Æą¤¾" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤•ą¤¾ą¤°ą¤”ą„‹ą¤¬ą¤¾" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "अधिकतर ą¤øą„ą¤„ą¤¾ą¤Ø (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤œą„ą¤œą„ˆ" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "ą¤œą„ą¤œą„ą¤ (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤²ą¤¾ą¤°ą¤æą¤Æą„‹ą¤œą¤¾" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "ला ą¤°ą¤æą¤Æą„‹ą¤œą¤¾ (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤®ą„‡ą¤Øą¤”ą„‹ą¤œą¤¾" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "ą¤®ą„‡ą¤‚ą¤”ą„‹ą¤œą¤¾ (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤°ą¤æą¤Æą„‹ ą¤—ą„ˆą¤²ą¤æą¤Æą¤ø" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "सांता ą¤•ą„ą¤°ą„‚ą¤œ (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤øą¤¾ą¤²ą„ą¤Ÿą¤¾" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/सान ą¤œą„ą¤†ą¤Ø" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "सान ą¤œą„ą¤†ą¤Ø (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/सान_ą¤²ą„ą¤‡ą¤ø" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "सान ą¤²ą„ą¤‡ą¤ø (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤Ÿą¤•ą¤®ą„ˆą¤Ø" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "ą¤Ÿą„ą¤•ą„ą¤®ą„ˆą¤Ø (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤‰ą¤¶ą„ą¤†ą¤¹ą¤æą¤Æą¤¾" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "ą¤Ÿą¤æą¤Æą„‡ą¤°ą¤¾ ą¤”ą„‡ą¤² ą¤«ą„ą¤Æą„‚ą¤—ą„‹ (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤¬ą¤¾" #: timezones.h:109 msgid "America/Asuncion" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/असनशियन" #: timezones.h:110 msgid "America/Atikokan" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤ą¤Ÿą¤æą¤•ą„‹ą¤•ą¤¾ą¤Ø" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ मानक समय - ą¤ą¤Ÿą¤æą¤•ą„‹ą¤•ą¤Ø, ą¤“ą¤‚ą¤Ÿą¤¾ą¤°ą¤æą¤Æą„‹ और ą¤øą¤¾ą¤‰ą¤„ą¤‚ą¤Ŗą¤Ÿą¤Ø ą¤†ą¤ˆ, ą¤Øą„‚ą¤Øą¤¾ą¤µą„ą¤Ÿ" #: timezones.h:113 msgid "America/Atka" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤Ÿą¤•ą¤¾" #: timezones.h:114 msgid "America/Bahia" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤µą¤æą¤øą„ą¤¤ą¤¾" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "बाहिया" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/वाहिया_ą¤¬ą„ˆą¤‚ą¤”ą¤°ą„‡ą¤ø" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "ą¤®ą„ˆą¤•ą„ą¤øą¤æą¤•ą„‹ ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ समय - बाहिया ą¤”ą„‡ ą¤¬ą„ˆą¤‚ą¤”ą„‡ą¤°ą¤ø" #: timezones.h:120 msgid "America/Barbados" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą¤¾ą¤°ą¤¬ą¤¾ą¤”ą„‹ą¤ø" #: timezones.h:121 msgid "America/Belem" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„‡ą¤²ą„‡ą¤®" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "अमापा, ई पारा" #: timezones.h:124 msgid "America/Belize" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„‡ą¤²ą¤æą¤œą¤¼" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„ą¤²ą¤¾ą¤‚ą¤•-ą¤øą„ˆą¤¬ą„ą¤²ą„‰ą¤Ø" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤• मानक समय - ą¤•ą„ą¤Æą„‚ą¤¬ą„‡ą¤• - निचला ą¤‰ą¤¤ą„ą¤¤ą¤°ą„€ किनारा" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„‹ą¤†_ą¤µą¤æą¤øą„ą¤¤ą¤¾" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "ą¤°ą„‹ą¤°ą¤¾ą¤‡ą¤®ą¤¾" #: timezones.h:131 msgid "America/Bogota" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„‹ą¤—ą„‹ą¤Ÿą¤¾" #: timezones.h:132 msgid "America/Boise" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„‹ą¤‡ą¤ø" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "ą¤Ŗą¤°ą„ą¤µą¤¤ą„€ą¤Æ समय - ą¤¦ą¤•ą„ą¤·ą¤æą¤£ą„€ ą¤‡ą¤¦ą¤¾ą¤¹ą„‹ और ą¤Ŗą„‚ą¤°ą„ą¤µą„€ ą¤“ą¤°ą„‡ą¤—ą¤¾ą¤‚ą¤µ" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„ą¤Æą„ą¤Øą¤øą¤†ą¤Æą¤°ą„ą¤ø" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ˆą¤®ą„ą¤¬ą¤°ą„€ą¤œą¤¼_ą¤¬ą„‡" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "ą¤Ŗą¤°ą„ą¤µą¤¤ą„€ą¤Æ समय - ą¤Ŗą¤¶ą„ą¤šą¤æą¤®ą„€ ą¤Øą„‚ą¤Øą¤¾ą¤µą¤Ÿ" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą¤‚ą¤Ŗą„‹ ą¤—ą„ą¤°ą„ˆą¤‚ą¤”" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "ą¤®ą¤¾ą¤Ÿą„‹ ą¤—ą„ą¤°ą„‹ą¤øą„‹ ą¤”ą„‹ ą¤øą„ą¤²" #: timezones.h:142 msgid "America/Cancun" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą¤¾ą¤Øą¤•ą„ą¤Ø" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ समय - ą¤•ą„ą¤µą¤æą¤‚ą¤Ÿą¤¾ą¤Øą¤¾ ą¤°ą„‚" #: timezones.h:145 msgid "America/Caracas" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ˆą¤°ą¤¾ą¤•ą¤ø" #: timezones.h:146 msgid "America/Catamarca" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ˆą¤Ÿą¤¾ą¤®ą¤¾ą¤°ą¤•ą¤¾" #: timezones.h:147 msgid "America/Cayenne" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ˆą¤Æą„‡ą¤Ø" #: timezones.h:148 msgid "America/Cayman" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ˆą¤®ą„‡ą¤Ø" #: timezones.h:149 msgid "America/Chicago" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¶ą¤æą¤•ą¤¾ą¤—ą„‹" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ समय" #: timezones.h:152 msgid "America/Chihuahua" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤šą¤æą¤¹ą„‚ą¤†ą¤¹ą„ą¤†" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "ą¤®ą„ˆą¤•ą„ą¤øą¤æą¤•ą¤Ø ą¤Ŗą¤°ą„ą¤µą¤¤ą„€ą¤Æ समय - ą¤Æą„‚.ą¤ą¤ø. ą¤øą„€ą¤®ą¤¾ ą¤øą„‡ ą¤¦ą„‚ą¤° ą¤šą¤æą¤¹ą„ą¤†ą¤¹ą„ą¤†" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„‹ą¤°ą¤² ą¤¹ą¤¾ą¤°ą„ą¤¬ą¤°" #: timezones.h:156 msgid "America/Cordoba" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą¤¾ą¤°ą¤”ą„‹ą¤¬ą¤¾" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„‹ą¤øą„ą¤Ÿą¤¾_रिका" #: timezones.h:158 msgid "America/Cuiaba" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ą¤Æą„‚ą¤¬ą¤¾" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "ą¤®ą¤¾ą¤¤ą„‹ ą¤—ą„ą¤°ą„‹ą¤øą„‹" #: timezones.h:161 msgid "America/Curacao" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ą¤°ą¤¾ą¤•ą¤¾ą¤“" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤”ą„‡ą¤Øą¤®ą¤¾ą¤°ą„ą¤•ą¤¶ą¤¾ą¤Ø" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ तट, ą¤øą„ą¤•ą„‹ą¤°ą„ą¤øą¤¬ą„€ą¤øą¤‚ą¤” ą¤•ą„‡ ą¤‰ą¤¤ą„ą¤¤ą¤°" #: timezones.h:165 msgid "America/Dawson" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤”ą„‰ą¤¶ą¤Ø" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤ समय - ą¤‰ą¤¤ą„ą¤¤ą¤°ą„€ ą¤Æą„‚ą¤•ą„‹ą¤Ø" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤”ą„‰ą¤¶ą¤Ø_ą¤•ą„ą¤°ą„€ą¤•" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "ą¤Ŗą¤°ą„ą¤µą¤¤ą„€ą¤Æ मानक समय - ą¤”ą„‰ą¤‰ą¤øą¤Ø ą¤•ą„ą¤°ą„€ą¤• और ą¤«ą„‹ą¤°ą„ą¤Ÿ ą¤øą„ˆą¤‚ą¤Ÿ ą¤œą„‰ą¤Ø, ą¤¬ą„ą¤°ą¤æą¤Ÿą¤æą¤¶ ą¤•ą„‹ą¤²ą¤‚ą¤¬ą¤æą¤Æą¤¾" #: timezones.h:171 msgid "America/Denver" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤”ą„‡ą¤Øą¤µą¤°" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "ą¤Ŗą¤°ą„ą¤µą¤¤ą„€ą¤Æ समय" #: timezones.h:174 msgid "America/Detroit" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤”ą„‡ą¤Ÿą„ą¤°ą„‹ą¤‡ą¤Ÿ" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ समय - मिशिगन - अधिकतर ą¤øą„ą¤„ą¤¾ą¤Ø" #: timezones.h:177 msgid "America/Dominica" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤”ą„‹ą¤®ą¤æą¤Øą¤æą¤•ą¤¾" #: timezones.h:178 msgid "America/Edmonton" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤ą¤”ą„ą¤®ą¤Øą¤Ÿą¤Ø" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "ą¤Ŗą¤°ą„ą¤µą¤¤ą„€ą¤Æ समय - ą¤…ą¤²ą¤¬ą¤°ą„ą¤Ÿą¤¾, ą¤Ŗą„‚ą¤°ą„ą¤µą„€ ą¤¬ą„ą¤°ą¤æą¤Ÿą¤æą¤¶ ą¤•ą„‹ą¤²ą¤‚ą¤¬ą¤æą¤Æą¤¾ व ą¤Ŗą¤¶ą„ą¤šą¤æą¤®ą„€ ą¤øą¤¾ą¤øą„ą¤•ą¤šą¤¾ą¤µą¤¾ą¤Ø" #: timezones.h:181 msgid "America/Eirunepe" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Æą„ą¤°ą„€ą¤Øą¤ą¤Ŗ" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "ą¤Ŗą¤¶ą„ą¤šą¤æą¤®ą„€ ą¤†ą¤®ą„‡ą¤œą¤Ø" #: timezones.h:184 msgid "America/El_Salvador" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤ą¤²_ą¤øą„‡ą¤²ą„ą¤µą¤¾ą¤”ą„‹ą¤°" #: timezones.h:185 msgid "America/Ensenada" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤ą¤Øą¤øą„‡ą¤Øą„‡ą¤”ą¤¾" #: timezones.h:186 msgid "America/Fortaleza" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤«ą„‹ą¤°ą„ą¤Ÿą¤²ą„‡ą¤œą¤¾" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "NE ą¤¬ą„ą¤°ą¤¾ą¤œą„€ą¤² (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤«ą„‹ą¤°ą„ą¤Ÿ_ą¤µą„‡ą¤Ø" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„ą¤²ą„‡ą¤ø_ą¤¬ą„‡" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤• समय - ą¤Øą„‹ą¤µą¤¾ ą¤øą„ą¤•ą„‹ą¤¶ą¤æą¤Æ - ą¤øą„ą¤„ą¤¾ą¤Ø ą¤œą„‹ DST 1966-1971 ą¤•ą„‹ ą¤Øą¤¹ą„€ą¤‚ ą¤¦ą„‡ą¤–ą¤¤ą¤¾ ą¤¹ą„ˆ" #: timezones.h:193 msgid "America/Godthab" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/गाऔऄब" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "अधिकतर ą¤øą„ą¤„ą¤¾ą¤Ø" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„‚ą¤ø_ą¤¬ą„‡" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤• समय - ą¤²ą„ˆą¤¬ą„ą¤°ą„‹ą¤”ą„‹ą¤° - अधिकतर ą¤øą„ą¤„ą¤¾ą¤Ø" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„ą¤°ą„ˆą¤‚ą¤”_ą¤Ÿą¤°ą„ą¤•" #: timezones.h:200 msgid "America/Grenada" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„ą¤°ą„ˆą¤‚ą¤Øą„‡ą¤”ą¤¾" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„ą¤µą¤¾ą¤”ą„‡ą¤²ą„‹ą¤Ŗą„‡" #: timezones.h:202 msgid "America/Guatemala" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„ą¤µą¤¾ą¤Ÿą„‡ą¤®ą¤¾ą¤²ą¤¾" #: timezones.h:203 msgid "America/Guayaquil" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„ą¤†ą¤Æą¤¾ą¤•ą¤æą¤²" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "ą¤®ą„‡ą¤Øą¤²ą„ˆą¤‚ą¤”" #: timezones.h:206 msgid "America/Guyana" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/गयाना" #: timezones.h:207 msgid "America/Halifax" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¹ą„ˆą¤²ą„€ą¤«ą„‡ą¤•ą„ą¤ø" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤• समय - ą¤Øą„‹ą¤µą¤¾ ą¤øą„ą¤•ą„‹ą¤¶ą¤æą¤Æą¤¾ (अधिकतर ą¤œą¤—ą¤¹), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/हवाना" #: timezones.h:211 msgid "America/Hermosillo" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¹ą¤°ą¤®ą„‹ą¤øą¤æą¤²ą„‹" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "ą¤Ŗą¤°ą„ą¤µą¤¤ą„€ą¤Æ मानक समय - ą¤øą„‹ą¤Øą„‹ą¤°ą¤¾" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤‡ą¤‚ą¤”ą¤æą¤Æą¤¾ą¤Øą¤¾ą¤Ŗą„‹ą¤²ą¤æą¤ø" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ समय - इंऔियाना - अधिकतर ą¤øą„ą¤„ą¤¾ą¤Ø" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤Øą¤¾ą¤•ą„ą¤ø" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ समय - इंऔियाना - ą¤øą„ą¤Ÿą¤¾ą¤°ą„ą¤• ą¤•ą¤¾ą¤‰ą¤‚ą¤Ÿą„€" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤®ą„‡ą¤°ą„‡ą¤‚ą¤—ą„‹" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ समय - इंऔियाना - ą¤•ą„ą¤°ą„‰ą¤‰ą¤«ą„‹ą¤°ą„ą¤” ą¤•ą¤¾ą¤‰ą¤‚ą¤Ÿą„€" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤Ŗą„€ą¤Ÿą¤°ą„ą¤øą¤µą¤°ą„ą¤—" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ समय - इंऔियाना - पाइक ą¤•ą¤¾ą¤‰ą¤‚ą¤Ÿą„€" #: timezones.h:226 msgid "America/Indianapolis" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤‡ą¤‚ą¤”ą¤æą¤Æą¤¾ą¤Øą¤¾ą¤Ŗą„‹ą¤²ą¤æą¤ø" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤Ÿą„‡ą¤²_ą¤øą¤æą¤Ÿą„€" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ समय - इंऔियाना - ą¤Ŗą„‡ą¤°ą„€ ą¤•ą¤¾ą¤‰ą¤‚ą¤Ÿą„€" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤µą„‡ą¤µą„‡" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ समय - इंऔियाना - ą¤øą„ą¤µą¤æą¤Ÿą¤œą¤°ą¤²ą„ˆą¤‚ą¤” ą¤•ą¤¾ą¤‰ą¤‚ą¤Ÿą„€" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤µą¤æą¤‚ą¤øą¤æą¤Øą„‡ą¤ø" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ समय - इंऔियाना - ą¤”ą„ˆą¤µą¤æą¤ø, ą¤”ą„ą¤Æą„‚ą¤µą„‹ą¤‡ą¤ø, ą¤Øą„‹ą¤•ą„ą¤ø, व ą¤®ą¤¾ą¤°ą„ą¤Ÿą¤æą¤Ø ą¤•ą¤¾ą¤‰ą¤‚ą¤Ÿą„€" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤µą¤æą¤Øą¤¾ą¤®ą„‡ą¤•" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ समय - इंऔियाना - ą¤Ŗą„ą¤²ą¤¾ą¤øą„ą¤•ą„€ ą¤•ą¤¾ą¤‰ą¤‚ą¤Ÿą„€" #: timezones.h:239 msgid "America/Inuvik" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤‡ą¤Øą„ą¤µą¤æą¤•" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "ą¤Ŗą¤°ą„ą¤µą¤¤ą„€ą¤Æ समय - ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤‰ą¤¤ą„ą¤¤ą¤°ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤°" #: timezones.h:242 msgid "America/Iqaluit" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤‡ą¤•ą¤¾ą¤²ą„‚ą¤‡ą¤¤" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ समय - ą¤Ŗą„‚ą¤°ą„ą¤µą„€ ą¤Øą„‚ą¤Øą¤¾ą¤µą¤Ÿ - अधिकतर ą¤øą„ą¤„ą¤¾ą¤Ø" #: timezones.h:245 msgid "America/Jamaica" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤œą¤®ą„ˆą¤•ą¤¾" #: timezones.h:246 msgid "America/Jujuy" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤œą„ą¤œą„ˆ" #: timezones.h:247 msgid "America/Juneau" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤œą„‚ą¤Øą„‹" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "ą¤…ą¤²ą¤¾ą¤øą„ą¤•ą¤¾ समय - ą¤…ą¤²ą¤¾ą¤øą„ą¤•ą¤¾ ą¤Ŗą„ˆą¤Øą¤¹ą„ˆą¤‚ą¤”ą¤²" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ˆą¤‚ą¤Ÿą¤•ą„€/ą¤²ą„ą¤ˆą¤µą¤æą¤²" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ समय - ą¤•ą„‡ą¤‚ą¤Ÿą„ą¤•ą„€ - ą¤²ą„ą¤ˆą¤µą¤æą¤²ą„‡ ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤°" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ˆą¤‚ą¤Ÿą¤•ą„€/ą¤®ą„‹ą¤Øą¤Ÿą¤æą¤•ą¤²ą„‹" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ समय - ą¤•ą„‡ą¤‚ą¤Ÿą„ą¤•ą„€ - ą¤µą¤¾ą¤ą¤Øą„‡ ą¤•ą¤¾ą¤‰ą¤‚ą¤Ÿą„€" #: timezones.h:256 msgid "America/Knox_IN" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Øą„‹ą¤•ą„ą¤øą¤‡ą¤Ø" #: timezones.h:257 msgid "America/La_Paz" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ला_पाज" #: timezones.h:258 msgid "America/Lima" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/लिमा" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤²ą„‰ą¤ø_ą¤ą¤‚ą¤œą¤æą¤²ą„ą¤ø" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤ समय" #: timezones.h:262 msgid "America/Louisville" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤²ą„ą¤ˆą¤µą¤æą¤²" #: timezones.h:263 msgid "America/Maceio" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„ˆą¤øą¤æą¤Æą„‹" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "ą¤ą¤²ą¤¾ą¤—ą„‹ą¤†ą¤ø, ą¤øą¤°ą„ą¤œą„€ą¤Ŗą„‡" #: timezones.h:266 msgid "America/Managua" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‡ą¤Øą„‡ą¤—ą„ą¤†" #: timezones.h:267 msgid "America/Manaus" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„ˆą¤Øą¤¾ą¤ø" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ ą¤†ą¤®ą„‡ą¤œą¤Ø" #: timezones.h:270 msgid "America/Marigot" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„ˆą¤°ą¤æą¤—ą„‹ą¤Ÿ" #: timezones.h:271 msgid "America/Martinique" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‰ą¤°ą¤Ÿą¤æą¤Øą¤æą¤•" #: timezones.h:272 msgid "America/Matamoros" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‡ą¤Ÿą¤¾ą¤®ą„‹ą¤°ą„‹ą¤ø" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "ą¤Æą„‚.ą¤ą¤ø. ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ समय - ą¤Æą„‚.ą¤ą¤ø. ą¤øą„€ą¤®ą¤¾ ą¤•ą„‡ ą¤Øą¤œą¤¦ą„€ą¤• ą¤•ą„‹ą¤†ą¤¹ą„ą¤‡ą¤²ą¤¾, ą¤”ą„ą¤Æą„‚ą¤°ą„ˆą¤‚ą¤—ą„‹, ą¤Øą„ą¤Æą„‚ą¤µą„‹ ą¤²ą¤æą¤Æą„‹ą¤Ø, तमालिपास" #: timezones.h:275 msgid "America/Mazatlan" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‡ą¤œą„‡ą¤Ÿą¤²ą„‡ą¤Ø" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "ą¤Ŗą¤°ą„ą¤µą¤¤ą„€ą¤Æ समय - ą¤¦ą¤•ą„ą¤·ą¤æą¤£ą„€ बाजा, ą¤Øą„‡ą¤Æą¤¾ą¤°ą¤æą¤Ÿ, ą¤øą¤æą¤Øą¤¾ą¤²ą„‹ą¤†" #: timezones.h:278 msgid "America/Mendoza" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‡ą¤Øą¤”ą„‹ą¤œą¤¾" #: timezones.h:279 msgid "America/Menominee" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‡ą¤Øą„‹ą¤®ą¤æą¤Øą„€" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ समय - मिशिगन - ą¤”ą¤æą¤•ą¤æą¤Øą„ą¤¶ą¤Ø, ą¤—ą„‹ą¤œą„‡ą¤¬ą¤æą¤•, आइरन व ą¤®ą„‡ą¤Øą„‹ą¤®ą„€ą¤Øą„€ ą¤•ą¤¾ą¤‰ą¤‚ą¤Ÿą„€" #: timezones.h:282 msgid "America/Merida" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‡ą¤°ą„€ą¤”ą¤¾" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ समय - ą¤•ą„ˆą¤‚ą¤Ŗą„‡ą¤šą„€, ą¤Æą„‚ą¤•ą¤¾ą¤Ÿą¤Ø" #: timezones.h:285 msgid "America/Mexico_City" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„ˆą¤•ą„ą¤øą¤æą¤•ą„‹_ą¤øą¤æą¤Ÿą„€" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ समय - अधिकतर ą¤øą„ą¤„ą¤¾ą¤Ø" #: timezones.h:288 msgid "America/Miquelon" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą¤æą¤•ą„ą¤²ą„‰ą¤Ø" #: timezones.h:289 msgid "America/Moncton" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‹ą¤‚ą¤•ą¤Ÿą¤Ø" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤• समय - ą¤Øą„ą¤Æą„‚ ą¤¬ą„ą¤°ą¤‚ą¤øą¤¬ą¤æą¤•" #: timezones.h:292 msgid "America/Monterrey" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą¤¾ą¤‚ą¤Ÿą„‡ą¤°ą„€" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "ą¤®ą„ˆą¤•ą„ą¤øą¤æą¤•ą¤Ø ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ समय - ą¤Æą„‚.ą¤ą¤ø. ą¤øą„€ą¤®ą¤¾ ą¤øą„‡ ą¤¦ą„‚ą¤° ą¤•ą„‹ą¤†ą¤¹ą„ą¤‡ą¤²ą¤¾, ą¤”ą„ą¤Æą„‚ą¤°ą„ˆą¤‚ą¤—ą„‹, ą¤Øą„ą¤Æą„‚ą¤µą„‹ ą¤²ą¤æą¤Æą„‹ą¤Ø, तमालिपास" #: timezones.h:295 msgid "America/Montevideo" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą¤¾ą¤‚ą¤Ÿą„‡ą¤µą¤æą¤”ą„€ą¤Æą„‹" #: timezones.h:296 msgid "America/Montreal" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą¤¾ą¤‚ą¤Ÿą„ą¤°ą¤æą¤Æą¤²" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ समय - ą¤•ą„ą¤Æą„‚ą¤¬ą„‡ą¤• - अधिकतर ą¤øą„ą¤„ą¤¾ą¤Ø" #: timezones.h:299 msgid "America/Montserrat" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą¤¾ą¤‚ą¤Ÿą„‡ą¤øą„‡ą¤°ą¤¾ą¤Ÿ" #: timezones.h:300 msgid "America/Nassau" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Øą¤øą„‹" #: timezones.h:301 msgid "America/New_York" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Øą„ą¤Æą„‚_ą¤Æą¤¾ą¤°ą„ą¤•" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ समय" #: timezones.h:304 msgid "America/Nipigon" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Øą¤æą¤Ŗą„€ą¤—ą¤Ø" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ समय - ą¤“ą¤‚ą¤Ÿą¤¾ą¤°ą¤æą¤Æą„‹ & ą¤•ą„ą¤Æą„‚ą¤¬ą„‡ą¤• - ą¤øą„ą¤„ą¤¾ą¤Ø ą¤œą„‹ ą¤‡ą¤øą„‡ ą¤Øą¤¹ą„€ą¤‚ ą¤¦ą„‡ą¤–ą¤¤ą¤¾ ą¤¹ą„ˆ DST 1967-1973" #: timezones.h:307 msgid "America/Nome" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Øą„‹ą¤®" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "ą¤…ą¤²ą¤¾ą¤øą„ą¤•ą¤¾ समय - ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤…ą¤²ą¤¾ą¤øą„ą¤•ą¤¾" #: timezones.h:310 msgid "America/Noronha" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Øą„‹ą¤°ą„‹ą¤‚ą¤¹ą¤¾" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤• ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤‰ą¤¤ą„ą¤¤ą¤°_ą¤”ą¤•ą„‹ą¤Ÿą¤¾/ą¤®ą¤§ą„ą¤Æ" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ समय - ą¤‰ą¤¤ą„ą¤¤ą¤°ą„€ ą¤”ą¤•ą„‹ą¤Ÿą¤¾ - ओलिवर ą¤•ą¤¾ą¤‰ą¤‚ą¤Ÿą„€" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤‰ą¤¤ą„ą¤¤ą¤°_ą¤”ą¤•ą„‹ą¤Ÿą¤¾/नया_ą¤øą¤²ą„‡ą¤®" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ समय - ą¤‰ą¤¤ą„ą¤¤ą¤°ą„€ ą¤”ą¤•ą„‹ą¤Ÿą¤¾ - ą¤®ą¤¾ą¤°ą„ą¤Ÿą¤Ø ą¤•ą¤¾ą¤‰ą¤‚ą¤Ÿą„€ (सिवाय मंदान ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤°)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤“ą¤œą„€ą¤Øą¤¾ą¤—ą¤¾" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "ą¤Æą„‚.ą¤ą¤ø. ą¤Ŗą¤°ą„ą¤µą¤¤ą„€ą¤Æ समय - ą¤Æą„‚.ą¤ą¤ø. ą¤øą„€ą¤®ą¤¾ ą¤•ą„‡ ą¤Øą¤æą¤•ą¤Ÿ ą¤šą¤æą¤¹ą„ą¤†ą¤¹ą„ą¤†" #: timezones.h:322 msgid "America/Panama" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/पनामा" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ŗą„ˆą¤‚ą¤—ą¤Øą„€ą¤°ą¤Ÿą¤‚ą¤—" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ समय - ą¤Ŗą„ˆą¤Øą¤—ą„ą¤Øą¤æą¤°ą¤¤ą„ą¤‚ą¤—, ą¤Øą„‚ą¤Øą¤¾ą¤µą¤Ÿ" #: timezones.h:326 msgid "America/Paramaribo" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ŗą¤¾ą¤°ą¤¾ą¤®ą¤¾ą¤°ą„€ą¤¬ą„‹" #: timezones.h:327 msgid "America/Phoenix" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤«ą¤æą¤Øą¤æą¤•ą„ą¤ø" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "ą¤Ŗą¤°ą„ą¤µą¤¤ą„€ą¤Æ मानक समय - ą¤…ą¤°ą¤æą¤œą„‹ą¤Øą¤¾" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ŗą„‹ą¤°ą„ą¤Ÿ_ओ_ą¤Ŗą„ą¤°ą¤æą¤‚ą¤ø" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ŗą„‹ą¤°ą„ą¤Ÿ_ą¤ą¤•ą¤°" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ŗą„‹ą¤°ą„ą¤Ÿ_आफ_ą¤øą„ą¤Ŗą„‡ą¤Ø" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ŗą„‹ą¤°ą„ą¤Ÿą„‹_ą¤µą„‡ą¤²ą„‹" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "ą¤°ą„‹ą¤‚ą¤”ą„‹ą¤Øą¤æą¤Æą¤¾" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ŗą„ą¤Æą„‚ą¤°ą¤æą¤Ÿą„‹_ą¤°ą¤æą¤•ą„‹" #: timezones.h:337 msgid "America/Rainy_River" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤°ą„ˆą¤Øą„€_रिवर" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ समय - ą¤°ą„‡ą¤Øą„€ रिवर व ą¤«ą„‹ą¤°ą„ą¤Ÿ ą¤«ą„ą¤°ą¤¾ą¤‚ą¤ø, ą¤“ą¤‚ą¤Ÿą¤¾ą¤°ą¤æą¤Æą„‹" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤°ą„‡ą¤Øą¤•ą„€ą¤Ø_ą¤‡ą¤Øą¤²ą„‡ą¤Ÿ" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ समय - ą¤®ą¤§ą„ą¤Æ ą¤Øą„‚ą¤Øą¤¾ą¤µą¤Ÿ" #: timezones.h:343 msgid "America/Recife" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤°ą¤æą¤øą„€ą¤«" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "ą¤Ŗą¤°ą„ą¤Øą¤¾ą¤®ą¤¬ą„ą¤Æą„‚ą¤•ą„‹" #: timezones.h:346 msgid "America/Regina" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤°ą„‡ą¤œą„€ą¤Øą¤¾" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ मानक समय - ą¤øą¤øą¤¾ą¤•ą„ą¤šą¤¾ą¤µą¤¾ą¤Ø - अधिकतर ą¤øą„ą¤„ą¤¾ą¤Ø" #: timezones.h:349 msgid "America/Resolute" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤°ą¤æą¤œą„‰ą¤²ą„ą¤Æą„‚ą¤Ÿ" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ मानक समय - ą¤°ą¤æą¤œą„‰ą¤²ą„ą¤Æą„‚ą¤Ÿ, ą¤Øą„‚ą¤Øą¤¾ą¤µą¤Ÿ" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤°ą¤¾ą¤Æą„‡_ą¤¬ą„ą¤°ą¤¾ą¤Øą¤•ą„‹" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "ą¤ą¤•ą¤°" #: timezones.h:355 msgid "America/Rosario" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤°ą„‹ą¤øą¤¾ą¤°ą¤æą¤Æą„‹" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/संता_ą¤‡ą¤øą¤¾ą¤¬ą„‡ą¤²" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "ą¤®ą„ˆą¤•ą„ą¤øą¤æą¤•ą¤Ø ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤ समय - ą¤Æą„‚.ą¤ą¤ø. ą¤øą„€ą¤®ą¤¾ ą¤øą„‡ ą¤¦ą„‚ą¤° Baja ą¤•ą„ˆą¤²ą¤æą¤«ą„‹ą¤°ą„ą¤Øą¤æą¤Æą¤¾" #: timezones.h:359 msgid "America/Santarem" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą¤‚ą¤¤ą¤¾ą¤°ą„‡ą¤®" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "प. ą¤Ŗą„ˆą¤°ą¤¾" #: timezones.h:362 msgid "America/Santiago" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿą„€ą¤Æą¤—ą„‹" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿą„‹_ą¤”ą„‹ą¤®ą¤æą¤‚ą¤—ą„‹" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą¤¾ą¤µą„‹_ą¤Ŗą„‹ą¤²ą„‹" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "द. व द.प. ą¤¬ą„ą¤°ą¤¾ą¤œą„€ą¤² (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„ą¤•ą„‹ą¤°ą„ą¤øą¤¬ą¤¾ą¤Æą¤øą¤‚ą¤”" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "ą¤øą„ą¤•ą„‹ą¤°ą¤°ą„ą¤øą¤¬ą„‡ą¤Æą¤‚ą¤” / Ittoqqortoormiit" #: timezones.h:372 msgid "America/Shiprock" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¶ą¤æą¤Ŗą¤°ą„‰ą¤•" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "ą¤Ŗą¤°ą„ą¤µą¤¤ą„€ą¤Æ समय - ą¤Øą¤µą¤¾ą¤œą„‹" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿ_ą¤¬ą¤¾ą¤°ą„ą¤„ą„‡ą¤²ą„‡ą¤®ą„‡" #: timezones.h:376 msgid "America/St_Johns" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿ_जाँस" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "ą¤Øą„ą¤Æą„‚ą¤«ą¤¾ą¤‰ą¤‚ą¤”ą¤²ą„ˆą¤‚ą¤” समय, SE ą¤²ą„ˆą¤¬ą„ą¤°ą„‹ą¤”ą„‹ą¤°" #: timezones.h:379 msgid "America/St_Kitts" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿ_ą¤•ą¤æą¤Ÿą„ą¤ø" #: timezones.h:380 msgid "America/St_Lucia" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿ_ą¤²ą„ą¤øą¤æą¤Æą¤¾" #: timezones.h:381 msgid "America/St_Thomas" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿ_ऄामस" #: timezones.h:382 msgid "America/St_Vincent" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿ_ą¤µą¤æą¤‚ą¤øą„‡ą¤‚ą¤Ÿ" #: timezones.h:383 msgid "America/Swift_Current" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„ą¤µą¤æą¤«ą„ą¤Ÿ_ą¤•ą¤°ą¤‚ą¤Ÿ" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ मानक समय - ą¤øą¤øą¤¾ą¤•ą„ą¤šą¤¾ą¤µą¤¾ą¤Ø - ą¤®ą¤æą¤”ą¤µą„‡ą¤øą„ą¤Ÿ" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¤ą„‡ą¤—ą„ą¤øą„€ą¤—ą¤¾ą¤²ą¤Ŗą¤¾" #: timezones.h:387 msgid "America/Thule" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤„ą„ą¤²ą„‡" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "ą¤„ą„ą¤²ą„‡ / Pituffik" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ऄंऔर_ą¤¬ą„‡" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ समय - ऄंऔर ą¤¬ą„‡, ą¤“ą¤‚ą¤Ÿą¤¾ą¤°ą¤æą¤Æą„‹" #: timezones.h:393 msgid "America/Tijuana" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¤ą„€ą¤œą„ą¤Øą¤¾" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "ą¤Æą„‚.ą¤ą¤ø. ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤ समय - ą¤Æą„‚.ą¤ą¤ø. ą¤øą„€ą¤®ą¤¾ ą¤•ą„‡ ą¤Øą¤æą¤•ą¤Ÿ बाजा ą¤•ą„ˆą¤²ą¤æą¤«ą„‹ą¤°ą„ą¤Øą¤æą¤Æą¤¾" #: timezones.h:396 msgid "America/Toronto" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ÿą„‹ą¤°ą„‹ą¤‚ą¤Ÿą„‹" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ समय - ą¤“ą¤‚ą¤Ÿą¤¾ą¤°ą¤æą¤Æą„‹ - अधिकतर ą¤øą„ą¤„ą¤¾ą¤Ø" #: timezones.h:399 msgid "America/Tortola" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ÿą„‹ą¤°ą„ą¤Ÿą„‹ą¤²ą¤¾" #: timezones.h:400 msgid "America/Vancouver" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤µą„‡ą¤‚ą¤•ą„‹ą¤µą„‡ą¤°" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤ समय - ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤¬ą„ą¤°ą¤æą¤Ÿą¤æą¤¶ ą¤•ą„‹ą¤²ą¤‚ą¤¬ą¤æą¤Æą¤¾" #: timezones.h:403 msgid "America/Virgin" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤µą¤°ą„ą¤œą¤æą¤Ø" #: timezones.h:404 msgid "America/Whitehorse" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤µą„ą¤¹ą¤¾ą¤‡ą¤Ÿą¤¹ą„‰ą¤°ą„ą¤ø" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤ समय - ą¤¦ą¤•ą„ą¤·ą¤æą¤£ą„€ ą¤Æą„‚ą¤•ą„‹ą¤Ø" #: timezones.h:407 msgid "America/Winnipeg" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤µą¤æą¤Øą„€ą¤Ŗą„‡ą¤—" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "ą¤•ą„‡ą¤‚ą¤¦ą„ą¤°ą„€ą¤Æ समय - ą¤®ą„ˆą¤Øą¤Ÿą„‹ą¤¬ą¤¾ व ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤“ą¤‚ą¤Ÿą¤¾ą¤°ą¤æą¤Æą„‹" #: timezones.h:410 msgid "America/Yakutat" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Æą¤•ą„ą¤Ÿą„‡ą¤Ÿ" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "ą¤…ą¤²ą¤¾ą¤øą„ą¤•ą¤¾ समय - ą¤…ą¤²ą¤¾ą¤øą„ą¤•ą¤¾ ą¤Ŗą„ˆą¤Øą¤¹ą„ˆą¤‚ą¤”ą¤² ą¤Øą„‡ą¤•" #: timezones.h:413 msgid "America/Yellowknife" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Æą¤²ą„‹ą¤Øą¤¾ą¤‡ą¤«" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "ą¤Ŗą¤°ą„ą¤µą¤¤ą„€ą¤Æ समय - ą¤®ą¤§ą„ą¤Æ ą¤‰ą¤¤ą„ą¤¤ą¤°ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤°" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤•ą¤Ÿą¤æą¤•ą¤¾/ą¤•ą„‡ą¤øą„‡" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "ą¤•ą„ˆą¤øą„‡ ą¤øą„ą¤Ÿą„‡ą¤¶ą¤Ø, ą¤¬ą„‡ą¤²ą„€ ą¤Ŗą„ą¤°ą¤¾ą¤Æą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤•ą¤Ÿą¤æą¤•ą¤¾/ą¤”ą„‡ą¤µą¤æą¤ø" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "ą¤”ą„‡ą¤µą¤æą¤ø ą¤øą„ą¤Ÿą„‡ą¤¶ą¤Ø, ą¤µą„‡ą¤øą„ą¤Ÿą¤«ą„‹ą¤°ą„ą¤” ą¤¹ą¤æą¤²ą„ą¤ø" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤•ą¤Ÿą¤æą¤•ą¤¾/ą¤”ą„‚ą¤®ą¤¾ą¤‚ą¤Ÿą¤”ą¤°ą¤µą¤æą¤²" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "ą¤”ą„ą¤Æą„‚ą¤®ą¤¾-ą¤”ą„€ą¤‰ą¤°ą¤æą¤µą¤æą¤²ą„‡ ą¤øą„ą¤Ÿą„‡ą¤¶ą¤Ø, ą¤Ÿą„‡ą¤°ą„‡ ą¤ą¤”ą„€ą¤²ą„‡" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤•ą¤Ÿą¤æą¤•ą¤¾/ą¤®ą„‡ą¤•ą„ą¤°ą„€" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "ą¤®ą„ˆą¤•ą¤®ą„ą¤°ą„€ ą¤¦ą„ą¤µą„€ą¤Ŗą„€ą¤Æ ą¤øą„ą¤Ÿą„‡ą¤¶ą¤Ø, ą¤®ą„ˆą¤•ą„ą¤°ą„€ ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤•ą¤Ÿą¤æą¤•ą¤¾/ą¤®ą„‰ą¤øą¤Ø" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "ą¤®ą„‰ą¤‰ą¤øą¤Ø ą¤øą„ą¤Ÿą„‡ą¤¶ą¤Ø, ą¤¹ą„‹ą¤²ą„ą¤®ą„‡ ą¤–ą¤¾ą¤”ą¤¼ą„€" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤•ą¤Ÿą¤æą¤•ą¤¾/ą¤®ą„‡ą¤•ą¤®ą„ą¤°ą¤”ą„‹" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "ą¤®ą„ˆą¤•ą¤®ą„ą¤°ą„ą¤”ą„‹ ą¤øą„ą¤Ÿą„‡ą¤¶ą¤Ø, ą¤°ą„‰ą¤ø ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤•ą¤Ÿą¤æą¤•ą¤¾/पामर" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "पामर ą¤øą„ą¤Ÿą„‡ą¤¶ą¤Ø, ą¤ą¤‚ą¤µą¤°ą„ą¤ø ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤•ą¤Ÿą¤æą¤•ą¤¾/ą¤°ą„‹ą¤„ą„‡ą¤°ą¤æą¤Æą¤¾" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "ą¤°ą„‹ą¤„ą„‡ą¤°ą¤¾ ą¤øą„ą¤Ÿą„‡ą¤¶ą¤Ø, ą¤ą¤”ą„€ą¤²ą„‡ą¤” ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤•ą¤Ÿą¤æą¤•ą¤¾/साउऄ_ą¤Ŗą„‹ą¤²" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "ą¤ą¤®ą„ą¤Æą„‚ą¤øą¤”ą„‡ą¤Ø-ą¤øą„ą¤•ą„‰ą¤Ÿ ą¤øą„ą¤Ÿą„‡ą¤¶ą¤Ø, द. ą¤§ą„ą¤°ą„ą¤µ" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤•ą¤Ÿą¤æą¤•ą¤¾/ą¤øą¤Æą„ą¤µą¤¾" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "ą¤øą„‡ą¤“ą¤µą¤¾ ą¤øą„ą¤Ÿą„‡ą¤¶ą¤Ø, ई ą¤“ą¤‚ą¤—ą„ą¤² I" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤•ą¤Ÿą¤æą¤•ą¤¾/ą¤µą„‹ą¤øą„ą¤¤ą„‹ą¤•" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "ą¤µą„‹ą¤øą„ą¤Ÿą„‹ą¤• ą¤øą„ą¤Ÿą„‡ą¤¶ą¤Ø, द. ą¤šą„ą¤®ą„ą¤¬ą¤•ą„€ą¤Æ ą¤§ą„ą¤°ą„ą¤µ" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "ą¤†ą¤°ą„ą¤•ą¤æą¤Ÿą¤•/ą¤²ą¤¾ą¤‚ą¤—ą¤ˆą¤Æą¤°ą¤¬ą¤¾ą¤Æą„‡ą¤Ø" #: timezones.h:450 msgid "Asia/Aden" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/अदन" #: timezones.h:451 msgid "Asia/Almaty" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤…ą¤²ą¤®ą¤Ÿą„€" #: timezones.h:454 msgid "Asia/Amman" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤…ą¤®ą„ą¤®ą¤¾ą¤Ø" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/अनाऔिर" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "ą¤®ą¤¾ą¤øą„ą¤•ą„‹+8 - ą¤¬ą„‡ą¤°ą¤æą¤‚ą¤— सागर" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤ą¤•ą¤¤ą„‹" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "ą¤…ą¤¤ą„ˆą¤°ą¤¾ą¤‰ (Atirau, Gur'yev), Mangghystau (Mankistau)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤…ą¤•ą¤¤ą„‚ą¤¬" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "ą¤ą¤•ą¤Ÿą„‹ą¤¬ą„‡ (ą¤ą¤•ą¤Ÿą„‹ą¤¬ą„‡)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤…ą¤¶ą¤—ą¤¾ą¤¬ą¤Ÿ" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤…ą¤¶ą„ą¤–ą¤¾ą¤¬ą¤¾ą¤¦" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/बगदाद" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¬ą¤¹ą¤°ą„€ą¤Ø" #: timezones.h:468 msgid "Asia/Baku" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¬ą¤¾ą¤•ą„‚" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¬ą„ˆą¤‚ą¤•ą¤¾ą¤•" #: timezones.h:470 msgid "Asia/Beirut" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¬ą„‡ą¤°ą„ą¤Ÿ" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¬ą¤æą¤¶ą¤•ą„‡ą¤•" #: timezones.h:472 msgid "Asia/Brunei" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¬ą„ą¤°ą„ą¤Øą„‡ą¤ˆ" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą„‹ą¤²ą¤•ą¤¾ą¤¤ą¤¾" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤›ą„‹ą¤ˆą¤¬ą¤²ą¤øą¤Ø" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "ą¤¦ą„‹ą¤°ą„ą¤Øą¤”, ą¤øą„ą¤–ą¤¬ą¤¤ą¤¾ą¤°" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤šą¤¾ą¤‚ą¤—ą¤•ą¤æą¤‚ą¤—" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "ą¤®ą¤§ą„ą¤Æ ą¤šą„€ą¤Ø - ą¤øą¤æą¤šą„ą¤†ą¤Ø, ą¤Æą„‚ą¤Øą„ą¤Øą¤¾ą¤Ø, ą¤—ą„ą¤†ą¤‚ą¤—ą¤•ą„ą¤øą„€, ą¤øą¤¾ą¤‚ą¤•ą„ą¤øą„€, ą¤—ą„ą¤‡ą¤œą„‹, आदि." #: timezones.h:480 msgid "Asia/Chungking" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤šą„ą¤‚ą¤—ą¤•ą¤æą¤‚ą¤—" #: timezones.h:481 msgid "Asia/Colombo" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą„‹ą¤²ą„‹ą¤‚ą¤¬ą„‹" #: timezones.h:482 msgid "Asia/Dacca" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤”ą¤•ą„ą¤•ą¤¾" #: timezones.h:483 msgid "Asia/Damascus" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤”ą¤®ą¤øą„ą¤•ą¤ø" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ढाका " #: timezones.h:485 msgid "Asia/Dili" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¦ą¤æą¤²ą„€" #: timezones.h:486 msgid "Asia/Dubai" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¦ą„ą¤¬ą¤ˆ" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¦ą„ą¤øą¤¾ą¤Øą¤¬ą„‡" #: timezones.h:488 msgid "Asia/Gaza" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤—ą¤¾ą¤œą¤¾" #: timezones.h:489 msgid "Asia/Harbin" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¹ą¤°ą¤¬ą„€ą¤Ø " #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Heilongjiang (except Mohe), Jilin" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¹ą„‹ ą¤šą„€ ą¤®ą¤æą¤Øą„ą¤¹" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/हांग_कांग" #: timezones.h:494 msgid "Asia/Hovd" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/हावऔ" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤‡ą¤°ą¤•ą„ą¤Ÿą„ą¤øą„ą¤•" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "ą¤®ą¤¾ą¤øą„ą¤•ą„‹+05 - ą¤¬ą„ˆą¤•ą¤¾ą¤² ą¤ą„€ą¤²" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤‡ą¤øą„ą¤¤ą¤¾ą¤‚ą¤¬ą„ą¤²" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤œą¤•ą¤¾ą¤°ą„ą¤¤ą¤¾" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "जावा व ą¤øą„ą¤®ą¤¾ą¤¤ą„ą¤°ą¤¾" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤œą¤Æą¤Ŗą„ą¤°" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "इरियन जाया व ą¤®ą„‹ą¤²ą¤øą„ą¤•" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤œą„‡ą¤°ą„ą¤¶ą¤²ą¤®" #: timezones.h:508 msgid "Asia/Kabul" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą¤¾ą¤¬ą„ą¤²" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą¤®ą¤šą¤Ÿą¤•ą¤¾" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "ą¤®ą¤¾ą¤øą„ą¤•ą„‹+08 - ą¤•ą¤®ą¤šą¤Ÿą¤•ą¤¾" #: timezones.h:512 msgid "Asia/Karachi" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą¤°ą¤¾ą¤šą„€" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą„‡ą¤¶ą¤—ą¤°" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤¤ą¤æą¤¬ą„ą¤¬ą¤¤ व ą¤œą¤æą¤Øą¤æą¤Æą¤¾ą¤‚ą¤—" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą¤¾ą¤ ą¤®ą¤¾ą¤‚ą¤”ą„‚" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą¤¾ą¤ ą¤®ą¤¾ą¤‚ą¤”ą„‚" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą„‹ą¤²ą¤•ą¤¾ą¤¤ą¤¾" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą„ą¤°ą¤øą„ą¤Øą„‹ą¤Æą¤¾ą¤øą„ą¤•" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "ą¤®ą¤¾ą¤øą„ą¤•ą„‹+04 - ą¤Æą„‡ą¤Øą„‡ą¤øą„€ ą¤Øą¤¦ą„€" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą„ą¤µą¤¾ą¤²ą¤¾ą¤®ą¤Ŗą„ą¤°" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "ą¤Ŗą„ą¤°ą¤¾ą¤Æą¤¦ą„ą¤µą„€ą¤Ŗą„€ą¤Æ ą¤®ą¤²ą„‡ą¤¶ą¤æą¤Æą¤¾" #: timezones.h:525 msgid "Asia/Kuching" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą„ą¤šą¤æą¤‚ą¤—" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "सबाह व सारावाक" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą„ą¤µą„ˆą¤¤" #: timezones.h:529 msgid "Asia/Macao" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/मकाओ" #: timezones.h:530 msgid "Asia/Macau" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/मकाउ" #: timezones.h:531 msgid "Asia/Magadan" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/मगाऔन" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "ą¤®ą¤¾ą¤øą„ą¤•ą„‹+08 - ą¤®ą„ˆą¤—ą¤¾ą¤”ą¤Ø" #: timezones.h:534 msgid "Asia/Makassar" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤®ą¤•ą¤øą„ą¤øą¤°" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ & ą¤¦ą¤•ą„ą¤·ą¤æą¤£ą„€ ą¤¬ą„‹ą¤°ą„ą¤Øą¤æą¤Æą„‹, ą¤øą„‡ą¤²ą„‡ą¤¬ą„€ą¤œ, ą¤¬ą¤¾ą¤²ą„€, ą¤Øą„ą¤Æą„‚ą¤øą¤¾ ą¤Ÿą„‡ą¤Øą„‡ą¤—ą¤°ą¤¾, ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤¤ą¤æą¤®ą„‹ą¤°" #: timezones.h:537 msgid "Asia/Manila" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤®ą¤Øą„€ą¤²ą¤¾" #: timezones.h:538 msgid "Asia/Muscat" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤®ą¤øą„ą¤•ą¤Ÿ" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤Øą¤æą¤•ą„‹ą¤øą¤æą¤Æą¤¾" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤Øą„‹ą¤µą„‹ą¤•ą„ą¤œą¤Øą„‡ą¤¤ą„ą¤øą„ą¤•" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "ą¤®ą¤¾ą¤øą„ą¤•ą„‹+03 - ą¤Øą„‹ą¤µą„‹ą¤•ą„ą¤œą„‡ą¤Øą„‡ą¤¤ą„ą¤øą„ą¤•" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤Øą„‹ą¤µą„‹ą¤øą¤æą¤¬ą„ą¤°ą¤æą¤øą„ą¤•" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "ą¤®ą¤¾ą¤øą„ą¤•ą„‹+03 - ą¤Øą„‹ą¤µą„‹ą¤øą¤æą¤¬ą¤æą¤°ą„ą¤øą„ą¤•" #: timezones.h:546 msgid "Asia/Omsk" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤“ą¤®ą¤øą„ą¤•" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "ą¤®ą¤¾ą¤øą„ą¤•ą„‹+03 - ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤øą¤¾ą¤‡ą¤¬ą„‡ą¤°ą¤æą¤Æą¤¾" #: timezones.h:549 msgid "Asia/Oral" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ओरल" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "ą¤Ŗą¤¶ą„ą¤šą¤æą¤®ą„€ ą¤•ą¤œą¤¾ą¤–ą¤øą„ą¤¤ą¤¾ą¤Ø" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤Øą„‰ą¤®_ą¤Ŗą„‡ą¤Øą„ą¤¹" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤Ŗą„‹ą¤Øą¤Ÿą„ą¤Æą¤¾ą¤Øą¤•" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "ą¤Ŗą¤¶ą„ą¤šą¤æą¤® & ą¤®ą¤§ą„ą¤Æ ą¤¬ą„‹ą¤°ą„ą¤Øą¤æą¤Æą„‹" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤Ŗą„ą¤Æą„‹ą¤‚ą¤—ą¤Æą¤¾ą¤‚ą¤—" #: timezones.h:557 msgid "Asia/Qatar" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/कतार" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą„ˆą¤œą„€ą¤²ą„‹ą¤°ą¤”ą¤¾" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "Qyzylorda (Kyzylorda, Kzyl-Orda)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤°ą¤‚ą¤—ą„‚ą¤Ø" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/रियाद" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/रियाद87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/रियाद88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/रियाद89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¶ą„ˆą¤—ą¤¾ą¤‚ą¤µ" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤øą¤¾ą¤–ą¤¾ą¤²ą„€ą¤Ø" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "ą¤®ą¤¾ą¤øą„ą¤•ą„‹+07 - ą¤øą¤–ą¤¾ą¤²ą„€ą¤Ø ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/समरकंऔ" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤‰ą¤œą¤¬ą„‡ą¤•ą¤æą¤øą„ą¤¤ą¤¾ą¤Ø" #: timezones.h:573 msgid "Asia/Seoul" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤øą¤æą¤Æą„‹ą¤²" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¶ą¤‚ą¤˜ą¤¾ą¤ˆ" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ ą¤šą„€ą¤Ø - ą¤¬ą„€ą¤œą¤æą¤‚ą¤—, ą¤—ą„ą¤†ą¤‚ą¤—ą¤”ą„‹ą¤‚ą¤—, ą¤¶ą¤‚ą¤˜ą¤¾ą¤ˆ, आदि." #: timezones.h:577 msgid "Asia/Singapore" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤øą¤æą¤‚ą¤—ą¤¾ą¤Ŗą„ą¤°" #: timezones.h:578 msgid "Asia/Taipei" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¤ą¤¾ą¤ˆą¤Ŗą„‡" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ताशकंद" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ ą¤‰ą¤œą¤¬ą„‡ą¤•ą¤æą¤øą„ą¤¤ą¤¾ą¤Ø" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¤ą¤¬ą„€ą¤²ą¤æą¤øą„€" #: timezones.h:583 msgid "Asia/Tehran" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¤ą„‡ą¤¹ą¤°ą¤¾ą¤Ø" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¤ą„‡ą¤²_ą¤…ą¤µą„€ą¤µ" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¤ą¤æą¤®ą¤¬ą„‚" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤„ą¤æą¤‚ą¤«ą„‚" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤Ÿą„‹ą¤•ą„ą¤Æą„‹" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤Šą¤œą„‚ą¤‚ą¤—_ą¤Ŗą¤Øą„ą¤¦ą¤¾ą¤‚ą¤—" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/उलानबतर" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/उलन_ą¤¬ą¤¤ą„‹ą¤°" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤‰ą¤°ą„ą¤®ą¤•ą„€" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "अधिकतर ą¤¤ą¤æą¤¬ą„ą¤¬ą¤¤ व सिनियांग" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤µą„‡ą¤Ÿą„€ą¤Æą„‡ą¤Ø" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤µą„ą¤²ą¤¾ą¤”ą„€ą¤µą¤¾ą¤øą„ą¤Ÿą¤•" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "ą¤®ą¤¾ą¤øą„ą¤•ą„‹+07 - ą¤…ą¤®ą„‚ą¤° ą¤Øą¤¦ą„€" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤Æą¤•ą„ą¤Ÿą„ą¤øą„ą¤•" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "ą¤®ą¤¾ą¤øą„ą¤•ą„‹+06 - ą¤²ą„€ą¤Øą¤¾ ą¤Øą¤¦ą„€" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤Æą„‡ą¤•ą¤¾ą¤¤ą¤°ą„€ą¤Øą¤¬ą¤°ą„ą¤—" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "ą¤®ą¤¾ą¤øą„ą¤•ą„‹+02 - उराल" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤Æą„‡ą¤°ą¤¾ą¤µą¤æą¤Ø" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤…ą¤œą„‹ą¤°ą„ą¤ø" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "ą¤…ą¤œą„‹ą¤°ą„ą¤ø" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤¬ą¤°ą¤®ą„ą¤”ą¤¾" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤•ą„ˆą¤Øą„‡ą¤°ą„€" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "ą¤•ą„ˆą¤Øą¤¾ą¤°ą„€ ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤•ą„ˆą¤Ŗ_ą¤µą¤°ą„ą¤¦" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤«ą„ˆą¤°ą„‹" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/फराओ" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/जन_मयन" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤®ą„‡ą¤”ą¤æą¤°ą¤¾" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "ą¤®ą„ˆą¤”ą¤æą¤°ą¤¾ ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤°ą¤æą¤•ą„ą¤Æą¤¾ą¤œą„ą¤µą¤æą¤•" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤¦ą¤•ą„ą¤·ą¤æą¤£_ą¤œą¤¾ą¤°ą„ą¤œą¤æą¤Æą¤¾" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤øą„ą¤Ÿą„‡ą¤Øą¤²ą„€" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤øą„‡ą¤‚ą¤Ÿ_ą¤¹ą„‡ą¤²ą„‡ą¤Øą¤¾" #: timezones.h:625 msgid "Australia/ACT" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤ą¤øą„€ą¤Ÿą„€" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤ą¤”ą„€ą¤²ą„‡ą¤”" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "ą¤¦ą¤•ą„ą¤·ą¤æą¤£ą„€ ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤¬ą„ą¤°ą¤æą¤øą¤¬ą„‡ą¤Ø" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "ą¤•ą„ą¤µą„€ą¤‚ą¤øą¤²ą„ˆą¤‚ą¤” - अधिकतर ą¤øą„ą¤„ą¤¾ą¤Ø" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤¬ą„ą¤°ą„‹ą¤•ą¤Ø_हिल" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "ą¤Øą„ą¤Æą„‚ साउऄ ą¤µą„‡ą¤²ą„ą¤ø - ą¤Æą¤¾ą¤Øą¤•ą„‹ą¤‡ą¤Øą¤¾" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤•ą„‡ą¤Øą¤¬ą„‡ą¤°ą¤¾" #: timezones.h:636 msgid "Australia/Currie" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤•ą„ą¤Æą„‚ą¤°ą„€" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "ą¤¤ą¤øą„ą¤®ą¤¾ą¤Øą¤æą¤Æą¤¾ - किंग ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:639 msgid "Australia/Darwin" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/औारविन" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "ą¤‰ą¤¤ą„ą¤¤ą¤°ą„€ ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤°" #: timezones.h:642 msgid "Australia/Eucla" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤Æą„‚ą¤•ą„ą¤²ą¤¾" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "ą¤Ŗą¤¶ą„ą¤šą¤æą¤®ą„€ ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾ - ą¤Æą„‚ą¤•ą„ą¤²ą¤¾ ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤°" #: timezones.h:645 msgid "Australia/Hobart" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤¹ą„‹ą¤¬ą¤°ą„ą¤Ÿ" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "ą¤¤ą¤øą„ą¤®ą¤¾ą¤Øą¤æą¤Æą¤¾ - अधिकतर ą¤øą„ą¤„ą¤¾ą¤Ø" #: timezones.h:648 msgid "Australia/LHI" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤ą¤²ą¤ą¤šą¤†ą¤ˆ" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤²ą¤æą¤‚ą¤”ą„‡ą¤®ą„‡ą¤Ø" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "ą¤•ą„ą¤µą„€ą¤‚ą¤øą¤²ą„ˆą¤‚ą¤” - ą¤¹ą„‹ą¤²ą„€ą¤”ą„‡ ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤²ą¤¾ą¤°ą„ą¤”_ą¤¹ą„‹ą¤µ" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "ą¤²ą„‰ą¤°ą„ą¤” ą¤¹ą„‹ą¤µą„‡ ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤®ą„‡ą¤²ą¤¬ą„‰ą¤°ą„ą¤Ø" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "ą¤µą¤æą¤•ą„ą¤Ÿą„‹ą¤°ą¤æą¤Æą¤¾" #: timezones.h:658 msgid "Australia/North" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤‰ą¤¤ą„ą¤¤ą¤°" #: timezones.h:659 msgid "Australia/NSW" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤Ŗą¤°ą„ą¤„" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "ą¤Ŗą¤¶ą„ą¤šą¤æą¤®ą„€ ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾ - अधिकतर ą¤øą„ą¤„ą¤¾ą¤Ø" #: timezones.h:663 msgid "Australia/Queensland" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤•ą„ą¤µą„€ą¤‚ą¤øą¤²ą„ˆą¤‚ą¤”" #: timezones.h:664 msgid "Australia/South" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤¦ą¤•ą„ą¤·ą¤æą¤£" #: timezones.h:665 msgid "Australia/Sydney" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤øą¤æą¤”ą¤Øą„€" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "ą¤Øą„ą¤Æą„‚ साउऄ ą¤µą„‡ą¤²ą„ą¤ø - अधिकतर ą¤øą„ą¤„ą¤¾ą¤Ø" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤Ÿą¤øą„ą¤®ą„‡ą¤Øą¤æą¤Æą¤¾" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤µą¤æą¤•ą„ą¤Ÿą„‹ą¤°ą¤æą¤Æą¤¾" #: timezones.h:670 msgid "Australia/West" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤Ŗą¤¶ą„ą¤šą¤æą¤®" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤Æą¤¾ą¤Øą¤•ą„‹ą¤µą¤æą¤Øą¤¾" #: timezones.h:672 msgid "Brazil/Acre" msgstr "ą¤¬ą„ą¤°ą¤¾ą¤œą¤æą¤²/ą¤ą¤•ą„ą¤°ą„‡" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "ą¤¬ą„ą¤°ą¤¾ą¤œą¤æą¤²/ą¤”ą„‡ą¤Øą„‹ą¤°ą„‹ą¤Øą¤¾" #: timezones.h:674 msgid "Brazil/East" msgstr "ą¤¬ą„ą¤°ą¤¾ą¤œą¤æą¤²/ą¤Ŗą„‚ą¤°ą¤¬" #: timezones.h:675 msgid "Brazil/West" msgstr "ą¤¬ą„ą¤°ą¤¾ą¤œą¤æą¤²/ą¤Ŗą¤¶ą„ą¤šą¤æą¤®" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "कनाऔा/ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•" #: timezones.h:677 msgid "Canada/Central" msgstr "कनाऔा/ą¤®ą¤§ą„ą¤Æ" #: timezones.h:678 msgid "Canada/Eastern" msgstr "कनाऔा/ą¤Ŗą„‚ą¤°ą„ą¤µą„€" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "कनाऔा/ą¤Ŗą„‚ą¤°ą„ą¤µ-ą¤øą¤øą„ą¤•ą¤šą¤µą¤Ø" #: timezones.h:680 msgid "Canada/Mountain" msgstr "कनाऔा/ą¤®ą¤¾ą¤‰ą¤Øą„ą¤Ÿą„‡ą¤Ø" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "कनाऔा/ą¤Øą„ą¤Æą„‚ą¤«ą„‹ą¤Øą„ą¤”ą¤²ą„ˆą¤‚ą¤”" #: timezones.h:682 msgid "Canada/Pacific" msgstr "कनाऔा/ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "कनाऔा/ą¤øą¤øą„ą¤•ą¤šą¤µą¤Ø" #: timezones.h:684 msgid "Canada/Yukon" msgstr "कनाऔा/ą¤Æą„‚ą¤•ą¤Ø" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "ą¤šą¤æą¤²ą„€/ą¤•ą„‰ą¤Øą„ą¤Ÿą„€ą¤Øą„‡ą¤Øą„ą¤Ÿą¤²" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "ą¤šą¤æą¤²ą„€/ą¤•ą„‹ą¤Øą„ą¤Ÿą„€ą¤Øą„‡ą¤Øą„ą¤Ÿą¤²" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "ą¤•ą„ą¤Æą„‚ą¤¬ą¤¾" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "ą¤®ą¤æą¤¶ą„ą¤°" #: timezones.h:692 msgid "Eire" msgstr "आयर" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/ą¤—ą„ą¤°ą„€ą¤Øą¤µą¤æą¤š" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤²" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/ą¤œą¤¼ą„ą¤²ą„‚" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤ą¤®ą„ą¤øą„ą¤Ÿą¤°ą¤”ą„‡ą¤®" #: timezones.h:731 msgid "Europe/Andorra" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤ą¤‚ą¤”ą„‹ą¤°ą¤¾" #: timezones.h:732 msgid "Europe/Athens" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤ą¤„ą„‡ą¤‚ą¤ø" #: timezones.h:733 msgid "Europe/Belfast" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¬ą„‡ą¤²ą¤«ą¤¾ą¤øą„ą¤Ÿ" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¬ą„‡ą¤²ą¤—ą„ą¤°ą„‡ą¤”" #: timezones.h:735 msgid "Europe/Berlin" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¬ą¤°ą„ą¤²ą¤æą¤Ø" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¬ą„ą¤°ą¤Ÿą¤æą¤øą¤²ą„‡ą¤µą¤¾" #: timezones.h:737 msgid "Europe/Brussels" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¬ą„ą¤°ą¤øą„ą¤øą„‡ą¤²ą„ą¤ø" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¬ą„ą¤–ą¤¾ą¤°ą„‡ą¤øą„ą¤Ÿ" #: timezones.h:739 msgid "Europe/Budapest" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¬ą„ą¤”ą¤¾ą¤Ŗą„‡ą¤øą„ą¤Ÿ" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤šą„€ą¤øą„€ą¤Øą„‹" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤•ą„‹ą¤Ŗą¤Øą¤¹ą„‡ą¤—ą¤Ø" #: timezones.h:742 msgid "Europe/Dublin" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤”ą¤¬ą„ą¤²ą¤æą¤Ø" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤œą¤æą¤¬ą„ą¤°ą¤¾ą¤²ą„ą¤Ÿą¤°" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤—ą„ą¤Æą„‡ą¤°ą„ą¤Øą„ą¤øą„‡" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¹ą„‡ą¤²ą¤øą¤æą¤‚ą¤•ą„€" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/आइल_ऑफ_ą¤®ą„ˆą¤Ø" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤‡ą¤øą„ą¤¤ą¤¾ą¤‚ą¤¬ą„ą¤²" #: timezones.h:748 msgid "Europe/Jersey" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤œą¤°ą„ą¤øą„€" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤•ą¤¾ą¤²ą¤æą¤Øą„€ą¤—ą„ą¤°ą¤¾ą¤”" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "ą¤®ą¤¾ą¤øą„ą¤•ą„‹-01 - ą¤•ą¤¾ą¤²ą¤æą¤Øą¤æą¤Øą¤—ą„ą¤°ą¤¾ą¤¦" #: timezones.h:752 msgid "Europe/Kiev" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤•ą„€ą¤µ" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/लिसबन" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤²ą¤œą„ą¤¬ą¤²ą¤œą¤¾ą¤Øą¤¾" #: timezones.h:759 msgid "Europe/London" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/लंदन" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤²ą¤•ą„ą¤øą¤®ą¤¬ą¤°ą„ą¤—" #: timezones.h:761 msgid "Europe/Madrid" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤®ą„‡ą¤”ą„ą¤°ą¤æą¤”" #: timezones.h:764 msgid "Europe/Malta" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤®ą¤¾ą¤²ą„ą¤Ÿą¤¾" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤®ą„‡ą¤°ą„€ą¤¹ą„ˆą¤®" #: timezones.h:766 msgid "Europe/Minsk" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/मिंसक" #: timezones.h:767 msgid "Europe/Monaco" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤®ą„‹ą¤Øą¤¾ą¤•ą„‹" #: timezones.h:768 msgid "Europe/Moscow" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤®ą„‰ą¤øą„ą¤•ą„‹" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "ą¤®ą¤¾ą¤øą„ą¤•ą„‹+00 - ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤°ą„‚ą¤ø" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤Øą¤æą¤•ą„‹ą¤øą¤æą¤Æą¤¾" #: timezones.h:772 msgid "Europe/Oslo" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤“ą¤øą¤²ą„‹" #: timezones.h:773 msgid "Europe/Paris" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤Ŗą„‡ą¤°ą¤æą¤ø" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤Ŗą„‰ą¤”ą¤—ą„‹ą¤°ą¤æą¤•ą¤¾" #: timezones.h:775 msgid "Europe/Prague" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤Ŗą„ą¤°ą¤¾ą¤—" #: timezones.h:776 msgid "Europe/Riga" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/रिगा" #: timezones.h:777 msgid "Europe/Rome" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤°ą„‹ą¤®" #: timezones.h:778 msgid "Europe/Samara" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/समारा" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "ą¤®ą¤¾ą¤øą„ą¤•ą„‹ - समारा, ą¤‰ą¤¦ą¤®ą„ą¤°ą„ą¤¤ą¤æą¤Æą¤¾" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤øą„‡ą¤Ø_ą¤®ą¤°ą„€ą¤Øą„‹" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤øą¤°ą¤¾ą¤œą„‡ą¤µą„‹" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤øą¤æą¤®ą¤«ą„‡ą¤°ą„‹ą¤Ŗą„‹ą¤²" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "ą¤®ą¤§ą„ą¤Æ ą¤•ą„ą¤°ą„€ą¤®ą¤æą¤Æą¤¾" #: timezones.h:786 msgid "Europe/Skopje" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤øą„ą¤•ą¤Ŗą¤œą„‡" #: timezones.h:787 msgid "Europe/Sofia" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤øą„‹ą¤«ą¤æą¤Æą¤¾" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤øą„ą¤Ÿą„‰ą¤•ą¤¹ą„‹ą¤®" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¤ą¤¾ą¤²ą„€ą¤Ø" #: timezones.h:790 msgid "Europe/Tirane" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¤ą¤æą¤°ą„‡ą¤Ø" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¤ą¤æą¤°ą¤øą¤Ŗą„‹ą¤²" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤‰ą¤°ą„ą¤—ą„‹ą¤°ą¤¾ą¤”" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "ą¤°ą„‚ą¤„ą„‡ą¤Øą¤æą¤Æą¤¾" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤µą¤¾ą¤”ą„‚ą¤œ" #: timezones.h:796 msgid "Europe/Vatican" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤µą„‡ą¤Ÿą„€ą¤•ą„‡ą¤Ø" #: timezones.h:797 msgid "Europe/Vienna" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤µą¤æą¤Æą„‡ą¤Øą¤¾" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/विलनियस" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤µą„‹ą¤²ą„ą¤—ą„‹ą¤—ą„ą¤°ą„ˆą¤”" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "ą¤®ą¤¾ą¤øą„ą¤•ą„‹+00 - ą¤•ą„ˆą¤øą„ą¤Ŗą¤æą¤Æą¤Ø सागर" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤µą¤¾ą¤°ą¤øą„‹" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤œą„‡ą¤—ą¤°ą„€ą¤¬" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤œą¤Ŗą„‹ą¤°ą„‹ą¤œą¤¾ą¤ˆ" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" #: timezones.h:807 msgid "Europe/Zurich" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤œą„ą¤Æą„‚ą¤°ą¤æą¤–" #: timezones.h:808 msgid "Factory" msgstr "ą¤«ą„ˆą¤•ą„ą¤Ÿą¤°ą„€" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-आइर" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "ą¤—ą„ą¤°ą„€ą¤Øą¤µą¤æą¤š" #: timezones.h:816 msgid "Hongkong" msgstr "ą¤¹ą¤¾ą¤‚ą¤—ą¤•ą„‰ą¤—" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "ą¤†ą¤‡ą¤øą¤²ą„ˆą¤‚ą¤”" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "इंऔियन/ą¤…ą¤‚ą¤¤ą¤¾ą¤Øą¤¾ą¤Øą¤°ą¤æą¤µą„‹" #: timezones.h:820 msgid "Indian/Chagos" msgstr "इंऔियन/ą¤šą¤¾ą¤—ą„‹ą¤ø" #: timezones.h:821 msgid "Indian/Christmas" msgstr "इंऔियन/ą¤•ą„ą¤°ą¤æą¤øą¤®ą¤ø" #: timezones.h:822 msgid "Indian/Cocos" msgstr "इंऔियन/ą¤•ą„‹ą¤•ą„‹ą¤ø" #: timezones.h:823 msgid "Indian/Comoro" msgstr "इंऔियन/ą¤•ą„‹ą¤®ą„‹ą¤°ą„‹" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "इंऔियन/करगलन" #: timezones.h:825 msgid "Indian/Mahe" msgstr "इंऔियन/ą¤®ą¤¾ą¤¹ą„‡" #: timezones.h:826 msgid "Indian/Maldives" msgstr "इंऔियन/ą¤®ą¤¾ą¤²ą¤¦ą„€ą¤µ" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "इंऔियन/ą¤®ą„‰ą¤°ą„€ą¤øą¤ø" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "इंऔियन/ą¤®ą¤¾ą¤Æą„‹ą¤Ÿ" #: timezones.h:829 msgid "Indian/Reunion" msgstr "इंऔियन/ą¤°ą¤æą¤Æą„‚ą¤Øą¤æą¤Æą¤Ø" #: timezones.h:830 msgid "Iran" msgstr "इरान" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "ą¤‡ą¤œą¤¼ą¤°ą¤¾ą¤‡ą¤²" #: timezones.h:833 msgid "Jamaica" msgstr "ą¤œą¤®ą¤¾ą¤ˆą¤•ą¤¾" #: timezones.h:834 msgid "Japan" msgstr "जापान" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "ą¤–ą„ą¤µą¤¾ą¤œą¤¾ą¤²ą„‡ą¤Ø" #: timezones.h:836 msgid "Libya" msgstr "ą¤²ą„€ą¤¬ą¤æą¤Æą¤¾" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "ą¤®ą„ˆą¤•ą„ą¤øą¤æą¤•ą„‹/ą¤¬ą¤œą¤Øą„‹ą¤°ą„ą¤Ÿ" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "ą¤®ą„ˆą¤•ą„ą¤øą¤æą¤•ą„‹/ą¤¬ą¤œą¤¾ą¤øą„ą¤°" #: timezones.h:840 msgid "Mexico/General" msgstr "ą¤®ą„ˆą¤•ą„ą¤øą¤æą¤•ą„‹/जनरल" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "ą¤®ą¤§ą„ą¤Æą¤Ŗą„‚ą¤°ą„ą¤µą„€/रियाद87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "ą¤®ą¤§ą„ą¤Æą¤Ŗą„‚ą¤°ą„ą¤µą„€/रियाद88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "ą¤®ą¤§ą„ą¤Æą¤Ŗą„‚ą¤°ą„ą¤µą„€/रियाद89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "ą¤Øą¤µą¤œą„‹" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤ą¤Ŗą¤æą¤Æą¤¾" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤†ą¤•ą¤²ą„ˆą¤‚ą¤”" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/चाऄम" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "चाऄम ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤šą„‚ą¤•" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "ą¤šą„‚ą¤• (Truk) और याप" #: timezones.h:859 msgid "Pacific/Easter" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤‡ą¤øą„ą¤Ÿą¤°" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "ą¤‡ą¤øą„ą¤Ÿą¤° ą¤¦ą„ą¤µą„€ą¤Ŗ व साला वाई ą¤—ą„‹ą¤®ą„‡ą¤œ" #: timezones.h:862 msgid "Pacific/Efate" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤‡ą¤«ą„‡ą¤Ÿ" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤‡ą¤Øą¤”ą¤°ą¤¬ą¤°ą„€" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "ą¤«ą„€ą¤Øą¤æą¤•ą„ą¤ø ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤«ą¤•ą¤¾ą¤“ą¤«ą„‹" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤«ą¤æą¤œą„€" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤«ą„ą¤Øą¤¾ą¤«ą„ą¤Ÿą„€" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤—ą¤²ą¤Ŗą¤—ą„‹ą¤ø" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "ą¤—ą¤¾ą¤²ą¤¾ą¤Ŗą„ˆą¤—ą„‹ą¤ø ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤—ą„‡ą¤®ą„ą¤¬ą¤æą¤Æą¤°" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "ą¤—ą„ˆą¤‚ą¤¬ą¤æą¤Æą¤° ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤—ą„ą¤µą¤¾ą¤¦ą¤²ą¤•ą¤Øą¤²" #: timezones.h:876 msgid "Pacific/Guam" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤—ą„ą¤†ą¤®" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤¹ą„‹ą¤Øą„‹ą¤²ą„‚ą¤²ą„‚" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "हवाई" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤œą¤¾ą¤‚ą¤øą„ą¤Ÿą¤Ø" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "ą¤œą„‰ą¤Øą„ą¤øą„ą¤Ÿą¤Ø ą¤ą¤Ÿą„‰ą¤²" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤•ą¤æą¤°ą„ą¤¤ą„€ą¤®ą¤¤ą¤æ" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "लाइन ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤•ą¤øą¤°ą„‡" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "ą¤•ą„‹ą¤øą¤°ą„‡" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤•ą„ą¤µą¤¾ą¤œą¤¾ą¤²ą„‡ą¤Ø" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤®ą¤œą„‚ą¤°ą„‹" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤®ą¤¾ą¤°ą„ą¤•ą¤øą¤¾ą¤ø" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "ą¤®ą¤¾ą¤°ą„ą¤•ą„ą¤µą„€ą¤øą¤¾ą¤ø ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:898 msgid "Pacific/Midway" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤®ą¤æą¤”ą¤µą„‡" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "ą¤®ą¤æą¤”ą¤µą„‡ ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤Øą„‹ą¤°ą„" #: timezones.h:902 msgid "Pacific/Niue" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤Øą„€ą¤Æą„‚" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤Øą¤¾ą¤°ą¤«ą„‹ą¤•" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/नामिया" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤Ŗą„ˆą¤—ą„‹_ą¤Ŗą„ˆą¤—ą„‹" #: timezones.h:906 msgid "Pacific/Palau" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/पलाउ" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤Ŗą¤æą¤Ÿą¤•ą„‡ą¤°ą„€ą¤Ø" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤Ŗą„‹ą¤¹ą„ą¤Øą„ą¤Ŗą„€" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "ą¤Ŗą„‹ą¤¹ą„ą¤Øą„ą¤Ŗą„€ (ą¤Ŗą„‹ą¤Øą¤¾ą¤Ŗą„‡)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤Ŗą„‹ą¤Øą¤¾ą¤Ŗą„‡" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤Ŗą„‹ą¤°ą„ą¤Ÿ_ą¤®ą„‹ą¤°ą„ą¤øą¤¬ą„€" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤°ą¤°ą„‹ą¤¤ą¤‚ą¤—ą¤¾" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤øą„ˆą¤Ŗą„‡ą¤Ø" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤øą¤®ą„‹ą¤†" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤¤ą¤¾ą¤¹ą¤æą¤Ÿą„€" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "ą¤øą„‹ą¤øą¤¾ą¤Æą¤Ÿą„€ ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/तारावा" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "ą¤—ą¤æą¤²ą¤¬ą¤°ą„ą¤Ÿ ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤Ÿą¤‚ą¤—ą¤Ÿą¤Ŗą„‚" #: timezones.h:923 msgid "Pacific/Truk" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤¤ą„ą¤°ą„ą¤•" #: timezones.h:924 msgid "Pacific/Wake" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤µą„‡ą¤•" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "ą¤µą„‡ą¤• ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/वालिस" #: timezones.h:928 msgid "Pacific/Yap" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/याप" #: timezones.h:929 msgid "Poland" msgstr "ą¤Ŗą„‹ą¤²ą¤‚ą¤”" #: timezones.h:930 msgid "Portugal" msgstr "ą¤Ŗą„ą¤°ą„ą¤¤ą¤—ą¤¾ą¤²" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "ą¤øą¤æą¤‚ą¤—ą¤¾ą¤Ŗą„ą¤°" #: timezones.h:937 msgid "Turkey" msgstr "ą¤¤ą„ą¤°ą„ą¤•ą„€" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤²" #: timezones.h:940 msgid "US/Alaska" msgstr "US/ą¤…ą¤²ą¤¾ą¤øą„ą¤•ą¤¾" #: timezones.h:941 msgid "US/Aleutian" msgstr "US/ą¤ą¤²ą„ą¤Æą„‚ą¤¶ą¤Ø" #: timezones.h:942 msgid "US/Arizona" msgstr "US/ą¤ą¤°ą„€ą¤œą„‹ą¤Øą¤¾" #: timezones.h:943 msgid "US/Central" msgstr "US/ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ" #: timezones.h:944 msgid "US/Eastern" msgstr "US/ą¤Ŗą„‚ą¤°ą„ą¤µą„€" #: timezones.h:945 msgid "US/East-Indiana" msgstr "US/ą¤Ŗą„‚ą¤°ą„ą¤µ-इंऔियाना" #: timezones.h:946 msgid "US/Hawaii" msgstr "US/हवाई" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "US/इंऔियाना-ą¤øą„ą¤Ÿą¤¾ą¤°ą„ą¤•" #: timezones.h:948 msgid "US/Michigan" msgstr "US/मिसिगन" #: timezones.h:949 msgid "US/Mountain" msgstr "US/ą¤®ą¤¾ą¤‰ą¤Øą„ą¤Ÿą„‡ą¤Ø" #: timezones.h:950 msgid "US/Pacific" msgstr "US/ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤" #: timezones.h:951 msgid "US/Samoa" msgstr "US/ą¤øą¤®ą„‹ą¤µą¤¾" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "ą¤œą¤¼ą„ą¤²ą„‚" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/pa.po0000664000175000017500000024621314632072346023667 0ustar fabiofabio# translation of system-config-date.master-timezones.pa.po to Punjabi # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Jaswinder Singh , 2008, 2009, 2010. # A S Alam , 2009. msgid "" msgstr "" "Project-Id-Version: system-config-date.master-timezones.pa\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-12-07 10:08+0530\n" "Last-Translator: Jaswinder Singh \n" "Language-Team: Punjabi/Panjabi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pa\n" "X-Generator: Lokalize 1.1\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "ਅਫਰੀਕਾ/ąØ…ąØ¬ą©€ąØ”ąØœąØ¾ąØØ" #: timezones.h:2 msgid "Africa/Accra" msgstr "ਅਫਰੀਕਾ/ਅਸੱਰਾ" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "ਅਫਰੀਕਾ/ਅਔੀਸ ਅਬਾਬਾ" #: timezones.h:4 msgid "Africa/Algiers" msgstr "ਅਫਰੀਕਾ/ąØ…ąØ²ąØœą©€ąØ°ą©€ąØø" #: timezones.h:5 msgid "Africa/Asmara" msgstr "ਅਫਰੀਕਾ/ਅਸਮਾਰਾ" #: timezones.h:6 msgid "Africa/Asmera" msgstr "ਅਫਰੀਕਾ/ਅਸਮੀਰਾ" #: timezones.h:7 msgid "Africa/Bamako" msgstr "ਅਫਰੀਕਾ/ਬਾਕਾਮੋ" #: timezones.h:8 msgid "Africa/Bangui" msgstr "ਅਫਰੀਕਾ/ąØ¬ąØ¾ąØØąØ—ą©‚ąØˆ" #: timezones.h:9 msgid "Africa/Banjul" msgstr "ਅਫਰੀਕਾ/ąØ¬ąØæąØØąØœą©‚ąØ²" #: timezones.h:10 msgid "Africa/Bissau" msgstr "ਅਫਰੀਕਾ/ਬਿਸੱਊ" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "ਅਫਰੀਕਾ/ąØ¬ąØ²ąØ¾ąØØąØŸąØ°ą©€" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "ਅਫਰੀਕਾ/ਬਰਾਜ਼ਾਵੀਲੀ" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "ਅਫਰੀਕਾ/ਬੂਜ਼ੂਮਬੂਰਾ" #: timezones.h:14 msgid "Africa/Cairo" msgstr "ਅਫਰੀਕਾ/ਕੀਰੋ" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "ਅਫਰੀਕਾ/ਕਾਸਾਬਲਾਨਾਸਾ" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "ਅਫਰੀਕਾ/ąØ•ą©€ąØŠąØŸąØ¾" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "ąØøą©€ąØŠąØŸąØ¾ ਤੇ ਮੇਲਿਲਾ" #: timezones.h:19 msgid "Africa/Conakry" msgstr "ਅਫਰੀਕਾ/ਕੋਨਕਰੀ" #: timezones.h:20 msgid "Africa/Dakar" msgstr "ਅਫਰੀਕਾ/ਔਾਕਾਰ" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "ਅਫਰੀਕਾ/ਔਾਰੀਸ ਅਸ ਸਲਾਮ" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "ਅਫਰੀਕਾ/ąØ”ą©›ą©€ąØ¬ą©‚ąØ…ąØŸą©€" #: timezones.h:23 msgid "Africa/Douala" msgstr "ਅਫਰੀਕਾ/ąØ”ą©‚ąØŠąØ²ąØ¾" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "ਅਫਰੀਕਾ/ąØˆąØ²ąØ†ąØŠąØØ" #: timezones.h:25 msgid "Africa/Freetown" msgstr "ਅਫਰੀਕਾ/ąØ«ąØ°ą©€ąØŸąØ¾ąØ‰ąØØ" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "ਅਫਰੀਕਾ/ਗਾਬੋਰੋਨੀ" #: timezones.h:27 msgid "Africa/Harare" msgstr "ਅਫਰੀਕਾ/ਹਾਰਾਰੇ" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "ਅਫਰੀਕਾ/ąØœąØ¹ąØ¾ąØØąØøąØ¬ąØ°ąØ—" #: timezones.h:29 msgid "Africa/Kampala" msgstr "ਅਫਰੀਕਾ/ਕੰਪਾਲਾ" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "ਅਫਰੀਕਾ/ąØ–ąØ°ąØŸą©‹ąØ®" #: timezones.h:31 msgid "Africa/Kigali" msgstr "ਅਫਰੀਕਾ/ਕੀਗਲੀ" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "ਅਫਰੀਕਾ/ਕੀਨਸ਼ਾਸਾ" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "ਪੱਛਮੀ ąØ”ą©ˆąØ®ą©‹ąØ•ąØ°ą©‡ąØŸąØæąØ• ਰੀਪਬਲਿਕ ਆਫ ąØ•ą©ŒąØ‚ąØ—ą©‹" #: timezones.h:35 msgid "Africa/Lagos" msgstr "ਅਫਰੀਕਾ/ਲਾਗੋਸ" #: timezones.h:36 msgid "Africa/Libreville" msgstr "ਅਫਰੀਕਾ/ਲੀਬਰੀਵੀਲੀ" #: timezones.h:37 msgid "Africa/Lome" msgstr "ਅਫਰੀਕਾ/ਲੋਮੀ" #: timezones.h:38 msgid "Africa/Luanda" msgstr "ਅਫਰੀਕਾ/ਲੂਔਾ" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "ਅਫਰੀਕਾ/ਲੂਬੂਮਬਸੀ" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "ਪੂਰਬੀ ąØ”ą©ˆąØ®ą©‹ąØ•ąØ°ą©‡ąØŸąØæąØ• ਰੀਪਬਲਿਕ ਆਫ ąØ•ą©ŒąØ‚ąØ—ą©‹" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "ਅਫਰੀਕਾ/ਲੂਸਾਕਾ" #: timezones.h:43 msgid "Africa/Malabo" msgstr "ਅਫਰੀਕਾ/ਮਾਲਾਬੋ" #: timezones.h:44 msgid "Africa/Maputo" msgstr "ਅਫਰੀਕਾ/ąØ®ąØ¾ąØŖą©‚ąØŸą©‹" #: timezones.h:45 msgid "Africa/Maseru" msgstr "ਅਫਰੀਕਾ/ਮਾਸੀਰੂ" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "ਅਫਰੀਕਾ/ਮਬਾਬਾਨੀ" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "ਅਫਰੀਕਾ/ਮੋਗਾਔੀਸ਼ੂ" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "ਅਫਰੀਕਾ/ਮੋਨਰੋਵੀਆ" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "ਅਫਰੀਕਾ/ąØØą©ˆąØ°ą©‹ąØ¬ą©€" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "ਅਫਰੀਕਾ/ąØØąØ”ąØœąØ¾ąØ®ą©€ąØØąØ¾" #: timezones.h:51 msgid "Africa/Niamey" msgstr "ਅਫਰੀਕਾ/ਨਾਮੀ" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "ਅਫਰੀਕਾ/ąØØą©‚ąØŠąØ•ąØšą©‹ąØŸ" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "ਅਫਰੀਕਾ/ąØŠąØ—ąØ¾ąØ”ą©‹ąØ—ą©‹ąØŠ" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "ਅਫਰੀਕਾ/ąØŖą©‹ąØ°ąØŸą©‹-ਨੋਵੋ" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "ਅਫਰੀਕਾ/ąØøąØ¾ąØ“ąØŸą©‹ąØ®ą©€" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "ਅਫਰੀਕਾ/ąØŸą©€ąØ®ąØ¬ą©‚ąØ•ąØŸą©‚" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "ਅਫਰੀਕਾ/ąØŸąØ°ą©€ąØŖą©‹ąØ²ą©€" #: timezones.h:58 msgid "Africa/Tunis" msgstr "ਅਫਰੀਕਾ/ąØŸą©‚ąØØąØæąØ¶" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "ਅਫਰੀਕਾ/ਵਿਨਹੋਇਕ" #: timezones.h:60 msgid "America/Adak" msgstr "ਅਮਰੀਕਾ/ਅਔਾਕ" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "ąØ…ąØ²ą©€ąØŠąØŸą©€ąØ…ąØØ ąØ†ąØˆąØøąØ²ą©ˆąØ‚ąØ”" #: timezones.h:63 msgid "America/Anchorage" msgstr "ਅਮਰੀਕਾ/ąØ…ąØØąØšą©‹ąØ°ą©›ą©€" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "ਅਲਾਸਕਾ ਟਾਈਮ" #: timezones.h:66 msgid "America/Anguilla" msgstr "ਅਮਰੀਕਾ/ਅੰਗੋਲਾ" #: timezones.h:67 msgid "America/Antigua" msgstr "ਅਮਰੀਕਾ/ąØ…ą©°ąØŸą©€ąØ—ą©ąØ†" #: timezones.h:68 msgid "America/Araguaina" msgstr "ਅਮਰੀਕਾ/ਆਰਗੂਮੀਆ" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "ąØŸą©‹ąØ•ąØ¾ąØØąØŸąØæąØØąØø" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "ਅਮਰੀਕਾ/ąØ…ąØ°ąØœąØØąØŸą©€ąØØąØ¾/ąØ¬ą©‚ąØˆąØØą©‹ąØø ąØąØ…ąØ°ąØø" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "ąØ¬ą©‚ąØąØØą©‹ąØø ąØąØ…ąØ°ą©€ąØø (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "ਅਮਰੀਕਾ/ąØ…ąØ°ąØœąØØąØŸą©€ąØØąØ¾/ąØ•ąØ¾ąØŸąØ¾ąØ®ąØ¾ąØ°ąØøąØ¾" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "ąØ•ą©ˆąØŸąØ¾ąØ®ąØ¾ąØ°ąØ•ąØ¾ (CT), ąØšą©‚ąØ¬ą©‚ąØŸ (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "ਅਮਰੀਕਾ/ąØ…ąØ°ąØœąØØąØŸą©€ąØØąØ¾/ਕੋਮੋਔ ਰਿਵਾਔਵੀਆਆਨਾਪੋਲੀਸ" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "ਅਮਰੀਕਾ/ąØ…ąØ°ąØœąØØąØŸą©€ąØØąØ¾/ਕੋਰਔੋਬਾ" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "ਵਧੇਰੇ ਸ਄ਿਤੀਆਂ (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "ਅਮਰੀਕਾ/ąØ…ąØ°ąØœąØØąØŸą©€ąØØąØ¾/ąØœą©‚ąØœąØˆ" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "ąØœą©‚ąØœą©‚ąØ (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "ਅਮਰੀਕਾ/ąØ…ąØ°ąØœąØØąØŸą©€ąØØąØ¾/ąØ²ąØ¾ąØ°ąØæąØ“ąØœąØ¾ą©€ąØ†" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "ਲਾ ąØ°ąØæąØ“ąØœąØ¾ (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "ਅਮਰੀਕਾ/ąØ…ąØ°ąØœąØØąØŸą©€ąØØąØ¾/ਮਾਨਔੋਜ਼ਾ" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "ąØ®ą©ˆąØØąØ”ą©‹ą©›ąØ¾ (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "ਅਮਰੀਕਾ/ąØ…ąØ°ąØœąØØąØŸą©€ąØØąØ¾/ਰੀਓ ąØ—ą©ˆąØ²ą©€ąØ—ą©‹ąØøąØ°ą©€ąØØąØ—ą©‹" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "ąØøąØ¾ąØ‚ąØŸąØ¾ ਕਰੂਜ਼ (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "ਅਮਰੀਕਾ/ąØ…ąØ°ąØœąØØąØŸą©€ąØØąØ¾/ਸਾਲਟਾ" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "ਅਮਰੀਕਾ/ąØ…ąØ°ąØœąØØąØŸą©€ąØØąØ¾/ਸੈਨ ąØœąØ¾ąØ“ąØØąØ—ą©ąØ†" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "ਸੇਨ ąØœą©‚ąØ†ąØØ (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "ਅਮਰੀਕਾ/ąØ…ąØ°ąØœąØØąØŸą©€ąØØąØ¾/ਸੈਨ_ਲੂਇਸ" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "ਸੈਨ ਲੂਇਸ (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "ਅਮਰੀਕਾ/ąØ…ąØ°ąØœąØØąØŸą©€ąØØąØ¾/ąØŸą©‚ąØ•ą©ąØ®ąØ¾ąØØąØ—ą©ąØ†" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "ąØŸą©‚ąØ•ą©‚ąØ®ą©ˆąØØ (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "ਅਮਰੀਕਾ/ąØ…ąØ°ąØœąØØąØŸą©€ąØØąØ¾/ąØ‰ąØ¶ą©‚ąØˆąØ†ą©€ąØ†" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "ąØŸą©€ąØąØ°ąØ¾ ਔੇਲ ąØ«ą©‚ąØąØ—ą©‹ (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "ਅਮਰੀਕਾ/ਅਰੂਬਾ" #: timezones.h:109 msgid "America/Asuncion" msgstr "ਅਮਰੀਕਾ/ਅਸੁਨਸੀਨ" #: timezones.h:110 msgid "America/Atikokan" msgstr "ਅਮਰੀਕਾ/ąØ…ąØŸą©€ąØ•ą©‹ąØ•ąØ¾ąØØ" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "ਪੂਰਬੀ ąØøąØŸą©ˆąØ‚ąØ”ąØ°ąØ” ਟਾਈਮ - ąØ…ąØŸą©€ąØ•ą©‹ąØ•ąØ¾ąØØ, ąØ“ąØØąØŸąØ¾ąØ°ą©€ąØ“ ਅਤੇ ਦੱਖਣ-ਐਮਪਟਨ I, ąØØą©‚ąØØąØ¾ąØµą©‚ąØŸ" #: timezones.h:113 msgid "America/Atka" msgstr "ਅਮਰੀਕਾ/ąØ…ąØŸąØ•ąØ¾" #: timezones.h:114 msgid "America/Bahia" msgstr "ਅਮਰੀਕਾ/ąØ¬ąØ¾ąØ¹ą©€ąØ†ąØøąØŸąØ¾" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "ਬਾਹੀਆ" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "ਅਮਰੀਕਾ/ਬਾਹੀਆ_ਬਾਂਔਰਾਸ" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "ąØ®ą©ˆąØ•ąØøą©€ąØ•ąØØ ąØøą©ˆąØ‚ąØŸąØ°ąØ² ਟਾਈਮ - ਬਾਹੀਆ ਔੇ ਬਾਂਔਰਾਸ" #: timezones.h:120 msgid "America/Barbados" msgstr "ਅਮਰੀਕਾ/ਬਾਰਬਾਔੋਸ" #: timezones.h:121 msgid "America/Belem" msgstr "ਅਮਰੀਕਾ/ਬੀਲੀਮ" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "ਅਮਾਪਾ, E ਪਾਰਾ" #: timezones.h:124 msgid "America/Belize" msgstr "ਅਮਰੀਕਾ/ਬੀਲਿਜ਼ੀ" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "ਅਮਰੀਕਾ/ਬਲਾਂਸ-ਸਾਬਲੋਨ" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "ąØ…ąØŸąØ²ąØ¾ąØ‚ąØŸąØæąØ• ąØøąØŸą©ˆąØ‚ąØ”ąØ°ąØ” ਟਾਈਮ - ąØ•ą©‚ąØˆąØ¬ą©‡ąØ• - ਹੇਠਲਾ ਉੱਤਰੀ ਸ਼ੋਰ" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "ਅਮਰੀਕਾ/ąØ¬ą©‹ąØµą©€ąØøąØŸąØ¾" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "ਰੋਰਾਇਮਾ" #: timezones.h:131 msgid "America/Bogota" msgstr "ਅਮਰੀਕਾ/ąØ¬ą©‹ąØ—ą©‹ąØŸąØ¾" #: timezones.h:132 msgid "America/Boise" msgstr "ਅਮਰੀਕਾ/ਬੋਸੀ" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "ąØ®ąØ¾ąØŠąØ‚ąØØąØŸą©‡ąØØ ਟਾਈਮ - ਦੱਖਣੀ ਇਔਾਹੋ ਤੇ ਪੂਰਬੀ ਓਰੀਗੋਨ" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "ਅਮਰੀਕਾ/ąØ¬ą©‚ąØˆąØØą©‹ąØø ąØąØ…ąØ°ąØø" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "ਅਮਰੀਕਾ/ਕਮਬਿਰਿਜ਼ ąØ–ąØ¾ą©œą©€" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "ąØ®ąØ¾ąØŠąØØąØŸą©‡ąØØ ਟਾਈਮ - ਪੱਛਮੀ ąØØą©‚ąØØąØ¾ąØµą©‚ąØŸ" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "ਅਮਰੀਕਾ/ąØ•ą©ˆąØ‚ąØŖą©‹ ਗਰਾਂਔਾਨ" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "ąØ®ą©ˆąØŸą©‹ ਗਰੋਸੋ ਔੂ ਸੂਲ" #: timezones.h:142 msgid "America/Cancun" msgstr "ਅਮਰੀਕਾ/ਕਾਨਕੂਨ" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "ąØøą©ˆąØ‚ąØŸąØ°ąØ² ਟਾਈਮ - ąØ•ą©‚ąØ‡ąØØąØŸąØ¾ąØØąØ¾ ਰੂ" #: timezones.h:145 msgid "America/Caracas" msgstr "ਅਮਰੀਕਾ/ਕਾਰਾਕਸ" #: timezones.h:146 msgid "America/Catamarca" msgstr "ਅਮਰੀਕਾ/ąØ•ąØ¾ąØŸąØ¾ąØ®ąØ¾ąØ°ąØøąØ¾" #: timezones.h:147 msgid "America/Cayenne" msgstr "ਅਮਰੀਕਾ/ਕਾਯੀਨੀ" #: timezones.h:148 msgid "America/Cayman" msgstr "ਅਮਰੀਕਾ/ਕਾਯਮਾਨ" #: timezones.h:149 msgid "America/Chicago" msgstr "ਅਮਰੀਕਾ/ਸ਼ਿਕਾਗੋ" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "ąØøą©ˆąØ‚ąØŸąØ°ąØ² ਟਾਈਮ" #: timezones.h:152 msgid "America/Chihuahua" msgstr "ਅਮਰੀਕਾ/ਸ਼ਿਹੂਆਹੂਆ" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "ąØ®ą©ˆąØ•ąØøą©€ąØ•ąØØ ąØ®ąØ¾ąØŠąØØąØŸą©‡ąØØ ਟਾਈਮ - ąØšąØæąØ¹ą©‚ąØ†ąØ¹ą©‚ąØ† ਯੂ ਐਸ ਸੀਮਾ ਤੋਂ ਦੂਰ" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "ਅਮਰੀਕਾ/ਕੋਰਲ ਹਾਰਬਰਾਕੋ" #: timezones.h:156 msgid "America/Cordoba" msgstr "ਅਮਰੀਕਾ/ਕੋਰਔੋਬਾ" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "ਅਮਰੀਕਾ/ąØ•ą©‹ąØøąØŸąØ¾ ਰੀਸਾ" #: timezones.h:158 msgid "America/Cuiaba" msgstr "ਅਮਰੀਕਾ/ąØ•ąØæąØŠąØ¬ąØ¾" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "ąØ®ą©ˆąØŸą©‹ ਗਰੋਸੋ" #: timezones.h:161 msgid "America/Curacao" msgstr "ਅਮਰੀਕਾ/ਕੂਰਾਕੋ" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "ਅਮਰੀਕਾ/ਔਮਾਰਕਸ਼ਨ" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "ਪੂਰਬੀ ąØ•ą©‹ąØ†ąØøąØŸ, Scoresbysund ਦਾ ਉੱਤਰੀ" #: timezones.h:165 msgid "America/Dawson" msgstr "ਅਮਰੀਕਾ/ਔਾਵਸਨ" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "ąØŖą©ˆąØøą©€ąØ«ąØæąØ• ਟਾਈਮ - ਉੱਤਰੀ ਯੂਕੋਨ" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "ਅਮਰੀਕਾ/ਔਾਵਸਨ ਕਰੀਕ" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "ąØ®ąØ¾ąØŠąØØąØŸą©‡ąØØ ąØøąØŸą©ˆąØ‚ąØ”ąØ°ąØ” ਟਾਈਮ - ਔਾਵਸਨ ਕਰੀਕ ਤੇ ąØ«ą©‹ąØ°ąØŸ ąØøą©‡ąØ‚ąØŸ ਜੌਹਨ, ਬਰਿਟਸ਼ ਕੋਲੰਬੀਆ" #: timezones.h:171 msgid "America/Denver" msgstr "ਅਮਰੀਕਾ/ਔੀਨਵਰ" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "ąØ®ąØ¾ąØŠąØØąØŸą©‡ąØØ ਟਾਈਮ" #: timezones.h:174 msgid "America/Detroit" msgstr "ਅਮਰੀਕਾ/ąØ”ą©€ąØŸąØ°ą©‹ąØŸą©€" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "ਪੂਰਬੀ ਸਮਾਂ - ਮਿਸ਼ੀਗਨ - ਬਹੁਤੇ ąØŸąØæąØ•ąØ¾ąØ£ą©‡" #: timezones.h:177 msgid "America/Dominica" msgstr "ਅਮਰੀਕਾ/ਔੋਮੀਨੀਸਾ" #: timezones.h:178 msgid "America/Edmonton" msgstr "ਅਮਰੀਕਾ/ąØˆąØ”ąØ®ą©‹ąØØąØŸą©‹ąØØ" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "ąØ®ąØ¾ąØŠąØØąØŸą©‡ąØØ ਟਾਈਮ - ąØ…ąØ²ąØ¬ą©‡ąØ°ąØŸąØ¾, ਪੂਰਬੀ ਬਰਿਟਸ਼ ਕੋਲੰਬੀਆਔਾਵਸਨ ਤੇ ਪੱਛਮੀ ąØøąØ¾ąØøąØ•ąØŸąØšą©‡ąØµąØØ" #: timezones.h:181 msgid "America/Eirunepe" msgstr "ਅਮਰੀਕਾ/ąØˆąØ°ą©‚ąØØą©€ąØŖą©€" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "W ąØąØ®ąØ¾ą©›ą©‹ąØØąØœ" #: timezones.h:184 msgid "America/El_Salvador" msgstr "ਅਮਰੀਕਾ/ąØˆąØ²ąØøąØ²ąØ¾ąØµąØ¾ąØ”ą©‹ąØ°" #: timezones.h:185 msgid "America/Ensenada" msgstr "ਅਮਰੀਕਾ/ਇਨਸੀਨਾਔਾ" #: timezones.h:186 msgid "America/Fortaleza" msgstr "ਅਮਰੀਕਾ/ąØ«ą©‹ąØ°ąØŸąØ¾ąØ²ą©€ą©›ąØ¾" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "NE ਬਰਾਜ਼ੀਲ (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "ਅਮਰੀਕਾ/ąØ«ą©‹ąØ°ąØŸ ਬਾਯਨੀ" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "ਅਮਰੀਕਾ/ਗਲਾਸੀ ąØ–ąØ¾ą©œą©€" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "ąØąØŸąØ²ąØ¾ąØ‚ąØŸąØæąØ• ਸਮਾਂ - ਨੋਵਾ ąØøąØ•ą©‹ąØŸą©€ąØ† - ਄ਾਂ ąØœąØæą©±ąØ„ą©‡ DST 1966-1971 ਨਹੀਂ ਮਿਲਦਾ" #: timezones.h:193 msgid "America/Godthab" msgstr "ਅਮਰੀਕਾ/ਗੋਔ਄ਾਬ" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "ਬਹੁਤੇ ąØŸąØæąØ•ąØ¾ąØ£ą©‡" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "ਅਮਰੀਕਾ/ਗੂਜ਼ ąØ–ąØ¾ą©œą©€" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "ąØąØŸąØ²ąØ¾ąØ‚ąØŸąØæąØ• ਸਮਾਂ - ąØ²ą©ˆąØ¬ąØ°ą©‡ąØ”ąØ¾ąØ° - ਵਧੇਰੇ ਸ਄ਿਤੀਆਂ" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "ਅਮਰੀਕਾ/ਗਰਾਂਔ ਤੁਰਕ" #: timezones.h:200 msgid "America/Grenada" msgstr "ਅਮਰੀਕਾ/ਗਰੀਨਾਔਾ" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "ਅਮਰੀਕਾ/ąØ—ą©‚ąØ”ą©€ąØ²ą©‹ąØŠąØŖą©€" #: timezones.h:202 msgid "America/Guatemala" msgstr "ਅਮਰੀਕਾ/ąØ—ą©ąØ†ąØŸąØ¾ąØ®ąØ¾ąØ²ąØ¾" #: timezones.h:203 msgid "America/Guayaquil" msgstr "ਅਮਰੀਕਾ/ąØ—ą©ąØÆąØ¾ąØ•ąØæąØŠąØ²" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "ąØ®ą©‡ąØØąØ²ą©ˆąØ‚ąØ”" #: timezones.h:206 msgid "America/Guyana" msgstr "ਅਮਰੀਕਾ/ਗੁਆਨਾ" #: timezones.h:207 msgid "America/Halifax" msgstr "ਅਮਰੀਕਾ/ਹਾਲੀਫੇਕਸ" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "ąØąØŸąØ²ąØ¾ąØ‚ąØŸąØæąØ• ਸਮਾਂ - ਨੋਵਾ ąØøąØ•ą©‹ąØŸą©€ąØ† (ਵਧੇਰੇ ਸ਄ਿਤੀਆਂ), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "ਅਮਰੀਕਾ/ਹਾਵਾਨਾ" #: timezones.h:211 msgid "America/Hermosillo" msgstr "ਅਮਰੀਕਾ/ਹੀਰਮੋਸੀਲੋ" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "ąØ®ąØ¾ąØŠąØ‚ąØØąØŸą©‡ąØØ ąØøąØŸą©ˆąØ‚ąØ”ąØ°ąØ” ਸਮਾਂ - ਸੋਨੋਰਾ" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "ਅਮਰੀਕਾ/ਇੰਔੀਆਨਾ/ਇੰਔੀਆਨਾਪੋਲੀਸ" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "ਪੂਰਬੀ ਸਮਾਂ - ਇੰਔਿਆਨਾ - ਵਧੇਰੇ ਸ਄ਿਤੀਆਂ" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "ਅਮਰੀਕਾ/ਇੰਔੀਆਨਾ/ਕਨੋਸ਼" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "ąØøą©ˆąØ‚ąØŸąØ°ąØ² ਸਮਾਂ - ਇੰਔਿਆਨਾ - ąØøąØŸąØ¾ąØ°ąØ•ą©‡ ਦੇਸ" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "ਅਮਰੀਕਾ/ਇੰਔੀਆਨਾ/ਮਰੀਨਗੋ" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "ਪੂਰਬੀ ਸਮਾਂ - ਇੰਔਿਆਨਾ - ਕਰਾਓਫੋਰਔ ਦੇਸ" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "ਅਮਰੀਕਾ/ਇੰਔੀਆਨਾ/ąØŖą©€ąØŸąØ°ąØøąØ¬ąØ°ąØ—" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "ਪੂਰਬੀ ਸਮਾਂ - ਇੰਔਿਆਨਾ - ਪਾਈਰ ਦੇਸ" #: timezones.h:226 msgid "America/Indianapolis" msgstr "ਅਮਰੀਕਾ/ਇੰਔੀਆਨਾਪੋਲੀਸ" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "ਅਮਰੀਕਾ/ਇੰਔਿਆਨਾ/ਟੈੱਲ_ąØøąØæąØŸą©€" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "ąØøą©ˆąØ‚ąØŸąØ°ąØ² ਟਾਈਮ - ਇੰਔਿਆਨਾ - ąØŖą©ˆąØ°ą©€ ਦੇਸ" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "ਅਮਰੀਕਾ/ਇੰਔੀਆਨਾ/ਵੀਵਾਆ" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "ਪੂਰਬੀ ਸਮਾਂ - ਇੰਔਿਆਨਾ - ąØøąØµąØæą©›ąØ°ąØ²ą©ˆąØ‚ąØ” ਦੇਸ" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "ਅਮਰੀਕਾ/ਇੰਔੀਆਨਾ/ਵੀਨਸੀਨਸ" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "ਪੂਰਬੀ ਸਮਾਂ - ਇੰਔਿਆਨਾ - ąØ”ąØ¾ąØµą©€ąØąØø, ਔੂਬੋਇਸ, ਕਨੋਕਸ ਤੇ ਮਾਰਟਿਨ ਦੇਸ" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "ਅਮਰੀਕਾ/ਇੰਔੀਆਨਾ/ąØµą©€ąØØąØ¾ąØ®ą©ˆąØ•" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "ਪੂਰਬੀ ਸਮਾਂ - ਇੰਔਿਆਨਾ - ਪੂਲਾਸਕੀ ਦੇਸ" #: timezones.h:239 msgid "America/Inuvik" msgstr "ਅਮਰੀਕਾ/ਇਨੂਵਿਕ" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "ąØ®ąØ¾ąØŠąØØąØŸą©‡ąØØ ਟਾਈਮ - ਪੱਛਮੀ ਉੱਤਰ-ਪੱਛਮੀ ਸ਼ਾਸ਼ਤ-ąØŖą©ąØ°ąØ¦ą©‡ąØø" #: timezones.h:242 msgid "America/Iqaluit" msgstr "ਅਮਰੀਕਾ/ąØ‡ąØŠąØ²ą©‚ąØŸ" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "ਪੂਰਬੀ ਸਮਾਂ - ਪੂਰਬੀ ąØØą©‚ąØØąØ¾ąØµąØŸ - ਵਧੇਰੇ ਸ਄ਿਤੀਆਂ" #: timezones.h:245 msgid "America/Jamaica" msgstr "ਅਮਰੀਕਾ/ąØœą©ˆąØ®ąØæąØ•ąØ¾" #: timezones.h:246 msgid "America/Jujuy" msgstr "ਅਮਰੀਕਾ/ąØœą©‚ąØœąØˆ" #: timezones.h:247 msgid "America/Juneau" msgstr "ਅਮਰੀਕਾ/ਹੂਨਿਆਉ" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "ਅਲਾਸਕਾ ਟਾਈਮ - ਅਲਾਸਕਾ ąØŖąØ¾ąØØąØ¹ą©ˆąØ‚ąØ”ąØ²" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "ਅਮਰੀਕਾ/ąØ•ą©€ąØØąØŸą©‚ąØ•ą©€/ਲੂੳਸਵਿਲੀ" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "ਪੂਰਬੀ ਸਮਾਂ - ąØ•ą©€ąØØąØŸą©‚ąØ•ą©€ - ਲੂੳਸਵਿਲੀ ਖੇਤਰ" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "ਅਮਰੀਕਾ/ąØ•ą©€ąØØąØŸą©‚ąØ•ą©€/ąØ®ą©‹ąØØąØŸą©€ąØøą©€ąØ²ą©‹" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "ਪੂਰਬੀ ਸਮਾਂ - ąØ•ą©€ąØØąØŸą©‚ąØ•ą©€ - ਵਾਯਨੇ ਦੇਸ" #: timezones.h:256 msgid "America/Knox_IN" msgstr "ਅਮਰੀਕਾ/ਕਨੂਸ਼ ਇਨ" #: timezones.h:257 msgid "America/La_Paz" msgstr "ਅਮਰੀਕਾ/ਲਾ ਪਾਜ਼" #: timezones.h:258 msgid "America/Lima" msgstr "ਅਮਰੀਕਾ/ਲੀਮਾ" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "ਅਮਰੀਕਾ/ਲਾਸ ąØą©›ąØ²ąØø" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤ ਸਮਾਂ" #: timezones.h:262 msgid "America/Louisville" msgstr "ਅਮਰੀਕਾ/ਲੂਇਸਵਿਲੀ" #: timezones.h:263 msgid "America/Maceio" msgstr "ਅਮਰੀਕਾ/ąØ®ąØøą©€ąØˆ" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "ਅਲਾਗੋਆਸ, ਸੇਰਗਿਪੇ" #: timezones.h:266 msgid "America/Managua" msgstr "ਅਮਰੀਕਾ/ਮਾਨਾਗੂਨਾ" #: timezones.h:267 msgid "America/Manaus" msgstr "ਅਮਰੀਕਾ/ਮਾਨਾਸ" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "ਈ ਐਮਾਜ਼ੋਨਸ" #: timezones.h:270 msgid "America/Marigot" msgstr "ਅਮਰੀਕਾ/ąØ®ą©ˆąØ°ą©€ąØ—ą©‹ąØŸ" #: timezones.h:271 msgid "America/Martinique" msgstr "ਅਮਰੀਕਾ/ąØ®ąØ¾ąØ°ą©€ąØŸą©€ąØ•ąØæąØŠ" #: timezones.h:272 msgid "America/Matamoros" msgstr "ਅਮਰੀਕਾ/ąØ®ą©ˆąØŸąØ¾ąØ®ą©‹ąØ°ą©‹ąØø" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "ਯੂ ਐਸ ąØøą©ˆąØ‚ąØŸąØ°ąØ² ਟਾਈਮ - ਕੋਆਹੂਇਲਾ, ਔੂਰਾਂਗੋ, ąØØą©‚ąØąØµą©‹ ਲੀਓਨ, ਟਾਮਾਊਲਿਪਸ ਯੂ ਐਸ ਸੀਮਾ ਦੇ ąØØą©‡ą©œą©‡" #: timezones.h:275 msgid "America/Mazatlan" msgstr "ਅਮਰੀਕਾ/ąØ®ąØ¾ą©›ąØ¾ąØŸąØ²ąØ¾ąØØ" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "ąØ®ąØ¾ąØŠąØØąØŸą©‡ąØØ ਟਾਈਮ - ਐਸ ਬਾਜਾ, ਨਾਯਾਰਿਟ, ਸਿਨਾਲੋਆ" #: timezones.h:278 msgid "America/Mendoza" msgstr "ਅਮਰੀਕਾ/ਮਾਨਔੋਜ਼ਾ" #: timezones.h:279 msgid "America/Menominee" msgstr "ਅਮਰੀਕਾ/ąØ®ą©€ąØØą©‹ąØ®ą©€ąØØąØˆ" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "ąØøą©ˆąØ‚ąØŸąØ°ąØ² ਸਮਾਂ - ąØ®ąØæąØšą©€ąØ—ąØØ - ਔਿਕਿਨਸਨ, ąØœą©€ąØ—ą©ˆąØ¬ąØæąØ•, ਆਇਰਨ ਤੇ ਮੇਨੋਮਿਨੀ ਦੇਸ" #: timezones.h:282 msgid "America/Merida" msgstr "ਅਮਰੀਕਾ/ਮੀਰਾਔਾ" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "ąØøą©ˆąØ‚ąØŸąØ°ąØ² ਟਾਈਮ - ąØ•ą©ˆąØ‚ąØŖą©‡ąØšą©‡, ąØÆą©‚ąØ•ąØ¾ąØŸąØØ" #: timezones.h:285 msgid "America/Mexico_City" msgstr "ਅਮਰੀਕਾ/ąØ®ą©ˆąØ•ąØøą©€ąØ•ąØæ ਸ਼ਹਿਰ" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "ąØøą©ˆąØ‚ąØŸąØ°ąØ² ਸਮਾਂ - ਬਹੁਤੇ ąØŸąØæąØ•ąØ¾ąØ£ą©‡" #: timezones.h:288 msgid "America/Miquelon" msgstr "ਅਮਰੀਕਾ/ąØ®ą©€ąØ•ąØŠąØ‡ąØ²ą©‹ąØØ" #: timezones.h:289 msgid "America/Moncton" msgstr "ਅਮਰੀਕਾ/ąØ®ą©‹ąØØąØøąØŸą©‹ąØØ" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "ąØąØŸąØ²ąØ¾ąØ‚ąØŸąØæąØ• ਸਮਾਂ - ਨਿਊ ਬਰੂਨਸਵਿਕ" #: timezones.h:292 msgid "America/Monterrey" msgstr "ਅਮਰੀਕਾ/ąØ®ą©‹ąØØąØŸą©€ąØ°ą©€ąØ“" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "ąØ®ą©ˆąØ•ąØøą©€ąØ•ąØØ ąØøą©ˆąØ‚ąØŸąØ°ąØ² ਟਾਈਮ - ਕੋਆਹੂਇਲਾ, ਔੂਰਾਂਗੋ, ąØØą©‚ąØąØµą©‹ ਲੀਓਨ, ਟਾਮਾਊਲਿਪਸ ਯੂ ਐਸ ਸੀਮਾਂ ਤੋਂ ਦੂਰ" #: timezones.h:295 msgid "America/Montevideo" msgstr "ਅਮਰੀਕਾ/ąØ®ą©‹ąØØąØŸą©€ąØµą©€ąØ”ąØæąØ“" #: timezones.h:296 msgid "America/Montreal" msgstr "ਅਮਰੀਕਾ/ąØ®ą©‹ąØØąØŸąØ°ą©€ąØ²" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "ਪੂਰਬੀ ਸਮਾਂ - ąØ•ąØæąØŠąØ¬ąØ• - ਬਹੁਤੇ ąØŸąØæąØ•ąØ¾ąØ£ą©‡" #: timezones.h:299 msgid "America/Montserrat" msgstr "ਅਮਰੀਕਾ/ąØ®ą©‹ąØØąØŸąØøą©€ąØ°ą©‡ąØŸ" #: timezones.h:300 msgid "America/Nassau" msgstr "ਅਮਰੀਕਾ/ąØØą©€ąØøąØ¾ąØŠ" #: timezones.h:301 msgid "America/New_York" msgstr "ਅਮਰੀਕਾ/ਨਿਊ ਯਾਰਕ" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "ਪੂਰਬੀ ਸਮਾਂ" #: timezones.h:304 msgid "America/Nipigon" msgstr "ਅਮਰੀਕਾ/ਨੀਪੀਗੋਨ" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "ਪੂਰਬੀ ਸਮਾਂ - ąØ‰ąØØąØŸąØ¾ąØ°ą©€ąØ“ ਤੇ ąØ•ą©‚ąØąØ¬ą©‡ąØ• - ਸ਄ਿਤੀ ąØœąØæą©±ąØ„ą©‡ DST 1967-1973 ਨਹੀਂ ਮਿਲਦੇ" #: timezones.h:307 msgid "America/Nome" msgstr "ਅਮਰੀਕਾ/ਨੋਮੀ" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "ਅਲਾਸਕਾ ਸਮਾਂ - ਪੱਛਮੀ ਅਲਾਸਕਾ" #: timezones.h:310 msgid "America/Noronha" msgstr "ਅਮਰੀਕਾ/ਨੋਰੋਹਾ" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "ąØąØŸąØ²ąØ¾ąØŸąØæąØ• ąØŸąØ¾ąØŖą©‚" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "ਅਮਰੀਕਾ/ਉਤਰੀ ąØ”ąØ¾ąØ•ą©‹ąØŸąØ¾/ਕੇਦਰੀ" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "ąØøą©ˆąØ‚ąØŸąØ°ąØ² ਸਮਾਂ - ਉੱਤਰੀ ąØ”ą©€ąØ•ą©‹ąØŸąØ¾ - ਓਲਿਵਰ ਦੇਸ" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "ਅਮਰੀਕਾ/ਉਤਰੀ ąØ”ąØ¾ąØ•ą©‹ąØŸąØ¾/ਨਵਾਂਸਾਲੀਮ" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "ąØøą©ˆąØ‚ąØŸąØ°ąØ² ਸਮਾਂ - ਉੱਤਰੀ ąØ”ą©€ąØ•ą©‹ąØŸąØ¾ - ąØ®ą©ŒąØ°ąØŸą©‹ąØØ ਦੇਸ (ਮੰਔਾਨ ਖੇਤਰ ਤੋਂ ਬਿਨਾਂ)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "ਅਮਰੀਕਾ/ąØŠąØœą©€ąØØąØ¾ąØ—ąØ¾" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "ਯੂ ਐਸ ąØ®ąØ¾ąØŠąØØąØŸą©‡ąØØ ਟਾਈਮ - ąØšąØæąØ¹ą©‚ąØ†ąØ¹ą©‚ąØ† ਯੂ ਐਸ ਸੀਮਾਂ ਦੇ ąØØą©‡ą©œą©‡" #: timezones.h:322 msgid "America/Panama" msgstr "ਅਮਰੀਕਾ/ਪੈਮਾਨਾ" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "ਅਮਰੀਕਾ/ąØŖąØæąØØąØ—ąØØą©€ąØ°ąØŸą©‚ąØ—" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "ਪੂਰਬੀ ਸਮਾਂ - ąØŖą©ˆąØ‚ąØ—ąØØąØæąØ°ąØŸą©‚ą©°ąØ—, ąØØą©‚ąØØąØ¾ąØµąØŸ" #: timezones.h:326 msgid "America/Paramaribo" msgstr "ਅਮਰੀਕਾ/ਪਾਰਾਮਾਰੀਬੋ" #: timezones.h:327 msgid "America/Phoenix" msgstr "ਅਮਰੀਕਾ/ਫੋਨਿਸ਼" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "ąØ®ąØ¾ąØŠąØ‚ąØŸą©‡ąØØ ąØøąØŸą©ˆąØ‚ąØ”ąØ°ąØ” ਟਾਈਮ - ਅਰੀਜ਼ੋਨਾ" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "ਅਮਰੀਕਾ/ąØŖą©‹ąØ°ąØŸ-ਅਸ-ąØŖą©ąØ°ąØæą©°ąØø" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "ਅਮਰੀਕਾ/ąØŖą©‹ąØ°ąØŸą©‹ ਅਸਰੀ" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "ਅਮਰੀਕਾ/ąØŖą©‹ąØ°ąØŸ ਆਫ ਸਪੇਨ" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "ਅਮਰੀਕਾ/ąØŖą©‹ąØ°ąØŸą©‹ ਵੀਲਹੋ" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "ਰੋਨਔੋਨੀਆ" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "ਅਮਰੀਕਾ/ąØŖą©‹ąØŸąØŸą©‹ ਰੀਕੋ" #: timezones.h:337 msgid "America/Rainy_River" msgstr "ਅਮਰੀਕਾ/ਰੇਨੀ ਰੀਵਰ" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "ąØøą©ˆąØ‚ąØŸąØ°ąØ² ਟਾਈਮ - ąØ°ą©ˆąØØą©€ ਰਿਵਰ ਤੇ ąØ«ą©‹ąØ°ąØŸ ਫਰਾਂਸ, ąØ“ąØØąØŸąØ¾ąØ°ą©€ąØ“" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "ਅਮਰੀਕਾ/ąØ°ą©ˆąØØąØæąØ•ąØæąØØ ąØ‡ąØØąØ²ąØæąØŸ" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "ąØøą©ˆąØ‚ąØŸąØ°ąØ² ਸਮਾਂ - ਕੇਂਦਰੀ ąØØą©‚ąØØąØ¾ąØµąØŸ" #: timezones.h:343 msgid "America/Recife" msgstr "ਅਮਰੀਕਾ/ąØ°ą©€ąØøąØ¾ąØˆąØø" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "ਪੇਰਨਾਮਬੂਕੋ" #: timezones.h:346 msgid "America/Regina" msgstr "ਅਮਰੀਕਾ/ਰੀਗੀਨਾ" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "ąØøą©ˆąØ‚ąØŸąØ°ąØ² ąØøąØŸą©ˆąØ‚ąØ”ąØ°ąØ” ਟਾਈਮ - ąØøąØ¾ąØøąØ•ąØŸąØšą©‡ąØµąØØ - ਵਧੇਰੇ ਸ਄ਿਤੀਆ" #: timezones.h:349 msgid "America/Resolute" msgstr "ਅਮਰੀਕਾ/ąØ°ą©Œą©°ą©‹ąØ²ą©‚ąØŸ" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "ਪੂਰਬੀ ąØøąØŸą©ˆąØ‚ąØ”ąØ°ąØ” ਟਾਈਮ - ąØ°ą©ˆą©›ą©‹ąØ²ą©‚ąØŸ, ąØØą©‚ąØØąØ¾ąØµąØŸ" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "ਅਮਰੀਕਾ/ਰਾਈ ਬਰਾਸਕੋ" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "ąØąØ•ąØ°" #: timezones.h:355 msgid "America/Rosario" msgstr "ਅਮਰੀਕਾ/ਰੋਸਾਰੀਉ" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "ਅਮਰੀਕਾ/ąØøąØ¾ąØ‚ąØŸąØ¾_ąØˆąØøą©‡ąØ¬ąØ²" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "ąØ®ą©ˆąØ•ąØøą©€ąØ•ąØØ ąØŖą©ˆąØøą©€ąØ«ąØæąØ• ਟਾਈਮ - ਬਾਜਾ ąØ•ą©ˆąØ²ą©‡ąØ«ą©‹ąØ°ąØØą©€ąØ†ąØ‚ ਯੂ ਐਸ ਸੀਮਾਂ ਤੋਂ ਦੂਰ" #: timezones.h:359 msgid "America/Santarem" msgstr "ਅਮਰੀਕਾ/ąØøą©°ąØŸą©‹ąØ†ąØ—ą©‹" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "W ਪਾਰਾ" #: timezones.h:362 msgid "America/Santiago" msgstr "ਅਮਰੀਕਾ/ąØøą©°ąØŸą©‹ąØ†ąØ—ą©‹" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "ਅਮਰੀਕਾ/ąØøą©°ąØŸą©‹ ਔੋਮੀਨਗੋ" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "ਅਮਰੀਕਾ/ਸਾਊ ਪਾਲੋ" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "S & SE ਬਰਾਜ਼ੀਲ (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "ਅਮਰੀਕਾ/ਸਕਰੋਸਬਸ਼ੂਔ" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "ąØøąØ•ą©‹ąØ°ąØøąØ¬ąØ¾ąØˆąØøąØ¾ąØŠąØ‚ąØ” / ąØ‡ąØŸą©‹ąØ•ą©‹ąØ°ąØŸą©‚ąØ°ąØ®ąØæąØŸ" #: timezones.h:372 msgid "America/Shiprock" msgstr "ਅਮਰੀਕਾ/ਸ਼ਿਪਰੋਕ" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "ąØ®ąØ¾ąØŠąØØąØŸą©‡ąØØ ਟਾਈਮ - ąØØąØµąØ¾ąØœą©‹" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "ਅਮਰੀਕਾ/ąØøąØŸąØ¬ąØ¾ąØ°ąØ„ą©‡ąØ²ą©‡ąØ®ą©€" #: timezones.h:376 msgid "America/St_Johns" msgstr "ਅਮਰੀਕਾ/ąØøą©‡ąØŸ ąØœą©‹ąØØąØø" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "ąØØąØæąØŠąØ«ąØ¾ąØŠąØ‚ąØ”ąØ²ą©ˆąØ‚ąØ” ਟਾਈਮ, SE ąØ²ą©ˆąØ¬ąØ°ą©‡ąØ”ąØ¾ąØ° ਸਮੇਤ" #: timezones.h:379 msgid "America/St_Kitts" msgstr "ਅਮਰੀਕਾ/ąØøą©‡ąØŸ ąØ•ą©€ąØŸąØø" #: timezones.h:380 msgid "America/St_Lucia" msgstr "ਅਮਰੀਕਾ/ąØøą©‡ąØŸ ਲੂਸੀਕਾ" #: timezones.h:381 msgid "America/St_Thomas" msgstr "ਅਮਰੀਕਾ/ąØøą©‡ąØŸ ਄ਾਮਸ" #: timezones.h:382 msgid "America/St_Vincent" msgstr "ਅਮਰੀਕਾ/ąØøą©‡ąØŸ ąØµą©€ąØØąØøą©‡ąØŸ" #: timezones.h:383 msgid "America/Swift_Current" msgstr "ਅਮਰੀਕਾ/ਸਵਿਫਟ ąØ•ąØ°ą©°ąØŸ" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "ąØøą©ˆąØ‚ąØŸąØ°ąØ² ąØøąØŸą©ˆąØ‚ąØ”ąØ°ąØ” ਸਮਾਂ - ąØøąØ¾ąØøąØ•ąØŸąØšą©‡ąØµąØØ - ਮੱਧ-ਪੱਛਮੀ" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "ਅਮਰੀਕਾ/ąØŸą©€ąØ—ą©‚ąØøą©€ąØ—ąØ¾ąØ²ąØŖąØ¾" #: timezones.h:387 msgid "America/Thule" msgstr "ਅਮਰੀਕਾ/਄ੂਲੀ" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "਄ੂਲੇ / ąØŖąØæąØŸą©‚ąØ«ąØæąØ•" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "ਅਮਰੀਕਾ/਄ੰਔਰ ąØ–ąØ¾ą©œą©€" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "ਪੂਰਬੀ ਸਮਾਂ - ਄ੰਔਰ ਬੇ, ąØ“ąØŸąØ¾ąØ°ą©€ąØ“" #: timezones.h:393 msgid "America/Tijuana" msgstr "ਅਮਰੀਕਾ/ਤੀਜ਼ੂਨਾ" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "ਯੂ ਐਸ ąØŖą©ˆąØøą©€ąØ«ąØæąØ• ਟਾਈਮ - ਬਾਜਾ ąØ•ą©ˆąØ²ą©ˆąØ«ą©‹ąØ°ąØØą©€ąØ† ਯੂ ਐਸ ਸੀਮਾ ਦੇ ąØØą©‡ą©œą©‡" #: timezones.h:396 msgid "America/Toronto" msgstr "ਅਮਰੀਕਾ/ąØŸą©‹ąØ°ąØ¾ąØ‚ąØŸą©‹ąØ²ąØ¾" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "ਪੂਰਬੀ ਸਮਾਂ - ąØ“ąØŸąØ¾ąØ°ą©€ąØ“ - ਬਹੁਤੇ ąØŸąØæąØ•ąØ¾ąØ£ą©‡" #: timezones.h:399 msgid "America/Tortola" msgstr "ਅਮਰੀਕਾ/ąØŸą©‹ąØ°ąØŸą©‹ąØ²ąØ¾" #: timezones.h:400 msgid "America/Vancouver" msgstr "ਅਮਰੀਕਾ/ਵੇਨਸੋਵਰ" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "ąØŖą©ˆąØøą©€ąØ«ąØæąØ• ਟਾਈਮ - ਪੱਛਮੀ ਬਰਿਟਸ਼ ਕੋਲੰਬੀਆ" #: timezones.h:403 msgid "America/Virgin" msgstr "ਅਮਰੀਕਾ/ąØµąØ°ąØœą©€ąØØą©€ąØ†" #: timezones.h:404 msgid "America/Whitehorse" msgstr "ਅਮਰੀਕਾ/ਵਾਈਟਹਾਰਸ" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "ąØŖą©ˆąØøą©€ąØ«ąØæąØ• ਟਾਈਮ - ਦੱਖਣੀ ਯੂਕੋਨ" #: timezones.h:407 msgid "America/Winnipeg" msgstr "ਅਮਰੀਕਾ/ਵੀਨਿਪੇਗ" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "ąØøą©ˆąØ‚ąØŸąØ°ąØ² ਟਾਈਮ - ąØ®ąØ¾ąØØą©€ąØŸą©‹ąØ¬ąØ¾ ਤੇ ਪੱਛਮੀ ąØ“ąØØąØŸąØ¾ąØ°ą©€ąØ†" #: timezones.h:410 msgid "America/Yakutat" msgstr "ਅਮਰੀਕਾ/ąØÆąØ¾ąØ•ą©‚ąØŸąØ¾ąØŸ" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "ਅਲਾਸਕਾ ਟਾਈਮ - ਅਲਾਸਕਾ ąØŖąØ¾ąØØąØ¹ą©ˆąØ‚ąØ”ąØ² ਨੈੱਟ" #: timezones.h:413 msgid "America/Yellowknife" msgstr "ਅਮਰੀਕਾ/ąØÆą©ˆąØ²ą©‚ąØØąØæąØ«" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "ąØ®ąØ¾ąØŠąØØąØŸą©‡ąØØ ਟਾਈਮ - ąØøą©ˆąØ‚ąØŸąØ°ąØ² ਉੱਤਰੀ-ਪੱਛਮੀ ਸ਼ਾਸ਼ਕ-ąØŖą©ąØ°ąØ¦ą©‡ąØø" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "ąØ…ą©°ąØŸąØ°ąØ¾ąØŸąØæąØ•ąØ¾/ਕੰਸੀ" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "ąØ•ą©‡ąØøą©‡ąØˆ ąØøąØŸą©‡ąØ¶ąØØ, ąØ¬ą©ˆąØ²ą©‡ ąØŖą©ˆąØØąØæąØØąØøą©‚ąØ²ąØ¾" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "ąØ…ą©°ąØŸąØ°ąØ¾ąØŸąØæąØ•ąØ¾/ਔਾਵਿਸ" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "ਔੇਵਿਸ ąØøąØŸą©‡ąØ¶ąØØ, ąØµą©ˆąØøąØŸąØ«ą©‹ąØ²ąØ” ਹਿੱਲਸ" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "ąØ…ą©°ąØŸąØ°ąØ¾ąØŸąØæąØ•ąØ¾/ąØ”ą©‹ąØ®ą©‹ąØØąØŸąØ”ąØÆąØ°ąØµąØæąØ²ą©€" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "ąØ”ą©‚ąØ®ą©ŒąØ‚ąØŸ-d' ąØŠąØ°ąØµąØæąØ²ą©‡ ąØøąØŸą©‡ąØ¶ąØØ, ąØŸą©‡ąØ°ą©‡ ąØąØ”ą©‡ąØ²ą©€ąØ" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "ąØ…ą©°ąØŸąØ°ąØ¾ąØŸąØæąØ•ąØ¾/ąØ®ą©ˆąØ•ąØ•ą©ąØ†ąØ°ą©€" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "ąØ®ą©ˆąØ•ąØ•ą©‚ąØ†ąØ°ą©€ ąØ†ąØˆąØøąØ²ą©ˆąØ‚ąØ” ąØøąØŸą©‡ąØ¶ąØØ, ąØ®ą©ˆąØ•ąØ•ą©‚ąØ†ąØ°ą©€ ąØ†ąØˆąØøąØ²ą©ˆąØ‚ąØ”" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "ąØ…ą©°ąØŸąØ°ąØ¾ąØŸąØæąØ•ąØ¾/ਮਾਵਸੋਨ" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "ਮਾਵਸੋਨ ąØøąØŸą©‡ąØ¶ąØØ, ਹੋਲਮੇ ਬੇ" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "ąØ…ą©°ąØŸąØ°ąØ¾ąØŸąØæąØ•ąØ¾/ਮਕਮੂਰਔੋ" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "ਮਕਮੂਰਔੂ ąØøąØŸą©‡ąØ¶ąØØ, ਰੋਸ ąØ†ąØˆąØøąØ²ą©ˆąØ‚ąØ”" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "ąØ…ą©°ąØŸąØ°ąØ¾ąØŸąØæąØ•ąØ¾/ਪਾਲਮਾਰ" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "ਪਾਲਮਰ ąØøąØŸą©‡ąØ¶ąØØ, ਅਨਵੇਰਸ ąØ†ąØˆąØøąØ²ą©ˆąØ‚ąØ”" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "ąØ…ą©°ąØŸąØ°ąØ¾ąØŸąØæąØ•ąØ¾/ਰੋ਄ੇਰਾਰੁਵ" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "ਰੋ਄ੇਰਾ ąØøąØŸą©‡ąØ¶ąØØ, ਐਔੀਲੇਔ ąØ†ąØˆąØøąØ²ą©ˆąØ‚ąØ”" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "ąØ…ą©°ąØŸąØ°ąØ¾ąØŸąØæąØ•ąØ¾/ਦੱਖਣੀ ਧਰੁਵ" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "ਅਮੂੰਔਸੇਨ-ąØøąØ•ą©ŒąØŸ ąØøąØŸą©‡ąØ¶ąØØ, ਦੱਖਣੀ ਧੁਰਾ" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "ąØ…ą©°ąØŸąØ°ąØ¾ąØŸąØæąØ•ąØ¾/ਸਯੂਵਾ" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "ਸਯੋਵਾ ąØøąØŸą©‡ąØ¶ąØØ, E ਉਨਗੂਲ I" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "ąØ…ą©°ąØŸąØ°ąØ¾ąØŸąØæąØ•ąØ¾/ąØµą©‹ąØøąØŸą©‹ąØ•" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "ąØµą©‹ąØøąØŸą©‹ąØ• ąØøąØŸą©‡ąØ¶ąØØ, S ąØ®ą©ˆąØ—ąØØąØæąØŸ ਧੁਰਾ" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "ąØ…ąØ°ąØøąØŸąØæąØ•/ਲਾਗਯਿਅਰਬਯਾਨ" #: timezones.h:450 msgid "Asia/Aden" msgstr "ąØąØ¶ą©€ąØ†/ਅਦਾਨ" #: timezones.h:451 msgid "Asia/Almaty" msgstr "ąØąØ¶ą©€ąØ†/ąØ…ąØ²ąØ®ąØ¾ąØŸą©€" #: timezones.h:454 msgid "Asia/Amman" msgstr "ąØąØ¶ą©€ąØ†/ਅਮਾਨ" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "ąØąØ¶ą©€ąØ†/ਅਨਾਔੀਰ" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "ਮਾਸਕੋ+08 - ਬੇਰਿੰਗ ਸਮੁੰਦਰ" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "ąØąØ¶ą©€ąØ†/ąØ…ąØ•ąØæąØŠąØŸ" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "ąØ…ąØŸąØÆąØ°ąØ¾ąØŠ (ąØ…ąØŸą©€ąØ°ąØ¾ąØŠ, Gur'yev), ąØ®ą©°ąØ˜ą©‡ąØøąØŸąØ¾ąØŠ (ąØ®ąØ¾ąØØąØ•ąØæąØøąØŸąØ¾ąØŠ)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "ąØąØ¶ą©€ąØ†/ąØ…ąØ•ąØæąØŠąØ¬ą©€" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "ąØ…ąØ•ąØŸą©‹ąØ¬ą©‡ (ąØ…ąØ•ąØŸą©‹ąØ¬ą©‡)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "ąØąØ¶ą©€ąØ†/ਅਸ਼ਗੲਬਾਤ" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "ąØąØ¶ą©€ąØ†/ਅਕਸ਼ਖਾਬਾਦ" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "ąØąØ¶ą©€ąØ†/ਬਗਦਾਦ" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "ąØąØ¶ą©€ąØ†/ਬਹਿਰਾਨ" #: timezones.h:468 msgid "Asia/Baku" msgstr "ąØąØ¶ą©€ąØ†/ਬਾਕੂ" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "ąØąØ¶ą©€ąØ†/ąØ¬ą©ˆąØ•ąØ¾ąØ‚ąØ•" #: timezones.h:470 msgid "Asia/Beirut" msgstr "ąØąØ¶ą©€ąØ†/ąØ¬ą©€ąØ°ą©‚ąØŸ" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "ąØąØ¶ą©€ąØ†/ਬਿਸਕਾਕ" #: timezones.h:472 msgid "Asia/Brunei" msgstr "ąØąØ¶ą©€ąØ†/ਬਰੂਨੀ" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "ąØąØ¶ą©€ąØ†/ਕਲਕੱਤਾ" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "ąØąØ¶ą©€ąØ†/ąØšą©‹ąØ¬ąØ¾ąØ²ąØøąØ¾ąØØ" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "ਔੋਰਨੋਔ, ąØøą©ąØ–ąØ¬ąØ¾ąØŸąØ°" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "ąØąØ¶ą©€ąØ†/ąØšą©‹ąØØąØ•ąØæą©³ąØ‡ą©°ąØ—" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "ąØøą©ˆąØ‚ąØŸąØ°ąØ² ąØšą©€ąØØ - ąØøąØæąØšą©ąØ†ąØØ, ਯੂਨਾਨ, ਗੂਆਂਗਕਸੀ, ਸ਼ਾਂਕਸੀ, ąØ—ą©‚ąØ‡ą©›ąØ¹ą©‹ąØŠ, ąØ†ąØ¦ąØæą„¤" #: timezones.h:480 msgid "Asia/Chungking" msgstr "ąØąØ¶ą©€ąØ†/ąØšą©°ąØ—ąØ•ąØæą©°ąØ—" #: timezones.h:481 msgid "Asia/Colombo" msgstr "ąØąØ¶ą©€ąØ†/ਕੋਲੰਬੋ" #: timezones.h:482 msgid "Asia/Dacca" msgstr "ąØąØ¶ą©€ąØ†/ਔਾਸੀਆ" #: timezones.h:483 msgid "Asia/Damascus" msgstr "ąØąØ¶ą©€ąØ†/ਔਾਮਸਾਊਸ" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "ąØąØ¶ą©€ąØ†/ਢਾਕਾ" #: timezones.h:485 msgid "Asia/Dili" msgstr "ąØąØ¶ą©€ąØ†/ਦੀਲੀ" #: timezones.h:486 msgid "Asia/Dubai" msgstr "ąØąØ¶ą©€ąØ†/ਔੁਬਈ" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "ąØąØ¶ą©€ąØ†/ਔੂਸ਼ਾਨਬੀ" #: timezones.h:488 msgid "Asia/Gaza" msgstr "ąØąØ¶ą©€ąØ†/ਗਾਜ਼ਾ" #: timezones.h:489 msgid "Asia/Harbin" msgstr "ąØąØ¶ą©€ąØ†/ਹਰਬਿਨ" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "ąØ¹ą©‡ąØ‡ąØ²ą©ŒąØ‚ąØ—ąØœą©€ąØ†ąØ‚ąØ— (ਮੋਹੇ ਤੋਂ ਬਿਨਾਂ), ਜਿਲਿਨ" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "ąØąØ¶ą©€ąØ†/ąØšą©‹ąØØąØ•ąØæą©³ąØ‡ą©°ąØ—" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "ąØąØ¶ą©€ąØ†/ਹਾਂਗਕਾਂਗ" #: timezones.h:494 msgid "Asia/Hovd" msgstr "ąØąØ¶ą©€ąØ†/ਹੋਵਔ" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "ਬਾਯਾਨ-ਉਲਗਿਯੇ, ਗੋਵੀ-ąØ…ąØ²ąØŸąØ¾ąØˆ, ਹੋਵਔ, ਉਵਸ, ਜ਼ਾਵਖਾਨ" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "ąØąØ¶ą©€ąØ†/ąØ†ąØˆąØ°ąØ²ą©‚ąØøąØ•" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "ਮਾਸਕੋ+05 - ਲਾਕੇ ąØ¬ą©ˆąØ•ąØ¾ąØ²" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "ąØąØ¶ą©€ąØ†/ąØ‡ąØøąØŸąØ¤ąØ¾ąØ²ąØ¬ą©ąØ²" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "ąØąØ¶ą©€ąØ†/ąØœą©ˆąØ•ąØ¾ąØ°ąØ¤ąØ¾" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "ਜਾਵਾ ਤੇ ਸੁਮਾਤਰਾ" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "ąØąØ¶ą©€ąØ†/ąØœąØ¾ąØ‡ąØŖą©ąØ°" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "ਇਰਿਆਨ ਜਾਯਾ ąØšą©‡ ਮੋਲੂਕਾਸ" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "ąØąØ¶ą©€ąØ†/ਜ਼ੇਰੂਸ਼ੇਲਮ" #: timezones.h:508 msgid "Asia/Kabul" msgstr "ąØąØ¶ą©€ąØ†/ਕਾਬਲ" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "ąØąØ¶ą©€ąØ†/ąØ•ąØ¾ąØ®ąØšąØ¾ąØŸąØ•ąØ¾" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "ਮਾਸਕੋ+08 - ąØ•ąØ¾ąØ®ąØšąØ¾ąØŸąØ•ąØ¾" #: timezones.h:512 msgid "Asia/Karachi" msgstr "ąØąØ¶ą©€ąØ†/ąØ•ąØ°ąØ¾ąØšą©€" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "ąØąØ¶ą©€ąØ†/ਕਾਸ਼ਗਰ" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "ਪੱਛਮੀ ąØŸąØæąØ¬ą©‡ąØŸ ਤੇ ą©›ąØæąØØąØœąØæąØ†ąØ‚ąØ—" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "ąØąØ¶ą©€ąØ†/ਕਾਂਠਮਾਔੂ" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "ąØąØ¶ą©€ąØ†/ਕਾਂਠਮਾਔੂ" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "ąØąØ¶ą©€ąØ†/ਕੋਲਕਾਤਾ" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "ąØąØ¶ą©€ąØ†/ਕਰਸਨੀਯਾਰਸ਼ਕ" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "ਮਾਸਕੋ+04 - ąØÆą©‡ąØØą©€ąØøą©‡ąØˆ ਰਿਵਰ" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "ąØąØ¶ą©€ąØ†/ਕੁੰਆਲਾਮਪੁਰ" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "ਪੇਨਿਨਸੂਲਾਰ ਮਲੇਸ਼ੀਆ" #: timezones.h:525 msgid "Asia/Kuching" msgstr "ąØąØ¶ą©€ąØ†/ąØ•ą©‹ąØšą©€ąØ‡ą©°ąØ—" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "ਸਾਬਾਹ ਤੇ ਸਾਰਾਵਾਕ" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "ąØąØ¶ą©€ąØ†/ąØ•ą©ąØµą©ˆąØ¤" #: timezones.h:529 msgid "Asia/Macao" msgstr "ąØąØ¶ą©€ąØ†/ਮਾਸੀਕੋ" #: timezones.h:530 msgid "Asia/Macau" msgstr "ąØąØ¶ą©€ąØ†/ਮਾਸਕੁ" #: timezones.h:531 msgid "Asia/Magadan" msgstr "ąØąØ¶ą©€ąØ†/ਮਾਗਾਔਾਨ" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "ਮਾਸਕੋ+08 - ਮਾਗਾਔਨ" #: timezones.h:534 msgid "Asia/Makassar" msgstr "ąØąØ¶ą©€ąØ†/ਮਾਕਾਸਾਰ" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "ਪੂਰਬ ਤੇ ਦੱਖਣ ਬੋਰਨੇਓ, ਸੇਲੇਬੇਸ, ਬਾਲੀ, ਨੂਸਾ ąØŸą©‡ąØ‚ąØ—ąØ¾ąØ°ąØ¾, ਪੱਛਮ ąØŸąØæąØ®ą©‹ąØ°" #: timezones.h:537 msgid "Asia/Manila" msgstr "ąØąØ¶ą©€ąØ†/ਮਾਨੀਲਾ" #: timezones.h:538 msgid "Asia/Muscat" msgstr "ąØąØ¶ą©€ąØ†/ąØ®ąØ¾ąØøąØ•ąØŸ" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "ąØąØ¶ą©€ąØ†/ਨੀਸੋਸੀਆ" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "ąØąØ¶ą©€ąØ†/ąØØą©‹ąØµą©‹ąØ•ą©‚ą©›ąØØą©‡ąØŸąØøąØ•" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "ਮਾਸਕੋ+03 - ąØØą©‹ąØµą©‹ąØ•ą©‚ą©›ąØØą©‡ąØŸąØøąØ•" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "ąØąØ¶ą©€ąØ†/ਨੋਵੋਸੀਬੀਰਸਕ" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "ਮਾਸਕੋ+03 - ਨੋਵੋਸੀਬੀਰਸਕ" #: timezones.h:546 msgid "Asia/Omsk" msgstr "ąØąØ¶ą©€ąØ†/ਓਮਸਕ" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "ਮਾਸਕੋ+03 - ਪੱਛਮੀ ąØøąØ¾ąØˆąØ¬ą©‡ąØ°ą©€ąØ†" #: timezones.h:549 msgid "Asia/Oral" msgstr "ąØąØ¶ą©€ąØ†/ਓਰਾਲ" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "ਪੱਛਮੀ ąØ•ąØœąØ¼ąØ¾ąØ–ąØøąØ¤ąØ¾ąØØ" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "ąØąØ¶ą©€ąØ†/ਫਨੋਮਪੇਨਹ" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "ąØąØ¶ą©€ąØ†/ਪੋਨਰਿਨਕ" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "ਪੱਛਮੀ ਅਤੇ ਕੇਂਦਰੀ ਬੋਰਨੋ" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "ąØąØ¶ą©€ąØ†/ਪਯੂਨਗਯਾਂਗ" #: timezones.h:557 msgid "Asia/Qatar" msgstr "ąØąØ¶ą©€ąØ†/ਕਤਰ" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "ąØąØ¶ą©€ąØ†/ąØ•ąØæąØŠą©›ąØ²ą©‹ąØ°ąØ”ąØ¾" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "ąØ•ąØÆą©›ąØ¾ąØˆąØ²ą©‹ąØ°ąØ”ąØ¾ (Kyzylorda, Kzyl-Orda)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "ąØąØ¶ą©€ąØ†/ਰੰਗੂਨ" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "ąØąØ¶ą©€ąØ†/ਰੀਯਾਧ" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "ąØąØ¶ą©€ąØ†/ਰੀਯਾਧ੮੭" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "ąØąØ¶ą©€ąØ†/ਰੀਯਾਧ੮੮" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "ąØąØ¶ą©€ąØ†/ਰੀਯਾਧ੮੯" #: timezones.h:566 msgid "Asia/Saigon" msgstr "ąØąØ¶ą©€ąØ†/ąØøąØ¾ąØˆąØ—ą©‹ąØØ" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "ąØąØ¶ą©€ąØ†/ਸਾਖਾਲੀਨ" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "ਮਾਸਕੋ+07 - ਸਾਖਾਲਿਨ ąØ†ąØˆąØøąØ²ą©ˆąØ‚ąØ”" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "ąØąØ¶ą©€ąØ†/ਸਮਕੰਦ" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "ਪੱਛਮੀ ąØ‰ąØœąØ¼ą©‡ąØ¬ąØ•ąØøąØ¤ąØ¾ąØØ" #: timezones.h:573 msgid "Asia/Seoul" msgstr "ąØąØ¶ą©€ąØ†/ਸਿਊਲ" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "ąØąØ¶ą©€ąØ†/ਸਿੰਘਾਈ" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "ਪੂਰਬੀ ąØšą©€ąØØ - ąØ¬ą©€ąØœąØ¼ąØæą©°ąØ—, ਗਾਂਗਔੋਗ, ਸ਼ਿੰਘਾਈ ਆਦਿ" #: timezones.h:577 msgid "Asia/Singapore" msgstr "ąØąØ¶ą©€ąØ†/ਸਿੰਘਾਪੁਰ" #: timezones.h:578 msgid "Asia/Taipei" msgstr "ąØąØ¶ą©€ąØ†/ąØ¤ąØ¾ąØˆąØŖą©€" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "ąØąØ¶ą©€ąØ†/ਤਾਸ਼ਕੰਦ" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "ਪੂਰਬੀ ąØ‰ąØœąØ¼ą©‡ąØ¬ąØ•ąØøąØ¤ąØ¾ąØØ" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "ąØąØ¶ą©€ąØ†/ਤਬੀਲੀਸੀ" #: timezones.h:583 msgid "Asia/Tehran" msgstr "ąØąØ¶ą©€ąØ†/ਤਹਿਰਾਨ" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "ąØąØ¶ą©€ąØ†/ਤੀਲਅਵਾਵ" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "ąØąØ¶ą©€ąØ†/਄ੀਮਬੂ" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "ąØąØ¶ą©€ąØ†/਄ੀਮਫੂ" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "ąØąØ¶ą©€ąØ†/ąØŸą©‹ąØ•ą©€ąØ“" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "ąØąØ¶ą©€ąØ†/ąØŠą©›ą©°ąØ— ਪਾਨਔਿੰਗ" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "ąØąØ¶ą©€ąØ†/ਊਲਾਨਬਾਟਰ" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "ąØąØ¶ą©€ąØ†/ąØ…ąØ²ąØ¾ąØØąØ¬ąØ¾ąØŸą©‹ąØ°" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "ąØąØ¶ą©€ąØ†/ੳਰੂਮਕੀ" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "ਬਹੁਤਾ ਤਿੱਬਤ ਅਤੇ ąØœąØ¼ąØæą©°ąØœąØ¾ąØ‚ąØ—" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "ąØąØ¶ą©€ąØ†/ਵੀਅਤਨਾਮ" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "ąØąØ¶ą©€ąØ†/ąØµąØ²ąØ¾ąØ”ą©€ąØµą©‹ąØøąØŸą©‹ąØ•" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "ਮਾਸਕੋ+07 - ਅਮੂਰ ਰਿਵਰ" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "ąØąØ¶ą©€ąØ†/ਯਾਕੂਸਕ" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "ਮਾਸਕੋ+06 - ਲੇਨਾ ਰਿਵਰ" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "ąØąØ¶ą©€ąØ†/ąØÆąØ¾ąØ•ąØŸąØ¾ąØ‡ąØ¬ąØ°ąØ—" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "ਮਾਸਕੋ+02 - ਯੂਰਾਲ" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "ąØąØ¶ą©€ąØ†/ਯਾਰੀਵਾਨ" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "ąØąØŸąØ²ąØ¾ąØŸąØæąØ•/ਅਜ਼ੋਰਸ" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "ਅਜ਼ੋਰੇਸ" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "ąØąØŸąØ²ąØ¾ąØŸąØæąØ•/ਬਾਰਾਮੂਔਾ" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "ąØąØŸąØ²ąØ¾ąØŸąØæąØ•/ਕੰਨਰੀ" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "ąØ•ą©ˆąØØąØ¾ąØ°ą©‡ ąØ†ąØˆąØøąØ²ą©ˆąØ‚ąØ”" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "ąØąØŸąØ²ąØ¾ąØŸąØæąØ•/ਕੇਪ ਵਰਔੀ" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "ąØąØŸąØ²ąØ¾ąØŸąØæąØ•/ąØ«ąØ¾ąØ°ą©‹ąØˆ" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "ąØąØŸąØ²ąØ¾ąØ‚ąØŸąØ¾/ąØ«ąØ¾ąØ°ą©‹ąØˆ" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "ąØąØŸąØ²ąØ¾ąØŸąØæąØ•/ਜਾਨ ਮਾਯਾਨ" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "ąØąØŸąØ²ąØ¾ąØŸąØæąØ•/ਮਾਔਰੀਆ" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "ਮਾਔੇਇਰਾ ąØ†ąØˆąØøąØ²ą©ˆąØ‚ąØ”" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "ąØąØŸąØ²ąØ¾ąØŸąØæąØ•/ąØ°ąØ¾ąØÆąØ•ąØ¾ąØœą©‹ąØµąØæąØ•" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "ąØąØŸąØ²ąØ¾ąØŸąØæąØ•/ਦੱਖਣੀ ąØœąØ¾ąØ°ąØœą©€ąØ†" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "ąØąØŸąØ²ąØ¾ąØŸąØæąØ•/ąØøąØŸąØØąØ²ąØæąØ†" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "ąØąØŸąØ²ąØ¾ąØŸąØæąØ•/ąØøą©‡ąØŸ ਹੀਲੀਨਾ" #: timezones.h:625 msgid "Australia/ACT" msgstr "ąØ…ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ąØąØøą©€ąØŸą©€" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ąØ…ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ąØąØ‚ąØ”ą©€ąØ²ą©ˆąØ‚ąØ”" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "ਦੱਖਣੀ ąØ†ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "ąØ…ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ਬਰਿਸਬੇਨ" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "ąØ•ąØæąØŠąØ‚ąØœąØ¼ąØ²ą©ˆąØ‚ąØ” - ਬਹੁਤੇ ąØŸąØæąØ•ąØ¾ąØ£ą©‡" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ąØ…ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ਬਰੋਕਨ ਹਿਲ" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "ਨਿਊਜ਼ ąØøąØ¾ąØŠąØ‚ąØ„ ąØµą©‡ąØ²ąØœąØ¼ - ਯਾਨਕੋਵਿਨਾ" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ąØ…ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ąØ•ą©ˆąØØąØ¬ąØ°ąØ¾" #: timezones.h:636 msgid "Australia/Currie" msgstr "ąØ…ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ਕੁੱਰਿਰਾ" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "ਤਸਮਾਨੀਆ - ਕਿੰਗ ąØŸąØ¾ąØŖą©‚" #: timezones.h:639 msgid "Australia/Darwin" msgstr "ąØ…ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ਔਾਰਵਿਨ" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "ਉੱਤਰੀ ਖਿੱਤਾ" #: timezones.h:642 msgid "Australia/Eucla" msgstr "ąØ†ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ąØ‡ąØŠąØ•ąØ²ąØ¾" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "ਪੱਛਮੀ ąØ†ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ† - ąØ‡ąØŠąØ•ąØ²ąØ¾ ਖੇਤਰ" #: timezones.h:645 msgid "Australia/Hobart" msgstr "ąØ…ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ąØ¹ą©‹ąØ¬ąØ°ąØŸ" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "ਤਸਮਾਨੀਆ - ਬਹੁਤੇ ąØŸąØæąØ•ąØ¾ąØ£ą©‡" #: timezones.h:648 msgid "Australia/LHI" msgstr "ąØ…ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ąØąØ²ąØąØšąØ†ąØˆ" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "ąØ…ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ਲਿੰਔੀਮਾਨ" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "ąØ•ąØæąØŠąØ‚ąØœąØ¼ąØ²ą©ˆąØ‚ąØ” - ਹਾਲੀਔੇ ąØŸąØ¾ąØŖą©‚" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "ąØ†ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ਲੋਰਔ ਹੋਵੀ" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "ਲੋਰਔ ਹੋਵੇ ąØŸą©‚ąØŖ" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "ąØ…ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ąØ®ą©ˆąØ²ąØ¬ą©‹ąØ°ąØØ" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "ąØµąØæąØ•ąØŸą©‹ąØ°ą©€ąØ†" #: timezones.h:658 msgid "Australia/North" msgstr "ąØ…ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ਉੱਤਰੀ" #: timezones.h:659 msgid "Australia/NSW" msgstr "ąØ…ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ਐਨਐਸਔਬਲਿਊ" #: timezones.h:660 msgid "Australia/Perth" msgstr "ąØ…ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ਪਰ਄" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "ਪੱਛਮੀ ąØ†ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ† - ਬਹੁਤੇ ąØŸąØæąØ•ąØ¾ąØ£ąØ¾" #: timezones.h:663 msgid "Australia/Queensland" msgstr "ąØ…ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ąØ•ąØæąØŠąØ‚ą©›ąØ²ą©ˆąØ”" #: timezones.h:664 msgid "Australia/South" msgstr "ąØ…ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ਦੱਖਣੀ" #: timezones.h:665 msgid "Australia/Sydney" msgstr "ąØ…ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ਸਿਔਨੀ" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "ਨਿਊਜ਼ ąØøąØ¾ąØŠąØ‚ąØ„ ąØµą©‡ąØ²ąØœąØ¼ - ਬਹੁਤੇ ąØŸąØæąØ•ąØ¾ąØ£ą©‡" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ąØ…ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ਤਸਮਾਨੀਆ" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ąØ…ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ąØµąØæąØ•ąØŸą©‹ąØ°ą©€ąØ†" #: timezones.h:670 msgid "Australia/West" msgstr "ąØ…ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ਪੱਛਮੀ" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ąØ…ąØøąØŸąØ°ą©‡ąØ²ą©€ąØ†/ਯਾਨਕੂਵੀਨਾ" #: timezones.h:672 msgid "Brazil/Acre" msgstr "ਬਰਾਜ਼ੀਲ਼/ਅਸਰੀ" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "ਬਰਾਜ਼ੀਲ਼/ąØ”ą©€ąØØą©‹ąØŸą©‹ąØ¹ąØ¾" #: timezones.h:674 msgid "Brazil/East" msgstr "ਬਰਾਜ਼ੀਲ਼/ਪੂਰਬੀ" #: timezones.h:675 msgid "Brazil/West" msgstr "ਬਰਾਜ਼ੀਲ਼/ਪੱਛਮੀ" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "ąØ•ą©ˆąØØą©‡ąØ”ąØ¾/ąØąØŸąØ²ąØ¾ąØ‡ąØ•" #: timezones.h:677 msgid "Canada/Central" msgstr "ąØ•ą©ˆąØØą©‡ąØ”ąØ¾/ਕੇਦਰੀ" #: timezones.h:678 msgid "Canada/Eastern" msgstr "ąØ•ą©ˆąØØą©‡ąØ”ąØ¾/ਪੂਰਬੀ" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "ąØ•ą©ˆąØØą©‡ąØ”ąØ¾/ਪੂਰਬੀ-ąØøąØ¾ąØ•ąØšą©‹ąØµąØ¾ąØØ" #: timezones.h:680 msgid "Canada/Mountain" msgstr "ąØ•ą©ˆąØØą©‡ąØ”ąØ¾/ąØŖąØ¹ąØ¾ą©œą©€" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "ąØ•ą©ˆąØØą©‡ąØ”ąØ¾/ਨਿਊਫਾਊਔਲੈਔ" #: timezones.h:682 msgid "Canada/Pacific" msgstr "ąØ•ą©ˆąØØą©‡ąØ”ąØ¾/ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "ąØ•ą©ˆąØØą©‡ąØ”ąØ¾/ąØøąØ¾ąØ•ą©‹ąØšąØµąØ¾ąØØ" #: timezones.h:684 msgid "Canada/Yukon" msgstr "ąØ•ą©ˆąØØą©‡ąØ”ąØ¾/ਯੂਕੋਨ" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "ąØšąØæą©±ąØ²ą©€/ąØ•ą©‹ąØŸą©€ąØ”ą©ˆąØŸąØæąØ²" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "ąØšąØæą©±ąØ²ą©€/ਈਸਟਰ ąØŸąØ¾ąØŖą©‚" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "ąØ•ąØæąØŠąØ¬ąØ¾" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "ਮਿਸਰ" #: timezones.h:692 msgid "Eire" msgstr "ਈਰਿ" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "ąØˆąØŸą©€ąØøą©€/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "ąØˆąØŸą©€ąØøą©€/GMT" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "ąØˆąØŸą©€ąØøą©€/GMT-੦" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "ąØˆąØŸą©€ąØøą©€/GMT+੦" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "ąØˆąØŸą©€ąØøą©€/GMT-ą©§" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "ąØˆąØŸą©€ąØøą©€/GMT+ą©§" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "ąØˆąØŸą©€ąØøą©€/GMT-੧੦" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "ąØˆąØŸą©€ąØøą©€/GMT+੧੦" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "ąØˆąØŸą©€ąØøą©€/GMT-ą©§ą©§" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "ąØˆąØŸą©€ąØøą©€/GMT+ą©§ą©§" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "ąØˆąØŸą©€ąØøą©€/GMT-੧੨" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "ąØˆąØŸą©€ąØøą©€/GMT+੧੨" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "ąØˆąØŸą©€ąØøą©€/GMT-ą©§ą©©" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "ąØˆąØŸą©€ąØøą©€/GMT-੧੪" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "ąØˆąØŸą©€ąØøą©€/GMT-੨" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "ąØˆąØŸą©€ąØøą©€/GMT+੨" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "ąØˆąØŸą©€ąØøą©€/GMT-ą©©" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "ąØˆąØŸą©€ąØøą©€/GMT+ą©©" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "ąØˆąØŸą©€ąØøą©€/GMT-੪" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "ąØˆąØŸą©€ąØøą©€/GMT+੪" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "ąØˆąØŸą©€ąØøą©€/GMT-ą©«" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "ąØˆąØŸą©€ąØøą©€/GMT+ą©«" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "ąØˆąØŸą©€ąØøą©€/GMT-੬" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "ąØˆąØŸą©€ąØøą©€/GMT+੬" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "ąØˆąØŸą©€ąØøą©€/GMT-ą©­" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "ąØˆąØŸą©€ąØøą©€/GMT+ą©­" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "ąØˆąØŸą©€ąØøą©€/GMT-ą©®" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "ąØˆąØŸą©€ąØøą©€/GMT+ą©®" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "ąØˆąØŸą©€ąØøą©€/GMT-੯" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "ąØˆąØŸą©€ąØøą©€/GMT+੯" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "ąØˆąØŸą©€ąØøą©€/ąØ—ąØ°ą©€ąØØąØµąØæą©±ąØš" #: timezones.h:726 msgid "Etc/UCT" msgstr "ąØˆąØŸą©€ąØøą©€/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "ąØˆąØŸą©€ąØøą©€/ਯੂਨੀਵਰਸਲ" #: timezones.h:728 msgid "Etc/UTC" msgstr "ąØˆąØŸą©€ąØøą©€/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "ąØˆąØŸą©€ąØøą©€/ਜ਼ੂਲੂ" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "ਯੂਰਪ/ąØ…ąØ®ąØøąØŸą©€ąØ”ąØ®" #: timezones.h:731 msgid "Europe/Andorra" msgstr "ਯੂਰਪ/ਐਨਔੋਰਾ" #: timezones.h:732 msgid "Europe/Athens" msgstr "ਯੂਰਪ/ਐ਄ਨਜ਼" #: timezones.h:733 msgid "Europe/Belfast" msgstr "ਯੂਰਪ/ąØ¬ą©€ąØ²ąØ«ąØ¾ąØøąØŸ" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "ਯੂਰਪ/ਬੀਲਗਰੇਔ" #: timezones.h:735 msgid "Europe/Berlin" msgstr "ਯੂਰਪ/ਬਰਲਿਨ" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "ਯੂਰਪ/ąØ¬ąØ°ąØ¾ąØŸą©€ąØøąØ²ąØ¾ąØµąØ¾" #: timezones.h:737 msgid "Europe/Brussels" msgstr "ਯੂਰਪ/ਬਰੂਸੀਲਸ" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "ਯੂਰਪ/ąØ¬ą©‚ąØšąØ°ąØøąØŸ" #: timezones.h:739 msgid "Europe/Budapest" msgstr "ਯੂਰਪ/ਬੁਔਾਪੈਸਟ" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "ਯੂਰਪ/ąØšą©€ąØøą©€ąØØą©‚" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "ਯੂਰਪ/ਕੋਪੀਨਹਾਗਨ" #: timezones.h:742 msgid "Europe/Dublin" msgstr "ਯੂਰਪ/ਔੂਬਲਿਨ" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "ਯੂਰਪ/ąØ—ąØæąØ¬ąØ°ąØ²ąØŸąØ¾ąØ°" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "ਯੂਰਪ/ąØ—ą©ąØˆąØ°ąØØąØø" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "ਯੂਰਪ/ਹੀਲਸੀਨਕੀ" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "ਯੂਰਪ/ਇਸਲੀ_ਆਫ_ਮੈਨ" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "ਯੂਰਪ/ąØ‡ąØøąØŸąØ¾ąØØąØ¬ą©‚ąØ²" #: timezones.h:748 msgid "Europe/Jersey" msgstr "ਯੂਰਪ/ąØœąØ°ąØøą©€" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "ਯੂਰਪ/ਕਾਲੀਨੀਗਰਾਔ" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "ਮਾਸਕੋ-01 - ਕਾਲਿੰਗਰਾਔ" #: timezones.h:752 msgid "Europe/Kiev" msgstr "ਯੂਰਪ/ਕੀਵ" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "ਯੂਰਪ/ਲਿਸਬੋਨ" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "ਯੂਰਪ/ąØ²ąØœąØ¬ąØ²ą©€ąØœąØ¾ąØØąØ¾" #: timezones.h:759 msgid "Europe/London" msgstr "ਯੂਰਪ/ਲੰਔਨ" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "ਯੂਰਪ/ਲਕਸ਼ਬਰਗ" #: timezones.h:761 msgid "Europe/Madrid" msgstr "ਯੂਰਪ/ਮਾਔਰੀਔ" #: timezones.h:764 msgid "Europe/Malta" msgstr "ਯੂਰਪ/ਮਾਲਟਾ" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "ਯੂਰਪ/ąØ®ą©ˆąØ°ą©€ąØ¹ąØ¾ąØ®ą©€ąØ”" #: timezones.h:766 msgid "Europe/Minsk" msgstr "ਯੂਰਪ/ਮੀਸਸ਼" #: timezones.h:767 msgid "Europe/Monaco" msgstr "ਯੂਰਪ/ਮੋਨਾਕੋ" #: timezones.h:768 msgid "Europe/Moscow" msgstr "ਯੂਰਪ/ਮਾਸਕੋ" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "ਮਾਸਕੋ+00 - ਪੱਛਮੀ ਰੂਸ" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "ਯੂਰਪ/ਨੀਕੋਸੀਆ" #: timezones.h:772 msgid "Europe/Oslo" msgstr "ਯੂਰਪ/ਓਸਲੋ" #: timezones.h:773 msgid "Europe/Paris" msgstr "ਯੂਰਪ/ਪੈਰਿਸ" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "ਯੂਰਪ/ਪੋਔਗੋਰੀਸਾ" #: timezones.h:775 msgid "Europe/Prague" msgstr "ਯੂਰਪ/ąØŖąØ°ąØ—ą©‚ąØˆ" #: timezones.h:776 msgid "Europe/Riga" msgstr "ਯੂਰਪ/ਰੀਗਾ" #: timezones.h:777 msgid "Europe/Rome" msgstr "ਯੂਰਪ/ਰੋਮ" #: timezones.h:778 msgid "Europe/Samara" msgstr "ਯੂਰਪ/ਸਾਮਾਰਾ" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "ਮਾਸਕੋ - ਸਾਮਾਰਾ, ąØ‰ąØ”ąØ®ą©‚ąØ°ąØŸą©€ąØ†" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "ਯੂਰਪ/ਸਾਨਮਾਰੀਨੋ" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "ਯੂਰਪ/ąØøąØ¾ąØ°ąØ°ąØœą©€ąØµą©‹" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "ਯੂਰਪ/ਸਾਮੀਫਰੋਪੋਲ" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "ąØøą©ˆąØ‚ąØŸąØ°ąØ² ਕਰੀਮੀਆ" #: timezones.h:786 msgid "Europe/Skopje" msgstr "ਯੂਰਪ/ąØøąØ•ą©‹ąØŖąØœą©€" #: timezones.h:787 msgid "Europe/Sofia" msgstr "ਯੂਰਪ/ਸੋਫੀਆ" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "ਯੂਰਪ/ąØøąØŸą©‹ąØ•ąØ–ą©‹ąØ²ąØ®" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "ਯੂਰਪ/ąØŸąØ¾ąØ²ą©€ąØØ" #: timezones.h:790 msgid "Europe/Tirane" msgstr "ਯੂਰਪ/ąØˆąØ°ąØ†ąØØą©€" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "ਯੂਰਪ/ਤੀਰਸਪੋਲ" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "ਯੂਰਪ/ੳਜ਼ਹੋਰੋਔ" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "ąØ°ą©‚ąØŸą©‡ąØØą©€ąØ†" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "ਯੂਰਪ/ਵਾਔੂਜ਼" #: timezones.h:796 msgid "Europe/Vatican" msgstr "ਯੂਰਪ/ąØµąØ¾ąØŸą©€ąØ•ąØ¾ąØØ" #: timezones.h:797 msgid "Europe/Vienna" msgstr "ਯੂਰਪ/ਵੀਆਨਾ" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "ਯੂਰਪ/ਵੀਲਨੀਅਸ" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "ਯੂਰਪ/ਵੋਲਗੋਗਰਾਔ" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "ਮਾਸਕੋ+00 - ąØ•ą©ˆąØøąØŖą©€ąØ…ąØØ ਸਮੁੰਦਰ" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "ਯੂਰਪ/ਵਾਟਸਾ" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "ਯੂਰਪ/ąØœąØ¾ąØ—ąØ°ąØ¬" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "ਯੂਰਪ/ąØœąØ¾ąØŖą©‹ąØ°ąØŖą©‹ą©›ąØˆ" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" #: timezones.h:807 msgid "Europe/Zurich" msgstr "ਯੂਰਪ/ਜ਼ੂਰਿਸ਼" #: timezones.h:808 msgid "Factory" msgstr "ąØ«ą©ˆąØ•ąØŸąØ°ą©€" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "ąØ—ąØ°ą©€ąØØąØµąØæą©±ąØš" #: timezones.h:816 msgid "Hongkong" msgstr "ਹਾਂਗਕਾਂਗ" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "ąØ†ąØˆąØ²ą©ˆąØ”" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "ਇੰਔੀਆ/ਅਨੀਆਨਾਰੀਵੋ" #: timezones.h:820 msgid "Indian/Chagos" msgstr "ਇੰਔੀਆ/ਸ਼ਿਗੋਸ" #: timezones.h:821 msgid "Indian/Christmas" msgstr "ਇੰਔੀਆ/ąØ•ą©ąØ°ąØæąØ¶ąØ®ąØæąØø" #: timezones.h:822 msgid "Indian/Cocos" msgstr "ਇੰਔੀਆ/ਸੀਸੀਸ" #: timezones.h:823 msgid "Indian/Comoro" msgstr "ਇੰਔੀਆ/ਕੰਮੋਰੋ" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "ਇੰਔੀਆ/ąØ•ąØ¾ąØ°ąØ—ą©‚ąØˆąØ²ą©€ąØØ" #: timezones.h:825 msgid "Indian/Mahe" msgstr "ਇੰਔੀਆ/ਮਾਹੀ" #: timezones.h:826 msgid "Indian/Maldives" msgstr "ਇੰਔੀਆ/ਮਾਲਦੀਪ" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "ਇੰਔੀਆ/ąØ®ąØ¾ąØŠąØ°ąØŸą©€ąØø" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "ਇੰਔੀਆ/ąØ®ąØ¾ąØ‡ąØ†ąØŸą©€" #: timezones.h:829 msgid "Indian/Reunion" msgstr "ਇੰਔੀਆ/ਰੀਯੂਨਨ" #: timezones.h:830 msgid "Iran" msgstr "ਈਰਾਨ" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "ąØ‡ą©›ąØ°ąØ¾ąØˆąØ²" #: timezones.h:833 msgid "Jamaica" msgstr "ąØœą©ˆąØ®ąØæąØ•ąØ¾" #: timezones.h:834 msgid "Japan" msgstr "ਜਾਪਾਨ" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "ąØ•ąØÆąØ¾ąØœąØ¾ąØ²ąØæąØØ" #: timezones.h:836 msgid "Libya" msgstr "ਲੀਬੀਆ" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "ąØ®ą©ˆąØ•ąØøą©€ąØ•ą©‹/ąØ¬ąØ¾ą©›ąØ¾ąØØą©‹ąØ°ąØŸą©€" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "ąØ®ą©ˆąØ•ąØøą©€ąØ•ą©‹/ਬਾਜ਼ਾਸੁਰ" #: timezones.h:840 msgid "Mexico/General" msgstr "ąØ®ą©ˆąØ•ąØøą©€ąØ•ą©‹/ਆਮ" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "ਮੱਧ-ਪੂਰਬੀ/ਰੀਯਾਔ੮੭" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "ਮੱਧ-ਪੂਰਬੀ/ਰੀਯਾਔ੮੮" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "ਮੱਧ-ਪੂਰਬੀ/ਰੀਯਾਔ੮੯" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "ąØØąØ¾ąØµąØ¾ąØœą©‹" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਅਪੀਆ" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ąØ†ąØ•ąØ²ą©ˆąØ”" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਚਾ਄ਾਮ" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "ਚਾ਄ਾਮ ąØ†ąØˆąØøąØ²ą©ˆąØ‚ąØ”" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ąØšą©‚ąØ•" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "ąØšą©‚ąØ• (ąØŸąØ°ą©ąØ•) ਅਤੇ ਯਾਪ" #: timezones.h:859 msgid "Pacific/Easter" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਈਸਟਰ" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "ਪੂਰਬੀ ąØ†ąØˆąØøąØ²ą©ˆąØ‚ąØ” ਤੇ ਸਾਲਾ y ਗੋਮੇਜ਼" #: timezones.h:862 msgid "Pacific/Efate" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ąØˆąØ«ą©‡ąØŸ" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਐਔੀਰਬੁਰੀ" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "ਫੋਨਿਕਸ ąØ†ąØˆąØøąØ²ą©ˆąØ‚ąØ”" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਫਾਕਾਉਫੁ" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਫਿਜ਼ੀ" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ąØ«ą©‚ąØØąØ¾ąØ«ą©ąØŸą©€" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਗਾਲਾਪਾਗੋਸ" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "ਗਾਲਾਪਾਗੋਸ ąØ†ąØˆąØøąØ²ą©ˆąØ‚ąØ”" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਗਾਮਬੀਰ" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "ąØ—ą©ˆąØ‚ąØ¬ą©€ąØ…ąØ° ąØ†ąØˆąØøąØ²ą©ˆąØ‚ąØ”" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਗੂਔਾਲਕਨਾਲ" #: timezones.h:876 msgid "Pacific/Guam" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਗੂਆਮ" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਹੋਨੋਲੂਲੂ" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "ਹਾਵਾਈ" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ąØœąØ¾ąØØąØøąØŸą©‹ąØØ" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "ąØœą©‹ąØ¹ąØØąØøąØŸą©‹ąØØ ąØ…ąØŸą©‹ąØ²" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ąØ•ą©€ąØ°ąØ®ą©€ąØøąØŸą©€" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "ਲੇਨ ąØŸąØ¾ąØŖą©‚" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਕੋਸਰਆ" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "ąØ•ą©‹ąØøąØ°ąØ" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ąØ•ąØµąØ¾ąØœąØ¾ąØ²ą©€ąØØąØæ" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ąØ®ąØ¾ąØœą©‹ąØ°ą©‚" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਮਾਰੀਸ਼ਸ਼" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "ąØ®ąØ¾ąØ°ąØ•ą©‚ąØˆąØøąØ¾ąØø ąØ†ąØˆąØøąØ²ą©ˆąØ‚ąØ”" #: timezones.h:898 msgid "Pacific/Midway" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਮਿਔਵੇ" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "ਮਿਔਵੇ ąØŸąØ¾ąØŖą©‚" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ąØØąØŠąØ°ą©‚" #: timezones.h:902 msgid "Pacific/Niue" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ąØØą©€ąØŠąØˆ" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਨੋਫੋਕ" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ąØØą©ąØŠąØ®ąØ‡ąØ†" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਪਾਗੋ ਪਾਗੋ" #: timezones.h:906 msgid "Pacific/Palau" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਪੀਲੀਉ" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਪਿਟਸਾਰਨ" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਪੋਨਾਪੀ" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "ਪੋਨਾਪੇ (ąØŖą©‹ąØ¹ąØØąØŖą©‡ąØˆ)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਪੋਨਾਪੀ" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ąØŖą©‹ąØ°ąØŸ ąØ®ą©‹ąØ°ąØøąØ¬ąØ¾ąØ" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ąØ°ąØ¾ąØ°ą©‹ąØŸą©‹ąØ—ąØ¾" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਸਾਈਪਾਨ" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਸਾਮੋਆ" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ąØ¤ąØ¾ąØ¹ą©€ąØŸą©€" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "ąØøą©‹ąØøąØ¾ąØ‡ąØŸą©€ ąØŸąØ¾ąØŖą©‚" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਤਰਵਾ" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "ąØ—ąØæąØ²ąØ¬ąØ°ąØŸ ąØŸąØ¾ąØŖą©‚" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ąØŸą©‹ąØØąØ—ąØ¾ąØŸąØ¾ąØŖą©‚" #: timezones.h:923 msgid "Pacific/Truk" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਤੁਰਕ" #: timezones.h:924 msgid "Pacific/Wake" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਵਾਕਾ" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "ਵੇਕ ąØŸąØ¾ąØŖą©‚" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਵਾਲਿਸ਼" #: timezones.h:928 msgid "Pacific/Yap" msgstr "ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤/ਯਾਪ" #: timezones.h:929 msgid "Poland" msgstr "ąØŖą©‹ąØ²ą©ˆąØ‚ąØ”" #: timezones.h:930 msgid "Portugal" msgstr "ਪੁਰਤਗਾਲ" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "ਸਿੰਘਾਪੁਰ" #: timezones.h:937 msgid "Turkey" msgstr "ਤੁਰਕੀ" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "ਸੰਸਾਰ" #: timezones.h:940 msgid "US/Alaska" msgstr "ਅਮਰੀਕਾ/ਅਲਾਸਕਾ" #: timezones.h:941 msgid "US/Aleutian" msgstr "ਅਮਰੀਕਾ/ąØ…ąØ²ą©€ąØŠąØøąØ¤ąØ¾ąØØ" #: timezones.h:942 msgid "US/Arizona" msgstr "ਅਮਰੀਕਾ/ąØąØ°ą©€ąØœą©‹ąØØąØ¾" #: timezones.h:943 msgid "US/Central" msgstr "ਅਮਰੀਕਾ/ਕੇਂਦਰੀ" #: timezones.h:944 msgid "US/Eastern" msgstr "ਅਮਰੀਕਾ/ਪੂਰਬੀ" #: timezones.h:945 msgid "US/East-Indiana" msgstr "ਅਮਰੀਕਾ/ਪੂਰਬੀ-ਇੰਔੀਆਨਾ" #: timezones.h:946 msgid "US/Hawaii" msgstr "ਅਮਰੀਕਾ/ਹਾਵਾਈ" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "ਅਮਰੀਕਾ/ਇੰਔੀਆਨਾ-ąØøąØŸąØ¾ąØ°ąØ•ą©‡" #: timezones.h:948 msgid "US/Michigan" msgstr "ਅਮਰੀਕਾ/ਮਿਸ਼ੀਗਨ" #: timezones.h:949 msgid "US/Mountain" msgstr "ਅਮਰੀਕਾ/ąØŖąØ¹ąØ¾ą©œą©€" #: timezones.h:950 msgid "US/Pacific" msgstr "ਅਮਰੀਕਾ/ąØŖą©ąØ°ąØ¶ąØ¾ąØ‚ąØ¤" #: timezones.h:951 msgid "US/Samoa" msgstr "ਅਮਰੀਕਾ/ਸਾਮੋਨਾ" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "ਜ਼ੂਲੂ" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/te.po0000664000175000017500000025544614632072346023707 0ustar fabiofabio# translation of te.po to Telugu # Sree Ganesh , 2006. # Krishna Babu K , 2008, 2009, 2010. # translation of te.po to # translation of te1.po to # translation of te.po to msgid "" msgstr "" "Project-Id-Version: te\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-04-26 13:33+0530\n" "Last-Translator: Krishna Babu K \n" "Language-Team: Telugu \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: te\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" "\n" "\n" "\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°…ą°”ą±ą°œą°Øą±" #: timezones.h:2 msgid "Africa/Accra" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°…ą°•ą±ą°•ą°°" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°…ą°”ą±ą°”ą°æą°øą± ఆబబ (_A)" #: timezones.h:4 msgid "Africa/Algiers" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°…ą°²ą±ą°—ą°æą°°ą±€ą°øą±" #: timezones.h:5 msgid "Africa/Asmara" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°…ą°øą±ą°®ą°°ą°¾" #: timezones.h:6 msgid "Africa/Asmera" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°…ą°øą±ą°®ą±‡ą°°ą°¾" #: timezones.h:7 msgid "Africa/Bamako" msgstr "ą°†ą°«ą±ą°°ą°æą°•/బమకో" #: timezones.h:8 msgid "Africa/Bangui" msgstr "ą°†ą°«ą±ą°°ą°æą°•/బంగుయి" #: timezones.h:9 msgid "Africa/Banjul" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°¬ą°‚ą°—ą±ą°²ą±" #: timezones.h:10 msgid "Africa/Bissau" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°¬ą°æą°øą±ą°øą±‚" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°¬ą±ą°²ą°¾ą°‚ą°Ÿą±ą°°ą±‡" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°¬ą±ą°°ą°œą±ą°µą°æą°²ą±ą°²ą±‡" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°¬ą±ą°œą±ą°‚ą°¬ą±ą°°" #: timezones.h:14 msgid "Africa/Cairo" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°•ą±ˆą°°ą±‹" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°•ą°øą°¬ą±ą°²ą°‚ą°•" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°šą±†ą°Æą±ą°Ÿ" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "సియుట & మెలిలా" #: timezones.h:19 msgid "Africa/Conakry" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°•ą±Šą°Øą°•ą±ą°°ą±‡" #: timezones.h:20 msgid "Africa/Dakar" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°”ą°•ą°°ą±" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°”ą°°ą± ą°ą°øą±ą°ø లాం (_S)" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°”ą°œą±ą°¬ą±‹ą°Ÿą°æ" #: timezones.h:23 msgid "Africa/Douala" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ఔౌల" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°ˆą°²ą±ą°…ą°Æą±‚ą°Øą± (_A)" #: timezones.h:25 msgid "Africa/Freetown" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°«ą±ą°°ą±€ą°Ÿą±Œą°Øą±" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°—ą°¬ą±‹ą°°ą±ą°µą°Øą±" #: timezones.h:27 msgid "Africa/Harare" msgstr "ą°†ą°«ą±ą°°ą°æą°•/హరరే" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°œą±‹ą°Øą±ą°Øą±†ą°øą±ą°¬ą°°ą±ą°—ą±" #: timezones.h:29 msgid "Africa/Kampala" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°•ą°‚ą°Ŗą°²" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°–ą°°ą±ą°Ÿą±‹ą°‚" #: timezones.h:31 msgid "Africa/Kigali" msgstr "ą°†ą°«ą±ą°°ą°æą°•/కిగలి" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°•ą°æą°Øą±ą°·ą°¾ą°·ą±" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "కాంగో ą°µą±†ą°øą±ą°Ÿą± ą°”ą±†ą°®ą±. ą°°ą±†ą°Ŗą±." #: timezones.h:35 msgid "Africa/Lagos" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°²ą°¾ą°—ą±‹ą°øą±" #: timezones.h:36 msgid "Africa/Libreville" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°²ą°æą°¬ą±ą°°ą±‡ą°µą°æą°²ą±ą°²ą±‡" #: timezones.h:37 msgid "Africa/Lome" msgstr "ą°†ą°«ą±ą°°ą°æą°•/లోమే" #: timezones.h:38 msgid "Africa/Luanda" msgstr "ą°†ą°«ą±ą°°ą°æą°•/లుఆంఔా" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "ą°†ą°«ą±ą°°ą°æą°•/లుబుంబషి" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "కాంగో ą°ˆą°øą±ą°Ÿą± ą°”ą±†ą°®ą±. ą°°ą±†ą°Ŗą±." #: timezones.h:42 msgid "Africa/Lusaka" msgstr "ą°†ą°«ą±ą°°ą°æą°•/లుసక" #: timezones.h:43 msgid "Africa/Malabo" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°®ą°²ą±ą°¬ą±‹" #: timezones.h:44 msgid "Africa/Maputo" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°®ą°Ŗą±ą°Ÿą±‹" #: timezones.h:45 msgid "Africa/Maseru" msgstr "ą°†ą°«ą±ą°°ą°æą°•/మసేరు" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "ą°†ą°«ą±ą°°ą°æą°•/మబబనే" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°®ą±Šą°—ą°”ą°æą°·ą±" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°®ą±Šą°Øą±‹ą°°ą±‹ą°µą°æą°Æ" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°Øą±ˆą°°ą±‹ą°¬ą±€" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°Øą±ą°”ą±ą°œą°®ą±‡ą°Øą°¾" #: timezones.h:51 msgid "Africa/Niamey" msgstr "ą°†ą°«ą±ą°°ą°æą°•/నిమేయే" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°Øą±ą°°ą±ą°•ą±ą°šą±‹ą°Ÿą±ą°Ÿ" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ఒగఔుగో" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°Ŗą±‹ą°°ą±ą°Ÿą±‹-నోవో" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°øą°µą±‹ą°Ÿą±‹ą°®ą±‡ (_T)" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°Ÿą°æą°‚ą°¬ą±ą°•ą±ą°Ÿą±" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°¤ą±ą°°ą°æą°Ŗą±‹ą°²ą°æ" #: timezones.h:58 msgid "Africa/Tunis" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°Ÿą±ą°Øą°æą°·ą±" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°µą°æą°Øą±ą°¢ą±‹ą°•ą±" #: timezones.h:60 msgid "America/Adak" msgstr "ą°†ą°«ą±ą°°ą°æą°•/ą°…ą°”ą°•ą±" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "ą°…ą°²ą±†ą°Æą±ą°Ÿą±ˆą°Øą± ą°ą°²ą°¾ą°‚ą°”ą±ą°øą±" #: timezones.h:63 msgid "America/Anchorage" msgstr "అమెరిక/ą°…ą°‚ą°•ą±‹ą°°ą±ą°—ą±‡" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "ą°…ą°²ą°øą±ą°•ą°¾ సమయం" #: timezones.h:66 msgid "America/Anguilla" msgstr "అమెరిక/ą°…ą°‚ą°—ą±ą°²ą±ą°²" #: timezones.h:67 msgid "America/Antigua" msgstr "అమెరిక/ą°†ą°‚ą°Ÿą°æą°—ą±ą°µ" #: timezones.h:68 msgid "America/Araguaina" msgstr "అమెరిక/ą°…ą°°ą±ą°—ą±‚ą°Øą°æą°Æą°¾" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "ą°Ÿą±Šą°•ą°¾ą°Øą±ą°Ÿą°æą°Øą±ą°øą±" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "అమెరిక/ą°…ą°°ą±ą°œą±†ą°‚ą°Ÿą±ˆą°Øą°¾/ą°¬ą°æą°Æą±‡ą°Øą±ą°øą±ą°Žą°Æą°æą°°ą±€ą°øą± (_A)" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "ą°¬ą±†ą°Øą±‹ą°øą± ą°ą°°ą±ą°øą± (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "అమెరిక/ą°…ą°°ą±ą°œą±†ą°‚ą°Ÿą±ˆą°Øą°¾/ą°•ą°Ÿą±ą°®ą°¾ą°°ą±ą°•ą°¾" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "ą°•ą±†ą°Ÿą°®ą°¾ą°°ą±ą°•ą°¾ (CT), ą°šą±ą°¬ą°Ÿą± (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "అమెరిక/ą°…ą°°ą±ą°œą±†ą°‚ą°Ÿą±ˆą°Øą°¾/ą°•ą±‹ą°‚ą°”ą±ą°°ą°æą°µą°”ą°Æą°¾" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "అమెరిక/ą°…ą°°ą±ą°œą±†ą°‚ą°Ÿą±ˆą°Øą°¾/ą°•ą±‹ą°°ą±ą°”ą±‹ą°¬ą°¾" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "చాలా ą°øą±ą°„ą°¾ą°Øą°®ą±ą°²ą± (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "అమెరిక/ą°…ą°°ą±ą°œą±†ą°‚ą°Ÿą±ˆą°Øą°¾/ą°œą±ą°œą±‚ą°Æą±" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "ą°œą±ą°œą±ą°Æą± (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "అమెరిక/ą°…ą°°ą±ą°œą±†ą°‚ą°Ÿą±ˆą°Øą°¾/ą°²ą°°ą°æą°Æą±‹ą°œ (_R)" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "లా ą°°ą°æą°Æą±‹ą°œ (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "అమెరిక/ą°…ą°°ą±ą°œą±†ą°‚ą°Ÿą±ˆą°Øą°¾/ą°®ą±†ą°Øą±ą°”ą±‹ą°œą±" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "ą°®ą±†ą°‚ą°”ą±‹ą°œą°¾ (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "అమెరిక/ą°…ą°°ą±ą°œą±†ą°‚ą°Ÿą±ˆą°Øą°¾/ą°°ą°æą°Æą±‹ą°—ą°²ą±ą°²ą±‡ą°—ą±‹ą°øą± (_G)" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "సాంతా ą°•ą±ą°°ą°œą± (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "అమెరికా/ą°…ą°°ą±ą°œą±†ą°‚ą°Ÿą±ˆą°Øą°¾/ą°øą°²ą±ą°Ÿą°¾" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "అమెరిక/ą°…ą°°ą±ą°œą±†ą°‚ą°Ÿą±ˆą°Øą°¾/ą°øą°Øą±ą°œą±ą°…ą°Øą± (_J)" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "ą°øą°¾ą°Øą± ą°œą±ą°µą°¾ą°Øą± (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "అమెరికా/ą°…ą°°ą±ą°œą±†ą°‚ą°Ÿą±ˆą°Øą°¾/ą°øą°¾ą°Øą±ā€Œą°²ą±ą°Æą°æą°Øą± (_L)" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "ą°øą°¾ą°Øą± ą°²ą±ą°Æą°æą°øą± (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "అమెరిక/ą°…ą°°ą±ą°œą±†ą°‚ą°Ÿą±ˆą°Øą°¾/ą°Ÿą°šą±ą°®ą°Øą±" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "ą°Ÿą±ą°•ą±ą°®ą°¾ą°Øą± (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "అమెరిక/ą°…ą°°ą±ą°œą±†ą°‚ą°Ÿą±ˆą°Øą°¾/ఉషుయియ" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "టైరా ą°”ą±†ą°²ą± ఫుయిగో (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "అమెరిక/అరుబ" #: timezones.h:109 msgid "America/Asuncion" msgstr "అమెరిక/ą°…ą°øą±ą°Øą±ą°•ą±‹ą°Øą±" #: timezones.h:110 msgid "America/Atikokan" msgstr "అమెరిక/ą°…ą°Ÿą°æą°•ą±‹ą°•ą°¾ą°Øą±" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "ఈ ą°øą±ą°Ÿą±ą°°ą°Øą± ą°øą±ą°Ÿą°¾ą°‚ą°”ą°°ą±ą°”ą± ą°Ÿą±ˆą°®ą± - ą°…ą°Ÿą°æą°•ą±Šą°•ą°Øą±, ą°†ą°Øą±ą°Ÿą°¾ą°°ą°æą°Æą±‹ మరియు ą°øą±Œą°¤ą°¾ą°®ą±ą°Ÿą°Øą± ఐ, ą°Øą±ą°Øą°¾ą°µą±ą°¤ą±" #: timezones.h:113 msgid "America/Atka" msgstr "అమెరిక/ą°…ą°Ÿą±ą°•" #: timezones.h:114 msgid "America/Bahia" msgstr "అమెరిక/బహియ" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "బాహియా" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "అమెరిక/ą°¬ą°¹ą°æą°Æą°¬ą°¾ą°‚ą°”ą°°ą°¾ą°øą± (_B)" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "ą°®ą±†ą°•ą±ą°øą°æą°•ą°Øą± ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± ą°Ÿą±ˆą°®ą± - బహియా ఔె ą°¬ą°‚ą°”ą±†ą°°ą°¾ą°øą±" #: timezones.h:120 msgid "America/Barbados" msgstr "అమెరిక/ą°¬ą±ą°°ą°¬ą°”ą±‹ą°øą±" #: timezones.h:121 msgid "America/Belem" msgstr "అమెరిక/ą°¬ą±†ą°²ą±‡ą°®ą±" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "ఆంపా, ఈ ą°Ŗą°°ą°¾" #: timezones.h:124 msgid "America/Belize" msgstr "అమెరిక/ą°¬ą±†ą°²ą±ą°œą±‡" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "అమెరిక/ą°¬ą±ą°²ą°Øą±-ą°øą°¬ą±ą°²ą±‹ą°Øą±" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "ą°…ą°Ÿą±ą°²ą°¾ą°‚ą°Ÿą°æą°•ą± ą°øą±ą°Ÿą°¾ą°Øą±ą°”ą°°ą±ą°”ą± ą°Ÿą±ˆą°®ą± - ą°•ą±ą°Æą±‚ą°¬ą±†ą°•ą± - ą°²ą±‹ą°Æą°°ą± ą°Øą°¾ą°°ą±ą°¤ą± ą°·ą±‹ą°°ą±" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "అమెరిక/ą°¬ą±‹ą°†ą°µą°æą°øą±ą°Ÿ (_V)" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "రొరైమా" #: timezones.h:131 msgid "America/Bogota" msgstr "అమెరిక/ą°¬ą±Šą°—ą±‹ą°Ÿą°¾" #: timezones.h:132 msgid "America/Boise" msgstr "అమెరిక/బోయిసే" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "ą°®ą±Œą°‚ą°Ÿą±ˆą°Øą± ą°Ÿą±ˆą°®ą± - ą°øą±Œą°¤ą± యిఔాహొ & ą°ˆą°øą±ą°Ÿą± ą°’ą°°ą±†ą°—ą°¾ą°Øą±" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "అమెరిక/ą°¬ą±ą°Žą°Øą±‹ą°øą±ą°ą°°ą±‡ą°øą± (_A)" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "అమెరిక/ą°•ą±‡ą°‚ą°¬ą±ą°°ą°æą°”ą±ą°œą°æą°¬ą±‡ (_B)" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "ą°®ą±Œą°‚ą°Ÿą±ˆą°Øą± ą°Ÿą±ˆą°®ą± - ą°µą±†ą°øą±ą°Ÿą± ą°Øą±ą°Øą°¾ą°µą°¤ą±" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "అమెరిక/ą°•ą°‚ą°Ŗą±‹ą°—ą°Øą±ą°”ą±‡ (_G)" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "మటొ ą°—ą±ą°°ą±Šą°øą±ą°øą±‹ ఔొ ą°øą°²ą±" #: timezones.h:142 msgid "America/Cancun" msgstr "అమెరిక/ą°•ą°Øą±ą°•ą±ą°Øą±" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± ą°Ÿą±ˆą°®ą± - ą°•ą±ą°µą°æą°‚ą°¤ą°¾ą°Øą°¾ రొ" #: timezones.h:145 msgid "America/Caracas" msgstr "అమెరిక/ą°•ą°°ą°•ą°øą±" #: timezones.h:146 msgid "America/Catamarca" msgstr "అమెరిక/ą°•ą°Ÿą°®ą±ą°°ą°¾ą°•ą±" #: timezones.h:147 msgid "America/Cayenne" msgstr "అమెరిక/ą°øą±†ą°Æą±‡ą°Øą±ą°Øą±‡" #: timezones.h:148 msgid "America/Cayman" msgstr "అమెరిక/ą°øą±†ą°Æą±ą°®ą°Øą±" #: timezones.h:149 msgid "America/Chicago" msgstr "అమెరిక/ą°šą°æą°•ą°¾ą°—ą±‹" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± ą°Ÿą±ˆą°®ą±" #: timezones.h:152 msgid "America/Chihuahua" msgstr "అమెరిక/చిహుచిహా" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "ą°®ą±†ą°•ą±ą°øą°æą°•ą°Øą± ą°®ą±Œą°‚ą°Ÿą±ˆą°Øą± సమయం - చిహువాహువా US ą°øą°°ą°æą°¹ą°¦ą±ą°¦ą±ą°Øą±ą°‚ą°”ą°æ దూరంగా" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "అమెరిక/ą°•ą±‹ą°°ą°²ą±ą°¹ą°°ą±ą°¬ą±‹ą°°ą± (_H)" #: timezones.h:156 msgid "America/Cordoba" msgstr "అమెరిక/ą°•ą±Šą°°ą±ą°”ą±‹ą°¬ą°¾" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "అమెరిక/ą°•ą±‹ą°øą±ą°Ÿą°¾ą°°ą°æą°• (_R)" #: timezones.h:158 msgid "America/Cuiaba" msgstr "అమెరిక/ą°•ą±ą°Æą±ą°¬ą°¾" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "ą°®ą±‡ą°Ÿą±‹ ą°—ą±ą°°ą±‹ą°øą±ą°øą±‹" #: timezones.h:161 msgid "America/Curacao" msgstr "అమెరిక/కురకఓ" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "అమెరిక/ą°”ą±†ą°Øą±ą°®ą°¾ą°°ą±ą°•ą±ą°·ą°µą±ą°Ø" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "ą°ˆą°øą±ą°Ÿą± ą°•ą±‹ą°øą±ą°Ÿą±, ą°øą±ą°•ą±‹ą°°ą±ą°øą±ą°¬ą±ˆą°øą°‚ą°”ą± ą°Æą±Šą°•ą±ą°• ą°Øą°¾ą°°ą±ą°¤ą±" #: timezones.h:165 msgid "America/Dawson" msgstr "అమెరిక/ą°”ą°µą±‹ą°øą±" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "ą°Ŗą°øą°æą°«ą°æą°•ą± ą°Ÿą±ˆą°®ą± - ą°Øą°¾ą°°ą±ą°¤ą± ą°Æą±ą°•ą°¾ą°Øą±" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "అమెరిక/ą°”ą°µą±‹ą°øą±ą°•ą±ą°°ą±€ą°•ą± (_C)" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "ą°®ą±Œą°‚ą°Ÿą±ˆą°Øą± ą°øą±ą°Ÿą°¾ą°‚ą°”ą°°ą±ą°”ą± ą°Ÿą±ˆą°®ą± - ą°”ą°¾ą°øą°Øą± ą°—ą±ą°°ą±€ą°•ą± & ą°«ą±‹ą°°ą±ą°Ÿą± ą°øą±†ą°Æą°æą°‚ą°Ÿą± ą°œą°¾ą°Øą±, ą°¬ą±ą°°ą°æą°Ÿą±€ą°·ą± ą°•ą±Šą°²ą°‚ą°¬ą°æą°Æą°¾" #: timezones.h:171 msgid "America/Denver" msgstr "అమెరిక/ą°”ą±†ą°Øą±ą°µą±‡ą°°ą±" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "ą°®ą±Œą°‚ą°Ÿą±†ą°Æą°æą°Øą± ą°Ÿą±ˆą°®ą±" #: timezones.h:174 msgid "America/Detroit" msgstr "అమెరిక/ą°”ą±†ą°Ÿą±ą°°ą±‹ą°Æą°æą°”ą±" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "ą°ˆą°øą±ą°Ÿą±ą°°ą°Øą± ą°Ÿą±ˆą°®ą± - ą°®ą°æą°šą°æą°—ą°Øą± - చాలా ą°øą±ą°„ą°¾ą°Øą°®ą±ą°²ą±" #: timezones.h:177 msgid "America/Dominica" msgstr "అమెరిక/ą°”ą±Šą°®ą°æą°Øą°æą°•" #: timezones.h:178 msgid "America/Edmonton" msgstr "అమెరిక/ą°Žą°”ą±ą°®ą±‹ą°‚ą°Ÿą±‹ą°Øą±" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "ą°®ą±Œą°‚ą°Ÿą±ˆą°Øą± ą°Ÿą±ˆą°®ą± - ą°†ą°²ą±ą°¬ą±†ą°°ą±ą°Ÿą°¾, ą°ˆą°øą±ą°Ÿą± ą°¬ą±ą°°ą°æą°Ÿą°æą°·ą± ą°•ą±Šą°²ą°‚ą°¬ą°æą°Æą°¾ & ą°µą±†ą°øą±ą°Ÿą± ą°øą°¾ą°øą±ą°•ą±†ą°šą±†ą°µą°¾ą°Øą±" #: timezones.h:181 msgid "America/Eirunepe" msgstr "అమెరిక/ą°ą°°ą±‚ą°Øą±‡ą°Ŗą±" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "W ą°…ą°®ą±†ą°œą±Šą°Øą°¾ą°øą±" #: timezones.h:184 msgid "America/El_Salvador" msgstr "అమెరిక/ą°ą°²ą±ą°øą°²ą±ą°µą°”ą±‹ą°°ą± (_S)" #: timezones.h:185 msgid "America/Ensenada" msgstr "అమెరిక/ą°ą°Øą±ą°øą±‡ą°Øą°”" #: timezones.h:186 msgid "America/Fortaleza" msgstr "అమెరిక/ą°«ą±‹ą°°ą±ą°Ÿą°¾ą°²ą±‡ą°œ" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "NE ą°¬ą±ą°°ą±†ą°œą°æą°²ą± (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "అమెరిక/ą°«ą±‹ą°°ą±ą°Ÿą±ą°µą°Æą±‡ą°Øą± (_W)" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "అమెరిక/ą°—ą±ą°²ą±‡ą°øą±‡ą°¬ą±‡ (_B)" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "ą°…ą°Ÿą±ą°²ą°¾ą°‚ą°Ÿą°æą°•ą± సమయం - ą°Øą±Šą°µą°¾ą°øą±ą°•ą±‹ą°Ÿą°æą°Æą°¾ - DST 1966-1971 ą°—ą°®ą°Øą°æą°‚ą°šą°Øą°æ ą°øą±ą°„ą°²ą°®ą±ą°²ą±" #: timezones.h:193 msgid "America/Godthab" msgstr "అమెరిక/ą°—ą±‹ą°”ą±ą°„ą°¾ą°¬ą±" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "చాలా ą°øą±ą°„ą°¾ą°Øą°®ą±ą°²ą±" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "అమెరిక/ą°—ą±‹ą°øą±ą°¬ą±‡ (_B)" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "ą°…ą°Ÿą±ą°²ą°¾ą°‚ą°Ÿą°æą°•ą± సమయం - ą°²ą°¾ą°¬ą±ą°°ą°¾ą°”ą°°ą± - చాలా ą°øą±ą°„ą°¾ą°Øą°®ą±ą°²ą±" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "అమెరిక/ą°—ą±ą°°ą°¾ą°‚ą°”ą±ą°Ÿą°°ą±ą°•ą± (_T)" #: timezones.h:200 msgid "America/Grenada" msgstr "అమెరిక/ą°—ą±ą°°ą°Øą±ą°”" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "అమెరిక/గుఔేలోపే" #: timezones.h:202 msgid "America/Guatemala" msgstr "అమెరిక/ą°—ą±ą°Ÿą±‡ą°®ą°²ą±" #: timezones.h:203 msgid "America/Guayaquil" msgstr "అమెరిక/ą°—ą±ą°Æą±‡ą°•ą±ą°µą°æą°²ą±" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "ą°®ą±†ą°Æą°æą°Øą±ā€Œą°²ą°¾ą°‚ą°”ą±" #: timezones.h:206 msgid "America/Guyana" msgstr "అమెరిక/ą°—ą±ą°Æą°Øą±ą°Ø" #: timezones.h:207 msgid "America/Halifax" msgstr "అమెరిక/ą°¹ą°²ą°æą°«ą°¾ą°•ą±ą°øą±" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "ą°…ą°Ÿą±ą°²ą°¾ą°‚ą°Ÿą°æą°•ą± సమయం - నొవా ą°øą±ą°•ą°¾ą°Ÿą°æą°Æą°¾ (చాలా ą°øą±ą°„ą°²ą°®ą±ą°²ą±), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "అమెరిక/ą°¹ą°µą°Øą±ą°Ø" #: timezones.h:211 msgid "America/Hermosillo" msgstr "అమెరిక/ą°¹ą±†ą°°ą±ą°®ą±‹ą°øą°æą°²ą±ą°²ą±‹" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "ą°®ą±Œą°‚ą°Ÿą±ˆą°Øą± ą°øą±ą°Ÿą°¾ą°‚ą°”ą°°ą±ą°”ą± సమయం - సొనొరా" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "అమెరిక/ఇంఔియన/ą°‡ą°‚ą°”ą±€ą°Æą°¾ą°Øą°¾ą°Ŗą±‹ą°²ą°æą°øą±" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "ą°ˆą°øą±ą°Ÿą±ą°°ą°Øą± సమయం - ఇంఔియానా - చాలా ą°øą±ą°„ą°¾ą°Øą°®ą±ą°²ą±" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "అమెరిక/ఇంఔియన/ą°•ą±ą°Øą±‹ą°•ą±ą°øą±" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± సమయం - యింఔియానా - ą°øą±ą°Ÿą°¾ą°°ą±ą°•ą±‡ ą°•ą±Œą°‚ą°Ÿą°æ" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "అమెరిక/ఇంఔియన/ą°®ą°°ą±†ą°Øą±ą°—ą±‹" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "ą°ˆą°øą±ą°Ÿą±ą°°ą°Øą± సమయం - ఇంఔియానా - ą°•ą±ą°°ą°¾ą°«ą±‹ą°°ą±ą°”ą± ą°•ą±Œą°‚ą°Ÿą°æ" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "అమెరిక/ఇంఔియన/ą°Ŗą±€ą°Ÿą°°ą±ą°øą±ą°¬ą°°ą±ą°—ą±" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "ą°ˆą°øą±ą°Ÿą±ą°°ą°Øą± సమయం - యింఔియానా - ą°Ŗą±ˆą°•ą± ą°•ą±Œą°‚ą°Ÿą°æ" #: timezones.h:226 msgid "America/Indianapolis" msgstr "అమెరిక/ą°‡ą°‚ą°”ą°æą°Æą°¾ą°Øą°¾ą°Ŗą±‹ą°²ą°æą°øą±" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "అమెరికా/ఇంఔియానా/ą°Ÿą±†ą°²ą± ą°øą°æą°Ÿą±€(_C)" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± ą°Ÿą±ˆą°®ą± - ఇంఔియానా - ą°Ŗą±†ą°°ą±ą°°ą°æ ą°•ą±Œą°‚ą°Ÿą°æ" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "అమెరిక/ఇంఔియన/ą°µą±‡ą°µą±‡ą°Æą±" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "ą°ˆą°øą±ą°Ÿą±ą°°ą°Øą± ą°Ÿą±ˆą°®ą± - ఇంఔియానా - ą°øą±ą°µą°æą°”ą±ą°œą°°ą±ą°²ą°¾ą°‚ą°”ą± ą°•ą±Œą°‚ą°Ÿą°æ" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "అమెరిక/ఇంఔియన/ą°µą°æą°Øą±ą°øą±†ą°Øą±ą°Øą±€ą°øą±" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "ą°ˆą°øą±ą°Ÿą±ą°°ą°Øą± ą°Ÿą±ˆą°®ą± - ఇంఔియానా - ą°”ą°µą±ˆą°øą±, ą°”ą±ą°¬ą±Šą°Æą°æą°øą±, ą°Øą°¾ą°•ą±ą°øą± & ą°®ą°¾ą°°ą±ą°Ÿą°æą°Øą± ą°•ą±Œą°‚ą°Ÿą±€ą°øą±" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "అమెరికా/ఇంఔియానా/ą°µą°æą°Øą°¾ą°®ą±‡ą°•ą±" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "ą°ˆą°øą±ą°Ÿą±ą°°ą°Øą± ą°Ÿą±ˆą°®ą± - ఇంఔియానా - ą°Ŗą±ą°²ą°øą±ą°•ą°æ ą°•ą±Œą°‚ą°Ÿą°æ" #: timezones.h:239 msgid "America/Inuvik" msgstr "అమెరిక/ą°‡ą°Øą±ą°µą°æą°•ą±" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "ą°®ą±Œą°‚ą°Ÿą±ˆą°Øą± ą°Ÿą±ˆą°®ą± - ą°µą±†ą°øą±ą°Ÿą± ą°Øą°¾ą°°ą±ą°¤ą±ā€Œą°µą±†ą°øą±ą°Ÿą± ą°Ÿą±†ą°°ą±ą°°ą°æą°Ÿą±Šą°°ą±€ą°øą±" #: timezones.h:242 msgid "America/Iqaluit" msgstr "అమెరిక/ą°²ą±ą°²ą±ą°Ÿą±" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "ą°ˆą°øą±ą°Ÿą±ą°°ą°Øą± ą°Ÿą±ˆą°®ą± - ą°ˆą°øą±ą°Ÿą± ą°Øą±ą°Øą°¾ą°µą°¤ą± - చాలా ą°øą±ą°„ą°¾ą°Øą°®ą±ą°²ą±" #: timezones.h:245 msgid "America/Jamaica" msgstr "అమెరిక/ą°œą°®ą±ˆą°•ą°¾" #: timezones.h:246 msgid "America/Jujuy" msgstr "అమెరిక/ą°œą±ą°œą±ą°Æą±‡" #: timezones.h:247 msgid "America/Juneau" msgstr "అమెరిక/ą°œą±ą°Øą±‡ą°Æą±‚" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "ą°…ą°²ą°øą±ą°•ą°¾ ą°Ÿą±ˆą°®ą± - ą°…ą°²ą°øą±ą°•ą°¾ ą°Ŗą°¾ą°Øą±ā€Œą°¹ą°¾ą°‚ą°”ą°æą°²ą±" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "అమెరిక/ą°•ą±†ą°Øą±ą°Ÿą±ą°øą±ą°•ą°æ/ą°²ą±‚ą°Æą±€ą°øą±ą°µą°æą°²ą±ą°²ą±‡" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "ą°ˆą°øą±ą°Ÿą±ą°°ą°Øą± ą°Ÿą±ˆą°®ą± - ą°•ą±†ą°‚ą°Ÿą°•ą±€ - ą°²ą±‚ą°Æą°æą°øą±ā€Œą°µą°æą°²ą±ą°²ą±€ ą°Ŗą±ą°°ą°¾ą°‚ą°¤ą°®ą±" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "అమెరిక/ą°•ą±†ą°Øą±ą°Ÿą±ą°øą±ą°•ą°æ/ą°®ą±‹ą°‚ą°Ÿą°æą°øą±†ą°²ą±ą°²ą±‹" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "ą°ˆą°øą±ą°Ÿą±ą°°ą°Øą± ą°Ÿą±ˆą°®ą± - ą°•ą±†ą°‚ą°Ÿą°•ą°æ - వెనె ą°•ą±Œą°‚ą°Ÿą°æ" #: timezones.h:256 msgid "America/Knox_IN" msgstr "అమెరిక/ą°•ą±ą°Øą±‹ą°•ą±ą°øą±ą°‡ą°Øą± (_I)" #: timezones.h:257 msgid "America/La_Paz" msgstr "అమెరిక/ą°²ą°«ą±ą°œ (_P)" #: timezones.h:258 msgid "America/Lima" msgstr "అమెరిక/లిమ" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "అమెరిక/ą°²ą°¾ą°øą°¾ą°‚ą°—ą°æą°²ą±" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "ą°Ŗą°øą°æą°«ą°æą°•ą± ą°Ÿą±ˆą°®ą±" #: timezones.h:262 msgid "America/Louisville" msgstr "అమెరిక/ą°²ą±‹ą°Æą°æą°øą±ą°µą°æą°²ą±ą°²ą±‡" #: timezones.h:263 msgid "America/Maceio" msgstr "అమెరిక/ą°®ą°šą±‡ą°Æą±‹" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "ą°…ą°²ą°—ą±‹ą°øą±, ą°øą±†ą°°ą±ą°œą±†ą°Ŗą±†" #: timezones.h:266 msgid "America/Managua" msgstr "అమెరిక/మనగుఆ" #: timezones.h:267 msgid "America/Manaus" msgstr "అమెరిక/ą°®ą°Øą°Øą±‚ą°øą±" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "E ą°…ą°®ą±†ą°œą±Šą°Øą°¾ą°øą±" #: timezones.h:270 msgid "America/Marigot" msgstr "అమెరికా/ą°®ą°¾ą°°ą°æą°—ą°¾ą°Ÿą±" #: timezones.h:271 msgid "America/Martinique" msgstr "అమెరిక/ą°®ą°°ą±ą°Ÿą±€ą°Øą°æą°•ą±ą°µą±‡" #: timezones.h:272 msgid "America/Matamoros" msgstr "అమెరిక/ą°®ą°Ÿą°¾ą°®ą±Šą°°ą°¾ą°øą±" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "US ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± ą°Ÿą±ˆą°®ą± - ą°•ą±Œą°¹ą±ą°Æą°æą°²ą°¾, ఔురాంగో, ą°Øą±ą°Æą±ą°µą±‹ ą°²ą°æą°Æą°¾ą°Øą±, US ą°øą°°ą°æą°¹ą°¦ą±ą°¦ą±ą°•ą± ą°¦ą°—ą±ą°—ą°°ą°—ą°¾ ą°Ÿą°®ą±Œą°²ą°æą°Ŗą°¾ą°øą±" #: timezones.h:275 msgid "America/Mazatlan" msgstr "అమెరిక/ą°®ą°œą°Ÿą±ą°²ą°Øą±" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "ą°®ą±Œą°‚ą°Ÿą±ˆą°Øą± ą°Ÿą±ˆą°®ą± - S బాజా, ą°Øą°Æą°°ą°æą°Ÿą±, సినాలౌ" #: timezones.h:278 msgid "America/Mendoza" msgstr "అమెరిక/ą°®ą±†ą°‚ą°”ą±‹ą°œą°¾" #: timezones.h:279 msgid "America/Menominee" msgstr "అమెరిక/ą°®ą±†ą°Øą±‹ą°®ą°æą°Øą±ą°Øą±‡" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± ą°Ÿą±ˆą°®ą± - ą°®ą°æą°šą°æą°—ą°Øą± - ą°”ą°æą°•ą°æą°Øą±ą°øą°Øą±, ą°—ą±Šą°—ą±†ą°¬ą°æą°•ą±, ą°ą°°ą°Øą± & మెనోమిని ą°•ą±Œą°‚ą°Ÿą±€ą°²ą±" #: timezones.h:282 msgid "America/Merida" msgstr "అమెరిక/మెరీఔా" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± ą°Ÿą±ˆą°®ą± - ą°•ą°¾ą°‚ą°Ŗą±†ą°šą±†, ą°Æą±ą°•ą°Ÿą°Øą±" #: timezones.h:285 msgid "America/Mexico_City" msgstr "అమెరిక/ą°®ą±†ą°•ą±ą°øą°æą°•ą±‹ą°øą°æą°Ÿą±€" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± ą°Ÿą±ˆą°®ą± - చాలా ą°øą±ą°„ą°¾ą°Øą°®ą±ą°²ą±" #: timezones.h:288 msgid "America/Miquelon" msgstr "అమెరిక/ą°®ą°æą°•ą±ą°µą°æą°²ą±‹ą°Øą±" #: timezones.h:289 msgid "America/Moncton" msgstr "అమెరిక/ą°®ą±‹ą°Øą±ą°•ą±ą°Ÿą±‹ą°Øą±" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "ą°…ą°Ÿą±ą°²ą°¾ą°‚ą°Ÿą°æą°•ą± సమయం - ą°Øą±ą°Æą±‚ ą°¬ą±ą°°ą±ą°Øą±ą°øą°æą°µą°æą°•ą±" #: timezones.h:292 msgid "America/Monterrey" msgstr "అమెరిక/ą°®ą±‹ą°‚ą°Ÿą±†ą°°ą±ą°°ą±‡" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "ą°®ą±†ą°•ą±ą°øą°æą°•ą°Øą± ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± సమయం - ą°•ą±Œą°¹ą±ą°Æą°æą°²ą°¾, ఔురాంగో, ą°Øą±ą°Æą±ą°µą±‹ ą°²ą°æą°Æą°¾ą°Øą±, ą°Ÿą°®ą±Œą°²ą°æą°Ŗą°øą± US ą°øą°°ą°æą°¹ą°¦ą±ą°¦ą±ą°•ą± దూరంగా" #: timezones.h:295 msgid "America/Montevideo" msgstr "అమెరిక/ą°®ą±‹ą°‚ą°Ÿą±‡ą°µą°æą°”ą±‹" #: timezones.h:296 msgid "America/Montreal" msgstr "అమెరిక/ą°®ą±‹ą°‚ą°Ÿą±ą°°ą±†ą°²ą±" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "ą°ˆą°øą±ą°Ÿą±ą°°ą°Øą± ą°Ÿą±ˆą°®ą± - ą°•ą±ą°Æą±ą°¬ą±†ą°•ą± - చాలా ą°øą±ą°„ą°¾ą°Øą°®ą±ą°²ą±" #: timezones.h:299 msgid "America/Montserrat" msgstr "అమెరిక/ą°®ą±‹ą°Øą±ą°Ÿą±‡ą°°ą±ą°°ą°Ÿą±" #: timezones.h:300 msgid "America/Nassau" msgstr "అమెరిక/ą°Øą°øą±ą°øą±ą°†" #: timezones.h:301 msgid "America/New_York" msgstr "అమెరిక/ą°Øą±ą°Æą±‚ą°Æą°¾ą°°ą±ą°•ą±" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "ą°ˆą°øą±ą°Ÿą±ą°°ą°Øą± ą°Ÿą±ˆą°®ą±" #: timezones.h:304 msgid "America/Nipigon" msgstr "అమెరిక/ą°Øą°æą°Ŗą°æą°—ą±‹ą°Øą±" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "ą°ˆą°øą±ą°Ÿą±ą°°ą°Øą± ą°Ÿą±ˆą°®ą± - ą°†ą°Øą±ą°Ÿą°¾ą°°ą°æą°Æą±‹ & ą°•ą±ą°Æą±ą°¬ą±†ą°•ą± - DST 1967-1973 ą°—ą°®ą°Øą°æą°‚ą°šą°Øą°æ ą°øą±ą°„ą°²ą°®ą±ą°²ą±" #: timezones.h:307 msgid "America/Nome" msgstr "అమెరిక/నోమే" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "ą°…ą°²ą°øą±ą°•ą°¾ సమయం - ą°Ŗą°¶ą±ą°šą°æą°® ą°…ą°²ą°øą±ą°•ą°¾" #: timezones.h:310 msgid "America/Noronha" msgstr "అమెరిక/ą°Øą±Šą°°ą±‹ą°Øą±ą°¹" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "ą°…ą°Ÿą±ą°²ą°¾ą°‚ą°Ÿą°æą°•ą± ą°¦ą±ą°µą±€ą°Ŗą°¾ą°²ą±" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "అమెరిక/ą°Øą°¾ą°°ą±ą°¤ą±ą°”ą°•ą±‹ą°Ÿ/ą°øą±†ą°‚ą°Ÿą°°ą±" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± సమయం - ą°Øą°¾ą°°ą±ą°¤ą± ą°”ą°•ą±‹ą°Ÿą°¾ - ą°†ą°²ą±€ą°µą°°ą± ą°•ą±Œą°‚ą°Ÿą±€" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "అమెరిక/ą°Øą°¾ą°°ą±ą°¤ą±ą°”ą°•ą±‹ą°Ÿ/ą°Øą±ą°Æą±‚ą°øą°²ą±‡ą°®ą±" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± ą°Ÿą±ˆą°®ą± - ą°Øą°¾ą°°ą±ą°¤ą± ą°”ą°•ą±‹ą°Ÿą°¾ - ą°®ą°¾ą°°ą±ą°Ÿą°¾ą°Øą± ą°•ą±Œą°‚ą°Ÿą±€ (ą°®ą°¾ą°‚ą°”ą°Øą± ą°Ŗą±ą°°ą°¾ą°‚ą°¤ą°®ą± ą°¤ą°Ŗą±ą°Ŗą°æą°‚ą°šą°æ)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "అమెరిక/ą°µą±Šą°œą°æą°Øą°—" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "US ą°®ą±Œą°‚ą°Ÿą±ˆą°Øą± సమయం - చిహువాహువా US ą°øą°°ą°æą°¹ą°¦ą±ą°¦ą±ą°•ą± ą°¦ą°—ą±ą°—ą°°ą°—ą°¾" #: timezones.h:322 msgid "America/Panama" msgstr "అమెరిక/పనామా" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "అమెరిక/ą°Ŗą°Øą±ą°—ą°æą°Ÿą±ą°‚ą°—ą±" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "ą°ˆą°øą±ą°Ÿą±ą°°ą°Øą± సమయం - ą°Ŗą°¾ą°‚ą°—ą±ą°Øą°æą°°ą±ą°Ÿą°‚ą°—ą±, ą°Øą±ą°Æą±ą°Øą°¾ą°µą°¤ą±" #: timezones.h:326 msgid "America/Paramaribo" msgstr "అమెరిక/ą°Ŗą°°ą°®ą±Šą°°ą±‡ą°¬ą±‹" #: timezones.h:327 msgid "America/Phoenix" msgstr "అమెరిక/ą°«ą±Šą°Øą±†ą°•ą±ą°øą°æ" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "ą°®ą±Œą°‚ą°Ÿą±ˆą°Øą± ą°øą±ą°Ÿą°¾ą°‚ą°”ą°°ą±ą°”ą± ą°Ÿą±ˆą°®ą± - ą°…ą°°ą°æą°œą±‹ą°Øą°¾" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "అమెరిక/ą°Ŗą±‹ą°°ą±ą°Ÿą±-ą°‰-ą°Ŗą±ą°°ą°æą°Øą±ą°øą±‡" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "అమెరిక/ą°Ŗą±‹ą°°ą±ą°Ÿą±‹ą°†ą°•ą±ą°°ą±‡" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "అమెరిక/ą°Ŗą±‹ą°°ą±ą°Ÿą±‹ą°†ą°«ą± ą°øą±ą°«ą±†ą°Æą°æą°Øą±" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "అమెరిక/ą°Ŗą±‹ą°°ą±ą°Ÿą±‹ ą°µą±†ą°²ą±ą°¹ą±‹" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "రాంఔోనియా" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "అమెరిక/ą°Ŗą±‹ą°°ą±ą°Ÿą±‹ రికో" #: timezones.h:337 msgid "America/Rainy_River" msgstr "అమెరిక/రైని ą°°ą°æą°µą°°ą±" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± ą°Ÿą±ˆą°®ą± - ą°°ą±ˆą°Øą±€ ą°°ą°æą°µą°°ą± & ą°«ą±‹ą°°ą±ą°Ÿą± ą°«ą±ą°°ą°¾ą°Øą±ą°øą±†ą°øą±, ą°†ą°Øą±ą°Ÿą°¾ą°°ą°æą°Æą±‹" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "అమెరిక/ą°°ą°‚ą°•ą°æą°Øą± ą°‡ą°Øą±ą°²ą±†ą°Ÿą±" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± ą°Ÿą±ˆą°®ą± - ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± ą°Øą±ą°Æą±ą°Øą°¾ą°µą°¤ą±" #: timezones.h:343 msgid "America/Recife" msgstr "అమెరిక/రిసిఫె" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "ą°Ŗą±†ą°°ą±ą°Øą°¾ą°‚ą°¬ą±ą°•ą±Š" #: timezones.h:346 msgid "America/Regina" msgstr "అమెరిక/ą°°ą±‡ą°œą°æą°Ø" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± ą°øą±ą°Ÿą°¾ą°‚ą°”ą°°ą±ą°”ą± ą°Ÿą±ˆą°®ą± - ą°øą°¾ą°øą±ą°•ą±†ą°Ÿą±ą°šą°æą°µą°¾ą°Øą± - చాలా ą°øą±ą°„ą°¾ą°Øą°®ą±ą°²ą±" #: timezones.h:349 msgid "America/Resolute" msgstr "అమెరికా/ą°°ą±†ą°øą±‹ą°²ą±ą°Æą±‚ą°Ÿą±" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "ą°ˆą°øą±ą°Ÿą±ą°°ą°Øą± ą°øą±ą°Ÿą°¾ą°‚ą°”ą°°ą±ą°”ą± ą°Ÿą±ˆą°®ą± - ą°°ą°æą°œą±Šą°²ą±ą°Æą±‚ą°Ÿą±, ą°Øą±ą°Æą±ą°Øą°¾ą°µą°¤ą±" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "అమెరిక/ą°°ą°æą°Æą±‹ą°¬ą±ą°°ą°¾ą°‚ą°•ą±‹" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "ą°†ą°•ą±ą°°ą±†" #: timezones.h:355 msgid "America/Rosario" msgstr "అమెరిక/రోసారియో" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "అమెరికా/ą°øą°¾ą°‚ą°Ÿą°¾ ą°Æą°æą°œą°¬ą±†ą°²ą±" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "ą°®ą±†ą°•ą±ą°øą°æą°•ą°Øą± ą°Ŗą°øą°æą°«ą°æą°•ą± సమయం - బఔా ą°•ą°¾ą°²ą°æą°«ą±‹ą°°ą±ą°Øą°æą°Æą°¾ US ą°øą°°ą°æą°¹ą°¦ą±ą°¦ą±ą°Øą±ą°‚ą°”ą°æ దూరంగా" #: timezones.h:359 msgid "America/Santarem" msgstr "అమెరికా/ą°øą°¾ą°‚ą°Ÿą°¾ą°°ą±†ą°®ą±" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "W ą°Ŗą°°ą°¾" #: timezones.h:362 msgid "America/Santiago" msgstr "అమెరికా/ą°øą°‚ą°Ÿą±ˆą°—ą±‹" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "అమెరిక/ą°øą°‚ą°Ÿą±‹ą°”ą±Šą°®ą°æą°‚ą°—ą±‹" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "అమెరిక/ą°øą°¾ą°“ą°Ŗą±Œą°²ą±‹" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "S & SE ą°¬ą±ą°°ą±†ą°œą°æą°²ą± (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "అమెరిక/ą°øą±ą°•ą±‹ą°°ą±†ą°øą±ą°¬ą°æą°øą°‚ą°”ą±" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Scoresbysund / Ittoqqortoormiit" #: timezones.h:372 msgid "America/Shiprock" msgstr "అమెరిక/ą°·ą°æą°Ŗą±ą°°ą±‹ą°•ą±" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "ą°®ą±Œą°‚ą°Ÿą±ˆą°Øą± ą°Ÿą±ˆą°®ą± - ą°Øą°µą°¾ą°œą±‹" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "అమెరికా/ą°Žą°øą±ā€Œą°Ÿą°æ ą°¬ą°°ą±ą°¤ą±†ą°²ą±†ą°®ą°æ" #: timezones.h:376 msgid "America/St_Johns" msgstr "అమెరిక/ą°Žą°øą±ą°Ÿą±€ą°œą±‹ą°Øą±ą°øą±" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "ą°Øą±ą°Æą±‚ą°«ą±Œą°‚ą°”ą±ā€Œą°²ą°¾ą°‚ą°”ą± ą°Ÿą±ˆą°®ą±, SE ą°²ą°¾ą°¬ą±ą°°ą°¾ą°”ą°°ą± కలిపి" #: timezones.h:379 msgid "America/St_Kitts" msgstr "అమెరిక/ą°Žą°øą±ą°Ÿą±€ą°•ą°æą°Ÿą±ą°Ÿą±ą°øą±" #: timezones.h:380 msgid "America/St_Lucia" msgstr "అమెరిక/ą°Žą°øą±ą°Ÿą±€ą°²ą±ą°øą°æą°…" #: timezones.h:381 msgid "America/St_Thomas" msgstr "అమెరిక/ą°Žą°øą±ą°Ÿą±€ą°„ą±‹ą°®ą°øą±" #: timezones.h:382 msgid "America/St_Vincent" msgstr "అమెరిక/ą°Žą°øą±ą°Ÿą±€ą°µą°æą°Øą±ą°øą±†ą°‚ą°Ÿą±" #: timezones.h:383 msgid "America/Swift_Current" msgstr "అమెరిక/ą°øą±ą°µą°æą°«ą±ą°Ÿą±ą°•ą°°ą°‚ą°Ÿą±" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± ą°øą±ą°Ÿą°¾ą°‚ą°”ą°°ą±ą°”ą± ą°Ÿą±ˆą°®ą± - ą°øą°¾ą°øą±ą°•ą°Ÿą±ą°šą°µą°¾ą°Øą± - ą°®ą°æą°”ą±ā€Œą°µą±†ą°øą±ą°Ÿą±" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "అమెరిక/ą°Ÿą±†ą°—ą±ą°šą°æą°—ą°²ą±ą°Ŗ" #: timezones.h:387 msgid "America/Thule" msgstr "అమెరిక/తులే" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "ఄులే / ą°Ŗą°æą°Ÿą±ą°«ą°æą°•ą±" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "అమెరిక/ą°„ą°‚ą°”ą°°ą±ą°¬ą±‡" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "ą°ˆą°øą±ą°Ÿą±ą°°ą°Øą± ą°Ÿą±ˆą°®ą± - ą°„ą°‚ą°”ą°°ą± బే, ą°†ą°Øą±ą°Ÿą°¾ą°°ą°æą°Æą±‹" #: timezones.h:393 msgid "America/Tijuana" msgstr "అమెరిక/ą°¤ą°æą°œą±ą°Øą±ą°Ø" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "US ą°Ŗą°øą°æą°«ą°æą°•ą± సమయం - బజ ą°•ą°¾ą°²ą°æą°«ą±‹ą°°ą±ą°Øą°æą°Æą°¾ US ą°øą°°ą°æą°¹ą°¦ą±ą°¦ą±ą°•ą± ą°¦ą°—ą±ą°—ą°°ą°—ą°¾" #: timezones.h:396 msgid "America/Toronto" msgstr "అమెరిక/ą°Ÿą±Šą°°ą±Šą°‚ą°Ÿą±‹" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "ą°ˆą°øą±ą°Ÿą±ą°°ą°Øą± ą°Ÿą±ˆą°®ą± - ą°†ą°Øą±ą°Ÿą°¾ą°°ą°æą°Æą±‹ - చాలా ą°øą±ą°„ą°¾ą°Øą°®ą±ą°²ą±" #: timezones.h:399 msgid "America/Tortola" msgstr "అమెరిక/ą°Ÿą±Šą°°ą±ą°Ÿą±‹ą°²" #: timezones.h:400 msgid "America/Vancouver" msgstr "అమెరిక/ą°µą°Øą±ą°•ą±‹ą°µą±‡ą°°ą±" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "ą°Ŗą°øą°æą°«ą°æą°•ą± ą°Ÿą±ˆą°®ą± - ą°µą±†ą°øą±ą°Ÿą± ą°¬ą±ą°°ą°æą°Ÿą±€ą°·ą± ą°•ą±Šą°²ą°‚ą°¬ą°æą°Æą°¾" #: timezones.h:403 msgid "America/Virgin" msgstr "అమెరిక/ą°µą°æą°°ą±ą°—ą°æą°Øą±" #: timezones.h:404 msgid "America/Whitehorse" msgstr "అమెరిక/ą°µą±ˆą°Ÿą± ą°¹ą°¾ą°°ą±ą°øą±" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "ą°Ŗą°øą°æą°«ą°æą°•ą± ą°Ÿą±ˆą°®ą± - ą°øą±Œą°¤ą± ą°Æą±ą°•ą°¾ą°Øą±" #: timezones.h:407 msgid "America/Winnipeg" msgstr "అమెరిక/ą°µą°æą°Øą±ą°Øą±€ą°Ŗą±‡ą°œą±" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± ą°Ÿą±ˆą°®ą± - ą°®ą°æą°Øą°æą°Ÿą±‹ą°¬ą°¾ & ą°µą±†ą°øą±ą°Ÿą± ą°†ą°Øą±ą°Ÿą°¾ą°°ą°æą°Æą±‹" #: timezones.h:410 msgid "America/Yakutat" msgstr "అమెరిక/ą°Æą°¾ą°•ą±ą°Ÿą°•ą±" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "ą°…ą°²ą°øą±ą°•ą°¾ ą°Ÿą±ˆą°®ą± - ą°…ą°²ą°øą±ą°•ą°¾ ą°Ŗą°¾ą°Øą±ā€Œą°¹ą°¾ą°‚ą°”ą°æą°²ą± ą°Øą±†ą°•ą±" #: timezones.h:413 msgid "America/Yellowknife" msgstr "అమెరిక/ą°Æą°²ą±ą°²ą±‹ą°Øą±ˆą°«ą±" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "ą°®ą±Œą°‚ą°Ÿą±ˆą°Øą± ą°Ÿą±ˆą°®ą± - ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± ą°Øą°¾ą°°ą±ą°¤ą±ą°µą±†ą°øą±ą°Ÿą± ą°Ÿą±†ą°°ą±ą°°ą°æą°Ÿą±Šą°°ą±€ą°øą±" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "అమెరిక/ą°øą°øą±‡ą°Æą±" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "కసే ą°øą±ą°Ÿą±‡ą°·ą°Øą±, ą°¬ą±ˆą°²ą±€ ą°Ŗą±†ą°Øą°æą°Øą±ā€Œą°øą±ą°²ą±ą°µą°¾" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "అమెరిక/ą°”ą°µą°æą°øą±" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "ą°”ą±‡ą°µą°æą°øą± ą°øą±ą°Ÿą±‡ą°·ą°Øą±, ą°µą±†ą°øą±ą°Ÿą±ā€Œą°«ą±‹ą°²ą±ą°”ą± ą°¹ą°æą°²ą±ą°øą±" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "ą°…ą°‚ą°Ÿą°¾ą°°ą±ą°•ą°æą°Ÿą°æą°•/ą°”ą±ą°®ą±Œą°‚ą°Ÿą±ą°”ą±ą°°ą±ą°µą°æą°²ą±ą°²ą±‡" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "ą°”ą±ą°Æą±ą°®ą°¾ą°‚ą°Ÿą±-ą°”ą±ą°°ą±ą°µą°æą°²ą±ą°²ą±‡ ą°øą±ą°Ÿą±‡ą°·ą°Øą±, ą°Ÿą±†ą°°ą±ą°°ą±€ ą°Žą°”ą±†ą°²ą°æ" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "ą°…ą°‚ą°Ÿą°¾ą°°ą±ą°•ą°æą°Ÿą°æą°•/ą°®ą±†ą°•ą±ą°µą°¾ą°°ą°æ" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "ą°®ą±†ą°•ą±ą°µą°¾ą°°ą°æ ą°ą°²ą°¾ą°‚ą°”ą± ą°øą±ą°Ÿą±‡ą°·ą°Øą±, ą°®ą±†ą°•ą±ą°µą°¾ą°°ą°æ ą°ą°²ą°¾ą°‚ą°”ą±" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "ą°…ą°‚ą°Ÿą°¾ą°°ą±ą°•ą°æą°Ÿą°æą°•/ą°®ą°¾ą°µą±ą°øą°Øą±" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "ą°®ą°¾ą°øą°¾ą°Øą± ą°øą±ą°Ÿą±‡ą°·ą°Øą±, ą°¹ą°¾ą°²ą±ą°®ą±‡ బే" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "ą°…ą°‚ą°Ÿą°¾ą°°ą±ą°•ą°æą°Ÿą°æą°•/ą°®ą±ą°®ą±ą°°ą±ą°”ą±‹" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "ą°®ą±†ą°•ą±ā€Œą°®ą±ą°°ą±ą°”ą±‹ ą°øą±ą°Ÿą±‡ą°·ą°Øą±, ą°°ą°¾ą°øą± ą°ą°²ą°¾ą°‚ą°”ą±" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "ą°…ą°‚ą°Ÿą°¾ą°°ą±ą°•ą°æą°Ÿą°æą°•/ą°Ŗą°¾ą°²ą±ą°®ą°°ą±" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "ą°Ŗą°¾ą°®ą°°ą± ą°øą±ą°Ÿą±‡ą°·ą°Øą±, ą°ą°Øą±ą°µą°°ą±ą°øą± ą°ą°²ą°¾ą°‚ą°”ą±" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "ą°…ą°‚ą°Ÿą°¾ą°°ą±ą°•ą°æą°Ÿą°æą°•/రోఄేరా" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "ą°°ą±Šą°„ą±†ą°°ą°¾ ą°øą±ą°Ÿą±‡ą°·ą°Øą±, ą°…ą°”ą±†ą°²ą±ˆą°”ą± ą°ą°²ą°¾ą°‚ą°”ą±" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "ą°…ą°‚ą°Ÿą°¾ą°°ą±ą°•ą°æą°Ÿą°æą°•/ą°øą±Œą°¤ą±ą°Ŗą±‹ą°²ą±‡" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "ą°…ą°®ą±ą°‚ą°”ą±ā€Œą°øą±†ą°Øą±-ą°øą±ą°•ą°¾ą°Ÿą± ą°øą±ą°Ÿą±‡ą°·ą°Øą±, ą°øą±Œą°¤ą± ą°Ŗą±Šą°²ą±†" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "ą°…ą°‚ą°Ÿą°¾ą°°ą±ą°•ą°æą°Ÿą°æą°•/ą°øą±ą°Æą±‹ą°µ" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "ą°øą±ą°Æą±‹ą°µą°¾ ą°øą±ą°Ÿą±‡ą°·ą°Øą±, E ą°†ą°Øą±ą°—ą±ą°²ą± ఐ" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "ą°…ą°‚ą°Ÿą°¾ą°°ą±ą°•ą°æą°Ÿą°æą°•/ą°µą±‹ą°øą±ą°Ÿą±‹ą°•ą±" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "ą°µą°¾ą°øą±ą°Ÿą±‹ą°•ą± ą°øą±ą°Ÿą±‡ą°·ą°Øą±, ą°¦ą°•ą±ą°·ą°æą°£ ą°…ą°Æą°æą°øą±ą°•ą°¾ą°‚ą°¤ ధృవము" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "ą°†ą°°ą±ą°•ą°æą°Ÿą°æą°•ą±/ą°²ą°¾ą°‚ą°—ą±‡ą°°ą±ą°¬ą±‡ą°Æą°æą°Øą±" #: timezones.h:450 msgid "Asia/Aden" msgstr "ఆసియా/ą°†ą°”ą±‡ą°Øą±" #: timezones.h:451 msgid "Asia/Almaty" msgstr "ఆసియా/ą°†ą°²ą±ą°®ą°Ÿą±‡" #: timezones.h:454 msgid "Asia/Amman" msgstr "ఆసియా/ą°…ą°®ą±ą°®ą°Øą±" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "ఆసియా/ą°…ą°‚ą°”ą±ą°°" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "ą°®ą°¾ą°øą±ą°•ą±‹+08 - ą°¬ą±‡ą°°ą°æą°‚ą°—ą± ą°øą°®ą±ą°¦ą±ą°°ą°®ą±" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "ఆసియా/ą°…ą°•ą±ą°Ÿą±‚" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "ą°…ą°Ÿą°æą°°ą±Œ (ą°…ą°Ÿą°æą°°ą±, ą°—ą±ą°°ą°æą°µą±), ą°®ą°¾ą°Øą±ą°—ą°æą°øą±ą°Ÿą±Œ (ą°®ą°¾ą°Øą±ą°•ą°æą°øą±ą°Ÿą±Œ)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "ఆసియా/ą°…ą°•ą±ą°Ÿą±‹ą°¬ą±‡" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "ą°†ą°•ą±ą°Ÿą±Šą°¬ą±† (ą°†ą°•ą±ą°Ÿą±Šą°¬ą±†)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "ఆసియా/ą°†ą°øą±ą°˜ą°¬ą°¤ą±" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "ఆసియా/ą°†ą°øą±ą°•ą°¾ą°¬ą°¦ą±" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "ఆసియా/ą°¬ą°¾ą°—ą±ą°¦ą°¾ą°¦ą±" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "ఆసియా/ą°¬ą°¹ą±ą°°ą±†ą°Æą°æą°Øą±" #: timezones.h:468 msgid "Asia/Baku" msgstr "ఆసియా/బకు" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "ఆసియా/ą°¬ą±ą°Æą°¾ą°‚ą°•ą°¾ą°‚ą°—ą±" #: timezones.h:470 msgid "Asia/Beirut" msgstr "ఆసియా/ą°¬ą±€ą°°ą°Ÿą±" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "ఆసియా/ą°­ą°æą°·ą±ą°•ą±‡ą°•ą±" #: timezones.h:472 msgid "Asia/Brunei" msgstr "ఆసియా/ą°¬ą±ą°°ą±ą°Øą±‡ą°Æą±" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "ఆసియా/ą°•ą°²ą°•ą°¤ą±ą°¤ą°¾" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "ఆసియా/ą°šą±Šą°Æą±ą°¬ą°²ą±ą°øą°Øą±" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "ą°”ą±Šą°Øą°¾ą°”ą±, ą°øą±ą°–ą±ā€Œą°¬ą°¾ą°¤ą°°ą±" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "ఆసియా/ą°šą±‹ą°Øą±ą°•ą°æą°‚ą°—ą±" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą± చైనా - ą°øą°æą°šą±ą°µą°¾ą°Øą±, ą°Æą±ą°Øą°¾ą°Øą±, ą°—ą±ą°µą°¾ą°—ą±ą°œą°æ, ą°·ą°¾ą°‚ą°—ą±ą°œą°æ, ą°—ą±ą°Æą°æą°œą±Œ, ą°®ą±Šą°¦ą°²ą°—ą±." #: timezones.h:480 msgid "Asia/Chungking" msgstr "ఆసియా/ą°šą±ą°‚ą°•ą°æą°‚ą°—ą±" #: timezones.h:481 msgid "Asia/Colombo" msgstr "ఆసియా/ą°•ą±Šą°²ą°‚ą°¬ą±‹" #: timezones.h:482 msgid "Asia/Dacca" msgstr "ఆసియా/ą°”ą°•ą±ą°•" #: timezones.h:483 msgid "Asia/Damascus" msgstr "ఆసియా/ą°”ą±†ą°®ą°¾ą°øą±ą°•ą°øą±" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "ఆసియా/ఢాక" #: timezones.h:485 msgid "Asia/Dili" msgstr "ఆసియా/దిలి" #: timezones.h:486 msgid "Asia/Dubai" msgstr "ఆసియా/ą°¦ą±ą°¬ą°¾ą°Æą±" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "ఆసియా/ą°¦ą±ą°·ą°Øą±ą°¬ą±‡" #: timezones.h:488 msgid "Asia/Gaza" msgstr "ఆసియా/ą°—ą°¾ą°œą°¾" #: timezones.h:489 msgid "Asia/Harbin" msgstr "ఆసియా/ą°¹ą°°ą±ą°¬ą°æą°Øą±" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "ą°¹ą±ˆą°²ą°¾ą°‚ą°—ą±ā€Œą°œą°æą°Æą°¾ą°‚ą°—ą± (ą°®ą±Šą°¹ą±† ą°¤ą°Ŗą±ą°Ŗą°æą°‚ą°šą°æ), ą°œą°æą°²ą°æą°Øą±" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "ఆసియా/ą°¹ą±Šą°šą°æą°®ą°æą°Øą±ą°¹ą±" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "ఆసియా/ą°¹ą°¾ą°‚ą°•ą°¾ą°‚ą°—ą±" #: timezones.h:494 msgid "Asia/Hovd" msgstr "ఆసియా/ą°¹ą±‹ą°µą±ą°”" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "ą°¬ą±†ą°Æą°¾ą°Øą±-ą°…ą°²ą±ą°—ą±†, ą°—ą±Šą°µą°æ-ą°†ą°²ą±ą°Ÿą±ˆ, ą°¹ą±‹ą°µą±ą°”ą±, Uvs, ą°œą±ą°µą°–ą°¾ą°Øą±" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "ఆసియా/ą°‡ą°°ą±ą°•ą±ą°¤ą±ą°øą°•ą±" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "ą°®ą°¾ą°øą±ą°•ą±‹+05 - ą°²ą±‡ą°•ą± ą°¬ą±ˆą°•ą°²ą±" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "ఆసియా/ą°‡ą°øą±ą°¤ą°¾ą°Øą±ą°¬ą±ą°²ą±" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "ఆసియా/ą°œą°•ą°°ą±ą°¤ą°¾" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "జావా & ą°øą±ą°®ą°¤ą±ą°°ą°¾" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "ఆసియా/ą°œą°Æą°Ŗą±‚ą°°ą±" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "ą°ą°°ą°æą°Æą°Øą± జయా & ą°®ą±Šą°²ą±ą°•ą±ą°•ą°øą±" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "ఆసియా/ą°œą±†ą°°ą±‚ą°øą°²ą±‡ą°®ą±" #: timezones.h:508 msgid "Asia/Kabul" msgstr "ఆసియా/ą°•ą°¾ą°¬ą±‚ą°²ą±" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "ఆసియా/ą°•ą°‚ą°šą°Ÿą±ą°•" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "ą°®ą°¾ą°øą±ą°•ą±‹+08 - ą°•ą°®ą±ą°šą°¤ą±ą°•ą°¾" #: timezones.h:512 msgid "Asia/Karachi" msgstr "ఆసియా/ą°•ą°°ą°¾ą°šą±€" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "ఆసియా/ą°•ą°·ą±ą°—ą°°ą±" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "ą°Ŗą°¶ą±ą°šą°æą°® ą°Ÿą°æą°¬ą±†ą°Ÿą± & ą°—ą±ą°œą°æą°‚ą°œą°æą°Æą°‚ą°—ą±" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "ఆసియా/ą°•ą°¾ą°Ÿą±ą°®ą°¾ą°‚ą°”ą±" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "ఆసియా/ą°•ą°¾ą°Ÿą±ą°®ą°¾ą°‚ą°”ą±" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "ఆసియా/ą°•ą±‹ą°²ą±ā€Œą°•ą°Ÿą°¾" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "ఆసియా/ą°•ą°øą±ą°Øą±‹ą°Æą°°ą±ą°øą±ą°•ą±" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "ą°®ą°¾ą°øą±ą°•ą±‹+04 - ą°Æą±†ą°Øą°æą°øą±ˆ నది" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "ఆసియా/ą°•ą±‹ą°²ą°¾ą°²ą°‚ą°Ŗą±‚ą°°ą±" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "ą°Ŗą±†ą°Øą°æą°Øą±ā€Œą°øą±ą°²ą°¾ą°°ą± మలేసియా" #: timezones.h:525 msgid "Asia/Kuching" msgstr "ఆసియా/ą°•ą±‚ą°šą°æą°‚ą°—ą±" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "ą°øą°­ą°¾ą°¹ą± & ą°øą°°ą°¾ą°µą°•ą±" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "ఆసియా/ą°•ą±ą°µą±ˆą°Ÿą±" #: timezones.h:529 msgid "Asia/Macao" msgstr "ఆసియా/ą°®ą°¾ą°šą±‹" #: timezones.h:530 msgid "Asia/Macau" msgstr "ఆసియా/మాచు" #: timezones.h:531 msgid "Asia/Magadan" msgstr "ఆసియా/ą°®ą°—ą±ą°”ą°Øą±" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "ą°®ą°¾ą°øą±ą°•ą±‹+08 - ą°®ą°—ą°”ą°Øą±" #: timezones.h:534 msgid "Asia/Makassar" msgstr "ఆసియా/ą°®ą°•ą°øą±ą°øą°°ą±" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "ą°¤ą±‚ą°°ą±ą°Ŗą± & ą°¦ą°•ą±ą°·ą°æą°£ ą°¬ą±Šą°°ą±ą°Øą°æą°Æą±‹, ą°øą±†ą°²ą±†ą°¬ą±†ą°øą±, బలి, నుసా ą°Ÿą±†ą°‚ą°—ą°°ą±ą°°ą°¾, ą°Ŗą°¶ą±ą°šą°æą°® ą°Ÿą°æą°®ą±‹ą°°ą±" #: timezones.h:537 msgid "Asia/Manila" msgstr "ఆసియా/మనీల" #: timezones.h:538 msgid "Asia/Muscat" msgstr "ఆసియా/ą°®ą°øą±ą°•ą°Ÿą±" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "ఆసియా/ą°Øą°æą°•ą±Šą°øą°æą°Æ" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "ఆసియా/ą°Øą±‹ą°µą±Šą°•ą±ą°œą±ą°Øą°¾ą°øą±ą°•ą±" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "ą°®ą°¾ą°øą±ą°•ą±‹+03 - ą°Øą±Šą°µą±Šą°•ą±ą°œą±ą°Øą°¾ą°øą±ą°•ą±" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "ఆసియా/ą°Øą±Šą°µą±‹ą°øą°æą°¬ą±ą°°ą°æą°øą±ą°•ą±" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "ą°®ą°¾ą°øą±ą°•ą±‹+03 - ą°Øą±Šą°µą±Šą°øą°æą°¬ą°æą°°ą±ā€Œą°øą±ą°•ą±" #: timezones.h:546 msgid "Asia/Omsk" msgstr "ఆసియా/ą°“ą°‚ą°øą±ą°•" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "ą°®ą°¾ą°øą±ą°•ą±‹+03 - ą°Ŗą°¶ą±ą°šą°æą°® ą°øą±ˆą°¬ą±€ą°°ą°æą°Æą°¾" #: timezones.h:549 msgid "Asia/Oral" msgstr "ఆసియా/ą°“ą°°ą°²ą±" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "ą°Ŗą°¶ą±ą°šą°æą°® ą°•ą°œą°–ą°øą±ą°¤ą°¾ą°Øą±" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "ఆసియా/ą°«ą±ą°Øą±‹ą°®ą±ą°«ą±‡ą°Øą±" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "ఆసియా/ą°«ą±Šą°Øą±ą°Ÿą°‚ą°•ą±" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "ą°Ŗą°¶ą±ą°šą°æą°® & ą°•ą±‡ą°‚ą°¦ą±ą°° ą°¬ą±Šą°°ą±ą°Øą±Œ" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "ఆసియా/ą°Ŗą±ą°Æą±‹ą°‚ą°—ą°¾ą°‚ą°—ą±" #: timezones.h:557 msgid "Asia/Qatar" msgstr "ఆసియా/ą°•ą±ą°µą°¾ą°¤ą±ą°°ą°¾" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "ఆసియా/ą°•ą±ą°Æą±‚ą°œą±ą°²ą±‹ą°”ą°¾" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "ą°•ą±ą°µą°æą°œą°æą°²ą±‹ą°°ą±ą°”ą°¾ (ą°•ą±ą°µą°æą°œą°æą°²ą±‹ą°°ą±ą°”ą°¾, ą°œą°æą°²ą±-ą°“ą°°ą±ą°”ą°¾)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "ఆసియా/ą°°ą°‚ą°—ą±‹ą°Øą±" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "ఆసియా/రియాధ" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "ఆసియా/రియాధ87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "ఆసియా/రియాధ88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "ఆసియా/రియాధ88" #: timezones.h:566 msgid "Asia/Saigon" msgstr "ఆసియా/ą°øą±ˆą°—ą±‹ą°Øą±" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "ఆసియా/ą°¶ą°–ą°²ą°æą°Øą±" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "ą°®ą°¾ą°øą±ą°•ą±‹+07 - ą°øą°–ą°²ą°æą°Øą± ą°ą°²ą°¾ą°‚ą°”ą±" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "ఆసియా/ą°øą°®ą°–ą°‚ą°”ą±" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "ą°Ŗą°¶ą±ą°šą°æą°® ą°µą±ą°œą±ą°¬ą±†ą°•ą°æą°øą±ą°¤ą°¾ą°Øą±" #: timezones.h:573 msgid "Asia/Seoul" msgstr "ఆసియా/ą°øą±‡ą°‰ą°²ą±" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "ఆసియా/ą°·ą°¾ą°‚ą°˜ą±ˆ" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "ą°ˆą°øą±ą°Ÿą± చైనా - ą°¬ą±€ą°œą°æą°‚ą°—ą±, ą°—ą±ą°µą°¾ą°‚ą°—ą±ā€Œą°”ą°¾ą°‚ą°—ą±, ą°·ą°¾ą°‚ą°˜ą±ˆ, ą°®ą±Šą°¦ą°²ą°—ą±ą°Øą°µą°æ." #: timezones.h:577 msgid "Asia/Singapore" msgstr "ఆసియా/ą°øą°æą°‚ą°—ą°Ŗą±‚ą°°ą±" #: timezones.h:578 msgid "Asia/Taipei" msgstr "ఆసియా/ą°„ą±ˆą°Ŗą±‡ą°Æą±" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "ఆసియా/ą°„ą°¾ą°·ą±ą°•ą°‚ą°Ÿą±" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "ą°¤ą±‚ą°°ą±ą°Ŗą± ą°‰ą°œą±ą°¬ą±†ą°•ą°æą°øą±ą°¤ą°¾ą°Øą±" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "ఆసియా/ą°Ÿą±ą°¬ą°æą°²ą°æą°øą°æ" #: timezones.h:583 msgid "Asia/Tehran" msgstr "ఆసియా/ą°¤ą±†ą°¹ą±ą°°ą°¾ą°Øą±" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "ఆసియా/ą°¤ą±†ą°²ą°¾ą°µą°æą°µą±" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "ఆసియా/ఄింబు" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "ఆసియా/ఄింపు" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "ఆసియా/ą°Ÿą±‹ą°•ą±ą°Æą±‹" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "ఆసియా/ą°Šą°œą±ą°‚ą°—ą±ą°Ŗą°‚ą°”ą°‚ą°—ą±" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "ఆసియా/ą°‰ą°²ą±ą°²ą°Øą±ą°¬ą°Ÿą±ą°°" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "ఆసియా/ą°‰ą°²ą°Øą±ą°¬ą°Ÿą±‹ą°°ą±" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "ఆసియా/ఉరుముకి" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "ą°Ÿą°æą°¬ą±†ą°Ÿą± & ą°•ą±ą°øą°æą°Øą±ā€Œą°œą°æą°Æą°¾ą°‚ą°—ą± లో చాలా" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "ఆసియా/ą°µą°æą°Æą±†ą°‚ą°Ÿą°æą°Æą°¾ą°Øą±‡" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "ఆసియా/ą°µą±ą°²ą°¾ą°”ą°æą°µą±‹ą°øą±ą°Ÿą±‹ą°•ą±" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "ą°®ą°¾ą°øą±ą°•ą±‹+07 - ą°…ą°®ą±ą°°ą± నది" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "ఆసియా/ą°Æą°¾ą°•ą±ą°Ÿą±ą°øą±ą°•" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "ą°®ą°¾ą°øą±ą°•ą±‹+06 - లెనా నది" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "ఆసియా/ą°Æą±†ą°•ą±ą°Ÿą±‡ą°°ą°æą°Æą°¬ą°°ą±ą°—ą±" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "ą°®ą°¾ą°øą±ą°•ą±‹+02 - ą°‰ą°°ą±ą°²ą°¾ą°øą±" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "ఆసియా/ą°Æą±†ą°°ą±‡ą°µą°Øą±" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "ą°…ą°Ÿą±ą°²ą°¾ą°‚ą°Ÿą°æą°•ą±/ą°…ą°œą±‹ą°°ą±‡ą°øą±" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "ą°Žą°œą±‹ą°°ą±†ą°øą±" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "ą°…ą°Ÿą±ą°²ą°¾ą°‚ą°Ÿą°æą°•ą±/ą°¬ą±†ą°°ą±ą°¬ą±ą°”ą°¾" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "ą°…ą°Ÿą±ą°²ą°¾ą°‚ą°Ÿą°æą°•ą±/కనరే" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "కెనరీ ą°¦ą±ą°µą±€ą°Ŗą°¾ą°²ą±" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "ą°…ą°Ÿą±ą°²ą°¾ą°‚ą°Ÿą°æą°•ą±/ą°•ą°Ŗą±‡ą°µą±†ą°°ą±ą°”ą±‡" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "ą°…ą°Ÿą±ą°²ą°¾ą°‚ą°Ÿą°æą°•ą±/ą°«ą±‡ą°°ą±‹ą°" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "ą°…ą°Ÿą±ą°²ą°¾ą°‚ą°Ÿą°æą°•ą±/ą°«ą°°ą±‹ą°Æą±" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "ą°…ą°Ÿą±ą°²ą°¾ą°‚ą°Ÿą°æą°•ą±/ą°œą°Øą±ą°®ą°Æą±‡ą°Øą±" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "ą°…ą°Ÿą±ą°²ą°¾ą°‚ą°Ÿą°æą°•ą±/ą°®ą°”ą±‡ą°Æą±ą°°ą°¾" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "ą°®ą±†ą°”ą±ˆą°° ą°¦ą±ą°µą±€ą°Ŗą°¾ą°²ą±" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "ą°…ą°Ÿą±ą°²ą°¾ą°‚ą°Ÿą°æą°•ą±/ą°°ą±†ą°•ą±ą°œą°¾ą°µą°æą°•ą±" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "ą°…ą°Ÿą±ą°²ą°¾ą°‚ą°Ÿą°æą°•ą±/ą°øą±Œą°¤ą± ą°œą°æą°Æą±‹ą°°ą±ą°—ą°æą°Æą°¾" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "ą°…ą°Ÿą±ą°²ą°¾ą°‚ą°Ÿą°æą°•ą±/ą°øą±ą°Ÿą°¾ą°Øą±ą°²ą±‡" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "ą°…ą°Ÿą±ą°²ą°¾ą°‚ą°Ÿą°æą°•ą±/ą°Žą°øą±ą°Ÿą±€ą°¹ą±†ą°²ą±‡ą°Øą°¾" #: timezones.h:625 msgid "Australia/ACT" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/అఔెలఔె" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "ą°¦ą°•ą±ą°·ą°æą°£ ą°†ą°øą±ą°Ÿą±ą°°ą±‡ą°²ą°æą°Æą°¾" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ą°¬ą±ą°°ą°æą°øą±ą°¬ą°æą°Øą±" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "ą°•ą±ą°µą±€ą°Øą±ą°øą±ā€Œą°²ą°¾ą°‚ą°”ą± - చాలా ą°øą±ą°„ą°¾ą°Øą°®ą±ą°²ą±" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ą°¬ą±ą°°ą±‹ą°•ą±†ą°Øą±ą°¹ą°æą°²ą±" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "ą°•ą±Šą°¤ą±ą°¤ ą°øą±Œą°¤ą± ą°µą±‡ą°²ą±ą°øą± - ą°Æą°¾ą°Øą±ą°•ą±Šą°µą°æą°Øą±ą°Øą°¾" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ą°•ą°¾ą°Øą±ą°¬ą±†ą°°ą±ą°°ą°¾" #: timezones.h:636 msgid "Australia/Currie" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ą°•ą±ą°°ą±ą°°ą±‡" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "ą°¤ą°øą±ą°®ą°¾ą°Øą°æą°Æą°¾ - ą°•ą°æą°‚ą°—ą± ą°¦ą±ą°µą±€ą°Ŗą°®ą±" #: timezones.h:639 msgid "Australia/Darwin" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ą°”ą°°ą±ą°µą°æą°Øą±" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "ą°Øą°¾ą°°ą±ą°¤ą±ą°°ą°Øą± ą°Ÿą±†ą°°ą±ą°°ą°æą°Ÿą±Šą°°ą°æ" #: timezones.h:642 msgid "Australia/Eucla" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ą°Æą±ą°•ą±ą°²ą°¾" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "ą°Ŗą°¶ą±ą°šą°æą°® ą°†ą°øą±ą°Ÿą±ą°°ą±‡ą°²ą°æą°Æą°¾ - ą°Æą±ą°•ą±ą°²ą°¾ ą°Ŗą±ą°°ą°¾ą°‚ą°¤ą°®ą±" #: timezones.h:645 msgid "Australia/Hobart" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ą°¹ą±‹ą°¬ą°°ą±ą°Ÿą±" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "ą°¤ą°øą±ą°®ą°¾ą°Øą°æą°Æą°¾ - చాలా ą°Ŗą±ą°°ą°¾ą°‚ą°¤ą°®ą±ą°²ą±" #: timezones.h:648 msgid "Australia/LHI" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ą°²ą°æą°‚ą°”ą±†ą°®ą°Øą±" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "ą°•ą±ą°µą±€ą°Øą±ą°øą±ā€Œą°²ą°¾ą°‚ą°”ą± - హాలిఔే ą°¦ą±ą°µą±€ą°Ŗą°¾ą°²ą±" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ą°²ą°¾ą°°ą±ą°”ą±ą°¹ą±‹ą°µą±‡" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "ą°²ą°¾ą°°ą±ą°”ą± హోవె ą°¦ą±ą°µą±€ą°Ŗą°®ą±" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ą°®ą±†ą°²ą±ą°¬ą±‹ą°°ą±ą°Øą±‡" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "ą°µą°æą°•ą±ą°Ÿą±‹ą°°ą°æą°Æą°¾" #: timezones.h:658 msgid "Australia/North" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ą°Øą°¾ą°°ą±ą°¤ą±" #: timezones.h:659 msgid "Australia/NSW" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ą°Ŗą±‡ą°°ą±ą°¤ą±" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "ą°Ŗą°¶ą±ą°šą°æą°® ą°†ą°øą±ą°Ÿą±ą°°ą±‡ą°²ą°æą°Æą°¾ - చాలా ą°øą±ą°„ą°¾ą°Øą°®ą±ą°²ą±" #: timezones.h:663 msgid "Australia/Queensland" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ą°•ą±ą°µą±€ą°Øą±ą°øą±ą°²ą°¾ą°‚ą°”ą±" #: timezones.h:664 msgid "Australia/South" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ą°øą±Œą°¤ą±" #: timezones.h:665 msgid "Australia/Sydney" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ą°øą°æą°”ą±ą°Øą±€" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "ą°•ą±Šą°¤ą±ą°¤ ą°øą±Œą°¤ą± ą°µą±‡ą°²ą±ą°øą± - చాలా ą°øą±ą°„ą°¾ą°Øą°®ą±ą°²ą±" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ą°Ÿą°øą±ą°®ą°¾ą°Øą°æą°Æ" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ą°µą°æą°•ą±ą°Ÿą±‹ą°°ą°æą°Æą°¾" #: timezones.h:670 msgid "Australia/West" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ą°µą±†ą°øą±ą°Ÿą±" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ą°Æą°Øą±ą°•ą±Šą°µą°æą°Øą±ą°Ø" #: timezones.h:672 msgid "Brazil/Acre" msgstr "ą°¬ą±ą°°ą°œą°æą°²ą±/ą°†ą°•ą±ą°°ą±‡" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ą°”ą±†ą°Øą±†ą°°ą±‹ą°Øą±ą°¹" #: timezones.h:674 msgid "Brazil/East" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ą°ˆą°øą±ą°Ÿą±" #: timezones.h:675 msgid "Brazil/West" msgstr "ą°†ą°øą±ą°Ÿą±‡ą°²ą°æą°Æą°¾/ą°µą±†ą°øą±ą°Ÿą±" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "కెనఔా/ą°…ą°Ÿą±ą°²ą°¾ą°‚ą°Ÿą°æą°•ą±" #: timezones.h:677 msgid "Canada/Central" msgstr "కెనఔా/ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą±" #: timezones.h:678 msgid "Canada/Eastern" msgstr "కెనఔా/ą°ˆą°øą±ą°Ÿą±ą°°ą°Øą±" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "కెనఔా/ą°ˆą°øą±ą°Ÿą±ą°øą°øą±ą°•ą°¤ą±ą°šą±ą°µą°Øą±" #: timezones.h:680 msgid "Canada/Mountain" msgstr "కెనఔా/ą°®ą±Œą°Ÿą±†ą°Æą°æą°Øą±" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "కెనఔా/ą°Øą±ą°Æą±‚ą°«ą±Œą°‚ą°”ą±ą°²ą°¾ą°‚ą°”ą±" #: timezones.h:682 msgid "Canada/Pacific" msgstr "కెనఔా/ą°Ŗą°øą±ą°«ą°æą°•ą±" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "కెనఔా/ą°øą°øą±ą°•ą°šą±ą°µą±‡ą°Øą±" #: timezones.h:684 msgid "Canada/Yukon" msgstr "కెనఔా/ą°Æą±‚ą°•ą±‹ą°Øą±" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "ą°šą±€ą°²ą±‡/ą°•ą°‚ą°Ÿą°æą°Øą±†ą°‚ą°Ÿą°²ą±" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "ą°šą±€ą°²ą±‡/ą°ˆą°øą±ą°Ÿą°°ą±ˆą°øą±ą°²ą°¾ą°‚ą°”ą±" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "ą°•ą±ą°Æą±‚ą°¬" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "ą°ˆą°œą°æą°Ŗą±ą°Ÿą±" #: timezones.h:692 msgid "Eire" msgstr "ఐరే" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/ą°—ą±ą°°ą±€ą°Øą±ą°µą°æą°šą±" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/ą°Æą±‚ą°Øą°æą°µą°°ą±ą°øą°²ą±" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/ą°œą±‚ą°²ą±" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°†ą°‚ą°øą±ą°Ÿą°°ą±ą°”ą°‚" #: timezones.h:731 msgid "Europe/Andorra" msgstr "ą°Æą±‚ą°°ą°Ŗą±/అంఔోరా" #: timezones.h:732 msgid "Europe/Athens" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°ą°§ą±†ą°Øą±ą°øą±" #: timezones.h:733 msgid "Europe/Belfast" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°¬ą±†ą°²ą±ą°«ą°øą±ą°Ÿą±" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°¬ą±†ą°²ą±ą°—ą±ą°°ą±‡ą°”ą±" #: timezones.h:735 msgid "Europe/Berlin" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°¬ą±†ą°°ą±ą°²ą°æą°Øą±" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°¬ą±ą°°ą°Ÿą°æą°øą±ą°²ą°µ" #: timezones.h:737 msgid "Europe/Brussels" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°¬ą±ą°°ą±ą°øą±ą°øą±†ą°²ą±ą°øą±" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°¬ą±ą°šą°°ą±†ą°øą±ą°Ÿą±" #: timezones.h:739 msgid "Europe/Budapest" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°¬ą±ą°¦ą°Ŗą±‡ą°øą±ą°Ÿą±" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "ą°Æą±‚ą°°ą°Ŗą±/చిసినఊ" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°•ą±‹ą°Ŗą±†ą°Øą±ą°¹ą°‚ą°—ą±‡ą°Øą±" #: timezones.h:742 msgid "Europe/Dublin" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°”ą±ą°¬ą±ą°²ą°æą°Øą±" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°œą°æą°¬ą±ą°°ą°¾ą°²ą±ą°Ÿą°°ą±" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°—ą±ą°°ą±ą°Øą±ą°øą±‡ą°Æą±" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°¹ą±†ą°²ą±ą°øą°æą°Øą±ą°•ą°æ" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°‡ą°øą±ą°²ą±‡ą°øą°¾ą°«ą±ą°®ą°Øą±" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°‡ą°øą±ą°¤ą°¾ą°Øą±ą°¬ą±ą°²ą±" #: timezones.h:748 msgid "Europe/Jersey" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°œą±†ą°°ą±ą°øą±‡ą°øą±" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°•ą°²ą°æą°Øą°æą°Øą±ą°—ą°¾ą°°ą±ą°”ą±" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "ą°®ą°¾ą°øą±ą°•ą±‹-01 - ą°•ą°²ą°æą°Øą°æą°Øą±ā€Œą°—ą°¾ą°°ą±ą°”ą±" #: timezones.h:752 msgid "Europe/Kiev" msgstr "ą°Æą±‚ą°°ą°Ŗą±/కివె" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°²ą°æą°øą±ą°¬ą±‹ą°Øą±" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°œą±ą°¬ą±ą°²ą°æą°œą°¾ą°Øą°¾" #: timezones.h:759 msgid "Europe/London" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°²ą°‚ą°”ą°Øą±" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°²ą±ą°•ą±ą°øą±†ą°‚ą°¬ą°°ą±ą°—ą±" #: timezones.h:761 msgid "Europe/Madrid" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°®ą°¾ą°”ą±ą°°ą°æą°”ą±" #: timezones.h:764 msgid "Europe/Malta" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°®ą°²ą±ą°¤" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°®ą±†ą°°ą°æą°Æą±‡ą°¹ą±ą°®ą°Øą±" #: timezones.h:766 msgid "Europe/Minsk" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°®ą°æą°Øą±ą°øą±ą°•" #: timezones.h:767 msgid "Europe/Monaco" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°®ą±Šą°Øą°¾ą°•ą±‹" #: timezones.h:768 msgid "Europe/Moscow" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°®ą°¾ą°øą±ą°•ą±‹" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "ą°®ą°¾ą°øą±ą°•ą±‹+00 - ą°Ŗą°¶ą±ą°šą°æą°® ą°°ą°·ą±ą°Æą°¾" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "ą°Æą±‚ą°°ą°Ŗą±/నికోసియా" #: timezones.h:772 msgid "Europe/Oslo" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°“ą°øą±ą°²ą±‹" #: timezones.h:773 msgid "Europe/Paris" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°Ŗą°¾ą°°ą°æą°øą±" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°Ŗą±Šą°”ą±ą°—ą±‹ą°°ą°æą°•ą°¾" #: timezones.h:775 msgid "Europe/Prague" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°Ŗą°°ą±ą°—ą±ą°Æą±‡" #: timezones.h:776 msgid "Europe/Riga" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°°ą°æą°—" #: timezones.h:777 msgid "Europe/Rome" msgstr "ą°Æą±‚ą°°ą°Ŗą±/రోమే" #: timezones.h:778 msgid "Europe/Samara" msgstr "ą°Æą±‚ą°°ą°Ŗą±/సమర" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "ą°®ą°¾ą°øą±ą°•ą±‹ - సమరా,ą°‰ą°”ą±ą°®ą±ą°°ą±ą°Ÿą°æą°Æą°¾" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°øą°Øą±ą°®ą±†ą°°ą°æą°Øą±‹" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°øą°°ą°œą±‡ą°µą±‹" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°øą°æą°‚ą°«ą±†ą°°ą±†ą°«ą±‹ą°²ą±" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "ą°•ą±‡ą°‚ą°¦ą±ą°° ą°•ą±ą°°ą°æą°®ą°æą°Æą°¾" #: timezones.h:786 msgid "Europe/Skopje" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°øą±ą°•ą±‹ą°Ŗą±ą°œą±‡" #: timezones.h:787 msgid "Europe/Sofia" msgstr "ą°Æą±‚ą°°ą°Ŗą±/సోఫియా" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°øą±ą°Ÿą±ą°²ą±‹ą°–ą±‹ą°‚" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°Ÿą°²ą±ą°²ą°æą°Øą±ą°Øą±" #: timezones.h:790 msgid "Europe/Tirane" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°Ÿą°æą°°ą°¾ą°Øą±‡" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°Ÿą°æą°°ą°øą±ą°Ŗą±‹ą°²ą±" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°‰ą°œą±ą°—ą±‹ą°°ą±‹ą°”ą±" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "రుఄేనియా" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°µą°¾ą°”ą±ą°œą±" #: timezones.h:796 msgid "Europe/Vatican" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°µą°¾ą°Ÿą°æą°•ą°Øą±" #: timezones.h:797 msgid "Europe/Vienna" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°µą°æą°Æą±†ą°Øą±ą°Øą°¾" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°µą°æą°²ą±ą°Øą±€ą°Æą°øą±" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°µą±‹ą°²ą±ą°—ą±‹ą°—ą°¾ą°°ą±ą°”ą±" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "ą°®ą°¾ą°øą±ą°•ą±‹+00 - ą°•ą°¾ą°Ŗą±ą°øą°æą°Æą°Øą± ą°øą°®ą±ą°¦ą±ą°°ą°®ą±" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°µą°°ą±ą°øą°¾ą°µą±" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°œą°—ą±ą°°ą±‡ą°¬ą±" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°œą°Ŗą±‹ą°°ą±‹ą°œą±‡ą°Æą±‡" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "ą°œą°Ŗą±Šą°°ą±Šą°ą±‡, E ą°²ą±ą°—ą°Øą±ā€Œą°øą±ą°•ą± / ą°œą°Ŗą±Šą°°ą±‹ą°ą°æą°Æą°¾, E ą°²ą±ą°¹ą°¾ą°Øą±ā€Œą°øą±ą°•ą±" #: timezones.h:807 msgid "Europe/Zurich" msgstr "ą°Æą±‚ą°°ą°Ŗą±/ą°œą±‚ą°°ą°æc" #: timezones.h:808 msgid "Factory" msgstr "ą°«ą±ą°Æą°¾ą°•ą±ą°Ÿą°°ą±€" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-ą°ˆą°Æą°°ą±" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "ą°—ą±ą°°ą±€ą°Øą±ą°µą°æą°šą±" #: timezones.h:816 msgid "Hongkong" msgstr "ą°¹ą°¾ą°‚ą°•ą°¾ą°‚ą°—ą±" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "ą°ą°øą±ą°²ą°¾ą°‚ą°”ą±" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "ą°‡ą°‚ą°”ą°æą°Æą°Øą±/ą°†ą°‚ą°Ÿą°Øą°¾ą°Øą°°ą°æą°µą±‹" #: timezones.h:820 msgid "Indian/Chagos" msgstr "ą°‡ą°‚ą°”ą°æą°Æą°Øą±/ą°šą°¾ą°—ą±‹ą°øą±" #: timezones.h:821 msgid "Indian/Christmas" msgstr "ą°‡ą°‚ą°”ą°æą°Æą°Øą±/ą°•ą±ą°°ą°æą°øą±ą°Ÿą±ą°®ą°øą±" #: timezones.h:822 msgid "Indian/Cocos" msgstr "ą°‡ą°‚ą°”ą°æą°Æą°Øą±/ą°•ą±Šą°•ą±‹ą°øą±" #: timezones.h:823 msgid "Indian/Comoro" msgstr "ą°‡ą°‚ą°”ą°æą°Æą°Øą±/ą°•ą±Šą°®ą±‹ą°°ą±‹" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "ą°‡ą°‚ą°”ą°æą°Æą°Øą±/ą°•ą±†ą°°ą±ą°—ą±ą°²ą±‡ą°²ą±‡ą°Øą±" #: timezones.h:825 msgid "Indian/Mahe" msgstr "ą°‡ą°‚ą°”ą°æą°Æą°Øą±/మహే" #: timezones.h:826 msgid "Indian/Maldives" msgstr "ą°‡ą°‚ą°”ą°æą°Æą°Øą±/ą°®ą°¾ą°³ą±€ą°µą±ą°øą±" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "ą°‡ą°‚ą°”ą°æą°Æą°Øą±/ą°®ą±Œą°°ą°æą°¤ą±€ą°Æą°øą±" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "ą°‡ą°‚ą°”ą°æą°Æą°Øą±/ą°®ą°Æą±‹ą°Ÿą±ą°Ÿą±‡" #: timezones.h:829 msgid "Indian/Reunion" msgstr "ą°‡ą°‚ą°”ą°æą°Æą°Øą±/రెయునినో" #: timezones.h:830 msgid "Iran" msgstr "ą°‡ą°°ą°¾ą°Øą±" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "ą°‡ą°œą±ą°°ą°¾ą°Æą±‡ą°²ą±" #: timezones.h:833 msgid "Jamaica" msgstr "ą°œą°®ą±ˆą°•ą°¾" #: timezones.h:834 msgid "Japan" msgstr "ą°œą°Ŗą°¾ą°Øą±" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "ą°•ą±ą°µą°œą°²ą±‡ą°Øą°æ" #: timezones.h:836 msgid "Libya" msgstr "లిబియా" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "ą°®ą±†ą°•ą±ą°øą°æą°•ą±‹/ą°¬ą°œą°Øą±‹ą°°ą±ą°Ÿą±‡" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "ą°®ą±†ą°•ą±ą°øą°æą°•ą±‹/ą°¬ą°œą°øą±‚ą°°ą±" #: timezones.h:840 msgid "Mexico/General" msgstr "ą°®ą±†ą°•ą±ą°øą°æą°•ą±‹/ą°œą°Øą°°ą°²ą±" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "ą°®ą±€ą°”ą±†ą°øą±ą°Ÿą±/ą°°ą°æą°Æą°¾ą°§ą±87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "ą°®ą±€ą°”ą±†ą°øą±ą°Ÿą±/ą°°ą°æą°Æą°¾ą°§ą±88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "ą°®ą±€ą°”ą±†ą°øą±ą°Ÿą±/ą°°ą°æą°Æą°¾ą°§ą±89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "ą°Øą°µą°œą±‹" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°…ą°Ŗą°æą°Æ" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°”ą°•ą±ą°²ą°¾ą°‚ą°”ą±" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°šą°„ą°‚" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "ą°šą°¤ą°®ą± ą°¦ą±ą°µą±€ą°Ŗą°¾ą°²ą±" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°šą±ą°•ą±" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "ą°šą±ą°•ą± (ą°Ÿą±ą°°ą°•ą±) మరియు ą°Æą°Ŗą±" #: timezones.h:859 msgid "Pacific/Easter" msgstr "ą°«ą°øą°æą°«ą°æą°•ą±/ą°ˆą°øą±ą°Ÿą±ą°°ą°°ą±" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "ą°ˆą°øą±ą°Ÿą°°ą± ą°¦ą±ą°µą±€ą°Ŗą°®ą± & సలా వై ą°—ą±Šą°®ą±†ą°œą±" #: timezones.h:862 msgid "Pacific/Efate" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°ˆą°«ą°Ÿą±‡" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°Žą°‚ą°”ą±‡ą°°ą±ą°¬ą°°ą°æ" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "ą°«ą°æą°Øą°æą°•ą±ą°øą± ą°¦ą±ą°µą±€ą°Ŗą°¾ą°²ą±" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ఫకోఫో" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ఫిజి" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ఫునఫుటి" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°—ą°²ą°Ŗą°—ą±‹ą°øą±" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "ą°—ą°²ą°¾ą°Ŗą°—ą°¾ą°øą± ą°¦ą±ą°µą±€ą°Ŗą°¾ą°²ą±" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°—ą°‚ą°¬ą°æą°Æą±‡ą°°ą±" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "ą°—ą°¾ą°‚ą°¬ą°æą°Æą°°ą± ą°¦ą±ą°µą±€ą°Ŗą°¾ą°²ą±" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°—ą±ą°”ą°²ą±ą°•ą°Øą°¾ą°²ą±" #: timezones.h:876 msgid "Pacific/Guam" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/గుం" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/హోనోలూలు" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "హవాయి" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°œą°¾ą°Øą±ą°øą±ą°Ÿą±‹ą°Øą±" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "ą°œą°¾ą°Øą±ā€Œą°øą±ą°Ÿą°Øą± ą°…ą°Ÿą±‹ą°²ą±" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°•ą°æą°°ą±€ą°Ÿą°æą°®ą°Ÿą°æ" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "ą°²ą±ˆą°Øą± ą°ą°²ą°¾ą°‚ą°”ą±ą°øą±" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°•ą±‹ą°øą±ą°°ą±‡" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "ą°•ą±Šą°øą±ą°°ą°¾ą°Æą±" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°•ą±ą°µą°œą°²ą±‡ą°Øą°æ" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°®ą°œą±ą°°ą±‹" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°®ą±ą°°ą±‡ą°øą°øą±" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "ą°®ą°¾ą°°ą±ą°•ą±ą°µą±†ą°øą°¾ą°øą± ą°¦ą±ą°µą±€ą°Ŗą°¾ą°²ą±" #: timezones.h:898 msgid "Pacific/Midway" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°®ą°æą°”ą±ą°µą±‡" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "ą°®ą°æą°”ą±ą°µą±‡ ą°¦ą±ą°µą±€ą°Ŗą°¾ą°²ą±" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/నురు" #: timezones.h:902 msgid "Pacific/Niue" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/నియే" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°Øą±‹ą°°ą±ą°«ą±‹ą°²ą±ą°•ą±" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/నుమేయా" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/పాగోపాగో" #: timezones.h:906 msgid "Pacific/Palau" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/పాలఊ" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°«ą°æą°Ÿą±ą°•ą±‡ą°°ą°æą°Æą°Øą±" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/పోనాపే" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "ą°Ŗą°¾ą°Øą±ā€Œą°Ŗą±ˆ (ą°Ŗą±Šą°Øą°¾ą°Ŗą±†)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/పోనపే" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°Ŗą±‹ą°°ą±ą°Ÿą±ą°®ą±‹ą°°ą±†ą°øą±ą°¬ą±‡" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°°ą°°ą±‹ą°Ÿą±‹ą°‚ą°—" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°øą±ˆą°«ą°Øą±" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/సమోఆ" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/తాహితి" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "ą°øą±Šą°øą±ˆą°Ÿą±€ ą°¦ą±ą°µą±€ą°Ŗą°¾ą°²ą±" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/తరవ" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "ą°—ą°æą°²ą±ą°¬ą°°ą±ą°Ÿą± ą°¦ą±ą°µą±€ą°Ŗą°¾ą°²ą±" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°¤ą±Šą°‚ą°—ą°¤ą°Ŗą±" #: timezones.h:923 msgid "Pacific/Truk" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°Ÿą±ą°°ą°•ą±" #: timezones.h:924 msgid "Pacific/Wake" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/వకే" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "ą°µą±‡ą°•ą± ą°¦ą±ą°µą±€ą°Ŗą°®ą±" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°µą°²ą±ą°²ą°æą°øą±" #: timezones.h:928 msgid "Pacific/Yap" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°Æą°Ŗą±" #: timezones.h:929 msgid "Poland" msgstr "ą°Ŗą°øą±ą°«ą°æą°•ą±/ą°Ŗą±‹ą°²ą°¾ą°‚ą°”ą±" #: timezones.h:930 msgid "Portugal" msgstr "ą°Ŗą±‹ą°°ą±ą°šą±ą°—ą°²ą±" #: timezones.h:931 msgid "posixrules" msgstr "ą°Ŗą±Šą°øą°æą°•ą±ą°øą±ā€Œą°°ą±‚ą°²ą±ą°øą±" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "ą°øą°æą°‚ą°—ą°Ŗą±‚ą°°ą±" #: timezones.h:937 msgid "Turkey" msgstr "ą°Ÿą±ą°°ą±ą°•ą±‡" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "ą°Æą±‚ą°Øą°æą°µą°°ą±ą°øą°²ą±" #: timezones.h:940 msgid "US/Alaska" msgstr "ą°Æą±ą°Žą°øą±/ą°…ą°²ą°øą±ą°•ą°¾" #: timezones.h:941 msgid "US/Aleutian" msgstr "ą°Æą±ą°Žą°øą±/ą°…ą°²ą±‡ą°Æą±ą°Ÿą°æą°…ą°Øą±" #: timezones.h:942 msgid "US/Arizona" msgstr "ą°Æą±ą°Žą°øą±/ą°…ą°°ą°æą°œą±‹ą°Ø" #: timezones.h:943 msgid "US/Central" msgstr "ą°Æą±ą°Žą°øą±/ą°øą±†ą°‚ą°Ÿą±ą°°ą°²ą±" #: timezones.h:944 msgid "US/Eastern" msgstr "ą°Æą±ą°Žą°øą±/ą°ˆą°øą±ą°Ÿą±ą°°ą°Øą±" #: timezones.h:945 msgid "US/East-Indiana" msgstr "ą°Æą±ą°Žą°øą±/ą°ˆą°øą±ą°Ÿą±-ą°‡ą°‚ą°”ą°æą°Æą°Øą±" #: timezones.h:946 msgid "US/Hawaii" msgstr "ą°Æą±ą°Žą°øą±/హవాయి" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "ą°Æą±ą°Žą°øą±/ą°‡ą°‚ą°”ą°æą°Æą°Øą±-ą°øą±ą°Ÿą±ą°°ą±‡ą°•ą±‡" #: timezones.h:948 msgid "US/Michigan" msgstr "ą°Æą±ą°Žą°øą±/ą°®ą°æą°šą°æą°—ą°Øą±" #: timezones.h:949 msgid "US/Mountain" msgstr "ą°Æą±ą°Žą°øą±/ą°®ą±Œą°‚ą°Ÿą±†ą°Æą°æą°Øą±" #: timezones.h:950 msgid "US/Pacific" msgstr "ą°Æą±ą°Žą°øą±/ą°Ŗą°øą±ą°«ą°æą°•ą±" #: timezones.h:951 msgid "US/Samoa" msgstr "ą°Æą±ą°Žą°øą±/సమోఆ" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "ą°œą±‚ą°²ą±" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/ja.po0000664000175000017500000022420414632072346023655 0ustar fabiofabio# Time Config Tool Japanese Translation # translation of ja.po to Japanese # Copyright (C) 2001 Red Hat, Inc. # # James Hashida , 2003. # Hirofumi Saito , 2006. # Noriko Mizumoto , 2006. # Hyu_gabaru Ryu_ichi , 2007, 2009. # Makoto Mizukami , 2008, 2010. # Hajime Taira , 2010. # Kiyoto Hashida , 2010. # Makoto Mizukami , 2010. msgid "" msgstr "" "Project-Id-Version: ja\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-09-10 09:46+0900\n" "Last-Translator: Makoto Mizukami \n" "Language-Team: Japanese <>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Language: ja\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: Plural-Forms: nplurals=2; plural=(n!=1);\n" "\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ć‚¢ćƒ“ć‚øćƒ£ćƒ³" #: timezones.h:2 msgid "Africa/Accra" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ć‚¢ć‚Æćƒ©" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ć‚¢ćƒ‡ć‚£ć‚¹ć‚¢ćƒ™ćƒ" #: timezones.h:4 msgid "Africa/Algiers" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ć‚¢ćƒ«ć‚øć‚§" #: timezones.h:5 msgid "Africa/Asmara" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ć‚¢ć‚¹ćƒžćƒ©" #: timezones.h:6 msgid "Africa/Asmera" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ć‚¢ć‚¹ćƒžćƒ©" #: timezones.h:7 msgid "Africa/Bamako" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒćƒžć‚³" #: timezones.h:8 msgid "Africa/Bangui" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒćƒ³ć‚®" #: timezones.h:9 msgid "Africa/Banjul" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒćƒ³ć‚øćƒ„ćƒ¼ćƒ«" #: timezones.h:10 msgid "Africa/Bissau" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒ“ć‚µć‚¦" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒ–ćƒ©ćƒ³ć‚æć‚¤ćƒ¤" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒ–ćƒ©ć‚¶ćƒ“ćƒ«" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒ–ć‚øćƒ„ćƒ³ćƒ–ćƒ©" #: timezones.h:14 msgid "Africa/Cairo" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ć‚«ć‚¤ćƒ­" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ć‚«ć‚µćƒ–ćƒ©ćƒ³ć‚«" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "ć‚¢ćƒ•ćƒŖć‚«/セウタ" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "ć‚»ć‚¦ć‚æåŠć³ćƒ”ćƒŖćƒŖćƒ£" #: timezones.h:19 msgid "Africa/Conakry" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ć‚³ćƒŠć‚ÆćƒŖ" #: timezones.h:20 msgid "Africa/Dakar" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒ€ć‚«ćƒ¼ćƒ«" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒ€ćƒ«ć‚Øć‚¹ć‚µćƒ©ćƒ¼ćƒ " #: timezones.h:22 msgid "Africa/Djibouti" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ć‚øćƒ–ćƒ" #: timezones.h:23 msgid "Africa/Douala" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒ‰ć‚„ć‚¢ćƒ©" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ć‚¢ć‚¤ć‚¦ćƒ³" #: timezones.h:25 msgid "Africa/Freetown" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒ•ćƒŖćƒ¼ć‚æć‚¦ćƒ³" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒćƒœćƒ­ćƒ¼ćƒ" #: timezones.h:27 msgid "Africa/Harare" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒćƒ©ćƒ¬" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒØćƒćƒć‚¹ćƒ–ćƒ«ć‚Æ" #: timezones.h:29 msgid "Africa/Kampala" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ć‚«ćƒ³ćƒ‘ćƒ©" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒćƒ«ćƒ„ćƒ¼ćƒ " #: timezones.h:31 msgid "Africa/Kigali" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ć‚­ć‚¬ćƒŖ" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ć‚­ćƒ³ć‚·ćƒ£ć‚µ" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "ć‚³ćƒ³ć‚“ę°‘äø»å…±å’Œå›½č„æéƒØ" #: timezones.h:35 msgid "Africa/Lagos" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒ©ć‚“ć‚¹" #: timezones.h:36 msgid "Africa/Libreville" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒŖćƒ¼ćƒ–ćƒ«ćƒ“ćƒ«" #: timezones.h:37 msgid "Africa/Lome" msgstr "ć‚¢ćƒ•ćƒŖć‚«/惭惔" #: timezones.h:38 msgid "Africa/Luanda" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒ«ć‚¢ćƒ³ćƒ€" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒ«ćƒ–ćƒ³ćƒć‚·" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "ć‚³ćƒ³ć‚“ę°‘äø»å…±å’Œå›½ę±éƒØ" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒ«ć‚µć‚«" #: timezones.h:43 msgid "Africa/Malabo" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒžćƒ©ćƒœ" #: timezones.h:44 msgid "Africa/Maputo" msgstr "ć‚¢ćƒ•ćƒŖć‚«/惞惗惈" #: timezones.h:45 msgid "Africa/Maseru" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒžć‚»ćƒ«" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒ ćƒćƒćƒ¼ćƒ" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒ¢ć‚¬ćƒ‡ć‚£ć‚·ćƒ„" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒ¢ćƒ³ćƒ­ćƒ“ć‚¢" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "ć‚¢ćƒ•ćƒŖć‚«/惊悤惭惓" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒ³ć‚øćƒ£ćƒ”ćƒŠ" #: timezones.h:51 msgid "Africa/Niamey" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒ‹ć‚¢ćƒ”" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒŒć‚¢ć‚Æć‚·ćƒ§ćƒƒćƒˆ" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒÆć‚¬ćƒ‰ć‚„ć‚°ćƒ¼" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒćƒ«ćƒˆćƒŽćƒœ" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ć‚µćƒ³ćƒˆćƒ”" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒˆćƒ³ćƒ–ć‚Æćƒˆć‚„" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒˆćƒŖćƒćƒŖ" #: timezones.h:58 msgid "Africa/Tunis" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ćƒćƒ„ćƒ‹ć‚¹" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "ć‚¢ćƒ•ćƒŖć‚«/ć‚¦ć‚£ćƒ³ćƒˆćƒ•ćƒƒć‚Æ" #: timezones.h:60 msgid "America/Adak" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¢ćƒ€ćƒƒć‚Æå³¶" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "ć‚¢ćƒŖćƒ„ćƒ¼ć‚·ćƒ£ćƒ³åˆ—å³¶" #: timezones.h:63 msgid "America/Anchorage" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¢ćƒ³ć‚«ćƒ¬ćƒƒć‚ø" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "ć‚¢ćƒ©ć‚¹ć‚«ęØ™ęŗ–ę™‚" #: timezones.h:66 msgid "America/Anguilla" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¢ćƒ³ć‚®ćƒ©" #: timezones.h:67 msgid "America/Antigua" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¢ćƒ³ćƒ†ć‚£ć‚°ć‚¢" #: timezones.h:68 msgid "America/Araguaina" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¢ćƒ©ć‚°ć‚¢ć‚¤ćƒŠ" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "ćƒˆć‚«ćƒ³ćƒ†ć‚£ćƒ³ć‚¹å·ž" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¢ćƒ«ć‚¼ćƒ³ćƒćƒ³/ćƒ–ć‚ØćƒŽć‚¹ć‚¢ć‚¤ćƒ¬ć‚¹" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "ćƒ–ć‚ØćƒŽć‚¹ć‚¢ć‚¤ćƒ¬ć‚¹ (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¢ćƒ«ć‚¼ćƒ³ćƒćƒ³/ć‚«ć‚æćƒžćƒ«ć‚«" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "ć‚«ć‚æćƒžćƒ«ć‚«å·ž (CT)ć€ćƒćƒ„ćƒ–å·ž (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¢ćƒ«ć‚¼ćƒ³ćƒćƒ³/ć‚³ćƒ¢ćƒ‰ćƒ¼ćƒ­ćƒ»ćƒŖćƒćƒ€ćƒ“ć‚¢" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¢ćƒ«ć‚¼ćƒ³ćƒćƒ³/ć‚³ćƒ«ćƒ‰ćƒ" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "å¤§åŠć®åœ°åŸŸ (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¢ćƒ«ć‚¼ćƒ³ćƒćƒ³/惕惕悤" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "ćƒ•ćƒ•ć‚¤å·ž (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¢ćƒ«ć‚¼ćƒ³ćƒćƒ³/ćƒ©ćƒ»ćƒŖć‚Ŗćƒ" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "ćƒ©ćƒ»ćƒŖć‚Ŗćƒå·ž (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¢ćƒ«ć‚¼ćƒ³ćƒćƒ³/ćƒ”ćƒ³ćƒ‰ćƒ¼ć‚µ" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "ćƒ”ćƒ³ćƒ‰ćƒ¼ć‚µå·ž (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¢ćƒ«ć‚¼ćƒ³ćƒćƒ³/ćƒŖć‚Ŗćƒ»ć‚¬ćƒ¬ć‚“ć‚¹" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "ć‚µćƒ³ć‚æćƒ»ć‚Æćƒ«ć‚¹å·ž (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¢ćƒ«ć‚¼ćƒ³ćƒćƒ³/ć‚µćƒ«ć‚æ" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¢ćƒ«ć‚¼ćƒ³ćƒćƒ³/ć‚µćƒ³ćƒ»ćƒ•ć‚¢ćƒ³" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "ć‚µćƒ³ćƒ»ćƒ•ć‚¢ćƒ³å·ž (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¢ćƒ«ć‚¼ćƒ³ćƒćƒ³/ć‚µćƒ³ćƒ«ć‚¤ć‚¹" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "ć‚µćƒ³ćƒ«ć‚¤ć‚¹å·ž (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¢ćƒ«ć‚¼ćƒ³ćƒćƒ³/ćƒˆć‚„ć‚Æćƒžćƒ³" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "ćƒˆć‚„ć‚Æćƒžćƒ³å·ž (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¢ćƒ«ć‚¼ćƒ³ćƒćƒ³/ć‚¦ć‚·ćƒ„ć‚¢ć‚¤ć‚¢" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "ćƒ†ć‚£ć‚Øćƒ©ćƒ»ćƒ‡ćƒ«ćƒ»ćƒ•ć‚Øć‚“å·ž (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¢ćƒ«ćƒ" #: timezones.h:109 msgid "America/Asuncion" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¢ć‚¹ćƒ³ć‚·ć‚Ŗćƒ³" #: timezones.h:110 msgid "America/Atikokan" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¢ćƒ†ć‚£ć‚³ć‚«ćƒ³" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "ę±éƒØęØ™ęŗ–ę™‚ - ć‚Ŗćƒ³ć‚æćƒŖć‚Ŗå·žć‚¢ćƒ†ć‚£ć‚³ć‚«ćƒ³åŠć³ćƒŒćƒŠćƒ–ćƒˆęŗ–å·žć‚µć‚¦ć‚µćƒ³ćƒ—ćƒˆćƒ³å³¶" #: timezones.h:113 msgid "America/Atka" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¢ćƒˆć‚«å³¶" #: timezones.h:114 msgid "America/Bahia" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒć‚¤ćƒ¼ć‚¢" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "ćƒć‚¤ćƒ¼ć‚¢å·ž" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒć‚¤ćƒ¼ć‚¢ćƒ»ćƒ‡ćƒ»ćƒćƒ³ćƒ‡ćƒ©ć‚¹" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "ćƒ”ć‚­ć‚·ć‚³äø­éƒØęØ™ęŗ–ę™‚ - ćƒć‚¤ćƒ¼ć‚¢ćƒ»ćƒ‡ćƒ»ćƒćƒ³ćƒ‡ćƒ©ć‚¹" #: timezones.h:120 msgid "America/Barbados" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒćƒ«ćƒćƒˆć‚¹" #: timezones.h:121 msgid "America/Belem" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ™ćƒ¬ćƒ³" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "ć‚¢ćƒžćƒ‘ćƒ¼å·žć€ćƒ‘ćƒ©ćƒ¼å·ž" #: timezones.h:124 msgid "America/Belize" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ™ćƒŖćƒ¼ć‚ŗ" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ–ćƒ©ćƒ³ćƒ»ć‚µćƒ–ćƒ­ćƒ³" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "大脿擋標準時 - ć‚±ćƒ™ćƒƒć‚Æå·ž - ćƒć‚¹=ć‚³ćƒ¼ćƒˆćƒ»ćƒŽćƒ¼ćƒ‰åœ°åŒŗ" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒœć‚¢ćƒ»ćƒ“ć‚¹ć‚æ" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "ćƒ­ćƒ©ć‚¤ćƒžå·ž" #: timezones.h:131 msgid "America/Bogota" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒœć‚“ć‚æ" #: timezones.h:132 msgid "America/Boise" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒœć‚¤ć‚·" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "å±±å²³éƒØęØ™ęŗ–ę™‚ - ć‚¢ć‚¤ćƒ€ćƒ›å·žå—éƒØåŠć³ć‚Ŗćƒ¬ć‚“ćƒ³å·žę±éƒØ" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ–ć‚ØćƒŽć‚¹ć‚¢ć‚¤ćƒ¬ć‚¹" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚±ćƒ³ćƒ–ćƒŖćƒƒć‚øćƒ™ć‚¤" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "å±±å²³éƒØęØ™ęŗ–ę™‚ - ćƒŒćƒŠćƒ–ćƒˆęŗ–å·žč„æéƒØ" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚«ćƒ³ćƒćƒ»ć‚°ćƒ©ćƒ³ćƒ‡" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "ćƒžćƒƒćƒˆć‚°ćƒ­ćƒƒć‚½ćƒ»ćƒ‰ćƒ»ć‚¹ćƒ«å·ž" #: timezones.h:142 msgid "America/Cancun" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚«ćƒ³ć‚Æćƒ³" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "äø­éƒØęØ™ęŗ–ę™‚ - ć‚­ćƒ³ć‚æćƒŠćƒ»ćƒ­ćƒ¼å·ž" #: timezones.h:145 msgid "America/Caracas" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚«ćƒ©ć‚«ć‚¹" #: timezones.h:146 msgid "America/Catamarca" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚«ć‚æćƒžćƒ«ć‚«" #: timezones.h:147 msgid "America/Cayenne" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚«ć‚¤ć‚Øćƒ³ćƒŒ" #: timezones.h:148 msgid "America/Cayman" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚±ć‚¤ćƒžćƒ³č«øå³¶" #: timezones.h:149 msgid "America/Chicago" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚·ć‚«ć‚“" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "äø­éƒØęØ™ęŗ–ę™‚" #: timezones.h:152 msgid "America/Chihuahua" msgstr "ć‚¢ćƒ”ćƒŖć‚«/チワワ" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "ćƒ”ć‚­ć‚·ć‚³å±±å²³éƒØęØ™ęŗ–ę™‚ - ćƒćƒÆćƒÆå·žć®ē±³å›½å¢ƒć‹ć‚‰é ć„åœ°åŸŸ" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚³ćƒ¼ćƒ©ćƒ«ćƒćƒ¼ćƒćƒ¼" #: timezones.h:156 msgid "America/Cordoba" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚³ćƒ«ćƒ‰ćƒ" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚³ć‚¹ć‚æćƒŖć‚«" #: timezones.h:158 msgid "America/Cuiaba" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚Æć‚¤ć‚¢ćƒ" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "ćƒžćƒƒćƒˆć‚°ćƒ­ćƒƒć‚½å·ž" #: timezones.h:161 msgid "America/Curacao" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚­ćƒ„ćƒ©ć‚½ćƒ¼å³¶" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ‡ćƒ³ćƒžćƒ¼ć‚Æć‚·ćƒ£ć‚¦ćƒ³" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "ę±ęµ·å²øć€ć‚¹ć‚³ćƒ«ć‚ŗćƒ“ć‚¹ćƒ¼ćƒ³ć®åŒ—" #: timezones.h:165 msgid "America/Dawson" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ‰ćƒ¼ć‚½ćƒ³" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "太平擋標準時 - ćƒ¦ćƒ¼ć‚³ćƒ³ęŗ–å·žåŒ—éƒØ" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ‰ćƒ¼ć‚½ćƒ³ć‚ÆćƒŖćƒ¼ć‚Æ" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" "å±±å²³éƒØęØ™ęŗ–ę™‚ - ćƒ‰ćƒ¼ć‚½ćƒ³ć‚ÆćƒŖćƒ¼ć‚ÆåŠć³ćƒ•ć‚©ćƒ¼ćƒˆć‚»ćƒ³ćƒˆć‚øćƒ§ćƒ³(ćƒ–ćƒŖćƒ†ć‚£ćƒƒć‚·ćƒ„ć‚³ćƒ­ćƒ³" "ćƒ“ć‚¢å·ž)" #: timezones.h:171 msgid "America/Denver" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ‡ćƒ³ćƒćƒ¼" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "å±±å²³éƒØęØ™ęŗ–ę™‚" #: timezones.h:174 msgid "America/Detroit" msgstr "ć‚¢ćƒ”ćƒŖć‚«/惇惈惭悤惈" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "ę±éƒØęØ™ęŗ–ę™‚ - ćƒŸć‚·ć‚¬ćƒ³å·ž - å¤§éƒØåˆ†" #: timezones.h:177 msgid "America/Dominica" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ‰ćƒŸćƒ‹ć‚«" #: timezones.h:178 msgid "America/Edmonton" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚Øćƒ‰ćƒ¢ćƒ³ćƒˆćƒ³" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" "å±±å²³éƒØęØ™ęŗ–ę™‚ - ć‚¢ćƒ«ćƒćƒ¼ć‚æå·žć€ćƒ–ćƒŖćƒ†ć‚£ćƒƒć‚·ćƒ„ć‚³ćƒ­ćƒ³ćƒ“ć‚¢å·žę±éƒØć€ć‚µć‚¹ć‚«ćƒćƒ„ćƒÆćƒ³å·ž" "脿部" #: timezones.h:181 msgid "America/Eirunepe" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚Øć‚¤ćƒ«ćƒćƒš" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "ć‚¢ćƒžć‚¾ćƒŠć‚¹å·žč„æéƒØ" #: timezones.h:184 msgid "America/El_Salvador" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚Øćƒ«ć‚µćƒ«ćƒćƒ‰ćƒ«" #: timezones.h:185 msgid "America/Ensenada" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚Øćƒ³ć‚»ćƒŠćƒ¼ćƒ€" #: timezones.h:186 msgid "America/Fortaleza" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ•ć‚©ćƒ«ć‚æćƒ¬ć‚¶" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "ćƒ–ćƒ©ć‚øćƒ«åŒ—ę±éƒØ (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ•ć‚©ćƒ¼ćƒˆć‚¦ć‚§ć‚¤ćƒ³" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚°ćƒ¬ćƒ¼ć‚¹ćƒ™ć‚¤" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" "大脿擋標準時 - ćƒŽćƒć‚¹ć‚³ć‚·ć‚¢å·ž - 1966幓から1971å¹“ć®é–“å¤ę™‚é–“ć‚’å®Ÿę–½ć—ćŖć‹ć£ćŸåœ°" "域" #: timezones.h:193 msgid "America/Godthab" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚“ćƒƒćƒˆćƒ›ćƒ¼ćƒ—" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "å¤§åŠć®åœ°åŸŸ" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚°ćƒ¼ć‚¹ćƒ™ć‚¤" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "大脿擋標準時 - ćƒ©ćƒ–ćƒ©ćƒ‰ćƒ¼ćƒ«åŠå³¶ - å¤§åŠć®åœ°åŸŸ" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚°ćƒ©ćƒ³ćƒ‰ć‚æćƒ¼ć‚Æå³¶" #: timezones.h:200 msgid "America/Grenada" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚°ćƒ¬ćƒŠćƒ€" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚°ć‚¢ćƒ‰ćƒ«ćƒ¼ćƒ—" #: timezones.h:202 msgid "America/Guatemala" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚°ć‚¢ćƒ†ćƒžćƒ©" #: timezones.h:203 msgid "America/Guayaquil" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚°ć‚¢ćƒ¤ć‚­ćƒ«" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "本土" #: timezones.h:206 msgid "America/Guyana" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¬ć‚¤ć‚¢ćƒŠ" #: timezones.h:207 msgid "America/Halifax" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒćƒŖćƒ•ć‚”ćƒƒć‚Æć‚¹" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" "大脿擋標準時 - ćƒŽćƒć‚¹ć‚³ć‚·ć‚¢å·ž(å¤§åŠć®åœ°åŸŸ)ć€ćƒ—ćƒŖćƒ³ć‚¹ć‚Øćƒ‰ćƒÆćƒ¼ćƒ‰ć‚¢ć‚¤ćƒ©ćƒ³ćƒ‰å·ž" #: timezones.h:210 msgid "America/Havana" msgstr "ć‚¢ćƒ”ćƒŖć‚«/惏惐惊" #: timezones.h:211 msgid "America/Hermosillo" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚Øćƒ«ćƒ¢ć‚·ćƒ¼ć‚øćƒ§" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "å±±å²³éƒØęØ™ęŗ–ę™‚ - ć‚½ćƒŽćƒ©å·ž" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¤ćƒ³ćƒ‡ć‚£ć‚¢ćƒŠ/ć‚¤ćƒ³ćƒ‡ć‚£ć‚¢ćƒŠćƒćƒŖć‚¹" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "ę±éƒØęØ™ęŗ–ę™‚ - ć‚¤ćƒ³ćƒ‡ć‚£ć‚¢ćƒŠå·ž - å¤§åŠć®åœ°åŸŸ" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¤ćƒ³ćƒ‡ć‚£ć‚¢ćƒŠ/ćƒŽćƒƒć‚Æć‚¹" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "äø­éƒØęØ™ęŗ–ę™‚ - ć‚¤ćƒ³ćƒ‡ć‚£ć‚¢ćƒŠå·ž - ć‚¹ć‚æćƒ¼ć‚Æéƒ”" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¤ćƒ³ćƒ‡ć‚£ć‚¢ćƒŠ/ćƒžćƒ¬ćƒ³ć‚“" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "ę±éƒØęØ™ęŗ–ę™‚ - ć‚¤ćƒ³ćƒ‡ć‚£ć‚¢ćƒŠå·ž - ć‚Æćƒ­ćƒ•ć‚©ćƒ¼ćƒ‰éƒ”" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¤ćƒ³ćƒ‡ć‚£ć‚¢ćƒŠ/ćƒ”ćƒ¼ć‚æćƒ¼ć‚ŗćƒćƒ¼ć‚°" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "ę±éƒØęØ™ęŗ–ę™‚ - ć‚¤ćƒ³ćƒ‡ć‚£ć‚¢ćƒŠå·ž - ćƒ‘ć‚¤ć‚Æéƒ”" #: timezones.h:226 msgid "America/Indianapolis" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¤ćƒ³ćƒ‡ć‚£ć‚¢ćƒŠćƒćƒŖć‚¹" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¤ćƒ³ćƒ‡ć‚£ć‚¢ćƒŠ/ćƒ†ćƒ«ć‚·ćƒ†ć‚£" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "äø­éƒØęØ™ęŗ–ę™‚ - ć‚¤ćƒ³ćƒ‡ć‚£ć‚¢ćƒŠå·ž - ペリー郔" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¤ćƒ³ćƒ‡ć‚£ć‚¢ćƒŠ/惙惙悤" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "ę±éƒØęØ™ęŗ–ę™‚ - ć‚¤ćƒ³ćƒ‡ć‚£ć‚¢ćƒŠå·ž - ć‚¹ć‚¦ć‚£ćƒƒćƒ„ćƒ©ćƒ³ćƒ‰éƒ”" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¤ćƒ³ćƒ‡ć‚£ć‚¢ćƒŠ/ćƒ“ćƒ³ć‚»ćƒ³ć‚ŗ" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" "ę±éƒØęØ™ęŗ–ę™‚ - ć‚¤ćƒ³ćƒ‡ć‚£ć‚¢ćƒŠå·ž - ćƒ‡ćƒ¼ćƒ“ć‚¹éƒ”ć€ćƒ‡ćƒ„ćƒœć‚¤ć‚¹éƒ”ć€ćƒŽćƒƒć‚Æć‚¹éƒ”ć€ćƒžćƒ¼ćƒ†ć‚£" "ン郔" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¤ćƒ³ćƒ‡ć‚£ć‚¢ćƒŠ/ć‚¦ć‚£ćƒŠćƒžć‚Æ" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "ę±éƒØęØ™ęŗ–ę™‚ - ć‚¤ćƒ³ćƒ‡ć‚£ć‚¢ćƒŠå·ž - ćƒ—ćƒ©ć‚¹ć‚­éƒ”" #: timezones.h:239 msgid "America/Inuvik" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¤ćƒŒćƒ“ć‚£ćƒƒć‚Æ" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "å±±å²³éƒØęØ™ęŗ–ę™‚ - ćƒŽćƒ¼ć‚¹ć‚¦ć‚Øć‚¹ćƒˆęŗ–å·žč„æéƒØ" #: timezones.h:242 msgid "America/Iqaluit" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¤ć‚«ćƒ«ć‚¤ćƒˆ" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "ę±éƒØęØ™ęŗ–ę™‚ - ćƒŒćƒŠćƒ–ćƒˆęŗ–å·žę±éƒØ - å¤§åŠć®åœ°åŸŸ" #: timezones.h:245 msgid "America/Jamaica" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚øćƒ£ćƒžć‚¤ć‚«" #: timezones.h:246 msgid "America/Jujuy" msgstr "ć‚¢ćƒ”ćƒŖć‚«/惕惕悤" #: timezones.h:247 msgid "America/Juneau" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚øćƒ„ćƒŽćƒ¼" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "ć‚¢ćƒ©ć‚¹ć‚«ęØ™ęŗ–ę™‚ - ć‚¢ćƒ©ć‚¹ć‚«ćƒ»ćƒ‘ćƒ³ćƒćƒ³ćƒ‰ćƒ«" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚±ćƒ³ć‚æćƒƒć‚­ćƒ¼/ćƒ«ć‚¤ć‚¹ćƒ“ćƒ«" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "ę±éƒØęØ™ęŗ–ę™‚ - ć‚±ćƒ³ć‚æćƒƒć‚­ćƒ¼å·ž - ćƒ«ć‚¤ć‚¹ćƒ“ćƒ«åœ°åŸŸ" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚±ćƒ³ć‚æćƒƒć‚­ćƒ¼/ćƒ¢ćƒ³ćƒ†ć‚£ćƒć‚§ćƒ­" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "ę±éƒØęØ™ęŗ–ę™‚ - ć‚±ćƒ³ć‚æćƒƒć‚­ćƒ¼å·ž - ć‚¦ć‚§ć‚¤ćƒ³éƒ”" #: timezones.h:256 msgid "America/Knox_IN" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¤ćƒ³ćƒ‡ć‚£ć‚¢ćƒŠå·žćƒŽćƒƒć‚Æć‚¹" #: timezones.h:257 msgid "America/La_Paz" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ©ćƒ‘ć‚¹" #: timezones.h:258 msgid "America/Lima" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒŖćƒž" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ­ć‚µćƒ³ć‚¼ćƒ«ć‚¹" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "太平擋標準時" #: timezones.h:262 msgid "America/Louisville" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ«ć‚¤ć‚¹ćƒ“ćƒ«" #: timezones.h:263 msgid "America/Maceio" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒžć‚»ć‚¤ć‚Ŗ" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "ć‚¢ćƒ©ć‚“ć‚¢ć‚¹å·žć€ć‚»ćƒ«ć‚øćƒƒćƒšå·ž" #: timezones.h:266 msgid "America/Managua" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒžćƒŠć‚°ć‚¢" #: timezones.h:267 msgid "America/Manaus" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒžćƒŠć‚¦ć‚¹" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "ć‚¢ćƒžć‚¾ćƒŠć‚¹å·žę±éƒØ" #: timezones.h:270 msgid "America/Marigot" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒžćƒŖć‚“" #: timezones.h:271 msgid "America/Martinique" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒžćƒ«ćƒ†ć‚£ćƒ‹ćƒ¼ć‚Æå³¶" #: timezones.h:272 msgid "America/Matamoros" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒžć‚æćƒ¢ćƒ­ć‚¹" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" "ē±³å›½äø­éƒØęØ™ęŗ–ę™‚ - ć‚³ć‚¢ć‚¦ć‚¤ćƒ©å·žć€ćƒ‰ć‚„ćƒ©ćƒ³ć‚“å·žć€ćƒŒć‚Øćƒœćƒ»ćƒ¬ć‚Ŗćƒ³å·žć€ć‚æćƒžć‚¦ćƒŖćƒ‘ć‚¹å·ž" "ē±³å›½å¢ƒä»˜čæ‘" #: timezones.h:275 msgid "America/Mazatlan" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒžć‚µćƒˆćƒ©ćƒ³" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "å±±å²³éƒØęØ™ęŗ–ę™‚ - ćƒćƒćƒ»ć‚«ćƒŖćƒ•ć‚©ćƒ«ćƒ‹ć‚¢ćƒ»ć‚¹ćƒ«å·žć€ćƒŠćƒ¤ćƒŖćƒƒćƒˆå·žć€ć‚·ćƒŠćƒ­ć‚¢å·ž" #: timezones.h:278 msgid "America/Mendoza" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ”ćƒ³ćƒ‰ćƒ¼ć‚µ" #: timezones.h:279 msgid "America/Menominee" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ”ćƒŽćƒŸćƒ‹ćƒ¼" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" "äø­å¤®éƒØęØ™ęŗ–ę™‚ - ćƒŸć‚·ć‚¬ćƒ³å·ž - ćƒ‡ć‚£ć‚­ćƒ³ć‚½ćƒ³éƒ”ć€ć‚“ć‚®ćƒ¼ćƒ“ćƒƒć‚Æéƒ”ć€ć‚¢ć‚¤ćƒ­ćƒ³éƒ”ć€ćƒ”ćƒŽ" "ćƒŸćƒ‹ćƒ¼éƒ”" #: timezones.h:282 msgid "America/Merida" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ”ćƒŖćƒ€" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "äø­å¤®éƒØęØ™ęŗ–ę™‚ - ć‚«ćƒ³ćƒšćƒć‚§å·žć€ćƒ¦ć‚«ć‚æćƒ³å·ž" #: timezones.h:285 msgid "America/Mexico_City" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ”ć‚­ć‚·ć‚³ć‚·ćƒ†ć‚£" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "äø­å¤®éƒØęØ™ęŗ–ę™‚ - å¤§åŠć®åœ°åŸŸ" #: timezones.h:288 msgid "America/Miquelon" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒŸć‚Æćƒ­ćƒ³" #: timezones.h:289 msgid "America/Moncton" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ¢ćƒ³ć‚Æćƒˆćƒ³" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "大脿擋標準時 - ćƒ‹ćƒ„ćƒ¼ćƒ–ćƒ©ćƒ³ć‚ŗć‚¦ć‚£ćƒƒć‚Æå·ž" #: timezones.h:292 msgid "America/Monterrey" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ¢ćƒ³ćƒ†ćƒ¬ć‚¤" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" "ćƒ”ć‚­ć‚·ć‚³äø­éƒØęØ™ęŗ–ę™‚ - ć‚³ć‚¢ć‚¦ć‚¤ćƒ©å·žć€ćƒ‰ć‚„ćƒ©ćƒ³ć‚“å·žć€ćƒŒć‚Øćƒœćƒ»ćƒ¬ć‚Ŗćƒ³å·žć€ć‚æćƒžć‚¦ćƒŖćƒ‘" "ć‚¹å·žć®ē±³å›½å¢ƒć‹ć‚‰é ć„åœ°åŸŸ" #: timezones.h:295 msgid "America/Montevideo" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ¢ćƒ³ćƒ†ćƒ“ćƒ‡ć‚Ŗ" #: timezones.h:296 msgid "America/Montreal" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ¢ćƒ³ćƒˆćƒŖć‚Ŗćƒ¼ćƒ«" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "ę±éƒØęØ™ęŗ–ę™‚ - ć‚±ćƒ™ćƒƒć‚Æå·ž - å¤§åŠć®åœ°åŸŸ" #: timezones.h:299 msgid "America/Montserrat" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ¢ćƒ³ćƒˆć‚»ćƒ©ćƒˆ" #: timezones.h:300 msgid "America/Nassau" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒŠćƒƒć‚½ćƒ¼" #: timezones.h:301 msgid "America/New_York" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ‹ćƒ„ćƒ¼ćƒØćƒ¼ć‚Æ" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "ę±éƒØęØ™ęŗ–ę™‚" #: timezones.h:304 msgid "America/Nipigon" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ‹ćƒ”ć‚“ćƒ³" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" "ę±éƒØęØ™ęŗ–ę™‚ - ć‚Ŗćƒ³ć‚æćƒŖć‚Ŗå·žåŠć³ć‚±ćƒ™ćƒƒć‚Æå·ž - 1967幓から1973å¹“ć®é–“å¤ę™‚é–“ć‚’å®Ÿę–½ć—" "ćŖć‹ć£ćŸåœ°åŸŸ" #: timezones.h:307 msgid "America/Nome" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒŽćƒ¼ćƒ " #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "ć‚¢ćƒ©ć‚¹ć‚«ęØ™ęŗ–ę™‚ - ć‚¢ćƒ©ć‚¹ć‚«å·žč„æéƒØ" #: timezones.h:310 msgid "America/Noronha" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒŽćƒ­ćƒ¼ćƒ‹ćƒ£" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "大脿擋の諸島" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒŽćƒ¼ć‚¹ćƒ€ć‚³ć‚æ/ć‚»ćƒ³ć‚æćƒ¼" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "äø­éƒØęØ™ęŗ–ę™‚ - ćƒŽćƒ¼ć‚¹ćƒ€ć‚³ć‚æå·ž - ć‚ŖćƒŖćƒćƒ¼éƒ”" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒŽćƒ¼ć‚¹ćƒ€ć‚³ć‚æ/ćƒ‹ćƒ„ćƒ¼ćƒ»ć‚»ćƒ¼ćƒ©ćƒ " #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "äø­éƒØęØ™ęŗ–ę™‚ - ćƒŽćƒ¼ć‚¹ćƒ€ć‚³ć‚æå·ž - モートン郔(ćƒžćƒ³ćƒ€ćƒ³åœ°åŒŗć‚’é™¤ć)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚Ŗćƒ’ćƒŠć‚¬" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "ē±³å›½å±±å²³éƒØęØ™ęŗ–ę™‚ - ćƒćƒÆćƒÆå·žē±³å›½å¢ƒä»˜čæ‘" #: timezones.h:322 msgid "America/Panama" msgstr "ć‚¢ćƒ”ćƒŖć‚«/惑惊惞" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ‘ćƒ³ć‚°ćƒŠćƒ¼ć‚æćƒ³ć‚°" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "ę±éƒØęØ™ęŗ–ę™‚ - ćƒŒćƒŠćƒ–ćƒˆęŗ–å·žćƒ‘ćƒ³ćƒŠćƒ¼ć‚æćƒ³ć‚°" #: timezones.h:326 msgid "America/Paramaribo" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ‘ćƒ©ćƒžćƒŖćƒœ" #: timezones.h:327 msgid "America/Phoenix" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ•ć‚§ćƒ‹ćƒƒć‚Æć‚¹" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "å±±å²³éƒØęØ™ęŗ–ę™‚ - ć‚¢ćƒŖć‚¾ćƒŠå·ž" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒćƒ«ćƒˆćƒ¼ćƒ—ćƒ©ćƒ³ć‚¹" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒćƒ«ćƒˆć‚¢ć‚Æćƒ¬" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒćƒ¼ćƒˆć‚Ŗćƒ–ć‚¹ćƒšć‚¤ćƒ³" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒćƒ«ćƒˆćƒ»ćƒ“ć‚§ćƒ¼ćƒŖćƒ§" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "ćƒ­ćƒ³ćƒ‰ćƒ‹ć‚¢å·ž" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ—ć‚Øćƒ«ćƒˆćƒŖć‚³" #: timezones.h:337 msgid "America/Rainy_River" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ¬ć‚¤ćƒ‹ćƒ¼ćƒŖćƒćƒ¼" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "äø­éƒØęØ™ęŗ–ę™‚ - ćƒ¬ć‚¤ćƒ‹ćƒ¼ćƒŖćƒćƒ¼åŠć³ćƒ•ć‚©ćƒ¼ćƒˆćƒ•ćƒ©ćƒ³ć‚·ć‚¹(ć‚Ŗćƒ³ć‚æćƒŖć‚Ŗå·ž)" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ©ćƒ³ć‚­ćƒ³ć‚¤ćƒ³ćƒ¬ćƒƒćƒˆ" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "äø­éƒØęØ™ęŗ–ę™‚ - ćƒŒćƒŠćƒ–ćƒˆęŗ–å·žäø­å¤®éƒØ" #: timezones.h:343 msgid "America/Recife" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ¬ć‚·ćƒ•ć‚§" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "ćƒšćƒ«ćƒŠćƒ³ćƒ–ć‚³å·ž" #: timezones.h:346 msgid "America/Regina" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ¬ć‚øćƒ£ć‚¤ćƒŠ" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "äø­éƒØęØ™ęŗ–ę™‚ - ć‚µć‚¹ć‚«ćƒćƒ„ćƒÆćƒ³å·ž - å¤§åŠć®åœ°åŸŸ" #: timezones.h:349 msgid "America/Resolute" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ¬ć‚¾ćƒŖćƒ„ćƒ¼ćƒˆ" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "ę±éƒØęØ™ęŗ–ę™‚ - ćƒŒćƒŠćƒ–ćƒˆęŗ–å·žćƒ¬ć‚¾ćƒŖćƒ„ćƒ¼ćƒˆ" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒŖć‚Ŗćƒ–ćƒ©ćƒ³ć‚³" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "ć‚¢ć‚Æćƒ¬å·ž" #: timezones.h:355 msgid "America/Rosario" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ­ć‚µćƒŖć‚Ŗ" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚µćƒ³ć‚æćƒ»ć‚¤ć‚¶ćƒ™ćƒ«" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "ćƒ”ć‚­ć‚·ć‚³å¤Ŗå¹³ę“‹ęØ™ęŗ–ę™‚ - ćƒćƒćƒ»ć‚«ćƒŖćƒ•ć‚©ćƒ«ćƒ‹ć‚¢å·žć®ē±³å›½å¢ƒć‹ć‚‰é ć„åœ°åŸŸ" #: timezones.h:359 msgid "America/Santarem" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚µćƒ³ć‚æćƒ¬ćƒ³" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "ćƒ‘ćƒ©ćƒ¼å·žč„æéƒØ" #: timezones.h:362 msgid "America/Santiago" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚µćƒ³ćƒ†ć‚£ć‚¢ć‚“" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚µćƒ³ćƒˆćƒ»ćƒ‰ćƒŸćƒ³ć‚“" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚µćƒ³ćƒ‘ć‚¦ćƒ­" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "ćƒ–ćƒ©ć‚øćƒ«å—éƒØåŠć³å—ę±éƒØ (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¹ć‚³ćƒ«ć‚ŗćƒ“ć‚¹ćƒ¼ćƒ³" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "ć‚¹ć‚³ćƒ«ć‚ŗćƒ“ć‚¹ćƒ¼ćƒ³ / ć‚¤ćƒˆć‚³ćƒ«ćƒˆćƒ«ćƒŸćƒƒćƒˆ" #: timezones.h:372 msgid "America/Shiprock" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚·ćƒƒćƒ—ćƒ­ćƒƒć‚Æ" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "å±±å²³éƒØęØ™ęŗ–ę™‚ - ćƒŠćƒćƒ›č‡Ŗę²»åŒŗ" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚µćƒ³ćƒ»ćƒćƒ«ćƒ†ćƒ«ćƒŸćƒ¼å³¶" #: timezones.h:376 msgid "America/St_Johns" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚»ćƒ³ćƒˆć‚øćƒ§ćƒ³ć‚ŗ" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "ćƒ‹ćƒ„ćƒ¼ćƒ•ć‚”ćƒ³ćƒ‰ćƒ©ćƒ³ćƒ‰å³¶(ćƒ©ćƒ–ćƒ©ćƒ‰ćƒ¼ćƒ«åœ°ę–¹å—č„æéƒØć‚’å«ć‚€)" #: timezones.h:379 msgid "America/St_Kitts" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚»ćƒ³ćƒˆć‚ÆćƒŖć‚¹ćƒˆćƒ•ć‚”ćƒ¼å³¶" #: timezones.h:380 msgid "America/St_Lucia" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚»ćƒ³ćƒˆćƒ«ć‚·ć‚¢" #: timezones.h:381 msgid "America/St_Thomas" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚»ćƒ³ćƒˆćƒˆćƒ¼ćƒžć‚¹" #: timezones.h:382 msgid "America/St_Vincent" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚»ćƒ³ćƒˆćƒ“ćƒ³ć‚»ćƒ³ćƒˆ" #: timezones.h:383 msgid "America/Swift_Current" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¹ć‚¦ć‚£ćƒ•ćƒˆćƒ»ć‚«ćƒ¬ćƒ³ćƒˆ" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "äø­éƒØęØ™ęŗ–ę™‚ - ć‚µć‚¹ć‚«ćƒćƒ„ćƒÆćƒ³å·ž - 中脿部" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ†ć‚°ć‚·ć‚¬ćƒ«ćƒ‘" #: timezones.h:387 msgid "America/Thule" msgstr "ć‚¢ćƒ”ćƒŖć‚«/チツーレ" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "チツーレ / ćƒ”ćƒ„ćƒ•ć‚£ć‚Æ" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚µćƒ³ćƒ€ćƒ¼ćƒ™ć‚¤" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "ę±éƒØęØ™ęŗ–ę™‚ - ć‚Ŗćƒ³ć‚æćƒŖć‚Ŗå·žć‚µćƒ³ćƒ€ćƒ¼ćƒ™ć‚¤" #: timezones.h:393 msgid "America/Tijuana" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ†ć‚£ćƒ•ć‚”ćƒŠ" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "ć‚¢ćƒ”ćƒŖć‚«å¤Ŗå¹³ę“‹ęØ™ęŗ–ę™‚ - ćƒćƒćƒ»ć‚«ćƒŖćƒ•ć‚©ćƒ«ćƒ‹ć‚¢å·žē±³å›½å¢ƒä»˜čæ‘" #: timezones.h:396 msgid "America/Toronto" msgstr "ć‚¢ćƒ”ćƒŖć‚«/トロント" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "ę±éƒØęØ™ęŗ–ę™‚ - ć‚Ŗćƒ³ć‚æćƒŖć‚Ŗå·ž - å¤§åŠć®åœ°åŸŸ" #: timezones.h:399 msgid "America/Tortola" msgstr "ć‚¢ćƒ”ćƒŖć‚«/トルトラ島" #: timezones.h:400 msgid "America/Vancouver" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒćƒ³ć‚Æćƒ¼ćƒćƒ¼" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "太平擋標準時 - ćƒ–ćƒŖćƒ†ć‚£ćƒƒć‚·ćƒ„ć‚³ćƒ­ćƒ³ćƒ“ć‚¢å·žč„æéƒØ" #: timezones.h:403 msgid "America/Virgin" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒćƒ¼ć‚øćƒ³" #: timezones.h:404 msgid "America/Whitehorse" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ›ćƒÆć‚¤ćƒˆćƒ›ćƒ¼ć‚¹" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "太平擋標準時 - ćƒ¦ćƒ¼ć‚³ćƒ³å·žå—éƒØ" #: timezones.h:407 msgid "America/Winnipeg" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¦ć‚£ćƒ‹ćƒšć‚°" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "äø­éƒØęØ™ęŗ–ę™‚ - ćƒžćƒ‹ćƒˆćƒå·žåŠć³ć‚Ŗćƒ³ć‚æćƒŖć‚Ŗå·žč„æéƒØ" #: timezones.h:410 msgid "America/Yakutat" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ćƒ¤ć‚Æć‚æćƒƒćƒˆ" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "ć‚¢ćƒ©ć‚¹ć‚«ęØ™ęŗ–ę™‚ - ć‚¢ćƒ©ć‚¹ć‚«ćƒ»ćƒ‘ćƒ³ćƒćƒ³ćƒ‰ćƒ«ć®ä»˜ć‘ę ¹éƒØåˆ†" #: timezones.h:413 msgid "America/Yellowknife" msgstr "ć‚¢ćƒ”ćƒŖć‚«/ć‚¤ć‚Øćƒ­ćƒ¼ćƒŠć‚¤ćƒ•" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "å±±å²³éƒØęØ™ęŗ–ę™‚ - ćƒŽćƒ¼ć‚¹ć‚¦ć‚Øć‚¹ćƒˆęŗ–å·žäø­éƒØ" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "å—ę„µå¤§é™ø/ć‚±ćƒ¼ć‚·ćƒ¼" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "ćƒ™ć‚¤ćƒŖćƒ¼åŠå³¶ć‚±ćƒ¼ć‚·ćƒ¼åŸŗåœ°" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "å—ę„µå¤§é™ø/ćƒ‡ćƒ¼ćƒ“ć‚¹" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "ćƒ“ć‚§ć‚¹ćƒˆćƒ•ć‚©ćƒ¼ćƒ«äø˜é™µćƒ‡ćƒ¼ćƒ“ć‚¹åŸŗåœ°" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "å—ę„µå¤§é™ø/ćƒ‡ćƒ„ćƒ¢ćƒ³ćƒ»ćƒ‡ćƒ„ćƒ«ćƒ“ć‚£ćƒ«" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "ć‚¢ćƒ‡ćƒŖćƒ¼ćƒ©ćƒ³ćƒ‰ ćƒ‡ćƒ„ćƒ¢ćƒ³ćƒ»ćƒ‡ćƒ„ćƒ«ćƒ“ć‚£ćƒ«åŸŗåœ°" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "å—ę„µå¤§é™ø/ćƒžćƒƒć‚³ćƒ¼ćƒŖćƒ¼" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "ćƒžćƒƒć‚³ćƒ¼ćƒŖćƒ¼å³¶ćƒžćƒƒć‚³ćƒ¼ćƒŖćƒ¼å³¶åŸŗåœ°" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "å—ę„µå¤§é™ø/ćƒ¢ćƒ¼ć‚½ćƒ³" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "ćƒ›ćƒ«ćƒ ę¹¾ćƒ¢ćƒ¼ć‚½ćƒ³åŸŗåœ°" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "å—ę„µå¤§é™ø/ćƒžć‚Æćƒžćƒ¼ćƒ‰åŸŗåœ°" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "ćƒ­ć‚¹å³¶ćƒžć‚Æćƒžćƒ¼ćƒ‰åŸŗåœ°" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "å—ę„µå¤§é™ø/ćƒ‘ćƒ¼ćƒžćƒ¼" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "ć‚¢ćƒ³ćƒćƒ¼ć‚¹å³¶ćƒ‘ćƒ¼ćƒžćƒ¼åŸŗåœ°" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "å—ę„µå¤§é™ø/ćƒ­ć‚¼ćƒ©" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "ć‚¢ćƒ‡ćƒ¬ćƒ¼ćƒ‰å³¶ćƒ­ć‚¼ćƒ©åŸŗåœ°" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "å—ę„µå¤§é™ø/å—ę„µē‚¹" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "å—ę„µē‚¹ć‚¢ćƒ ćƒ³ć‚¼ćƒ³ćƒ»ć‚¹ć‚³ćƒƒćƒˆåŸŗåœ°" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "å—ę„µå¤§é™ø/ę˜­å’Œ" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "ę±ć‚Ŗćƒ³ć‚°ćƒ«å³¶ę˜­å’ŒåŸŗåœ°" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "å—ę„µå¤§é™ø/ćƒœć‚¹ćƒˆćƒ¼ć‚Æ" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "å—ē£ę„µćƒœć‚¹ćƒˆćƒ¼ć‚ÆåŸŗåœ°" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "åŒ—ę„µåœ/ćƒ­ćƒ³ć‚°ć‚¤ć‚§ćƒ¼ćƒ«ćƒ“ćƒ¼ćƒ³" #: timezones.h:450 msgid "Asia/Aden" msgstr "アジア/ć‚¢ćƒ‡ćƒ³" #: timezones.h:451 msgid "Asia/Almaty" msgstr "アジア/ć‚¢ćƒ«ćƒžćƒˆć‚¤" #: timezones.h:454 msgid "Asia/Amman" msgstr "アジア/ć‚¢ćƒ³ćƒžćƒ³" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "アジア/ć‚¢ćƒŠćƒ‡ć‚£ćƒŖ" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "ćƒ¢ć‚¹ć‚ÆćƒÆ+08 - ćƒ™ćƒ¼ćƒŖćƒ³ć‚°ęµ·" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "アジア/アクタウ" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "ć‚¢ćƒ†ć‚£ćƒ©ć‚¦(ć‚°ćƒ¼ćƒŖć‚Øćƒ•)å·žć€ćƒžćƒ³ć‚®ć‚¹ć‚æć‚¦(ćƒžćƒ³ć‚­ć‚¹ć‚æć‚¦)州" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "アジア/ć‚¢ć‚Æćƒˆćƒ™" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "ć‚¢ć‚Æćƒˆćƒ™å·ž" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "アジア/ć‚¢ć‚·ć‚¬ćƒćƒ¼ćƒˆ" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "アジア/ć‚¢ć‚·ć‚«ćƒćƒ¼ćƒ‰" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "アジア/ćƒć‚°ćƒ€ćƒ¼ćƒ‰" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "アジア/バーレーン" #: timezones.h:468 msgid "Asia/Baku" msgstr "アジア/ćƒć‚Æćƒ¼" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "アジア/ćƒćƒ³ć‚³ć‚Æ" #: timezones.h:470 msgid "Asia/Beirut" msgstr "アジア/ćƒ™ć‚¤ćƒ«ćƒ¼ćƒˆ" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "アジア/ćƒ“ć‚·ćƒ„ć‚±ć‚Æ" #: timezones.h:472 msgid "Asia/Brunei" msgstr "アジア/ćƒ–ćƒ«ćƒć‚¤" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "アジア/ć‚«ćƒ«ć‚«ćƒƒć‚æ" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "アジア/ćƒćƒ§ć‚¤ćƒćƒ«ć‚µćƒ³" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "ćƒ‰ćƒ«ćƒŽćƒ‰ēœŒć€ć‚¹ćƒ•ćƒćƒ¼ć‚æćƒ«ēœŒ" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "アジア/é‡ę…¶" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "äø­å›½äø­éƒØ - å››å·ēœć€é›²å—ēœć€åŗƒč„æćƒćƒÆćƒ³ę—č‡Ŗę²»åŒŗć€é™č„æēœć€č²“å·žēœć€ä»–" #: timezones.h:480 msgid "Asia/Chungking" msgstr "アジア/é‡ę…¶" #: timezones.h:481 msgid "Asia/Colombo" msgstr "アジア/ć‚³ćƒ­ćƒ³ćƒœ" #: timezones.h:482 msgid "Asia/Dacca" msgstr "アジア/ćƒ€ćƒƒć‚«" #: timezones.h:483 msgid "Asia/Damascus" msgstr "アジア/ćƒ€ćƒžć‚¹ć‚«ć‚¹" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "アジア/ćƒ€ćƒƒć‚«" #: timezones.h:485 msgid "Asia/Dili" msgstr "アジア/ćƒ‡ć‚£ćƒŖ" #: timezones.h:486 msgid "Asia/Dubai" msgstr "アジア/惉惐悤" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "アジア/ćƒ‰ć‚„ć‚·ćƒ£ćƒ³ćƒ™" #: timezones.h:488 msgid "Asia/Gaza" msgstr "アジア/悬悶" #: timezones.h:489 msgid "Asia/Harbin" msgstr "アジア/ćƒćƒ«ćƒ“ćƒ³" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "é»’ē«œę±Ÿēœ(éŗéžØć‚’é™¤ć)ć€å‰ęž—ēœ" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "アジア/ćƒ›ćƒ¼ćƒćƒŸćƒ³" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "アジア/香港" #: timezones.h:494 msgid "Asia/Hovd" msgstr "アジア/惛惖惉" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "ćƒćƒ¤ćƒ³ćƒ»ć‚¦ćƒ«ć‚®ćƒ¼ēœŒć€ć‚“ćƒ“ćƒ»ć‚¢ćƒ«ć‚æć‚¤ēœŒć€ćƒ›ćƒ–ćƒ‰ēœŒć€ć‚Ŗćƒ–ć‚¹ēœŒć€ć‚¶ćƒ–ćƒćƒ³ēœŒ" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "アジア/ć‚¤ćƒ«ć‚Æćƒ¼ćƒ„ć‚Æ" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "ćƒ¢ć‚¹ć‚ÆćƒÆ+05 - ćƒć‚¤ć‚«ćƒ«ę¹–" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "アジア/ć‚¤ć‚¹ć‚æćƒ³ćƒ–ćƒ«" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "アジア/ć‚øćƒ£ć‚«ćƒ«ć‚æ" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "ć‚øćƒ£ćƒÆå³¶åŠć³ć‚¹ćƒžćƒˆćƒ©å³¶" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "アジア/ć‚øćƒ£ćƒ¤ćƒ—ćƒ©" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "ć‚¤ćƒŖć‚¢ćƒ³ć‚øćƒ£ćƒ¤å·žåŠć³ćƒ¢ćƒ«ćƒƒć‚«č«øå³¶" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "アジア/ć‚Øćƒ«ć‚µćƒ¬ćƒ " #: timezones.h:508 msgid "Asia/Kabul" msgstr "アジア/ć‚«ćƒ¼ćƒ–ćƒ«" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "アジア/ć‚«ćƒ ćƒćƒ£ćƒ„ć‚«" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "ćƒ¢ć‚¹ć‚ÆćƒÆ+08 - ć‚«ćƒ ćƒćƒ£ćƒ„ć‚«åŠå³¶" #: timezones.h:512 msgid "Asia/Karachi" msgstr "アジア/ć‚«ćƒ©ćƒ" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "アジア/ć‚«ć‚·ćƒ„ć‚¬ćƒ«" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "ćƒćƒ™ćƒƒćƒˆč‡Ŗę²»åŒŗč„æéƒØåŠć³ę–°ē–†ć‚¦ć‚¤ć‚°ćƒ«č‡Ŗę²»åŒŗ" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "アジア/ć‚«ćƒˆćƒžćƒ³ć‚ŗ" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "アジア/ć‚«ćƒˆćƒžćƒ³ć‚ŗ" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "アジア/ć‚³ćƒ«ć‚«ć‚æ" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "アジア/ć‚Æćƒ©ć‚¹ćƒŽćƒ¤ćƒ«ć‚¹ć‚Æ" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "ćƒ¢ć‚¹ć‚ÆćƒÆ+04 - ć‚Øćƒ‹ć‚»ć‚¤å·" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "アジア/ć‚Æć‚¢ćƒ©ćƒ«ćƒ³ćƒ—ćƒ¼ćƒ«" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "ćƒžćƒ¬ćƒ¼ć‚·ć‚¢åŠå³¶éƒØ" #: timezones.h:525 msgid "Asia/Kuching" msgstr "アジア/ć‚Æćƒćƒ³" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "ć‚µćƒå·žåŠć³ć‚µćƒ©ćƒÆć‚Æå·ž" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "アジア/ć‚Æć‚¦ć‚§ćƒ¼ćƒˆ" #: timezones.h:529 msgid "Asia/Macao" msgstr "アジア/ćƒžć‚«ć‚Ŗ" #: timezones.h:530 msgid "Asia/Macau" msgstr "アジア/ćƒžć‚«ć‚Ŗ" #: timezones.h:531 msgid "Asia/Magadan" msgstr "アジア/ćƒžć‚¬ćƒ€ćƒ³" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "ćƒ¢ć‚¹ć‚ÆćƒÆ+08 - ćƒžć‚¬ćƒ€ćƒ³" #: timezones.h:534 msgid "Asia/Makassar" msgstr "アジア/ćƒžć‚«ćƒƒć‚µćƒ«" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "ćƒœćƒ«ćƒć‚Ŗå³¶ę±éƒØåŠć³å—éƒØć€ć‚»ćƒ¬ćƒ™ć‚¹å³¶ć€ćƒćƒŖå³¶ć€å°ć‚¹ćƒ³ćƒ€åˆ—å³¶ć€č„æćƒ†ć‚£ćƒ¢ćƒ¼ćƒ«" #: timezones.h:537 msgid "Asia/Manila" msgstr "アジア/ćƒžćƒ‹ćƒ©" #: timezones.h:538 msgid "Asia/Muscat" msgstr "アジア/ćƒžć‚¹ć‚«ćƒƒćƒˆ" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "アジア/ćƒ‹ć‚³ć‚·ć‚¢" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "アジア/ćƒŽćƒœć‚Æć‚ŗćƒćƒ„ć‚Æ" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "ćƒ¢ć‚¹ć‚ÆćƒÆ+03 - ćƒŽćƒœć‚Æć‚ŗćƒćƒ„ć‚Æ" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "アジア/ćƒŽćƒœć‚·ćƒ“ćƒ«ć‚¹ć‚Æ" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "ćƒ¢ć‚¹ć‚ÆćƒÆ+03 - ćƒŽćƒœć‚·ćƒ“ćƒ«ć‚¹ć‚Æ" #: timezones.h:546 msgid "Asia/Omsk" msgstr "アジア/ć‚Ŗćƒ ć‚¹ć‚Æ" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "ćƒ¢ć‚¹ć‚ÆćƒÆ+03 - ć‚·ćƒ™ćƒŖć‚¢č„æéƒØ" #: timezones.h:549 msgid "Asia/Oral" msgstr "アジア/ć‚Ŗćƒ©ćƒ«" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "ć‚«ć‚¶ćƒ•ć‚¹ć‚æćƒ³č„æéƒØ" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "アジア/ćƒ—ćƒŽćƒ³ćƒšćƒ³" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "アジア/ćƒćƒ³ćƒ†ć‚£ć‚¢ćƒŠćƒƒć‚Æ" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "ćƒœćƒ«ćƒć‚Ŗå³¶č„æéƒØåŠć³äø­éƒØ" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "アジア/平壌" #: timezones.h:557 msgid "Asia/Qatar" msgstr "アジア/ć‚«ć‚æćƒ¼ćƒ«" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "アジア/ć‚Æć‚ŗćƒ­ćƒ«ćƒ€" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "ć‚Æć‚ŗćƒ­ćƒ«ćƒ€å·ž" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "アジア/ćƒ©ćƒ³ć‚°ćƒ¼ćƒ³" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "アジア/ćƒŖćƒ¤ćƒ‰" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "アジア/ćƒŖćƒ¤ćƒ‰87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "アジア/ćƒŖćƒ¤ćƒ‰88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "アジア/ćƒŖćƒ¤ćƒ‰89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "アジア/ć‚µć‚¤ć‚“ćƒ³" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "アジア/ć‚µćƒćƒŖćƒ³" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "ćƒ¢ć‚¹ć‚ÆćƒÆ+07 - ć‚µćƒćƒŖćƒ³å³¶" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "アジア/ć‚µćƒžćƒ«ć‚«ćƒ³ćƒ‰" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "ć‚¦ć‚ŗćƒ™ć‚­ć‚¹ć‚æćƒ³č„æéƒØ" #: timezones.h:573 msgid "Asia/Seoul" msgstr "アジア/ć‚½ć‚¦ćƒ«" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "アジア/上海" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "äø­å›½č„æéƒØ - åŒ—äŗ¬ć€åŗƒę±ēœć€äøŠęµ·ć€ä»–" #: timezones.h:577 msgid "Asia/Singapore" msgstr "アジア/ć‚·ćƒ³ć‚¬ćƒćƒ¼ćƒ«" #: timezones.h:578 msgid "Asia/Taipei" msgstr "アジア/台北" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "アジア/ć‚æć‚·ćƒ„ć‚±ćƒ³ćƒˆ" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "ć‚¦ć‚ŗćƒ™ć‚­ć‚¹ć‚æćƒ³ę±éƒØ" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "アジア/ćƒˆćƒ“ćƒŖć‚·" #: timezones.h:583 msgid "Asia/Tehran" msgstr "アジア/ćƒ†ćƒ˜ćƒ©ćƒ³" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "アジア/ćƒ†ćƒ«ć‚¢ćƒ“ćƒ–" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "アジア/ćƒ†ć‚£ćƒ³ćƒ—ćƒ¼" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "アジア/ćƒ†ć‚£ćƒ³ćƒ—ćƒ¼" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "アジア/ę±äŗ¬" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "アジア/ć‚¦ć‚øćƒ„ćƒ³ćƒ»ćƒ‘ćƒ³ćƒ€ćƒ³" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "アジア/ć‚¦ćƒ©ćƒ³ćƒćƒ¼ćƒˆćƒ«" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "アジア/ć‚¦ćƒ©ćƒ³ćƒćƒ¼ćƒˆćƒ«" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "アジア/ć‚¦ćƒ«ćƒ ćƒ" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "ćƒćƒ™ćƒƒćƒˆč‡Ŗę²»åŒŗåŠć³ę–°ē–†ć‚¦ć‚¤ć‚°ćƒ«č‡Ŗę²»åŒŗć®å¤§éƒØåˆ†" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "アジア/ćƒ“ć‚£ć‚Øćƒ³ćƒćƒ£ćƒ³" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "アジア/ć‚¦ćƒ©ć‚øć‚Ŗć‚¹ćƒˆć‚Æ" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "ćƒ¢ć‚¹ć‚ÆćƒÆ+07 - ć‚¢ćƒ ćƒ¼ćƒ«å·" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "アジア/ćƒ¤ć‚Æćƒ¼ćƒ„ć‚Æ" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "ćƒ¢ć‚¹ć‚ÆćƒÆ+06 - ćƒ¬ćƒŠå·" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "アジア/ć‚Øć‚«ćƒ†ćƒŖćƒ³ćƒ–ćƒ«ć‚Æ" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "ćƒ¢ć‚¹ć‚ÆćƒÆ+02 - ć‚¦ćƒ©ćƒ«é€£é‚¦ē®”åŒŗ" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "アジア/ć‚Øćƒ¬ćƒćƒ³" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "大脿擋/ć‚¢ć‚¾ćƒ¬ć‚¹" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "ć‚¢ć‚¾ćƒ¬ć‚¹č«øå³¶" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "大脿擋/ćƒćƒŸćƒ„ćƒ¼ćƒ€č«øå³¶" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "大脿擋/ć‚«ćƒŠćƒŖć‚¢" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "ć‚«ćƒŠćƒŖć‚¢č«øå³¶" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "大脿擋/ć‚«ćƒ¼ćƒœćƒ™ćƒ«ćƒ‡" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "大脿擋/ćƒ•ć‚§ćƒ­ćƒ¼č«øå³¶" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "大脿擋/ćƒ•ć‚§ćƒ­ćƒ¼č«øå³¶" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "大脿擋/ćƒ¤ćƒ³ćƒžć‚¤ć‚Øćƒ³å³¶" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "大脿擋/ćƒžćƒ‡ć‚¤ćƒ©" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "ćƒžćƒ‡ć‚¤ćƒ©č«øå³¶" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "大脿擋/ćƒ¬ć‚¤ć‚­ćƒ£ćƒ“ć‚Æ" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "大脿擋/ć‚µć‚¦ć‚¹ć‚øćƒ§ćƒ¼ć‚øć‚¢" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "大脿擋/ć‚¹ć‚æćƒ³ćƒŖćƒ¼" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "大脿擋/ć‚»ćƒ³ćƒˆćƒ˜ćƒ¬ćƒŠ" #: timezones.h:625 msgid "Australia/ACT" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢é¦–éƒ½ē‰¹åˆ„åœ°åŸŸ" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/ć‚¢ćƒ‡ćƒ¬ćƒ¼ćƒ‰" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢å—éƒØ" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/ćƒ–ćƒŖć‚ŗćƒ™ćƒ³" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "ć‚Æć‚¤ćƒ¼ćƒ³ć‚ŗćƒ©ćƒ³ćƒ‰å·ž - å¤§åŠć®åœ°åŸŸ" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/ćƒ–ćƒ­ćƒ¼ć‚Æćƒ³ćƒ’ćƒ«" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "ćƒ‹ćƒ„ćƒ¼ć‚µć‚¦ć‚¹ć‚¦ć‚§ćƒ¼ćƒ«ć‚ŗå·ž - ćƒ¤ćƒ³ć‚³ć‚¦ć‚£ćƒŠéƒ”" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/ć‚­ćƒ£ćƒ³ćƒ™ćƒ©" #: timezones.h:636 msgid "Australia/Currie" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/ć‚«ćƒŖćƒ¼" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "ć‚æć‚¹ćƒžćƒ‹ć‚¢č«øå³¶ - ć‚­ćƒ³ć‚°å³¶" #: timezones.h:639 msgid "Australia/Darwin" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/ćƒ€ćƒ¼ć‚¦ć‚£ćƒ³" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "åŒ—éƒØęŗ–å·ž" #: timezones.h:642 msgid "Australia/Eucla" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/ćƒ¦ćƒ¼ć‚Æćƒ©" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "č„æć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢å·ž - ćƒ¦ćƒ¼ć‚Æćƒ©åœ°åŸŸ" #: timezones.h:645 msgid "Australia/Hobart" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/ćƒ›ćƒćƒ¼ćƒˆ" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "ć‚æć‚¹ćƒžćƒ‹ć‚¢å·ž - å¤§åŠć®åœ°åŸŸ" #: timezones.h:648 msgid "Australia/LHI" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/ćƒ­ćƒ¼ćƒ‰ćƒ»ćƒć‚¦å³¶" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/ćƒŖćƒ³ćƒ‡ćƒžćƒ³å³¶" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "ć‚Æć‚¤ćƒ¼ćƒ³ć‚ŗćƒ©ćƒ³ćƒ‰å·ž - ćƒ›ćƒŖćƒ‡ćƒ¼č«øå³¶" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/ćƒ­ćƒ¼ćƒ‰ćƒ»ćƒć‚¦" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "ćƒ­ćƒ¼ćƒ‰ćƒ»ćƒć‚¦å³¶" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/ピルボルン" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "ćƒ“ć‚ÆćƒˆćƒŖć‚¢å·ž" #: timezones.h:658 msgid "Australia/North" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/åŒ—éƒØ" #: timezones.h:659 msgid "Australia/NSW" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/ćƒ‹ćƒ„ćƒ¼ć‚µć‚¦ć‚¹ć‚¦ć‚§ćƒ¼ćƒ«ć‚ŗ" #: timezones.h:660 msgid "Australia/Perth" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/ćƒ‘ćƒ¼ć‚¹" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "č„æć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢å·ž - å¤§åŠć®åœ°åŸŸ" #: timezones.h:663 msgid "Australia/Queensland" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/ć‚Æć‚¤ćƒ¼ćƒ³ć‚ŗćƒ©ćƒ³ćƒ‰" #: timezones.h:664 msgid "Australia/South" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/å—éƒØ" #: timezones.h:665 msgid "Australia/Sydney" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/ć‚·ćƒ‰ćƒ‹ćƒ¼" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "ćƒ‹ćƒ„ćƒ¼ć‚µć‚¦ć‚¹ć‚¦ć‚§ćƒ¼ćƒ«ć‚ŗ - å¤§åŠć®åœ°åŸŸ" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/ć‚æć‚¹ćƒžćƒ‹ć‚¢" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/ćƒ“ć‚ÆćƒˆćƒŖć‚¢" #: timezones.h:670 msgid "Australia/West" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/脿部" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ć‚Ŗćƒ¼ć‚¹ćƒˆćƒ©ćƒŖć‚¢/ćƒ¤ćƒ³ć‚³ć‚¦ć‚£ćƒŠ" #: timezones.h:672 msgid "Brazil/Acre" msgstr "ćƒ–ćƒ©ć‚øćƒ«/ć‚¢ć‚Æćƒ¬" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "ćƒ–ćƒ©ć‚øćƒ«/ćƒ‡ćƒ»ćƒŽćƒ­ćƒ¼ćƒ‹ćƒ£" #: timezones.h:674 msgid "Brazil/East" msgstr "ćƒ–ćƒ©ć‚øćƒ«/ę±éƒØ" #: timezones.h:675 msgid "Brazil/West" msgstr "ćƒ–ćƒ©ć‚øćƒ«/脿部" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "ć‚«ćƒŠćƒ€/大脿擋" #: timezones.h:677 msgid "Canada/Central" msgstr "ć‚«ćƒŠćƒ€/中部" #: timezones.h:678 msgid "Canada/Eastern" msgstr "ć‚«ćƒŠćƒ€/ę±ęµ·å²ø" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "ć‚«ćƒŠćƒ€/ć‚µć‚¹ć‚«ćƒćƒ„ćƒÆćƒ³ę±éƒØ" #: timezones.h:680 msgid "Canada/Mountain" msgstr "ć‚«ćƒŠćƒ€/山岳部" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "ć‚«ćƒŠćƒ€/ćƒ‹ćƒ„ćƒ¼ćƒ•ć‚”ćƒ³ćƒ‰ćƒ©ćƒ³ćƒ‰å³¶" #: timezones.h:682 msgid "Canada/Pacific" msgstr "ć‚«ćƒŠćƒ€/太平擋" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "ć‚«ćƒŠćƒ€/ć‚µć‚¹ć‚«ćƒćƒ„ćƒÆćƒ³" #: timezones.h:684 msgid "Canada/Yukon" msgstr "ć‚«ćƒŠćƒ€/ćƒ¦ćƒ¼ć‚³ćƒ³" #: timezones.h:685 msgid "CET" msgstr "äø­å¤®ćƒØćƒ¼ćƒ­ćƒƒćƒ‘ę™‚é–“" #: timezones.h:686 msgid "Chile/Continental" msgstr "チリ/å¤§é™øéƒØ" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "チリ/ć‚¤ćƒ¼ć‚¹ć‚æćƒ¼å³¶" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT (å¤ę™‚é–“ć®ćŖć„äø­éƒØęØ™ęŗ–ę™‚)" #: timezones.h:689 msgid "Cuba" msgstr "ć‚­ćƒ„ćƒ¼ćƒ" #: timezones.h:690 msgid "EET" msgstr "ę±ćƒØćƒ¼ćƒ­ćƒƒćƒ‘ę™‚é–“" #: timezones.h:691 msgid "Egypt" msgstr "ć‚Øć‚øćƒ—ćƒˆ" #: timezones.h:692 msgid "Eire" msgstr "ć‚Øćƒ¼ćƒ«" #: timezones.h:693 msgid "EST" msgstr "ę±éƒØęØ™ęŗ–ę™‚" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT (å¤ę™‚é–“ć®ćŖć„ę±éƒØęØ™ęŗ–ę™‚)" #: timezones.h:695 msgid "Etc/GMT" msgstr "ćć®ä»–/ć‚°ćƒŖćƒ‹ćƒƒć‚øęØ™ęŗ–ę™‚" #: timezones.h:696 msgid "Etc/GMT0" msgstr "ćć®ä»–/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "ćć®ä»–/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "ćć®ä»–/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "ćć®ä»–/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "ćć®ä»–/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "ćć®ä»–/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "ćć®ä»–/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "ćć®ä»–/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "ćć®ä»–/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "ćć®ä»–/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "ćć®ä»–/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "ćć®ä»–/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "ćć®ä»–/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "ćć®ä»–/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "ćć®ä»–/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "ćć®ä»–/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "ćć®ä»–/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "ćć®ä»–/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "ćć®ä»–/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "ćć®ä»–/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "ćć®ä»–/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "ćć®ä»–/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "ćć®ä»–/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "ćć®ä»–/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "ćć®ä»–/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "ćć®ä»–/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "ćć®ä»–/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "ćć®ä»–/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "ćć®ä»–/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "ćć®ä»–/ć‚°ćƒŖćƒ‹ćƒƒć‚ø" #: timezones.h:726 msgid "Etc/UCT" msgstr "ćć®ä»–/UCT (å”å®šäø–ē•Œę™‚)" #: timezones.h:727 msgid "Etc/Universal" msgstr "ćć®ä»–/äø–ē•Œę™‚" #: timezones.h:728 msgid "Etc/UTC" msgstr "ćć®ä»–/UTC (å”å®šäø–ē•Œę™‚)" #: timezones.h:729 msgid "Etc/Zulu" msgstr "ćć®ä»–/ć‚ŗćƒ¼ćƒ«ćƒ¼" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚¢ćƒ ć‚¹ćƒ†ćƒ«ćƒ€ćƒ " #: timezones.h:731 msgid "Europe/Andorra" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚¢ćƒ³ćƒ‰ćƒ©" #: timezones.h:732 msgid "Europe/Athens" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚¢ćƒ†ćƒ" #: timezones.h:733 msgid "Europe/Belfast" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒ™ćƒ«ćƒ•ć‚”ć‚¹ćƒˆ" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒ™ć‚Ŗć‚°ćƒ©ćƒ¼ćƒ‰" #: timezones.h:735 msgid "Europe/Berlin" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒ™ćƒ«ćƒŖćƒ³" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒ–ćƒ©ćƒć‚¹ćƒ©ćƒ" #: timezones.h:737 msgid "Europe/Brussels" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒ–ćƒŖćƒ„ćƒƒć‚»ćƒ«" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒ–ć‚«ćƒ¬ć‚¹ćƒˆ" #: timezones.h:739 msgid "Europe/Budapest" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒ–ćƒ€ćƒšć‚¹ćƒˆ" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚­ć‚·ćƒŠć‚¦" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚³ćƒšćƒ³ćƒćƒ¼ć‚²ćƒ³" #: timezones.h:742 msgid "Europe/Dublin" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒ€ćƒ–ćƒŖćƒ³" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚øćƒ–ćƒ©ćƒ«ć‚æćƒ«" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚¬ćƒ¼ćƒ³ć‚øćƒ¼" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒ˜ćƒ«ć‚·ćƒ³ć‚­" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒžćƒ³å³¶" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚¤ć‚¹ć‚æćƒ³ćƒ–ćƒ«" #: timezones.h:748 msgid "Europe/Jersey" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚øćƒ£ćƒ¼ć‚øćƒ¼" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚«ćƒŖćƒ¼ćƒ‹ćƒ³ć‚°ćƒ©ćƒ¼ćƒ‰" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "ćƒ¢ć‚¹ć‚ÆćƒÆ-01 - ć‚«ćƒŖćƒ¼ćƒ‹ćƒ³ć‚°ćƒ©ćƒ¼ćƒ‰" #: timezones.h:752 msgid "Europe/Kiev" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚­ć‚Øćƒ•" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒŖć‚¹ćƒœćƒ³" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒŖćƒ„ćƒ–ćƒŖćƒ£ćƒŠ" #: timezones.h:759 msgid "Europe/London" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒ­ćƒ³ćƒ‰ćƒ³" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒ«ć‚Æć‚»ćƒ³ćƒ–ćƒ«ć‚Æ" #: timezones.h:761 msgid "Europe/Madrid" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒžćƒ‰ćƒŖćƒ¼ćƒ‰" #: timezones.h:764 msgid "Europe/Malta" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒžćƒ«ć‚æ" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒžćƒŖć‚Øćƒćƒ ćƒ³" #: timezones.h:766 msgid "Europe/Minsk" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒŸćƒ³ć‚¹ć‚Æ" #: timezones.h:767 msgid "Europe/Monaco" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒ¢ćƒŠć‚³" #: timezones.h:768 msgid "Europe/Moscow" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒ¢ć‚¹ć‚ÆćƒÆ" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "ćƒ¢ć‚¹ć‚ÆćƒÆ+00 - ćƒ­ć‚·ć‚¢č„æéƒØ" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒ‹ć‚³ć‚·ć‚¢" #: timezones.h:772 msgid "Europe/Oslo" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚Ŗć‚¹ćƒ­" #: timezones.h:773 msgid "Europe/Paris" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒ‘ćƒŖ" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒćƒ‰ć‚“ćƒŖćƒ„ć‚”" #: timezones.h:775 msgid "Europe/Prague" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒ—ćƒ©ćƒ" #: timezones.h:776 msgid "Europe/Riga" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒŖć‚¬" #: timezones.h:777 msgid "Europe/Rome" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒ­ćƒ¼ćƒž" #: timezones.h:778 msgid "Europe/Samara" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚µćƒžćƒ¼ćƒ©" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "ćƒ¢ć‚¹ć‚ÆćƒÆ - ć‚µćƒžćƒ¼ćƒ©å·žć€ć‚¦ćƒ‰ćƒ ćƒ«ćƒˆå…±å’Œå›½" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚µćƒ³ćƒžćƒŖćƒŽ" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚µćƒ©ć‚Øćƒœ" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚·ćƒ³ćƒ•ć‚§ćƒ­ćƒćƒŖ" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "ć‚ÆćƒŖćƒŸć‚¢åŠå³¶äø­éƒØ" #: timezones.h:786 msgid "Europe/Skopje" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚¹ć‚³ćƒ”ć‚Ø" #: timezones.h:787 msgid "Europe/Sofia" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚½ćƒ•ć‚£ć‚¢" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚¹ćƒˆćƒƒć‚Æćƒ›ćƒ«ćƒ " #: timezones.h:789 msgid "Europe/Tallinn" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚æćƒŖćƒ³" #: timezones.h:790 msgid "Europe/Tirane" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒ†ć‚£ćƒ©ćƒŠ" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒ†ć‚£ćƒ©ć‚¹ćƒćƒŖ" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚¦ćƒ¼ć‚øćƒ„ćƒ›ćƒ­ćƒ‰" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "ćƒ«ćƒ¼ć‚·" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒ•ć‚”ćƒ‰ć‚„ćƒ¼ćƒ„" #: timezones.h:796 msgid "Europe/Vatican" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒćƒć‚«ćƒ³" #: timezones.h:797 msgid "Europe/Vienna" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚¦ć‚£ćƒ¼ćƒ³" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒ“ćƒŖćƒ‹ćƒ„ć‚¹" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒœćƒ«ć‚“ć‚°ćƒ©ćƒ¼ćƒ‰" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "ćƒ¢ć‚¹ć‚ÆćƒÆ+00 - ć‚«ć‚¹ćƒ”ęµ·" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒÆćƒ«ć‚·ćƒ£ćƒÆ" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚¶ć‚°ćƒ¬ćƒ–" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ć‚¶ćƒćƒŖćƒ¼ć‚øćƒ£" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "ćƒ«ć‚¬ćƒ³ć‚¹ć‚Æę±éƒØć‚¶ćƒćƒ­ćƒ¼ć‚øć‚Ø/ćƒ«ćƒćƒ³ć‚·ć‚Æę±éƒØć‚¶ćƒćƒŖćƒ¼ć‚øćƒ£" #: timezones.h:807 msgid "Europe/Zurich" msgstr "ćƒØćƒ¼ćƒ­ćƒƒćƒ‘/ćƒćƒ„ćƒ¼ćƒŖćƒƒćƒ’" #: timezones.h:808 msgid "Factory" msgstr "ćƒ•ć‚”ć‚ÆćƒˆćƒŖćƒ¼" #: timezones.h:809 msgid "GB" msgstr "ć‚¤ć‚®ćƒŖć‚¹" #: timezones.h:810 msgid "GB-Eire" msgstr "ć‚¤ć‚®ćƒŖć‚¹-ć‚¢ć‚¤ćƒ«ćƒ©ćƒ³ćƒ‰" #: timezones.h:811 msgid "GMT" msgstr "ć‚°ćƒŖćƒ‹ćƒƒć‚øęØ™ęŗ–ę™‚" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "ć‚°ćƒŖćƒ‹ćƒƒć‚ø" #: timezones.h:816 msgid "Hongkong" msgstr "香港" #: timezones.h:817 msgid "HST" msgstr "ćƒćƒÆć‚¤ćƒ»ć‚¢ćƒŖćƒ„ćƒ¼ć‚·ćƒ£ćƒ³ęØ™ęŗ–ę™‚" #: timezones.h:818 msgid "Iceland" msgstr "ć‚¢ć‚¤ć‚¹ćƒ©ćƒ³ćƒ‰" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "ć‚¤ćƒ³ćƒ‰ę“‹/ć‚¢ćƒ³ć‚æćƒŠćƒŠćƒŖćƒœ" #: timezones.h:820 msgid "Indian/Chagos" msgstr "ć‚¤ćƒ³ćƒ‰ę“‹/ćƒćƒ£ć‚“ć‚¹č«øå³¶" #: timezones.h:821 msgid "Indian/Christmas" msgstr "ć‚¤ćƒ³ćƒ‰ę“‹/ć‚ÆćƒŖć‚¹ćƒžć‚¹å³¶" #: timezones.h:822 msgid "Indian/Cocos" msgstr "ć‚¤ćƒ³ćƒ‰ę“‹/ココス島" #: timezones.h:823 msgid "Indian/Comoro" msgstr "ć‚¤ćƒ³ćƒ‰ę“‹/ć‚³ćƒ¢ćƒ­" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "ć‚¤ćƒ³ćƒ‰ę“‹/ć‚±ćƒ«ć‚²ćƒ¬ćƒ³č«øå³¶" #: timezones.h:825 msgid "Indian/Mahe" msgstr "ć‚¤ćƒ³ćƒ‰ę“‹/ćƒžćƒ˜å³¶" #: timezones.h:826 msgid "Indian/Maldives" msgstr "ć‚¤ćƒ³ćƒ‰ę“‹/ćƒ¢ćƒ«ćƒ‡ć‚£ćƒ–" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "ć‚¤ćƒ³ćƒ‰ę“‹/ćƒ¢ćƒ¼ćƒŖć‚·ćƒ£ć‚¹" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "ć‚¤ćƒ³ćƒ‰ę“‹/ćƒžćƒØćƒƒćƒˆ" #: timezones.h:829 msgid "Indian/Reunion" msgstr "ć‚¤ćƒ³ćƒ‰ę“‹/ćƒ¬ćƒ¦ćƒ‹ć‚Ŗćƒ³" #: timezones.h:830 msgid "Iran" msgstr "ć‚¤ćƒ©ćƒ³" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "ć‚¤ć‚¹ćƒ©ć‚Øćƒ«" #: timezones.h:833 msgid "Jamaica" msgstr "ć‚øćƒ£ćƒžć‚¤ć‚«" #: timezones.h:834 msgid "Japan" msgstr "ę—„ęœ¬" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "ć‚Æć‚Øć‚øć‚§ćƒŖćƒ³ē’°ē¤" #: timezones.h:836 msgid "Libya" msgstr "ćƒŖćƒ“ć‚¢" #: timezones.h:837 msgid "MET" msgstr "äø­å¤®ćƒØćƒ¼ćƒ­ćƒƒćƒ‘ę™‚é–“" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "ćƒ”ć‚­ć‚·ć‚³/ćƒćƒćƒ»ć‚«ćƒŖćƒ•ć‚©ćƒ«ćƒ‹ć‚¢ćƒ»ćƒŽćƒ«ćƒ†" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "ćƒ”ć‚­ć‚·ć‚³/ćƒćƒćƒ»ć‚«ćƒŖćƒ•ć‚©ćƒ«ćƒ‹ć‚¢ćƒ»ć‚¹ćƒ«" #: timezones.h:840 msgid "Mexico/General" msgstr "ćƒ”ć‚­ć‚·ć‚³/標準" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "äø­ę±/ćƒŖćƒ¤ćƒ‰87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "äø­ę±/ćƒŖćƒ¤ćƒ‰88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "äø­ę±/ćƒŖćƒ¤ćƒ‰89" #: timezones.h:844 msgid "MST" msgstr "å±±å²³éƒØęØ™ęŗ–ę™‚" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT (å¤ę™‚é–“ć®ćŖć„å±±å²³éƒØęØ™ęŗ–ę™‚)" #: timezones.h:846 msgid "Navajo" msgstr "惊惐惛" #: timezones.h:847 msgid "NZ" msgstr "ćƒ‹ćƒ„ćƒ¼ć‚øćƒ¼ćƒ©ćƒ³ćƒ‰" #: timezones.h:848 msgid "NZ-CHAT" msgstr "ćƒ‹ćƒ„ćƒ¼ć‚øćƒ¼ćƒ©ćƒ³ćƒ‰-ćƒćƒ£ć‚æćƒ č«øå³¶" #: timezones.h:849 msgid "Pacific/Apia" msgstr "太平擋/ć‚¢ćƒ”ć‚¢" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "太平擋/ć‚Ŗćƒ¼ć‚Æćƒ©ćƒ³ćƒ‰" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "太平擋/ćƒćƒ£ć‚æćƒ " #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "ćƒćƒ£ć‚æćƒ č«øå³¶" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "太平擋/ćƒćƒ„ćƒ¼ć‚Æ" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "ćƒćƒ„ćƒ¼ć‚Æ(ćƒˆćƒ©ćƒƒć‚Æ)č«øå³¶åŠć³ćƒ¤ćƒƒćƒ—č«øå³¶" #: timezones.h:859 msgid "Pacific/Easter" msgstr "太平擋/ć‚¤ćƒ¼ć‚¹ć‚æćƒ¼å³¶" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "ć‚¤ćƒ¼ć‚¹ć‚æćƒ¼å³¶åŠć³ć‚µćƒ©ćƒ»ć‚¤ćƒ»ć‚“ćƒ”ć‚¹å³¶" #: timezones.h:862 msgid "Pacific/Efate" msgstr "太平擋/ć‚Øćƒ•ć‚”ćƒ†å³¶" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "太平擋/ć‚Øćƒ³ćƒ€ćƒ¼ćƒ™ćƒŖćƒ¼å³¶" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "ćƒ•ć‚§ćƒ‹ćƒƒć‚Æć‚¹č«øå³¶" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "太平擋/ćƒ•ć‚”ć‚«ć‚Ŗćƒ•ć‚©å³¶" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "太平擋/ćƒ•ć‚£ć‚øćƒ¼" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "太平擋/ćƒ•ćƒŠćƒ•ćƒ†ć‚£å³¶" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "太平擋/ć‚¬ćƒ©ćƒ‘ć‚“ć‚¹" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "ć‚¬ćƒ©ćƒ‘ć‚“ć‚¹č«øå³¶" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "太平擋/ć‚¬ćƒ³ćƒ“ć‚Ø" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "ć‚¬ćƒ³ćƒ“ć‚Øč«øå³¶" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "太平擋/ć‚¬ćƒ€ćƒ«ć‚«ćƒŠćƒ«å³¶" #: timezones.h:876 msgid "Pacific/Guam" msgstr "太平擋/ć‚°ć‚¢ćƒ å³¶" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "太平擋/ćƒ›ćƒŽćƒ«ćƒ«" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "ćƒćƒÆć‚¤å³¶" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "太平擋/ć‚øćƒ§ćƒ³ć‚¹ćƒˆćƒ³å³¶" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "ć‚øćƒ§ćƒ³ć‚¹ćƒˆćƒ³ē’°ē¤" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "太平擋/ć‚­ćƒŖć‚¹ć‚£ćƒžć‚¹ć‚£å³¶" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "ćƒ©ć‚¤ćƒ³č«øå³¶" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "太平擋/ć‚³ć‚¹ćƒ©ć‚Ø" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "ć‚³ć‚¹ćƒ©ć‚Øå·ž" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "太平擋/ć‚Æć‚Øć‚øć‚§ćƒŖćƒ³" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "太平擋/ćƒžć‚øćƒ„ćƒ­" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "太平擋/ćƒžćƒ«ć‚­ćƒ¼ć‚ŗ" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "ćƒžćƒ«ć‚­ćƒ¼ć‚ŗč«øå³¶" #: timezones.h:898 msgid "Pacific/Midway" msgstr "太平擋/ćƒŸćƒƒćƒ‰ć‚¦ć‚§ćƒ¼" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "ćƒŸćƒƒćƒ‰ć‚¦ć‚§ćƒ¼å³¶" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "太平擋/ćƒŠć‚¦ćƒ«" #: timezones.h:902 msgid "Pacific/Niue" msgstr "太平擋/ćƒ‹ć‚¦ć‚Ø" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "太平擋/ćƒŽćƒ¼ćƒ•ć‚©ćƒ¼ć‚Æå³¶" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "太平擋/ćƒŒćƒ”ć‚¢" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "太平擋/ćƒ‘ć‚“ćƒ‘ć‚“" #: timezones.h:906 msgid "Pacific/Palau" msgstr "太平擋/ćƒ‘ćƒ©ć‚Ŗ" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "太平擋/ćƒ”ćƒˆć‚±ć‚¢ćƒ³č«øå³¶" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "太平擋/ćƒćƒ³ćƒšć‚¤" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "ćƒćƒ³ćƒšć‚¤å³¶(ćƒćƒŠćƒšå³¶)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "太平擋/惝惊惚" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "太平擋/ćƒćƒ¼ćƒˆćƒ¢ćƒ¬ć‚¹ćƒ“ćƒ¼" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "太平擋/ćƒ©ćƒ­ćƒˆćƒ³ć‚¬å³¶" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "太平擋/ć‚µć‚¤ćƒ‘ćƒ³å³¶" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "太平擋/ć‚µćƒ¢ć‚¢å³¶" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "太平擋/ć‚æćƒ’ćƒå³¶" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "ć‚½ć‚·ć‚Øćƒ†č«øå³¶" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "太平擋/ć‚æćƒ©ćƒÆ" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "ć‚®ćƒ«ćƒćƒ¼ćƒˆč«øå³¶" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "太平擋/ćƒˆćƒ³ć‚¬ć‚æćƒ—å³¶" #: timezones.h:923 msgid "Pacific/Truk" msgstr "太平擋/ćƒˆćƒ©ćƒƒć‚Æč«øå³¶" #: timezones.h:924 msgid "Pacific/Wake" msgstr "太平擋/ć‚¦ć‚§ćƒ¼ć‚Æ" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "ć‚¦ć‚§ćƒ¼ć‚Æå³¶" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "太平擋/ć‚¦ć‚©ćƒŖć‚¹č«øå³¶" #: timezones.h:928 msgid "Pacific/Yap" msgstr "太平擋/ćƒ¤ćƒƒćƒ—å³¶" #: timezones.h:929 msgid "Poland" msgstr "ćƒćƒ¼ćƒ©ćƒ³ćƒ‰" #: timezones.h:930 msgid "Portugal" msgstr "ćƒćƒ«ćƒˆć‚¬ćƒ«" #: timezones.h:931 msgid "posixrules" msgstr "POSIX ルール" #: timezones.h:932 msgid "PRC" msgstr "äø­čÆäŗŗę°‘å…±å’Œå›½" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT (å¤ę™‚é–“ć®ćŖć„å¤Ŗå¹³ę“‹ęØ™ęŗ–ę™‚)" #: timezones.h:934 msgid "ROC" msgstr "äø­čÆę°‘å›½" #: timezones.h:935 msgid "ROK" msgstr "å¤§éŸ“ę°‘å›½" #: timezones.h:936 msgid "Singapore" msgstr "ć‚·ćƒ³ć‚¬ćƒćƒ¼ćƒ«" #: timezones.h:937 msgid "Turkey" msgstr "ćƒˆćƒ«ć‚³" #: timezones.h:938 msgid "UCT" msgstr "UCT (å”å®šäø–ē•Œę™‚)" #: timezones.h:939 msgid "Universal" msgstr "äø–ē•Œę™‚" #: timezones.h:940 msgid "US/Alaska" msgstr "米国/ć‚¢ćƒ©ć‚¹ć‚«" #: timezones.h:941 msgid "US/Aleutian" msgstr "米国/ć‚¢ćƒŖćƒ„ćƒ¼ć‚·ćƒ£ćƒ³åˆ—å³¶" #: timezones.h:942 msgid "US/Arizona" msgstr "米国/ć‚¢ćƒŖć‚¾ćƒŠ" #: timezones.h:943 msgid "US/Central" msgstr "米国/中部" #: timezones.h:944 msgid "US/Eastern" msgstr "米国/ę±éƒØ" #: timezones.h:945 msgid "US/East-Indiana" msgstr "米国/ć‚¤ćƒ³ćƒ‡ć‚£ć‚¢ćƒŠå·žę±éƒØ" #: timezones.h:946 msgid "US/Hawaii" msgstr "米国/ćƒćƒÆć‚¤" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "米国/ć‚¤ćƒ³ćƒ‡ć‚£ć‚¢ćƒŠå·žć‚¹ć‚æćƒ¼ć‚Æ" #: timezones.h:948 msgid "US/Michigan" msgstr "米国/ćƒŸć‚·ć‚¬ćƒ³" #: timezones.h:949 msgid "US/Mountain" msgstr "米国/山岳部" #: timezones.h:950 msgid "US/Pacific" msgstr "米国/太平擋" #: timezones.h:951 msgid "US/Samoa" msgstr "米国/ć‚µćƒ¢ć‚¢" #: timezones.h:952 msgid "UTC" msgstr "UTC (å”å®šäø–ē•Œę™‚)" #: timezones.h:953 msgid "WET" msgstr "č„æćƒØćƒ¼ćƒ­ćƒƒćƒ‘ę™‚é–“" #: timezones.h:954 msgid "W-SU" msgstr "ćƒ­ć‚·ć‚¢č„æéƒØ" #: timezones.h:955 msgid "Zulu" msgstr "ć‚ŗćƒ¼ćƒ«ćƒ¼" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/bs.po0000664000175000017500000016723514632072346023701 0ustar fabiofabio# translation of bs.po to Bosnian # Adnan Hodzic , 2007. # Translation of timezones to Croatian # Copyright (C) Croatian team # Translators: Dario Lah <>,Robert Sedak ,Vedran Vyroubal , msgid "" msgstr "" "Project-Id-Version: bs\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2007-01-24 18:10+0100\n" "Last-Translator: Adnan Hodzic \n" "Language-Team: Bosnian \n" "Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "X-Poedit-Language: Bosnian\n" "X-Poedit-Country: BOSNIA\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Afrika/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Afrika/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Afrika/Adis_Ababa" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Afrika/Algiers" #: timezones.h:5 #, fuzzy msgid "Africa/Asmara" msgstr "Afrika/Asmera" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Afrika/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Afrika/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Afrika/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Afrika/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Afrika/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Afrika/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Afrika/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Afrika/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Afrika/Kairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Afrika/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Afrika/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Afrika/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Afrika/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Afrika/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Afrika/Djibouti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Afrika/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Afrika/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Afrika/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Afrika/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Afrika/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Afrika/Johannesbur" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Afrika/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Afrika/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Afrika/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Afrika/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Afrika/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Afrika/Liberville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Afrika/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Afrika/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Afrika/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Afrika/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Afrika/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Afrika/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Afrika/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Afrika/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Afrika/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Afrika/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Afrika/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Afrika/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Afrika/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Afrika/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Afrika/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Afrika/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Afrika/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Afrika/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Afrika/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Afrika/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Afrika/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "Amerika/Adak" #. comment for time zone America/Adak #: timezones.h:62 #, fuzzy msgid "Aleutian Islands" msgstr "Australija/Queensland" #: timezones.h:63 msgid "America/Anchorage" msgstr "Amerika/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 #, fuzzy msgid "Alaska Time" msgstr "SAD/Aljaska" #: timezones.h:66 msgid "America/Anguilla" msgstr "Amerika/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "Amerika/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "Amerika/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Amerika/Argentina/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Amerika/Argentina/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Amerika/Argentina/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Amerika/Argentina/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Amerika/Argentina/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Amerika/Argentina/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Amerika/Argentina/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Amerika/Argentina/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 #, fuzzy msgid "America/Argentina/Salta" msgstr "Amerika/Argentina/San_Juan" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Amerika/Argentina/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 #, fuzzy msgid "America/Argentina/San_Luis" msgstr "Amerika/Argentina/San_Juan" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Amerika/Argentina/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Amerika/Argentina/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "Amerika/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "Amerika/Asuncion" #: timezones.h:110 msgid "America/Atikokan" msgstr "Amerika/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "Amerika/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "Amerika/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "Amerika/Bahia" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "Amerika/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "Amerika/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "Amerika/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "Amerika/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Amerika/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "Amerika/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "Amerika/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Amerika/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Amerika/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "Amerika/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "Amerika/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "Amerika/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "Amerika/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "Amerika/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "Amerika/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "Amerika/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "SAD/SrediÅ”nje" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Amerika/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "Amerika/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "Amerika/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Amerika/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Amerika/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "Amerika/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Amerika/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "Amerika/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Amerika/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "Amerika/Denver" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "SAD/Planine" #: timezones.h:174 msgid "America/Detroit" msgstr "Amerika/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "Amerika/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "Amerika/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "Amerika/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Amerika/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "Amerika/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Amerika/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Amerika/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Amerika/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "Amerika/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Amerika/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Amerika/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "Amerika/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Amerika/Guadaloupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "Amerika/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Amerika/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "Amerika/Guyana" #: timezones.h:207 msgid "America/Halifax" msgstr "Amerika/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "Amerika/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Amerika/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Amerika/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Amerika/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Amerika/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "Amerika/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Amerika/Indianapolis" #: timezones.h:227 #, fuzzy msgid "America/Indiana/Tell_City" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "Amerika/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 #, fuzzy msgid "America/Indiana/Winamac" msgstr "Amerika/Indiana/Vincennes" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "Amerika/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Amerika/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "Amerika/Jamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "Amerika/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "Amerika/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Amerika/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 #, fuzzy msgid "Eastern Time - Kentucky - Louisville area" msgstr "Amerika/Kentucky/Louisville" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Amerika/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Amerika/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "Amerika/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "Amerika/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Amerika/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 #, fuzzy msgid "Pacific Time" msgstr "Tihi_ocean/Niue" #: timezones.h:262 msgid "America/Louisville" msgstr "Amerika/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "Amerika/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "Amerika/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "Amerika/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 #, fuzzy msgid "America/Marigot" msgstr "Amerika/Maceio" #: timezones.h:271 msgid "America/Martinique" msgstr "Amerika/Martinique" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "Amerika/Manaus" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Amerika/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "Amerika/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "Amerika/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "Amerika/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Amerika/Mexico_City" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "Amerika/Miquelon" #: timezones.h:289 msgid "America/Moncton" msgstr "Amerika/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "Amerika/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "Amerika/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "Amerika/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "Amerika/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "Amerika/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "Amerika/New_York" #. comment for time zone America/New_York #: timezones.h:303 #, fuzzy msgid "Eastern Time" msgstr "SAD/Istočno" #: timezones.h:304 msgid "America/Nipigon" msgstr "Amerika/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "Amerika/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "Amerika/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 #, fuzzy msgid "Atlantic islands" msgstr "Atlantik/Kanari" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Amerika/Sjeverna_Dakota/Center" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "Amerika/Sjeverna_Dakota/New_Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "Amerika/Managua" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "Amerika/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Amerika/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Amerika/Paramari" #: timezones.h:327 msgid "America/Phoenix" msgstr "Amerika/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Amerika/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Amerika/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Amerika/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Amerika/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Amerika/Puerto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Amerika/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Amerika/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "Amerika/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "Amerika/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 #, fuzzy msgid "America/Resolute" msgstr "Amerika/Belem" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Amerika/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "Amerika/Rosario" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "Amerika/Santiago" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 #, fuzzy msgid "America/Santarem" msgstr "Amerika/Santiago" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "Amerika/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Amerika/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Amerika/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Amerika/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "Amerika/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 #, fuzzy msgid "America/St_Barthelemy" msgstr "Amerika/Belem" #: timezones.h:376 msgid "America/St_Johns" msgstr "Amerika/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Amerika/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Amerika/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Amerika/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Amerika/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Amerika/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Amerika/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "Amerika/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Amerika/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "Amerika/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "Amerika/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "Amerika/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "Amerika/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "Amerika/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Amerika/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Amerika/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "Amerika/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Amerika/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Antarktika/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Antarktika/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Antarktika/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "Antarktika/McMurdo" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Antarktika/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Antarktika/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Antarktika/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Antarktika/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antarktika/South_Pole" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Antarktika/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Antarktika/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Arktik/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Azija/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Azija/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Azija/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Azija/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Azija/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Azija/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Azija/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Azija/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Azija/Bagdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Azija/Bahrain" #: timezones.h:468 msgid "Asia/Baku" msgstr "Azija/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Azija/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Azija/Bejrut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Azija/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Azija/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Azija/Kalkuta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Azija/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Azija/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "Azija/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Azija/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Azija/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Azija/Damascus" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Azija/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Azija/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Azija/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Azija/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Azija/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Azija/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 #, fuzzy msgid "Asia/Ho_Chi_Minh" msgstr "Azija/Chongqing" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Azija/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Azija/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Azija/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Azija/Istanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Azija/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Azija/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Azija/Jeruzalem" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Azija/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Azija/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Azija/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Azija/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 #, fuzzy msgid "Asia/Kathmandu" msgstr "Azija/Katmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Azija/Katmandu" #: timezones.h:518 #, fuzzy msgid "Asia/Kolkata" msgstr "Azija/Jakarta" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Azija/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Azija/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Azija/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Azija/Kuvajt" #: timezones.h:529 msgid "Asia/Macao" msgstr "Azija/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Azija/Macau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Azija/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Azija/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "Azija/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Azija/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Azija/Nicosia" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "Azija/Irkutsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "Azija/Novosibirsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Azija/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 #, fuzzy msgid "Moscow+03 - Novosibirsk" msgstr "Azija/Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Azija/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "Azija/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Azija/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Azija/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Azija/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Azija/Qatar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Azija/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Azija/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Azija/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Azija/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Azija/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Azija/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Azija/Saigon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Azija/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Azija/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Azija/Seul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Azija/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "Azija/Singapore" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Azija/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Azija/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Azija/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Azija/Tehran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Azija/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Azija/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Azija/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Azija/Tokyo" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Azija/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Azija/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Azija/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Azija/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Azija/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Azija/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Azija/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Azija/Yekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Azija/Yerevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlantik/Azores" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlantik/Bermuda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlantik/Kanari" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlantik/Cape_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlantik/Faeroe" #: timezones.h:616 #, fuzzy msgid "Atlantic/Faroe" msgstr "Atlantik/Faeroe" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlantik/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlantik/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlantik/Reykjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlantik/South_Georgia" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlantik/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlantik/Sv._Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "Australija/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Australija/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 #, fuzzy msgid "South Australia" msgstr "Australija/ACT" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Australija/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Australija/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Australija/Canberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "Australija/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Australija/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 #, fuzzy msgid "Australia/Eucla" msgstr "Australija/Queensland" #. comment for time zone Australia/Eucla #: timezones.h:644 #, fuzzy msgid "Western Australia - Eucla area" msgstr "Australija/Queensland" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Australija/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "Australija/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Australija/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Australija/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Australija/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 #, fuzzy msgid "Victoria" msgstr "Australija/Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "Australija/Sjever" #: timezones.h:659 msgid "Australia/NSW" msgstr "Australija/New South Wels" #: timezones.h:660 msgid "Australia/Perth" msgstr "Australija/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Australija/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "Australija/Jug" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Australija/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Australija/Tasmania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Australija/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "Australija/Zapad" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Australija/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brazil/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brazil/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brazil/Istok" #: timezones.h:675 msgid "Brazil/West" msgstr "Brazil/Zapad" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Kanada/Atlantik" #: timezones.h:677 msgid "Canada/Central" msgstr "Kanada/SrediÅ”nje" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Kanada/Istočna" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Kanada/Istok-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Kanada/Planine" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Kanada/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Kanada/Tihi_ocean" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Kanada/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Kanada/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Čile/Kontinentalno" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Čile/Istočni otoci" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Kuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Egipat" #: timezones.h:692 msgid "Eire" msgstr "Irska" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Ostalo/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Ostalo/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Ostalo/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Ostalo/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Ostalo/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Ostalo/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Ostalo/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Ostalo/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Ostalo/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Ostalo/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Ostalo/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Ostalo/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Ostalo/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Ostalo/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Ostalo/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Ostalo/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Ostalo/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Ostalo/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Ostalo/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Ostalo/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Ostalo/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Ostalo/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Ostalo/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Ostalo/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Ostalo/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Ostalo/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Ostalo/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Ostalo/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Ostalo/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Ostalo/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Ostalo/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Ostalo/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Ostalo/Univerzalno" #: timezones.h:728 msgid "Etc/UTC" msgstr "Ostalo/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Ostalo/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Europa/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Europa/Andora" #: timezones.h:732 msgid "Europe/Athens" msgstr "Europa/Atena" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Europa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Europa/Beograd" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Europa/Berlin" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Europa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Europa/Bruxelles" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Europa/BukureÅ”t" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Europa/BudimpeÅ”ta" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Europa/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Europa/Kopenhagen" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Europa/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Europa/Gibraltar" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Europa/Guernsey" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Europa/Helsinki" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Europa/Isle_of_Man" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Europa/Istanbul" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Europa/Jersey" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Europa/Kalinjingrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Europa/Kijev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Europa/Lisabon" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Europa/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Europa/London" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Europa/Luxemburg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Europa/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Europa/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Europa/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Europa/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Europa/Monaco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Europa/Moskva" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Europa/Nikozija" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Europa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Europa/Pariz" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Europa/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Europa/Prag" #: timezones.h:776 msgid "Europe/Riga" msgstr "Europa/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Europa/Rim" #: timezones.h:778 msgid "Europe/Samara" msgstr "Europa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Europa/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Europa/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Europa/Sevastopolj" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Europa/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Europa/Sofija" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Europa/Stockholm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Europa/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Europa/Tirana" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Europa/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Europa/Užgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Europa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Europa/Vatikan" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Europa/Beč" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Europa/Vilnius" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Europa/Volgograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Europa/VarÅ”ava" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Europa/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Europa/Zaporožje" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Europa/Zurich" #: timezones.h:808 msgid "Factory" msgstr "Izvorno" #: timezones.h:809 msgid "GB" msgstr "VB" #: timezones.h:810 msgid "GB-Eire" msgstr "VB-Irska" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hong_Kong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Island" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Indijski_ocean/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Indijski_ocean/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Indijski_ocean/Božićni_otoci" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Indijski_ocean/Kokosovi otoci" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Indijski_ocean/Komoro otoci" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Indijski_ocean/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Indijski_ocean/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Indijski_ocean/Maldivi" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Indijski_ocean/Mauricijus" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Indijski_ocean/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Indijski_ocean/Reunion" #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "Izrael" #: timezones.h:833 msgid "Jamaica" msgstr "Jamajka" #: timezones.h:834 msgid "Japan" msgstr "Japan" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libija" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Meksiko/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Meksiko/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Meksiko/General" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Srednji Istok/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Srednji Istok/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Srednji Istok/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Tihi_ocean/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Tihi_ocean/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Tihi_ocean/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 #, fuzzy msgid "Chatham Islands" msgstr "Čile/Istočni otoci" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "Tihi_ocean/Truk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 #, fuzzy msgid "Pacific/Easter" msgstr "Tihi_ocean/Easter" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Tihi_ocean/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Tihi_ocean/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Tihi_ocean/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Tihi_ocean/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Tihi_ocean/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Tihi_ocean/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Tihi_ocean/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Tihi_ocean/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Tihi_ocean/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Tihi_ocean/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 #, fuzzy msgid "Hawaii" msgstr "SAD/Havaji" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Tihi_ocean/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Tihi_ocean/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Tihi_ocean/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 #, fuzzy msgid "Kosrae" msgstr "Izrael" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Tihi_ocean/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Tihi_ocean/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Tihi_ocean/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Tihi_ocean/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Tihi_ocean/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Tihi_ocean/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Tihi_ocean/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Tihi_ocean/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Tihi_ocean/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Tihi_ocean/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Tihi_ocean/Pitcairn" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "Tihi_ocean/Ponape" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Tihi_ocean/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Tihi_ocean/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Tihi_ocean/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Tihi_ocean/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Tihi_ocean/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Tihi_ocean/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Tihi_ocean/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 #, fuzzy msgid "Gilbert Islands" msgstr "Čile/Istočni otoci" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Tihi_ocean/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Tihi_ocean/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Tihi_ocean/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Tihi_ocean/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Tihi_ocean/Yap" #: timezones.h:929 msgid "Poland" msgstr "Poljska" #: timezones.h:930 msgid "Portugal" msgstr "Portugal" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "NR Kina" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "Republika Kina" #: timezones.h:935 msgid "ROK" msgstr "Republika Koreja" #: timezones.h:936 msgid "Singapore" msgstr "Singapur" #: timezones.h:937 msgid "Turkey" msgstr "Turska" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Univerzalno" #: timezones.h:940 msgid "US/Alaska" msgstr "SAD/Aljaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "SAD/Aleuti" #: timezones.h:942 msgid "US/Arizona" msgstr "SAD/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "SAD/SrediÅ”nje" #: timezones.h:944 msgid "US/Eastern" msgstr "SAD/Istočno" #: timezones.h:945 msgid "US/East-Indiana" msgstr "SAD/Istok-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "SAD/Havaji" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "SAD/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "SAD/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "SAD/Planine" #: timezones.h:950 msgid "US/Pacific" msgstr "SAD/Tihi_ocean" #: timezones.h:951 msgid "US/Samoa" msgstr "SAD/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" #~ msgid "US/Pacific-New" #~ msgstr "SAD/Tihi_ocean-Novo" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/ko.po0000664000175000017500000022646214632072346023704 0ustar fabiofabio# translation of system-config-date.master-timezones.ko.po to # Michelle J Kim , 2004. # Michelle Ji Yeen Kim , 2006. # Eunju Kim , 2006, 2008, 2009. # Hyunsok Oh, 2010. # Eun-Ju Kim , 2010. msgid "" msgstr "" "Project-Id-Version: system-config-date.master-timezones.ko\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-12-07 15:24+1000\n" "Last-Translator: Eun-Ju Kim \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ko\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=1; plural=0;\n" "\n" "\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "아프리칓/ģ•„ė¹„ģž„(Abidjan)" #: timezones.h:2 msgid "Africa/Accra" msgstr "아프리칓/ģ•„ķ¬ė¼(Accra)" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "아프리칓/ģ•„ė””ģŠ¤_아바바(Addis_Ababa)" #: timezones.h:4 msgid "Africa/Algiers" msgstr "아프리칓/ģ•Œģ œ(Algiers)" #: timezones.h:5 msgid "Africa/Asmara" msgstr "아프리칓/ģ•„ģŠ¤ė§ˆė¼(Asmara)" #: timezones.h:6 msgid "Africa/Asmera" msgstr "아프리칓/ģ•„ģŠ¤ė§ˆė¼(Asmera)" #: timezones.h:7 msgid "Africa/Bamako" msgstr "아프리칓/ė°”ė§ˆģ½”(Bamako)" #: timezones.h:8 msgid "Africa/Bangui" msgstr "아프리칓/ė°©źø°(Bangui)" #: timezones.h:9 msgid "Africa/Banjul" msgstr "아프리칓/ė°˜ģ¤„(Banjul)" #: timezones.h:10 msgid "Africa/Bissau" msgstr "아프리칓/ė¹„ģ†Œ(Bissau)" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "아프리칓/ė³¼ėž‘ė ė ˆ(Blantyre)" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "아프리칓/ėøŒė¼ģžė¹Œ(Brazzaville)" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "아프리칓/ė¶€ģ¤Œė¶€ė¼(Bujumbura)" #: timezones.h:14 msgid "Africa/Cairo" msgstr "아프리칓/ģ¹“ģ“ė”œ(Cairo)" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "아프리칓/ģ¹“ģ‚¬ėø”ėž‘ģ¹“(Casablanca)" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "아프리칓/ģ„øģš°ķƒ€(Ceuta)" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "ģ„øģš°ķƒ€(Ceuta) & ė©œė¦¬ģ•¼ (Melilla) " #: timezones.h:19 msgid "Africa/Conakry" msgstr "아프리칓/ģ½”ė‚˜ķ¬ė¦¬(Conakry)" #: timezones.h:20 msgid "Africa/Dakar" msgstr "아프리칓/다칓넓(Dakar)" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "아프리칓/다넓_ģ—ģŠ¤_ģ‚“ėžŒ(Dar_es_Salaam)" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "아프리칓/지부티(Djibouti)" #: timezones.h:23 msgid "Africa/Douala" msgstr "아프리칓/ė‘ģ•Œė¼(Douala)" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "아프리칓/ģ—˜_ģ•„ģ“ģš“(El_Aaiun)" #: timezones.h:25 msgid "Africa/Freetown" msgstr "아프리칓/ķ”„ė¦¬ķƒ€ģš“(Freetown)" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "아프리칓/ź°€ė³“ė”œė„¤(Gaborone)" #: timezones.h:27 msgid "Africa/Harare" msgstr "아프리칓/ķ•˜ė¼ė ˆ(Harare)" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "아프리칓/ģš”ķ•˜ė„¤ģŠ¤ė²„ź·ø(Johannesburg)" #: timezones.h:29 msgid "Africa/Kampala" msgstr "아프리칓/ģŗ„ķŒ”ė¼(Kampala)" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "아프리칓/칓넓툼(Khartoum)" #: timezones.h:31 msgid "Africa/Kigali" msgstr "아프리칓/ķ‚¤ź°ˆė¦¬(Kigali)" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "아프리칓/ķ‚Øģƒ¤ģ‚¬(Kinshasa)" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "콩고 민주 공화국 ģ„œė¶€ " #: timezones.h:35 msgid "Africa/Lagos" msgstr "아프리칓/ė¼ź³ ģŠ¤(Lagos)" #: timezones.h:36 msgid "Africa/Libreville" msgstr "아프리칓/리브넓빌(Libreville)" #: timezones.h:37 msgid "Africa/Lome" msgstr "아프리칓/ė”œė©”(Lome)" #: timezones.h:38 msgid "Africa/Luanda" msgstr "아프리칓/ė£Øģ•ˆė‹¤(Luanda)" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "아프리칓/ė£Øė¶ė°”ģ‹œ(Lubumbashi)" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "콩고 민주 공화국 ė™ė¶€ " #: timezones.h:42 msgid "Africa/Lusaka" msgstr "아프리칓/루사칓(Lusaka)" #: timezones.h:43 msgid "Africa/Malabo" msgstr "아프리칓/ė§ė¼ė³“(Malabo)" #: timezones.h:44 msgid "Africa/Maputo" msgstr "아프리칓/ė§ˆķ‘øķ† (Maputo)" #: timezones.h:45 msgid "Africa/Maseru" msgstr "아프리칓/ė§ˆģ„øė£Ø(Maseru)" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "아프리칓/ģŒė°”ė°”ė„¤(Mbabane)" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "아프리칓/ėŖØź°€ė””ģŠˆ(Mogadishu)" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "아프리칓/ėØ¼ė”œė¹„ģ•„(Monrovia)" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "아프리칓/ė‚˜ģ“ė”œė¹„(Nairobi)" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "아프리칓/ģ€ģžė©”ė‚˜(Ndjamena)" #: timezones.h:51 msgid "Africa/Niamey" msgstr "아프리칓/ė‹ˆģ•„ė©”ģ“(Niamey)" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "아프리칓/ėˆ„ģ•…ģ‡¼ķŠø(Nouakchott)" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "아프리칓/와가두구(Ouagadougou)" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "아프리칓/ķ¬ė„“ķ† -노볓(Porto-Novo)" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "아프리칓/상_토메(Sao_Tome)" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "아프리칓/ķŒ€ė¶ķˆ¬(Timbuktu)" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "아프리칓/ķŠøė¦¬ķ“ė¦¬(Tripoli)" #: timezones.h:58 msgid "Africa/Tunis" msgstr "아프리칓/ķŠ€ė‹ˆģŠ¤(Tunis)" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "아프리칓/ė¹ˆķŠøķ›„ķ¬(Windhoek)" #: timezones.h:60 msgid "America/Adak" msgstr "아메리칓/ģ—ģ“ė‹„(Adak)" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "ģ•Œė„˜ģƒØ ģ—“ė„ (Aleutian Islands) " #: timezones.h:63 msgid "America/Anchorage" msgstr "아메리칓/앵커리지(Anchorage)" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "ģ•Œėž˜ģŠ¤ģ¹“ ķ‘œģ¤€ģ‹œ " #: timezones.h:66 msgid "America/Anguilla" msgstr "아메리칓/ģ•™ź·ˆė¼(Anguilla)" #: timezones.h:67 msgid "America/Antigua" msgstr "아메리칓/ģ•ˆķ‹°źµ¬ģ•„(Antigua)" #: timezones.h:68 msgid "America/Araguaina" msgstr "아메리칓/ģ•„ė¼źµ¬ģ—ģ“ė‚˜(Araguaina)" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "ķ† ģ¹øķ‹“ģŠ¤ (Tocantins) " #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "아메리칓/ģ•„ė„“ķ—Øķ‹°ė‚˜/ė¶€ģ—ė…øģŠ¤_ģ•„ģ“ė ˆģŠ¤(Buenos_Aires)" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "ė¶€ģ—ė…øģŠ¤ ģ•„ģ“ė ˆģŠ¤ (BA, CF) " #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "아메리칓/ģ•„ė„“ķ—Øķ‹°ė‚˜/ģ¹“ķƒ€ė§ˆė„“ģ¹“(Catamarca)" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "ģ¹“ķƒ€ė§ˆė„“ģ¹“ (CT), ģ¶”ė¶€ķŠø (CH) " #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "아메리칓/ģ•„ė„“ķ—Øķ‹°ė‚˜/ģ½”ėŖØė“œė¦¬ė°”ė‹¤ė¹„ģ•„(ComodRivadavia)" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "아메리칓/ģ•„ė„“ķ—Øķ‹°ė‚˜/ģ½”ė„“ė„ė°”(Cordoba)" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "ėŒ€ė¶€ė¶„ģ˜ 지역 (CB, CC, CN, ER, FM, MN, SE, SF) " #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "아메리칓/아넸헨티/ķ›„ķ›„ģ“(Jujuy)" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "ķ›„ķ›„ģ“ (JY) " #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "아메리칓/ģ•„ė„“ķ—Øķ‹°ė‚˜/ė¦¬ģ˜¤ķ•˜(La_Rioja)" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "ė¦¬ģ˜¤ķ•˜ (LR) " #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "아메리칓/ģ•„ė„“ķ—Øķ‹°ė‚˜/ė©˜ė„ģ‚¬(Mendoza)" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "ė©˜ė„ģ‚¬ (MZ) " #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "아메리칓/ģ•„ė„“ķ—Øķ‹°ė‚˜/리오 ź°€ģ˜ˆź³ ģŠ¤(Rio_Gallegos)" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "ģ‚°ķƒ€ģæ ė„“ģ¦ˆ (SC) " #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "아메리칓/ģ•„ė„“ķ—Øķ‹°ė‚˜/ģ‚“ķƒ€ " #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "아메리칓/ģ•„ė„“ķ—Øķ‹°ė‚˜/ģ‚°ķ›„ģ•ˆ(San_Juan)" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "ģ‚°ķ›„ģ•ˆ (SJ) " #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "아메리칓/ģ•„ė„“ķ—Øķ‹°ė‚˜/ģ‚°_ė£Øģ“ģŠ¤ " #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "ģ‚°ė£Øģ“ģŠ¤ (SL) " #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "아메리칓/ģ•„ė„“ķ—Øķ‹°ė‚˜/투쿠만(Tucuman)" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "투쿠만 (TM) " #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "아메리칓/ģ•„ė„“ķ—Øķ‹°ė‚˜/ģš°ģˆ˜ģ•„ģ“ģ•„(Ushaia)" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "ķ‹°ģ—ė¼ėøķ‘øģ—ź³  (TF) " #: timezones.h:108 msgid "America/Aruba" msgstr "아메리칓/아루바(Aruba)" #: timezones.h:109 msgid "America/Asuncion" msgstr "아메리칓/ģ•„ģˆœģ‹œģ˜Ø(Asuncion)" #: timezones.h:110 msgid "America/Atikokan" msgstr "아메리칓/아티코칸(Atikokan)" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "ė™ė¶€ ķ‘œģ¤€ģ‹œ - 아티코칸, ģ˜Øķƒ€ė¦¬ģ˜¤ ė° ģ‚¬ģš°ģƒ˜ķ”„ķ†¤, ėˆ„ė‚˜ė¶€ķŠø " #: timezones.h:113 msgid "America/Atka" msgstr "아메리칓/ģ•„ķŠøģ¹“(Atka)" #: timezones.h:114 msgid "America/Bahia" msgstr "아메리칓/ė°”ģ“ģ•„(Bahia) " #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "ė°”ģ“ģ•„(Bahia) " #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "아메리칓/ė°”ģ“ģ•„ ė°˜ė°ė¼ģŠ¤(Bahia_Banderas) " #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "ė©•ģ‹œģ½” 중부 ķ‘œģ¤€ģ‹œ - ė°”ģ“ģ•„ ė° ė°˜ė°ė¼ģŠ¤ " #: timezones.h:120 msgid "America/Barbados" msgstr "아메리칓/ė°”ė² ģ“ė„ģŠ¤(Barbados)" #: timezones.h:121 msgid "America/Belem" msgstr "아메리칓/벨렘(Belem)" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "ģ•„ė§ˆķŒŒ (Amapa) ķŒŒė¼ ė™ė¶€ (E Para) " #: timezones.h:124 msgid "America/Belize" msgstr "아메리칓/벨리즈(Belize)" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "아메리칓/ėø”ėž‘-ģ‚¬ėøŒė” (Blanc-Sablon)" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "ėŒ€ģ„œģ–‘ ķ‘œģ¤€ģ‹œ - ķ€˜ė²” - ė…øģŠ¤ 쇼얓 ķ•˜ė‹Ø " #: timezones.h:128 msgid "America/Boa_Vista" msgstr "아메리칓/볓아_ė¹„ģŠ¤ķƒ€(Boa_Vista)" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "ė”œė¼ģ“ė§ˆ (Roraima) " #: timezones.h:131 msgid "America/Bogota" msgstr "아메리칓/ė³“ź³ ķƒ€(Bogota)" #: timezones.h:132 msgid "America/Boise" msgstr "아메리칓/ė³“ģ“ģŠ¤(Boise)" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "ģ‚°ģ§€ ķ‘œģ¤€ģ‹œ - ģ•„ģ“ė‹¤ķ˜ø 남부 & 오레곤 ė™ė¶€ " #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "아메리칓/ė¶€ģ—ė…øģŠ¤_ģ•„ģ“ė ˆģŠ¤(Buenos_Aires)" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "아메리칓/ģŗ ėøŒė¦¬ģ§€_ė² ģ“(Cambridge_Bay)" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "ģ‚°ģ§€ ķ‘œģ¤€ģ‹œ - ėˆ„ė‚˜ė¶€ķŠø ģ„œė¶€ (west Nunavut) " #: timezones.h:139 msgid "America/Campo_Grande" msgstr "아메리칓/ģŗ„ķ‘øź·øėž€ė°(Campo_Grande)" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "ė§ˆķˆ¬ź·øė”œģŠ¤ė“œģ†” (Mato Grosso do Sul) " #: timezones.h:142 msgid "America/Cancun" msgstr "아메리칓/칸쿤(Cancun)" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "중부 ķ‘œģ¤€ģ‹œ - ķ€€ķƒ€ė‚˜ 루 (Quintana Roo)" #: timezones.h:145 msgid "America/Caracas" msgstr "아메리칓/ģ¹“ė¼ģ¹“ģŠ¤(Caracas)" #: timezones.h:146 msgid "America/Catamarca" msgstr "아메리칓/ģ¹“ķƒ€ė§ˆė„“ģ¹“(Catamarca)" #: timezones.h:147 msgid "America/Cayenne" msgstr "아메리칓/ģ¹“ģ“ģ—”(Cayenne)" #: timezones.h:148 msgid "America/Cayman" msgstr "아메리칓/ģ¹“ģ“ė§Œ(Cayman)" #: timezones.h:149 msgid "America/Chicago" msgstr "아메리칓/ģ‹œģ¹“ź³ (Chicago)" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "중부 ķ‘œģ¤€ģ‹œ " #: timezones.h:152 msgid "America/Chihuahua" msgstr "아메리칓/ģ¹˜ģ™€ģ™€(Chihuahua)" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "ė©•ģ‹œģ½” ģ‚°ģ§€ ķ‘œģ¤€ģ‹œ - 미국 źµ­ź²½ģ—ģ„œ 먼 ģ¹˜ģ™€ģ™€ (Chihuahua) " #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "아메리칓/ģ½”ėŸ“ķ•˜ė²„(Coral_Harbour)" #: timezones.h:156 msgid "America/Cordoba" msgstr "아메리칓/ģ½”ė„“ė„ė°”(Cordoba)" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "아메리칓/ģ½”ģŠ¤ķƒ€_리칓(Costa_Rica)" #: timezones.h:158 msgid "America/Cuiaba" msgstr "아메리칓/ģæ ģ“ģ•„ė°”(Cuiaba)" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "ė§ˆķ†  ź·øė”œģ†Œ (Mato Grosso) " #: timezones.h:161 msgid "America/Curacao" msgstr "아메리칓/ģæ ė¼ģ¹“ģ˜¤(Curacao)" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "아메리칓/ė‹Øė§ˆķ¬ģƒ¤ėø(Danmarkshavn)" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "ė™ė¶€ ķ•“ģ•ˆ, ģŠ¤ģ½”ģŠ¤ė°”ģ“ģ„ ė“œ 북부 " #: timezones.h:165 msgid "America/Dawson" msgstr "아메리칓/ė„ģŠØ(Dawson)" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "ķƒœķ‰ģ–‘ ķ‘œģ¤€ģ‹œ - 유콘 북부 (north Yukon) " #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "아메리칓/ė„ģŠØ_크릭(Dawson_Creek)" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "ģ‚°ģ§€ ķ‘œģ¤€ģ‹œ - ė„ģŠØ 크릭 & ģ„±ģš”ķ•œ ģš”ģƒˆ (Fort Saint John), ėøŒė¦¬ķ‹°ģ‹œ ģ½œėŸ¼ė¹„ģ•„ " #: timezones.h:171 msgid "America/Denver" msgstr "아메리칓/ė“ė²„(Denver)" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "ģ‚°ģ§€ ķ‘œģ¤€ģ‹œ " #: timezones.h:174 msgid "America/Detroit" msgstr "아메리칓/ė””ķŠøė”œģ“ķŠø(Detroit)" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "ė™ė¶€ ķ‘œģ¤€ģ‹œ - ėÆøģ‹œź°„ - ėŒ€ė¶€ė¶„ģ˜ 지역 " #: timezones.h:177 msgid "America/Dominica" msgstr "아메리칓/ė„ėÆøė‹ˆģ¹“(Dominica)" #: timezones.h:178 msgid "America/Edmonton" msgstr "아메리칓/ģ—ė“œėŖ¬ķ†¤(Edmonton)" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "ģ‚°ģ§€ ķ‘œģ¤€ģ‹œ - ģ•Øė²„ķƒ€, ėøŒė¦¬ķ‹°ģ‹œ ģ½œėŸ¼ė¹„ģ•„ ė™ė¶€ & ģ‚¬ģŠ¤ģ¼€ģ¶”ģ•ˆ ģ„œė¶€ " #: timezones.h:181 msgid "America/Eirunepe" msgstr "아메리칓/ģ—ģ“ė£Øė„¤ķ”„(Eirunepe)" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "ģ•„ė§ˆģ”“ ģ„œė¶€ (W Amazonas) " #: timezones.h:184 msgid "America/El_Salvador" msgstr "아메리칓/ģ—˜_ģ‚“ė°”ė„ė„“(El_Salvador)" #: timezones.h:185 msgid "America/Ensenada" msgstr "아메리칓/ģ—”ģ„øė‚˜ė‹¤(Ensenada)" #: timezones.h:186 msgid "America/Fortaleza" msgstr "아메리칓/ķ¬ė„“ķƒˆė ˆģž(Fortaleza)" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "ėøŒė¼ģ§ˆ ė¶ė™ė¶€ (MA, PI, CE, RN, PB) " #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "아메리칓/ķ¬ė„“ķŠø_ģ›Øģø(Fort_Wayne)" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "아메리칓/źø€ė ˆģ“ģŠ¤_ė² ģ“(Glace_Bay)" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "ėŒ€ģ„œģ–‘ ķ‘œģ¤€ģ‹œ - ė…øė°”ģŠ¤ģ½”ģƒ¤ - 1966-1971년에 DST넼 ģ‹¤ģ‹œķ•˜ģ§€ ģ•Šģ€ 지역 " #: timezones.h:193 msgid "America/Godthab" msgstr "아메리칓/ź³ ė“œķ™‰(Godthab)" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "ėŒ€ė¶€ė¶„ģ˜ 지역 " #: timezones.h:196 msgid "America/Goose_Bay" msgstr "아메리칓/구스_ė² ģ“(Goose_Bay)" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "ėŒ€ģ„œģ–‘ ķ‘œģ¤€ģ‹œ - ėž˜ėøŒė¼ė„ - ėŒ€ė¶€ė¶„ģ˜ 지역 " #: timezones.h:199 msgid "America/Grand_Turk" msgstr "아메리칓/ź·øėžœė“œ_터크(Grand_Turk)" #: timezones.h:200 msgid "America/Grenada" msgstr "아메리칓/ź·øė ˆė‚˜ė‹¤(Grenada)" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "아메리칓/ź³¼ėøė£Øķ”„(Guadeloupe)" #: timezones.h:202 msgid "America/Guatemala" msgstr "아메리칓/ź³¼ķ…Œė§ė¼(Guatemala)" #: timezones.h:203 msgid "America/Guayaquil" msgstr "아메리칓/과야킬(Guayaquil)" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "본토 " #: timezones.h:206 msgid "America/Guyana" msgstr "아메리칓/ź°€ģ“ģ•„ė‚˜(Guyana)" #: timezones.h:207 msgid "America/Halifax" msgstr "아메리칓/ķ—¬ė¦¬ķŒ©ģŠ¤(Halifax)" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "ėŒ€ģ„œģ–‘ ķ‘œģ¤€ģ‹œ - ė…øė°”ģŠ¤ģ½”ģƒ¤ (ėŒ€ė¶€ė¶„ģ˜ 지역), PEI " #: timezones.h:210 msgid "America/Havana" msgstr "아메리칓/ģ•„ė°”ė‚˜(Havana)" #: timezones.h:211 msgid "America/Hermosillo" msgstr "아메리칓/ģ—ė„“ėŖØģ‹œģš”(Hermosillo)" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "ģ‚°ģ§€ ķ‘œģ¤€ģ‹œ - ģ†Œė…øė¼ (Sonora) " #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "아메리칓/ģøė””ģ• ė‚˜/ģøė””ģ• ė‚˜ķ“ė¦¬ģŠ¤(Indianapolis)" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "ė™ė¶€ ķ‘œģ¤€ģ‹œ - ģøė””ģ• ė‚˜ - ėŒ€ė¶€ė¶„ģ˜ 지역 " #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "아메리칓/ģøė””ģ• ė‚˜/ė…¹ģŠ¤(Knox)" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "중부 ķ‘œģ¤€ģ‹œ - ģøė””ģ• ė‚˜ - ģŠ¤ķƒ€ķ¬ ģ¹“ģš“ķ‹° " #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "아메리칓/ģøė””ģ• ė‚˜/ė§ˆė ź³ (Marengo)" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "ė™ė¶€ ķ‘œģ¤€ģ‹œ - ģøė””ģ• ė‚˜ - ķ¬ė”œķ¼ė“œ ģ¹“ģš“ķ‹° " #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "아메리칓/ģøė””ģ• ė‚˜/ķŽ˜ķ…Œė„“ģŠ¤ė¶€ė„“ź·ø(Petersburg)" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "ė™ė¶€ ķ‘œģ¤€ģ‹œ - ģøė””ģ• ė‚˜ - ķŒŒģ“ķ¬ ģ¹“ģš“ķ‹° " #: timezones.h:226 msgid "America/Indianapolis" msgstr "아메리칓/ģøė””ģ• ė‚˜ķ“ė¦¬ģŠ¤(Indianapolis)" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "아메리칓/ģøė””ģ• ė‚˜/ķ…”_ģ‹œķ‹°(Tell_City) " #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "중부 ķ‘œģ¤€ģ‹œ - ģøė””ģ• ė‚˜ - ķŽ˜ė¦¬ ģ¹“ģš“ķ‹° " #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "아메리칓/ģøė””ģ• ė‚˜/ė² ė² ģ“(Vevay)" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "ė™ė¶€ ķ‘œģ¤€ģ‹œ - ģøė””ģ• ė‚˜ - ģŠ¤ģœ„ģŠ¤ ģ¹“ģš“ķ‹° " #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "아메리칓/ģøė””ģ• ė‚˜/ė¹ˆģ„¼ėŠ(Vincennes)" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "ė™ė¶€ ķ‘œģ¤€ģ‹œ - ģøė””ģ• ė‚˜ - ė°ģ“ė¹„ģŠ¤, ė“€ė³“ģ“ģŠ¤, ė…¹ģŠ¤ & ė§ˆķ‹“ ģ¹“ģš“ķ‹° " #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "아메리칓/ģøė””ģ• ė‚˜/ģ›Œė„ˆė§„(Winamac)" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "ė™ė¶€ ķ‘œģ¤€ģ‹œ - ģøė””ģ• ė‚˜ - ķ“ė¼ģŠ¤ķ‚¤ ģ¹“ģš“ķ‹° " #: timezones.h:239 msgid "America/Inuvik" msgstr "아메리칓/ģ“ėˆ„ė¹…(Inuvik)" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "ģ‚°ģ§€ ķ‘œģ¤€ģ‹œ - ė…øģŠ¤ģ›ØģŠ¤ķŠø ķ…Œė¦¬ķ† ė¦¬ ģ„œė¶€ (west Northwest Territories) " #: timezones.h:242 msgid "America/Iqaluit" msgstr "아메리칓/ģ“ģ¹¼ė£Øģ“ķŠø(Iqaluit)" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "ė™ė¶€ ķ‘œģ¤€ģ‹œ - ėˆ„ė‚˜ė¶€ķŠø ė™ė¶€ - ėŒ€ė¶€ė¶„ģ˜ 지역 " #: timezones.h:245 msgid "America/Jamaica" msgstr "아메리칓/ģžė§ˆģ“ģ¹“(Jamaica)" #: timezones.h:246 msgid "America/Jujuy" msgstr "아메리칓/ķ›„ķ›„ģ“(Jujuy)" #: timezones.h:247 msgid "America/Juneau" msgstr "아메리칓/주노(Juneau)" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "ģ•Œėž˜ģŠ¤ģ¹“ ķ‘œģ¤€ģ‹œ - ģ•Œėž˜ģŠ¤ģ¹“ ķŒ¬ķ•øė“¤ (Alaska panhandle) " #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "아메리칓/켄터키/ė£Øģ“ģŠ¤ė¹Œ(Louisville)" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "ė™ė¶€ ķ‘œģ¤€ģ‹œ - 켄터키 - ė£Øģ“ģŠ¤ė¹Œ 지역 " #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "아메리칓/켄터키/ėŖ¬ķ‹°ģ²¼ė”œ(Monticello)" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "ė™ė¶€ ķ‘œģ¤€ģ‹œ - 켄터키 - ģ›Øģø ģ¹“ģš“ķ‹° " #: timezones.h:256 msgid "America/Knox_IN" msgstr "아메리칓/ė…¹ģŠ¤_ģø(Knox_IN)" #: timezones.h:257 msgid "America/La_Paz" msgstr "아메리칓/ė¼_파스(La_Paz)" #: timezones.h:258 msgid "America/Lima" msgstr "아메리칓/리마(Lima)" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "아메리칓/딜스_ģ—”ģ ¤ė ˆģŠ¤(Los_Angeles)" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "ķƒœķ‰ģ–‘ ķ‘œģ¤€ģ‹œ " #: timezones.h:262 msgid "America/Louisville" msgstr "아메리칓/ė£Øģ“ģŠ¤ė¹Œ(Louisville)" #: timezones.h:263 msgid "America/Maceio" msgstr "아메리칓/ė§ˆģ„øģ“ģ˜¤(Maceio)" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "ģ•Œė¼ź³ ģ•„ģŠ¤(Alagoas), ģ„øė„“ģ§€ķŽ˜ (Sergipe) " #: timezones.h:266 msgid "America/Managua" msgstr "아메리칓/ė§ˆė‚˜źµ¬ģ•„(Managua)" #: timezones.h:267 msgid "America/Manaus" msgstr "아메리칓/ė§ˆė‚˜ģš°ģŠ¤(Manaus)" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "ģ•„ė§ˆģ”“ ė™ė¶€ " #: timezones.h:270 msgid "America/Marigot" msgstr "아메리칓/마리곳(Marigot)" #: timezones.h:271 msgid "America/Martinique" msgstr "아메리칓/ė§ˆė„“ķ‹°ė‹ˆķ¬(Martinique)" #: timezones.h:272 msgid "America/Matamoros" msgstr "아메리칓/ė§ˆė‚˜ģš°ģŠ¤(Manaus)" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" "미국 중부 ķ‘œģ¤€ģ‹œ - 미국 źµ­ź²½ģ—ģ„œ ź°€ź¹Œģš“ ģ½”ģ•„ģš°ģ¼ė¼, ė“€ėž‘ź³ , ėˆ„ģ—ė³“ė ˆģ˜Ø, ķƒ€ėŖ°" "리파스" #: timezones.h:275 msgid "America/Mazatlan" msgstr "아메리칓/ė§ˆģžķ‹€ėž€(Mazatlan)" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "ģ‚°ģ§€ ķ‘œģ¤€ģ‹œ - S ė°”ģž, ė‚˜ģ•¼ė¦æ, ģ‹œė‚ ė”œģ•„ " #: timezones.h:278 msgid "America/Mendoza" msgstr "아메리칓/ė©˜ė„ģ‚¬(Mendoza)" #: timezones.h:279 msgid "America/Menominee" msgstr "아메리칓/ė©”ė…øėÆøė‹ˆ(Menominee)" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "중부 ķ‘œģ¤€ģ‹œ - ėÆøģ‹œź°„ - ė””ķ‚ØģŠØ, ź³ źø°ė¹…, ģ•„ģ“ģ–ø & ė©”ė…øėÆøė‹ˆ ģ¹“ģš“ķ‹° " #: timezones.h:282 msgid "America/Merida" msgstr "아메리칓/메리다(Merida)" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "중부 ķ‘œģ¤€ģ‹œ - ģŗ„ķŽ˜ģ²“, ģœ ģ¹“ķƒ„ " #: timezones.h:285 msgid "America/Mexico_City" msgstr "아메리칓/ė©•ģ‹œģ½”_ģ‹œķ‹°(Mexico_City)" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "중부 ķ‘œģ¤€ģ‹œ - ėŒ€ė¶€ė¶„ģ˜ 지역 " #: timezones.h:288 msgid "America/Miquelon" msgstr "아메리칓/미큓딱(Miquelon)" #: timezones.h:289 msgid "America/Moncton" msgstr "아메리칓/몽톤(Moncton)" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "ėŒ€ģ„œģ–‘ ķ‘œģ¤€ģ‹œ - ė‰“ėøŒėŸ°ģ¦ˆģœ… (New Brunswick) " #: timezones.h:292 msgid "America/Monterrey" msgstr "아메리칓/ėŖ¬ķ…Œė ˆģ“(Monterrey)" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" "ė©•ģ‹œģ½” 중부 ķ‘œģ¤€ģ‹œ - 미국 źµ­ź²½ģ—ģ„œ 먼 ģ½”ģ•„ģš°ģ¼ė¼, ė“€ėž‘ź³ , ėˆ„ģ—ė³“ė ˆģ˜Ø, ķƒ€ėŖ°ė¦¬" "파스 " #: timezones.h:295 msgid "America/Montevideo" msgstr "아메리칓/ėŖ¬ķ…Œė¹„ė°ģ˜¤(Montevideo)" #: timezones.h:296 msgid "America/Montreal" msgstr "아메리칓/몬트리올(Montreal)" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "ė™ė¶€ ķ‘œģ¤€ģ‹œ - ķ€˜ė²” - ėŒ€ė¶€ė¶„ģ˜ 지역 " #: timezones.h:299 msgid "America/Montserrat" msgstr "아메리칓/ėŖ¬ķŠøģ„øė¼ķŠø(Montserrat)" #: timezones.h:300 msgid "America/Nassau" msgstr "아메리칓/ė‚˜ģ†Œ(Nassau)" #: timezones.h:301 msgid "America/New_York" msgstr "아메리칓/뉓_ģš•(New_York)" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "ė™ė¶€ ķ‘œģ¤€ģ‹œ " #: timezones.h:304 msgid "America/Nipigon" msgstr "아메리칓/ė‹ˆķ”¼ź³¤(Nipigon)" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "ė™ė¶€ ķ‘œģ¤€ģ‹œ - ģ˜Øķƒ€ė¦¬ģ˜¤ & ķ€˜ė²” - 1967-1973 년에 DST넼 ģ‹¤ģ‹œķ•˜ģ§€ ģ•Šģ€ 지역 " #: timezones.h:307 msgid "America/Nome" msgstr "아메리칓/ė†ˆ(Nome)" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "ģ•Œėž˜ģŠ¤ģ¹“ ķ‘œģ¤€ģ‹œ - ģ•Œėž˜ģŠ¤ģ¹“ ģ„œė¶€ " #: timezones.h:310 msgid "America/Noronha" msgstr "아메리칓/노딱야(Noronha)" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "ėŒ€ģ„œģ–‘ ģ œė„ " #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "아메리칓/북 ė‹¤ģ½”ķƒ€/중부" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "중부 ķ‘œģ¤€ģ‹œ - ė…øģŠ¤ ė‹¤ģ½”ķƒ€ - ģ˜¬ė¦¬ė²„ ģ¹“ģš“ķ‹° " #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "아메리칓/북 ė‹¤ģ½”ķƒ€/ė‰“ģ‚“ė ˜(New_Salem)" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "중부 ķ‘œģ¤€ģ‹œ - ė…øģŠ¤ ė‹¤ģ½”ķƒ€ - ėŖØķ„“ ģ¹“ģš“ķ‹° (Mandan 지역 ģ œģ™ø) " #: timezones.h:319 msgid "America/Ojinaga" msgstr "아메리칓/ģ˜¤ķžˆė‚˜ź°€(Managua)" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "미국 ģ‚°ģ§€ ķ‘œģ¤€ģ‹œ - 미국 źµ­ź²½ģ—ģ„œ ź°€ź¹Œģš“ ģ¹˜ģ™€ģ™€ (Chihuahua) " #: timezones.h:322 msgid "America/Panama" msgstr "아메리칓/ķŒŒķƒ€ė§ˆ(Panama)" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "아메리칓/ķŒ”ė‹ˆė„“ķ……(Pangnirtung)" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "ė™ė¶€ ķ‘œģ¤€ģ‹œ - ķŒ”ė‹ˆė„“ķ……, ėˆ„ė‚˜ė¶€ķŠø " #: timezones.h:326 msgid "America/Paramaribo" msgstr "아메리칓/ķŒŒė¼ė§ˆė¦¬ė³“(Paramaribo)" #: timezones.h:327 msgid "America/Phoenix" msgstr "아메리칓/ķ”¼ė‹‰ģŠ¤(Phoenix)" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "ģ‚°ģ§€ ķ‘œģ¤€ģ‹œ - ģ•„ė¦¬ģ”°ė‚˜(Arizona) " #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "아메리칓/ķ¬ė„“-토-ķ”„ėž­ģŠ¤(Port-au-Prince)" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "아메리칓/ķ¬ė„“ķ† _ģ•„ķ¬ė ˆ(Porto_Acre)" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "아메리칓/ķ¬ķŠø_오브_ģŠ¤ķŽ˜ģø(Port_of_Spain)" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "아메리칓/ķ¬ė„“ķ† _벨딜(Porto_Velho)" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "ė” ė„ė‹ˆģ•„ (Rondonia) " #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "아메리칓/푸에넓토_리코(Puerto_Rico)" #: timezones.h:337 msgid "America/Rainy_River" msgstr "아메리칓/ė ˆģ“ė‹ˆ_리버(Rainy_River)" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "중부 ķ‘œģ¤€ģ‹œ - ė ˆģ“ė‹ˆ 리버 & ķ¬ķŠø ķ”„ėž€ģ‹œģŠ¤, ģ˜Øķƒ€ė¦¬ģ˜¤ " #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "아메리칓/ėž€ķ‚Ø_ģøė ˆķŠø(Rankin_Inlet)" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "중부 ķ‘œģ¤€ģ‹œ - ėˆ„ė‚˜ė¶€ķŠø 중부 " #: timezones.h:343 msgid "America/Recife" msgstr "아메리칓/ė ˆģ‹œķŽ˜(Recife)" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "ķŽ˜ė„“ė‚Øė¶€ģ½” (Pernambuco) " #: timezones.h:346 msgid "America/Regina" msgstr "아메리칓/ė¦¬ģžģ“ė‚˜(Regina)" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "중부 ķ‘œģ¤€ģ‹œ - ģ‚¬ģŠ¤ģ¼€ģ¶”ģ•ˆ - ėŒ€ė¶€ė¶„ģ˜ 지역 " #: timezones.h:349 msgid "America/Resolute" msgstr "아메리칓/레씸루트(Resolute) " #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "ė™ė¶€ ķ‘œģ¤€ģ‹œ - 레씸루트, ėˆ„ė‚˜ė¶€ķŠø " #: timezones.h:352 msgid "America/Rio_Branco" msgstr "아메리칓/리오_ėøŒėž‘ģ½”(Rio_Branco)" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "ģ•„ķ¬ė ˆ (Acre) " #: timezones.h:355 msgid "America/Rosario" msgstr "아메리칓/ė”œģ‚¬ė¦¬ģ˜¤(Rosario)" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "아메리칓/ģ‚°ķƒ€ė ˜ ģ“ģ‚¬ė²Ø(Santa Isabel)" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "ė©•ģ‹œģ½” ķƒœķ‰ģ–‘ ģ‹œź°„ - źµ­ź²½ģ—ģ„œ 먼 ė°”ķ•˜ ģŗ˜ė¦¬ķ¬ė‹ˆģ•„" #: timezones.h:359 msgid "America/Santarem" msgstr "아메리칓/ģ‚°ķƒ€ė ˜ (Santarem) " #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "ķŒŒė¼ ģ„œė¶€ (W Para) " #: timezones.h:362 msgid "America/Santiago" msgstr "아메리칓/ģ‚°ķ‹°ģ•„ź³ (Santiago)" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "아메리칓/산토_ė„ė°ź³ (Santo_Domingo)" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "아메리칓/상_파울딜(Sao_Paulo)" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "ėøŒė¼ģ§ˆ 남부 ė° ė‚Øė™ė¶€ (GO, DF, MG, ES, RJ, SP, PR, SC, RS) " #: timezones.h:369 msgid "America/Scoresbysund" msgstr "아메리칓/ģŠ¤ģ½”ģŠ¤ė°”ģ“ģ„ ė“œ(Scoresbysund)" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "ģŠ¤ģ½”ģŠ¤ė°”ģ“ģ„ ė“œ / ģ“ķ† ģ½”ė„“ķ† ė„“ėÆøģš°ķŠø (Ittoqqortoormiit) " #: timezones.h:372 msgid "America/Shiprock" msgstr "아메리칓/ģ‰¬ķ”„ė”(Shiprock)" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "ģ‚°ģ§€ ķ‘œģ¤€ģ‹œ - ė‚˜ė°”ģ”° (Navajo) " #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "아메리칓/ģ„øģøķŠø_ė°”ė°ė ˆėÆø(St_Barthelemy)" #: timezones.h:376 msgid "America/St_Johns" msgstr "아메리칓/ģ„øģøķŠø_씓스(St_Johns)" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "ė‰“ķŽ€ė“¤ėžœė“œ ķ‘œģ¤€ģ‹œ, SE ėž˜ėøŒė¼ė„ ķ¬ķ•Ø " #: timezones.h:379 msgid "America/St_Kitts" msgstr "아메리칓/ģ„øģøķŠø_키츠(St_Kitts)" #: timezones.h:380 msgid "America/St_Lucia" msgstr "아메리칓/ģ„øģøķŠø_ė£Øģ‹œģ•„(St_Lucia)" #: timezones.h:381 msgid "America/St_Thomas" msgstr "아메리칓/ģ„øģøķŠø_ķ† ė§ˆģŠ¤(St_Thomas)" #: timezones.h:382 msgid "America/St_Vincent" msgstr "아메리칓/ģ„øģøķŠø_ė¹ˆģ„¼ķŠø(St_Vincent)" #: timezones.h:383 msgid "America/Swift_Current" msgstr "아메리칓/ģŠ¤ģœ„ķ”„ķŠø_커런트(Swift_Current)" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "중부 ķ‘œģ¤€ģ‹œ - ģ‚¬ģŠ¤ģ¼€ģ¶”ģ•ˆ - ģ¤‘ģ„œė¶€ " #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "아메리칓/ķ…Œźµ¬ģ‹œź°ˆķŒŒ(Tegucigalpa)" #: timezones.h:387 msgid "America/Thule" msgstr "아메리칓/툓레(Thule)" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "툓레 (Thule) / ķ”¼ķˆ¬ķ”½(Pituffik) " #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "아메리칓/ģ¬ė”_ė² ģ“(Thunder_Bay)" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "ė™ė¶€ ķ‘œģ¤€ģ‹œ - ģ¬ė” ė² ģ“, ģ˜Øķƒ€ė¦¬ģ˜¤ " #: timezones.h:393 msgid "America/Tijuana" msgstr "아메리칓/ķ‹°ķ›„ģ•„ė‚˜(Tijuana)" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "미 ķƒœķ‰ģ–‘ ģ‹œź°„ - 국경에 ź°€ź¹Œģš“ ė°”ķ•˜ ģŗ˜ė¦¬ķ¬ė‹ˆģ•„" #: timezones.h:396 msgid "America/Toronto" msgstr "아메리칓/토딠토(Toronto)" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "ė™ė¶€ ķ‘œģ¤€ģ‹œ - ģ˜Øķƒ€ė¦¬ģ˜¤ - ėŒ€ė¶€ė¶„ģ˜ 지역 " #: timezones.h:399 msgid "America/Tortola" msgstr "아메리칓/ķ† ė„“ķ†Øė¼(Tortola)" #: timezones.h:400 msgid "America/Vancouver" msgstr "아메리칓/밓쿠버(Vancouver)" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "ķƒœķ‰ģ–‘ ķ‘œģ¤€ģ‹œ - ėøŒė¦¬ķ‹°ģ‹œ ģ½œėŸ¼ė¹„ģ•„ ģ„œė¶€ (west British Columbia) " #: timezones.h:403 msgid "America/Virgin" msgstr "아메리칓/버진(Virgin)" #: timezones.h:404 msgid "America/Whitehorse" msgstr "아메리칓/ķ™”ģ“ķŠøķ˜øģŠ¤(Whitehorse)" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "ķƒœķ‰ģ–‘ ķ‘œģ¤€ģ‹œ - 유콘 남부 (south Yukon) " #: timezones.h:407 msgid "America/Winnipeg" msgstr "아메리칓/ģœ„ė‹ˆķŽ™(Winnipeg)" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "중부 ķ‘œģ¤€ģ‹œ - ė§¤ė‹ˆķ† ė°” & ģ˜Øķƒ€ė¦¬ģ˜¤ ģ„œė¶€ " #: timezones.h:410 msgid "America/Yakutat" msgstr "아메리칓/ģ•¼ģæ ķƒ€ķŠø(Yakutat)" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "ģ•Œėž˜ģŠ¤ģ¹“ ķ‘œģ¤€ģ‹œ - Alaska panhandle neck " #: timezones.h:413 msgid "America/Yellowknife" msgstr "아메리칓/ģ˜ė”œė‚˜ģ“ķ”„(Yellowknife)" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "ģ‚°ģ§€ ķ‘œģ¤€ģ‹œ - ė…øģŠ¤ģ›ØģŠ¤ķŠø ķ…Œė¦¬ķ† ė¦¬ 중부 (central Northwest Territories) " #: timezones.h:416 msgid "Antarctica/Casey" msgstr "ė‚Øź·¹ėŒ€ė„™/ģ¼€ģ“ģ‹œ(Casey)" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "ģ¼€ģ“ģ‹œ źø°ģ§€ (Casey Station), ė² ģ¼ė¦¬ ė°˜ė„ (Bailey Peninsula) " #: timezones.h:419 msgid "Antarctica/Davis" msgstr "ė‚Øź·¹ėŒ€ė„™/ė°ģ“ė¹„ģŠ¤(Davis)" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "ė°ģ“ė¹„ģŠ¤ źø°ģ§€ (Davis Station), ė² ģŠ¤ķŠøķ“ė“œ ķžģ¦ˆ (Vestfold Hills) " #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "ė‚Øź·¹ėŒ€ė„™/ė“œėŖ¬ė‘ė„“ė¹Œ(DumontDUrville)" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "ė“œėŖ¬ė‘ė„“ė¹Œ źø°ģ§€ (Dumont-d'Urville Station), ķ…Œė„“ ģ•„ėøė¦¬ (Terre Adelie) " #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "ė‚Øź·¹ėŒ€ė„™/맄쿼리(Macquarie)" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "맄쿼리섬 źø°ģ§€(Pacquarie Island Station), 맄쿼리 섬(Macquarie Island) " #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "ė‚Øź·¹ėŒ€ė„™/모슨(Mawson)" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "모슨 źø°ģ§€ (Mawson Station), ķ™ˆģŠ¤ ė² ģ“ (Holme Bay) " #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "ė‚Øź·¹ėŒ€ė„™/ė§„ėØøė„(McMurdo)" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "ė§„ėØøė„ źø°ģ§€(McMurdo Station), ė”œģŠ¤ģ„¬ (Ross Island) " #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "ė‚Øź·¹ėŒ€ė„™/ķŒ”ėØø(Palmer)" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "ķŒ”ėØø źø°ģ§€(Palmer Station), ģ•™ė² ģŠ¤ģ„¬ (Anvers Island) " #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "ė‚Øź·¹ėŒ€ė„™/ė”œė°ė¼(Rothera)" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "ė”œė°ė¼ źø°ģ§€(Rothera Station), ģ• ė“¤ė ˆģ“ė“œģ„¬ (Adelaide Island) " #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "ė‚Øź·¹ėŒ€ė„™/남극(South_Pole)" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "ģ•„ė¬øģ„¼ģŠ¤ģ½§ źø°ģ§€ (Amundsen-Scott Station), 남극 " #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "ė‚Øź·¹ėŒ€ė„™/쇼와(Syowa)" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "쇼와 źø°ģ§€ (Syowa Station), ė™ė¶€ 옹굓 섬(E Ongul I) " #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "ė‚Øź·¹ėŒ€ė„™/ė³“ģŠ¤ķ† ķ¬(Vostok)" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "ė³“ģŠ¤ķ† ķ¬ źø°ģ§€ (Vostok Station), ģžė‚Øź·¹ " #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "북극핓/ė”±ģ“ģ–“ė²¤(Longyearbyen)" #: timezones.h:450 msgid "Asia/Aden" msgstr "ģ•„ģ‹œģ•„/ģ•„ė“(Aden)" #: timezones.h:451 msgid "Asia/Almaty" msgstr "ģ•„ģ‹œģ•„/ģ•Œė§ˆķ‹°(Almaty)" #: timezones.h:454 msgid "Asia/Amman" msgstr "ģ•„ģ‹œģ•„/ģ•”ė§Œ(Amman)" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "ģ•„ģ‹œģ•„/ģ•„ė‚˜ė””ė„“(Anadyr)" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "ėŖØģŠ¤ķ¬ė°”+08 - 베링 ķ•“ (Bering Sea) " #: timezones.h:458 msgid "Asia/Aqtau" msgstr "ģ•„ģ‹œģ•„/ģ•„ķ¬ķƒ€ģš°(Aqtau)" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "ģ•„ķ‹°ė¼ģš° (Atirau, Gur'yev), Mangghystau (Mankistau) " #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "ģ•„ģ‹œģ•„/아크토베(Aqtobe)" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "아크토베 (Aktobe) " #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "ģ•„ģ‹œģ•„/ģ•„ģŠˆź°€ė°”ķŠø(Ashgabat)" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "ģ•„ģ‹œģ•„/ģ•„ģŠˆķ•˜ė°”ė“œ(Ashkhabad)" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "ģ•„ģ‹œģ•„/ė°”ź·øė‹¤ė“œ(Baghdad)" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "ģ•„ģ‹œģ•„/ė°”ė ˆģø(Bahrain)" #: timezones.h:468 msgid "Asia/Baku" msgstr "ģ•„ģ‹œģ•„/바쿠(Baku)" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "ģ•„ģ‹œģ•„/방콕(Bangkok)" #: timezones.h:470 msgid "Asia/Beirut" msgstr "ģ•„ģ‹œģ•„/ė² ģ“ė£ØķŠø(Beirut)" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "ģ•„ģ‹œģ•„/ė¹„ģŠˆģ¼€ķ¬(Bishkek)" #: timezones.h:472 msgid "Asia/Brunei" msgstr "ģ•„ģ‹œģ•„/ėøŒė£Øė‚˜ģ“(Brunei)" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "ģ•„ģ‹œģ•„/ģŗ˜ģ»¤ķƒ€(Calcutta)" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "ģ•„ģ‹œģ•„/ģ“ˆģ“ė°œģ‚°(Choibalsan)" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "ė„ė„“ė…øė“œ (Dornod), ģˆ˜ķė°”ķƒ€ė„“ (Sukhbaatar) " #: timezones.h:477 msgid "Asia/Chongqing" msgstr "ģ•„ģ‹œģ•„/ģ¶©ģ¹­(Chongqing)" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "중국 중부 - ģ‚¬ģ²œģ„±, ģœˆė‚œģ„±, ź“‘ģ„œ ģžģ¹˜źµ¬, ģ‚°ģ‹œģ„±, 귀주성 등. " #: timezones.h:480 msgid "Asia/Chungking" msgstr "ģ•„ģ‹œģ•„/ģ¶©ģ¹­(Chungking)" #: timezones.h:481 msgid "Asia/Colombo" msgstr "ģ•„ģ‹œģ•„/콜딬볓(Colombo)" #: timezones.h:482 msgid "Asia/Dacca" msgstr "ģ•„ģ‹œģ•„/다칓(Dacca)" #: timezones.h:483 msgid "Asia/Damascus" msgstr "ģ•„ģ‹œģ•„/ė‹¤ė§ˆģŠ¤ģ»¤ģŠ¤(Damascus)" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "ģ•„ģ‹œģ•„/다칓(Dhaka)" #: timezones.h:485 msgid "Asia/Dili" msgstr "ģ•„ģ‹œģ•„/ė”œė¦¬(Dili)" #: timezones.h:486 msgid "Asia/Dubai" msgstr "ģ•„ģ‹œģ•„/ė‘ė°”ģ“(Dubai)" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "ģ•„ģ‹œģ•„/ė‘ģƒØė² (Dushanbe)" #: timezones.h:488 msgid "Asia/Gaza" msgstr "ģ•„ģ‹œģ•„/ź°€ģž(Gaza)" #: timezones.h:489 msgid "Asia/Harbin" msgstr "ģ•„ģ‹œģ•„/ķ•˜ģ–¼ė¹ˆ(Harbin)" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "ķ‘ė£”ź°• (말갈 ģ œģ™ø), 길림 " #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "ģ•„ģ‹œģ•„/호치민 (Ho_Chi_Minh) " #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "ģ•„ģ‹œģ•„/ķ™_콩(Hong_Kong)" #: timezones.h:494 msgid "Asia/Hovd" msgstr "ģ•„ģ‹œģ•„/ķ™‰ė“œ(Hovd)" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "바얀-오넓기, ź³ ė¹„ģ•Œķƒ€ģ“, ķ™‰ė“œ, Uvs, ģžėøŒķ•­ " #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "ģ•„ģ‹œģ•„/ģ“ė„“ģæ ģø ķ¬(Irkutsk)" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "ėŖØģŠ¤ķ¬ė°”+05 - ė°”ģ“ģ¹¼ 호수 (Lake Baikal) " #: timezones.h:500 msgid "Asia/Istanbul" msgstr "ģ•„ģ‹œģ•„/ģ“ģŠ¤ķƒ„ė¶ˆ(Istanbul)" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "ģ•„ģ‹œģ•„/ģžģ¹“ė„“ķƒ€(Jakarta)" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "ģžė°” (Java) & ģˆ˜ė§ˆķŠøė¼ (Sumatra) " #: timezones.h:504 msgid "Asia/Jayapura" msgstr "ģ•„ģ‹œģ•„/ģžģ•¼ķ‘øė¼(Jayapura)" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "ģ“ė¦¬ģ•ˆ ģžģ•¼ (Irian Jaya) & 몰루칓 ģ œė„ (Moluccas) " #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "ģ•„ģ‹œģ•„/ģ˜ˆė£Øģ‚“ė ˜(Jerusalem)" #: timezones.h:508 msgid "Asia/Kabul" msgstr "ģ•„ģ‹œģ•„/칓불(Kabul)" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "ģ•„ģ‹œģ•„/캄차칓(Kamchatka)" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "ėŖØģŠ¤ķ¬ė°”+08 - 캄차칓(Kamchatka) " #: timezones.h:512 msgid "Asia/Karachi" msgstr "ģ•„ģ‹œģ•„/ģ¹“ė¼ģ¹˜(Karachi)" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "ģ•„ģ‹œģ•„/ģ¹“ģŠˆź°€ė„“(Kashgar)" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "ķ‹°ė²³ & ģ‹ ź°• ģ„œė¶€ " #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "ģ•„ģ‹œģ•„/ģ¹“ķŠøė§Œė‘(Kathmandu) " #: timezones.h:517 msgid "Asia/Katmandu" msgstr "ģ•„ģ‹œģ•„/ģ¹“ķŠøė§Œė‘(Katmandu)" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "ģ•„ģ‹œģ•„/ģŗ˜ģ»¤ķƒ€ (Kolkata) " #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "ģ•„ģ‹œģ•„/ķ¬ė¼ģŠ¤ė…øģ•¼ė„“ģŠ¤ķ¬(Krasnoyarsk)" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "ėŖØģŠ¤ķ¬ė°”+04 - ģ˜ˆė‹ˆģ„øģ“ź°• (Yenisei River) " #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "ģ•„ģ‹œģ•„/ģæ ģ•Œė¼_룸푸넓(Kuala_Lumpur)" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "ė§ė ˆģ“ģ‹œģ•„ ė°˜ė„ " #: timezones.h:525 msgid "Asia/Kuching" msgstr "ģ•„ģ‹œģ•„/ģæ ģ¹­(Kuching)" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "사바 (Sabah) & ģ‚¬ė¼ģ™€ķ¬ (Sarawak) " #: timezones.h:528 msgid "Asia/Kuwait" msgstr "ģ•„ģ‹œģ•„/ģæ ģ›Øģ“ķŠø(Kuwait)" #: timezones.h:529 msgid "Asia/Macao" msgstr "ģ•„ģ‹œģ•„/마칓오(Macao)" #: timezones.h:530 msgid "Asia/Macau" msgstr "ģ•„ģ‹œģ•„/마칓우(Macau)" #: timezones.h:531 msgid "Asia/Magadan" msgstr "ģ•„ģ‹œģ•„/ė§ˆź°€ė‹Ø(Magadan)" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "ėŖØģŠ¤ķ¬ė°”+08 - ė§ˆź°€ė‹Ø (Magadan) " #: timezones.h:534 msgid "Asia/Makassar" msgstr "ģ•„ģ‹œģ•„/ė§ˆģ¹“ģ‚¬ė„“(Makassar)" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "ė³“ė„“ė„¤ģ˜¤ ė™ė¶€ ė° 남부, ģ…€ė ˆė² ģŠ¤, 발리, ėˆ„ģ‚¬ķ‹ź°€ė¼, ė™ ķ‹°ėŖØė„“ " #: timezones.h:537 msgid "Asia/Manila" msgstr "ģ•„ģ‹œģ•„/ė§ˆė‹ė¼(Manila)" #: timezones.h:538 msgid "Asia/Muscat" msgstr "ģ•„ģ‹œģ•„/묓스칓트(Muscat)" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "ģ•„ģ‹œģ•„/ė‹ˆģ½”ģ‹œģ•„(Nicosia)" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "ģ•„ģ‹œģ•„/ė…øė³“ģæ ģ¦ˆė„¤ģø ķ¬(Novokuznetsk)" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "ėŖØģŠ¤ķ¬ė°”+03 - ė…øė³“ģæ ģ¦ˆė„¤ģø ķ¬(Novokuznetsk)" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "ģ•„ģ‹œģ•„/ė…øė³“ģ‹œė¹„ė„“ģŠ¤ķ¬(Novosibirsk)" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "ėŖØģŠ¤ķ¬ė°”+03 - ė…øė³“ģ‹œė¹„ė„“ģŠ¤ķ¬(Novosibirsk) " #: timezones.h:546 msgid "Asia/Omsk" msgstr "ģ•„ģ‹œģ•„/옓스크(Omsk)" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "ėŖØģŠ¤ķ¬ė°”+03 - ģ‹œė² ė¦¬ģ•„ ģ„œė¶€ " #: timezones.h:549 msgid "Asia/Oral" msgstr "ģ•„ģ‹œģ•„/오럓(Oral)" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "ģ¹“ģžķģŠ¤ķƒ„ ģ„œė¶€ " #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "ģ•„ģ‹œģ•„/ķ”„ė†ˆ_ķŽœ(Phnom_Penh)" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "ģ•„ģ‹œģ•„/ķ°ķ‹°ģ•„ė‚˜ķ¬(Pontianak)" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "ė³“ė„“ė„¤ģ˜¤ (Borneo) ģ„œė¶€ ė° 중앙 " #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "ģ•„ģ‹œģ•„/ķ‰ģ–‘(Pyongyang)" #: timezones.h:557 msgid "Asia/Qatar" msgstr "ģ•„ģ‹œģ•„/ģ¹“ķƒ€ė„“(Qatar)" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "ģ•„ģ‹œģ•„/ķ‚¤ģ§ˆė”œė„“ė‹¤(Qyzylorda)" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "ķ‚¤ģ§ˆė”œė„“ė‹¤ (Kyzylorda, Kzyl-Orda) " #: timezones.h:561 msgid "Asia/Rangoon" msgstr "ģ•„ģ‹œģ•„/ėž‘źµ°(Rangoon)" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "ģ•„ģ‹œģ•„/ė¦¬ģ•¼ė“œ(Riyadh)" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "ģ•„ģ‹œģ•„/ė¦¬ģ•¼ė“œ87(Riyadh87)" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "ģ•„ģ‹œģ•„/ė¦¬ģ•¼ė“œ88(Riyadh88)" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "ģ•„ģ‹œģ•„/ė¦¬ģ•¼ė“œ89(Riyadh89)" #: timezones.h:566 msgid "Asia/Saigon" msgstr "ģ•„ģ‹œģ•„/ģ‚¬ģ“ź³µ(Saigon)" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "ģ•„ģ‹œģ•„/사할린(Sakhalin)" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "ėŖØģŠ¤ķ¬ė°”+07 - 사할린 섬 (Sakhalin Island) " #: timezones.h:570 msgid "Asia/Samarkand" msgstr "ģ•„ģ‹œģ•„/ģ‚¬ė§ˆė„“ģ¹øķŠø(Samarkand)" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "ģš°ģ¦ˆė² ķ‚¤ģŠ¤ķƒ„ (Uzbekistan) ģ„œė¶€ " #: timezones.h:573 msgid "Asia/Seoul" msgstr "ģ•„ģ‹œģ•„/ģ„œģšø(Seoul)" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "ģ•„ģ‹œģ•„/ģƒķ•˜ģ“(Shanghai)" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "중국 ė™ė¶€ - ė² ģ“ģ§•, ź“‘ė™, ģƒķ•˜ģ“ 등. " #: timezones.h:577 msgid "Asia/Singapore" msgstr "ģ•„ģ‹œģ•„/ģ‹±ź°€ķ¬ė„“(Singapore)" #: timezones.h:578 msgid "Asia/Taipei" msgstr "ģ•„ģ‹œģ•„/ķƒ€ģ“ķŽ˜ģ“(Taipei)" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "ģ•„ģ‹œģ•„/ķƒ€ģŠˆģ¼„ķŠø(Tashkent)" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "ģš°ģ¦ˆė² ķ‚¤ģŠ¤ķƒ„ (Uzbekistan) ė™ė¶€ " #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "ģ•„ģ‹œģ•„/ķŠøė¹Œė¦¬ģ‹œ(Tbilisi)" #: timezones.h:583 msgid "Asia/Tehran" msgstr "ģ•„ģ‹œģ•„/ķ…Œķ—¤ėž€(Tehran)" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "ģ•„ģ‹œģ•„/ķ…”_ģ•„ė¹„ėøŒ(Tel_Aviv)" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "ģ•„ģ‹œģ•„/ķŒ€ė¶€(Thimbu)" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "ģ•„ģ‹œģ•„/ķŒ€ķ‘ø(Thimphu)" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "ģ•„ģ‹œģ•„/ė„ģæ„(Tokyo)" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "ģ•„ģ‹œģ•„/ģš°ģ¤‘_ķŒė‹¹(Ujung_Pandang)" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "ģ•„ģ‹œģ•„/ģšøėž€ė°”ķƒ€ė„“(Ulaanbaatar)" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "ģ•„ģ‹œģ•„/ģšøėž€_바토넓(Ulan_Bator)" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "ģ•„ģ‹œģ•„/우루묓치(Urumqi)" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "ķ‹°ė²³ (Tibet) & ģ‹ ź°• (Xinjiang)ģ˜ ėŒ€ė¶€ė¶„ " #: timezones.h:596 msgid "Asia/Vientiane" msgstr "ģ•„ģ‹œģ•„/ė¹„ģ—”ķ‹°ģ•ˆ(Vientiane)" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "ģ•„ģ‹œģ•„/ėø”ė¼ė””ė³“ģŠ¤ķ†”(Vladivostok)" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "ėŖØģŠ¤ģ½”ė°”+07 - 아묓넓강 (Amur River) " #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "ģ•„ģ‹œģ•„/야쿠츠크(Yakutsk)" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "ėŖØģŠ¤ģ½”ė°”+06 - ė ˆė‚˜ź°• (Lena River) " #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "ģ•„ģ‹œģ•„/ģ˜ˆģ¹“ķ…Œė¦°ė¶€ė„“ķ¬(Yekaterinburg)" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "ėŖØģŠ¤ģ½”ė°”+02 - ģš°ėž„ (Urals) " #: timezones.h:606 msgid "Asia/Yerevan" msgstr "ģ•„ģ‹œģ•„/예레반(Yerevan)" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "ėŒ€ģ„œģ–‘/ģ•„ģ”°ė ˆģŠ¤(Azores)" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "ģ•„ģ”°ė ˆģŠ¤(Azores) " #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "ėŒ€ģ„œģ–‘/버뮤다(Bermuda)" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "ėŒ€ģ„œģ–‘/ģ¹“ė‚˜ė¦¬ģ•„(Canary)" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "ģ¹“ė‚˜ė¦¬ģ•„ ģ œė„ (Canary Islands) " #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "ėŒ€ģ„œģ–‘/ģ¹“ķ¬_ė² ė„“ė°(Cape_Verde)" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "ėŒ€ģ„œģ–‘/ķŽ˜ė”œ(Faeroe)" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "ėŒ€ģ„œģ–‘/ķŽ˜ė”œ(Faroe)" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "ėŒ€ģ„œģ–‘/ģž”_ė©”ģ“ģ—”(Jan_Mayen)" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "ėŒ€ģ„œģ–‘/ė§ˆė°ģ“ė¼(Madeira)" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "ė§ˆė°ģ“ė¼ ģ œė„ (Madeira Islands) " #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "ėŒ€ģ„œģ–‘/ė ˆģ“ģŗ¬ė¹„ķ¬(Reykjavik)" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "ėŒ€ģ„œģ–‘/남_씰지아(South_Georgia)" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "ėŒ€ģ„œģ–‘/스탠리(Stanley)" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "ėŒ€ģ„œģ–‘/ģ„øģøķŠø_ķ—¬ė ˆė‚˜(St_Helena)" #: timezones.h:625 msgid "Australia/ACT" msgstr "호주/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "호주/ģ• ė“¤ė ˆģ“ė“œ(Adelaide)" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "호주 남부 " #: timezones.h:629 msgid "Australia/Brisbane" msgstr "호주/ėøŒė¦¬ģŠ¤ė² ģø(Brisbane)" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "ķ€øģŠ¤ėžœė“œ - ėŒ€ė¶€ė¶„ģ˜ 지역 " #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "호주/브딜큰_ķž(Broken_Hill)" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "ė‰“ģ‚¬ģš°ģŠ¤ ģ›Øģ¼ģ¦ˆ - ģ–€ģ½”ģœ„ė‚˜ (Yancowinna) " #: timezones.h:635 msgid "Australia/Canberra" msgstr "호주/ģŗ”ė²„ė¼(Canberra)" #: timezones.h:636 msgid "Australia/Currie" msgstr "호주/커리(Currie)" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "ķƒœģŠ¤ė§ˆė‹ˆģ•„ - 킹 ģ•„ģ¼ėžœė“œ (King Island) " #: timezones.h:639 msgid "Australia/Darwin" msgstr "호주/ė‹¤ģœˆ(Darwin)" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "ė…øė˜ ķ…Œė¦¬ķ† ė¦¬ (Northern Territory) " #: timezones.h:642 msgid "Australia/Eucla" msgstr "호주/ģœ ķ“ė¼(Eucla)" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "호주 ģ„œė¶€ - ģœ ķ“ė¼(Eucla) 지역 " #: timezones.h:645 msgid "Australia/Hobart" msgstr "호주/ķ˜øė°”ķŠø(Hobart)" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "ķƒœģŠ¤ė§ˆė‹ˆģ•„ - ėŒ€ė¶€ė¶„ģ˜ 지역 " #: timezones.h:648 msgid "Australia/LHI" msgstr "호주/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "호주/ė¦°ė“œė§Œ(Lindeman)" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "ķ€øģŠ¤ėžœė“œ - ķ™€ė¦¬ė°ģ“ ģ•„ģ¼ėžœė“œ (Holiday Islands) " #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "호주/ė”œė“œ_ķ•˜ģš°(Lord_Howe)" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "ė”œė“œ ķ•˜ģš° 섬(Lord Howe Island) " #: timezones.h:655 msgid "Australia/Melbourne" msgstr "호주/ė©œė²„ė„ø(Melbourne)" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "빅토리아(Victoria) " #: timezones.h:658 msgid "Australia/North" msgstr "호주/북부(North)" #: timezones.h:659 msgid "Australia/NSW" msgstr "호주/ė‰“ģ‚¬ģš°ģŠ¤ģ›Øģ¼ģ¦ˆ(NSW)" #: timezones.h:660 msgid "Australia/Perth" msgstr "호주/ķ¼ģŠ¤(Perth)" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "호주 ģ„œė¶€ - ėŒ€ė¶€ė¶„ģ˜ 지역 " #: timezones.h:663 msgid "Australia/Queensland" msgstr "호주/ķ€øģŠ¤ėžœė“œ(Queensland)" #: timezones.h:664 msgid "Australia/South" msgstr "호주/남부(South)" #: timezones.h:665 msgid "Australia/Sydney" msgstr "호주/ģ‹œė“œė‹ˆ(Sydney)" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "ė‰“ģ‚¬ģš°ģŠ¤ ģ›Øģ¼ģ¦ˆ - ėŒ€ė¶€ė¶„ģ˜ 지역 " #: timezones.h:668 msgid "Australia/Tasmania" msgstr "호주/ķƒœģŠ¤ė§ˆė‹ˆģ•„(Tasmania)" #: timezones.h:669 msgid "Australia/Victoria" msgstr "호주/빅토리아(Victoria)" #: timezones.h:670 msgid "Australia/West" msgstr "호주/ģ„œė¶€(West)" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "호주/ģ–€ģ½”ģœ„ė‚˜(Yancowinna)" #: timezones.h:672 msgid "Brazil/Acre" msgstr "ėøŒė¼ģ§ˆ/ģ•„ķ¬ė ˆ(Acre)" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "ėøŒė¼ģ§ˆ/ė°ė…øė” ķ•˜(DeNoronha)" #: timezones.h:674 msgid "Brazil/East" msgstr "ėøŒė¼ģ§ˆ/ė™ė¶€(East)" #: timezones.h:675 msgid "Brazil/West" msgstr "ėøŒė¼ģ§ˆ/ģ„œė¶€(West)" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "ģŗė‚˜ė‹¤/ģ•„ķ‹€ėž€ķ‹±(Atlantic)" #: timezones.h:677 msgid "Canada/Central" msgstr "ģŗė‚˜ė‹¤/중부(Central)" #: timezones.h:678 msgid "Canada/Eastern" msgstr "ģŗė‚˜ė‹¤/ė™ė¶€(Eastern)" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "ģŗė‚˜ė‹¤/ė™-ģ‚¬ģŠ¤ģ¼€ģ¶”ģ•ˆ(East-Saskatchewan)" #: timezones.h:680 msgid "Canada/Mountain" msgstr "ģŗė‚˜ė‹¤/ģ‚°ė§„(Mountain)" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "ģŗė‚˜ė‹¤/ė‰“ķŽ€ė“¤ėžœė“œ(Newfoundland)" #: timezones.h:682 msgid "Canada/Pacific" msgstr "ģŗė‚˜ė‹¤/ķƒœķ‰ģ–‘(Pacific)" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "ģŗė‚˜ė‹¤/ģ‚¬ģŠ¤ģ¼€ģ¶”ģ•ˆ(Saskatchewan)" #: timezones.h:684 msgid "Canada/Yukon" msgstr "ģŗė‚˜ė‹¤/유콘(Yukon)" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "칠레/ģ „ģ—­(Continental)" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "칠레/ģ“ģŠ¤ķ„°ģ„¬(EasterIsland)" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "ģæ ė°”(Cuba)" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "ģ“ģ§‘ķŠø(Egypt)" #: timezones.h:692 msgid "Eire" msgstr "ģ—ģ“ė ˆ(Eire)" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/ź·øė¦¬ė‹ˆģ¹˜(Greenwich)" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/źµ­ģ œģ‹œ(Universal)" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/줄루(Zulu)" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "유럽/ģ•”ģŠ¤ķ…Œė„“ė‹“(Amsterdam)" #: timezones.h:731 msgid "Europe/Andorra" msgstr "유럽/ģ•ˆė„ė¼(Andorra)" #: timezones.h:732 msgid "Europe/Athens" msgstr "유럽/ģ•„ķ…Œė„¤(Athens)" #: timezones.h:733 msgid "Europe/Belfast" msgstr "유럽/벨파스트(Belfast)" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "유럽/ė²Øź·øė¼ė“œ(Belgrade)" #: timezones.h:735 msgid "Europe/Berlin" msgstr "유럽/베넼린(Berlin)" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "유럽/ėøŒė¼ķ‹°ģŠ¬ė¼ė°”(Bratislava)" #: timezones.h:737 msgid "Europe/Brussels" msgstr "유럽/ėøŒė¤¼ģ…€(Brussels)" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "유럽/ė¶€ģ¹“ė ˆģŠ¤ķŠø(Bucharest)" #: timezones.h:739 msgid "Europe/Budapest" msgstr "유럽/ė¶€ė‹¤ķŽ˜ģŠ¤ķŠø(Budapest)" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "유럽/ģ¹˜ģ‹œė‚˜ģš°(Chisinau)" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "유럽/ģ½”ķŽœķ•˜ź²(Copenhagen)" #: timezones.h:742 msgid "Europe/Dublin" msgstr "유럽/ė”ėø”ė¦°(Dublin)" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "유럽/ģ§€ėøŒė”¤ķ„°(Gibraltar)" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "유럽/걓지(Guernsey)" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "유럽/헬싱키(Helsinki)" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "유럽/맨섬(Isle_of_Man)" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "유럽/ģ“ģŠ¤ķƒ„ė¶ˆ(Istanbul)" #: timezones.h:748 msgid "Europe/Jersey" msgstr "유럽/저지(Jersey)" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "유럽/ģ¹¼ė¦¬ė‹Œź·øė¼ė“œ(Kaliningrad)" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "ėŖØģŠ¤ķ¬ė°”-01 - ģ¹¼ė¦¬ė‹Œź·øė¼ė“œ(Kaliningrad) " #: timezones.h:752 msgid "Europe/Kiev" msgstr "유럽/ķ‚¤ģ˜ˆķ”„(Kiev)" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "유럽/리스본(Lisbon)" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "유럽/ė„˜ėø”ė¦¬ģ•„ė‚˜(Ljubljana)" #: timezones.h:759 msgid "Europe/London" msgstr "유럽/ėŸ°ė˜(London)" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "유럽/ė£©ģ…ˆė¶€ė£Øķ¬(Luxembourg)" #: timezones.h:761 msgid "Europe/Madrid" msgstr "유럽/ė§ˆė“œė¦¬ė“œ(Madrid)" #: timezones.h:764 msgid "Europe/Malta" msgstr "유럽/ėŖ°ķƒ€(Malta)" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "유럽/ė§ˆė¦¬ķ•Ø(Mariehamn)" #: timezones.h:766 msgid "Europe/Minsk" msgstr "유럽/민스크(Minsk)" #: timezones.h:767 msgid "Europe/Monaco" msgstr "유럽/ėŖØė‚˜ģ½”(Monaco)" #: timezones.h:768 msgid "Europe/Moscow" msgstr "유럽/ėŖØģŠ¤ķ¬ė°”(Moscow)" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "ėŖØģŠ¤ķ¬ė°”+00 - ėŸ¬ģ‹œģ•„ ģ„œė¶€ (west Russia) " #: timezones.h:771 msgid "Europe/Nicosia" msgstr "유럽/ė‹ˆģ½”ģ‹œģ•„(Nicosia)" #: timezones.h:772 msgid "Europe/Oslo" msgstr "유럽/오슬딜(Oslo)" #: timezones.h:773 msgid "Europe/Paris" msgstr "유럽/파리(Paris)" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "유럽/ķ¬ė“œź³ ė¦¬ģ°Ø(Podgorica)" #: timezones.h:775 msgid "Europe/Prague" msgstr "유럽/ķ”„ė¼ķ•˜(Prague)" #: timezones.h:776 msgid "Europe/Riga" msgstr "유럽/리가(Riga)" #: timezones.h:777 msgid "Europe/Rome" msgstr "유럽/딜마(Rome)" #: timezones.h:778 msgid "Europe/Samara" msgstr "유럽/ģ‚¬ė§ˆė¼(Samara)" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "ėŖØģŠ¤ķ¬ė°” - ģ‚¬ė§ˆė¼(Samara), ģš°ė“œė¬“ė„“ķŠø 공화국(Udmurtia) " #: timezones.h:781 msgid "Europe/San_Marino" msgstr "유럽/ģ‚°_ė§ˆė¦¬ė…ø(San_Marino)" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "유럽/ģ‚¬ė¼ģ˜ˆė³“(Sarajevo)" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "유럽/ģ‹¬ķŽ˜ė”œķ“(Simferopol)" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "중앙 크림 ė°˜ė„ (central Crimea) " #: timezones.h:786 msgid "Europe/Skopje" msgstr "유럽/ģŠ¤ģ½”ķ”„ģ˜ˆ(Skopje)" #: timezones.h:787 msgid "Europe/Sofia" msgstr "유럽/ģ†Œķ”¼ģ•„(Sofia)" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "유럽/ģŠ¤ķ†”ķ™€ė¦„(Stockholm)" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "유럽/탈린(Tallinn)" #: timezones.h:790 msgid "Europe/Tirane" msgstr "유럽/ķ‹°ė¼ė‚˜(Tirane)" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "유럽/ķ‹°ė¼ģŠ¤ķ“(Tiraspol)" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "유럽/ģš°ģ¦ˆź³ ė”œė“œ(Uzhgorod)" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "ė£Øķ…Œė‹ˆģ•„ (Ruthenia) " #: timezones.h:795 msgid "Europe/Vaduz" msgstr "유럽/ķŒŒė‘ģø (Vaduz)" #: timezones.h:796 msgid "Europe/Vatican" msgstr "유럽/바티칸(Vatican)" #: timezones.h:797 msgid "Europe/Vienna" msgstr "유럽/ė¹„ģ—”ė‚˜(Vienna)" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "유럽/ė¹Œė‹ˆģš°ģŠ¤(Vilnius)" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "유럽/ė³¼ź³ ź·øė¼ė“œ(Volgograd)" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "ėŖØģŠ¤ķ¬ė°”+00 - ģ¹“ģŠ¤ķ”¼ ķ•“(Caspian Sea) " #: timezones.h:802 msgid "Europe/Warsaw" msgstr "유럽/ė°”ė„“ģƒ¤ė°”(Warsaw)" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "유럽/ģžź·øė ˆėøŒ(Zagreb)" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "유럽/ģžķ¬ė”œģ œ(Zaporozhye)" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" "ģžķ¬ė”œģ œ(Zaporozh'ye), ė™ ė£Øź°„ģŠ¤ķ¬(E Lugansk) / ģžķ¬ė„“ģ§€ģ•„(Zaporizhia), ė™ 루" "ź°„ģŠ¤ķ¬(E Luhansk) " #: timezones.h:807 msgid "Europe/Zurich" msgstr "유럽/ģ·Øė¦¬ķžˆ(Zurich)" #: timezones.h:808 msgid "Factory" msgstr "Factory" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-ģ—ģ“ė ˆ(GB-Eire)" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "ź·øė¦¬ė‹ˆģ¹˜(Greenwich)" #: timezones.h:816 msgid "Hongkong" msgstr "ķ™ģ½©(Hongkong)" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "ģ•„ģ“ģŠ¬ėžœė“œ(Iceland)" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "ģøė„ģ–‘/ģ•ˆķƒ€ė‚˜ė‚˜ė¦¬ė³“(Antananarivo)" #: timezones.h:820 msgid "Indian/Chagos" msgstr "ģøė„ģ–‘/차고스(Chagos)" #: timezones.h:821 msgid "Indian/Christmas" msgstr "ģøė„ģ–‘/크리스마스(Christmas)" #: timezones.h:822 msgid "Indian/Cocos" msgstr "ģøė„ģ–‘/ģ½”ģ½”ģŠ¤(Cocos)" #: timezones.h:823 msgid "Indian/Comoro" msgstr "ģøė„ģ–‘/ģ½”ėŖØė”œ(Comoro)" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "ģøė„ģ–‘/ģ¼€ė„“źµ¬ģ—˜ė Œ(Kerguelen)" #: timezones.h:825 msgid "Indian/Mahe" msgstr "ģøė„ģ–‘/ė§ˆķ—¤(Mahe)" #: timezones.h:826 msgid "Indian/Maldives" msgstr "ģøė„ģ–‘/ėŖ°ė””ėøŒ(Maldives)" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "ģøė„ģ–‘/ėŖØė¦¬ģ…”ģŠ¤(Mauritius)" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "ģøė„ģ–‘/ė§ˆģš”ķŠø(Mayotte)" #: timezones.h:829 msgid "Indian/Reunion" msgstr "ģøė„ģ–‘/ė ˆģœ„ė‹ˆģ˜¹(Reunion)" #: timezones.h:830 msgid "Iran" msgstr "ģ“ėž€(Iran)" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "ģ“ģŠ¤ė¼ģ—˜(Israel)" #: timezones.h:833 msgid "Jamaica" msgstr "ģžė§ˆģ“ģ¹“(Jamaica)" #: timezones.h:834 msgid "Japan" msgstr "ģ¼ė³ø(Japan)" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "ģ½°ģž˜ė ˆģø(Kwajalein)" #: timezones.h:836 msgid "Libya" msgstr "리비아(Libya)" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "ė©•ģ‹œģ½”/ė°”ģžė…øė„“ķ…Œ(BajaNorte)" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "ė©•ģ‹œģ½”/ė°”ģžģˆ˜ė„“(BajaSur)" #: timezones.h:840 msgid "Mexico/General" msgstr "ė©•ģ‹œģ½”/ģ „ģ—­(General)" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "ģ¤‘ė™/ė¦¬ģ•¼ė“œ87(Riyadh87)" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "ģ¤‘ė™/ė¦¬ģ•¼ė“œ88(Riyadh88)" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "ģ¤‘ė™/ė¦¬ģ•¼ė“œ89(Riyadh89)" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "ė‚˜ė°”ķ˜ø(Navajo)" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "ķƒœķ‰ģ–‘/아피아(Apia)" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "ķƒœķ‰ģ–‘/ģ˜¤ķ“ėžœė“œ(Auckland)" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "ķƒœķ‰ģ–‘/채텀(Chatham) " #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "채텀 ģ œė„ (Chatham Islands) " #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "ķƒœķ‰ģ–‘/ģ¶”ģš°ķ¬(Chuuk) " #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "ģ¶”ģš°ķ¬ (트루크) ė° ģ– " #: timezones.h:859 msgid "Pacific/Easter" msgstr "ķƒœķ‰ģ–‘/ģ“ģŠ¤ķ„°(Easter)" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "ģ“ģŠ¤ķ„° 섬 (Easter Island) & ģ‚“ė¼ģ“ź³ ė©”ģ¦ˆ (Sala y Gomez) " #: timezones.h:862 msgid "Pacific/Efate" msgstr "ķƒœķ‰ģ–‘/ģ—ķŒŒķ…Œ(Efate)" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "ķƒœķ‰ģ–‘/ģ—”ė”ė² ė¦¬(Enderbury)" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "ķ”¼ė‹‰ģŠ¤ ģ œė„ (Phoenix Islands) " #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "ķƒœķ‰ģ–‘/ķŒŒģ¹“ģ˜¤ķ¬(Fakaofo)" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "ķƒœķ‰ģ–‘/피지(Fiji)" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "ķƒœķ‰ģ–‘/ķ‘øė‚˜ķ‘øķ‹°(Funafuti)" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "ķƒœķ‰ģ–‘/ź°ˆė¼ķŒŒź³ ģŠ¤(Galapagos)" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "ź°ˆė¼ķŒŒź³ ģŠ¤ ģ œė„ (Galapagos Islands) " #: timezones.h:872 msgid "Pacific/Gambier" msgstr "ķƒœķ‰ģ–‘/갬비얓(Gambier)" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "갬비얓 ģ œė„ (Gambier Islands) " #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "ķƒœķ‰ģ–‘/과달칓날(Guadalcanal)" #: timezones.h:876 msgid "Pacific/Guam" msgstr "ķƒœķ‰ģ–‘/꓌(Guam)" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "ķƒœķ‰ģ–‘/ķ˜øė†€ė£°ė£Ø(Honolulu)" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "ķ•˜ģ™€ģ“(Hawaii) " #: timezones.h:880 msgid "Pacific/Johnston" msgstr "ķƒœķ‰ģ–‘/ģ”“ģŠ¤ķ†¤(Johnston)" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "ģ”“ģŠ¤ķ†¤ 섬 (Johnston Atoll) " #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "ķƒœķ‰ģ–‘/ķ‚¤ė¦¬ķ‹°ė§ˆķ‹°(Kiritimati)" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "ė¼ģø ģ œė„(Line Islands) " #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "ķƒœķ‰ģ–‘/ģ½”ģŠ¤ė ˆ(Kosrae)" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "ģ½”ģŠ¤ė ˆ(Kosrae) " #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "ķƒœķ‰ģ–‘/ģ½°ģž˜ė ˆģø(Kwajalein)" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "ķƒœķ‰ģ–‘/마주딜(Majuro)" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "ķƒœķ‰ģ–‘/ė§ˆė„“ķ€˜ģ‚¬ģŠ¤(Marquesas)" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "ė§ˆė„“ķ€˜ģ‚¬ģŠ¤ ģ œė„ (Marquesas Islands) " #: timezones.h:898 msgid "Pacific/Midway" msgstr "ķƒœķ‰ģ–‘/ėÆøė“œģ›Øģ“(Midway)" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "ėÆøė“œģ›Øģ“ ģ œė„ (Midway Islands) " #: timezones.h:901 msgid "Pacific/Nauru" msgstr "ķƒœķ‰ģ–‘/ė‚˜ģš°ė£Ø(Nauru)" #: timezones.h:902 msgid "Pacific/Niue" msgstr "ķƒœķ‰ģ–‘/ė‹ˆģš°ģ—(Niue)" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "ķƒœķ‰ģ–‘/ė…øė„“ķ­(Norfolk)" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "ķƒœķ‰ģ–‘/ėˆ„ė©”ģ•„(Noumea)" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "ķƒœķ‰ģ–‘/파고_파고(Pago_Pago)" #: timezones.h:906 msgid "Pacific/Palau" msgstr "ķƒœķ‰ģ–‘/ķŒ”ė¼ģš°(Palau)" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "ķƒœķ‰ģ–‘/ķ”¼ķŠøģ¼€ģ–ø(Pitcairn)" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "ķƒœķ‰ģ–‘/ķ°ķŽ˜ģ“(Pohnpei) " #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "ķ°ķŽ˜ģ“ (ķ¬ė‚˜ķŽ˜) " #: timezones.h:911 msgid "Pacific/Ponape" msgstr "ķƒœķ‰ģ–‘/ķ¬ė‚˜ķŽ˜(Ponape)" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "ķƒœķ‰ģ–‘/ķ¬ķŠø_ėŖØģŠ¤ė¹„(Port_Moresby)" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "ķƒœķ‰ģ–‘/ė¼ė”œķ†µź°€(Rarotonga)" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "ķƒœķ‰ģ–‘/ģ‚¬ģ“ķŒ(Saipan)" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "ķƒœķ‰ģ–‘/사모아(Samoa)" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "ķƒœķ‰ģ–‘/ķƒ€ķžˆķ‹°(Tahiti)" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "ģ†Œģ‹œģ—ķ…Œ ģ œė„ (Society Islands) " #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "ķƒœķ‰ģ–‘/ķƒ€ė¼ģ™€(Tarawa)" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "źøøė²„ķŠø ģ œė„ (Gilbert Islands) " #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "ķƒœķ‰ģ–‘/ķ†µź°€ķƒ€ķ‘ø(Tongatapu)" #: timezones.h:923 msgid "Pacific/Truk" msgstr "ķƒœķ‰ģ–‘/트루크(Truk)" #: timezones.h:924 msgid "Pacific/Wake" msgstr "ķƒœķ‰ģ–‘/ģ›Øģ“ķ¬(Wake)" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "ģ›Øģ“ķ¬ 섬 (Wake Island) " #: timezones.h:927 msgid "Pacific/Wallis" msgstr "ķƒœķ‰ģ–‘/ģ›”ė¦¬ģŠ¤(Wallis)" #: timezones.h:928 msgid "Pacific/Yap" msgstr "ķƒœķ‰ģ–‘/ģ–(Yap)" #: timezones.h:929 msgid "Poland" msgstr "ķ“ėž€ė“œ(Poland)" #: timezones.h:930 msgid "Portugal" msgstr "ķ¬ė„“ķˆ¬ź°ˆ(Portugal)" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ėŒ€ķ•œėÆ¼źµ­(ROK)" #: timezones.h:936 msgid "Singapore" msgstr "ģ‹±ź°€ķ¬ė„“(Singapore)" #: timezones.h:937 msgid "Turkey" msgstr "터키(Turkey)" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "źµ­ģ œģ‹œ(Universal)" #: timezones.h:940 msgid "US/Alaska" msgstr "미국/ģ•Œėž˜ģŠ¤ģ¹“(Alaska)" #: timezones.h:941 msgid "US/Aleutian" msgstr "미국/ģ•Œė„˜ģƒØ(Aleutian)" #: timezones.h:942 msgid "US/Arizona" msgstr "미국/ģ•„ė¦¬ģ”°ė‚˜(Arizona)" #: timezones.h:943 msgid "US/Central" msgstr "미국/중부(Central)" #: timezones.h:944 msgid "US/Eastern" msgstr "미국/ė™ė¶€(Eastern)" #: timezones.h:945 msgid "US/East-Indiana" msgstr "미국/ė™-ģøė””ģ• ė‚˜(East-Indiana)" #: timezones.h:946 msgid "US/Hawaii" msgstr "미국/ķ•˜ģ™€ģ“(Hawaii)" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "미국/ģøė””ģ• ė‚˜-ģŠ¤ķƒ€ķ¬(Indiana-Starke)" #: timezones.h:948 msgid "US/Michigan" msgstr "미국/ėÆøģ‹œź°„(Michigan)" #: timezones.h:949 msgid "US/Mountain" msgstr "미국/ģ‚°ė§„(Mountain)" #: timezones.h:950 msgid "US/Pacific" msgstr "미국/ķƒœķ‰ģ–‘(Pacific)" #: timezones.h:951 msgid "US/Samoa" msgstr "미국/사모아(Samoa)" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "줄루(Zulu)" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/fa.po0000664000175000017500000020600114632072346023644 0ustar fabiofabio# Persian translation for timezones package. # Copyright (C) 2004, 2005 Sharif FarsiWeb, Inc. # This file is distributed under the same license as the timezones package. # # Roozbeh Pournader , 2004, 2005. # Meelad Zakaria , 2005. # Hedayat Vatankhah , 2010. msgid "" msgstr "" "Project-Id-Version: timezones HEAD\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-09-23 16:25+0330\n" "Last-Translator: Hedayat Vatankhah \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fa\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "افریفا/Ų¢ŲØŪŒŲ¬Ų§Ł†" #: timezones.h:2 msgid "Africa/Accra" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/آگرا" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/Ų¢ŲÆŪŒŲ³ā€ŒŲ¢ŲØŲ§ŲØŲ§" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/Ų§Ł„Ų¬Ų²ŪŒŲ±Ł‡" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/اسمره" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/اسمرا" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/ŲØŲ§Ł…Ų§Ś©Łˆ" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/باتگوئی" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/ŲØŲ§Ł†Ų¬ŁˆŁ„" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/بیسائو" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/ŲØŁ„Ł†ŲŖŲ§ŪŒŲ±" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/ŲØŲ±Ų§Ų²Ų§ŁˆŪŒŁ„" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/ŲØŁˆŲ¬ŁˆŁ…ŲØŁˆŲ±Ų§" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/قاهره" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/ŲÆŲ§Ų±Ų§Ł„ŲØŪŒŲ¶Ų§Ų”" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/سئوتا" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/Ś©ŁˆŁ†Ų§Ś©Ų±ŪŒ" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/داکار" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/دارالسلام" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/جیبوتی" #: timezones.h:23 msgid "Africa/Douala" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/ŲÆŁˆŲ§Ł„Ų§" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/Ų§Ł„Ų¹ŪŒŁˆŁ†" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/ŁŲ±ŪŒā€ŒŲŖŲ§ŁˆŁ†" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/ŚÆŲ§ŲØŁˆŲ±ŁˆŁ†ŪŒ" #: timezones.h:27 msgid "Africa/Harare" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/هراره" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/ŪŒŁˆŁ‡Ų§Ł†Ų³ŲØŁˆŲ±ŚÆ" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/کامپالا" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/Ų®Ų§Ų±Ų·ŁˆŁ…" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/Ś©ŪŒŚÆŲ§Ł„ŪŒ" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/Ś©ŪŒŁ†Ų“Ų§Ų³Ų§" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/Ł„Ų§ŚÆŁˆŲ³" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/Ł„ŪŒŲØŲ±ŁˆŪŒŁ„" #: timezones.h:37 msgid "Africa/Lome" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/Ł„ŁˆŁ…Ł‡" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/Ł„ŁˆŲ§Ł†ŲÆŲ§" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/Ł„ŁˆŲØŁˆŁ…ŲØŲ§Ų“ŪŒ" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/Ł„ŁˆŲ²Ų§Ś©Ų§" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/Ł…Ų§Ł„Ų§ŲØŁˆ" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/Ł…Ų§Ł¾ŁˆŲŖŁˆ" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/Ł…Ų²Ų±Łˆ" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/مبابان" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/Ł…ŁˆŚÆŲ§ŲÆŪŒŲ“Łˆ" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/Ł…ŁˆŁ†Ų±ŁˆŁˆŪŒŲ§" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/Ł†Ų§ŪŒŲ±ŁˆŲØŪŒ" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/نجامنا" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/Ł†ŪŒŲ§Ł…Ł‡" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/Ł†ŁˆŲ§Ś©Ų“ŁˆŲŖ" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/واگادوگو" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/Ł¾ŁˆŲ±ŲŖŁˆŁ†ŁˆŁˆ" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/سائو ŲŖŁˆŁ…Ł‡" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/ŲŖŪŒŁ…ŲØŁˆŚ©ŲŖŁˆ" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/طرابلس" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/ŲŖŁˆŁ†Ų³" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Ų§ŁŲ±ŪŒŁ‚Ų§/ŁˆŪŒŁ†ŲÆŁ‡ŁˆŚ©" #: timezones.h:60 msgid "America/Adak" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ایدک" #. comment for time zone America/Adak #: timezones.h:62 #, fuzzy msgid "Aleutian Islands" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/Ś©ŁˆŲ¦ŪŒŁ†Ų²Ł„Ł†ŲÆ" #: timezones.h:63 msgid "America/Anchorage" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§Ł†Ś©Ų±ŪŒŲ¬" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "زمان آلاسکا" #: timezones.h:66 msgid "America/Anguilla" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§Ł†ŚÆŁˆŪŒŁ„Ų§" #: timezones.h:67 msgid "America/Antigua" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§Ł†ŲŖŪŒŚÆŲ§" #: timezones.h:68 msgid "America/Araguaina" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų¢Ų±Ų§ŚÆŁˆŲ§ŪŒŁ†Ų§" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų¢Ų±Ś˜Ų§Ł†ŲŖŪŒŁ†/ŲØŁˆŲ¦Ł†ŁˆŲ³ā€ŒŲ¢ŪŒŲ±Ų³" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų¢Ų±Ś˜Ų§Ł†ŲŖŪŒŁ†/کاتامارکا" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 #, fuzzy msgid "America/Argentina/ComodRivadavia" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§ŪŒŁ†ŲÆŪŒŲ§Ł†Ų§/Ų§ŪŒŁ†ŲÆŪŒŲ§Ł†Ų§Ł¾ŁˆŁ„ŪŒŲ³" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų¢Ų±Ś˜Ų§Ł†ŲŖŪŒŁ†/کوردووا" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų¢Ų±Ś˜Ų§Ł†ŲŖŪŒŁ†/خوخوئی" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 #, fuzzy msgid "America/Argentina/La_Rioja" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų¢Ų±Ś˜Ų§Ł†ŲŖŪŒŁ†/Ų¢Ų±Ų§ŚÆŁˆŲ§ŪŒŁ†Ų§" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų¢Ų±Ś˜Ų§Ł†ŲŖŪŒŁ†/Ł…Ł†ŲÆŁˆŲ³Ų§" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 #, fuzzy msgid "America/Argentina/Rio_Gallegos" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§ŪŒŁ†ŲÆŪŒŲ§Ł†Ų§/Ł…Ų§Ų±Ł†ŚÆŁˆ" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 #, fuzzy msgid "America/Argentina/Salta" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§Ł†ŲŖŪŒŚÆŲ§" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 #, fuzzy msgid "America/Argentina/San_Juan" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§Ł†ŲŖŪŒŚÆŲ§" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 #, fuzzy msgid "America/Argentina/San_Luis" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§Ł†ŲŖŪŒŚÆŲ§" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 #, fuzzy msgid "America/Argentina/Tucuman" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§Ł†ŲŖŪŒŚÆŲ§" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 #, fuzzy msgid "America/Argentina/Ushuaia" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų¢Ų±Ų§ŚÆŁˆŲ§ŪŒŁ†Ų§" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/آروبا" #: timezones.h:109 msgid "America/Asuncion" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų¢Ų³ŁˆŁ†Ų³ŪŒŁˆŁ†" #: timezones.h:110 #, fuzzy msgid "America/Atikokan" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§Ł†ŲŖŪŒŚÆŲ§" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "" #: timezones.h:114 #, fuzzy msgid "America/Bahia" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/بوئاویؓتا" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/بوئاویؓتا" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/باربادوس" #: timezones.h:121 msgid "America/Belem" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŲØŁ„Ų¦ŪŒŁ†" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŲØŁ„ŪŒŲ²" #: timezones.h:125 #, fuzzy msgid "America/Blanc-Sablon" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ś©Ų§Ł†Ś©ŁˆŁ†" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/بوئاویؓتا" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/بوگوتا" #: timezones.h:132 msgid "America/Boise" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/بویسی" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŲØŁˆŲ¦Ł†ŁˆŲ³ā€ŒŲ¢ŪŒŲ±Ų³" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų®Ł„ŪŒŲ¬ Ś©Ł…ŲØŲ±ŪŒŲ¬" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 #, fuzzy msgid "America/Campo_Grande" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ś©ŪŒŁ…Ł†" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ś©Ų§Ł†Ś©ŁˆŁ†" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/کاراکاس" #: timezones.h:146 msgid "America/Catamarca" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/کاتامارکا" #: timezones.h:147 msgid "America/Cayenne" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ś©Ų§ŪŒŁ†" #: timezones.h:148 msgid "America/Cayman" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ś©ŪŒŁ…Ł†" #: timezones.h:149 msgid "America/Chicago" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ؓیکاگو" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "Ų§ŪŒŲ§Ł„Ų§ŲŖ متحده/Ł…Ų±Ś©Ų²ŪŒ" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ś†ŪŒŲ¦ŁˆŲ§Ų¦ŁˆŲ§" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 #, fuzzy msgid "America/Coral_Harbour" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/کوراسائو" #: timezones.h:156 msgid "America/Cordoba" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/کوردووا" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/کاستاریکا" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/کویاوا" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/کوراسائو" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŲÆŲ§ŁˆŲ³Ł†" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŲÆŲ§ŁˆŲ³Ł† کریک" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŲÆŁ†ŁˆŲ±" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "Ų§ŪŒŲ§Ł„Ų§ŲŖ متحده/Ś©ŁˆŁ‡Ų³ŲŖŲ§Ł†ŪŒ" #: timezones.h:174 msgid "America/Detroit" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/دترویت" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŲÆŁˆŁ…ŪŒŁ†ŪŒŚ©Ų§" #: timezones.h:178 msgid "America/Edmonton" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§ŲÆŁ…ŁˆŁ†ŲŖŁˆŁ†" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§Ł„Ų³Ų§Ł„ŁˆŲ§ŲÆŁˆŲ±" #: timezones.h:185 msgid "America/Ensenada" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/انسنادا" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŁŁˆŲ±ŲŖŲ§Ł„Ų²Ų§" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/فورت ŁˆŪŒŁ†" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŚÆŁ„ŪŒŲ³ بی" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŚÆŁˆŲÆŁ‡ŁˆŲØ" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "ŲØŪŒŲ“ā€ŒŲŖŲ± Ł…Ś©Ų§Ł†ā€ŒŁ‡Ų§" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų®Ł„ŪŒŲ¬ گوس" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/گراند تورک" #: timezones.h:200 msgid "America/Grenada" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŚÆŲ±Ł†ŪŒŲÆŲ§" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŚÆŁˆŲ§ŲÆŁ„ŁˆŁ¾" #: timezones.h:202 msgid "America/Guatemala" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŚÆŁˆŲ§ŲŖŁ…Ų§Ł„Ų§" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŚÆŁˆŲ§ŪŒŲ§Ś©ŪŒŁ„" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŚÆŁˆŪŒŲ§Ł†Ų§" #: timezones.h:207 msgid "America/Halifax" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł‡Ł„ŪŒŁŚ©Ų³" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł‡Ų§ŁˆŲ§Ł†Ų§" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§Ų±Ł…ŁˆŲ³ŪŒŁˆ" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§ŪŒŁ†ŲÆŪŒŲ§Ł†Ų§/Ų§ŪŒŁ†ŲÆŪŒŲ§Ł†Ų§Ł¾ŁˆŁ„ŪŒŲ³" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§ŪŒŁ†ŲÆŪŒŲ§Ł†Ų§/ناکس" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§ŪŒŁ†ŲÆŪŒŲ§Ł†Ų§/Ł…Ų§Ų±Ł†ŚÆŁˆ" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§ŪŒŁ†ŲÆŪŒŲ§Ł†Ų§/پترزبورگ" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§ŪŒŁ†ŲÆŪŒŲ§Ł†Ų§Ł¾ŁˆŁ„ŪŒŲ³" #: timezones.h:227 #, fuzzy msgid "America/Indiana/Tell_City" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§ŪŒŁ†ŲÆŪŒŲ§Ł†Ų§/ویوی" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§ŪŒŁ†ŲÆŪŒŲ§Ł†Ų§/ویوی" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 #, fuzzy msgid "America/Indiana/Vincennes" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§ŪŒŁ†ŲÆŪŒŲ§Ł†Ų§/ویوی" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 #, fuzzy msgid "America/Indiana/Winamac" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§ŪŒŁ†ŲÆŪŒŲ§Ł†Ų§/ویوی" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§ŪŒŁ†ŁˆŁˆŪŒŚ©" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§ŪŒŚ©Ł„ŁˆŲ¦ŲŖ" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų¬Ų§Ł…Ų§Ų¦ŪŒŚ©Ų§" #: timezones.h:246 msgid "America/Jujuy" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/خوخوئی" #: timezones.h:247 msgid "America/Juneau" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų¬ŁˆŁ†Łˆ" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ś©Ł†ŲŖŲ§Ś©ŪŒ/Ł„ŁˆŲ¦ŪŒŲ²ŁˆŪŒŁ„" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 #, fuzzy msgid "Eastern Time - Kentucky - Louisville area" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ś©Ł†ŲŖŲ§Ś©ŪŒ/Ł„ŁˆŲ¦ŪŒŲ²ŁˆŪŒŁ„" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ś©Ł†ŲŖŲ§Ś©ŪŒ/Ł…Ų§Ł†ŲŖŪŒŲ³Ł„Łˆ" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ناکس Ų§ŪŒŁ†ŲÆŪŒŲ§Ł†Ų§" #: timezones.h:257 msgid "America/La_Paz" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/لاپاس" #: timezones.h:258 msgid "America/Lima" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł„ŪŒŁ…Ų§" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł„ŁˆŲ³ā€ŒŲ¢Ł†Ų¬Ł„Ų³" #. comment for time zone America/Los_Angeles #: timezones.h:261 #, fuzzy msgid "Pacific Time" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/Ł†ŪŒŁˆŲ¦Ł‡" #: timezones.h:262 msgid "America/Louisville" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł„ŁˆŲ¦ŪŒŲ²ŁˆŪŒŁ„" #: timezones.h:263 msgid "America/Maceio" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł…Ų§Ų³ŪŒŁˆ" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł…Ų§Ł†Ų§ŚÆŁˆŲ¦Ų§" #: timezones.h:267 msgid "America/Manaus" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł…Ų§Ł†Ų§ŁˆŲ³" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 #, fuzzy msgid "America/Marigot" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł…Ų§Ų³ŪŒŁˆ" #: timezones.h:271 msgid "America/Martinique" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł…Ų§Ų±ŲŖŪŒŁ†ŪŒŚ©" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł…Ų§Ł†Ų§ŁˆŲ³" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ماساتلان" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł…Ł†ŲÆŁˆŲ³Ų§" #: timezones.h:279 msgid "America/Menominee" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł…Ł†Ų§Ł…ŪŒŁ†ŪŒ" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł…Ų±ŪŒŲÆŲ§" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł…Ś©Ų²ŪŒŚ©ŁˆŲ³ŪŒŲŖŪŒ" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł…ŪŒŚ©Ł„ŁˆŁ†" #: timezones.h:289 #, fuzzy msgid "America/Moncton" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§ŲÆŁ…ŁˆŁ†ŲŖŁˆŁ†" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł…ŁˆŁ†ŲŖŲ±Ų¦ŪŒ" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł…ŁˆŁ†ŲŖŁ‡ā€ŒŁˆŪŒŲÆŲ¦Łˆ" #: timezones.h:296 msgid "America/Montreal" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł…Ų§Ł†ŲŖŲ±ŪŒŲ§Ł„" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/مانتسرت" #: timezones.h:300 msgid "America/Nassau" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł†Ų§Ų³Ų§Ų¦Łˆ" #: timezones.h:301 msgid "America/New_York" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł†ŪŒŁˆŪŒŁˆŲ±Ś©" #. comment for time zone America/New_York #: timezones.h:303 #, fuzzy msgid "Eastern Time" msgstr "Ų§ŪŒŲ§Ł„Ų§ŲŖ متحده/Ų“Ų±Ł‚ŪŒ" #: timezones.h:304 msgid "America/Nipigon" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł†ŪŒŁ¾ŪŒŚÆŲ§Ł†" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł†ŁˆŁ…" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "زمان آلاسکا - Ų¢Ł„Ų§Ų³Ś©Ų§ŪŒ غربی" #: timezones.h:310 msgid "America/Noronha" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł†ŁˆŲ±ŁˆŁ†ŪŒŲ§" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "Ų¬Ų²ŪŒŲ±Ł‡ā€ŒŁ‡Ų§ŪŒ Ų¢ŲŖŁ„Ų§Ł†ŲŖŪŒŚ©" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŲÆŲ§Ś©ŁˆŲŖŲ§ŪŒā€ŒŲ“Ł…Ų§Ł„ŪŒ/مرکز" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 #, fuzzy msgid "America/North_Dakota/New_Salem" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŲÆŲ§Ś©ŁˆŲŖŲ§ŪŒā€ŒŲ“Ł…Ų§Ł„ŪŒ/مرکز" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł…Ų§Ł†Ų§ŚÆŁˆŲ¦Ų§" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/پاناما" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł¾Ų§Ł†ŚÆŁ†ŪŒŲ±ŲŖŁˆŁ†ŚÆ" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł¾Ų§Ų±Ų§Ł…Ų§Ų±ŪŒŲØŁˆ" #: timezones.h:327 msgid "America/Phoenix" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŁŪŒŁ†ŪŒŚ©Ų³" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł¾ŁˆŲ±ŲŖŁˆŁ¾Ų±Ł†Ų³" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/پورتو آکری" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/پورت آو Ų§Ų³Ł¾ŪŒŁ†" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ł¾ŁˆŲ±ŲŖŲ±ŁˆŁ„ŪŒŁˆ" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/پورتوریکو" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų±ŪŒŁ†ŪŒā€ŒŲ±ŪŒŁˆŲ±" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų®Ł„ŪŒŲ¬Ś© Ų±Ł†Ś©ŪŒŁ†" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/رسیفی" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų±Ų¬Ų§ŪŒŁ†Ų§" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 #, fuzzy msgid "America/Resolute" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŲØŁ„Ų¦ŪŒŁ†" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų±ŪŒŁˆŲØŲ±Ų§Ł†Ś©Łˆ" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/روساریو" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų³Ų§Ł†ŲŖŪŒŲ§ŚÆŁˆ" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 #, fuzzy msgid "America/Santarem" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų³Ų§Ł†ŲŖŪŒŲ§ŚÆŁˆ" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų³Ų§Ł†ŲŖŪŒŲ§ŚÆŁˆ" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų³Ų§Ł†ŲŖŁˆŲÆŁˆŁ…ŪŒŁ†ŚÆŁˆ" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų³Ų§Ų¦ŁˆŁ¾Ų§Ų¦ŁˆŁ„Łˆ" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų§Ų³Ś©ŁˆŲ±Ų³ŲØŪŒŲ³ŁˆŁ†" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/Ų“ŪŒŁ¾ā€ŒŲ±Ų§Ś©" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 #, fuzzy msgid "America/St_Barthelemy" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŲØŁ„Ų¦ŪŒŁ†" #: timezones.h:376 msgid "America/St_Johns" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/سنت جانز" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/سنت کیتس" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/سنت Ł„ŁˆŲ“Ų§" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/سنت ŲŖŲ§Ł…Ų³" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/سنت ŁˆŪŒŁ†Ų³Ł†ŲŖ" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/سویفت کرنت" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŲŖŚÆŁˆŲ³ŪŒŚÆŲ§Ł„Ł¾Ų§" #: timezones.h:387 msgid "America/Thule" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŲŖŁˆŁ„Ł‡" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/تاندر بی" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŲŖŪŒŲ®ŁˆŲ§Ł†Ų§" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 #, fuzzy msgid "America/Toronto" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŲŖŁˆŲ±ŲŖŁˆŁ„Ų§" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŲŖŁˆŲ±ŲŖŁˆŁ„Ų§" #: timezones.h:400 msgid "America/Vancouver" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŁˆŁ†Ś©ŁˆŁˆŲ±" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŁˆŪŒŲ±Ų¬ŪŒŁ†" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŁˆŲ§ŪŒŲŖā€ŒŁ‡ŁˆŲ±Ų³" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/ŁˆŪŒŁ†ŪŒŁ¾ŚÆ" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "Ų§Ł…Ų±ŪŒŚ©Ų§/یاکوتات" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Ų§Ł…Ų²ŪŒŚ©Ų§/ŪŒŁ„ŁˆŁ†Ų§ŪŒŁ" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Ų¬Ł†ŁˆŲØŚÆŲ§Ł†/کیسی" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Ų¬Ł†ŁˆŲØŚÆŲ§Ł†/دیویس" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Ų¬Ł†ŁˆŲØŚÆŲ§Ł†/ŲÆŁˆŁ…ŁˆŁ† ŲÆŁˆŲ±ŁˆŪŒŁ„" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "Ų¬Ł†ŁˆŲØŚÆŲ§Ł†/Ł…Ś©ā€ŒŁ…Ų±ŲÆŁˆ" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Ų¬Ł†ŁˆŲØŚÆŲ§Ł†/Ł…ŁˆŲ³Ł†" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Ų¬Ł†ŁˆŲØŚÆŲ§Ł†/Ł…Ś©ā€ŒŁ…Ų±ŲÆŁˆ" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Ų¬Ł†ŁˆŲØŚÆŲ§Ł†/پالمر" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 #, fuzzy msgid "Antarctica/Rothera" msgstr "Ų¬Ł†ŁˆŲØŚÆŲ§Ł†/قطب Ų¬Ł†ŁˆŲØ" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Ų¬Ł†ŁˆŲØŚÆŲ§Ł†/قطب Ų¬Ł†ŁˆŲØ" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Ų¬Ł†ŁˆŲØŚÆŲ§Ł†/سیووا" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Ų¬Ł†ŁˆŲØŚÆŲ§Ł†/واستوک" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "ؓمالگان/Ł„Ų§Ł†ŚÆā€ŒŪŒŪŒŲ±ā€ŒŲØŲ§ŪŒŁ†" #: timezones.h:450 msgid "Asia/Aden" msgstr "آسیا/عدن" #: timezones.h:451 msgid "Asia/Almaty" msgstr "آسیا/Ų¢Ł„Ł…Ų§ŲŖŪŒ" #: timezones.h:454 msgid "Asia/Amman" msgstr "آسیا/امان" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "آسیا/Ų§Ł†Ų§ŲÆŪŒŲ±" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "آسیا/Ų¢Ł‚ā€ŒŲŖŲ§Łˆ" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "آسیا/Ų¢Ł‚ā€ŒŲŖŁˆŲØŁ‡" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "آسیا/Ų¹Ų“Ł‚ā€ŒŲ¢ŲØŲ§ŲÆ" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "آسیا/Ų¹Ų“Ł‚ā€ŒŲ¢ŲØŲ§ŲÆ" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "آسیا/ŲØŲŗŲÆŲ§ŲÆ" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "آسیا/ŲØŲ­Ų±ŪŒŁ†" #: timezones.h:468 msgid "Asia/Baku" msgstr "آسیا/باکو" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "آسیا/ŲØŲ§Ł†Ś©ŁˆŚ©" #: timezones.h:470 msgid "Asia/Beirut" msgstr "آسیا/بیروت" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "آسیا/بیؓکک" #: timezones.h:472 msgid "Asia/Brunei" msgstr "آسیا/ŲØŲ±ŁˆŁ†Ų¦ŪŒ" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "آسیا/کلکته" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "آسیا/Ś†ŁˆŪŒŲØŲ§Ł„Ų³Ų§Ł†" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "آسیا/Ś†ŁˆŁ†ŚÆā€ŒŚ©ŪŒŁ†ŚÆ" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "آسیا/Ś†ŁˆŁ†ŚÆā€ŒŚ©ŪŒŁ†ŚÆ" #: timezones.h:481 msgid "Asia/Colombo" msgstr "آسیا/Ś©Ł„Ł…ŲØŁˆ" #: timezones.h:482 msgid "Asia/Dacca" msgstr "آسیا/داکا" #: timezones.h:483 msgid "Asia/Damascus" msgstr "آسیا/ŲÆŁ…Ų“Ł‚" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "آسیا/داکا" #: timezones.h:485 msgid "Asia/Dili" msgstr "آسیا/ŲÆŪŒŁ„ŪŒ" #: timezones.h:486 msgid "Asia/Dubai" msgstr "آسیا/دوبی" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "آسیا/ŲÆŁˆŲ“Ł†ŲØŁ‡" #: timezones.h:488 msgid "Asia/Gaza" msgstr "آسیا/غزه" #: timezones.h:489 msgid "Asia/Harbin" msgstr "آسیا/هاربن" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 #, fuzzy msgid "Asia/Ho_Chi_Minh" msgstr "آسیا/Ś†ŁˆŁ†ŚÆā€ŒŚ©ŪŒŁ†ŚÆ" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "آسیا/Ł‡Ł†ŚÆā€ŒŚ©Ł†ŚÆ" #: timezones.h:494 msgid "Asia/Hovd" msgstr "آسیا/Ł‡ŁˆŁˆŲÆ" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "آسیا/ایرکوتسک" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "آسیا/Ų§Ų³ŲŖŲ§Ł†ŲØŁˆŁ„" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "آسیا/جاکارتا" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "آسیا/جایاپورا" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "آسیا/دارالسلام" #: timezones.h:508 msgid "Asia/Kabul" msgstr "آسیا/کابل" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "آسیا/کامچاتکا" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "آسیا/Ś©Ų±Ų§Ś†ŪŒ" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "آسیا/کاؓغر" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 #, fuzzy msgid "Asia/Kathmandu" msgstr "آسیا/Ś©Ų§ŲŖŁ…Ų§Ł†ŲÆŁˆ" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "آسیا/Ś©Ų§ŲŖŁ…Ų§Ł†ŲÆŁˆ" #: timezones.h:518 #, fuzzy msgid "Asia/Kolkata" msgstr "آسیا/جاکارتا" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "آسیا/Ś©Ų±Ų³Ł†Ų§ŪŒŲ§Ų±Ų³Ś©" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "آسیا/Ś©ŁˆŲ§Ł„Ų§Ł„Ų§Ł…Ł¾ŁˆŲ±" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "آسیا/Ś©ŁˆŚ†ŪŒŁ†ŚÆ" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "آسیا/کویت" #: timezones.h:529 msgid "Asia/Macao" msgstr "آسیا/Ł…Ų§Ś©Ų§Ų¦Łˆ" #: timezones.h:530 msgid "Asia/Macau" msgstr "آسیا/Ł…Ų§Ś©Ų§Ų¦Łˆ" #: timezones.h:531 msgid "Asia/Magadan" msgstr "آسیا/مگادان" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "آسیا/ماکاسار" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "آسیا/Ł…Ų§Ł†ŪŒŁ„" #: timezones.h:538 msgid "Asia/Muscat" msgstr "آسیا/مسقط" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "آسیا/Ł†ŪŒŚ©ŁˆŲ²ŪŒŲ§" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "آسیا/ایرکوتسک" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "آسیا/Ł†ŁˆŁˆŲ³ŪŒŲØŲ±ŪŒŲ³Ś©" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "آسیا/Ł†ŁˆŁˆŲ³ŪŒŲØŲ±ŪŒŲ³Ś©" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 #, fuzzy msgid "Moscow+03 - Novosibirsk" msgstr "آسیا/Ł†ŁˆŁˆŲ³ŪŒŲØŲ±ŪŒŲ³Ś©" #: timezones.h:546 msgid "Asia/Omsk" msgstr "آسیا/Ų§ŁˆŁ…Ų³Ś©" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "آسیا/Ų§ŁˆŲ±Ų§Ł„" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "آسیا/Ł¾Ł†ŁˆŁ…ā€ŒŁ¾Ł†" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "آسیا/Ł¾ŁˆŁ†ŲŖŪŒŲ§Ł†Ų§Ś©" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "آسیا/Ł¾ŪŒŁˆŁ†ŚÆā€ŒŪŒŲ§Ł†ŚÆ" #: timezones.h:557 msgid "Asia/Qatar" msgstr "آسیا/قطر" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "آسیا/Ł‚Ų²Ł„ā€ŒŲ§ŁˆŲ±ŲÆŲ§" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "آسیا/Ų±Ų§Ł†ŚÆŁˆŁ†" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "آسیا/ریاض" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "آسیا/ریاض۸۷" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "آسیا/ریاض۸۸" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "آسیا/ریاض۸۹" #: timezones.h:566 msgid "Asia/Saigon" msgstr "آسیا/Ų³Ų§ŪŒŚÆŁˆŁ†" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "آسیا/Ų³Ų§Ų®Ų§Ł„ŪŒŁ†" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "آسیا/سمرقند" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "آسیا/Ų³Ų¦ŁˆŁ„" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "آسیا/Ų“Ų§Ł†ŚÆŁ‡Ų§ŪŒ" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "آسیا/Ų³Ł†ŚÆŲ§Ł¾ŁˆŲ±" #: timezones.h:578 msgid "Asia/Taipei" msgstr "آسیا/ŲŖŲ§ŪŒŁ¾Ł‡" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "آسیا/تاؓکند" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "آسیا/ŲŖŁŁ„ŪŒŲ³" #: timezones.h:583 msgid "Asia/Tehran" msgstr "آسیا/تهران" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "آسیا/ŲŖŁ„ā€ŒŲ¢ŁˆŪŒŁˆ" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "آسیا/ŲŖŪŒŁ…ŲØŁˆ" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "آسیا/ŲŖŪŒŁ…Ł¾Łˆ" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "آسیا/توکیو" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "آسیا/Ų§ŁˆŲ¬ŁˆŁ†ŚÆ پاندانگ" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "آسیا/Ų§ŁˆŁ„Ų§Ł†ā€ŒŲØŲ§ŲŖŁˆŲ±" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "آسیا/Ų§ŁˆŁ„Ų§Ł†ā€ŒŲØŲ§ŲŖŁˆŲ±" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "آسیا/Ų§ŁˆŲ±ŁˆŁ…Ś†ŪŒ" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "آسیا/ŁˆŪŒŁ†ŲŖŪŒŲ§Ł†" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "آسیا/ŁˆŁ„Ų§ŲÆŪŒŁˆŲ§Ų³ŲŖŁˆŚ©" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "آسیا/یاکوتسک" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "آسیا/ŪŒŚ©Ų§ŲŖŲ±ŪŒŁ†ŲØŁˆŲ±ŚÆ" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "آسیا/Ų§ŪŒŲ±ŁˆŲ§Ł†" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ اطلس/آسور" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ اطلس/ŲØŲ±Ł…ŁˆŲÆŲ§" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ اطلس/Ł‚Ł†Ų§Ų±ŪŒ" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ اطلس/کیپ ورد" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ اطلس/فارو" #: timezones.h:616 #, fuzzy msgid "Atlantic/Faroe" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ اطلس/فارو" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ اطلس/ŪŒŲ§Ł† Ł…Ų§ŪŒŁ†" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ اطلس/Ł…Ų§ŲÆŲ¦ŪŒŲ±Ų§" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ اطلس/ریکیاویک" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ اطلس/جورجیای Ų¬Ł†ŁˆŲØŪŒ" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ اطلس/Ų§Ų³ŲŖŁ†Ł„ŪŒ" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ اطلس/سنت هللنا" #: timezones.h:625 msgid "Australia/ACT" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/Ų³Ų±Ų²Ł…ŪŒŁ† پایتخت Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/Ų¢ŲÆŁ„Ų§ŪŒŲÆ" #. comment for time zone Australia/Adelaide #: timezones.h:628 #, fuzzy msgid "South Australia" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/Ų³Ų±Ų²Ł…ŪŒŁ† پایتخت Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/ŲØŲ±ŪŒŲ²ŲØŁ†" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/ŲØŲ±ŁˆŚ©Ł† Ł‡ŪŒŁ„" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/کانبرا" #: timezones.h:636 #, fuzzy msgid "Australia/Currie" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/کانبرا" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/ŲÆŲ§Ų±ŁˆŪŒŁ†" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 #, fuzzy msgid "Australia/Eucla" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/Ś©ŁˆŲ¦ŪŒŁ†Ų²Ł„Ł†ŲÆ" #. comment for time zone Australia/Eucla #: timezones.h:644 #, fuzzy msgid "Western Australia - Eucla area" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/Ś©ŁˆŲ¦ŪŒŁ†Ų²Ł„Ł†ŲÆ" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/Ł‡ŁˆŲØŲ§Ų±ŲŖ" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/Ų¬Ų²ŪŒŲ±Ł‡ā€ŒŪŒ لرد Ł‡Ų§Łˆ" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/Ł„ŪŒŁ†ŲÆŁ…Ł†" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/لرد Ł‡Ų§Łˆ" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/Ł…Ł„ŲØŁˆŲ±Ł†" #. comment for time zone Australia/Melbourne #: timezones.h:657 #, fuzzy msgid "Victoria" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/ویکتوریا" #: timezones.h:658 msgid "Australia/North" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/Ų“Ł…Ų§Ł„" #: timezones.h:659 msgid "Australia/NSW" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/Ł†ŪŒŁˆ ŁˆŪŒŁ„Ų² Ų¬Ł†ŁˆŲØŪŒ" #: timezones.h:660 msgid "Australia/Perth" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/پرت" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/Ś©ŁˆŲ¦ŪŒŁ†Ų²Ł„Ł†ŲÆ" #: timezones.h:664 msgid "Australia/South" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/Ų¬Ł†ŁˆŲØ" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/Ų³ŪŒŲÆŁ†ŪŒ" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/ŲŖŲ§Ų³Ł…Ų§Ł†ŪŒ" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/ویکتوریا" #: timezones.h:670 msgid "Australia/West" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/ŲŗŲ±ŲØ" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Ų§Ų³ŲŖŲ±Ų§Ł„ŪŒŲ§/ŪŒŁ†Ś©Ų§ŁˆŪŒŁ†Ų§" #: timezones.h:672 msgid "Brazil/Acre" msgstr "ŲØŲ±Ų²ŪŒŁ„/آکری" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "ŲØŲ±Ų²ŪŒŁ„/ŲÆŁ†ŁˆŲ±ŁˆŁ†ŪŒŲ§" #: timezones.h:674 msgid "Brazil/East" msgstr "ŲØŲ±Ų²ŪŒŁ„/ؓرق" #: timezones.h:675 msgid "Brazil/West" msgstr "ŲØŲ±Ų²ŪŒŁ„/ŲŗŲ±ŲØ" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "کانادا/اطلس" #: timezones.h:677 msgid "Canada/Central" msgstr "کانادا/Ł…Ų±Ś©Ų²ŪŒ" #: timezones.h:678 msgid "Canada/Eastern" msgstr "کانادا/Ų“Ų±Ł‚ŪŒ" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "کانادا/ؓرق Ų³Ų§Ų³Ś©Ś†ŪŒŁˆŲ§Ł†" #: timezones.h:680 msgid "Canada/Mountain" msgstr "کانادا/Ś©ŁˆŁ‡Ų³ŲŖŲ§Ł†ŪŒ" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "کانادا/Ł†ŪŒŁˆŁŲ§Ł†ŲÆŁ„Ł†ŲÆ" #: timezones.h:682 msgid "Canada/Pacific" msgstr "کانادا/Ų¢Ų±Ų§Ł…" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "کانادا/Ų³Ų§Ų³Ś©Ś†ŪŒŁˆŲ§Ł†" #: timezones.h:684 msgid "Canada/Yukon" msgstr "کانادا/ŪŒŁˆŚ©Ų§Ł†" #: timezones.h:685 msgid "CET" msgstr "ŁˆŁ‚ŲŖ Ł…Ų±Ś©Ų²ŪŒ اروپا" #: timezones.h:686 msgid "Chile/Continental" msgstr "Ų“ŪŒŁ„ŪŒ/Ų³Ų±Ų²Ł…ŪŒŁ† Ų§ŲµŁ„ŪŒ" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Ų“ŪŒŁ„ŪŒ/Ų¬Ų²ŪŒŲ±Ł‡ā€ŒŪŒ ایستر" #: timezones.h:688 msgid "CST6CDT" msgstr "" #: timezones.h:689 msgid "Cuba" msgstr "کوبا" #: timezones.h:690 msgid "EET" msgstr "ŁˆŁ‚ŲŖ ؓرق اروپا" #: timezones.h:691 msgid "Egypt" msgstr "Ł…ŲµŲ±" #: timezones.h:692 msgid "Eire" msgstr "Ų§ŁŪŒŲ±Ł‡" #: timezones.h:693 msgid "EST" msgstr "ŁˆŁ‚ŲŖ استاندارد اروپا" #: timezones.h:694 msgid "EST5EDT" msgstr "" #: timezones.h:695 msgid "Etc/GMT" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†" #: timezones.h:696 msgid "Etc/GMT0" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†Ū°" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†āˆ’Ū°" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†+Ū°" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†āˆ’Ū±" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†+Ū±" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†āˆ’Ū±Ū°" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†+Ū±Ū°" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†āˆ’Ū±Ū±" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†+Ū±Ū±" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†āˆ’Ū±Ū²" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†+Ū±Ū²" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†āˆ’Ū±Ū³" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†āˆ’Ū±Ū“" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†āˆ’Ū²" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†+Ū²" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†āˆ’Ū³" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†+Ū³" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†āˆ’Ū“" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†+Ū“" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†āˆ’Ūµ" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†+Ūµ" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†āˆ’Ū¶" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†+Ū¶" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†āˆ’Ū·" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†+Ū·" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†āˆ’Ūø" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†+Ūø" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†āˆ’Ū¹" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "ŲŗŪŒŲ±Ł‡/ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†+Ū¹" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "ŲŗŪŒŲ±Ł‡/ŚÆŲ±ŪŒŁ†ŪŒŚ†" #: timezones.h:726 msgid "Etc/UCT" msgstr "" #: timezones.h:727 msgid "Etc/Universal" msgstr "ŲŗŪŒŲ±Ł‡/Ų¬Ł‡Ų§Ł†ŪŒ" #: timezones.h:728 msgid "Etc/UTC" msgstr "ŲŗŪŒŲ±Ł‡/زمان هماهنگ Ų¬Ł‡Ų§Ł†ŪŒ" #: timezones.h:729 msgid "Etc/Zulu" msgstr "ŲŗŪŒŲ±Ł‡/Ų²ŁˆŁ„Łˆ" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "اروپا/آمستردام" #: timezones.h:731 msgid "Europe/Andorra" msgstr "اروپا/Ų¢Ł†ŲÆŁˆŲ±Ų§" #: timezones.h:732 msgid "Europe/Athens" msgstr "اروپا/آتن" #: timezones.h:733 msgid "Europe/Belfast" msgstr "ااروپا/بلفاست" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "اروپا/بلگراد" #: timezones.h:735 msgid "Europe/Berlin" msgstr "اروپا/ŲØŲ±Ł„ŪŒŁ†" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "اروپا/ŲØŲ±Ų§ŲŖŪŒŲ³Ł„Ų§ŁˆŲ§" #: timezones.h:737 msgid "Europe/Brussels" msgstr "اروپا/ŲØŲ±ŁˆŚ©Ų³Ł„" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "اروپا/ŲØŲ®Ų§Ų±Ų³ŲŖ" #: timezones.h:739 msgid "Europe/Budapest" msgstr "اروپا/بوداپست" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "اروپا/Ś©ŪŒŲ“ŪŒŁ†Ų¦Łˆ" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "اروپا/کپنهاگ" #: timezones.h:742 msgid "Europe/Dublin" msgstr "اروپا/ŲÆŁˆŲØŁ„ŪŒŁ†" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "اروپا/Ų®ŪŒŁˆŲ±Ų§Ł„ŲŖŲ§Ų±" #: timezones.h:744 #, fuzzy msgid "Europe/Guernsey" msgstr "اروپا/آتن" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "اروپا/Ł‡Ł„Ų³ŪŒŁ†Ś©ŪŒ" #: timezones.h:746 #, fuzzy msgid "Europe/Isle_of_Man" msgstr "اروپا/Ų§Ų³Ł„Łˆ" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "اروپا/Ų§Ų³ŲŖŲ§Ł†ŲØŁˆŁ„" #: timezones.h:748 #, fuzzy msgid "Europe/Jersey" msgstr "اروپا/پاریس" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "اروپا/Ś©Ų§Ł„ŪŒŁ†ŪŒŁ†ŚÆŲ±Ų§ŲÆ" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "اروپا/کیف" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "اروپا/Ł„ŪŒŲ³ŲØŁˆŁ†" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "اروپا/Ł„ŪŒŁˆŲØŁ„ŪŒŲ§Ł†Ų§" #: timezones.h:759 msgid "Europe/London" msgstr "اروپا/لندن" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "اروپا/Ł„ŁˆŚ©Ų²Ų§Ł…ŲØŁˆŲ±ŚÆ" #: timezones.h:761 msgid "Europe/Madrid" msgstr "اروپا/Ł…Ų§ŲÆŲ±ŪŒŲÆ" #: timezones.h:764 msgid "Europe/Malta" msgstr "اروپا/مالت" #: timezones.h:765 #, fuzzy msgid "Europe/Mariehamn" msgstr "اروپا/Ł…Ų§ŲÆŲ±ŪŒŲÆ" #: timezones.h:766 msgid "Europe/Minsk" msgstr "اروپا/Ł…ŪŒŁ†Ų³Ś©" #: timezones.h:767 msgid "Europe/Monaco" msgstr "اروپا/Ł…ŁˆŁ†Ų§Ś©Łˆ" #: timezones.h:768 msgid "Europe/Moscow" msgstr "اروپا/Ł…Ų³Ś©Łˆ" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "اروپا/Ł†ŪŒŚ©ŁˆŲ²ŪŒŲ§" #: timezones.h:772 msgid "Europe/Oslo" msgstr "اروپا/Ų§Ų³Ł„Łˆ" #: timezones.h:773 msgid "Europe/Paris" msgstr "اروپا/پاریس" #: timezones.h:774 #, fuzzy msgid "Europe/Podgorica" msgstr "اروپا/Ų¢Ł†ŲÆŁˆŲ±Ų§" #: timezones.h:775 msgid "Europe/Prague" msgstr "اروپا/پراگ" #: timezones.h:776 msgid "Europe/Riga" msgstr "اروپا/ریگا" #: timezones.h:777 msgid "Europe/Rome" msgstr "اروپا/رم" #: timezones.h:778 msgid "Europe/Samara" msgstr "اروپا/Ų³Ų§Ł…Ų§Ų±Ų§" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "اروپا/سان Ł…Ų§Ų±ŪŒŁ†Łˆ" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "اروپا/سارایوو" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "اروپا/Ų³ŪŒŁ…ŁŲ±ŁˆŁ¾Ł„" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "اروپا/Ų§Ų³Ś©ŁˆŁ¾ŪŒŁ‡" #: timezones.h:787 msgid "Europe/Sofia" msgstr "اروپا/ŲµŁˆŁŪŒŁ‡" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "اروپا/استکهلم" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "اروپا/ŲŖŲ§Ł„ŪŒŁ†" #: timezones.h:790 msgid "Europe/Tirane" msgstr "اروپا/ŲŖŪŒŲ±Ų§Ł†Ų§" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "اروپا/ŲŖŪŒŲ±Ų§Ų³Ł¾Ł„" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "اروپا/اوژگرت" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "اروپا/فادوتس" #: timezones.h:796 msgid "Europe/Vatican" msgstr "اروپا/ŁˆŲ§ŲŖŪŒŚ©Ų§Ł†" #: timezones.h:797 msgid "Europe/Vienna" msgstr "اروپا/ŁˆŪŒŁ†" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "اروپا/ŁˆŪŒŁ„Ł†ŪŒŁˆŲ³" #: timezones.h:799 #, fuzzy msgid "Europe/Volgograd" msgstr "اروپا/بلگراد" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "اروپا/ورؓو" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "اروپا/Ų²Ų§ŚÆŲ±ŲØ" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "اروپا/Ų²Ų§Ł¾Ų§Ų±ŁˆŚ˜ŪŒŁ‡" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "اروپا/زوریخ" #: timezones.h:808 msgid "Factory" msgstr "کارخانه" #: timezones.h:809 msgid "GB" msgstr "ŲØŲ±ŪŒŲŖŲ§Ł†ŪŒŲ§ŪŒ کبیر" #: timezones.h:810 msgid "GB-Eire" msgstr "ŲØŲ±ŪŒŲŖŲ§Ł†ŪŒŲ§ŪŒ کبیر-Ų§ŪŒŲ±Ł‡" #: timezones.h:811 msgid "GMT" msgstr "ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†" #: timezones.h:812 msgid "GMT0" msgstr "" #: timezones.h:813 msgid "GMT-0" msgstr "ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†āˆ’Ū°" #: timezones.h:814 msgid "GMT+0" msgstr "ŁˆŁ‚ŲŖ ŚÆŲ±ŪŒŁ†ŪŒŚ†+Ū°" #: timezones.h:815 msgid "Greenwich" msgstr "ŚÆŲ±ŪŒŁ†ŪŒŚ†" #: timezones.h:816 msgid "Hongkong" msgstr "Ł‡Ł†ŚÆā€ŒŚ©Ł†ŚÆ" #: timezones.h:817 msgid "HST" msgstr "ŁˆŁ‚ŲŖ استاندار Ł‡Ų§ŁˆŲ§ŪŒŪŒ" #: timezones.h:818 msgid "Iceland" msgstr "Ų§ŪŒŲ³Ł„Ł†ŲÆ" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ هند/Ų¢Ł†ŲŖŲ§Ł†Ų§Ł†Ų§Ų±ŪŒŁˆŁˆ" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ هند/Ś†Ų§ŚÆŁˆŲ³" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ هند/Ś©Ų±ŪŒŲ³Ł…Ų³" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ هند/کوکوس" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ هند/Ś©ŁˆŁ…ŁˆŲ±" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ هند/کرگلن" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ هند/مائه" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ هند/Ł…Ų§Ł„ŲÆŪŒŁˆ" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ هند/Ł…ŁˆŲ±ŪŒŲ³" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ هند//Ł…Ų§ŪŒŁˆŲŖ" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ هند/Ų±Ų¦ŁˆŁ†ŪŒŁˆŁ†" #: timezones.h:830 msgid "Iran" msgstr "Ų§ŪŒŲ±Ų§Ł†" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "Ų§Ų³Ų±Ų§Ų¦ŪŒŁ„" #: timezones.h:833 msgid "Jamaica" msgstr "Ų¬Ų§Ł…Ų§Ų¦ŪŒŚ©Ų§" #: timezones.h:834 msgid "Japan" msgstr "Ś˜Ų§Ł¾Ł†" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Ś©ŁˆŲ§Ų¬Ų§Ł„ŪŒŁ†" #: timezones.h:836 msgid "Libya" msgstr "Ł„ŪŒŲØŪŒ" #: timezones.h:837 msgid "MET" msgstr "ŁˆŁ‚ŲŖ اروپای Ł…ŪŒŲ§Ł†Ł‡" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Ł…Ś©Ų²ŪŒŚ©/Ų“Ł…Ų§Ł„ ŲØŲ§Ų®Ų§" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Ł…Ś©Ų²ŪŒŚ©/Ų¬Ł†ŁˆŲØ ŲØŲ§Ų®Ų§" #: timezones.h:840 msgid "Mexico/General" msgstr "Ł…Ś©Ų²ŪŒŚ©/Ų¹Ł…ŁˆŁ…ŪŒ" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "خاور Ł…ŪŒŲ§Ł†Ł‡/ریاض۸۷" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "خاور Ł…ŪŒŲ§Ł†Ł‡/ریاض۸۸" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "خاور Ł…ŪŒŲ§Ł†Ł‡/ریاض۸۹" #: timezones.h:844 msgid "MST" msgstr "ŁˆŁ‚ŲŖ استاندارد Ś©ŁˆŁ‡Ų³ŲŖŲ§Ł†ŪŒ" #: timezones.h:845 msgid "MST7MDT" msgstr "" #: timezones.h:846 msgid "Navajo" msgstr "Ł†ŁˆŲ§Ł‡Łˆ" #: timezones.h:847 msgid "NZ" msgstr "Ł†ŪŒŁˆŲ²ŪŒŁ„Ł†ŲÆ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/آپیا" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/Ų§ŁˆŚ©Ł„Ł†ŲÆ" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/چتم" #. comment for time zone Pacific/Chatham #: timezones.h:855 #, fuzzy msgid "Chatham Islands" msgstr "Ų“ŪŒŁ„ŪŒ/Ų¬Ų²ŪŒŲ±Ł‡ā€ŒŪŒ ایستر" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/تروک" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 #, fuzzy msgid "Pacific/Easter" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/ایستر" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/افاته" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/Ų§Ł†ŲÆŲ±ŲØŲ±ŪŒ" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/فاکائوفو" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/فیجی" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/ŁŁˆŁ†Ų§ŁŁˆŲŖŪŒ" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/ŚÆŲ§Ł„Ų§Ł¾Ų§ŚÆŁˆŲ³" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/'ŚÆŲ§Ł…ŲØŪŒŁ‡" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/ŚÆŁˆŲ§ŲÆŲ§Ł„Ś©Ų§Ł†Ų§Ł„" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/ŚÆŁˆŲ§Ł…" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/Ł‡ŁˆŁ†ŁˆŁ„ŁˆŁ„Łˆ" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "Ł‡Ų§ŁˆŲ§Ų¦ŪŒ" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/Ų¬Ų§Ł†Ų³ŲŖŁˆŁ†" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/Ś©Ų±ŪŒŲ³Ł…Ų³" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/کوسرای" #. comment for time zone Pacific/Kosrae #: timezones.h:888 #, fuzzy msgid "Kosrae" msgstr "Ų§Ų³Ų±Ų§Ų¦ŪŒŁ„" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/Ś©ŁˆŲ§Ų¬Ų§Ł„ŪŒŁ†" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/Ł…Ų¬ŁˆŲ±Łˆ" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/Ł…Ų§Ų±Ś©ŪŒŲ²Ų§Ų³" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/Ł…ŪŒŲÆŁˆŪŒ" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/Ł†Ų§Ų¦ŁˆŲ±Łˆ" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/Ł†ŪŒŁˆŲ¦Ł‡" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/Ł†ŁˆŲ±ŁŁˆŁ„Ś©" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/Ł†ŁˆŁ…Ų¦Ų§" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/پاگو پاگو" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/Ł¾Ų§Ł„Ų§Łˆ" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/Ł¾ŪŒŲŖŚ©Ų±Ł†" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/Ł¾ŁˆŁ†Ų§Ł¾ŪŒ" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/Ł¾ŁˆŁ†Ų§Ł¾ŪŒ" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/پورت Ł…ŁˆŲ±Ų²ŲØŪŒ" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/Ų±Ų§Ų±ŁˆŲŖŁˆŁ†ŚÆŲ§" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/Ų³Ų§ŪŒŁ¾Ų§Ł†" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/Ų³Ų§Ł…ŁˆŲ§" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/ŲŖŲ§Ł‡ŪŒŲŖŪŒ" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/تاراوا" #. comment for time zone Pacific/Tarawa #: timezones.h:921 #, fuzzy msgid "Gilbert Islands" msgstr "Ų“ŪŒŁ„ŪŒ/Ų¬Ų²ŪŒŲ±Ł‡ā€ŒŪŒ ایستر" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/ŲŖŁˆŁ†ŚÆŲ§ŲŖŲ§Ł¾Łˆ" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/تروک" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/ویک" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/ŁˆŲ§Ł„ŪŒŲ³" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Ų§Ł‚ŪŒŲ§Ł†ŁˆŲ³ Ų¢Ų±Ų§Ł…/یپ" #: timezones.h:929 msgid "Poland" msgstr "لهستان" #: timezones.h:930 msgid "Portugal" msgstr "پرتغال" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "" #: timezones.h:933 msgid "PST8PDT" msgstr "" #: timezones.h:934 msgid "ROC" msgstr "Ų¬Ł…Ł‡ŁˆŲ±ŪŒ خلق Ś†ŪŒŁ†" #: timezones.h:935 msgid "ROK" msgstr "Ų¬Ł…Ł‡ŁˆŲ±ŪŒ کره" #: timezones.h:936 msgid "Singapore" msgstr "Ų³Ł†ŚÆŲ§Ł¾ŁˆŲ±" #: timezones.h:937 msgid "Turkey" msgstr "ŲŖŲ±Ś©ŪŒŁ‡" #: timezones.h:938 msgid "UCT" msgstr "" #: timezones.h:939 msgid "Universal" msgstr "Ų¬Ł‡Ų§Ł†ŪŒ" #: timezones.h:940 msgid "US/Alaska" msgstr "Ų§ŪŒŲ§Ł„Ų§ŲŖ متحده/آلاسکا" #: timezones.h:941 msgid "US/Aleutian" msgstr "Ų§ŪŒŲ§Ł„Ų§ŲŖ متحده/Ų§Ł„ŁˆŲ“Ł†" #: timezones.h:942 msgid "US/Arizona" msgstr "Ų§ŪŒŁ„Ų§ŲŖ متحده/Ų¢Ų±ŪŒŲ²ŁˆŁ†Ų§" #: timezones.h:943 msgid "US/Central" msgstr "Ų§ŪŒŲ§Ł„Ų§ŲŖ متحده/Ł…Ų±Ś©Ų²ŪŒ" #: timezones.h:944 msgid "US/Eastern" msgstr "Ų§ŪŒŲ§Ł„Ų§ŲŖ متحده/Ų“Ų±Ł‚ŪŒ" #: timezones.h:945 msgid "US/East-Indiana" msgstr "Ų§ŪŒŲ§Ł„Ų§ŲŖ متحده/ؓرق Ų§ŪŒŁ†ŲÆŪŒŲ§Ł†Ų§" #: timezones.h:946 msgid "US/Hawaii" msgstr "Ų§ŪŒŲ§Ł„Ų§ŲŖ متحده/Ł‡Ų§ŁˆŲ§Ų¦ŪŒ" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "Ų§ŪŒŲ§Ł„Ų§ŲŖ متحده/Ų§ŪŒŁ†ŲÆŪŒŲ§Ł†Ų§ā€Ų§Ų³ŲŖŲ§Ų±Ś©" #: timezones.h:948 msgid "US/Michigan" msgstr "Ų§ŪŒŲ§Ł„Ų§ŲŖ متحده/Ł…ŪŒŲ“ŪŒŚÆŲ§Ł†" #: timezones.h:949 msgid "US/Mountain" msgstr "Ų§ŪŒŲ§Ł„Ų§ŲŖ متحده/Ś©ŁˆŁ‡Ų³ŲŖŲ§Ł†ŪŒ" #: timezones.h:950 msgid "US/Pacific" msgstr "Ų§ŪŒŲ§Ł„Ų§ŲŖ متحده/Ų¢Ų±Ų§Ł…" #: timezones.h:951 msgid "US/Samoa" msgstr "Ų§ŪŒŁ„Ų§ŲŖ متحده/Ų³Ų§Ł…ŁˆŲ§" #: timezones.h:952 msgid "UTC" msgstr "زمان هماهنگ Ų¬Ł‡Ų§Ł†ŪŒ" #: timezones.h:953 msgid "WET" msgstr "ŁˆŁ‚ŲŖ غربی اروپا" #: timezones.h:954 msgid "W-SU" msgstr "" #: timezones.h:955 msgid "Zulu" msgstr "Ų²ŁˆŁ„Łˆ" #, fuzzy #~ msgid "US/Pacific-New" #~ msgstr "Ų§ŪŒŲ§Ł„Ų§ŲŖ متحده/Ų¢Ų±Ų§Ł…" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/bg.po0000664000175000017500000020445114632072346023655 0ustar fabiofabio# translation of timezones.po to Bulgarian # This file is distributed under the same license as the PACKAGE package. # Copyright (C) 2006 THE PACKAGE'S COPYRIGHT HOLDER. # # ŠŠøŠŗŠ¾Š»Š°Š¹ Š”ŃŠŃ€Š¼Š°Š“Š¶ŠøŠµŠ²,преносим , 2004. # Doncho N. Gunchev , 2007. # Miroslav Ivanov , 2007. # Miroslav Ivanov , 2007. # Alexander Todorov , 2008. msgid "" msgstr "" "Project-Id-Version: timezones\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2008-03-10 21:50+0100\n" "Last-Translator: Alexander Todorov \n" "Language-Team: Bulgarian \n" "Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Африка/АбиГжан" #: timezones.h:2 msgid "Africa/Accra" msgstr "Африка/Акра" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Африка/АГис_Абеба" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Африка/Алжир" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Африка/Асмара" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Африка/Асмера" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Африка/Бамако" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Африка/Банги" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Африка/Банов" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Африка/Š‘ŠøŃŠ°Ńƒ" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Африка/Блантир" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Африка/Бразавил" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Африка/Š‘ŃƒŃŽŠ½Š±ŃƒŃ€Š°" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Африка/ŠšŠ°Š¹Ń€Š¾" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Африка/Казабланка" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Африка/Š”ŠµŃƒŠ»Ń‚Š°" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Африка/ŠšŠ¾Š½Š°ŠŗŃ€Šø" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Африка/Дакар" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Африка/Дар_ес_Далам" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Африка/Š”Š¶ŠøŠ±ŃƒŃ‚Šø" #: timezones.h:23 msgid "Africa/Douala" msgstr "Африка/Š”ŃƒŠ°Š»Š°" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Африка/Ел_ŠŃŽŠ½" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Африка/Š¤Ń€ŠøŠ¹Ń‚Š°ŃƒŠ½" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Африка/Габороне" #: timezones.h:27 msgid "Africa/Harare" msgstr "Африка/Єараре" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Африка/Š™Š¾Ń…Š°Š½ŠµŃŠ±ŃƒŃ€Š³" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Африка/Кампала" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Африка/Š„Š°Ń€Ń‚ŃƒŠ¼" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Африка/Кигали" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Африка/Киншаса" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Африка/Лагос" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Африка/Лебервил" #: timezones.h:37 msgid "Africa/Lome" msgstr "Африка/Ломе" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Африка/Š›ŃƒŠ°Š½Š“Š°" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Африка/Š›ŃƒŠ±ŃƒŠ¼Š±Š°ŃˆŠø" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Африка/Š›ŃƒŃŠ°ŠŗŠ°" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Африка/Малабо" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Африка/ŠœŠ°ŠæŃƒŃ‚Ńƒ" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Африка/ŠœŠ°ŃŠµŃ€Ńƒ" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Африка/Мбабане" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Африка/МогаГишу" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Африка/ŠœŠ¾Š½Ń€Š¾Š²ŠøŃ" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Африка/ŠŠ°Š¹Ń€Š¾Š±Šø" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Африка/ŠŠ“Š¶Š°Š¼ŠµŠ½Š°" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Африка/ŠŠµŠ¼ŠµŠ¹" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Африка/ŠŃƒŠ°ŠŗŃˆŠ¾Ń‚" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Африка/УагаГугу" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Африка/ŠŸŠ¾Ń€Ń‚Š¾-ŠŠ¾Š²Š¾" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Африка/Дао_Томе" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Африка/Š¢ŠøŠ¼Š±ŃƒŠŗŃ‚Ńƒ" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Африка/Триполи" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Африка/Тунис" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Африка/УинГхоек" #: timezones.h:60 msgid "America/Adak" msgstr "Америка/АГак" #. comment for time zone America/Adak #: timezones.h:62 #, fuzzy msgid "Aleutian Islands" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/КуинсленГ" #: timezones.h:63 msgid "America/Anchorage" msgstr "Америка/АнкориГж" #. comment for time zone America/Anchorage #: timezones.h:65 #, fuzzy msgid "Alaska Time" msgstr "ДАЩ/ŠŠ»ŃŃŠŗŠ°" #: timezones.h:66 msgid "America/Anguilla" msgstr "Америка/Агнила" #: timezones.h:67 msgid "America/Antigua" msgstr "Америка/ŠŠ½Ń‚ŠøŠ³ŃƒŠ°" #: timezones.h:68 msgid "America/Araguaina" msgstr "Америка/ŠŃ€Š°Š³ŃƒŠ°Š¹Š½Š°" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Америка/Аржентина/Š‘ŃƒŠµŠ½Š¾Ń_Айрес" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Америка/Аржентина/ŠšŠ°Ń‚Š°Š¼Š°Ń€ŠŗŠ°" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Америка/Аржентина/ŠšŠ¾Š¼Š¾Š“Š¾Ń€Š¾_Š ŠøŠ²Š°Š“Š°Š²ŠøŃ" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Америка/Аржентина/ŠšŠ¾Ń€Š“Š¾Š²Š°" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Америка/Аржентина/Š®ŠøŃŽ" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Америка/Аржентина/Риоха" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Америка/Аржентина/МенГоза" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Америка/Аржентина/Рио_Галегос" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 #, fuzzy msgid "America/Argentina/Salta" msgstr "Америка/Аржентина/Дан_Єуан" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Америка/Аржентина/Дан_Єуан" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 #, fuzzy msgid "America/Argentina/San_Luis" msgstr "Америка/Аржентина/Дан_Єуан" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Америка/Аржентина/Тукуман" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Америка/Аржентина/Š£ŃˆŃƒŠ°Ń" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "Америка/ŠŃ€ŃƒŠ±Š°" #: timezones.h:109 msgid "America/Asuncion" msgstr "Америка/Асунсион" #: timezones.h:110 msgid "America/Atikokan" msgstr "Америка/Атикокан" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "Америка/Атка" #: timezones.h:114 msgid "America/Bahia" msgstr "Америка/Š‘Š°Š¹Ń" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "Америка/Š‘Š°Š¹Ń" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "Америка/БарбейГос" #: timezones.h:121 msgid "America/Belem" msgstr "Америка/Белем" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "Америка/Белийз" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "Америка/Блан-Даблон" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Америка/Боа_Виста" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "Америка/Богота" #: timezones.h:132 msgid "America/Boise" msgstr "Америка/Бойсе" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Америка/Š‘ŃƒŠµŠ½Š¾Ń_Айрес" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Америка/ŠšŠµŠ¹Š¼Š±Ń€ŠøŠ“Š¶_Бей" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "Америка/Кампо-ГранГе" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "Америка/Канкун" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "Америка/ŠšŠ°Ń€Š°ŠŗŠ°Ń" #: timezones.h:146 msgid "America/Catamarca" msgstr "Америка/ŠšŠ°Ń‚Š°Š¼Š°Ń€ŠŗŠ°" #: timezones.h:147 msgid "America/Cayenne" msgstr "Америка/Каене" #: timezones.h:148 msgid "America/Cayman" msgstr "Америка/Кайман" #: timezones.h:149 msgid "America/Chicago" msgstr "Америка/Чикаго" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "ДАЩ/Централно" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Америка/Š§ŠøŃ…ŃƒŠ°Ń…ŃƒŠ°" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "Америка/ŠšŠ¾Ń€Š°Š»_Š„Š°Ń€Š±ŃŠŃ€" #: timezones.h:156 msgid "America/Cordoba" msgstr "Америка/ŠšŠ¾Ń€Š“Š¾Š²Š°" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Америка/ŠšŠ¾ŃŃ‚Š°_Рика" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Америка/Куиаба" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "Америка/ŠšŠ°Ń€Š°ŠŗŠ°Š¾" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Америка/Š”ŠµŠ½Š¼Š°Ń€ŠŗŃˆŠ°Š²Š½" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "Америка/Š”Š°ŃƒŠ½ŃŠ¾Š½" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Америка/Š”Š°ŃƒŠ½ŃŠ¾Š½_ŠšŃ€ŠøŠøŠŗ" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "Америка/Š”ŠµŠ½Š²ŃŠŃ€" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "ДАЩ/Планинско" #: timezones.h:174 msgid "America/Detroit" msgstr "Америка/Детройт" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "Америка/Доминика" #: timezones.h:178 msgid "America/Edmonton" msgstr "Америка/Š•Š“Š¼ŃŠŠ½Ń‚ŃŠŠ½" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "Америка/Š•ŠøŃ€ŃƒŠ½ŠµŠæŠµ" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Америка/Ел_ДалваГор" #: timezones.h:185 msgid "America/Ensenada" msgstr "Америка/ЕнсенаГа" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Америка/Форталеза" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Америка/Форт_Уейн" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Америка/Глайс_Бей" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "Америка/ГоГтаб" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Америка/Š“ŃƒŃƒŠ·_Бей" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Америка/ГранГ_Š¢ŃƒŃ€Šŗ" #: timezones.h:200 msgid "America/Grenada" msgstr "Америка/ГранаГа" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Америка/Š“Š²Š°Š“ŠµŠ»ŃƒŠæŠ°" #: timezones.h:202 msgid "America/Guatemala" msgstr "Америка/Гватемала" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Америка/Š“ŃƒŃŠŗŃƒŠøŠ»" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "Америка/Гвиана" #: timezones.h:207 msgid "America/Halifax" msgstr "Америка/Єалифакс" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "Америка/Єавана" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Америка/Š•Ń€Š¼Š¾ŃŠøŠ»ŃŒŠ¾" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Америка/ИнГиана/ИнГианаполис" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Америка/ИнГиана/Кнокс" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Америка/ИнГиана/ŠœŠ°Ń€ŠµŠ½Š³Š¾" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "Америка/ИнГиана/ŠŸŠøŃ‚ŃŠŃ€ŃŠ±ŃŠŃ€Š³" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Америка/ИнГианаполис" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "Америка/ИнГиана/граГ Телл" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Америка/ИнГиана/Вевай" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "Америка/ИнГиана/Винсен" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "Америка/ИнГиана/гр. Винамац" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "Америка/Инувик" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Америка/Š˜ŠŗŠ°Š»ŃƒŠøŃ‚" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "Америка/Ямайка" #: timezones.h:246 msgid "America/Jujuy" msgstr "Америка/Š®ŠøŃŽ" #: timezones.h:247 msgid "America/Juneau" msgstr "Америка/Юнеу" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Америка/ŠšŠµŠ½Ń‚ŃŠŠŗŠø/Š›ŃƒŠøŃŠ²ŠøŠ»" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 #, fuzzy msgid "Eastern Time - Kentucky - Louisville area" msgstr "Америка/ŠšŠµŠ½Ń‚ŃŠŠŗŠø/Š›ŃƒŠøŃŠ²ŠøŠ»" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Америка/ŠšŠµŠ½Ń‚ŃŠŠŗŠø/ŠœŠ¾Š½Ń‚ŠøŃ‡ŠµŠ»Š¾" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Америка/Кнокс_Ин" #: timezones.h:257 msgid "America/La_Paz" msgstr "Америка/Ла_Паз" #: timezones.h:258 msgid "America/Lima" msgstr "Америка/Лима" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Америка/Лос_АнГжелис" #. comment for time zone America/Los_Angeles #: timezones.h:261 #, fuzzy msgid "Pacific Time" msgstr "Тих_ŠžŠŗŠµŠ°Š½/ŠŠøŃƒŠµ" #: timezones.h:262 msgid "America/Louisville" msgstr "Америка/Š›ŃƒŠøŃŠ²ŠøŠ»" #: timezones.h:263 msgid "America/Maceio" msgstr "Америка/Масейо" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "Америка/Манагуа" #: timezones.h:267 msgid "America/Manaus" msgstr "Америка/Манагуа" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 msgid "America/Marigot" msgstr "Америка/о-в Дв. ŠœŠ°Ń€Ń‚ŠøŠ½/гр. ŠœŠ°Ń€ŠøŠ³Š¾" #: timezones.h:271 msgid "America/Martinique" msgstr "Америка/ŠœŠ°Ń€Ń‚ŠøŠ½ŠøŠŗŠ°" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "Америка/Манагуа" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Америка/ŠœŠ°Š·Š°Ń‚Š»Š°Š½" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "Америка/МенГоза" #: timezones.h:279 msgid "America/Menominee" msgstr "Америка/Меномине" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "Америка/ŠœŠµŃ€ŠøŠ“Š°" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Америка/Мексико_Дити" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "Америка/Микелон" #: timezones.h:289 msgid "America/Moncton" msgstr "Америка/ŠœŠ¾Š½ŠŗŃ‚ŃŠŠ½" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "Америка/ŠœŠ¾Š½Ń‚ŠµŃ€ŠµŠ¹" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "Америка/ŠœŠ¾Š½Ń‚ŠµŠ²ŠøŠ“ŠµŠ¾" #: timezones.h:296 msgid "America/Montreal" msgstr "Америка/ŠœŠ¾Š½Ń€ŠµŠ°Š»" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "Америка/ŠœŠ¾Š½ŃŠµŃ€Š°Ń‚" #: timezones.h:300 msgid "America/Nassau" msgstr "Америка/ŠŠ°ŃŠ°Ńƒ" #: timezones.h:301 msgid "America/New_York" msgstr "Америка/ŠŃŽ_Йорк" #. comment for time zone America/New_York #: timezones.h:303 #, fuzzy msgid "Eastern Time" msgstr "ДАЩ/Š˜Š·Ń‚Š¾Ń‡Š½Š¾" #: timezones.h:304 msgid "America/Nipigon" msgstr "Америка/ŠŠøŠæŠøŠ³Š¾Š½" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "Америка/ŠŠ¾Š¼Šµ" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "Америка/ŠŠ¾Ń€Š¾Š½Š°" #. comment for time zone America/Noronha #: timezones.h:312 #, fuzzy msgid "Atlantic islands" msgstr "Атлантик/ŠšŠ°Š½Š°Ń€Šø" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Америка/Деверна_Дакота/Š¦ŠµŠ½Ń‚ŃŠŃ€" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "Америка/Деверна_Дакота/ŠŃŽ_Дейлъм" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "Америка/Манагуа" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "Америка/Панама" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Америка/ŠŸŠ°Š½Š³Š½ŠøŃ€Ń‚ŃƒŠ½Š³" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Америка/ŠŸŠ°Ń€Š°Š¼Š°Ń€ŠøŠ±Š¾" #: timezones.h:327 msgid "America/Phoenix" msgstr "Америка/Финикс" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Америка/ŠŸŠ¾Ń€Ń‚-о-ŠŸŃ€ŠµŠ½Ń" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Америка/ŠŸŠ¾Ń€Ń‚_Акра" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Америка/ŠŸŠ¾Ń€Ń‚_о_Š˜ŃŠæŠ°Š½ŠøŃ" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Америка/ŠŸŠ¾Ń€Ń‚Š¾_Š’ŠµŠ»ŃŒŠ¾" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Америка/ŠŸŃƒŠµŃ€Ń‚Š¾_Рико" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Америка/Рейни_Š ŠøŠ²ŃŠŃ€" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Америка/Ранкин_Š˜Š½Š»ŠµŃ‚" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "Америка/Рециф" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "Америка/РеГжина" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 msgid "America/Resolute" msgstr "Америка/ŠŃƒŠ½Š°Š²ŃƒŃ‚/село Š ŠµŠ·Š¾Š»ŃŽŃ‚" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Америка/Рио_Бранко" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "Америка/Росарио" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "Америка/Š”Š°Š½Ń‚ŃŠ³Š¾" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 #, fuzzy msgid "America/Santarem" msgstr "Америка/Š”Š°Š½Ń‚ŃŠ³Š¾" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "Америка/Š”Š°Š½Ń‚ŃŠ³Š¾" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Америка/Данто_Доминго" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Америка/Дао_Пауло" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Америка/Š”ŠŗŠ¾Ń€ŠµŃŠ±ŠøŃŃŠŠ½Š“" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "Америка/Шипрок" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "Америка/о-ви Двети Бартоломей" #: timezones.h:376 msgid "America/St_Johns" msgstr "Америка/Дв_Š”Š¶Š¾ŃƒŠ½Ń" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Америка/Дв_ŠšŠøŃ†" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Америка/Дв_Š›ŃƒŃ†ŠøŃ" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Америка/Дв_Тома" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Америка/Дв_Винсент" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Америка/Š”ŃƒŠøŃ„Ń‚_ŠšŃŠŃ€ŠµŠ½Ń‚" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Америка/Тегусигалпа" #: timezones.h:387 msgid "America/Thule" msgstr "Америка/Туле" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Америка/Š¢ŃŠŠ½Š“ŃŠŃ€_Бей" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "Америка/Š¢ŠøŃ…ŃƒŠ°Š½Š°" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "Америка/Торонто" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "Америка/Тортола" #: timezones.h:400 msgid "America/Vancouver" msgstr "Америка/Š’Š°Š½ŠŗŃƒŠ²ŃŠŃ€" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "Америка/ВирГжин" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Америка/Уайтхорс" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Америка/Уинипек" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "Америка/ŠÆŠŗŃƒŃ‚Š°Ń‚" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Америка/Š™ŠµŠ»Š¾ŃƒŠ½Š°Š¹Ń„" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Антарктика/Кейси" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Антарктика/Девиз" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Антарктика/Š”ŃŽŠ¼Š¾Š½Š”ŃŽŠ£Ń€Š²ŠøŠ»" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "Антарктика/ŠœŠ°ŠŗŠœŃŠŃ€Š“Š¾" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Антарктика/Маусън" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Антарктика/ŠœŠ°ŠŗŠœŃŠŃ€Š“Š¾" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Антарктика/ŠŸŠ°Š»Š¼ŃŠŃ€" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Антарктика/Ротера" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Антарктика/Южен_ŠŸŠ¾Š»ŃŽŃ" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Антарктика/Диова" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Антарктика/Восток" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Антарктика/Лонгиейрбиен" #: timezones.h:450 msgid "Asia/Aden" msgstr "ŠŠ·ŠøŃ/АГен" #: timezones.h:451 msgid "Asia/Almaty" msgstr "ŠŠ·ŠøŃ/Алма_Ати" #: timezones.h:454 msgid "Asia/Amman" msgstr "ŠŠ·ŠøŃ/Аман" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "ŠŠ·ŠøŃ/АнаГир" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "ŠŠ·ŠøŃ/ŠŠŗŃ‚Š°Ńƒ" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "ŠŠ·ŠøŃ/ŠŃŃ‚Š¾Š²Šµ" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "ŠŠ·ŠøŃ/ŠŃˆŃ…Š°Š±Š°Š“" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "ŠŠ·ŠøŃ/ŠŃˆŃ…Š°Š±Š°Š“" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "ŠŠ·ŠøŃ/БагГаГ" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "ŠŠ·ŠøŃ/Бахрейн" #: timezones.h:468 msgid "Asia/Baku" msgstr "ŠŠ·ŠøŃ/Š‘Š°ŠŗŃƒ" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "ŠŠ·ŠøŃ/Банкок" #: timezones.h:470 msgid "Asia/Beirut" msgstr "ŠŠ·ŠøŃ/Š‘ŠµŠ¹Ń€ŃƒŃ‚" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "ŠŠ·ŠøŃ/Š‘ŠøŃˆŠŗŠµŠŗ" #: timezones.h:472 msgid "Asia/Brunei" msgstr "ŠŠ·ŠøŃ/Š‘Ń€ŃƒŠ½ŠµŠ¹" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "ŠŠ·ŠøŃ/ŠšŠ°Š»ŠŗŃƒŃ‚Š°" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "ŠŠ·ŠøŃ/Чойбалсан" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "ŠŠ·ŠøŃ/Єонконг" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "ŠŠ·ŠøŃ/Чунким" #: timezones.h:481 msgid "Asia/Colombo" msgstr "ŠŠ·ŠøŃ/Коломбо" #: timezones.h:482 msgid "Asia/Dacca" msgstr "ŠŠ·ŠøŃ/Дака" #: timezones.h:483 msgid "Asia/Damascus" msgstr "ŠŠ·ŠøŃ/Дамаск" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "ŠŠ·ŠøŃ/Дака" #: timezones.h:485 msgid "Asia/Dili" msgstr "ŠŠ·ŠøŃ/Дили" #: timezones.h:486 msgid "Asia/Dubai" msgstr "ŠŠ·ŠøŃ/Š”ŃƒŠ±Š°Š¹" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "ŠŠ·ŠøŃ/Š”ŃƒŃˆŠ°Š½Š±Šµ" #: timezones.h:488 msgid "Asia/Gaza" msgstr "ŠŠ·ŠøŃ/Газа" #: timezones.h:489 msgid "Asia/Harbin" msgstr "ŠŠ·ŠøŃ/Єарбин" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 #, fuzzy msgid "Asia/Ho_Chi_Minh" msgstr "ŠŠ·ŠøŃ/Єонконг" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "ŠŠ·ŠøŃ/Єонг_Конг" #: timezones.h:494 msgid "Asia/Hovd" msgstr "ŠŠ·ŠøŃ/ЄовГ" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "ŠŠ·ŠøŃ/Š˜Ń€ŠŗŃƒŃ‚ŃŠŗ" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "ŠŠ·ŠøŃ/Š˜ŃŃ‚Š°Š½Š±ŃƒŠ»" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "ŠŠ·ŠøŃ/Джакарта" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "ŠŠ·ŠøŃ/Š”Š¶Š°ŃŠæŃƒŃ€Š°" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "ŠŠ·ŠøŃ/Š™ŠµŃ€ŃƒŃŠ°Š»ŠøŠ¼" #: timezones.h:508 msgid "Asia/Kabul" msgstr "ŠŠ·ŠøŃ/Кабул" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "ŠŠ·ŠøŃ/ŠšŠ°Š¼Ń‡Š°Ń‚ŠŗŠ°" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "ŠŠ·ŠøŃ/ŠšŠ°Ń€Š°Ń‡Šø" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "ŠŠ·ŠøŃ/ŠšŠ°ŃˆŠ³Š°Ń€" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 #, fuzzy msgid "Asia/Kathmandu" msgstr "ŠŠ·ŠøŃ/ŠšŠ°Ń‚Š¼Š°Š½Š“Ńƒ" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "ŠŠ·ŠøŃ/ŠšŠ°Ń‚Š¼Š°Š½Š“Ńƒ" #: timezones.h:518 #, fuzzy msgid "Asia/Kolkata" msgstr "ŠŠ·ŠøŃ/Джакарта" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "ŠŠ·ŠøŃ/ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŠŗ" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "ŠŠ·ŠøŃ/Куала_Š›ŃƒŠ¼ŠæŃƒŃ€" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "ŠŠ·ŠøŃ/ŠšŃƒŃ‡ŠøŠ½Š³" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "ŠŠ·ŠøŃ/ŠšŃƒŠ²ŠµŠ¹Ń‚" #: timezones.h:529 msgid "Asia/Macao" msgstr "ŠŠ·ŠøŃ/Макао" #: timezones.h:530 msgid "Asia/Macau" msgstr "ŠŠ·ŠøŃ/Макао" #: timezones.h:531 msgid "Asia/Magadan" msgstr "ŠŠ·ŠøŃ/МагаГан" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "ŠŠ·ŠøŃ/ŠœŠ°ŠŗŠ°ŃŠ°Ń€" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "ŠŠ·ŠøŃ/Манила" #: timezones.h:538 msgid "Asia/Muscat" msgstr "ŠŠ·ŠøŃ/ŠœŃƒŃŠŗŠ°Ń‚" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "ŠŠ·ŠøŃ/ŠŠøŠŗŠ¾Š·ŠøŃ" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "ŠŠ·ŠøŃ/Š˜Ń€ŠŗŃƒŃ‚ŃŠŗ" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "ŠŠ·ŠøŃ/ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗ" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "ŠŠ·ŠøŃ/ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗ" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 #, fuzzy msgid "Moscow+03 - Novosibirsk" msgstr "ŠŠ·ŠøŃ/ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗ" #: timezones.h:546 msgid "Asia/Omsk" msgstr "ŠŠ·ŠøŃ/ŠžŠ¼ŃŠŗ" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "ŠŠ·ŠøŃ/ŠžŃ€ŠµŠ»" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "ŠŠ·ŠøŃ/Пном_Пен" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "ŠŠ·ŠøŃ/ŠŸŠ¾Š½Ń‚ŠøŠ°Š½Š°Šŗ" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "ŠŠ·ŠøŃ/ŠŸŃ…ŠµŠ½ŃŠ½" #: timezones.h:557 msgid "Asia/Qatar" msgstr "ŠŠ·ŠøŃ/ŠšŠ°Ń‚Š°Ń€" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "ŠŠ·ŠøŃ/ŠšŠøŠ·ŠøŠ»Š¾Ń€Š“Š°" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "ŠŠ·ŠøŃ/Рангун" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "ŠŠ·ŠøŃ/Š ŠøŃŠ“" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "ŠŠ·ŠøŃ/Š ŠøŃŠ“87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "ŠŠ·ŠøŃ/Š ŠøŃŠ“88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "ŠŠ·ŠøŃ/Š ŠøŃŠ“89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "ŠŠ·ŠøŃ/Єошимин" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "ŠŠ·ŠøŃ/Дахалин" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "ŠŠ·ŠøŃ/ДамарканГ" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "ŠŠ·ŠøŃ/Деул" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "ŠŠ·ŠøŃ/Шанхай" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "ŠŠ·ŠøŃ/Š”ŠøŠ½Š³Š°ŠæŃƒŃ€" #: timezones.h:578 msgid "Asia/Taipei" msgstr "ŠŠ·ŠøŃ/Тайпей" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "ŠŠ·ŠøŃ/Š¢Š°ŃˆŠŗŠµŠ½Ń‚" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "ŠŠ·ŠøŃ/Тбилиси" #: timezones.h:583 msgid "Asia/Tehran" msgstr "ŠŠ·ŠøŃ/Техеран" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "ŠŠ·ŠøŃ/Тел_Авив" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "ŠŠ·ŠøŃ/Тимбу" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "ŠŠ·ŠøŃ/Š¢ŠøŠ¼Ń„Ńƒ" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "ŠŠ·ŠøŃ/Токио" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "ŠŠ·ŠøŃ/Юнг_ПаГан" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "ŠŠ·ŠøŃ/Уан_Батор" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "ŠŠ·ŠøŃ/Улан_Батор" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "ŠŠ·ŠøŃ/Š£Ń€ŃƒŠ¼ŃŽ" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "ŠŠ·ŠøŃ/Š’ŠøŠµŠ¼Ń‚ŃŠ½" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "ŠŠ·ŠøŃ/ВлаГивосток" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "ŠŠ·ŠøŃ/ŠÆŠŗŃƒŃ‚ŃŠŗ" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "ŠŠ·ŠøŃ/Š•ŠŗŠ°Ń‚ŠµŃ€ŠøŠ½Š±ŃƒŃ€Š³" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "ŠŠ·ŠøŃ/Ереван" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Атлантик/Азори" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Атлантик/Š‘ŠµŃ€Š¼ŃƒŠ“Š°" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Атлантик/ŠšŠ°Š½Š°Ń€Šø" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Атлантик/Зелени_ŠŠ¾Ń" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Атлантик/Фериори" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "Атлантик/Š¤Š°Ń€ŃŒŠ¾Ń€ŃŠŗŠø о-ви" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Атлантик/Ян_Майен" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Атлантик/ŠœŠ°Š“ŠµŠ¹Ń€Š°" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Атлантик/Š ŠµŠ¹ŠŗŃŠ²ŠøŠŗ" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Атлантик/Южна_Š”Š¶Š¾Ń€Š“Š¶ŠøŃ" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Атлантик/Дтенли" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Атлантик/Дв_Елена" #: timezones.h:625 msgid "Australia/ACT" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/АКТ" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/АГелаиГа" #. comment for time zone Australia/Adelaide #: timezones.h:628 #, fuzzy msgid "South Australia" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/АКТ" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Бризбейн" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Š‘Ń€Š¾ŠŗŃŠŠ½_Єил" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/ŠšŠ°Š½Š±ŠµŃ€Š°" #: timezones.h:636 msgid "Australia/Currie" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/ŠšŃŠŃ€Šø" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Дарвин" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 msgid "Australia/Eucla" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Š•ŃƒŠŗŠ»Š°" #. comment for time zone Australia/Eucla #: timezones.h:644 #, fuzzy msgid "Western Australia - Eucla area" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Š•ŃƒŠŗŠ»Š°" #: timezones.h:645 msgid "Australia/Hobart" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Єобарт" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Š›Š„Š˜" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/ЛинГеман" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/ЛорГ_Єове" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/ŠœŠµŠ»Š±ŃŠŃ€Š½" #. comment for time zone Australia/Melbourne #: timezones.h:657 #, fuzzy msgid "Victoria" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Š’ŠøŠŗŃ‚Š¾Ń€ŠøŃ" #: timezones.h:658 msgid "Australia/North" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Девер" #: timezones.h:659 msgid "Australia/NSW" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/ŠŸŠµŃ€Š“" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/КуинсленГ" #: timezones.h:664 msgid "Australia/South" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Юг" #: timezones.h:665 msgid "Australia/Sydney" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/ДиГней" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Š¢Š°ŃŠ¼Š°Š½ŠøŃ" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Š’ŠøŠŗŃ‚Š¾Ń€ŠøŃ" #: timezones.h:670 msgid "Australia/West" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/ЗапаГ" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ/Янковина" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Š‘Ń€Š°Š·ŠøŠ»ŠøŃ/Акре" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Š‘Ń€Š°Š·ŠøŠ»ŠøŃ/Де_ŠŠ¾Ń€Š¾Š½Š°" #: timezones.h:674 msgid "Brazil/East" msgstr "Š‘Ń€Š°Š·ŠøŠ»ŠøŃ/Š˜Š·Ń‚Š¾Šŗ" #: timezones.h:675 msgid "Brazil/West" msgstr "Š‘Ń€Š°Š·ŠøŠ»ŠøŃ/ЗапаГ" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "КанаГа/Атлантик" #: timezones.h:677 msgid "Canada/Central" msgstr "КанаГа/Централна" #: timezones.h:678 msgid "Canada/Eastern" msgstr "КанаГа/Š˜Š·Ń‚Š¾Ń‡Š½Š°" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "КанаГа/Š˜Š·Ń‚Š¾Ń‡ŠµŠ½Š”Š°ŃŠŗŠ°Ń‡ŠµŃƒŠ°Š½" #: timezones.h:680 msgid "Canada/Mountain" msgstr "КанаГа/Планинска" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "КанаГа/ŠŃŽŃ„Š°ŃƒŠ½Š“Š»ŠµŠ½Š“" #: timezones.h:682 msgid "Canada/Pacific" msgstr "КанаГа/ŠŸŠ°ŃŠøŃ„ŠøŠŗ" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "КанаГа/Š”Š°ŃŠŗŠ°Ń‡ŠµŃƒŠ°Š½" #: timezones.h:684 msgid "Canada/Yukon" msgstr "КанаГа/Юкон" #: timezones.h:685 msgid "CET" msgstr "ДЕТ" #: timezones.h:686 msgid "Chile/Continental" msgstr "Чили/ŠšŠ¾Š½Ń‚ŠøŠ½ŠµŠ½Ń‚Š°Š»Š½Š¾" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Чили/ВеликГенски_ŠžŃŃ‚Ń€Š¾Š²Šø" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Куба" #: timezones.h:690 msgid "EET" msgstr "ЕЕТ" #: timezones.h:691 msgid "Egypt" msgstr "Египет" #: timezones.h:692 msgid "Eire" msgstr "Ейре" #: timezones.h:693 msgid "EST" msgstr "Š•SŠ¢" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Š“Ń€ŠøŠ½ŃƒŠøŃ‡" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Универсално" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Š—ŃƒŠ»Ńƒ" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Европа/АмстерГам" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Европа/АнГора" #: timezones.h:732 msgid "Europe/Athens" msgstr "Европа/Атина" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Европа/Белфаст" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Европа/БелграГ" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Европа/Берлин" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Европа/Братислава" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Европа/Š‘Ń€ŃŽŠŗŃŠµŠ»" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Европа/Š‘ŃƒŠŗŃƒŃ€ŠµŃ‰" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Европа/Š‘ŃƒŠ“Š°ŠæŠµŃ‰Š°" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Европа/Чисинау" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Европа/ŠšŠ¾ŠæŠµŠ½Ń…Š°Š³ŠµŠ½" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Европа/Š”ŃŠŠ±Š»ŠøŠ½" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Европа/Гибралтар" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Европа/Гернси" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Европа/Єелзинки" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Европа/о-в Ман" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Европа/Š˜ŃŃ‚Š°Š½Š±ŃƒŠ»" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Европа/Š”Š¶ŃŠŃ€ŃŠø" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Европа/ŠšŠ°Š»ŠøŠ½ŠøŠ½Š³Ń€Š°Š“" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Европа/Киев" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Европа/Лисабон" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Европа/Š›ŃŽŠ±Š»ŃŠ½Š°" #: timezones.h:759 msgid "Europe/London" msgstr "Европа/ЛонГон" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Европа/Š›ŃŽŠŗŃŠµŠ¼Š±ŃƒŃ€Š³" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Европа/ŠœŠ°Š“Ń€ŠøŠ“" #: timezones.h:764 msgid "Europe/Malta" msgstr "Европа/ŠœŠ°Š»Ń‚Š°" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Европа/ŠœŠ°Ń€ŠøŠµŃ…Š°Š¼Š½" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Европа/Минск" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Европа/Монако" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Европа/Москва" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Европа/ŠŠøŠŗŠ¾Š·ŠøŃ" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Европа/ŠžŃŠ»Š¾" #: timezones.h:773 msgid "Europe/Paris" msgstr "Европа/ŠŸŠ°Ń€ŠøŠ¶" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Европа/ŠŸŠ¾Š“Š³Š¾Ń€ŠøŃ†Š°" #: timezones.h:775 msgid "Europe/Prague" msgstr "Европа/ŠŸŃ€Š°Š³Š°" #: timezones.h:776 msgid "Europe/Riga" msgstr "Европа/Рига" #: timezones.h:777 msgid "Europe/Rome" msgstr "Европа/Рим" #: timezones.h:778 msgid "Europe/Samara" msgstr "Европа/Дамара" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Европа/Дан_ŠœŠ°Ń€ŠøŠ½Š¾" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Европа/Дараево" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Европа/Димферопол" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Европа/Дкопие" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Европа/Š”ŠžŠ¤Š˜ŠÆ" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Европа/Дтокхолм" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Европа/Талин" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Европа/Тирана" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Европа/Тирасопол" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Европа/УжгороГ" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Европа/Š’Š°Š“ŃƒŃ†" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Европа/Ватикана" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Европа/Виена" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Европа/Š’ŠøŠ»Š½ŃŽŃ" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Европа/ВолгограГ" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Европа/Š’Š°Ń€ŃˆŠ°Š²Š°" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Европа/Загреб" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Европа/Запорожие" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Европа/Š¦ŃŽŃ€ŠøŃ…" #: timezones.h:808 msgid "Factory" msgstr "Фабричен" #: timezones.h:809 msgid "GB" msgstr "Š’Š‘" #: timezones.h:810 msgid "GB-Eire" msgstr "Š’Š‘-Ейре" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Š“Ń€ŠøŠ½ŃƒŠøŃ‡" #: timezones.h:816 msgid "Hongkong" msgstr "Єонг_Конг" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Š˜ŃŠ»Š°Š½Š“ŠøŃ" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "ИнГийски/Антананариво" #: timezones.h:820 msgid "Indian/Chagos" msgstr "ИнГийски/Чагос" #: timezones.h:821 msgid "Indian/Christmas" msgstr "ИнГийски/КолеГа" #: timezones.h:822 msgid "Indian/Cocos" msgstr "ИнГийски/Кокос" #: timezones.h:823 msgid "Indian/Comoro" msgstr "ИнГийски/ŠšŠ¾Š¼Š¾Ń€Šø" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "ИнГийски/ŠšŠ°Ń€Š°ŃƒŠ»ŠµŠ½" #: timezones.h:825 msgid "Indian/Mahe" msgstr "ИнГийски/ŠœŠ°Ń…Šµ" #: timezones.h:826 msgid "Indian/Maldives" msgstr "ИнГийски/МалГиви" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "ИнГийски/ŠœŠ°Ń€Ń‚ŠøŠ½ŠøŠŗŠ°" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "ИнГийски/ŠœŠ°ŃŒŠ¾Ń‚Šµ" #: timezones.h:829 msgid "Indian/Reunion" msgstr "ИнГийски/Š ŠµŃŽŠ½ŠøŠ¾Š½" #: timezones.h:830 msgid "Iran" msgstr "Š˜Ń€Š°Š½" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "Š˜Š·Ń€Š°ŠµŠ»" #: timezones.h:833 msgid "Jamaica" msgstr "Ямайка" #: timezones.h:834 msgid "Japan" msgstr "ŠÆŠæŠ¾Š½ŠøŃ" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "ŠšŃƒŠ°ŃŠ»ŠµŠøŠ½" #: timezones.h:836 msgid "Libya" msgstr "Š›ŠøŠ±ŠøŃ" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Мексико/Š‘Š°Ń_ŠŠ¾Ń€Ń‚Šµ" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Мексико/Š‘Š°ŃŠ”ŃƒŃ€" #: timezones.h:840 msgid "Mexico/General" msgstr "Мексико/ŠžŠ±Ń‰Š¾" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Š‘Š»ŠøŠ·ŃŠŠŗŠ˜Š·Ń‚Š¾Šŗ/Š ŠøŃŠ“87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Š‘Š»ŠøŠ·ŃŠŠŗŠ˜Š·Ń‚Š¾Šŗ/Š ŠøŃŠ“88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Š‘Š»ŠøŠ·ŃŠŠŗŠ˜Š·Ń‚Š¾Šŗ/Š ŠøŃŠ“89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "ŠŠ°Š²Š°Ń…Š¾" #: timezones.h:847 msgid "NZ" msgstr "ŠŠ—" #: timezones.h:848 msgid "NZ-CHAT" msgstr "ŠŠ—-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Тих ŠžŠŗŠµŠ°Š½/ŠŠæŠøŃ" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Тих ŠžŠŗŠµŠ°Š½/ŠžŃƒŠŗŠ»ŠµŠ½Š“" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Тих ŠžŠŗŠµŠ°Š½/Чатам" #. comment for time zone Pacific/Chatham #: timezones.h:855 #, fuzzy msgid "Chatham Islands" msgstr "Чили/ВеликГенски_ŠžŃŃ‚Ń€Š¾Š²Šø" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Š¢Ń€ŃƒŠŗ" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 msgid "Pacific/Easter" msgstr "Тих ŠžŠŗŠµŠ°Š½/Š˜Š·Ń‚Š¾Ń‡ŠµŠ½" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Ефате" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Š•Š½Š“ŠµŃ€Š±ŃŠŃ€Šø" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Факаофо" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Тих_ŠžŠŗŠµŠ°Š½/ФиГжи" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Š¤ŃƒŠ½Š°Ń„ŃƒŃ‚Šø" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Галапагос" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Гамбиер" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Š“ŃƒŠ°Š“Š°Š»ŠŗŠ°Š½Š°Š»" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Š“ŃƒŠ°Š¼" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Єонолулу" #. comment for time zone Pacific/Honolulu #: timezones.h:879 #, fuzzy msgid "Hawaii" msgstr "ДАЩ/Єаваи" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Š”Š¶Š¾Š½ŃŃ‚ŃŠŠ½" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Тих_ŠžŠŗŠµŠ°Š½/ŠšŠøŃ€ŠøŃ‚ŠøŠ¼Š°Ń‚Šø" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Тих_ŠžŠŗŠµŠ°Š½/ŠšŠ¾ŃŃ€Š°Šµ" #. comment for time zone Pacific/Kosrae #: timezones.h:888 #, fuzzy msgid "Kosrae" msgstr "Š˜Š·Ń€Š°ŠµŠ»" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Тих_ŠžŠŗŠµŠ°Š½/ŠšŃƒŠ°ŃŠ»ŠµŠøŠ½" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Тих_ŠžŠŗŠµŠ°Š½/ŠœŠ°Š¹Š¾Ń€" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Тих_ŠžŠŗŠµŠ°Š½/ŠœŠ°Ń€ŠŗŃƒŠµŃŠ°Ń" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Тих_ŠžŠŗŠµŠ°Š½/МиГуей" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Тих_ŠžŠŗŠµŠ°Š½/ŠŠ°ŃƒŃ€Ńƒ" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Тих_ŠžŠŗŠµŠ°Š½/ŠŠøŃƒŠµ" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Тих_ŠžŠŗŠµŠ°Š½/ŠŠ¾Ń€Ń„Š¾Š»Šŗ" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Тих_ŠžŠŗŠµŠ°Š½/ŠŃƒŠ¼ŠµŃ" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Паго_Паго" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Палау" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Тих_ŠžŠŗŠµŠ°Š½/ŠŸŠøŃ‚ŠŗŠ°ŠøŠ¼" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Понапе" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Понапе" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Тих_ŠžŠŗŠµŠ°Š½/ŠŸŠ¾Ń€Ń‚_ŠœŠ¾Ń€ŠµŃŠ±Šø" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Раротонга" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Дайпан" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Дамоа" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Таити" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Тарава" #. comment for time zone Pacific/Tarawa #: timezones.h:921 #, fuzzy msgid "Gilbert Islands" msgstr "Чили/ВеликГенски_ŠžŃŃ‚Ń€Š¾Š²Šø" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Š¢Š¾Š½Š³Š°Ń‚Š°ŠæŃƒ" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Š¢Ń€ŃƒŠŗ" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Уейк" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Тих_ŠžŠŗŠµŠ°Š½/Уалис" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Тих_ŠžŠŗŠµŠ°Š½/ŠÆŠæ" #: timezones.h:929 msgid "Poland" msgstr "Полша" #: timezones.h:930 msgid "Portugal" msgstr "ŠŸŠ¾Ń€Ń‚ŃƒŠ³Š°Š»ŠøŃ" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Š”ŠøŠ½Š³Š°ŠæŃƒŃ€" #: timezones.h:937 msgid "Turkey" msgstr "Š¢ŃƒŃ€Ń†ŠøŃ" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Универсално" #: timezones.h:940 msgid "US/Alaska" msgstr "ДАЩ/ŠŠ»ŃŃŠŗŠ°" #: timezones.h:941 msgid "US/Aleutian" msgstr "ДАЩ/ŠŃƒŠ»ŠµŃ‚ŠøŃ" #: timezones.h:942 msgid "US/Arizona" msgstr "ДАЩ/Аризона" #: timezones.h:943 msgid "US/Central" msgstr "ДАЩ/Централно" #: timezones.h:944 msgid "US/Eastern" msgstr "ДАЩ/Š˜Š·Ń‚Š¾Ń‡Š½Š¾" #: timezones.h:945 msgid "US/East-Indiana" msgstr "ДАЩ/Š˜Š·Ń‚Š¾Ń‡Š½Š°_ИнГиана" #: timezones.h:946 msgid "US/Hawaii" msgstr "ДАЩ/Єаваи" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "ДАЩ/ИнГиана-Дтарк" #: timezones.h:948 msgid "US/Michigan" msgstr "ДАЩ/ŠœŠøŃ‡ŠøŠ³Š°Š½" #: timezones.h:949 msgid "US/Mountain" msgstr "ДАЩ/Планинско" #: timezones.h:950 msgid "US/Pacific" msgstr "ДАЩ/Тихоокеанско" #: timezones.h:951 msgid "US/Samoa" msgstr "ДАЩ/Дамоа" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Š—ŃƒŠ»Ńƒ" #~ msgid "US/Pacific-New" #~ msgstr "ДАЩ/ŠŠ¾Š²Š° Тихоокеанска зона" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/sr@latin.po0000664000175000017500000020004014632072346025027 0ustar fabiofabio# Serbian(Latin) translations for timezones # Copyright (C) 2005 Red Hat, Inc. # This file is distributed under the same license as the timezones package. # Zoltan Čala , 1999. # MiloÅ” Komarčević , 2005. # Igor Miletic , 2008. # msgid "" msgstr "" "Project-Id-Version: timezones\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-04-20 22:13+0100\n" "Last-Translator: MiloÅ” Komarčević \n" "Language-Team: Serbian \n" "Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Afrika/Abidžan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Afrika/Akra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Afrika/Adis_Abeba" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Afrika/Alžir" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Afrika/Asmara" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Afrika/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Afrika/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Afrika/Banguj" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Afrika/Bandžul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Afrika/Bisau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Afrika/Blentajr" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Afrika/Brazavil" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Afrika/Budžumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Afrika/Kairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Afrika/Kazablanka" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Afrika/Seuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Seuta i Melilja" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Afrika/Konakri" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Afrika/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Afrika/Dar_es_Salam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Afrika/Džibuti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Afrika/Duala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Afrika/El_Ajun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Afrika/Fritaun" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Afrika/Gaboron" #: timezones.h:27 msgid "Africa/Harare" msgstr "Afrika/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Afrika/Johanesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Afrika/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Afrika/Kartum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Afrika/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Afrika/KinÅ”asa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "zapadna Dem. Rep. Kongo" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Afrika/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Afrika/Libervil" #: timezones.h:37 msgid "Africa/Lome" msgstr "Afrika/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Afrika/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Afrika/LubumbaÅ”i" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "istočna Dem. Rep. Kongo" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Afrika/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Afrika/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Afrika/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Afrika/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Afrika/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Afrika/MogadiÅ”" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Afrika/Monrovija" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Afrika/Najrobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Afrika/Ndžamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Afrika/Niamej" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Afrika/Nuakčot" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Afrika/Uagadugu" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Afrika/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Afrika/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Afrika/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Afrika/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Afrika/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Afrika/Vindhuk" #: timezones.h:60 msgid "America/Adak" msgstr "Amerika/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "Aleutska ostrva" #: timezones.h:63 msgid "America/Anchorage" msgstr "Amerika/Enkoridž" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "AljaÅ”ko vreme" #: timezones.h:66 msgid "America/Anguilla" msgstr "Amerika/Angvila" #: timezones.h:67 msgid "America/Antigua" msgstr "Amerika/Antigva" #: timezones.h:68 msgid "America/Araguaina" msgstr "Amerika/Aragvijana" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Tokantins" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Amerika/Argentina/Buenos_Ajres" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Buenos Ajres (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Amerika/Argentina/Katamarka" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "Katamarka (CT), Čubut (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Amerika/Argentina/KomodoroRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Amerika/Argentina/Kordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "većina mesta (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Amerika/Argentina/Huhui" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Huhui (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Amerika/Argentina/La_Rioha" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "La Rioha (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Amerika/Argentina/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "Mendoza (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Amerika/Argentina/Rio_Galjegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Santa Kruz (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "Amerika/Argentina/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Amerika/Argentina/San_Huan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "San Huan (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "Amerika/Argentina/San_Luis" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "San Luis (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Amerika/Argentina/Tukuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Tukuman (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Amerika/Argentina/UÅ”uaja" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Ognjena zemlja (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "Amerika/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "Amerika/Asunsion" #: timezones.h:110 msgid "America/Atikokan" msgstr "Amerika/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "Istočno standardno vreme - Atikokan, Ontario i O. Sautempton, Nunavut" #: timezones.h:113 msgid "America/Atka" msgstr "Amerika/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "Amerika/Baija" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "Baija" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "Amerika/Baija" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "Amerika/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "Amerika/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "Amapa, I Para" #: timezones.h:124 msgid "America/Belize" msgstr "Amerika/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "Amerika/Blan-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "Atlantsko standardno vreme - Kvebek - Niža severna obala" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Amerika/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "Roraima" #: timezones.h:131 msgid "America/Bogota" msgstr "Amerika/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "Amerika/Boize" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "Planinsko vreme - južni Ajdaho i istočni Oregon" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Amerika/Buenos_Ajres" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Amerika/Kembridž_Bej" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "Planinsko vreme - zapadni Nunavut" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "Amerika/Kampo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "Mato Groso do Sul" #: timezones.h:142 msgid "America/Cancun" msgstr "Amerika/Kankun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "Centralno vreme - Kintana Ro" #: timezones.h:145 msgid "America/Caracas" msgstr "Amerika/Karakas" #: timezones.h:146 msgid "America/Catamarca" msgstr "Amerika/Katamarka" #: timezones.h:147 msgid "America/Cayenne" msgstr "Amerika/Kajen" #: timezones.h:148 msgid "America/Cayman" msgstr "Amerika/Kajman" #: timezones.h:149 msgid "America/Chicago" msgstr "Amerika/Čikago" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "Centralno vreme" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Amerika/Čivava" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "Meksičko planinsko vreme - Čivava daleko od granice SAD" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "Amerika/Koral_Harbor" #: timezones.h:156 msgid "America/Cordoba" msgstr "Amerika/Kordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Amerika/Kostarika" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Amerika/Kujaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "Mato Groso" #: timezones.h:161 msgid "America/Curacao" msgstr "Amerika/Kurakao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Amerika/Denmarkshaven" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "istočna obala, severno od Skorzbisunda" #: timezones.h:165 msgid "America/Dawson" msgstr "Amerika/Doson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "Pacifičko vreme - severni Jukon" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Amerika/Doson_Krik" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" "Planinsko standardno vreme - Doson Krik i Fort Sent Džon, Britanska Kolumbija" #: timezones.h:171 msgid "America/Denver" msgstr "Amerika/Denver" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "Planinsko vreme" #: timezones.h:174 msgid "America/Detroit" msgstr "Amerika/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "Istočno vreme - Mičigen - većina mesta" #: timezones.h:177 msgid "America/Dominica" msgstr "Amerika/Dominika" #: timezones.h:178 msgid "America/Edmonton" msgstr "Amerika/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" "Planinsko vreme - Alberta, istočna Britanska Kolumbija i zapadni Saskačevan" #: timezones.h:181 msgid "America/Eirunepe" msgstr "Amerika/Ejrunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "Z Amazonija" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Amerika/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "Amerika/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Amerika/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "SI Brazil (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Amerika/Fort_Vejn" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Amerika/Glejs_Bej" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "Atlantsko vreme - Nova Å kotska - mesta koja nisu pratila DST 1966-1971" #: timezones.h:193 msgid "America/Godthab" msgstr "Amerika/Godtab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "većina mesta" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Amerika/Gus_Bej" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "Atlantsko vreme - Labrador - većina mesta" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Amerika/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "Amerika/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Amerika/Gvadelup" #: timezones.h:202 msgid "America/Guatemala" msgstr "Amerika/Gvatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Amerika/Gvajakvil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "matično kopno" #: timezones.h:206 msgid "America/Guyana" msgstr "Amerika/Gijana" #: timezones.h:207 msgid "America/Halifax" msgstr "Amerika/Halifaks" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "Atlantsko vreme - Nova Å kotska (većina mesta), OPE" #: timezones.h:210 msgid "America/Havana" msgstr "Amerika/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Amerika/Ermosiljo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "Planinsko standardno vreme - Sonora" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Amerika/Indijana/Indijanapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "Istočno vreme - Indijana - većina mesta" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Amerika/Indijana/Noks" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "Centralno vreme - Indijana - Okrug Stark" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Amerika/Indijana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "Istočno vreme - Indijana - Okrug Kroford" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "Amerika/Indijana/Pitersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "Istočno vreme - Indijana - Okrug Pajk" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Amerika/Indijanapolis" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "Amerika/Indijana/Tel_Siti" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "Centralno vreme - Indijana - Okrug Peri" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Amerika/Indijana/Vevaj" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "Istočno vreme - Indijana - Okrug Svicerlend" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "Amerika/Indijana/Vinsens" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "Istočno vreme - Indijana - Okruzi Davis, Duboa, Noks i Martin" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "Amerika/Indijana/Vinamak" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "Istočno vreme - Indijana - Okrug Pulaski" #: timezones.h:239 msgid "America/Inuvik" msgstr "Amerika/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "Planinsko vreme - zapadne Severozapadne teritorije" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Amerika/Ikalujt" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "Istočno vreme - istočni Nunavut - većina mesta" #: timezones.h:245 msgid "America/Jamaica" msgstr "Amerika/Jamajka" #: timezones.h:246 msgid "America/Jujuy" msgstr "Amerika/Huhui" #: timezones.h:247 msgid "America/Juneau" msgstr "Amerika/Žuno" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "AljaÅ”ko vreme - izbočina Aljaske" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Amerika/Kentaki/Luivil" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "Istočno vreme - Kentaki - područje Luivila" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Amerika/Kentaki/Montičelo" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "Istočno vreme - Kentaki - Okrug Vejn" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Amerika/Noks_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "Amerika/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "Amerika/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Amerika/Los_Anđeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "Pacifičko vreme" #: timezones.h:262 msgid "America/Louisville" msgstr "Amerika/Luivil" #: timezones.h:263 msgid "America/Maceio" msgstr "Amerika/Masejo" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "Alagoas, Seržipe" #: timezones.h:266 msgid "America/Managua" msgstr "Amerika/Managva" #: timezones.h:267 msgid "America/Manaus" msgstr "Amerika/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "I Amazonija" #: timezones.h:270 msgid "America/Marigot" msgstr "Amerika/Marigo" #: timezones.h:271 msgid "America/Martinique" msgstr "Amerika/Martinik" #: timezones.h:272 msgid "America/Matamoros" msgstr "Amerika/Matamoros" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" "SAD centralno vreme - Kuauila, Durango, Nuevo Leon, Tamaulipas u blizini " "granice SAD" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Amerika/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "Planinsko vreme - J Baha, Najarit, Sinaloa" #: timezones.h:278 msgid "America/Mendoza" msgstr "Amerika/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "Amerika/Menomini" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" "Centralno vreme - Mičigen - Okruzi Dikinskon, Gogebik, Ajron i Menomini" #: timezones.h:282 msgid "America/Merida" msgstr "Amerika/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "Centralno vreme - Kampeće, Jukatan" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Amerika/Meksiko_Siti" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "Centralno vreme - većina mesta" #: timezones.h:288 msgid "America/Miquelon" msgstr "Amerika/Mikelon" #: timezones.h:289 msgid "America/Moncton" msgstr "Amerika/Monkton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "Atlantsko vreme - Nju Branzvik" #: timezones.h:292 msgid "America/Monterrey" msgstr "Amerika/Monterej" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" "Meksičko centralno vreme - Kuauila, Durango, Nuevo Leon, Tamaulipas daleko " "od granice SAD" #: timezones.h:295 msgid "America/Montevideo" msgstr "Amerika/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "Amerika/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "Istočno vreme - Kvebek - većina mesta" #: timezones.h:299 msgid "America/Montserrat" msgstr "Amerika/Montserat" #: timezones.h:300 msgid "America/Nassau" msgstr "Amerika/Nasau" #: timezones.h:301 msgid "America/New_York" msgstr "Amerika/Njujork" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "Istočno vreme" #: timezones.h:304 msgid "America/Nipigon" msgstr "Amerika/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" "Istočno vreme - Ontario i Kvebek - mesta koja nisu pratila DST 1967-1973" #: timezones.h:307 msgid "America/Nome" msgstr "Amerika/Nom" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "AljaÅ”ko vreme - zapadna Aljaska" #: timezones.h:310 msgid "America/Noronha" msgstr "Amerika/Noronja" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "Atlantska ostrva" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Amerika/Severna_Dakota/Centar" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "Centralno vreme - Severna Dakota - Okrug Oliver" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "Amerika/Severna_Dakota/Nju_Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" "Centralno vreme - Severna Dakota - Okrug Morton (izuzev područja Mandana)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "Amerika/Ohinaga" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "SAD planinsko vreme - Čivava u blizini granice SAD" #: timezones.h:322 msgid "America/Panama" msgstr "Amerika/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Amerika/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "Istočno vreme - Pangnirtung, Nunavut" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Amerika/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "Amerika/Feniks" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "Planinsko standardno vreme - Arizona" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Amerika/Port-o-Prins" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Amerika/Porto_Akri" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Amerika/Port_of_Spejn" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Amerika/Porto_Velo" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "Rondonija" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Amerika/Portoriko" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Amerika/Rejni_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "Centralno vreme - Rejni River i Fort Fransis, Ontario" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Amerika/Rankinov_rukavac" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "Centralno vreme - centralni Nunavut" #: timezones.h:343 msgid "America/Recife" msgstr "Amerika/Resifi" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "Pernambuko" #: timezones.h:346 msgid "America/Regina" msgstr "Amerika/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "Centralno standardno vreme - Saskačevan - većina mesta" #: timezones.h:349 msgid "America/Resolute" msgstr "Amerika/Rezolut" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "Istočno standardno vreme - Rezolut, Nunavut" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Amerika/Rio_Branko" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "Akri" #: timezones.h:355 msgid "America/Rosario" msgstr "Amerika/Rozario" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "Amerika/Santa_Izabel" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "Meksičko pacifičko vreme - Donja Kalifornija daleko od granice SAD" #: timezones.h:359 msgid "America/Santarem" msgstr "Amerika/Santarem" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "Z Para" #: timezones.h:362 msgid "America/Santiago" msgstr "Amerika/Santjago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Amerika/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Amerika/Sao_Paolo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "J i JI Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Amerika/Skorzbisund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Skorzbisund / Itokortormit" #: timezones.h:372 msgid "America/Shiprock" msgstr "Amerika/Å iprok" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "Planinsko vreme - Navaho" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "Amerika/Sv_Bartolomej" #: timezones.h:376 msgid "America/St_Johns" msgstr "Amerika/Sent_Džon" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "Njufaundlendsko vreme, uključujući JI Labrador" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Amerika/Sv_Kits" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Amerika/Sv_Lucija" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Amerika/Sent_Tomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Amerika/Sv_Vinsent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Amerika/Svift_Karent" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "Centralno standardno vreme - Saskačevan - srednji zapad" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Amerika/Tegusigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "Amerika/Tule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "Tule / Pitufik" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Amerika/Tander_Bej" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "Istočno vreme - Tander Bej, Ontario" #: timezones.h:393 msgid "America/Tijuana" msgstr "Amerika/Tihuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "SAD pacifičko vreme - Donja Kalifornija u blizini granice SAD" #: timezones.h:396 msgid "America/Toronto" msgstr "Amerika/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "Istočno vreme - Ontario - većina mesta" #: timezones.h:399 msgid "America/Tortola" msgstr "Amerika/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "Amerika/Vankuver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "Pacifičko vreme - zapadna Britanska Kolumbija" #: timezones.h:403 msgid "America/Virgin" msgstr "Amerika/Virdžin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Amerika/Vajthors" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "Pacifičko vreme - južni Jukon" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Amerika/Vinipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "Centralno vreme - Manitoba i zapadni Ontario" #: timezones.h:410 msgid "America/Yakutat" msgstr "Amerika/Jakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "AljaÅ”ko vreme - vrat izbočine Aljaske" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Amerika/Jelounajf" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "Planinsko vreme - centralne Severozapadne teritorije" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Antarktik/Kejsi" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "Stanica Kejsi, Poluostrvo Bejli" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Antarktik/Dejvis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "Stanica Dejvis, Vestfold Hils" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Antarktik/DimonDIrvil" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Stanica Dimon d'Irvil, Adelina zemlja" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "Antarktik/Makuori" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "Stanica Ostrva Makuori, Ostrvo Makuori" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Antarktik/Moson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "Stanica Moson, Zaliv Holm" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Antarktik/MekMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "Stanica MekMurdo, Ostrvo Ros" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Antarktik/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "Stanica Palmer, Ostrvo Anvers" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Antarktik/Rotera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "Stanica Rotera, Ostrvo Adelejd" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antarktik/Južni_pol" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "Stanica Amundsen-Skot, južni pol" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Antarktik/Sjova" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "Stanica Sjova, O. i. Ongul" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Antarktik/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "Stanica Vostok, j. magnetni pol" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Arktik/Longjirbjen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Azija/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Azija/Almati" #: timezones.h:454 msgid "Asia/Amman" msgstr "Azija/Aman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Azija/Anadir" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "Moskva+08 - Beringovo more" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Azija/Aktau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "Atirau (Gurjev), Mangistau" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Azija/Aktobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "Aktobe" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Azija/AÅ”gabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Azija/AÅ”kabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Azija/Bagdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Azija/Bahrein" #: timezones.h:468 msgid "Asia/Baku" msgstr "Azija/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Azija/Bankok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Azija/Bejrut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Azija/BiÅ”kek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Azija/Bruneji" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Azija/Kalkuta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Azija/Čojbalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "Dornod, Suhbatar" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Azija/Čonking" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "centralna Kina - Sečuan, Junan, Guangsi, Å ansi, Guidžou, itd." #: timezones.h:480 msgid "Asia/Chungking" msgstr "Azija/Čunking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Azija/Kolombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Azija/Daka" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Azija/Damask" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Azija/Daka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Azija/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Azija/Dubaji" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Azija/DuÅ”anbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Azija/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Azija/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Heilungđang (izuzev Mohe), Đilin" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "Azija/Ho_Å i_Min" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Azija/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Azija/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Bajan-Ulgij, Govi-Altaj, Hovd, Uvs, Zavhaj" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Azija/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "Moskva+05 - Bajkalsko jezero" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Azija/Carigrad" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Azija/Džakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "Java i Sumatra" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Azija/Džajapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "Irijan Džaja i Moluci" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Azija/Jerusalim" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Azija/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Azija/Kamčatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "Moskva+08 - Kamčatka" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Azija/Karači" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Azija/KaÅ”gar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "zapadni Tibet i Sinđang" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "Azija/Katmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Azija/Katmandu" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "Azija/Kalkuta" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Azija/Krasnojarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "Moskva+04 - Reka Jenisej" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Azija/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "poluostrvska Malezija" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Azija/Kučing" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "Sabah i Saravak" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Azija/Kuvajt" #: timezones.h:529 msgid "Asia/Macao" msgstr "Azija/Makao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Azija/Makao" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Azija/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "Moskva+08 - Magadan" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Azija/Makasar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "istočni i južni Borneo, Sulavesi, Bali, Mali Sundi, zapadni Timor" #: timezones.h:537 msgid "Asia/Manila" msgstr "Azija/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Azija/Muskat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Azija/Nikozija" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "Azija/Novokuznjeck" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "Moskva+03 - Novokuznjeck" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Azija/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "Moskva+03 - Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Azija/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "Moskva+03 - zapadni Sibir" #: timezones.h:549 msgid "Asia/Oral" msgstr "Azija/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "Zapadni Kazahstan" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Azija/Pnom_Pen" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Azija/Pontijanak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "zapadni i centralni Borneo" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Azija/Pjongjang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Azija/Katar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Azija/Kizilorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "Kizilorda" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Azija/Rangun" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Azija/Rijad" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Azija/Rijad87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Azija/Rijad88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Azija/Rijad89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Azija/Sajgon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Azija/Sahalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "Moskva+07 - Ostrvo Sahalin" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Azija/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "zapadni Uzbekistan" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Azija/Seul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Azija/Å angaj" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "istočna Kina - Peking, Guangdung, Å angaj, itd." #: timezones.h:577 msgid "Asia/Singapore" msgstr "Azija/Singapur" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Azija/Tajpej" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Azija/TaÅ”kent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "istočni Uzbekistan" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Azija/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Azija/Teheran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Azija/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Azija/Timbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Azija/Timpu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Azija/Tokio" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Azija/Ujang_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Azija/Ulanbatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Azija/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Azija/Urumči" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "većina Tibeta i Sinđang" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Azija/Vijentijan" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Azija/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "Moskva+07 - Reka Amur" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Azija/Jakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "Moskva+06 - Reka Lena" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Azija/Jekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "Moskva+02 - Ural" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Azija/Jerevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlantik/Azori" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "Azorska ostrva" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlantik/Bermude" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlantik/Kanarska_ostrva" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "Kanarska ostrva" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlantik/Kejp_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlantik/Farska_ostrva" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "Atlantik/Farska_ostrva" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlantik/Jan_Majen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlantik/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "Ostrva Madeira" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlantik/Rejkjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlantik/Južna_Džordžija" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlantik/Stenli" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlantik/Sv_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "Australija/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Australija/Adelejd" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "Južna Australija" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Australija/Brizbejn" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "Kvinslend - većina mesta" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Australija/Broken_Hil" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "Novi Južni Vels - Jankovina" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Australija/Kanbera" #: timezones.h:636 msgid "Australia/Currie" msgstr "Australija/Kjuri" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "Tasmanija - Ostrvo King" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Australija/Darvin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "Severna teritorija" #: timezones.h:642 msgid "Australia/Eucla" msgstr "Australija/Jukla" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "Zapadna Australija - područje Jukle" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Australija/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "Tasmanija - većina mesta" #: timezones.h:648 msgid "Australia/LHI" msgstr "Australija/OLH" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Australija/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "Kvinslend - Praznična ostrva" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Australija/Lord_Hou" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "Ostrvo Lorda Houa" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Australija/Melburn" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "Viktorija" #: timezones.h:658 msgid "Australia/North" msgstr "Australija/Sever" #: timezones.h:659 msgid "Australia/NSW" msgstr "Australija/NJV" #: timezones.h:660 msgid "Australia/Perth" msgstr "Australija/Pert" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "Zapadna Australija - većina mesta" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Australija/Kvinslend" #: timezones.h:664 msgid "Australia/South" msgstr "Australija/Jug" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Australija/Sidnej" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "Novi Južni Vels - većina mesta" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Australija/Tasmanija" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Australija/Viktorija" #: timezones.h:670 msgid "Australia/West" msgstr "Australija/Zapad" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Australija/Jankovina" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brazil/Akri" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brazil/DeNoronja" #: timezones.h:674 msgid "Brazil/East" msgstr "Brazil/Istok" #: timezones.h:675 msgid "Brazil/West" msgstr "Brazil/Zapad" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Kanada/Atlantik" #: timezones.h:677 msgid "Canada/Central" msgstr "Kanada/Centralna" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Kanada/Istočna" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Kanada/Istok-Saskačevan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Kanada/Planine" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Kanada/Njufaundlend" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Kanada/Pacifik" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Kanada/Saskačevan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Kanada/Jukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Čile/Kontinentalni" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Čile/UskrÅ”nje_ostrvo" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Kuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Egipat" #: timezones.h:692 msgid "Eire" msgstr "Irska" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Itd/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Itd/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Itd/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Itd/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Itd/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Itd/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Itd/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Itd/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Itd/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Itd/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Itd/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Itd/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Itd/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Itd/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Itd/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Itd/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Itd/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Itd/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Itd/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Itd/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Itd/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Itd/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Itd/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Itd/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Itd/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Itd/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Itd/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Itd/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Itd/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Itd/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Itd/Grinič" #: timezones.h:726 msgid "Etc/UCT" msgstr "Itd/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Itd/Univerzalno" #: timezones.h:728 msgid "Etc/UTC" msgstr "Itd/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Itd/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Evropa/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Evropa/Andora" #: timezones.h:732 msgid "Europe/Athens" msgstr "Evropa/Atina" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Evropa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Evropa/Beograd" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Evropa/Berlin" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Evropa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Evropa/Brisel" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Evropa/BukureÅ”t" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Evropa/BudimpeÅ”ta" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Evropa/KiÅ”injev" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Evropa/Kopenhagen" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Evropa/Dablin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Evropa/Gibraltar" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Evropa/Gernzi" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Evropa/Helsinki" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Evropa/Ostrvo Man" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Evropa/Carigrad" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Evropa/Džerzi" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Evropa/Kalinjingrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "Moskva-01 - Kalinjingrad" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Evropa/Kijev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Evropa/Lisabon" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Evropa/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Evropa/London" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Evropa/Luksemburg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Evropa/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Evropa/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Evropa/Marijehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Evropa/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Evropa/Monako" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Evropa/Moskva" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "Moskva+00 - zapadna Rusija" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Evropa/Nikozija" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Evropa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Evropa/Pariz" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Evropa/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Evropa/Prag" #: timezones.h:776 msgid "Europe/Riga" msgstr "Evropa/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Evropa/Rim" #: timezones.h:778 msgid "Europe/Samara" msgstr "Evropa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "Moskva - Samara, Udmurtija" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Evropa/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Evropa/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Evropa/Simferopolj" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "centralni Krim" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Evropa/Skoplje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Evropa/Sofija" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Evropa/Stokholm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Evropa/Talin" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Evropa/Tirana" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Evropa/Tiraspolj" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Evropa/Užgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "Rutenija" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Evropa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Evropa/Vatikan" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Evropa/Beč" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Evropa/Vilnijus" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Evropa/Volgograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "Moskva+00 - Kaspijsko more" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Evropa/VarÅ”ava" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Evropa/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Evropa/Zaporožje" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Zaporožje, I Lugansk" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Evropa/Cirih" #: timezones.h:808 msgid "Factory" msgstr "Fabrika" #: timezones.h:809 msgid "GB" msgstr "VB" #: timezones.h:810 msgid "GB-Eire" msgstr "VB-Irska" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Grinič" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Island" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Indijski_okean/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Indijski_okean/Čagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Indijski_okean/Božićna_ostrva" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Indijski_okean/Kokos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Indijski_okean/Komoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Indijski_okean/Kergulen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Indijski_okean/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Indijski_okean/Maldivi" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Indijski_okean/Mauricijus" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Indijski_okean/Majot" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Indijski_okean/Reunion" #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "Izrael" #: timezones.h:833 msgid "Jamaica" msgstr "Jamajka" #: timezones.h:834 msgid "Japan" msgstr "Japan" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kvadžalin" #: timezones.h:836 msgid "Libya" msgstr "Libija" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Meksiko/BahaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Meksiko/BahaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Meksiko/OpÅ”te" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Bliski istok/Rijad87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Bliski istok/Rijad88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Bliski istok/Rijad89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navaho" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-ČAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Pacifik/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Pacifik/Oklend" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Pacifik/Čatam" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "Ostrva Čatam" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "Pacifik/Truk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 #, fuzzy msgid "Chuuk (Truk) and Yap" msgstr "Truk (Čuuk) i Jap" #: timezones.h:859 msgid "Pacific/Easter" msgstr "Pacifik/UskrÅ”nje_ostrvo" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "UskrÅ”nje ostrvo i Sala i Gomez" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Pacifik/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Pacifik/Enderburi" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "Ostrva Feniks" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Pacifik/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Pacifik/Fidži" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Pacifik/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Pacifik/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "Ostrva Galapagos" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Pacifik/Gambije" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "Ostrva Gambije" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Pacifik/Gvadalkanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Pacifik/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Pacifik/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "Havaji" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Pacifik/Džonston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "Atol Džonston" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Pacifik/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "Linijska ostrva" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Pacifik/Kosre" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "Kosre" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Pacifik/Kvadžalin" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Pacifik/Madžuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Pacifik/Markiz" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "Ostrva Markiz" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Pacifik/Midvej" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "Ostrva Midvej" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Pacifik/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Pacifik/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Pacifik/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Pacifik/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Pacifik/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Pacifik/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Pacifik/Pitkairn" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "Pacifik/Ponape" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 #, fuzzy msgid "Pohnpei (Ponape)" msgstr "Ponape (Ponpei)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Pacifik/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Pacifik/Port_Morezbi" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Pacifik/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Pacifik/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Pacifik/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Pacifik/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "DruÅ”tvena ostrva" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Pacifik/Tarava" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "Ostrva Gilbert" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Pacifik/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Pacifik/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Pacifik/Vejk" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "Ostrvo Vejk" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Pacifik/Valis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Pacifik/Jap" #: timezones.h:929 msgid "Poland" msgstr "Poljska" #: timezones.h:930 msgid "Portugal" msgstr "Portugal" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapur" #: timezones.h:937 msgid "Turkey" msgstr "Turska" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Univerzalno" #: timezones.h:940 msgid "US/Alaska" msgstr "SAD/Aljaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "SAD/Aleutska_ostrva" #: timezones.h:942 msgid "US/Arizona" msgstr "SAD/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "SAD/Centralne" #: timezones.h:944 msgid "US/Eastern" msgstr "SAD/Istočne" #: timezones.h:945 msgid "US/East-Indiana" msgstr "SAD/Istok-Indijana" #: timezones.h:946 msgid "US/Hawaii" msgstr "SAD/Havaji" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "SAD/Indijana-Stark" #: timezones.h:948 msgid "US/Michigan" msgstr "SAD/Mičigen" #: timezones.h:949 msgid "US/Mountain" msgstr "SAD/Planine" #: timezones.h:950 msgid "US/Pacific" msgstr "SAD/Pacifik" #: timezones.h:951 msgid "US/Samoa" msgstr "SAD/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/gl.po0000664000175000017500000017031514632072346023670 0ustar fabiofabio# translation of gl.po to # , 2006. # , 2006. msgid "" msgstr "" "Project-Id-Version: gl\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2006-07-19 21:58+0200\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.9.1\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Ɓfrica/AbidxĆ”n" #: timezones.h:2 msgid "Africa/Accra" msgstr "Ɓfrica/Acra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Ɓfrica/AdĆ­s_Abeba" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Ɓfrica/Alxer" #: timezones.h:5 #, fuzzy msgid "Africa/Asmara" msgstr "Ɓfrica/Asmara" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Ɓfrica/Asmara" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Ɓfrica/Bamaco" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Ɓfrica/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Ɓfrica/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Ɓfrica/Bisau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Ɓfrica/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Ɓfrica/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Ɓfrica/Buiumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Ɓfrica/O_Cairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Ɓfrica/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Ɓfrica/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Ɓfrica/Conacri" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Ɓfrica/Dacar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Ɓfrica/Dar_Es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Ɓfrica/XibutĆ­" #: timezones.h:23 msgid "Africa/Douala" msgstr "Ɓfrica/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Ɓfrica/O_AiĆŗn" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Ɓfrica/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Ɓfrica/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Ɓfrica/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Ɓfrica/Johannesburgo" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Ɓfrica/Campala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Ɓfrica/KhartĆŗn" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Ɓfrica/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Ɓfrica/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Ɓfrica/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Ɓfrica/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Ɓfrica/LomĆ©" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Ɓfrica/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Ɓfrica/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Ɓfrica/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Ɓfrica/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Ɓfrica/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Ɓfrica/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Ɓfrica/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Ɓfrica/Mogadixo" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Ɓfrica/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Ɓfrica/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Ɓfrica/Xamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Ɓfrica/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Ɓfrica/Nuakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Ɓfrica/Uagadugu" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Ɓfrica/Porto_Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Ɓfrica/San_TomĆ©" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Ɓfrica/Tombouctou" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Ɓfrica/TrĆ­poli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Ɓfrica/TĆŗnez" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Ɓfrica/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "AmĆ©rica/Adak" #. comment for time zone America/Adak #: timezones.h:62 #, fuzzy msgid "Aleutian Islands" msgstr "Australia/Queensland" #: timezones.h:63 msgid "America/Anchorage" msgstr "AmĆ©rica/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 #, fuzzy msgid "Alaska Time" msgstr "Estados_Unidos/Alaska" #: timezones.h:66 msgid "America/Anguilla" msgstr "AmĆ©rica/Anguila" #: timezones.h:67 msgid "America/Antigua" msgstr "AmĆ©rica/Antiga" #: timezones.h:68 msgid "America/Araguaina" msgstr "AmĆ©rica/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "AmĆ©rica/Arxentina/Bos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "AmĆ©rica/Arxentina/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 #, fuzzy msgid "America/Argentina/ComodRivadavia" msgstr "AmĆ©rica/Indiana/Indianapolis" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "AmĆ”rica/Arxentina/Córdoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 #, fuzzy msgid "America/Argentina/Jujuy" msgstr "AmĆ©rica/Juyjuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 #, fuzzy msgid "America/Argentina/La_Rioja" msgstr "AmĆ©rica/Araguaina" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "AmĆ©rica/Arxentina/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 #, fuzzy msgid "America/Argentina/Rio_Gallegos" msgstr "AmĆ©rica/Indiana/Marengo" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 #, fuzzy msgid "America/Argentina/Salta" msgstr "AmĆ©rica/Antiga" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 #, fuzzy msgid "America/Argentina/San_Juan" msgstr "AmĆ©rica/Antiga" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 #, fuzzy msgid "America/Argentina/San_Luis" msgstr "AmĆ©rica/Antiga" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "AmĆ©rica/Arxentina/TucumĆ”n" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "AmĆ©rica/Arxentina/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "AmĆ©rica/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "AmĆ©rica/Asunción" #: timezones.h:110 #, fuzzy msgid "America/Atikokan" msgstr "AmĆ©rica/Atka" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "AmĆ©rica/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "AmĆ©rica/BaĆ­a" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "AmĆ©rica/BaĆ­a" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "AmĆ©rica/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "AmĆ©rica/BelĆ©m" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "AmĆ©rica/Belice" #: timezones.h:125 #, fuzzy msgid "America/Blanc-Sablon" msgstr "AmĆ©rica/CancĆŗn" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "AmĆ©rica/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "AmĆ©rica/BogotĆ”" #: timezones.h:132 msgid "America/Boise" msgstr "AmĆ©rica/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "AmĆ©rica/Bos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "AmĆ©rica/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 #, fuzzy msgid "America/Campo_Grande" msgstr "AmĆ©rica/CaymĆ”n" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "AmĆ©rica/CancĆŗn" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "AmĆ©rica/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "AmĆ©rica/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "AmĆ©rica/Cayena" #: timezones.h:148 msgid "America/Cayman" msgstr "AmĆ©rica/CaymĆ”n" #: timezones.h:149 msgid "America/Chicago" msgstr "AmĆ©rica/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "Estados_Unidos/Central" #: timezones.h:152 msgid "America/Chihuahua" msgstr "AmĆ©rica/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 #, fuzzy msgid "America/Coral_Harbour" msgstr "AmĆ©rica/CuraƧao" #: timezones.h:156 msgid "America/Cordoba" msgstr "AmĆ©rica/Córdoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "AmĆ©rica/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "AmĆ©rica/CuiabĆ”" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "AmĆ©rica/CuraƧao" #: timezones.h:162 #, fuzzy msgid "America/Danmarkshavn" msgstr "AmĆ©rica/CaymĆ”n" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "AmĆ©rica/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "AmĆ©rica/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "AmĆ©rica/Denver" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "Estados_Unidos/MontaƱa" #: timezones.h:174 msgid "America/Detroit" msgstr "AmĆ©rica/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "AmĆ©rica/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "AmĆ©rica/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "AmĆ©rica/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "AmĆ©rica/O_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "AmĆ©rica/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "AmĆ©rica/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "AmĆ©rica/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "AmĆ©rica/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "AmĆ©rica/GodthĆ„b" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "AmĆ©rica/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "AmĆ©rica/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "AmĆ©rica/Granada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "AmĆ©rica/Guadalupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "AmĆ©rica/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "AmĆ©rica/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "AmĆ©rica/Güiana" #: timezones.h:207 msgid "America/Halifax" msgstr "AmĆ©rica/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "AmĆ©rica/A_Habana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "AmĆ©rica/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "AmĆ©rica/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "AmĆ©rica/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "AmĆ©rica/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 #, fuzzy msgid "America/Indiana/Petersburg" msgstr "AmĆ©rica/Indiana/Marengo" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "AmĆ©rica/Indianapolis" #: timezones.h:227 #, fuzzy msgid "America/Indiana/Tell_City" msgstr "AmĆ©rica/Indiana/Vevay" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "AmĆ©rica/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 #, fuzzy msgid "America/Indiana/Vincennes" msgstr "AmĆ©rica/Indiana/Vevay" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 #, fuzzy msgid "America/Indiana/Winamac" msgstr "AmĆ©rica/Indiana/Vevay" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "AmĆ©rica/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "AmĆ©rica/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "AmĆ©rica/Xamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "AmĆ©rica/Juyjuy" #: timezones.h:247 msgid "America/Juneau" msgstr "AmĆ©rica/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "AmĆ©rica/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 #, fuzzy msgid "Eastern Time - Kentucky - Louisville area" msgstr "AmĆ©rica/Kentucky/Louisville" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "AmĆ©rica/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "AmĆ©rica/Knox" #: timezones.h:257 msgid "America/La_Paz" msgstr "AmĆ©rica/A_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "AmĆ©rica/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "AmĆ©rica/Los_Ɓngeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 #, fuzzy msgid "Pacific Time" msgstr "PacĆ­fico/Niue" #: timezones.h:262 msgid "America/Louisville" msgstr "AmĆ©rica/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "AmĆ©rica/Maceió" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "AmĆ©rica/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "AmĆ©rica/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 #, fuzzy msgid "America/Marigot" msgstr "AmĆ©rica/Maceió" #: timezones.h:271 msgid "America/Martinique" msgstr "AmĆ©rica/Martinica" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "AmĆ©rica/Manaus" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "AmĆ©rica/MazatlĆ”n" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "AmĆ©rica/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "AmĆ©rica/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "AmĆ©rica/MĆ©rida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "AmĆ©rica/Cidade_de_MĆ©xico" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "AmĆ©rica/Miquelon" #: timezones.h:289 #, fuzzy msgid "America/Moncton" msgstr "AmĆ©rica/Edmonton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "AmĆ©rica/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "AmĆ©rica/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "AmĆ©rica/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "AmĆ©rica/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "AmĆ©rica/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "AmĆ©rica/Nova_York" #. comment for time zone America/New_York #: timezones.h:303 #, fuzzy msgid "Eastern Time" msgstr "Estados_Unidos/Leste" #: timezones.h:304 msgid "America/Nipigon" msgstr "AmĆ©rica/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "AmĆ©rica/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "AmĆ©rica/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 #, fuzzy msgid "Atlantic islands" msgstr "AtlĆ”ntico/Canarias" #: timezones.h:313 #, fuzzy msgid "America/North_Dakota/Center" msgstr "AmĆ©rica/Fort_Wayne" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 #, fuzzy msgid "America/North_Dakota/New_Salem" msgstr "AmĆ©rica/Fort_Wayne" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "AmĆ©rica/Managua" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "AmĆ©rica/PanamĆ”" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "AmĆ©rica/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "AmĆ©rica/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "AmĆ©rica/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "AmĆ©rica/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "AmĆ©rica/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "AmĆ©rica/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "AmĆ©rica/PĆ“rto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "AmĆ©rica/Porto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "AmĆ©rica/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "AmĆ©rica/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "AmĆ©rica/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "AmĆ©rica/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 #, fuzzy msgid "America/Resolute" msgstr "AmĆ©rica/BelĆ©m" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 #, fuzzy msgid "America/Rio_Branco" msgstr "AmĆ©rica/CuraƧao" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "AmĆ©rica/Rosario" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "AmĆ©rica/Santiago" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 #, fuzzy msgid "America/Santarem" msgstr "AmĆ©rica/Santiago" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "AmĆ©rica/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "AmĆ©rica/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "AmĆ©rica/SĆ£o_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "AmĆ©rica/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "AmĆ©rica/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 #, fuzzy msgid "America/St_Barthelemy" msgstr "AmĆ©rica/BelĆ©m" #: timezones.h:376 msgid "America/St_Johns" msgstr "AmĆ©rica/Saint_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "AmĆ©rica/Saint_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "AmĆ©rica/Santa_LucĆ­a" #: timezones.h:381 msgid "America/St_Thomas" msgstr "AmĆ©rica/Saint_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "AmĆ©rica/San_Vicente" #: timezones.h:383 msgid "America/Swift_Current" msgstr "AmĆ©rica/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "AmĆ©rica/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "AmĆ©rica/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "AmĆ©rica/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "AmĆ©rica/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "AmĆ©rica/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "AmĆ©rica/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "AmĆ©rica/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "AmĆ©rica/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "AmĆ©rica/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "AmĆ©rica/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "AmĆ©rica/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "AmĆ©rica/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "AntĆ”rtida/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "AntĆ”rtida/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "AntĆ”rtida/Dumont_d'Urville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "AntĆ”rtida/Mac_Murdo" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "AntĆ”rtida/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "AntĆ”rtida/Mac_Murdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "AntĆ”rtida/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "AntĆ”rtida/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "AntĆ”rtida/Polo_Sur" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "AntĆ”rtida/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "AntĆ”rtida/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Ɓrtico/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Asia/AdĆ©n" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Asia/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Asia/AmmĆ”n" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Asia/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Asia/Aqtaü" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Asia/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Asia/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Asia/Ashjabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Asia/Bagdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Asia/Bahrain" #: timezones.h:468 msgid "Asia/Baku" msgstr "Asia/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Asia/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Asia/Beirut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Asia/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Asia/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Asia/Calcuta" #: timezones.h:474 #, fuzzy msgid "Asia/Choibalsan" msgstr "Asia/Calcuta" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 #, fuzzy msgid "Asia/Chongqing" msgstr "Asia/Chungking" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "Asia/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Asia/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Asia/Daca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Asia/Damasco" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Asia/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Asia/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Asia/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Asia/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Asia/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Asia/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 #, fuzzy msgid "Asia/Ho_Chi_Minh" msgstr "Asia/Chungking" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Asia/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Asia/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Asia/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Asia/Istambul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Asia/Iakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Asia/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Asia/XerusalĆ©n" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Asia/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Asia/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Asia/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Asia/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 #, fuzzy msgid "Asia/Kathmandu" msgstr "Asia/KatmandĆŗ" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Asia/KatmandĆŗ" #: timezones.h:518 #, fuzzy msgid "Asia/Kolkata" msgstr "Asia/Iakarta" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Asia/Krasnojarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Asia/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Asia/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Asia/Kuvait" #: timezones.h:529 msgid "Asia/Macao" msgstr "Asia/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Asia/Macau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Asia/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 #, fuzzy msgid "Asia/Makassar" msgstr "Asia/Iakarta" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "Asia/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Asia/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Asia/Nicosia" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "Asia/Irkutsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "Asia/Novosibirsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Asia/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 #, fuzzy msgid "Moscow+03 - Novosibirsk" msgstr "Asia/Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Asia/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "Asia/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Asia/Phnom_Penh" #: timezones.h:553 #, fuzzy msgid "Asia/Pontianak" msgstr "Asia/Piongiang" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Asia/Piongiang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Asia/Qatar" #: timezones.h:558 #, fuzzy msgid "Asia/Qyzylorda" msgstr "Asia/Gaza" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Asia/RangĆŗn" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Asia/Riyad" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Asia/Riyad87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Asia/Riyad88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Asia/Riyad89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Asia/Saigón" #: timezones.h:567 #, fuzzy msgid "Asia/Sakhalin" msgstr "Asia/Bahrain" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Asia/Samarkanda" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Asia/Seul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Asia/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "Asia/Singapur" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Asia/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Asia/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Asia/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Asia/TeherĆ”n" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Asia/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Asia/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Asia/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Asia/Toquio" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Asia/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Asia/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Asia/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Asia/Ürümqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Asia/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Asia/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Asia/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Asia/Yekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Asia/Yerevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "AtlĆ”ntico/Azores" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "AtlĆ”ntico/Bermudas" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "AtlĆ”ntico/Canarias" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "AtlĆ”ntico/Cabo_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "AtlĆ”ntico/Feroe" #: timezones.h:616 #, fuzzy msgid "Atlantic/Faroe" msgstr "AtlĆ”ntico/Feroe" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "AtlĆ”ntico/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "AtlĆ”ntico/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "AtlĆ”ntico/Reiquiavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "AtlĆ”ntico/Xeorxias_do_Sur" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "AtlĆ”ntico/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "AtlĆ”ntico/Santa_Elena" #: timezones.h:625 msgid "Australia/ACT" msgstr "Australia/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Australia/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 #, fuzzy msgid "South Australia" msgstr "Australia/ACT" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Australia/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Australia/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Australia/Canberra" #: timezones.h:636 #, fuzzy msgid "Australia/Currie" msgstr "Australia/Canberra" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Australia/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 #, fuzzy msgid "Australia/Eucla" msgstr "Australia/Queensland" #. comment for time zone Australia/Eucla #: timezones.h:644 #, fuzzy msgid "Western Australia - Eucla area" msgstr "Australia/Queensland" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Australia/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "Australia/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Australia/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Australia/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Australia/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 #, fuzzy msgid "Victoria" msgstr "Australia/Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "Australia/Norte" #: timezones.h:659 msgid "Australia/NSW" msgstr "Australia/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "Australia/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Australia/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "Australia/Sur" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Australia/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Australia/Tasmania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Australia/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "Australia/Oeste" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Australia/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brasil/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brasil/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brasil/Leste" #: timezones.h:675 msgid "Brazil/West" msgstr "Brasil/Oeste" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "CanadĆ”/AtlĆ”ntico" #: timezones.h:677 msgid "Canada/Central" msgstr "CanadĆ”/Central" #: timezones.h:678 msgid "Canada/Eastern" msgstr "CanadĆ”/Leste" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "CanadĆ”/Leste-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "CanadĆ”/MontaƱa" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "CanadĆ”/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "CanadĆ”/PacĆ­fico" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "CanadĆ”/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "CanadĆ”/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Chile/Continental" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chile/Illa_de_Pascua" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Cuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Exipto" #: timezones.h:692 msgid "Eire" msgstr "Irlanda" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/ZulĆŗ" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Europa/Ɓmsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Europa/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Europa/Atenas" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Europa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Europa/Belgrado" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Europa/BerlĆ­n" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Europa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Europa/Bruxelas" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Europa/Bucarest" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Europa/Budapest" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Europa/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Europa/Copenhaguen" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Europa/DublĆ­n" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Europa/Xibraltar" #: timezones.h:744 #, fuzzy msgid "Europe/Guernsey" msgstr "Europa/Atenas" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Europa/Helsinki" #: timezones.h:746 #, fuzzy msgid "Europe/Isle_of_Man" msgstr "Europa/Oslo" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Europa/Istambul" #: timezones.h:748 #, fuzzy msgid "Europe/Jersey" msgstr "Europa/ParĆ­s" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Europa/Kaliningrado" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Europa/Kiev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Europa/Lisboa" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Europa/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Europa/Londres" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Europa/Luxemburgo" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Europa/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Europa/Malta" #: timezones.h:765 #, fuzzy msgid "Europe/Mariehamn" msgstr "Europa/Madrid" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Europa/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Europa/Mónaco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Europa/Moscova" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Europa/Nicosia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Europa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Europa/ParĆ­s" #: timezones.h:774 #, fuzzy msgid "Europe/Podgorica" msgstr "Europa/Andorra" #: timezones.h:775 msgid "Europe/Prague" msgstr "Europa/Praga" #: timezones.h:776 msgid "Europe/Riga" msgstr "Europa/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Europa/Roma" #: timezones.h:778 msgid "Europe/Samara" msgstr "Europa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Europa/San_MariƱo" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Europa/Saraxevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Europa/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Europa/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Europa/SofĆ­a" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Europa/Estocolmo" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Europa/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Europa/Tirana" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Europa/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Europa/Uzgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Europa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Europa/Vaticano" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Europa/Viena" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Europa/Vilnius" #: timezones.h:799 #, fuzzy msgid "Europe/Volgograd" msgstr "Europa/Belgrado" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Europa/Varsovia" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Europa/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Europa/Zaporozje" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Europa/Zurich" #: timezones.h:808 msgid "Factory" msgstr "FĆ”brica" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Irlanda" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Islandia" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "ƍndico/Tananarive" #: timezones.h:820 msgid "Indian/Chagos" msgstr "ƍndico/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "ƍndico/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "ƍndico/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "ƍndico/Comores" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "ƍndico/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "ƍndico/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "ƍndico/Maldivas" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "ƍndico/Mauricio" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "ƍndico/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "ƍndico/Reunión" #: timezones.h:830 msgid "Iran" msgstr "IrĆ”n" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "Israel" #: timezones.h:833 msgid "Jamaica" msgstr "Xamaica" #: timezones.h:834 msgid "Japan" msgstr "Xapón" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libia" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "MĆ©xico/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "MĆ©xico/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "MĆ©xico/General" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Oriente_Medio/Riyad87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Oriente_Medio/Riyad88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Oriente_Medio/Riyad89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "PacĆ­fico/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "PacĆ­fico/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "PacĆ­fico/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 #, fuzzy msgid "Chatham Islands" msgstr "Chile/Illa_de_Pascua" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "PacĆ­fico/Truk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 #, fuzzy msgid "Pacific/Easter" msgstr "PacĆ­fico/Illa_de_Pascua" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "PacĆ­fico/EfatĆ©" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "PacĆ­fico/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "PacĆ­fico/Fakaofu" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "PacĆ­fico/Fidji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "PacĆ­fico/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "PacĆ­fico/GalĆ”pagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "PacĆ­fico/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "PacĆ­fico/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "PacĆ­fico/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "PacĆ­fico/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 #, fuzzy msgid "Hawaii" msgstr "Estados_Unidos/Hawaii" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "PacĆ­fico/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "PacĆ­fico/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "PacĆ­fico/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 #, fuzzy msgid "Kosrae" msgstr "Israel" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "PacĆ­fico/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "PacĆ­fico/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "PacĆ­fico/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "PacĆ­fico/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "PacĆ­fico/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "PacĆ­fico/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "PacĆ­fico/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "PacĆ­fico/NoumĆ©a" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "PacĆ­fico/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "PacĆ­fico/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "PacĆ­fico/Pitcairn" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "PacĆ­fico/Ponape" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "PacĆ­fico/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "PacĆ­fico/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "PacĆ­fico/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "PacĆ­fico/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "PacĆ­fico/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "PacĆ­fico/TahitĆ­" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "PacĆ­fico/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 #, fuzzy msgid "Gilbert Islands" msgstr "Chile/Illa_de_Pascua" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "PacĆ­fico/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "PacĆ­fico/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "PacĆ­fico/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "PacĆ­fico/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "PacĆ­fico/Yap" #: timezones.h:929 msgid "Poland" msgstr "Polonia" #: timezones.h:930 msgid "Portugal" msgstr "Portugal" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapur" #: timezones.h:937 msgid "Turkey" msgstr "TurquĆ­a" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "Estados_Unidos/Alaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "Estados_Unidos/Aleutianas" #: timezones.h:942 msgid "US/Arizona" msgstr "Estados_Unidos/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "Estados_Unidos/Central" #: timezones.h:944 msgid "US/Eastern" msgstr "Estados_Unidos/Leste" #: timezones.h:945 msgid "US/East-Indiana" msgstr "Estados_Unidos/Leste-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "Estados_Unidos/Hawaii" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "Estados_Unidos/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "Estados_Unidos/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "Estados_Unidos/MontaƱa" #: timezones.h:950 msgid "US/Pacific" msgstr "Estados_Unidos/PacĆ­fico" #: timezones.h:951 msgid "US/Samoa" msgstr "Estados_Unidos/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "ZulĆŗ" #, fuzzy #~ msgid "US/Pacific-New" #~ msgstr "Estados_Unidos/PacĆ­fico" #~ msgid "SystemV/AST4" #~ msgstr "SystemV/AST4" #~ msgid "SystemV/AST4ADT" #~ msgstr "SystemV/AST4ADT" #~ msgid "SystemV/CST6" #~ msgstr "SystemV/CST6" #~ msgid "SystemV/CST6CDT" #~ msgstr "SystemV/CST6CDT" #~ msgid "SystemV/EST5" #~ msgstr "SystemV/EST5" #~ msgid "SystemV/EST5EDT" #~ msgstr "SystemV/EST5EDT" #~ msgid "SystemV/HST10" #~ msgstr "SystemV/HST10" #~ msgid "SystemV/MST7" #~ msgstr "SystemV/MST7" #~ msgid "SystemV/MST7MDT" #~ msgstr "SystemV/MST7MDT" #~ msgid "SystemV/PST8" #~ msgstr "SystemV/PST8" #~ msgid "SystemV/PST8PDT" #~ msgstr "SystemV/PST8PDT" #~ msgid "SystemV/YST9" #~ msgstr "SystemV/YST9" #~ msgid "SystemV/YST9YDT" #~ msgstr "SystemV/YST9YDT" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/sr.po0000664000175000017500000022575414632072346023722 0ustar fabiofabio# Serbian translations for timezones # Copyright (C) 2005 Red Hat, Inc. # This file is distributed under the same license as the timezones package. # Zoltan Čala , 1999. # MiloÅ” Komarčević , 2005. # Igor Miletic , 2008. # msgid "" msgstr "" "Project-Id-Version: timezones\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-04-20 22:13+0100\n" "Last-Translator: MiloÅ” Komarčević \n" "Language-Team: Serbian \n" "Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Африка/Абиџан" #: timezones.h:2 msgid "Africa/Accra" msgstr "Африка/Акра" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Африка/АГис_Абеба" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Африка/Алжир" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Африка/Асмара" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Африка/Асмера" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Африка/Бамако" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Африка/Š‘Š°Š½Š³ŃƒŃ˜" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Африка/Š‘Š°Š½ŃŸŃƒŠ»" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Африка/Š‘ŠøŃŠ°Ńƒ" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Африка/Š‘Š»ŠµŠ½Ń‚Š°Ń˜Ń€" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Африка/Бразавил" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Африка/Š‘ŃƒŃŸŃƒŠ¼Š±ŃƒŃ€Š°" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Африка/ŠšŠ°ŠøŃ€Š¾" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Африка/Казабланка" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Африка/Š”ŠµŃƒŃ‚Š°" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Š”ŠµŃƒŃ‚Š° Šø ŠœŠµŠ»ŠøŃ™Š°" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Африка/ŠšŠ¾Š½Š°ŠŗŃ€Šø" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Африка/Дакар" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Африка/Дар_ес_Далам" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Африка/ŠŠøŠ±ŃƒŃ‚Šø" #: timezones.h:23 msgid "Africa/Douala" msgstr "Африка/Š”ŃƒŠ°Š»Š°" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Африка/Ел_Ајун" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Африка/Š¤Ń€ŠøŃ‚Š°ŃƒŠ½" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Африка/Габорон" #: timezones.h:27 msgid "Africa/Harare" msgstr "Африка/Єараре" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Африка/ŠˆŠ¾Ń…Š°Š½ŠµŃŠ±ŃƒŃ€Š³" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Африка/Кампала" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Африка/ŠšŠ°Ń€Ń‚ŃƒŠ¼" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Африка/Кигали" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Африка/Киншаса" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "запаГна Дем. Реп. Конго" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Африка/Лагос" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Африка/Либервил" #: timezones.h:37 msgid "Africa/Lome" msgstr "Африка/Ломе" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Африка/Š›ŃƒŠ°Š½Š“Š°" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Африка/Š›ŃƒŠ±ŃƒŠ¼Š±Š°ŃˆŠø" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "источна Дем. Реп. Конго" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Африка/Š›ŃƒŃŠ°ŠŗŠ°" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Африка/Малабо" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Африка/ŠœŠ°ŠæŃƒŃ‚Š¾" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Африка/ŠœŠ°ŃŠµŃ€Ńƒ" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Африка/Мбабане" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Африка/МогаГиш" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Африка/ŠœŠ¾Š½Ń€Š¾Š²ŠøŃ˜Š°" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Африка/ŠŠ°Ń˜Ń€Š¾Š±Šø" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Африка/ŠŃŸŠ°Š¼ŠµŠ½Š°" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Африка/ŠŠøŠ°Š¼ŠµŃ˜" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Африка/ŠŃƒŠ°ŠŗŃ‡Š¾Ń‚" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Африка/УагаГугу" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Африка/ŠŸŠ¾Ń€Ń‚Š¾-ŠŠ¾Š²Š¾" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Африка/Дао_Томе" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Африка/Š¢ŠøŠ¼Š±ŃƒŠŗŃ‚Ńƒ" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Африка/Триполи" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Африка/Тунис" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Африка/Š’ŠøŠ½Š“Ń…ŃƒŠŗ" #: timezones.h:60 msgid "America/Adak" msgstr "Америка/АГак" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "ŠŠ»ŠµŃƒŃ‚ŃŠŗŠ° острва" #: timezones.h:63 msgid "America/Anchorage" msgstr "Америка/Š•Š½ŠŗŠ¾Ń€ŠøŃŸ" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "ŠŃ™Š°ŃˆŠŗŠ¾ време" #: timezones.h:66 msgid "America/Anguilla" msgstr "Америка/Ангвила" #: timezones.h:67 msgid "America/Antigua" msgstr "Америка/Антигва" #: timezones.h:68 msgid "America/Araguaina" msgstr "Америка/ŠŃ€Š°Š³Š²ŠøŃ˜Š°Š½Š°" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Токантинс" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Америка/Аргентина/Š‘ŃƒŠµŠ½Š¾Ń_ŠŃ˜Ń€ŠµŃ" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Š‘ŃƒŠµŠ½Š¾Ń ŠŃ˜Ń€ŠµŃ (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Америка/Аргентина/ŠšŠ°Ń‚Š°Š¼Š°Ń€ŠŗŠ°" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "ŠšŠ°Ń‚Š°Š¼Š°Ń€ŠŗŠ° (CT), Š§ŃƒŠ±ŃƒŃ‚ (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Америка/Аргентина/ŠšŠ¾Š¼Š¾Š“Š¾Ń€Š¾Š ŠøŠ²Š°Š“Š°Š²ŠøŠ°" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Америка/Аргентина/ŠšŠ¾Ń€Š“Š¾Š±Š°" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "већина места (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Америка/Аргентина/Š„ŃƒŃ…ŃƒŠø" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Š„ŃƒŃ…ŃƒŠø (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Америка/Аргентина/Ла_Риоха" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "Ла Риоха (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Америка/Аргентина/МенГоза" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "МенГоза (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Америка/Аргентина/Рио_Гаљегос" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Данта ŠšŃ€ŃƒŠ· (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "Америка/Аргентина/Далта" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Америка/Аргентина/Дан_Єуан" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "Дан Єуан (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "Америка/Аргентина/Дан_Š›ŃƒŠøŃ" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "Дан Š›ŃƒŠøŃ (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Америка/Аргентина/Тукуман" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Тукуман (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Америка/Аргентина/Ушуаја" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "ŠžŠ³ŃšŠµŠ½Š° земља (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "Америка/ŠŃ€ŃƒŠ±Š°" #: timezones.h:109 msgid "America/Asuncion" msgstr "Америка/Асунсион" #: timezones.h:110 msgid "America/Atikokan" msgstr "Америка/Атикокан" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "Š˜ŃŃ‚Š¾Ń‡Š½Š¾ станГарГно време - Атикокан, ŠžŠ½Ń‚Š°Ń€ŠøŠ¾ Šø Šž. Š”Š°ŃƒŃ‚ŠµŠ¼ŠæŃ‚Š¾Š½, ŠŃƒŠ½Š°Š²ŃƒŃ‚" #: timezones.h:113 msgid "America/Atka" msgstr "Америка/Атка" #: timezones.h:114 msgid "America/Bahia" msgstr "Америка/Š‘Š°ŠøŃ˜Š°" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "Š‘Š°ŠøŃ˜Š°" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "Америка/Š‘Š°ŠøŃ˜Š°" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "Америка/БарбаГос" #: timezones.h:121 msgid "America/Belem" msgstr "Америка/Белем" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "Амапа, И ŠŸŠ°Ń€Š°" #: timezones.h:124 msgid "America/Belize" msgstr "Америка/Белизе" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "Америка/Блан-Даблон" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "Атлантско станГарГно време - Квебек - ŠŠøŠ¶Š° северна обала" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Америка/Боа_Виста" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "Рораима" #: timezones.h:131 msgid "America/Bogota" msgstr "Америка/Богота" #: timezones.h:132 msgid "America/Boise" msgstr "Америка/Боизе" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "Планинско време - јужни ŠŃ˜Š“ахо Šø источни ŠžŃ€ŠµŠ³Š¾Š½" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Америка/Š‘ŃƒŠµŠ½Š¾Ń_ŠŃ˜Ń€ŠµŃ" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Америка/ŠšŠµŠ¼Š±Ń€ŠøŃŸ_Š‘ŠµŃ˜" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "Планинско време - запаГни ŠŃƒŠ½Š°Š²ŃƒŃ‚" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "Америка/Кампо_ГранГе" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "ŠœŠ°Ń‚Š¾ Гросо Го Дул" #: timezones.h:142 msgid "America/Cancun" msgstr "Америка/Канкун" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "Централно време - ŠšŠøŠ½Ń‚Š°Š½Š° Ро" #: timezones.h:145 msgid "America/Caracas" msgstr "Америка/ŠšŠ°Ń€Š°ŠŗŠ°Ń" #: timezones.h:146 msgid "America/Catamarca" msgstr "Америка/ŠšŠ°Ń‚Š°Š¼Š°Ń€ŠŗŠ°" #: timezones.h:147 msgid "America/Cayenne" msgstr "Америка/Кајен" #: timezones.h:148 msgid "America/Cayman" msgstr "Америка/Кајман" #: timezones.h:149 msgid "America/Chicago" msgstr "Америка/Чикаго" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "Централно време" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Америка/Чивава" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "ŠœŠµŠŗŃŠøŃ‡ŠŗŠ¾ планинско време - Чивава Галеко оГ границе ДАД" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "Америка/ŠšŠ¾Ń€Š°Š»_Єарбор" #: timezones.h:156 msgid "America/Cordoba" msgstr "Америка/ŠšŠ¾Ń€Š“Š¾Š±Š°" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Америка/ŠšŠ¾ŃŃ‚Š°Ń€ŠøŠŗŠ°" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Америка/Кујаба" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "ŠœŠ°Ń‚Š¾ Гросо" #: timezones.h:161 msgid "America/Curacao" msgstr "Америка/ŠšŃƒŃ€Š°ŠŗŠ°Š¾" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Америка/Денмарксхавен" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "источна обала, северно оГ Š”ŠŗŠ¾Ń€Š·Š±ŠøŃŃƒŠ½Š“Š°" #: timezones.h:165 msgid "America/Dawson" msgstr "Америка/Досон" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŃ‡ŠŗŠ¾ време - северни Јукон" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Америка/Досон_ŠšŃ€ŠøŠŗ" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" "Планинско станГарГно време - Досон ŠšŃ€ŠøŠŗ Šø Форт Дент ŠŠ¾Š½, Британска Колумбија" #: timezones.h:171 msgid "America/Denver" msgstr "Америка/Денвер" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "Планинско време" #: timezones.h:174 msgid "America/Detroit" msgstr "Америка/Детроит" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "Š˜ŃŃ‚Š¾Ń‡Š½Š¾ време - ŠœŠøŃ‡ŠøŠ³ŠµŠ½ - већина места" #: timezones.h:177 msgid "America/Dominica" msgstr "Америка/Доминика" #: timezones.h:178 msgid "America/Edmonton" msgstr "Америка/ЕГмонтон" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" "Планинско време - Алберта, источна Британска Колумбија Šø запаГни Даскачеван" #: timezones.h:181 msgid "America/Eirunepe" msgstr "Америка/Š•Ń˜Ń€ŃƒŠ½ŠµŠæŠµ" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "Š— Амазонија" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Америка/Ел_ДалваГор" #: timezones.h:185 msgid "America/Ensenada" msgstr "Америка/ЕнсенаГа" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Америка/Форталеза" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "ДИ Бразил (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Америка/Форт_Š’ŠµŃ˜Š½" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Америка/Š“Š»ŠµŃ˜Ń_Š‘ŠµŃ˜" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "Атлантско време - ŠŠ¾Š²Š° Шкотска - места која нису пратила DST 1966-1971" #: timezones.h:193 msgid "America/Godthab" msgstr "Америка/ГоГтаб" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "већина места" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Америка/Š“ŃƒŃ_Š‘ŠµŃ˜" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "Атлантско време - ЛабраГор - већина места" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Америка/ГранГ_Š¢ŃƒŃ€Šŗ" #: timezones.h:200 msgid "America/Grenada" msgstr "Америка/ГренаГа" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Америка/Š“Š²Š°Š“ŠµŠ»ŃƒŠæ" #: timezones.h:202 msgid "America/Guatemala" msgstr "Америка/Гватемала" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Америка/Š“Š²Š°Ń˜Š°ŠŗŠ²ŠøŠ»" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "матично копно" #: timezones.h:206 msgid "America/Guyana" msgstr "Америка/Š“ŠøŃ˜Š°Š½Š°" #: timezones.h:207 msgid "America/Halifax" msgstr "Америка/Єалифакс" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "Атлантско време - ŠŠ¾Š²Š° Шкотска (већина места), ŠžŠŸŠ•" #: timezones.h:210 msgid "America/Havana" msgstr "Америка/Єавана" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Америка/Ермосиљо" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "Планинско станГарГно време - Донора" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Америка/ИнГијана/ИнГијанаполис" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "Š˜ŃŃ‚Š¾Ń‡Š½Š¾ време - ИнГијана - већина места" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Америка/ИнГијана/ŠŠ¾ŠŗŃ" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "Централно време - ИнГијана - ŠžŠŗŃ€ŃƒŠ³ Дтарк" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Америка/ИнГијана/ŠœŠ°Ń€ŠµŠ½Š³Š¾" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "Š˜ŃŃ‚Š¾Ń‡Š½Š¾ време - ИнГијана - ŠžŠŗŃ€ŃƒŠ³ ŠšŃ€Š¾Ń„Š¾Ń€Š“" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "Америка/ИнГијана/ŠŸŠøŃ‚ŠµŃ€ŃŠ±ŃƒŃ€Š³" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "Š˜ŃŃ‚Š¾Ń‡Š½Š¾ време - ИнГијана - ŠžŠŗŃ€ŃƒŠ³ Пајк" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Америка/ИнГијанаполис" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "Америка/ИнГијана/Тел_Дити" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "Централно време - ИнГијана - ŠžŠŗŃ€ŃƒŠ³ ŠŸŠµŃ€Šø" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Америка/ИнГијана/Š’ŠµŠ²Š°Ń˜" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "Š˜ŃŃ‚Š¾Ń‡Š½Š¾ време - ИнГијана - ŠžŠŗŃ€ŃƒŠ³ ДвицерленГ" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "Америка/ИнГијана/Винсенс" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "Š˜ŃŃ‚Š¾Ń‡Š½Š¾ време - ИнГијана - ŠžŠŗŃ€ŃƒŠ·Šø Давис, Š”ŃƒŠ±Š¾Š°, ŠŠ¾ŠŗŃ Šø ŠœŠ°Ń€Ń‚ŠøŠ½" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "Америка/ИнГијана/Винамак" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "Š˜ŃŃ‚Š¾Ń‡Š½Š¾ време - ИнГијана - ŠžŠŗŃ€ŃƒŠ³ Пуласки" #: timezones.h:239 msgid "America/Inuvik" msgstr "Америка/Инувик" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "Планинско време - запаГне ДеверозапаГне Ń‚ŠµŃ€ŠøŃ‚Š¾Ń€ŠøŃ˜Šµ" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Америка/Š˜ŠŗŠ°Š»ŃƒŃ˜Ń‚" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "Š˜ŃŃ‚Š¾Ń‡Š½Š¾ време - источни ŠŃƒŠ½Š°Š²ŃƒŃ‚ - већина места" #: timezones.h:245 msgid "America/Jamaica" msgstr "Америка/Јамајка" #: timezones.h:246 msgid "America/Jujuy" msgstr "Америка/Š„ŃƒŃ…ŃƒŠø" #: timezones.h:247 msgid "America/Juneau" msgstr "Америка/Š–ŃƒŠ½Š¾" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "ŠŃ™Š°ŃˆŠŗŠ¾ време - избочина Аљаске" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Америка/ŠšŠµŠ½Ń‚Š°ŠŗŠø/Š›ŃƒŠøŠ²ŠøŠ»" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "Š˜ŃŃ‚Š¾Ń‡Š½Š¾ време - ŠšŠµŠ½Ń‚Š°ŠŗŠø - ŠæŠ¾Š“Ń€ŃƒŃ‡Ń˜Šµ Š›ŃƒŠøŠ²ŠøŠ»Š°" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Америка/ŠšŠµŠ½Ń‚Š°ŠŗŠø/ŠœŠ¾Š½Ń‚ŠøŃ‡ŠµŠ»Š¾" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "Š˜ŃŃ‚Š¾Ń‡Š½Š¾ време - ŠšŠµŠ½Ń‚Š°ŠŗŠø - ŠžŠŗŃ€ŃƒŠ³ Š’ŠµŃ˜Š½" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Америка/ŠŠ¾ŠŗŃ_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "Америка/Ла_Паз" #: timezones.h:258 msgid "America/Lima" msgstr "Америка/Лима" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Америка/Лос_Анђелес" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŃ‡ŠŗŠ¾ време" #: timezones.h:262 msgid "America/Louisville" msgstr "Америка/Š›ŃƒŠøŠ²ŠøŠ»" #: timezones.h:263 msgid "America/Maceio" msgstr "Америка/Масејо" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "Алагоас, Держипе" #: timezones.h:266 msgid "America/Managua" msgstr "Америка/Манагва" #: timezones.h:267 msgid "America/Manaus" msgstr "Америка/Манаус" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "И Амазонија" #: timezones.h:270 msgid "America/Marigot" msgstr "Америка/ŠœŠ°Ń€ŠøŠ³Š¾" #: timezones.h:271 msgid "America/Martinique" msgstr "Америка/ŠœŠ°Ń€Ń‚ŠøŠ½ŠøŠŗ" #: timezones.h:272 msgid "America/Matamoros" msgstr "Америка/ŠœŠ°Ń‚Š°Š¼Š¾Ń€Š¾Ń" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" "ДАД централно време - Куауила, Š”ŃƒŃ€Š°Š½Š³Š¾, ŠŃƒŠµŠ²Š¾ Леон, Тамаулипас у близини " "границе ДАД" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Америка/ŠœŠ°Š·Š°Ń‚Š»Š°Š½" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "Планинско време - Ј Баха, ŠŠ°Ń˜Š°Ń€ŠøŃ‚, Диналоа" #: timezones.h:278 msgid "America/Mendoza" msgstr "Америка/МенГоза" #: timezones.h:279 msgid "America/Menominee" msgstr "Америка/Меномини" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" "Централно време - ŠœŠøŃ‡ŠøŠ³ŠµŠ½ - ŠžŠŗŃ€ŃƒŠ·Šø Дикинскон, Гогебик, ŠŃ˜Ń€Š¾Š½ Šø Меномини" #: timezones.h:282 msgid "America/Merida" msgstr "Америка/ŠœŠµŃ€ŠøŠ“Š°" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "Централно време - ŠšŠ°Š¼ŠæŠµŃ›Šµ, ŠˆŃƒŠŗŠ°Ń‚Š°Š½" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Америка/Мексико_Дити" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "Централно време - већина места" #: timezones.h:288 msgid "America/Miquelon" msgstr "Америка/Микелон" #: timezones.h:289 msgid "America/Moncton" msgstr "Америка/ŠœŠ¾Š½ŠŗŃ‚Š¾Š½" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "Атлантско време - Њу Бранзвик" #: timezones.h:292 msgid "America/Monterrey" msgstr "Америка/ŠœŠ¾Š½Ń‚ŠµŃ€ŠµŃ˜" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" "ŠœŠµŠŗŃŠøŃ‡ŠŗŠ¾ централно време - Куауила, Š”ŃƒŃ€Š°Š½Š³Š¾, ŠŃƒŠµŠ²Š¾ Леон, Тамаулипас Галеко " "оГ границе ДАД" #: timezones.h:295 msgid "America/Montevideo" msgstr "Америка/ŠœŠ¾Š½Ń‚ŠµŠ²ŠøŠ“ŠµŠ¾" #: timezones.h:296 msgid "America/Montreal" msgstr "Америка/ŠœŠ¾Š½Ń‚Ń€ŠµŠ°Š»" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "Š˜ŃŃ‚Š¾Ń‡Š½Š¾ време - Квебек - већина места" #: timezones.h:299 msgid "America/Montserrat" msgstr "Америка/ŠœŠ¾Š½Ń‚ŃŠµŃ€Š°Ń‚" #: timezones.h:300 msgid "America/Nassau" msgstr "Америка/ŠŠ°ŃŠ°Ńƒ" #: timezones.h:301 msgid "America/New_York" msgstr "Америка/ŠŠŃƒŃ˜Š¾Ń€Šŗ" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "Š˜ŃŃ‚Š¾Ń‡Š½Š¾ време" #: timezones.h:304 msgid "America/Nipigon" msgstr "Америка/ŠŠøŠæŠøŠ³Š¾Š½" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" "Š˜ŃŃ‚Š¾Ń‡Š½Š¾ време - ŠžŠ½Ń‚Š°Ń€ŠøŠ¾ Šø Квебек - места која нису пратила DST 1967-1973" #: timezones.h:307 msgid "America/Nome" msgstr "Америка/ŠŠ¾Š¼" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "ŠŃ™Š°ŃˆŠŗŠ¾ време - запаГна Аљаска" #: timezones.h:310 msgid "America/Noronha" msgstr "Америка/ŠŠ¾Ń€Š¾ŃšŠ°" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "Атлантска острва" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Америка/Деверна_Дакота/Центар" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "Централно време - Деверна Дакота - ŠžŠŗŃ€ŃƒŠ³ ŠžŠ»ŠøŠ²ŠµŃ€" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "Америка/Деверна_Дакота/Њу_Далем" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" "Централно време - Деверна Дакота - ŠžŠŗŃ€ŃƒŠ³ ŠœŠ¾Ń€Ń‚Š¾Š½ (изузев ŠæŠ¾Š“Ń€ŃƒŃ‡Ń˜Š° МанГана)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "Америка/ŠžŃ…ŠøŠ½Š°Š³Š°" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "ДАД планинско време - Чивава у близини границе ДАД" #: timezones.h:322 msgid "America/Panama" msgstr "Америка/Панама" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Америка/ŠŸŠ°Š½Š³Š½ŠøŃ€Ń‚ŃƒŠ½Š³" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "Š˜ŃŃ‚Š¾Ń‡Š½Š¾ време - ŠŸŠ°Š½Š³Š½ŠøŃ€Ń‚ŃƒŠ½Š³, ŠŃƒŠ½Š°Š²ŃƒŃ‚" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Америка/ŠŸŠ°Ń€Š°Š¼Š°Ń€ŠøŠ±Š¾" #: timezones.h:327 msgid "America/Phoenix" msgstr "Америка/Феникс" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "Планинско станГарГно време - Аризона" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Америка/ŠŸŠ¾Ń€Ń‚-о-ŠŸŃ€ŠøŠ½Ń" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Америка/ŠŸŠ¾Ń€Ń‚Š¾_Акри" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Америка/ŠŸŠ¾Ń€Ń‚_оф_Дпејн" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Америка/ŠŸŠ¾Ń€Ń‚Š¾_Вело" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "РонГонија" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Америка/ŠŸŠ¾Ń€Ń‚Š¾Ń€ŠøŠŗŠ¾" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Америка/Рејни_Ривер" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "Централно време - Рејни Ривер Šø Форт Франсис, ŠžŠ½Ń‚Š°Ń€ŠøŠ¾" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Америка/Ранкинов_Ń€ŃƒŠŗŠ°Š²Š°Ń†" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "Централно време - централни ŠŃƒŠ½Š°Š²ŃƒŃ‚" #: timezones.h:343 msgid "America/Recife" msgstr "Америка/Ресифи" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "ŠŸŠµŃ€Š½Š°Š¼Š±ŃƒŠŗŠ¾" #: timezones.h:346 msgid "America/Regina" msgstr "Америка/Регина" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "Централно станГарГно време - Даскачеван - већина места" #: timezones.h:349 msgid "America/Resolute" msgstr "Америка/Š ŠµŠ·Š¾Š»ŃƒŃ‚" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "Š˜ŃŃ‚Š¾Ń‡Š½Š¾ станГарГно време - Š ŠµŠ·Š¾Š»ŃƒŃ‚, ŠŃƒŠ½Š°Š²ŃƒŃ‚" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Америка/Рио_Бранко" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "Акри" #: timezones.h:355 msgid "America/Rosario" msgstr "Америка/Розарио" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "Америка/Данта_Изабел" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "ŠœŠµŠŗŃŠøŃ‡ŠŗŠ¾ пацифичко време - Š”Š¾ŃšŠ° ŠšŠ°Š»ŠøŃ„Š¾Ń€Š½ŠøŃ˜Š° Галеко оГ границе ДАД" #: timezones.h:359 msgid "America/Santarem" msgstr "Америка/Дантарем" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "Š— ŠŸŠ°Ń€Š°" #: timezones.h:362 msgid "America/Santiago" msgstr "Америка/Š”Š°Š½Ń‚Ń˜Š°Š³Š¾" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Америка/Данто_Доминго" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Америка/Дао_Паоло" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "Ј Šø ЈИ Бразил (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Америка/Š”ŠŗŠ¾Ń€Š·Š±ŠøŃŃƒŠ½Š“" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Š”ŠŗŠ¾Ń€Š·Š±ŠøŃŃƒŠ½Š“ / Š˜Ń‚Š¾ŠŗŠ¾Ń€Ń‚Š¾Ń€Š¼ŠøŃ‚" #: timezones.h:372 msgid "America/Shiprock" msgstr "Америка/Шипрок" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "Планинско време - ŠŠ°Š²Š°Ń…Š¾" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "Америка/Дв_Š‘Š°Ń€Ń‚Š¾Š»Š¾Š¼ŠµŃ˜" #: timezones.h:376 msgid "America/St_Johns" msgstr "Америка/Дент_ŠŠ¾Š½" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "ŠŠŃƒŃ„Š°ŃƒŠ½Š“Š»ŠµŠ½Š“ŃŠŗŠ¾ време, ŃƒŠŗŃ™ŃƒŃ‡ŃƒŃ˜ŃƒŃ›Šø ЈИ ЛабраГор" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Америка/Дв_ŠšŠøŃ‚Ń" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Америка/Дв_Š›ŃƒŃ†ŠøŃ˜Š°" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Америка/Дент_Томас" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Америка/Дв_Винсент" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Америка/Двифт_ŠšŠ°Ń€ŠµŠ½Ń‚" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "Централно станГарГно време - Даскачеван - ŃŃ€ŠµŠ“ŃšŠø запаГ" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Америка/Тегусигалпа" #: timezones.h:387 msgid "America/Thule" msgstr "Америка/Туле" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "Туле / ŠŸŠøŃ‚ŃƒŃ„ŠøŠŗ" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Америка/ТанГер_Š‘ŠµŃ˜" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "Š˜ŃŃ‚Š¾Ń‡Š½Š¾ време - ТанГер Š‘ŠµŃ˜, ŠžŠ½Ń‚Š°Ń€ŠøŠ¾" #: timezones.h:393 msgid "America/Tijuana" msgstr "Америка/Š¢ŠøŃ…ŃƒŠ°Š½Š°" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "ДАД пацифичко време - Š”Š¾ŃšŠ° ŠšŠ°Š»ŠøŃ„Š¾Ń€Š½ŠøŃ˜Š° у близини границе ДАД" #: timezones.h:396 msgid "America/Toronto" msgstr "Америка/Торонто" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "Š˜ŃŃ‚Š¾Ń‡Š½Š¾ време - ŠžŠ½Ń‚Š°Ń€ŠøŠ¾ - већина места" #: timezones.h:399 msgid "America/Tortola" msgstr "Америка/Тортола" #: timezones.h:400 msgid "America/Vancouver" msgstr "Америка/Š’Š°Š½ŠŗŃƒŠ²ŠµŃ€" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŃ‡ŠŗŠ¾ време - запаГна Британска Колумбија" #: timezones.h:403 msgid "America/Virgin" msgstr "Америка/Š’ŠøŃ€ŃŸŠøŠ½" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Америка/Š’Š°Ń˜Ń‚Ń…Š¾Ń€Ń" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŃ‡ŠŗŠ¾ време - јужни Јукон" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Америка/Винипег" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "Централно време - ŠœŠ°Š½ŠøŃ‚Š¾Š±Š° Šø запаГни ŠžŠ½Ń‚арио" #: timezones.h:410 msgid "America/Yakutat" msgstr "Америка/ŠˆŠ°ŠŗŃƒŃ‚Š°Ń‚" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "ŠŃ™Š°ŃˆŠŗŠ¾ време - врат избочине Аљаске" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Америка/ŠˆŠµŠ»Š¾ŃƒŠ½Š°Ń˜Ń„" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "Планинско време - централне ДеверозапаГне Ń‚ŠµŃ€ŠøŃ‚Š¾Ń€ŠøŃ˜Šµ" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Антарктик/Кејси" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "Дтаница Кејси, ŠŸŠ¾Š»ŃƒŠ¾ŃŃ‚Ń€Š²Š¾ Š‘ŠµŃ˜Š»Šø" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Антарктик/Š”ŠµŃ˜Š²ŠøŃ" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "Дтаница Š”ŠµŃ˜Š²ŠøŃ, ВестфолГ Єилс" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Антарктик/Š”ŠøŠ¼Š¾Š½Š”Š˜Ń€Š²ŠøŠ»" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Дтаница Димон Š“'Š˜Ń€Š²ŠøŠ», АГелина земља" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "Антарктик/ŠœŠ°ŠŗŃƒŠ¾Ń€Šø" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "Дтаница ŠžŃŃ‚рва ŠœŠ°ŠŗŃƒŠ¾Ń€Šø, ŠžŃŃ‚Ń€Š²Š¾ ŠœŠ°ŠŗŃƒŠ¾Ń€Šø" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Антарктик/Мосон" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "Дтаница Мосон, Залив Єолм" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Антарктик/ŠœŠµŠŗŠœŃƒŃ€Š“Š¾" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "Дтаница ŠœŠµŠŗŠœŃƒŃ€Š“о, ŠžŃŃ‚Ń€Š²Š¾ Рос" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Антарктик/ŠŸŠ°Š»Š¼ŠµŃ€" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "Дтаница ŠŸŠ°Š»Š¼ŠµŃ€, ŠžŃŃ‚Ń€Š²Š¾ Анверс" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Антарктик/Ротера" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "Дтаница Ротера, ŠžŃŃ‚Ń€Š²Š¾ АГелејГ" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Антарктик/Јужни_пол" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "Дтаница АмунГсен-Дкот, јужни пол" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Антарктик/Дјова" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "Дтаница Дјова, Šž. Šø. ŠžŠ½Š³ŃƒŠ»" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Антарктик/Восток" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "Дтаница Восток, ј. магнетни пол" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Арктик/Š›Š¾Š½Š³Ń˜ŠøŃ€Š±Ń˜ŠµŠ½" #: timezones.h:450 msgid "Asia/Aden" msgstr "Азија/АГен" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Азија/Алмати" #: timezones.h:454 msgid "Asia/Amman" msgstr "Азија/Аман" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Азија/АнаГир" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "Москва+08 - Берингово море" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Азија/ŠŠŗŃ‚Š°Ńƒ" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "ŠŃ‚ŠøŃ€Š°Ńƒ (Š“ŃƒŃ€Ń˜ŠµŠ²), ŠœŠ°Š½Š³ŠøŃŃ‚Š°Ńƒ" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Азија/Актобе" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "Актобе" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Азија/ŠŃˆŠ³Š°Š±Š°Ń‚" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Азија/АшкабаГ" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Азија/БагГаГ" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Азија/Бахреин" #: timezones.h:468 msgid "Asia/Baku" msgstr "Азија/Š‘Š°ŠŗŃƒ" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Азија/Банкок" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Азија/Š‘ŠµŃ˜Ń€ŃƒŃ‚" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Азија/Š‘ŠøŃˆŠŗŠµŠŗ" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Азија/Š‘Ń€ŃƒŠ½ŠµŃ˜Šø" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Азија/ŠšŠ°Š»ŠŗŃƒŃ‚Š°" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Азија/Чојбалсан" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "ДорноГ, Š”ŃƒŃ…Š±Š°Ń‚Š°Ń€" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Азија/Чонкинг" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "централна Кина - Š”ŠµŃ‡ŃƒŠ°Š½, Јунан, Š“ŃƒŠ°Š½Š³ŃŠø, Шанси, Š“ŃƒŠøŃŸŠ¾Ńƒ, итГ." #: timezones.h:480 msgid "Asia/Chungking" msgstr "Азија/Чункинг" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Азија/Коломбо" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Азија/Дака" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Азија/Дамаск" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Азија/Дака" #: timezones.h:485 msgid "Asia/Dili" msgstr "Азија/Дили" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Азија/Š”ŃƒŠ±Š°Ń˜Šø" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Азија/Š”ŃƒŃˆŠ°Š½Š±Šµ" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Азија/Газа" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Азија/Єарбин" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Š„ŠµŠøŠ»ŃƒŠ½Š³Ń’Š°Š½Š³ (изузев ŠœŠ¾Ń…е), Ђилин" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "Азија/Єо_ŠØŠø_Мин" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Азија/Єонг_Конг" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Азија/ЄовГ" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Š‘Š°Ń˜Š°Š½-Улгиј, Гови-ŠŠ»Ń‚Š°Ń˜, ЄовГ, Увс, Š—Š°Š²Ń…Š°Ń˜" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Азија/Š˜Ń€ŠŗŃƒŃ‚ŃŠŗ" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "Москва+05 - Š‘Š°Ń˜ŠŗŠ°Š»ŃŠŗŠ¾ Ń˜ŠµŠ·ŠµŃ€Š¾" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Азија/ЦариграГ" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Азија/ŠŠ°ŠŗŠ°Ń€Ń‚Š°" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "Јава Šø Š”ŃƒŠ¼Š°Ń‚Ń€Š°" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Азија/ŠŠ°Ń˜Š°ŠæŃƒŃ€Š°" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "Š˜Ń€ŠøŃ˜Š°Š½ ŠŠ°Ń˜Š° Šø ŠœŠ¾Š»ŃƒŃ†Šø" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Азија/ŠˆŠµŃ€ŃƒŃŠ°Š»ŠøŠ¼" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Азија/Кабул" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Азија/ŠšŠ°Š¼Ń‡Š°Ń‚ŠŗŠ°" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "Москва+08 - ŠšŠ°Š¼Ń‡Š°Ń‚ŠŗŠ°" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Азија/ŠšŠ°Ń€Š°Ń‡Šø" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Азија/ŠšŠ°ŃˆŠ³Š°Ń€" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "запаГни Тибет Šø Динђанг" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "Азија/ŠšŠ°Ń‚Š¼Š°Š½Š“Ńƒ" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Азија/ŠšŠ°Ń‚Š¼Š°Š½Š“Ńƒ" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "Азија/ŠšŠ°Š»ŠŗŃƒŃ‚Š°" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Азија/ŠšŃ€Š°ŃŠ½Š¾Ń˜Š°Ń€ŃŠŗ" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "Москва+04 - Река Јенисеј" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Азија/Куала_Š›ŃƒŠ¼ŠæŃƒŃ€" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "ŠæŠ¾Š»ŃƒŠ¾ŃŃ‚Ń€Š²ŃŠŗŠ° Малезија" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Азија/ŠšŃƒŃ‡ŠøŠ½Š³" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "Дабах Šø Даравак" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Азија/ŠšŃƒŠ²Š°Ń˜Ń‚" #: timezones.h:529 msgid "Asia/Macao" msgstr "Азија/Макао" #: timezones.h:530 msgid "Asia/Macau" msgstr "Азија/Макао" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Азија/МагаГан" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "Москва+08 - МагаГан" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Азија/ŠœŠ°ŠŗŠ°ŃŠ°Ń€" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "источни Šø јужни Борнео, Дулавеси, Бали, Мали ДунГи, запаГни Тимор" #: timezones.h:537 msgid "Asia/Manila" msgstr "Азија/Манила" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Азија/ŠœŃƒŃŠŗŠ°Ń‚" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Азија/ŠŠøŠŗŠ¾Š·ŠøŃ˜Š°" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "Азија/ŠŠ¾Š²Š¾ŠŗŃƒŠ·ŃšŠµŃ†Šŗ" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "Москва+03 - ŠŠ¾Š²Š¾ŠŗŃƒŠ·ŃšŠµŃ†Šŗ" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Азија/ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗ" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "Москва+03 - ŠŠ¾Š²Š¾ŃŠøŠ±ŠøŃ€ŃŠŗ" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Азија/ŠžŠ¼ŃŠŗ" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "Москва+03 - запаГни Дибир" #: timezones.h:549 msgid "Asia/Oral" msgstr "Азија/ŠžŃ€Š°Š»" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "ЗапаГни ŠšŠ°Š·Š°Ń…стан" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Азија/Пном_Пен" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Азија/ŠŸŠ¾Š½Ń‚ŠøŃ˜Š°Š½Š°Šŗ" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "запаГни Šø централни Борнео" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Азија/Пјонгјанг" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Азија/ŠšŠ°Ń‚Š°Ń€" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Азија/ŠšŠøŠ·ŠøŠ»Š¾Ń€Š“Š°" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "ŠšŠøŠ·ŠøŠ»Š¾Ń€Š“Š°" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Азија/Рангун" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Азија/РијаГ" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Азија/РијаГ87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Азија/РијаГ88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Азија/РијаГ89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Азија/Дајгон" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Азија/Дахалин" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "Москва+07 - ŠžŃŃ‚Ń€Š²Š¾ Дахалин" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Азија/ДамарканГ" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "запаГни Узбекистан" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Азија/Деул" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Азија/Шангај" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "источна Кина - Пекинг, Š“ŃƒŠ°Š½Š³Š“ŃƒŠ½Š³, Шангај, итГ." #: timezones.h:577 msgid "Asia/Singapore" msgstr "Азија/Š”ŠøŠ½Š³Š°ŠæŃƒŃ€" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Азија/Тајпеј" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Азија/Š¢Š°ŃˆŠŗŠµŠ½Ń‚" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "источни Узбекистан" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Азија/Тбилиси" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Азија/Техеран" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Азија/Тел_Авив" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Азија/Тимбу" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Азија/Тимпу" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Азија/Токио" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Азија/Ујанг_ПанГанг" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Азија/Уланбатар" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Азија/Улан_Батор" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Азија/Š£Ń€ŃƒŠ¼Ń‡Šø" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "већина Тибета Šø Динђанг" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Азија/Š’ŠøŃ˜ŠµŠ½Ń‚ŠøŃ˜Š°Š½" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Азија/ВлаГивосток" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "Москва+07 - Река ŠŠ¼ŃƒŃ€" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Азија/ŠˆŠ°ŠŗŃƒŃ‚ŃŠŗ" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "Москва+06 - Река Лена" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Азија/ŠˆŠµŠŗŠ°Ń‚ŠµŃ€ŠøŠ½Š±ŃƒŃ€Š³" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "Москва+02 - Урал" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Азија/ŠˆŠµŃ€ŠµŠ²Š°Š½" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Атлантик/Азори" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "Азорска острва" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Атлантик/Š‘ŠµŃ€Š¼ŃƒŠ“Šµ" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Атлантик/ŠšŠ°Š½Š°Ń€ŃŠŗŠ°_острва" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "ŠšŠ°Š½Š°Ń€ŃŠŗŠ° острва" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Атлантик/Кејп_ВерГе" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Атлантик/Фарска_острва" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "Атлантик/Фарска_острва" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Атлантик/Јан_Мајен" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Атлантик/ŠœŠ°Š“ŠµŠøŃ€Š°" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "ŠžŃŃ‚Ń€Š²Š° ŠœŠ°Š“ŠµŠøŃ€Š°" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Атлантик/Рејкјавик" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Атлантик/Јужна_ŠŠ¾Ń€ŃŸŠøŃ˜Š°" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Атлантик/Дтенли" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Атлантик/Дв_Єелена" #: timezones.h:625 msgid "Australia/ACT" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/АГелејГ" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "Јужна ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Š‘Ń€ŠøŠ·Š±ŠµŃ˜Š½" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "КвинсленГ - већина места" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Брокен_Єил" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "ŠŠ¾Š²Šø Јужни Велс - Јанковина" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/ŠšŠ°Š½Š±ŠµŃ€Š°" #: timezones.h:636 msgid "Australia/Currie" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/ŠšŃ˜ŃƒŃ€Šø" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "Тасманија - ŠžŃŃ‚Ń€Š²Š¾ Кинг" #: timezones.h:639 msgid "Australia/Darwin" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Дарвин" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "Деверна Ń‚ŠµŃ€ŠøŃ‚Š¾Ń€ŠøŃ˜Š°" #: timezones.h:642 msgid "Australia/Eucla" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Јукла" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "ЗапаГна ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š° - ŠæŠ¾Š“Ń€ŃƒŃ‡Ń˜Šµ Јукле" #: timezones.h:645 msgid "Australia/Hobart" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Єобарт" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "Тасманија - већина места" #: timezones.h:648 msgid "Australia/LHI" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/ŠžŠ›Š„" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/ЛинГеман" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "КвинсленГ - ŠŸŃ€Š°Š·Š½ŠøŃ‡Š½Š° острва" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/ЛорГ_Єоу" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "ŠžŃŃ‚Ń€Š²Š¾ ЛорГа Єоуа" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/ŠœŠµŠ»Š±ŃƒŃ€Š½" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "Š’ŠøŠŗŃ‚Š¾Ń€ŠøŃ˜Š°" #: timezones.h:658 msgid "Australia/North" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Девер" #: timezones.h:659 msgid "Australia/NSW" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/ŠŠˆŠ’" #: timezones.h:660 msgid "Australia/Perth" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/ŠŸŠµŃ€Ń‚" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "ЗапаГна ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š° - већина места" #: timezones.h:663 msgid "Australia/Queensland" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/КвинсленГ" #: timezones.h:664 msgid "Australia/South" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Југ" #: timezones.h:665 msgid "Australia/Sydney" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/ДиГнеј" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "ŠŠ¾Š²Šø Јужни Велс - већина места" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Тасманија" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Š’ŠøŠŗŃ‚Š¾Ń€ŠøŃ˜Š°" #: timezones.h:670 msgid "Australia/West" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/ЗапаГ" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ŠŃƒŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Јанковина" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Бразил/Акри" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Бразил/Š”ŠµŠŠ¾Ń€Š¾ŃšŠ°" #: timezones.h:674 msgid "Brazil/East" msgstr "Бразил/Š˜ŃŃ‚Š¾Šŗ" #: timezones.h:675 msgid "Brazil/West" msgstr "Бразил/ЗапаГ" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "КанаГа/Атлантик" #: timezones.h:677 msgid "Canada/Central" msgstr "КанаГа/Централна" #: timezones.h:678 msgid "Canada/Eastern" msgstr "КанаГа/Š˜ŃŃ‚Š¾Ń‡Š½Š°" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "КанаГа/Š˜ŃŃ‚Š¾Šŗ-Даскачеван" #: timezones.h:680 msgid "Canada/Mountain" msgstr "КанаГа/Планине" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "КанаГа/ŠŠŃƒŃ„Š°ŃƒŠ½Š“Š»ŠµŠ½Š“" #: timezones.h:682 msgid "Canada/Pacific" msgstr "КанаГа/ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "КанаГа/Даскачеван" #: timezones.h:684 msgid "Canada/Yukon" msgstr "КанаГа/Јукон" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Чиле/ŠšŠ¾Š½Ń‚ŠøŠ½ŠµŠ½Ń‚Š°Š»Š½Šø" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Чиле/Š£ŃŠŗŃ€ŃˆŃšŠµ_острво" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Куба" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Египат" #: timezones.h:692 msgid "Eire" msgstr "Š˜Ń€ŃŠŗŠ°" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Š˜Ń‚Š“/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Š˜Ń‚Š“/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Š˜Ń‚Š“/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Š˜Ń‚Š“/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Š˜Ń‚Š“/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Š˜Ń‚Š“/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Š˜Ń‚Š“/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Š˜Ń‚Š“/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Š˜Ń‚Š“/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Š˜Ń‚Š“/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Š˜Ń‚Š“/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Š˜Ń‚Š“/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Š˜Ń‚Š“/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Š˜Ń‚Š“/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Š˜Ń‚Š“/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Š˜Ń‚Š“/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Š˜Ń‚Š“/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Š˜Ń‚Š“/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Š˜Ń‚Š“/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Š˜Ń‚Š“/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Š˜Ń‚Š“/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Š˜Ń‚Š“/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Š˜Ń‚Š“/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Š˜Ń‚Š“/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Š˜Ń‚Š“/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Š˜Ń‚Š“/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Š˜Ń‚Š“/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Š˜Ń‚Š“/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Š˜Ń‚Š“/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Š˜Ń‚Š“/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Š˜Ń‚Š“/Гринич" #: timezones.h:726 msgid "Etc/UCT" msgstr "Š˜Ń‚Š“/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Š˜Ń‚Š“/Универзално" #: timezones.h:728 msgid "Etc/UTC" msgstr "Š˜Ń‚Š“/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Š˜Ń‚Š“/Š—ŃƒŠ»Ńƒ" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Европа/АмстерГам" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Европа/АнГора" #: timezones.h:732 msgid "Europe/Athens" msgstr "Европа/Атина" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Европа/Белфаст" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Европа/БеограГ" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Европа/Берлин" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Европа/Братислава" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Европа/Брисел" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Европа/Š‘ŃƒŠŗŃƒŃ€ŠµŃˆŃ‚" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Европа/Š‘ŃƒŠ“ŠøŠ¼ŠæŠµŃˆŃ‚Š°" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Европа/Кишињев" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Европа/ŠšŠ¾ŠæŠµŠ½Ń…Š°Š³ŠµŠ½" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Европа/Даблин" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Европа/Гибралтар" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Европа/Гернзи" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Европа/Єелсинки" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Европа/ŠžŃŃ‚Ń€Š²Š¾ Ман" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Европа/ЦариграГ" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Европа/ŠŠµŃ€Š·Šø" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Европа/ŠšŠ°Š»ŠøŃšŠøŠ½Š³Ń€Š°Š“" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "Москва-01 - ŠšŠ°Š»ŠøŃšŠøŠ½Š³Ń€Š°Š“" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Европа/Кијев" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Европа/Лисабон" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Европа/Š‰ŃƒŠ±Ń™Š°Š½Š°" #: timezones.h:759 msgid "Europe/London" msgstr "Европа/ЛонГон" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Европа/Š›ŃƒŠŗŃŠµŠ¼Š±ŃƒŃ€Š³" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Европа/ŠœŠ°Š“Ń€ŠøŠ“" #: timezones.h:764 msgid "Europe/Malta" msgstr "Европа/ŠœŠ°Š»Ń‚Š°" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Европа/ŠœŠ°Ń€ŠøŃ˜ŠµŃ…Š°Š¼Š½" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Европа/Минск" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Европа/Монако" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Европа/Москва" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "Москва+00 - запаГна Русија" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Европа/ŠŠøŠŗŠ¾Š·ŠøŃ˜Š°" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Европа/ŠžŃŠ»Š¾" #: timezones.h:773 msgid "Europe/Paris" msgstr "Европа/ŠŸŠ°Ń€ŠøŠ·" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Европа/ŠŸŠ¾Š“Š³Š¾Ń€ŠøŃ†Š°" #: timezones.h:775 msgid "Europe/Prague" msgstr "Европа/ŠŸŃ€Š°Š³" #: timezones.h:776 msgid "Europe/Riga" msgstr "Европа/Рига" #: timezones.h:777 msgid "Europe/Rome" msgstr "Европа/Рим" #: timezones.h:778 msgid "Europe/Samara" msgstr "Европа/Дамара" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "Москва - Дамара, Š£Š“Š¼ŃƒŃ€Ń‚ŠøŃ˜Š°" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Европа/Дан_ŠœŠ°Ń€ŠøŠ½Š¾" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Европа/Š”Š°Ń€Š°Ń˜ŠµŠ²Š¾" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Европа/Димферопољ" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "централни ŠšŃ€ŠøŠ¼" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Европа/Дкопље" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Европа/Š”Š¾Ń„ŠøŃ˜Š°" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Европа/Дтокхолм" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Европа/Талин" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Европа/Тирана" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Европа/Тираспољ" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Европа/УжгороГ" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "Š ŃƒŃ‚ŠµŠ½ŠøŃ˜Š°" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Европа/Š’Š°Š“ŃƒŠ·" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Европа/Ватикан" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Европа/Беч" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Европа/Š’ŠøŠ»Š½ŠøŃ˜ŃƒŃ" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Европа/ВолгограГ" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "Москва+00 - Каспијско море" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Европа/Š’Š°Ń€ŃˆŠ°Š²Š°" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Европа/Загреб" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Европа/Š—Š°ŠæŠ¾Ń€Š¾Š¶Ń˜Šµ" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Š—Š°ŠæŠ¾Ń€Š¾Š¶Ń˜Šµ, И Š›ŃƒŠ³Š°Š½ŃŠŗ" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Европа/Цирих" #: timezones.h:808 msgid "Factory" msgstr "Фабрика" #: timezones.h:809 msgid "GB" msgstr "Š’Š‘" #: timezones.h:810 msgid "GB-Eire" msgstr "Š’Š‘-Š˜Ń€ŃŠŗŠ°" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Гринич" #: timezones.h:816 msgid "Hongkong" msgstr "Єонгконг" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "ИсланГ" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "ИнГијски_океан/Антананариво" #: timezones.h:820 msgid "Indian/Chagos" msgstr "ИнГијски_океан/Чагос" #: timezones.h:821 msgid "Indian/Christmas" msgstr "ИнГијски_океан/Божићна_острва" #: timezones.h:822 msgid "Indian/Cocos" msgstr "ИнГијски_океан/Кокос" #: timezones.h:823 msgid "Indian/Comoro" msgstr "ИнГијски_океан/ŠšŠ¾Š¼Š¾Ń€Š¾" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "ИнГијски_океан/ŠšŠµŃ€Š³ŃƒŠ»ŠµŠ½" #: timezones.h:825 msgid "Indian/Mahe" msgstr "ИнГијски_океан/ŠœŠ°Ń…Šµ" #: timezones.h:826 msgid "Indian/Maldives" msgstr "ИнГијски_океан/МалГиви" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "ИнГијски_океан/ŠœŠ°ŃƒŃ€ŠøŃ†ŠøŃ˜ŃƒŃ" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "ИнГијски_океан/ŠœŠ°Ń˜Š¾Ń‚" #: timezones.h:829 msgid "Indian/Reunion" msgstr "ИнГијски_океан/Реунион" #: timezones.h:830 msgid "Iran" msgstr "Š˜Ń€Š°Š½" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "Š˜Š·Ń€Š°ŠµŠ»" #: timezones.h:833 msgid "Jamaica" msgstr "Јамајка" #: timezones.h:834 msgid "Japan" msgstr "Јапан" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Кваџалин" #: timezones.h:836 msgid "Libya" msgstr "Š›ŠøŠ±ŠøŃ˜Š°" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Мексико/Š‘Š°Ń…Š°ŠŠ¾Ń€Ń‚Šµ" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Мексико/Š‘Š°Ń…Š°Š”ŃƒŃ€" #: timezones.h:840 msgid "Mexico/General" msgstr "Мексико/ŠžŠæŃˆŃ‚Šµ" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Блиски исток/РијаГ87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Блиски исток/РијаГ88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Блиски исток/РијаГ89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "ŠŠ°Š²Š°Ń…Š¾" #: timezones.h:847 msgid "NZ" msgstr "ŠŠ—" #: timezones.h:848 msgid "NZ-CHAT" msgstr "ŠŠ—-ЧАТ" #: timezones.h:849 msgid "Pacific/Apia" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Апиа" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/ŠžŠŗŠ»ŠµŠ½Š“" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Чатам" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "ŠžŃŃ‚Ń€Š²Š° Чатам" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Š¢Ń€ŃƒŠŗ" #. comment for time zone Pacific/Chuuk #: timezones.h:858 #, fuzzy msgid "Chuuk (Truk) and Yap" msgstr "Š¢Ń€ŃƒŠŗ (Чуук) Šø Јап" #: timezones.h:859 msgid "Pacific/Easter" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Š£ŃŠŗŃ€ŃˆŃšŠµ_острво" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "Š£ŃŠŗŃ€ŃˆŃšŠµ острво Šø Дала Šø Гомез" #: timezones.h:862 msgid "Pacific/Efate" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Ефате" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Š•Š½Š“ŠµŃ€Š±ŃƒŃ€Šø" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "ŠžŃŃ‚Ń€Š²Š° Феникс" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Факаофо" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Фиџи" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Š¤ŃƒŠ½Š°Ń„ŃƒŃ‚Šø" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Галапагос" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "ŠžŃŃ‚Ń€Š²Š° Галапагос" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Š“Š°Š¼Š±ŠøŃ˜Šµ" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "ŠžŃŃ‚Ń€Š²Š° Š“Š°Š¼Š±ŠøŃ˜Šµ" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/ГваГалканал" #: timezones.h:876 msgid "Pacific/Guam" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Š“ŃƒŠ°Š¼" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Єонолулу" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "Єаваји" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/ŠŠ¾Š½ŃŃ‚Š¾Š½" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "Атол ŠŠ¾Š½ŃŃ‚он" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/ŠšŠøŃ€ŠøŃ‚ŠøŠ¼Š°Ń‚Šø" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "Š›ŠøŠ½ŠøŃ˜ŃŠŗŠ° острва" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/ŠšŠ¾ŃŃ€Šµ" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "ŠšŠ¾ŃŃ€Šµ" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Кваџалин" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/ŠœŠ°ŃŸŃƒŃ€Š¾" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/ŠœŠ°Ń€ŠŗŠøŠ·" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "ŠžŃŃ‚Ń€Š²Š° ŠœŠ°Ń€ŠŗŠøŠ·" #: timezones.h:898 msgid "Pacific/Midway" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/МиГвеј" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "ŠžŃŃ‚Ń€Š²Š° МиГвеј" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/ŠŠ°ŃƒŃ€Ńƒ" #: timezones.h:902 msgid "Pacific/Niue" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/ŠŠøŃƒŠµ" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/ŠŠ¾Ń€Ń„Š¾Š»Šŗ" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/ŠŠ¾ŃƒŠ¼ŠµŠ°" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Паго_Паго" #: timezones.h:906 msgid "Pacific/Palau" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Палау" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/ŠŸŠøŃ‚ŠŗŠ°ŠøŃ€Š½" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Понапе" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 #, fuzzy msgid "Pohnpei (Ponape)" msgstr "Понапе (Понпеи)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Понапе" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/ŠŸŠ¾Ń€Ń‚_ŠœŠ¾Ń€ŠµŠ·Š±Šø" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Раротонга" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Даипан" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Дамоа" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Тахити" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "Š”Ń€ŃƒŃˆŃ‚Š²ŠµŠ½Š° острва" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Тарава" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "ŠžŃŃ‚Ń€Š²Š° Гилберт" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Š¢Š¾Š½Š³Š°Ń‚Š°ŠæŃƒ" #: timezones.h:923 msgid "Pacific/Truk" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Š¢Ń€ŃƒŠŗ" #: timezones.h:924 msgid "Pacific/Wake" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Š’ŠµŃ˜Šŗ" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "ŠžŃŃ‚Ń€Š²Š¾ Š’ŠµŃ˜Šŗ" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Валис" #: timezones.h:928 msgid "Pacific/Yap" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Јап" #: timezones.h:929 msgid "Poland" msgstr "ŠŸŠ¾Ń™ŃŠŗŠ°" #: timezones.h:930 msgid "Portugal" msgstr "ŠŸŠ¾Ń€Ń‚ŃƒŠ³Š°Š»" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Š”ŠøŠ½Š³Š°ŠæŃƒŃ€" #: timezones.h:937 msgid "Turkey" msgstr "Š¢ŃƒŃ€ŃŠŗŠ°" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Универзално" #: timezones.h:940 msgid "US/Alaska" msgstr "ДАД/Аљаска" #: timezones.h:941 msgid "US/Aleutian" msgstr "ДАД/ŠŠ»ŠµŃƒŃ‚ŃŠŗŠ°_острва" #: timezones.h:942 msgid "US/Arizona" msgstr "ДАД/Аризона" #: timezones.h:943 msgid "US/Central" msgstr "ДАД/Централне" #: timezones.h:944 msgid "US/Eastern" msgstr "ДАД/Š˜ŃŃ‚Š¾Ń‡Š½Šµ" #: timezones.h:945 msgid "US/East-Indiana" msgstr "ДАД/Š˜ŃŃ‚Š¾Šŗ-ИнГијана" #: timezones.h:946 msgid "US/Hawaii" msgstr "ДАД/Єаваји" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "ДАД/ИнГијана-Дтарк" #: timezones.h:948 msgid "US/Michigan" msgstr "ДАД/ŠœŠøŃ‡ŠøŠ³ŠµŠ½" #: timezones.h:949 msgid "US/Mountain" msgstr "ДАД/Планине" #: timezones.h:950 msgid "US/Pacific" msgstr "ДАД/ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ" #: timezones.h:951 msgid "US/Samoa" msgstr "ДАД/Дамоа" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Š—ŃƒŠ»Ńƒ" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/et.po0000664000175000017500000017025714632072346023703 0ustar fabiofabio# translation of et.po to Estonian # This file is distributed under the same license as the PACKAGE package. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. # Allan Sims , 2004. # Antti Markus , 2004. # msgid "" msgstr "" "Project-Id-Version: et\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2004-02-17 22:49+0200\n" "Last-Translator: Antti Markus \n" "Language-Team: Estonian\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.3\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Aafrika/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Aafrika/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Aafrika/Addis_Ababa" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Aafrika/Alžeeria" #: timezones.h:5 #, fuzzy msgid "Africa/Asmara" msgstr "Aafrika/Asmera" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Aafrika/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Aafrika/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Aafrika/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Aafrika/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Aafrika/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Aafrika/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Aafrika/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Aafrika/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Aafrika/Kairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Aafrika/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Aafrika/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Aafrika/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Aafrika/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Aafrika/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Aafrika/Djibouti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Aafrika/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Aafrika/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Aafrika/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Aafrika/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Aafrika/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Aafrika/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Aafrika/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Aafrika/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Aafrika/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Aafrika/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Aafrika/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Aafrika/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Aafrika/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Aafrika/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Aafrika/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Aafrika/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Aafrika/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Aafrika/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Aafrika/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Aafrika/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Aafrika/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Aafrika/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Aafrika/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Aafrika/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Aafrika/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Aafrika/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Aafrika/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Aafrika/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Aafrika/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Aafrika/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Aafrika/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Aafrika/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Aafrika/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "Ameerika/Adak" #. comment for time zone America/Adak #: timezones.h:62 #, fuzzy msgid "Aleutian Islands" msgstr "Austraalia/Queensland" #: timezones.h:63 msgid "America/Anchorage" msgstr "Ameerika/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 #, fuzzy msgid "Alaska Time" msgstr "US/Alaska" #: timezones.h:66 msgid "America/Anguilla" msgstr "Ameerika/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "Ameerika/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "Ameerika/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 #, fuzzy msgid "America/Argentina/Buenos_Aires" msgstr "Ameerika/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 #, fuzzy msgid "America/Argentina/Catamarca" msgstr "Ameerika/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 #, fuzzy msgid "America/Argentina/ComodRivadavia" msgstr "Ameerika/Indiana/Indianapolis" #: timezones.h:78 #, fuzzy msgid "America/Argentina/Cordoba" msgstr "Ameerika/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 #, fuzzy msgid "America/Argentina/Jujuy" msgstr "Ameerika/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 #, fuzzy msgid "America/Argentina/La_Rioja" msgstr "Ameerika/Araguaina" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 #, fuzzy msgid "America/Argentina/Mendoza" msgstr "Ameerika/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 #, fuzzy msgid "America/Argentina/Rio_Gallegos" msgstr "Ameerika/Indiana/Marengo" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 #, fuzzy msgid "America/Argentina/Salta" msgstr "Ameerika/Antigua" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 #, fuzzy msgid "America/Argentina/San_Juan" msgstr "Ameerika/Antigua" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 #, fuzzy msgid "America/Argentina/San_Luis" msgstr "Ameerika/Antigua" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 #, fuzzy msgid "America/Argentina/Tucuman" msgstr "Ameerika/Antigua" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 #, fuzzy msgid "America/Argentina/Ushuaia" msgstr "Ameerika/Araguaina" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "Ameerika/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "Ameerika/Asuncion" #: timezones.h:110 #, fuzzy msgid "America/Atikokan" msgstr "Ameerika/Atka" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "Ameerika/Atka" #: timezones.h:114 #, fuzzy msgid "America/Bahia" msgstr "Ameerika/Boa_Vista" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "Ameerika/Boa_Vista" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "Ameerika/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "Ameerika/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "Ameerika/Belize" #: timezones.h:125 #, fuzzy msgid "America/Blanc-Sablon" msgstr "Ameerika/Cancun" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Ameerika/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "Ameerika/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "Ameerika/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Ameerika/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Ameerika/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 #, fuzzy msgid "America/Campo_Grande" msgstr "Ameerika/Cayman" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "Ameerika/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "Ameerika/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "Ameerika/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "Ameerika/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "Ameerika/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "Ameerika/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "US/Kesk" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Ameerika/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 #, fuzzy msgid "America/Coral_Harbour" msgstr "Ameerika/Curacao" #: timezones.h:156 msgid "America/Cordoba" msgstr "Ameerika/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Ameerika/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Ameerika/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "Ameerika/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Ameerika/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "Ameerika/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Ameerika/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "Ameerika/Denver" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "US/Mountain" #: timezones.h:174 msgid "America/Detroit" msgstr "Ameerika/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "Ameerika/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "Ameerika/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "Ameerika/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Ameerika/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "Ameerika/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Ameerika/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Ameerika/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Ameerika/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "Ameerika/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Ameerika/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Ameerika/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "Ameerika/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Ameerika/Guadeloupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "Ameerika/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Ameerika/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "Ameerika/Guyana" #: timezones.h:207 msgid "America/Halifax" msgstr "Ameerika/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "Ameerika/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Ameerika/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Ameerika/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Ameerika/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Ameerika/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 #, fuzzy msgid "America/Indiana/Petersburg" msgstr "Ameerika/Indiana/Marengo" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Ameerika/Indianapolis" #: timezones.h:227 #, fuzzy msgid "America/Indiana/Tell_City" msgstr "Ameerika/Indiana/Vevay" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Ameerika/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 #, fuzzy msgid "America/Indiana/Vincennes" msgstr "Ameerika/Indiana/Vevay" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 #, fuzzy msgid "America/Indiana/Winamac" msgstr "Ameerika/Indiana/Vevay" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "Ameerika/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Ameerika/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "Ameerika/Jamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "Ameerika/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "Ameerika/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Ameerika/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 #, fuzzy msgid "Eastern Time - Kentucky - Louisville area" msgstr "Ameerika/Kentucky/Louisville" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Ameerika/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Ameerika/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "Ameerika/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "Ameerika/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Ameerika/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 #, fuzzy msgid "Pacific Time" msgstr "Pacific/Niue" #: timezones.h:262 msgid "America/Louisville" msgstr "Ameerika/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "Ameerika/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "Ameerika/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "Ameerika/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 #, fuzzy msgid "America/Marigot" msgstr "Ameerika/Maceio" #: timezones.h:271 msgid "America/Martinique" msgstr "Ameerika/Martinique" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "Ameerika/Manaus" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Ameerika/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "Ameerika/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "Ameerika/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "Ameerika/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Ameerika/Mexico_City" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "Ameerika/Miquelon" #: timezones.h:289 #, fuzzy msgid "America/Moncton" msgstr "Ameerika/Edmonton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "Ameerika/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "Ameerika/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "Ameerika/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "Ameerika/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "Ameerika/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "Ameerika/New_York" #. comment for time zone America/New_York #: timezones.h:303 #, fuzzy msgid "Eastern Time" msgstr "US/Ida" #: timezones.h:304 msgid "America/Nipigon" msgstr "Ameerika/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "Ameerika/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "Ameerika/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 #, fuzzy msgid "Atlantic islands" msgstr "Atlandi/Kanaari" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Ameerika/North_Dakota/Center" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 #, fuzzy msgid "America/North_Dakota/New_Salem" msgstr "Ameerika/North_Dakota/Center" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "Ameerika/Managua" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "Ameerika/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Ameerika/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Ameerika/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "Ameerika/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Ameerika/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Ameerika/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Ameerika/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Ameerika/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Ameerika/Puerto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Ameerika/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Ameerika/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "Ameerika/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "Ameerika/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 #, fuzzy msgid "America/Resolute" msgstr "Ameerika/Belem" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Ameerika/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "Ameerika/Rosario" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "Ameerika/Santiago" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 #, fuzzy msgid "America/Santarem" msgstr "Ameerika/Santiago" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "Ameerika/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Ameerika/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Ameerika/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Ameerika/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "Ameerika/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 #, fuzzy msgid "America/St_Barthelemy" msgstr "Ameerika/Belem" #: timezones.h:376 msgid "America/St_Johns" msgstr "Ameerika/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Ameerika/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Ameerika/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Ameerika/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Ameerika/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Ameerika/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Ameerika/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "Ameerika/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Ameerika/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "Ameerika/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 #, fuzzy msgid "America/Toronto" msgstr "Ameerika/Tortola" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "Ameerika/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "Ameerika/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "Ameerika/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Ameerika/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Ameerika/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "Ameerika/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Ameerika/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Antarktika/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Antarktika/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Antarktika/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "Antarktika/McMurdo" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Antarktika/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Antarktika/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Antarktika/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 #, fuzzy msgid "Antarctica/Rothera" msgstr "Antarktika/LƵunapoolus" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antarktika/LƵunapoolus" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Antarktika/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Antarktika/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Arctic/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Aasia/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Aasia/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Aasia/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Aasia/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Aasia/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Aasia/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Aasia/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Aasia/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Aasia/Baghdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Aasia/Bahrain" #: timezones.h:468 msgid "Asia/Baku" msgstr "Aasia/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Aasia/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Aasia/Beirut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Aasia/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Aasia/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Aasia/Calcutta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Aasia/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Aasia/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "Aasia/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Aasia/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Aasia/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Aasia/Damascus" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Aasia/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Aasia/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Aasia/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Aasia/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Aasia/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Aasia/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 #, fuzzy msgid "Asia/Ho_Chi_Minh" msgstr "Aasia/Chongqing" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Aasia/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Aasia/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Aasia/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Aasia/Istanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Aasia/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Aasia/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Aasia/Jeruusalemm" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Aasia/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Aasia/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Aasia/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Aasia/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 #, fuzzy msgid "Asia/Kathmandu" msgstr "Aasia/Katmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Aasia/Katmandu" #: timezones.h:518 #, fuzzy msgid "Asia/Kolkata" msgstr "Aasia/Jakarta" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Aasia/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Aasia/Kuala Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Aasia/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Aasia/Kuwait" #: timezones.h:529 msgid "Asia/Macao" msgstr "Aasia/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Aasia/Macau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Aasia/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Aasia/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "Aasia/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Aasia/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Aasia/Nicosia" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "Aasia/Irkutsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "Aasia/Novosibirsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Aasia/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 #, fuzzy msgid "Moscow+03 - Novosibirsk" msgstr "Aasia/Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Aasia/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "Aasia/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Aasia/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Aasia/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Aasia/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Aasia/Katar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Aasia/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Aasia/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Aasia/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Aasia/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Aasia/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Aasia/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Aasia/Saigon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Aasia/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Aasia/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Aasia/Sƶul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Aasia/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "Aasia/Singapore" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Aasia/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Aasia/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Aasia/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Aasia/Tehran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Aasia/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Aasia/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Aasia/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Aasia/Tokyo" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Aasia/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Aasia/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Aasia/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Aasia/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Aasia/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Aasia/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Aasia/Jakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Aasia/Yekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Aasia/Yerevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlandi/Assoorid" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlandi/Bermuuda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlandi/Kanaari" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlandi/Cape_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlandi/FƤƤri" #: timezones.h:616 #, fuzzy msgid "Atlantic/Faroe" msgstr "Atlandi/FƤƤri" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlandi/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlandi/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlandi/Reikjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlandi/LƵuna_Georgia" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlandi/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlandi/St_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "Austraalia/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Austraalia/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 #, fuzzy msgid "South Australia" msgstr "Austraalia/ACT" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Austraalia/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Austraalia/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Austraalia/Canberra" #: timezones.h:636 #, fuzzy msgid "Australia/Currie" msgstr "Austraalia/Canberra" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Austraalia/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 #, fuzzy msgid "Australia/Eucla" msgstr "Austraalia/Queensland" #. comment for time zone Australia/Eucla #: timezones.h:644 #, fuzzy msgid "Western Australia - Eucla area" msgstr "Austraalia/Queensland" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Austraalia/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "Austraalia/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Austraalia/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Austraalia/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Austraalia/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 #, fuzzy msgid "Victoria" msgstr "Austraalia/Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "Austraalia/PƵhi" #: timezones.h:659 msgid "Australia/NSW" msgstr "Austraalia/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "Austraalia/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Austraalia/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "Austraalia/LƵuna" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Austraalia/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Austraalia/Tasmaania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Austraalia/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "Austraalia/LƤƤne" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Austraalia/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brasiilia/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brasiilia/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brasiilia/Ida" #: timezones.h:675 msgid "Brazil/West" msgstr "Brasiilia/LƤƤne" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Kanada/Atlandi" #: timezones.h:677 msgid "Canada/Central" msgstr "Kanada/Kesk" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Kanada/Ida" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Kanada/Ida-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Kanada/Mountain" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Kanada/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Kanada/Pacific" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Kanada/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Kanada/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "TÅ”iili/Manner" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "TÅ”iili/LihavƵttesaar" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Kuuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Egiptus" #: timezones.h:692 msgid "Eire" msgstr "Iirimaa" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Suulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Euroopa/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Euroopa/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Euroopa/Ateena" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Euroopa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Euroopa/Belgrad" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Euroopa/Berliin" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Euroopa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Euroopa/Brüssel" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Euroopa/Bukarest" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Euroopa/Budapest" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Euroopa/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Euroopa/Kopenhaagen" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Euroopa/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Euroopa/Gibraltar" #: timezones.h:744 #, fuzzy msgid "Europe/Guernsey" msgstr "Euroopa/Ateena" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Euroopa/Helsinki" #: timezones.h:746 #, fuzzy msgid "Europe/Isle_of_Man" msgstr "Euroopa/Oslo" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Euroopa/Istanbul" #: timezones.h:748 #, fuzzy msgid "Europe/Jersey" msgstr "Euroopa/Pariis" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Euroopa/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Euroopa/Kiiev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Euroopa/Lissabon" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Euroopa/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Euroopa/London" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Euroopa/Luxemburg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Euroopa/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Euroopa/Malta" #: timezones.h:765 #, fuzzy msgid "Europe/Mariehamn" msgstr "Euroopa/Madrid" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Euroopa/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Euroopa/Monaco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Euroopa/Moskva" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Euroopa/Nicosia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Euroopa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Euroopa/Pariis" #: timezones.h:774 #, fuzzy msgid "Europe/Podgorica" msgstr "Euroopa/Andorra" #: timezones.h:775 msgid "Europe/Prague" msgstr "Euroopa/Praha" #: timezones.h:776 msgid "Europe/Riga" msgstr "Euroopa/Riia" #: timezones.h:777 msgid "Europe/Rome" msgstr "Euroopa/Rooma" #: timezones.h:778 msgid "Europe/Samara" msgstr "Euroopa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Euroopa/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Euroopa/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Euroopa/Simferoopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Euroopa/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Euroopa/Sofia" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Euroopa/Stockholm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Euroopa/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Euroopa/Tirana" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Euroopa/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Euroopa/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Euroopa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Euroopa/Vatikan" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Euroopa/Viin" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Euroopa/Vilnius" #: timezones.h:799 #, fuzzy msgid "Europe/Volgograd" msgstr "Euroopa/Belgrad" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Euroopa/Varssav" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Euroopa/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Euroopa/Zaporožje" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Euroopa/Zürich" #: timezones.h:808 msgid "Factory" msgstr "Factory" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Iiri" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Island" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Indian/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Indian/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Indian/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Indian/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Indian/Comoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Indian/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Indian/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Indian/Maldives" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Indian/Mauritius" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Indian/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Indian/Reunion" #: timezones.h:830 msgid "Iran" msgstr "Iraan" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "Iisrael" #: timezones.h:833 msgid "Jamaica" msgstr "Jamaika" #: timezones.h:834 msgid "Japan" msgstr "Jaapan" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Liibüa" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Mehhiko/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Mehhiko/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Mehhiko/Üldine" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Mideast/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Mideast/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Mideast/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navaho" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Pacific/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Pacific/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Pacific/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 #, fuzzy msgid "Chatham Islands" msgstr "TÅ”iili/LihavƵttesaar" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "Pacific/Truk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 #, fuzzy msgid "Pacific/Easter" msgstr "Pacific/Easter" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Pacific/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Pacific/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Pacific/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Pacific/Fidži" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Pacific/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Pacific/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Pacific/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Pacific/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Pacific/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Pacific/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 #, fuzzy msgid "Hawaii" msgstr "US/Havai" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Pacific/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Pacific/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Pacific/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 #, fuzzy msgid "Kosrae" msgstr "Iisrael" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Pacific/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Pacific/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Pacific/Markiisisaared" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Pacific/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Pacific/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Pacific/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Pacific/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Pacific/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Pacific/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Pacific/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Pacific/Pitcairn" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "Pacific/Ponape" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Pacific/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Pacific/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Pacific/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Pacific/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Pacific/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Pacific/Tahiiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Pacific/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 #, fuzzy msgid "Gilbert Islands" msgstr "TÅ”iili/LihavƵttesaar" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Pacific/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Pacific/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Pacific/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Pacific/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Pacific/Yap" #: timezones.h:929 msgid "Poland" msgstr "Poola" #: timezones.h:930 msgid "Portugal" msgstr "Portugal" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapur" #: timezones.h:937 msgid "Turkey" msgstr "Türgi" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "US/Alaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "US/Aleuudi" #: timezones.h:942 msgid "US/Arizona" msgstr "US/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "US/Kesk" #: timezones.h:944 msgid "US/Eastern" msgstr "US/Ida" #: timezones.h:945 msgid "US/East-Indiana" msgstr "US/Ida-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "US/Havai" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "US/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "US/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "US/Mountain" #: timezones.h:950 msgid "US/Pacific" msgstr "US/Pacific" #: timezones.h:951 msgid "US/Samoa" msgstr "US/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Suulu" #, fuzzy #~ msgid "US/Pacific-New" #~ msgstr "US/Pacific" #~ msgid "SystemV/AST4" #~ msgstr "SystemV/AST4" #~ msgid "SystemV/AST4ADT" #~ msgstr "SystemV/AST4ADT" #~ msgid "SystemV/CST6" #~ msgstr "SystemV/CST6" #~ msgid "SystemV/CST6CDT" #~ msgstr "SystemV/CST6CDT" #~ msgid "SystemV/EST5" #~ msgstr "SystemV/EST5" #~ msgid "SystemV/EST5EDT" #~ msgstr "SystemV/EST5EDT" #~ msgid "SystemV/HST10" #~ msgstr "SystemV/HST10" #~ msgid "SystemV/MST7" #~ msgstr "SystemV/MST7" #~ msgid "SystemV/MST7MDT" #~ msgstr "SystemV/MST7MDT" #~ msgid "SystemV/PST8" #~ msgstr "SystemV/PST8" #~ msgid "SystemV/PST8PDT" #~ msgstr "SystemV/PST8PDT" #~ msgid "SystemV/YST9" #~ msgstr "SystemV/YST9" #~ msgid "SystemV/YST9YDT" #~ msgstr "SystemV/YST9YDT" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/pt_BR.po0000664000175000017500000020221714632072346024271 0ustar fabiofabio# Brazilian Portuguese translation of the "timezones" messages # Copyright (C) 1996,2003,2004, 2006, 2008 Free Software Foundation, Inc. # # Wanderlei Antonio Cavassin , 1997. # Paul Gampe , 2003. # David Barzilay , 2004. # Rodrigo Padula de Oliveira , 2006. # Igor Pires Soares , 2006, 2010. # Rodrigo Padula de Oliveira , 2008. # Taylon Silmer , 2010. msgid "" msgstr "" "Project-Id-Version: system-config-date-timezones\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-09-03 15:09-0300\n" "Last-Translator: Igor Pires Soares \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: KBabel 1.11.4\n" "X-Poedit-Language: Portuguese\n" "X-Poedit-Country: BRAZIL\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Ɓfrica/AbidjĆ£" #: timezones.h:2 msgid "Africa/Accra" msgstr "Ɓfrica/Acra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Ɓfrica/Adis Abeba" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Ɓfrica/ArgĆ©lia" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Ɓfrica/Asmara" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Ɓfrica/Asmara" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Ɓfrca/Bamaco" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Ɓfrica/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Ɓfrica/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Ɓfrica/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Ɓfrica/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Ɓfrica/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Ɓfrica/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Ɓfrica/Cairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Ɓfrica/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Ɓfrica/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Ceuta & Melilla" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Ɓfrica/Conacri" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Ɓfrica/Dacar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Ɓfrica/Dar es Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Ɓfrica/Djibuti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Ɓfrica/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Ɓfrica/El Aiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Ɓfrica/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Ɓfrica/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Ɓfrica/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Ɓfrica/Johanesburgo" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Ɓfrica/Campala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Ɓfrica/Cartum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Ɓfrica/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Ɓfrica/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "Oeste da Rep. Dem. do Congo" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Ɓfrica/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Ɓfrica/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Ɓfrica/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Ɓfrica/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Ɓfrica/Lumbubashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "Leste da Rep. Dem. do Congo" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Ɓfrica/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Ɓfrica/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Ɓfrica/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Ɓfrica/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Ɓfrica/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Ɓfrica/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Ɓfrica/Monróvia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Ɓfrica/Nairóbi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Ɓfrica/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Ɓfrica/Niamei" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Ɓfrica/Nuakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Ɓfrica/Uagadugu" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Ɓfrica/Porto Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Ɓfrica/SĆ£o TomĆ©" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Ɓfrica/Tombouctou" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Ɓfrica/TrĆ­poli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Ɓfrica/TĆŗnis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Ɓfrica/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "AmĆ©rica/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "Ilhas Aleutas" #: timezones.h:63 msgid "America/Anchorage" msgstr "AmĆ©rica/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "HorĆ”rio do Alasca" #: timezones.h:66 msgid "America/Anguilla" msgstr "AmĆ©rica/Anguila" #: timezones.h:67 msgid "America/Antigua" msgstr "AmĆ©rica/AntĆ­gua" #: timezones.h:68 msgid "America/Araguaina" msgstr "AmĆ©rica/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Tocantins" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "AmĆ©rica/Argentina/Buenos Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Buenos Aires (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "AmĆ©rica/Argentina/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "Catamarca (CT), Chubut (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "America/Argentina/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "AmĆ©rica/Argentina/Córdoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "Maioria das localidades (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "AmĆ©rica/Argentina/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Jujuy (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "AmĆ©rica/Argentina/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "La Rioja (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "AmĆ©rica/Argentina/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "Mendoza (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "AmĆ©rica/Argentina/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Santa Cruz (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "AmĆ©rica/Argentina/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "AmĆ©rica/Argentina/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "San Juan (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "AmĆ©rica/Argentina/San_Luis" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "San Luis (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "AmĆ©rica/Argentina/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Tucuman (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "AmĆ©rica/Argentina/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Tierra del Fuego (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "AmĆ©rica/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "AmĆ©rica/Assunção" #: timezones.h:110 msgid "America/Atikokan" msgstr "AmĆ©rica/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "HorĆ”rio padrĆ£o do leste - Atikokan, Ontario e Southampton I, Nunavut" #: timezones.h:113 msgid "America/Atka" msgstr "AmĆ©rica/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "AmĆ©rica/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "Bahia" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "AmĆ©rica/Bahia_Banderas" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "HorĆ”rio central do MĆ©xico - Bahia de Banderas" #: timezones.h:120 msgid "America/Barbados" msgstr "AmĆ©rica/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "AmĆ©rica/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "AmapĆ”, leste do ParĆ”" #: timezones.h:124 msgid "America/Belize" msgstr "AmĆ©rica/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "AmĆ©rica/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "HorĆ”rio padrĆ£o do AtlĆ¢ntico - Quebec - Lower North Shore" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "AmĆ©rica/Boa Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "Roraima" #: timezones.h:131 msgid "America/Bogota" msgstr "AmĆ©rica/BogotĆ”" #: timezones.h:132 msgid "America/Boise" msgstr "AmĆ©rica/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "Mountain Time - sul de Idaho & leste do Oregon" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "AmĆ©rica/Buenos Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "AmĆ©rica/Gambridge Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "Mountain Time - oeste de Nunavut" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "AmĆ©rica/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "Mato Grosso do Sul" #: timezones.h:142 msgid "America/Cancun" msgstr "AmĆ©rica/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "HorĆ”rio central - Quintana Roo" #: timezones.h:145 msgid "America/Caracas" msgstr "AmĆ©rica/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "AmĆ©rica/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "AmĆ©rica/Caiena" #: timezones.h:148 msgid "America/Cayman" msgstr "AmĆ©rica/CaimĆ£s" #: timezones.h:149 msgid "America/Chicago" msgstr "AmĆ©rica/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "HorĆ”rio central" #: timezones.h:152 msgid "America/Chihuahua" msgstr "AmĆ©rica/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "Mexican Mountain Time - Chihuahua away from US border" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "AmĆ©rica/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "AmĆ©rica/Córdoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "AmĆ©rica/Costa Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "AmĆ©rica/CuiabĆ”" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "Mato Grosso" #: timezones.h:161 msgid "America/Curacao" msgstr "AmĆ©rica/CuraƧao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "AmĆ©rica/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "Costa leste, norte de Scoresbysund" #: timezones.h:165 msgid "America/Dawson" msgstr "AmĆ©rica/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "HorĆ”rio do PacĆ­fico - norte de Yukon" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "AmĆ©rica/Dawson Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" #: timezones.h:171 msgid "America/Denver" msgstr "AmĆ©rica/Denver" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "Mountain Time" #: timezones.h:174 msgid "America/Detroit" msgstr "AmĆ©rica/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "HorĆ”rio do leste - Michigan - maioria das localidades" #: timezones.h:177 msgid "America/Dominica" msgstr "AmĆ©rica/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "AmĆ©rica/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "Mountain Time - Alberta, leste de British Columbia & oeste de Saskatchewan" #: timezones.h:181 msgid "America/Eirunepe" msgstr "AmĆ©rica/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "Oeste do Amazonas" #: timezones.h:184 msgid "America/El_Salvador" msgstr "AmĆ©rica/El Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "AmĆ©rica/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "AmĆ©rica/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "Nordeste do Brasil (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "AmĆ©rica/Fort Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "AmĆ©rica/Glace Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "HorĆ”rio do AtlĆ¢ntico - Nova Scotia - lugares que nĆ£o consideram o DST 1966-1971" #: timezones.h:193 msgid "America/Godthab" msgstr "AmĆ©rica/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 #: timezones.h:364 #: timezones.h:453 #: timezones.h:591 #: timezones.h:754 #: timezones.h:852 #: timezones.h:894 msgid "most locations" msgstr "Maioria das localidades" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "AmĆ©rica/Goose Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "HorĆ”rio do AtlĆ¢ntico - Labrador - maioria das localidades" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "AmĆ©rica/Grand Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "AmĆ©rica/Granada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "AmĆ©rica/Guadalupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "AmĆ©rica/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "AmĆ©rica/Guaiaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 #: timezones.h:757 #: timezones.h:763 msgid "mainland" msgstr "Localidade principal" #: timezones.h:206 msgid "America/Guyana" msgstr "AmĆ©rica/Guiana" #: timezones.h:207 msgid "America/Halifax" msgstr "AmĆ©rica/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "HorĆ”rio do AtlĆ¢ntico - Nova Scotia (maioria das localidades), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "AmĆ©rica/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "AmĆ©rica/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "Mountain Standard Time - Sonora" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "AmĆ©rica/Indiana/IndianĆ”polis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "HorĆ”rio do leste - Indiana - maioria das localidades" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "AmĆ©rica/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "HorĆ”rio central - Indiana - Condado de Starke" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "AmĆ©rica/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "HorĆ”rio do leste - Indiana - Condado de Crawford" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "AmĆ©rica/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "HorĆ”rio do leste - Indiana - Condado Pike" #: timezones.h:226 msgid "America/Indianapolis" msgstr "AmĆ©rica/IndianĆ”polis" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "AmĆ©rica/Indiana/Tell_City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "HorĆ”rio central - Indiana - Condado Perry" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "AmĆ©rica/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "HorĆ”rio do leste - Indiana - Condado Switzerland" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "AmĆ©rica/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "HorĆ”rio do leste - Indiana - Condados de Daviess, Dubois, Knox & Martin" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "AmĆ©rica/Indiana/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "HorĆ”rio do leste - Indiana - Condado Pulaski" #: timezones.h:239 msgid "America/Inuvik" msgstr "AmĆ©rica/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "Mountain Time - oeste de Northwest Territories" #: timezones.h:242 msgid "America/Iqaluit" msgstr "AmĆ©rica/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "Eastern Time - leste de Nunavut - maioria das localidades" #: timezones.h:245 msgid "America/Jamaica" msgstr "AmĆ©rica/Jamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "AmĆ©rica/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "AmĆ©rica/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "HorĆ”rio do Alasca - Alaska panhandle" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "AmĆ©rica/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "HorĆ”rio do leste - Kentucky - Ɓrea de Louisville" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "AmĆ©rica/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "HorĆ”rio do leste - Kentucky - Condado Wayne" #: timezones.h:256 msgid "America/Knox_IN" msgstr "AmĆ©rica/Knox IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "AmĆ©rica/La Paz" #: timezones.h:258 msgid "America/Lima" msgstr "AmĆ©rica/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "AmĆ©rica/Los Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "HorĆ”rio do PacĆ­fico" #: timezones.h:262 msgid "America/Louisville" msgstr "AmĆ©rica/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "AmĆ©rica/Maceió" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "Alagoas, Sergipe" #: timezones.h:266 msgid "America/Managua" msgstr "AmĆ©rica/ManĆ”gua" #: timezones.h:267 msgid "America/Manaus" msgstr "AmĆ©rica/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "Leste do Amazonas" #: timezones.h:270 msgid "America/Marigot" msgstr "AmĆ©rica/Marigot" #: timezones.h:271 msgid "America/Martinique" msgstr "AmĆ©rica/Martinica" #: timezones.h:272 msgid "America/Matamoros" msgstr "America/Matamoros" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" #: timezones.h:275 msgid "America/Mazatlan" msgstr "AmĆ©rica/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "Mountain Time - S Baja, Nayarit, Sinaloa" #: timezones.h:278 msgid "America/Mendoza" msgstr "AmĆ©rica/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "AmĆ©rica/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "HorĆ”rio central - Michigan - Condados de Dickinson, Gogebic, Iron & Menominee" #: timezones.h:282 msgid "America/Merida" msgstr "AmĆ©rica/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "HorĆ”rio central - Campeche, Yucatan" #: timezones.h:285 msgid "America/Mexico_City" msgstr "AmĆ©rica/Cidade do MĆ©xico" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "HorĆ”rio central - maioria das localidades" #: timezones.h:288 msgid "America/Miquelon" msgstr "AmĆ©rica/Miquelon" #: timezones.h:289 msgid "America/Moncton" msgstr "AmĆ©rica/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "HorĆ”rio do AtlĆ¢ntico - New Brunswick" #: timezones.h:292 msgid "America/Monterrey" msgstr "AmĆ©rica/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from US border" msgstr "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from US border" #: timezones.h:295 msgid "America/Montevideo" msgstr "AmĆ©rica/MontevidĆ©u" #: timezones.h:296 msgid "America/Montreal" msgstr "AmĆ©rica/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "HorĆ”rio do leste - Quebec - maioria das localidades" #: timezones.h:299 msgid "America/Montserrat" msgstr "AmĆ©rica/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "AmĆ©rica/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "AmĆ©rica/Nova Iorque" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "HorĆ”rio do leste" #: timezones.h:304 msgid "America/Nipigon" msgstr "AmĆ©rica/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "HorĆ”rio do leste - Ontario & Quebec - lugares que nĆ£o consideram o DST 1967-1973" #: timezones.h:307 msgid "America/Nome" msgstr "AmĆ©rica/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "HorĆ”rio do Alasca - oeste do Alasca" #: timezones.h:310 msgid "America/Noronha" msgstr "AmĆ©rica/Fernando_de_Noronha" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "Ilhas AtlĆ¢nticas" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "AmĆ©rica/_Dakota_do_Norte/Centro" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "HorĆ”rio central - North Dakota - Condado Oliver" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "AmĆ©rica/Dakota_do_Norte/Nova_SalĆ©m" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "HorĆ”rio central - North Dakota - Condado Morton (exceto a Ć”rea de Mandan)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "America/Ojinaga" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "US Mountain Time - Chihuahua near US border" #: timezones.h:322 msgid "America/Panama" msgstr "AmĆ©rica/PanamĆ”" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "AmĆ©rica/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "HorĆ”rio do leste - Pangnirtung, Nunavut" #: timezones.h:326 msgid "America/Paramaribo" msgstr "AmĆ©rica/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "AmĆ©rica/FĆŖnix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "Mountain Standard Time - Arizona" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "AmĆ©rica/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "AmĆ©rica/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "AmĆ©rica/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "AmĆ©rica/Porto Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "RondĆ“nia" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "AmĆ©rica/Porto Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "AmĆ©rica/Rainy River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "HorĆ”rio central - Rainy River & Fort Frances, OntĆ”rio" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "AmĆ©rica/Rankin Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "HorĆ”rio central - Nunavut central" #: timezones.h:343 msgid "America/Recife" msgstr "AmĆ©rica/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "Pernambuco" #: timezones.h:346 msgid "America/Regina" msgstr "AmĆ©rica/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "HorĆ”rio central padrĆ£o - Saskatchewan - maioria das localidades" #: timezones.h:349 msgid "America/Resolute" msgstr "AmĆ©rica/Resolute" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "HorĆ”rio padrĆ£o do leste - Resolute, Nunavut" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "AmĆ©rica/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "Acre" #: timezones.h:355 msgid "America/Rosario" msgstr "AmĆ©rica/RosĆ”rio" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "AmĆ©rica/Santa_Isabel" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "HorĆ”rio do pacĆ­fico mexicano - Baja California away from US border" #: timezones.h:359 msgid "America/Santarem" msgstr "AmĆ©rica/SantarĆ©m" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "Oeste do ParĆ”" #: timezones.h:362 msgid "America/Santiago" msgstr "AmĆ©rica/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "AmĆ©rica/Santo Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "AmĆ©rica/SĆ£o Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "Sul, sudeste e parte do centro-oeste do Brasil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "AmĆ©rica/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Scoresbysund / Ittoqqortoormiit" #: timezones.h:372 msgid "America/Shiprock" msgstr "AmĆ©rica/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "Mountain Time - Navajo" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "AmĆ©rica/St_Barthelemy" #: timezones.h:376 msgid "America/St_Johns" msgstr "AmĆ©rica/St Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "HorĆ”rio de Newfoundland, incluindo o sudeste de Labrador" #: timezones.h:379 msgid "America/St_Kitts" msgstr "AmĆ©rica/St Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "AmĆ©rica/Santa LĆŗcia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "AmĆ©rica/St Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "AmĆ©rica/SĆ£o Vicente" #: timezones.h:383 msgid "America/Swift_Current" msgstr "AmĆ©rica/Swift Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "HorĆ”rio central padrĆ£o - Saskatchewan - meio-oeste" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "AmĆ©rica/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "AmĆ©rica/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "Thule / Pituffik" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "AmĆ©rica/Thunder Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "HorĆ”rio do leste - Thunder Bay, OntĆ”rio" #: timezones.h:393 msgid "America/Tijuana" msgstr "AmĆ©rica/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "HorĆ”rio do pacĆ­fico US - Baja California near US border" #: timezones.h:396 msgid "America/Toronto" msgstr "AmĆ©rica/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "HorĆ”rio do leste - OntĆ”rio - maioria das localidades" #: timezones.h:399 msgid "America/Tortola" msgstr "AmĆ©rica/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "AmĆ©rica/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "HorĆ”rio do PacĆ­fico - oeste de British Columbia" #: timezones.h:403 msgid "America/Virgin" msgstr "AmĆ©rica/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "AmĆ©rica/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "HorĆ”rio do PacĆ­fico - sul de Yukon" #: timezones.h:407 msgid "America/Winnipeg" msgstr "AmĆ©rica/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "HorĆ”rio central - Manitoba & oeste de OntĆ”rio" #: timezones.h:410 msgid "America/Yakutat" msgstr "AmĆ©rica/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "HorĆ”rio do Alasca - Alaska panhandle neck" #: timezones.h:413 msgid "America/Yellowknife" msgstr "AmĆ©rica/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "Mountain Time - Northwest Territories centrais" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "AntĆ”rtica/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "Casey Station, PenĆ­nsula de Bailey" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "AntĆ”rtica/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "Davis Station, Vestfold Hills" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "AntĆ”rtica/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Dumont-d'Urville Station, Terre Adelie" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "AntĆ”rtica/Macquarie" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "Macquarie Island Station, Macquarie Island" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "AntĆ”rtica/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "Mawson Station, BaĆ­a Holme" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "AntĆ”rtica/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "McMurdo Station, Ilha Ross" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "AntĆ”rtica/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "Palmer Station, Ilha Anvers" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "AntĆ”rtica/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "Rothera Station, Ilha Adelaide" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "AntĆ”rtica/Polo Sul" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "Amundsen-Scott Station, Pólo Sul" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "AntĆ”rtica/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "Syowa Station, Leste de Ongul I" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "AntĆ”rtica/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "Vostok Station, Pólo Sul MagnĆ©tico" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Ɓrtico/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Ɓsia/Ɓden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Ɓsia/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Ɓsia/AmĆ£" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Ɓsia/Anadir" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "Moscow+08 - Mar de Bering" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Ɓsia/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Ɓsia/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "Aqtobe (Aktobe)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Ɓsia/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Ɓsia/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Ɓsia/BagdĆ”" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Ɓsia/Barein" #: timezones.h:468 msgid "Asia/Baku" msgstr "Ɓsia/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Ɓsia/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Ɓsia/Beirute" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Ɓsia/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Ɓsia/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Ɓsia/CalcutĆ”" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Ɓsia/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "Dornod, Sukhbaatar" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Ɓsia/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "China central - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." #: timezones.h:480 msgid "Asia/Chungking" msgstr "Ɓsia/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Ɓsia/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Ɓsia/Daca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Ɓsia/Damasco" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Ɓsia/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Ɓsia/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Ɓsia/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Ɓsia/DushanbĆŖ" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Ɓsia/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Ɓsia/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Heilongjiang (exceto Mohe), Jilin" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "Ɓsia/Ho_Chi_Minh" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Ɓsia/Hong Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Ɓsia/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Ɓsia/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "Moscow+05 - Lago Baikal" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Ɓsia/Istanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Ɓsia/Jacarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "Java & Sumatra" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Ɓsia/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "Irian Jaya & As Moluccas" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Ɓsia/JerusalĆ©m" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Ɓsia/Cabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Ɓsia/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "Moscow+08 - Kamchatka" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Ɓsia/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Ɓsia/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "Oeste do Tibet & Xinjiang" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "Ɓsia/Kathmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Ɓsia/Katmandu" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "Ɓsia/Kolkata" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Ɓsia/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "Moscow+04 - Rio Yenisei" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Ɓsia/Kuala Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "MalĆ”sia peninsular" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Ɓsia/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "Sabah & Sarawak" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Ɓsia/Kuwait" #: timezones.h:529 msgid "Asia/Macao" msgstr "Ɓsia/Macau" #: timezones.h:530 msgid "Asia/Macau" msgstr "Ɓsia/Macau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Ɓsia/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "Moscow+08 - Magadan" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Ɓsia/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "Leste & sul de Borneo, Celebes, Bali, Nusa Tengarra, oeste de Timor" #: timezones.h:537 msgid "Asia/Manila" msgstr "Ɓsia/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Ɓsia/Mascate" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Ɓsia/Nicósia" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "Ɓsia/Novokuznetsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "Moscow+03 - Novokuznetsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Ɓsia/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "Moscow+03 - Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Ɓsia/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "Moscow+03 - oeste da SibĆ©ria" #: timezones.h:549 msgid "Asia/Oral" msgstr "Ɓsia/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "Oeste do CazaquistĆ£o" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Ɓsia/Phnom Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Ɓsia/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "Oeste & centro de Borneo" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Ɓsia/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Ɓsia/Catar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Ɓsia/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "Qyzylorda (Kyzylorda, Kzyl-Orda)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Ɓsia/Yangun" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Ɓsia/Riad" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Ɓsia/Riad87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Ɓsia/Riad88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Ɓsia/Riad89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Ɓsia/Saigon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Ɓsia/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "Moscow+07 - Ilha Sakhalin" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Ɓsia/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "Oeste do UzbequistĆ£o" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Ɓsia/Seul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Ɓsia/Xangai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "Leste da China - Pequim, Guangdong, Shanghai, etc." #: timezones.h:577 msgid "Asia/Singapore" msgstr "Ɓsia/Cingapura" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Ɓsia/TaipĆ©" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Ɓsia/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "Leste do UzbequistĆ£o" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Ɓsia/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Ɓsia/TeerĆ£" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Ɓsia/Tel Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Ɓsia/Timbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Ɓsia/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Ɓsia/Tóquio" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Ɓsia/Ujung Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Ɓsia/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Ɓsia/Ulan Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Ɓsia/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "maior parte do Tibet & Xinjiang" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Ɓsia/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Ɓsia/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "Moscow+07 - Rio Amur" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Ɓsia/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "Moscow+06 - Rio Lena" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Ɓsia/Yekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "Moscow+02 - Urais" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Ɓsia/Yerevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "AtlĆ¢ntico/AƧores" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "AƧores" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "AtlĆ¢ntico/Bermuda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "AtlĆ¢ntico/CanĆ”rias" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "Ilhas CanĆ”rias" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "AtlĆ¢ntico/Cabo Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "AtlĆ¢ntico/Faroe" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "AtlĆ¢ntico/Faroe" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "AtlĆ¢ntico/Jan Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "AtlĆ¢ntico/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "Ilha da Madeira" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "AtlĆ¢ntico/Reykjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "AtlĆ¢ntico/Geórgia do Sul" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "AtlĆ¢ntico/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "AtlĆ¢ntico/Santa Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "AustrĆ”lia/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "AustrĆ”lia/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "Sul da AustrĆ”lia" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "AustrĆ”lia/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "Queensland - maioria das localidades" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "AustrĆ”lia/Broken Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "New South Wales - Yancowinna" #: timezones.h:635 msgid "Australia/Canberra" msgstr "AustrĆ”lia/Camberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "AustrĆ”lia/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "TasmĆ¢nia - Ilha King" #: timezones.h:639 msgid "Australia/Darwin" msgstr "AustrĆ”lia/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "Northern Territory" #: timezones.h:642 msgid "Australia/Eucla" msgstr "AustrĆ”lia/Eucla" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "Oeste da Australia - Ć”rea de Eucla" #: timezones.h:645 msgid "Australia/Hobart" msgstr "AustrĆ”lia/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "TasmĆ¢nia - maioria das localidades" #: timezones.h:648 msgid "Australia/LHI" msgstr "AustrĆ”lia/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "AustrĆ”lia/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "Queensland - Ilhas Holiday" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "AustrĆ”lia/Lord Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "Ilha Lord Howe" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "AustrĆ”lia/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "AustrĆ”lia/Norte" #: timezones.h:659 msgid "Australia/NSW" msgstr "AustrĆ”lia/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "AustrĆ”lia/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "Oeste da AustrĆ”lia - maioria das localidades" #: timezones.h:663 msgid "Australia/Queensland" msgstr "AustrĆ”lia/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "AustrĆ”lia/Sul" #: timezones.h:665 msgid "Australia/Sydney" msgstr "AustrĆ”lia/Sidnei" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "New South Wales - maioria das localidades" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "AustrĆ”lia/TasmĆ¢nia" #: timezones.h:669 msgid "Australia/Victoria" msgstr "AustrĆ”lia/Vitória" #: timezones.h:670 msgid "Australia/West" msgstr "AustrĆ”lia/Oeste" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "AustrĆ”lia/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brasil/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brasil/Fernando de Noronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brasil/Leste" #: timezones.h:675 msgid "Brazil/West" msgstr "Brasil/Oeste" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "CanadĆ”/AtlĆ¢ntico" #: timezones.h:677 msgid "Canada/Central" msgstr "CanadĆ”/Central" #: timezones.h:678 msgid "Canada/Eastern" msgstr "CanadĆ”/Leste" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "CanadĆ”/Leste-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "CanadĆ”/Montanhas" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "CanadĆ”/Terra Nova" #: timezones.h:682 msgid "Canada/Pacific" msgstr "CanadĆ”/PacĆ­fico" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "CanadĆ”/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "CanadĆ”/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Chile/Continental" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chile/Ilha de PĆ”scoa" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Cuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Egito" #: timezones.h:692 msgid "Eire" msgstr "Irlanda" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Europa/AmsterdĆ£" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Europa/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Europa/Atenas" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Europa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Europa/Belgrado" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Europa/Berlim" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Europa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Europa/Bruxelas" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Europa/Bucareste" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Europa/Budapeste" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Europa/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Europa/Copenhague" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Europa/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Europa/Gibraltar" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Europa/Guernsey" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Europa/Helsinque" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Europa/Ilha de Man" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Europa/Instanbul" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Europa/Jersey" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Europa/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "Moscow-01 - Kaliningrad" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Europa/Kiev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Europa/Lisboa" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Europa/Liubliana" #: timezones.h:759 msgid "Europe/London" msgstr "Europa/Londres" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Europa/Luxenburgo" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Europa/Madri" #: timezones.h:764 msgid "Europe/Malta" msgstr "Europa/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Europa/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Europa/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Europa/MĆ“naco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Europa/Moscou" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "Moscow+00 - oeste da RĆŗssia" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Europa/Nicosia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Europa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Europa/Paris" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Europa/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Europa/Praga" #: timezones.h:776 msgid "Europe/Riga" msgstr "Europa/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Europa/Roma" #: timezones.h:778 msgid "Europe/Samara" msgstr "Europa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "Moscow - Samara, Udmurtia" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Europa/SĆ£o Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Europa/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Europa/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "Crimea central" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Europa/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Europa/Sófia" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Europa/Estocolmo" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Europa/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Europa/Tirana" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Europa/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Europa/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "Ruthenia" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Europa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Europa/Vaticano" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Europa/Viena" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Europa/Vilnius" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Europa/Volgogrado" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "Moscow+00 - Mar CĆ”spio" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Europa/Varsóvia" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Europa/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Europa/Zaporozhye" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Zaporozh'ye, Leste de Lugansk / Zaporizhia, Leste de Luhansk" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Europa/Zurique" #: timezones.h:808 msgid "Factory" msgstr "FĆ”brica" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hong Kong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "IslĆ¢ndia" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "ƍndico/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "ƍndico/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "ƍndico/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "ƍndico/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "ƍndico/Comores" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "ƍndico/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "ƍndico/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "ƍndico/Maldivas" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "ƍndico/MaurĆ­cio" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "ƍndico/Mayote" #: timezones.h:829 msgid "Indian/Reunion" msgstr "ƍndico/ReuniĆ£o" #: timezones.h:830 msgid "Iran" msgstr "IrĆ£" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "Israel" #: timezones.h:833 msgid "Jamaica" msgstr "Jamaica" #: timezones.h:834 msgid "Japan" msgstr "JapĆ£o" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 #: timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "LĆ­bia" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "MĆ©xico/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "MĆ©xico/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "MĆ©xico/Geral" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Oriente MĆ©dio/Riad87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Oriente MĆ©dio/Riad88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Oriente MĆ©dio/Riad89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "PacĆ­fico/Ɓpia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "PacĆ­fico/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "PacĆ­fico/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "Ilhas Chatham" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "PacĆ­fico/Chuuk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "Chuuk (Truk) e Yap" #: timezones.h:859 msgid "Pacific/Easter" msgstr "PacĆ­fico/Ilha de PĆ”scoa" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "Ilha de PĆ”scoa & Sala y Gomez" #: timezones.h:862 msgid "Pacific/Efate" msgstr "PacĆ­fico/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "PacĆ­fico/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "Ilhas Phoenix" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "PacĆ­fico/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "PacĆ­fico/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "PacĆ­fico/Funafati" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "PacĆ­fico/GalĆ”pagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "Ilhas GalĆ”pagos" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "PacĆ­fico/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "Ilhas Gambier" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "PacĆ­fico/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "PacĆ­fico/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "PacĆ­fico/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "HavaĆ­" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "PacĆ­fico/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "Johnston Atoll" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "PacĆ­fico/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "Ilhas Line" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "PacĆ­fico/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "Kosrae" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "PacĆ­fico/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "PacĆ­fico/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "PacĆ­fico/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "Ilhas Marquesas" #: timezones.h:898 msgid "Pacific/Midway" msgstr "PacĆ­fico/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "Ilhas Midway" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "PacĆ­fico/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "PacĆ­fico/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "PacĆ­fico/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "PacĆ­fico/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "PacĆ­fico/Pago Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "PacĆ­fico/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "PacĆ­fico/Pitcairn" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "PacĆ­fico/Pohnpei" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "Pohnpei (Ponape)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "PacĆ­fico/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "PacĆ­fico/Port Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "PacĆ­fico/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "PacĆ­fico/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "PacĆ­fico/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "PacĆ­fico/Taiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "Ilhas Society" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "PacĆ­fico/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "Ilhas Gilbert" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "PacĆ­fico/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "PacĆ­fico/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "PacĆ­fico/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "Ilha Wake" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "PacĆ­fico/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "PacĆ­fico/Yap" #: timezones.h:929 msgid "Poland" msgstr "PolĆ“nia" #: timezones.h:930 msgid "Portugal" msgstr "Portugal" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Cingapura" #: timezones.h:937 msgid "Turkey" msgstr "Turquia" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "US/Alasca" #: timezones.h:941 msgid "US/Aleutian" msgstr "US/Ilhas Aleutas" #: timezones.h:942 msgid "US/Arizona" msgstr "US/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "US/Central" #: timezones.h:944 msgid "US/Eastern" msgstr "US/Leste" #: timezones.h:945 msgid "US/East-Indiana" msgstr "US/Leste-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "US/Havai" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "US/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "US/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "US/Montanhas" #: timezones.h:950 msgid "US/Pacific" msgstr "US/PacĆ­fico" #: timezones.h:951 msgid "US/Samoa" msgstr "US/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" #~ msgid "US/Pacific-New" #~ msgstr "US/PacĆ­fico-Novo" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/mr.po0000664000175000017500000025222214632072346023702 0ustar fabiofabio# translation of mr.po to Marathi # Marathi translations for PACKAGE package. # Copyright (C) 2004 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Automatically generated, 2004. # Rahul Bhalerao , 2006. # Rahul Bhalerao , 2006. # Sandeep Shedmake , 2008. # Sandeep Shedmake , 2009, 2010. msgid "" msgstr "" "Project-Id-Version: mr\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-12-06 16:21+0530\n" "Last-Translator: Sandeep Shedmake \n" "Language-Team: Marathi \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: mr\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤¬ą¤æą¤”ą„ą¤œą¤Ø" #: timezones.h:2 msgid "Africa/Accra" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤•ą„ą¤°ą¤¾" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤ą¤¦ą¤æą¤ø_अबाबा" #: timezones.h:4 msgid "Africa/Algiers" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤²ą¤œą¤æą¤Æą¤°ą„ą¤ø" #: timezones.h:5 msgid "Africa/Asmara" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤øą¤®ą„‡ą¤°ą¤¾" #: timezones.h:6 msgid "Africa/Asmera" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤øą¤®ą„‡ą¤°ą¤¾" #: timezones.h:7 msgid "Africa/Bamako" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤¬ą¤¾ą¤®ą¤¾ą¤•ą„‹" #: timezones.h:8 msgid "Africa/Bangui" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤¬ą¤‚ą¤—ą„ą¤ˆ" #: timezones.h:9 msgid "Africa/Banjul" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤¬ą¤‚ą¤œą¤²" #: timezones.h:10 msgid "Africa/Bissau" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤¬ą¤æą¤øą„‚" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„ą¤²ą„‡ą¤Øą¤¤ą¤°ą„€" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„ą¤°ą¤¾ą¤œą¤¾ą¤µą¤æą¤²ą„‡" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„ą¤œą¤®ą¤¬ą„ą¤°ą¤¾" #: timezones.h:14 msgid "Africa/Cairo" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ˆą¤°ą„‹" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤•ą¤¾ą¤øą¤¾ą¤¬ą„ą¤²ą¤¾ą¤‚ą¤•ą¤¾" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤øą¤æą¤Æą„‚ą¤Ÿą¤¾" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "ą¤øą„‡ą¤‰ą¤¤ą¤¾ & ą¤®ą„‡ą¤²ą¤æą¤²ą„ą¤²ą¤¾" #: timezones.h:19 msgid "Africa/Conakry" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤•ą„‹ą¤Øą¤¾ą¤•ą„ą¤°ą„€" #: timezones.h:20 msgid "Africa/Dakar" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/औकर" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/दार_ą¤ą¤ø_ą¤øą„ą¤²ą„‡ą¤®" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤”ą„ą¤œą¤æą¤¬ą„‹ą¤Ÿą„€" #: timezones.h:23 msgid "Africa/Douala" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤”ą„‚ą¤…ą¤²ą¤¾" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾//ą¤ą¤²_ऐन" #: timezones.h:25 msgid "Africa/Freetown" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤«ą„ą¤°ą„€ą¤Ÿą¤¾ą¤‰ą¤Ø" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤—ą„ˆą¤¬ą„ą¤°ą„‹ą¤Ø" #: timezones.h:27 msgid "Africa/Harare" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤¹ą¤°ą¤¾ą¤°ą„‡" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤œą„‹ą¤¹ą¤¾ą¤‚ą¤Øą„ą¤øą¤¬ą¤°ą„ą¤—" #: timezones.h:29 msgid "Africa/Kampala" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤•ą¤®ą„ą¤Ŗą¤¾ą¤²ą¤¾" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤–ą¤¾ą¤°ą„ą¤¤ą„ą¤®" #: timezones.h:31 msgid "Africa/Kigali" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤•ą¤æą¤—ą¤¾ą¤²ą„€" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/किंसासा" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤”ą„‡ą¤®ą„‹ą¤•ą„ą¤°ą„‡ą¤Ÿą„€ą¤• ą¤°ą¤æą¤Ŗą¤¬ą„ą¤²ą„€ą¤• ऑफ ą¤•ą¤¾ą¤ą¤—ą„‹" #: timezones.h:35 msgid "Africa/Lagos" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤²ą¤¾ą¤—ą„‹ą¤ø" #: timezones.h:36 msgid "Africa/Libreville" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤²ą¤æą¤¬ą¤°ą¤µą¤æą¤²ą„‡" #: timezones.h:37 msgid "Africa/Lome" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤²ą„‹ą¤®" #: timezones.h:38 msgid "Africa/Luanda" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤²ą„ą¤†ą¤‚ą¤”ą¤¾" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤²ą„ą¤¬ą„‚ą¤‚ą¤¬ą¤¶ą„€" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "ą¤¦ą¤•ą„ą¤·ą„€ą¤£ ą¤”ą„‡ą¤®ą„‹ą¤•ą„ą¤°ą„‡ą¤Ÿą„€ą¤• ą¤°ą¤æą¤Ŗą¤¬ą„ą¤²ą„€ą¤• ऑफ ą¤•ą¤¾ą¤ą¤—ą„‹" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤²ą„ą¤øą¤¾ą¤•ą¤¾" #: timezones.h:43 msgid "Africa/Malabo" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤®ą¤²ą¤¾ą¤¬ą„‹" #: timezones.h:44 msgid "Africa/Maputo" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤®ą¤Ŗą„ą¤¤ą„‹" #: timezones.h:45 msgid "Africa/Maseru" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤®ą„ˆą¤øą„‡ą¤°ą„" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‡ą¤¬ą¤¾ą¤¬ą¤¾ą¤Øą„‡" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‹ą¤—ą¤¾ą¤”ą„€ą¤¶ą„‚" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‹ą¤Øą¤°ą„‹ą¤µą¤æą¤Æą¤¾" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤Øą„ˆą¤°ą„‹ą¤¬ą„€" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤Øą¤œą„‡ą¤®ą„‡ą¤Øą¤¾" #: timezones.h:51 msgid "Africa/Niamey" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤Øą„‡ą¤®ą„ˆ" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤Øą¤¾ą¤•ą¤šą¤¾ą¤Ÿ" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤Šą¤—ą„‹ą¤¦ą„‚ą¤—ą„‹" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤Ŗą„‹ą¤°ą„ą¤Ÿą„‹-ą¤Øą„‹ą¤µą„‹" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤øą¤¾ą¤µą„‹_ą¤Ÿą„‹ą¤® " #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤¤ą¤æą¤‚ą¤¬ą¤•ą¤Ÿą„‚" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤¤ą„ą¤°ą¤æą¤Ŗą„‹ą¤²ą„€" #: timezones.h:58 msgid "Africa/Tunis" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤Ÿą„ą¤Æą„‚ą¤Øą¤æą¤ø" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "ą¤†ą¤«ą„ą¤°ą¤æą¤•ą¤¾/ą¤µą¤æą¤‚ą¤”ą¤¹ą„‰ą¤•" #: timezones.h:60 msgid "America/Adak" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/अदक" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "ą¤…ą¤²ą„ą¤Æą„‚ą¤¶ą„€ą¤Æą¤Ø ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:63 msgid "America/Anchorage" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤ą¤‚ą¤•ą¤°ą„‡ą¤œ" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "ą¤…ą¤²ą¤¾ą¤øą„ą¤•ą¤¾ ą¤µą„‡ą¤³" #: timezones.h:66 msgid "America/Anguilla" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤‚ą¤—ą„ą¤Æą„‚ą¤²ą¤¾" #: timezones.h:67 msgid "America/Antigua" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤ą¤‚ą¤Ÿą„€ą¤—ą„ą¤†" #: timezones.h:68 msgid "America/Araguaina" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą¤¾ą¤—ą„ą¤µą„‡ą¤Øą¤¾" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "ą¤Ÿą„‹ą¤•ą„…ą¤Øą¤Ÿą„€ą¤‚ą¤øą„" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤¬ą„ą¤Æą„ą¤Øą„‹ą¤œ_ą¤†ą¤Æą¤°ą„ą¤ø" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "ą¤¬ą„ą¤Æą„‚ą¤ą¤Øą„‹ą¤œą„ ą¤†ą¤Æą¤°ą„€ą¤œą„ (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤•ą„ˆą¤Ÿą¤¾ą¤®ą¤¾ą¤°ą¤•ą¤¾" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "ą¤•ą¤Ÿą¤¾ą¤®ą¤¾ą¤°ą„ą¤•ą¤¾ (CT), ą¤šą„ą¤¬ą„ą¤¤ (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤•ą„‹ą¤®ą„‹ą¤”ą¤°ą¤æą¤µą¤¾ą¤”ą¤¾ą¤µą¤æą¤Æą¤¾" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤•ą¤¾ą¤°ą¤”ą„‹ą¤¬ą¤¾" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "ą¤¬ą¤¹ą„ą¤¤ą¤¾ą¤‚ą¤¶ ठिकाणं (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤œą„ą¤œą„ˆ" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "ą¤œą„ą¤œą„ą¤Æ (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ला_ą¤°ą¤æą¤Æą„‹ą¤œą¤¾" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "ला ą¤°ą„€ą¤“ą¤œą¤¾ (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤®ą„‡ą¤Øą¤”ą„‹ą¤œą¤¾" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "ą¤®ą„‡ą¤‚ą¤”ą„‹ą¤œą¤¾ (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤°ą¤æą¤Æą„‹_ą¤—ą„…ą¤²ą„ą¤²ą„‡ą¤—ą„‹ą¤øą„" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "ą¤øą„…ą¤Øą„ą¤Ÿą¤¾ ą¤•ą„ą¤°ą„ą¤œ (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤øą¤¾ą¤²ą„ą¤Ÿą¤¾" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤øą„…ą¤Ø_ą¤œą„ą¤†ą¤Ø" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "ą¤øą„…ą¤Ø ą¤œą„ą¤†ą¤Ø (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤øą„…ą¤Ø_ą¤²ą„ą¤‡ą¤ø" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "ą¤øą„…ą¤Ø ą¤²ą„ą¤‡ą¤øą„ (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤Ÿą¤•ą¤®ą„…ą¤Ø" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "ą¤¤ą„ą¤•ą„ą¤®ą„…ą¤Ø (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤‰ą¤¶ą„ą¤†ą¤¹ą¤æą¤Æą¤¾" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "ą¤¤ą„ˆą¤°ą„ą¤°ą¤¾ ą¤”ą„‡ą¤² ą¤«ą„ą¤ą¤—ą„‹ (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤¬ą¤¾" #: timezones.h:109 msgid "America/Asuncion" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/असनशियन" #: timezones.h:110 msgid "America/Atikokan" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤Ÿą¤æą¤•ą„‹ą¤•ą¤Ø" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ मानक ą¤µą„‡ą¤³ - ą¤…ą¤Ÿą„€ą¤•ą„‹ą¤•ą¤Ø, ą¤“ą¤‚ą¤Ÿą¤¾ą¤°ą„€ą¤Æą„‹ व ą¤øą¤¾ą¤Šą¤„ą¤¹ą„…ą¤®ą„ą¤Ŗą¤Ÿą¤Ø ई, ą¤Øą„ą¤Øą¤¾ą¤µą„ą¤¤" #: timezones.h:113 msgid "America/Atka" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤Ÿą¤•ą¤¾" #: timezones.h:114 msgid "America/Bahia" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/बहिया" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "ą¤¬ą¤¹ą„€ą¤†" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/बहिया ą¤¬ą¤‚ą¤”ą„‡ą¤°ą¤¾ą¤øą„ (_B)" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "ą¤®ą„‡ą¤•ą„ą¤øą¤æą¤•ą¤Ø ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² टाईम - बाहिया ą¤”ą„‡ ą¤¬ą¤‚ą¤”ą„‡ą¤°ą¤¾ą¤øą„" #: timezones.h:120 msgid "America/Barbados" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą¤¾ą¤°ą„ą¤¬ą¤¾ą¤”ą„‹ą¤ø" #: timezones.h:121 msgid "America/Belem" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„‡ą¤²ą„‡ą¤®" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "अमापा, ą¤ पारा" #: timezones.h:124 msgid "America/Belize" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„‡ą¤²ą¤æą¤œą¤¼" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„ą¤²ą¤¾ą¤‚ą¤•-ą¤øą„…ą¤¬ą„ą¤²ą„‰ą¤Ø" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "ą¤…ą¤Ÿą¤²ą¤ą¤Ÿą„€ą¤• मानक ą¤µą„‡ą¤³ - ą¤•ą„ą¤Æą„‚ą¤¬ą„‡ą¤• - ą¤²ą„‹ą¤µą¤° ą¤‰ą¤¤ą„ą¤¤ą¤°ą„€ą¤Æ ą¤¶ą„‹ą¤°" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„‹ą¤†_ą¤µą¤æą¤øą„ą¤¤ą¤¾" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "ą¤°ą„‹ą¤°ą¤¾ą¤‡ą¤®ą¤¾" #: timezones.h:131 msgid "America/Bogota" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„‹ą¤—ą„‹ą¤Ÿą¤¾" #: timezones.h:132 msgid "America/Boise" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„‹ą¤‡ą¤ø" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "ą¤®ą¤¾ą¤Šą¤‚ą¤Ÿą¤Ø ą¤µą„‡ą¤³ - ą¤¦ą¤•ą„ą¤·ą„€ą¤£ ą¤‡ą¤¦ą¤¾ą¤¹ą„‹ & ą¤Ŗą„‚ą¤°ą„ą¤µ ą¤“ą¤°ą„‡ą¤—ą„‹ą¤Ø" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„ą¤Æą„ą¤Øą„‹ą¤œ_ą¤†ą¤Æą¤°ą„ą¤ø" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ˆą¤®ą„ą¤¬ą¤°ą„€ą¤œ_ą¤¬ą„‡" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "ą¤®ą¤¾ą¤Šą¤‚ą¤Ÿą¤Ø ą¤µą„‡ą¤³ - ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤Øą„ą¤Øą¤¾ą¤µą„ą¤¤" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą¤‚ą¤Ŗą„‹_ą¤—ą„ą¤°ą„ˆą¤‚ą¤”" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "ą¤®ą¤¾ą¤Ÿą„‹ ą¤—ą„ą¤°ą„‹ą¤øą„ą¤øą„‹ ą¤”ą„‹ ą¤øą„ą¤²" #: timezones.h:142 msgid "America/Cancun" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą¤¾ą¤Øą¤•ą„ą¤Ø" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤µą„‡ą¤³ - ą¤•ą„ą¤‡ą¤‚ą¤Ÿą¤¾ą¤Øą¤¾ ą¤°ą„‚" #: timezones.h:145 msgid "America/Caracas" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„…ą¤°ą¤¾ą¤•ą¤ø" #: timezones.h:146 msgid "America/Catamarca" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„…ą¤Ÿą¤¾ą¤®ą¤¾ą¤°ą¤•ą¤¾" #: timezones.h:147 msgid "America/Cayenne" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ˆą¤Æą„‡ą¤Ø" #: timezones.h:148 msgid "America/Cayman" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ˆą¤®ą„‡ą¤Ø" #: timezones.h:149 msgid "America/Chicago" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¶ą¤æą¤•ą¤¾ą¤—ą„‹" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤µą„‡ą¤³" #: timezones.h:152 msgid "America/Chihuahua" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤šą¤æą¤¹ą„‚ą¤†ą¤¹ą„ą¤†" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "ą¤®ą„‡ą¤•ą„ą¤øą„€ą¤•ą¤Ø ą¤®ą¤¾ą¤Šą¤‚ą¤Ÿą¤Ø ą¤µą„‡ą¤³ - US ą¤¬ą„‰ą¤°ą„ą¤”ą¤° ą¤Ŗą¤¾ą¤øą„‚ą¤Ø ą¤šą¤æą¤¹ą„ą¤†ą¤¹ą„ą¤† ą¤¦ą„‚ą¤° ą¤†ą¤¹ą„‡" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„‹ą¤°ą¤²_ą¤¹ą¤¾ą¤°ą„ą¤¬ą¤°" #: timezones.h:156 msgid "America/Cordoba" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą¤¾ą¤°ą¤”ą„‹ą¤¬ą¤¾" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„‹ą¤øą„ą¤Ÿą¤¾_रिका" #: timezones.h:158 msgid "America/Cuiaba" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ą¤Æą„‚ą¤¬ą¤¾" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "ą¤®ą¤¾ą¤¤ą„‹ ą¤—ą„ą¤°ą„‹ą¤øą„ą¤øą„‹" #: timezones.h:161 msgid "America/Curacao" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ą¤°ą¤¾ą¤•ą¤¾ą¤“" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤”ą„‡ą¤Øą¤®ą¤¾ą¤°ą„ą¤•ą¤¶ą¤¾ą¤Ø" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ तट, ą¤‰ą¤¤ą„ą¤¤ą¤°ą„€ą¤Æ ą¤øą„ą¤•ą„‹ą¤°ą„ą¤øą¤¬ą¤¾ą¤Æą¤øą„ą¤‚ą¤”" #: timezones.h:165 msgid "America/Dawson" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤”ą„‰ą¤¶ą¤Ø" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą„€ą¤• ą¤µą„‡ą¤³ - ą¤‰ą¤¤ą„ą¤¤ą¤° ą¤Æą„ą¤•ą„‹ą¤Ø" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤”ą„‰ą¤¶ą¤Ø_ą¤•ą„ą¤°ą„€ą¤•" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "ą¤®ą¤¾ą¤Šą¤‚ą¤Ÿą¤Ø मानक ą¤µą„‡ą¤³ - ą¤¦ą¤¾ą¤µą„ą¤øą„‹ą¤Ø ą¤•ą„ą¤°ą¤æą¤• & ą¤«ą„‹ą¤°ą„ą¤Ÿ ą¤øą„ˆą¤‚ą¤Ÿ ą¤œą„‰ą¤Ø, ą¤¬ą„ą¤°ą¤æą¤Ÿą„€ą¤¶ ą¤•ą„‹ą¤²ą„ą¤®ą¤¬ą„€ą¤Æą¤¾" #: timezones.h:171 msgid "America/Denver" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤”ą„‡ą¤Øą¤µą¤°" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "ą¤®ą¤¾ą¤Šą¤‚ą¤Ÿą¤Ø ą¤µą„‡ą¤³" #: timezones.h:174 msgid "America/Detroit" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤”ą„‡ą¤Ÿą„ą¤°ą„‹ą¤‡ą¤Ÿ" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ ą¤µą„‡ą¤³ - ą¤®ą¤æą¤šą„€ą¤—ą¤Ø - ą¤¬ą¤¹ą„ą¤¤ą¤¾ą¤‚ą¤¶ ą¤ ą¤æą¤•ą¤¾ą¤£ą„‡" #: timezones.h:177 msgid "America/Dominica" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤”ą„‹ą¤®ą¤æą¤Øą¤æą¤•ą¤¾" #: timezones.h:178 msgid "America/Edmonton" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤ą¤”ą„ą¤®ą¤Øą¤Ÿą¤Ø" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "ą¤®ą¤¾ą¤Šą¤‚ą¤Ÿą¤Ø ą¤µą„‡ą¤³ - ą¤…ą¤²ą„ą¤¬ą„‡ą¤°ą„ą¤Ÿą¤¾, ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ ą¤¬ą„ą¤°ą¤æą¤Ÿą„€ą¤¶ ą¤•ą„‹ą¤²ą„ą¤®ą¤¬ą„€ą¤Æą¤¾ व ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤øą„ą¤•ą¤¾ą¤¤ą„ą¤šą„‡ą¤µą¤¾ą¤Ø" #: timezones.h:181 msgid "America/Eirunepe" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Æą„ą¤°ą„€ą¤Øą¤ą¤Ŗ" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "W ą¤…ą¤®ą¤œą„‹ą¤Øą¤¾ą¤øą„" #: timezones.h:184 msgid "America/El_Salvador" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤ą¤²_ą¤øą„‡ą¤²ą„ą¤µą¤¾ą¤”ą„‹ą¤°" #: timezones.h:185 msgid "America/Ensenada" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤ą¤Øą¤øą„‡ą¤Øą„‡ą¤”ą¤¾" #: timezones.h:186 msgid "America/Fortaleza" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤«ą„‹ą¤°ą„ą¤Ÿą¤²ą„‡ą¤œą¤¾" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "NE ą¤¬ą„ą¤°ą¤¾ą¤ą„€ą¤² (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤«ą„‹ą¤°ą„ą¤Ÿ_ą¤µą„‡ą¤Ø" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„ą¤²ą„‡ą¤ø_ą¤¬ą„‡" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "ą¤…ą¤Ÿą¤²ą¤ą¤Ÿą„€ą¤• ą¤µą„‡ą¤³ - ą¤Øą„‹ą¤µą¤¾ ą¤øą„ą¤•ą„‹ą¤Ÿą„€ą¤Æą¤¾ - DST 1966-1971 ą¤²ą¤¾ą¤—ą„‚ न ą¤•ą¤°ą¤£ą¤¾ą¤°ą„‡ ą¤ ą¤æą¤•ą¤¾ą¤£ą„‡" #: timezones.h:193 msgid "America/Godthab" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„‰ą¤”ą¤„ą¤¬" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "ą¤¬ą¤¹ą„ą¤¤ą¤¾ą¤‚ą¤¶ ठिकाण" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„‚ą¤ø_ą¤¬ą„‡" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "ą¤…ą¤Ÿą¤²ą¤ą¤Ÿą„€ą¤• ą¤µą„‡ą¤³ - ą¤²ą„…ą¤¬ą„ą¤°ą¤”ą„‹ą¤° - ą¤¬ą¤¹ą„ą¤¤ą¤¾ą¤‚ą¤¶ ठिकाण" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„ą¤°ą¤ą¤”_ą¤Ÿą¤°ą„ą¤•" #: timezones.h:200 msgid "America/Grenada" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„ą¤°ą„‡ą¤Øą„‡ą¤”ą¤¾" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„ą¤µą¤¾ą¤”ą„‡ą¤²ą„‹ą¤Ŗą„‡" #: timezones.h:202 msgid "America/Guatemala" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„ą¤µą¤¾ą¤Ÿą„‡ą¤®ą¤¾ą¤²ą¤¾" #: timezones.h:203 msgid "America/Guayaquil" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„ą¤†ą¤Æą¤¾ą¤•ą¤æą¤²" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "ą¤®ą„ˆą¤Øą¤²ą¤ą¤”" #: timezones.h:206 msgid "America/Guyana" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/गयाना" #: timezones.h:207 msgid "America/Halifax" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¹ą„…ą¤²ą„€ą¤«ą„‡ą¤•ą„ą¤ø" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "ą¤…ą¤Ÿą¤²ą¤ą¤Ÿą„€ą¤• ą¤µą„‡ą¤³ - ą¤Øą„‹ą¤µą¤¾ ą¤øą„ą¤•ą„‹ą¤Ÿą„€ą¤Æą¤¾ (ą¤¬ą¤¹ą„ą¤¤ą¤¾ą¤‚ą¤¶ ą¤øą„ą¤„ą¤³ą¤‚), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/हवाना" #: timezones.h:211 msgid "America/Hermosillo" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¹ą¤°ą„ą¤®ą„‹ą¤øą¤æą¤²ą„‹" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "ą¤®ą¤¾ą¤Šą¤‚ą¤Ÿą¤Ø मानक ą¤µą„‡ą¤³ - ą¤øą„‹ą¤Øą„‹ą¤°ą¤¾" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤‡ą¤‚ą¤”ą¤æą¤Æą¤¾ą¤Øą¤¾ą¤Ŗą„‹ą¤²ą¤æą¤ø" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ ą¤µą„‡ą¤³ - ą¤‡ą¤‚ą¤”ą„€ą¤Æą¤¾ą¤Øą¤¾ - ą¤¬ą¤¹ą„ą¤¤ą¤¾ą¤‚ą¤¶ ठिकाण" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤Øą„‰ą¤•ą„ą¤ø" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤µą„‡ą¤³ - ą¤‡ą¤‚ą¤”ą„€ą¤Æą¤¾ą¤Øą¤¾ - ą¤øą„ą¤Ÿą¤¾ą¤°ą„ą¤•ą„‡ ą¤¦ą„‡ą¤¶" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤®ą„‡ą¤°ą„‡ą¤‚ą¤—ą„‹" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ ą¤µą„‡ą¤³ - ą¤‡ą¤‚ą¤”ą„€ą¤Æą¤¾ą¤Øą¤¾ - ą¤•ą„ą¤°ą„‰ą¤µą„ą¤«ą„‹ą¤°ą„ą¤” ą¤¦ą„‡ą¤¶" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤Ŗą„€ą¤Ÿą¤°ą„ą¤øą¤¬ą¤°ą„ą¤—" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ ą¤µą„‡ą¤³ - ą¤‡ą¤‚ą¤”ą„€ą¤Æą¤¾ą¤Øą¤¾ - ą¤Ŗą¤¾ą¤ˆą¤• ą¤¦ą„‡ą¤¶ " #: timezones.h:226 msgid "America/Indianapolis" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤‡ą¤‚ą¤”ą¤æą¤Æą¤¾ą¤Øą¤¾ą¤Ŗą„‹ą¤²ą¤æą¤ø" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤Ÿą„‡ą¤²_शहर" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤µą„‡ą¤³ - ą¤‡ą¤‚ą¤”ą„€ą¤Æą¤¾ą¤Øą¤¾ - ą¤Ŗą„‡ą¤°ą„ą¤°ą„€ ą¤¦ą„‡ą¤¶" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤µą„‡ą¤µą„‡" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ ą¤µą„‡ą¤³ - ą¤‡ą¤‚ą¤”ą„€ą¤Æą¤¾ą¤Øą¤¾ - ą¤øą„ą¤µą„€ą¤Ÿą„ą¤œą¤°ą¤²ą¤ą¤” ą¤¦ą„‡ą¤¶" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤µą¤æą¤Øą„ą¤øą„‡ą¤Øą„‡ą¤ø" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ ą¤µą„‡ą¤³ - ą¤‡ą¤‚ą¤”ą„€ą¤†ą¤Øą¤¾- ą¤”ą¤¾ą¤µą„€ą¤ą¤øą„, ą¤”ą„ą¤¬ą„Œą¤øą„, ą¤•ą„ą¤Øą„‹ą¤•ą„ą¤øą„ व ą¤®ą¤¾ą¤°ą„ą¤Ÿą„€ą¤Ø ą¤¦ą„‡ą¤¶" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤µą¤æą¤Øą¤¾ą¤®ą„…ą¤•" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ ą¤µą„‡ą¤³ - ą¤‡ą¤‚ą¤”ą„€ą¤†ą¤Øą¤¾ - ą¤Ŗą„ą¤²ą¤¾ą¤øą„ą¤•ą„€ ą¤¦ą„‡ą¤¶" #: timezones.h:239 msgid "America/Inuvik" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤‡ą¤Øą„ą¤µą¤æą¤•" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "ą¤®ą¤¾ą¤Šą¤‚ą¤Ÿą¤Ø ą¤µą„‡ą¤³ - ą¤‰ą¤¤ą„ą¤¤ą¤°ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤Ŗą„ą¤°ą¤¾ą¤‚ą¤¤" #: timezones.h:242 msgid "America/Iqaluit" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤‡ą¤•ą¤¾ą¤²ą„‚ą¤‡ą¤¤" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ ą¤µą„‡ą¤³ - ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤Øą„ą¤Øą¤¾ą¤µą„ą¤¤ - ą¤¬ą¤¹ą„ą¤¤ą¤¾ą¤‚ą¤¶ ठिकाण" #: timezones.h:245 msgid "America/Jamaica" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤œą¤®ą„ˆą¤•ą¤¾" #: timezones.h:246 msgid "America/Jujuy" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤œą„ą¤œą„ˆ" #: timezones.h:247 msgid "America/Juneau" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤œą„‚ą¤Øą„‹" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "ą¤…ą¤²ą¤¾ą¤øą„ą¤•ą¤¾ ą¤µą„‡ą¤³ - ą¤…ą¤²ą¤¾ą¤øą„ą¤•ą¤¾ ą¤Ŗą„…ą¤Øą¤¹ą„…ą¤Øą„ą¤”ą¤²ą„" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ˆą¤‚ą¤Ÿą¤•ą„€/ą¤²ą„ą¤ˆą¤øą¤µą¤æą¤²ą„‡" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ ą¤µą„‡ą¤³ - ą¤•ą„‡ą¤‚ą¤Ÿą¤•ą„ą¤•ą„€ - ą¤²ą„ą¤‡ą¤øą¤µą¤æą¤²ą„ą¤²ą„€ ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤°" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ˆą¤‚ą¤Ÿą¤•ą„€/ą¤®ą„‰ą¤Øą„ą¤Ÿą¤æą¤•ą¤²ą„‹" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ ą¤µą„‡ą¤³ - ą¤•ą„‡ą¤‚ą¤Ÿą¤•ą„ą¤•ą„€ - ą¤µą„‡ą¤Æą„ą¤Ø ą¤¦ą„‡ą¤¶" #: timezones.h:256 msgid "America/Knox_IN" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Øą„‹ą¤•ą„ą¤ø_इन" #: timezones.h:257 msgid "America/La_Paz" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ला_पाज" #: timezones.h:258 msgid "America/Lima" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/लिमा" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤²ą„‰ą¤ø_ą¤ą¤‚ą¤œą¤æą¤²ą„ą¤ø" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤• ą¤µą„‡ą¤³" #: timezones.h:262 msgid "America/Louisville" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤²ą„ą¤ˆą¤øą¤µą¤æą¤²" #: timezones.h:263 msgid "America/Maceio" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„ˆą¤øą¤æą¤Æą„‹" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "ą¤…ą¤²ą„ą¤—ą„‹ą¤†ą¤øą„, ą¤øą„‡ą¤°ą„ą¤—ą„€ą¤Ŗą„‡" #: timezones.h:266 msgid "America/Managua" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‡ą¤Øą„‡ą¤—ą„ą¤†" #: timezones.h:267 msgid "America/Manaus" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„ˆą¤Øą¤¾ą¤ø" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "E ą¤…ą¤®ą¤¾ą¤œą„‹ą¤Øą¤¾ą¤øą„" #: timezones.h:270 msgid "America/Marigot" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„…ą¤°ą„€ą¤—ą„‹ą¤Ÿ" #: timezones.h:271 msgid "America/Martinique" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‰ą¤°ą„ą¤Ÿą¤æą¤Øą¤æą¤•" #: timezones.h:272 msgid "America/Matamoros" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„…ą¤Ÿą¤¾ą¤®ą„‹ą¤°ą„‹ą¤œą„" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "US ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤µą„‡ą¤³ - ą¤•ą„‹ą¤¹ą„ą¤‡ą¤²ą¤¾, ą¤”ą„ą¤°ą¤¾ą¤‚ą¤—ą„‹, ą¤Øą„ą¤ą¤µą„‹ ą¤²ą„€ą¤“ą¤Ø, ą¤¤ą¤®ą„Œą¤²ą„€ą¤Ŗą¤¾ą¤øą„ US ą¤¬ą„‰ą¤°ą„ą¤”ą¤° जवळ ą¤†ą¤¹ą„‡" #: timezones.h:275 msgid "America/Mazatlan" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‡ą¤œą„‡ą¤Ÿą¤²ą„‡ą¤Ø" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "ą¤®ą¤¾ą¤Šą¤‚ą¤Ÿą¤Ø ą¤µą„‡ą¤³ - S बजा, ą¤Øą¤Æą¤¾ą¤°ą„€ą¤¤, ą¤øą¤æą¤Øą¤¾ą¤²ą„‹ą¤†" #: timezones.h:278 msgid "America/Mendoza" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‡ą¤Øą„ą¤”ą„‹ą¤œą¤¾" #: timezones.h:279 msgid "America/Menominee" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‡ą¤Øą„‹ą¤®ą¤æą¤Øą„€" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤µą„‡ą¤³ - ą¤®ą¤æą¤šą„€ą¤—ą¤Ø - ą¤”ą¤æą¤•ą„€ą¤‚ą¤øą¤Ø, ą¤—ą„‹ą¤—ą„‡ą¤¬ą„€ą¤•, ą¤†ą¤°ą„ą¤Ø व ą¤®ą„‡ą¤Øą„‹ą¤®ą¤æą¤Øą„€ ą¤¦ą„‡ą¤¶" #: timezones.h:282 msgid "America/Merida" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‡ą¤°ą„€ą¤”ą¤¾" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤µą„‡ą¤³ - ą¤•ą„…ą¤Ŗą„‡ą¤šą„‡, ą¤Æą„ą¤•ą„…ą¤Ÿą¤Ø" #: timezones.h:285 msgid "America/Mexico_City" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‡ą¤•ą„ą¤øą¤æą¤•ą„‹_ą¤øą¤æą¤Ÿą„€" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤µą„‡ą¤³ - ą¤¬ą¤¹ą„ą¤¤ą¤¾ą¤‚ą¤¶ ठिकाण" #: timezones.h:288 msgid "America/Miquelon" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą¤æą¤•ą„ą¤²ą„‰ą¤Ø" #: timezones.h:289 msgid "America/Moncton" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‰ą¤Øą„ą¤•ą¤Ÿą„‰ą¤Ø" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "ą¤…ą¤Ÿą¤²ą¤ą¤Ÿą„€ą¤• ą¤µą„‡ą¤³ - ą¤Øą¤µą„€ą¤Ø ą¤¬ą„ą¤°ą„ą¤‚ą¤øą„ą¤µą„€ą¤•" #: timezones.h:292 msgid "America/Monterrey" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą¤¾ą¤ą¤Ÿą„‡ą¤°ą„ą¤°ą„€" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "ą¤®ą„‡ą¤•ą„ą¤øą„€ą¤•ą¤Ø ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤µą„‡ą¤³ - ą¤•ą„‹ą¤¹ą„ą¤‡ą¤²ą¤¾, ą¤”ą„ą¤°ą¤¾ą¤‚ą¤—ą„‹, ą¤Øą„ą¤ą¤µą„‹ ą¤²ą„€ą¤“ą¤Ø, ą¤¤ą¤®ą„Œą¤²ą„€ą¤Ŗą¤¾ą¤øą„ US ą¤¬ą„‰ą¤°ą„ą¤”ą¤° ą¤Ŗą¤¾ą¤øą„‚ą¤Ø ą¤¦ą„‚ą¤° ą¤†ą¤¹ą„‡" #: timezones.h:295 msgid "America/Montevideo" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‰ą¤Øą„ą¤Ÿą„‡ą¤µą¤æą¤”ą„€ą¤Æą„‹" #: timezones.h:296 msgid "America/Montreal" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‰ą¤Øą„ą¤Ÿą„ą¤°ą¤æą¤Æą¤²" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ ą¤µą„‡ą¤³ - ą¤•ą„ą¤Æą„‚ą¤¬ą„‡ą¤• - ą¤¬ą¤¹ą„ą¤¤ą¤¾ą¤‚ą¤¶ ą¤ ą¤æą¤•ą¤¾ą¤£ą„‡" #: timezones.h:299 msgid "America/Montserrat" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‰ą¤Øą„ą¤Ÿą„‡ą¤øą„‡ą¤°ą¤¾ą¤Ÿ" #: timezones.h:300 msgid "America/Nassau" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Øą¤øą„‹" #: timezones.h:301 msgid "America/New_York" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Øą„ą¤Æą„‚_ą¤Æą„‰ą¤°ą„ą¤•" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ ą¤µą„‡ą¤³" #: timezones.h:304 msgid "America/Nipigon" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Øą¤æą¤Ŗą„€ą¤—ą¤Ø" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ ą¤µą„‡ą¤³ - ą¤“ą¤‚ą¤Ÿą¤¾ą¤°ą„€ą¤Æą„‹ व ą¤•ą„ą¤¬ą„‡ą¤• - ą¤ ą¤æą¤•ą¤¾ą¤£ą„‡ ą¤œą„‡ DST 1967-1973 ą¤²ą¤¾ą¤—ą„‚ करत ą¤Øą¤¾ą¤¹ą„€" #: timezones.h:307 msgid "America/Nome" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Øą„‹ą¤®" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "ą¤…ą¤²ą¤¾ą¤øą„ą¤•ą¤¾ ą¤µą„‡ą¤³ - ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤…ą¤²ą¤¾ą¤øą„ą¤•ą¤¾" #: timezones.h:310 msgid "America/Noronha" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Øą„‹ą¤°ą„‹ą¤‚ą¤¹ą¤¾" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤• ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤‰ą¤¤ą„ą¤¤ą¤°_ą¤”ą¤•ą„‹ą¤Ÿą¤¾/ą¤®ą¤§ą„ą¤Æ" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤µą„‡ą¤³ - ą¤‰ą¤¤ą„ą¤¤ą¤°ą„€ą¤Æ ą¤”ą¤•ą„‹ą¤Ÿą¤¾ - ą¤“ą¤²ą„€ą¤µą„ą¤¹ą¤° ą¤•ą¤‚ą¤Ÿą„ą¤°ą„€" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤‰ą¤¤ą„ą¤¤ą¤°_ą¤”ą¤•ą„‹ą¤Ÿą¤¾/ą¤Øą„ą¤Æą„‚_ą¤øą¤¾ą¤²ą„‡ą¤®" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤µą„‡ą¤³ - ą¤‰ą¤¤ą„ą¤¤ą¤°ą„€ą¤Æ ą¤”ą¤•ą„‹ą¤Ÿą¤¾ - ą¤®ą„‹ą¤°ą„ą¤Ÿą¤Ø ą¤•ą¤‚ą¤Ÿą„ą¤°ą„€ (मंदान ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤°ą¤¾ą¤²ą¤¾ ą¤µą¤—ą¤³ą„‚ą¤Ø)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤“ą¤œą„€ą¤Øą¤—ą¤¾" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "US ą¤®ą¤¾ą¤Šą¤‚ą¤Ÿą¤Ø ą¤µą„‡ą¤³ - ą¤šą¤æą¤¹ą„ą¤†ą¤¹ą„ą¤† US ą¤¬ą„‰ą¤°ą„ą¤”ą¤° जवळ ą¤†ą¤¹ą„‡" #: timezones.h:322 msgid "America/Panama" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/पनामा" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ŗą¤ą¤—ą¤Øą„€ą¤°ą¤Ÿą¤‚ą¤—" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ ą¤µą„‡ą¤³ - ą¤Ŗą¤¾ą¤‚ą¤—ą„ą¤Øą„€ą¤°ą„ą¤¤ą„ą¤‚ą¤—, ą¤Øą„ą¤Øą¤¾ą¤µą„ą¤¤" #: timezones.h:326 msgid "America/Paramaribo" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ŗą¤¾ą¤°ą¤¾ą¤®ą¤¾ą¤°ą„€ą¤¬ą„‹" #: timezones.h:327 msgid "America/Phoenix" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤«ą¤æą¤Øą¤æą¤•ą„ą¤ø" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "ą¤®ą¤¾ą¤Šą¤‚ą¤Ÿą¤Ø मानक ą¤µą„‡ą¤³ - ą¤ą¤°ą„€ą¤ą„‹ą¤Øą¤¾" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ŗą„‹ą¤°ą„ą¤Ÿ-ओ-ą¤Ŗą„ą¤°ą¤æą¤‚ą¤ø" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ŗą„‹ą¤°ą„ą¤Ÿ_ą¤ą¤•ą¤°" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ŗą„‹ą¤°ą„ą¤Ÿ_ऑफ_ą¤øą„ą¤Ŗą„‡ą¤Ø" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ŗą„‹ą¤°ą„ą¤Ÿą„‹_ą¤µą„‡ą¤²ą„‹" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "ą¤°ą„‹ą¤‚ą¤”ą„‹ą¤Øą„€ą¤Æą¤¾" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ŗą„ą¤Æą„‚ą¤°ą¤æą¤Ÿą„‹_ą¤°ą¤æą¤•ą„‹" #: timezones.h:337 msgid "America/Rainy_River" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤°ą„‡ą¤Øą„€_रिवर" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤µą„‡ą¤³ - ą¤°ą„ˆą¤Øą„€ ą¤°ą¤æą¤µą„ą¤¹ą¤° & ą¤«ą„‹ą¤°ą„ą¤Ÿ ą¤«ą„ą¤°ą¤¾ą¤‚ą¤øą„‡ą¤øą„, ą¤“ą¤‚ą¤Ÿą¤¾ą¤°ą„€ą¤Æą„‹" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤°ą„…ą¤Øą¤•ą„€ą¤Ø_ą¤‡ą¤Øą¤²ą„‡ą¤Ÿ" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤µą„‡ą¤³ - ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤Øą„ą¤Øą¤¾ą¤µą„ą¤Ÿ" #: timezones.h:343 msgid "America/Recife" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤°ą¤æą¤øą„€ą¤«" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "ą¤Ŗą„‡ą¤°ą„ą¤Øą¤¾ą¤®ą„ą¤¬ą„ą¤•ą„‹" #: timezones.h:346 msgid "America/Regina" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤°ą„‡ą¤œą„€ą¤Øą¤¾" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² मानक ą¤µą„‡ą¤³ - ą¤øą¤¾ą¤øą„ą¤•ą¤¾ą¤¤ą„ą¤šą„‡ą¤µą¤¾ą¤Ø - ą¤¬ą¤¹ą„ą¤¤ą¤¾ą¤‚ą¤¶ ठिकाण" #: timezones.h:349 msgid "America/Resolute" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤°ą„€ą¤œą„‹ą¤²ą„ą¤Æą„ą¤Ÿ" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ मानक ą¤µą„‡ą¤³ - ą¤°ą„‡ą¤øą„‹ą¤²ą„ą¤Æą„‚ą¤Ÿ, ą¤Øą„ą¤Øą¤¾ą¤µą„ą¤Ÿ" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤°ą„€ą¤Æą„‹_ą¤¬ą„ą¤°ą¤¾ą¤Øą„ą¤•ą„‹" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "ą¤…ą¤•ą„ą¤°ą„‡" #: timezones.h:355 msgid "America/Rosario" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤°ą„‹ą¤øą¤¾ą¤°ą¤æą¤Æą„‹" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/सँटा ą¤‡ą¤œą¤¾ą¤¬ą„‡ą¤² (_I)" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "ą¤®ą„‡ą¤•ą„ą¤øą„€ą¤•ą¤Ø ą¤Ŗą„…ą¤øą„€ą¤«ą„€ą¤• ą¤µą„‡ą¤³ - बाजा ą¤•ą„…ą¤²ą„€ą¤«ą„‹ą¤°ą„ą¤Øą„€ą¤Æą¤¾ US ą¤¬ą„‰ą¤°ą„ą¤”ą¤° ą¤Ŗą¤¾ą¤øą„‚ą¤Ø ą¤¦ą„‚ą¤° ą¤†ą¤¹ą„‡" #: timezones.h:359 msgid "America/Santarem" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą¤ą¤Ÿą¤¾ą¤°ą„‡ą¤®" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "W ą¤Ŗą„…ą¤°ą¤¾" #: timezones.h:362 msgid "America/Santiago" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿą„€ą¤Æą¤—ą„‹" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿą„‹_ą¤”ą„‹ą¤®ą¤æą¤‚ą¤—ą„‹" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą¤¾ą¤µą„‹_ą¤Ŗą„‹ą¤²ą„‹" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "S व SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„ą¤•ą„‹ą¤°ą„ą¤øą¤¬ą¤¾ą¤Æą¤øą¤‚ą¤”" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "ą¤øą„ą¤•ą„‹ą¤°ą„ą¤øą¤¬ą„€ą¤øą„ą¤‚ą¤” / ą¤‡ą¤Ÿą„ą¤Ÿą„‹ą¤•ą„ą¤•ą„‹ą¤°ą„ą¤¤ą„‚ą¤°ą„ą¤®ą„€ą¤¤ą„" #: timezones.h:372 msgid "America/Shiprock" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¶ą¤æą¤Ŗą¤°ą„‰ą¤•" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "ą¤®ą¤¾ą¤Šą¤‚ą¤Ÿą¤Ø ą¤µą„‡ą¤³ - ą¤Øą¤µą¤¾ą¤œą„‹" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„ˆą¤‚ą¤Ÿ_ą¤¬ą¤°ą„ą¤„ą¤²ą„‡ą¤®ą„€" #: timezones.h:376 msgid "America/St_Johns" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿ_ą¤œą„‰ą¤Øą„ą¤ø" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "ą¤Øą¤µą„€ą¤Øą¤«ą¤¾ą¤Šą¤‚ą¤”ą¤²ą¤ą¤” ą¤µą„‡ą¤³ - ą¤¦ą¤•ą„ą¤·ą„€ą¤£ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ ą¤²ą„…ą¤¬ą„ą¤°ą¤”ą„‹ą¤°" #: timezones.h:379 msgid "America/St_Kitts" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿ_ą¤•ą¤æą¤Ÿą„ą¤ø" #: timezones.h:380 msgid "America/St_Lucia" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿ_ą¤²ą„ą¤øą¤æą¤Æą¤¾" #: timezones.h:381 msgid "America/St_Thomas" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿ_ą¤„ą„‰ą¤®ą¤ø" #: timezones.h:382 msgid "America/St_Vincent" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿ_ą¤µą¤æą¤‚ą¤øą„‡ą¤‚ą¤Ÿ" #: timezones.h:383 msgid "America/Swift_Current" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„ą¤µą¤æą¤«ą„ą¤Ÿ_ą¤•ą¤°ą¤‚ą¤Ÿ" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² मानक ą¤µą„‡ą¤³ - ą¤øą¤¾ą¤øą„ą¤•ą¤¾ą¤¤ą„ą¤šą„‡ą¤µą¤¾ą¤Ø - ą¤®ą¤§ą„ą¤Æą¤Ŗą¤¶ą„ą¤šą¤æą¤®" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¤ą„‡ą¤—ą„ą¤øą„€ą¤—ą¤¾ą¤²ą¤Ŗą¤¾" #: timezones.h:387 msgid "America/Thule" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤„ą„ą¤Æą„‚ą¤²" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "ą¤„ą„ą¤²ą„‡ / ą¤Ŗą„€ą¤Ÿą„ą¤«ą„ą¤«ą„€ą¤•ą„" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ऄंऔर_ą¤¬ą„‡" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ ą¤µą„‡ą¤³ - ऄंऔर ą¤¬ą„‡, ą¤“ą¤‚ą¤Ÿą¤¾ą¤°ą„€ą¤Æą„‹" #: timezones.h:393 msgid "America/Tijuana" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¤ą„€ą¤œą„ą¤µą¤¾ą¤Øą¤¾" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "US ą¤Ŗą„…ą¤øą„€ą¤«ą„€ą¤• ą¤µą„‡ą¤³ - बाजा ą¤•ą„…ą¤²ą„€ą¤«ą„‹ą¤°ą„ą¤Øą¤æą¤Æą¤¾ US ą¤¬ą„‰ą¤°ą„ą¤”ą¤°ą¤šą„ą¤Æą¤¾ जवळ" #: timezones.h:396 msgid "America/Toronto" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ÿą„‹ą¤°ą„‹ą¤‚ą¤Ÿą„‹" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ ą¤µą„‡ą¤³ - ą¤“ą¤Øą„ą¤Ÿą¤¾ą¤°ą„€ą¤Æą„‹ - ą¤¬ą¤¹ą„ą¤¤ą¤¾ą¤‚ą¤¶ ठिकाण" #: timezones.h:399 msgid "America/Tortola" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ÿą„‹ą¤°ą„ą¤Ÿą„‹ą¤²ą¤¾" #: timezones.h:400 msgid "America/Vancouver" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤µą„‡ą¤‚ą¤•ą„‹ą¤µą„‡ą¤°" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą„€ą¤• ą¤µą„‡ą¤³ - ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤¬ą„ą¤°ą¤æą¤Ÿą„€ą¤¶ ą¤•ą„‹ą¤²ą„ą¤¬ą„€ą¤Æą¤¾" #: timezones.h:403 msgid "America/Virgin" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤µą¤°ą„ą¤œą¤æą¤Ø" #: timezones.h:404 msgid "America/Whitehorse" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤µą„ą¤¹ą¤¾ą¤‡ą¤Ÿą¤¹ą„‰ą¤°ą„ą¤ø" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą„€ą¤• ą¤µą„‡ą¤³ - ą¤¦ą¤•ą„ą¤·ą„€ą¤£ ą¤Æą„ą¤•ą„‹ą¤Ø" #: timezones.h:407 msgid "America/Winnipeg" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤µą¤æą¤Øą„€ą¤Ŗą„‡ą¤—" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤µą„‡ą¤³ - ą¤®ą¤Øą„€ą¤Ÿą„‹ą¤¬ą¤¾ व ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤“ą¤Øą„ą¤Ÿą¤¾ą¤°ą„€ą¤Æą„‹" #: timezones.h:410 msgid "America/Yakutat" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Æą¤•ą„ą¤Ÿą„‡ą¤Ÿ" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "ą¤…ą¤²ą¤¾ą¤øą„ą¤•ą¤¾ ą¤µą„‡ą¤³ - ą¤…ą¤²ą¤¾ą¤øą„ą¤•ą¤¾ ą¤Ŗą„…ą¤Øą¤¹ą„…ą¤Øą„ą¤”ą¤²ą„ ą¤Øą„‡ą¤•ą„" #: timezones.h:413 msgid "America/Yellowknife" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Æą¤²ą„‹ą¤Øą¤¾ą¤‡ą¤«" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "ą¤®ą¤¾ą¤Šą¤‚ą¤Ÿą¤Ø ą¤µą„‡ą¤³ - ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤‰ą¤¤ą„ą¤¤ą¤°ą¤Ŗą¤¶ą„ą¤šą¤æą¤®ą„€ ą¤Ŗą„ą¤°ą¤¾ą¤‚ą¤¤" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤Ÿą¤æą¤•ą¤¾/ą¤•ą„…ą¤øą„‡" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "ą¤•ą„‡ą¤øą„€ ą¤øą„ą¤Ÿą„‡ą¤¶ą¤Ø, ą¤¬ą„ˆą¤²ą„‡ ą¤Ŗą„‡ą¤Øą„€ą¤‚ą¤øą„ą¤²ą¤¾" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤Ÿą¤æą¤•ą¤¾/ą¤”ą„‡ą¤µą¤æą¤ø" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "ą¤”ą„‡ą¤µą„€ą¤ø ą¤øą„ą¤Ÿą„‡ą¤¶ą¤Ø, ą¤µą„‡ą¤øą„ą¤Ÿą¤«ą„‹ą¤²ą„ą¤” ą¤¹ą¤æą¤²ą„ą¤øą„" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤Ÿą¤æą¤•ą¤¾/ą¤”ą„‚ą¤®ą¤¾ą¤‚ą¤Ÿą¤”ą¤°ą¤µą¤æą¤²" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "ą¤”ą„ą¤Æą„ą¤®ą„‹ą¤‚ą¤Ÿ-ą¤”ą¤Šą¤°ą„ą¤µą„€ą¤²ą„ą¤²ą„‡ ą¤øą„ą¤Ÿą„‡ą¤¶ą¤Ø, ą¤Ÿą„‡ą¤°ą„ą¤°ą„‡ ą¤…ą¤”ą„€ą¤²ą„ˆ" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤Ÿą¤æą¤•ą¤¾/ą¤®ą„‡ą¤•ą¤•ą„ˆą¤°ą„€" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "ą¤®ą„…ą¤•ą¤•ą„ˆą¤°ą„€ ą¤¦ą„ą¤µą¤æą¤Ŗ ą¤øą„ą¤Ÿą„‡ą¤¶ą¤Ø, ą¤®ą„…ą¤•ą¤•ą„ˆą¤°ą„€ ą¤¦ą„ą¤µą¤æą¤Ŗ" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤Ÿą¤æą¤•ą¤¾/ą¤®ą„‰ą¤øą¤Ø" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "ą¤®ą¤µą„ą¤øą„‹ą¤Ø ą¤øą„ą¤Ÿą„‡ą¤¶ą¤Ø, ą¤¹ą„‹ą¤²ą„ą¤® ą¤¬ą„‡" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤Ÿą¤æą¤•ą¤¾/ą¤®ą„‡ą¤•ą¤®ą„ą¤°ą¤”ą„‹" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "ą¤®ą„…ą¤•ą¤®ą„ą¤°ą„ą¤”ą„‹ ą¤øą„ą¤Ÿą„‡ą¤¶ą¤Ø, ą¤°ą„‰ą¤øą„ ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤Ÿą¤æą¤•ą¤¾/पामर " #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "ą¤Ŗą¤¾ą¤²ą„ą¤®ą¤° ą¤øą„ą¤Ÿą„‡ą¤¶ą¤Ø, ą¤…ą¤‚ą¤µą„‡ą¤°ą„ą¤øą„ ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤Ÿą¤æą¤•ą¤¾/ą¤°ą„‹ą¤„ą„‡ą¤°ą¤æą¤Æą¤¾" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "ą¤°ą„‹ą¤„ą„‡ą¤°ą¤¾ ą¤øą„ą¤Ÿą„‡ą¤¶ą¤Ø, ą¤…ą¤”ą„‡ą¤²ą„ˆą¤” ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤Ÿą¤æą¤•ą¤¾/साउऄ_ą¤Ŗą„‹ą¤²" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "ą¤…ą¤®ą„ą¤‚ą¤”ą„ą¤øą„‡ą¤Ø-ą¤øą„ą¤•ą„‰ą¤Ÿą„ ą¤øą„ą¤Ÿą„‡ą¤¶ą¤Ø, ą¤¦ą¤•ą„ą¤·ą„€ą¤£ ą¤Ŗą„‹ą¤²ą„" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤Ÿą¤æą¤•ą¤¾/ą¤øą¤Æą„ą¤µą¤¾" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "ą¤øą„ą¤Æą„‹ą¤µą¤¾ ą¤øą„ą¤Ÿą„‡ą¤¶ą¤Ø, ą¤ ą¤“ą¤‚ą¤—ą„ą¤² इ" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "ą¤…ą¤‚ą¤Ÿą¤¾ą¤°ą„ą¤Ÿą¤æą¤•ą¤¾/ą¤µą„‹ą¤øą„ą¤¤ą„‹ą¤•" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "ą¤µą„‹ą¤øą„ą¤Ÿą„‹ą¤• ą¤øą„ą¤Ÿą„‡ą¤¶ą¤Ø, ą¤¦ą¤•ą„ą¤·ą„€ą¤£ ą¤®ą„…ą¤—ą¤Øą„‡ą¤Ÿą„€ą¤• ą¤Ŗą„‹ą¤²ą„" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "ą¤†ą¤°ą„ą¤Ÿą¤æą¤•/ą¤²ą¤¾ą¤ą¤—ą¤ˆą¤Æą¤°ą¤¬ą¤¾ą¤Æą„‡ą¤Ø" #: timezones.h:450 msgid "Asia/Aden" msgstr "आशिया/अदन" #: timezones.h:451 msgid "Asia/Almaty" msgstr "आशिया/ą¤…ą¤²ą¤®ą¤Ÿą„€" #: timezones.h:454 msgid "Asia/Amman" msgstr "आशिया/ą¤…ą¤®ą„ą¤®ą¤¾ą¤Ø" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "आशिया/अनाऔिर" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "ą¤®ą„‰ą¤øą„ą¤•ą„‹+08 - ą¤¬ą„‡ą¤°ą¤æą¤‚ą¤— ą¤øą¤®ą„ą¤¦ą„ą¤°" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "आशिया/ą¤ą¤•ą¤¤ą„‹" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "ą¤…ą¤¤ą„ą¤Æą¤°ą„Œ (ą¤…ą¤¤ą„€ą¤°ą„Œ, ą¤—ą„ą¤°ą„ą¤Æą„‡ą¤µ), ą¤®ą¤‚ą¤˜ą„ą¤˜ą„€ą¤øą„ą¤¤ą„Œ (ą¤®ą¤Øą¤•ą„€ą¤øą„ą¤¤ą„Œ)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "आशिया/ą¤…ą¤•ą¤¤ą„‚ą¤¬" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "ą¤…ą¤•ą„ą¤¤ą„‹ą¤¬ą„‡ (ą¤…ą¤•ą„ą¤¤ą„‹ą¤¬ą„‡)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "आशिया/ą¤…ą¤¶ą¤—ą¤¾ą¤¬ą¤Ÿ" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "आशिया/ą¤…ą¤¶ą„ą¤–ą¤¾ą¤¬ą¤¾ą¤¦" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "आशिया/बगदाद" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "आशिया/ą¤¬ą¤¹ą¤°ą„€ą¤Ø" #: timezones.h:468 msgid "Asia/Baku" msgstr "आशिया/ą¤¬ą¤¾ą¤•ą„‚" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "आशिया/ą¤¬ą¤ą¤•ą„‰ą¤•" #: timezones.h:470 msgid "Asia/Beirut" msgstr "आशिया/ą¤¬ą„‡ą¤°ą„ą¤Ÿ" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "आशिया/ą¤¬ą¤æą¤¶ą¤•ą„‡ą¤•" #: timezones.h:472 msgid "Asia/Brunei" msgstr "आशिया/ą¤¬ą„ą¤°ą„ą¤Øą„‡ą¤ˆ" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "आशिया/ą¤•ą„‹ą¤²ą¤•ą¤¾ą¤¤ą¤¾" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "आशिया/ą¤›ą„‹ą¤ˆą¤¬ą¤²ą¤øą¤Ø" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "ą¤”ą„‹ą¤°ą„ą¤Øą„‹ą¤”, ą¤øą„ą¤–ą¤¬ą¤¾ą¤¤ą¤°" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "आशिया/ą¤šą¤¾ą¤‚ą¤—ą¤•ą¤æą¤‚ą¤—" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤šą¤¾ą¤‡ą¤Øą¤¾ - ą¤øą„€ą¤šą„ą¤†ą¤Ø, ą¤Æą„ą¤Øą¤¾ą¤Ø, ą¤—ą„ą¤†ą¤‚ą¤—ą„ą¤øą„€, ą¤¶ą¤¾ą¤Øą„ą¤øą„€, ą¤—ą„ą¤‡ą¤ą„Œ, ą¤‡ą¤¤ą„ą¤Æą¤¾." #: timezones.h:480 msgid "Asia/Chungking" msgstr "आशिया/ą¤šą„ą¤‚ą¤—ą¤•ą¤æą¤‚ą¤—" #: timezones.h:481 msgid "Asia/Colombo" msgstr "आशिया/ą¤•ą„‹ą¤²ą„‹ą¤‚ą¤¬ą„‹" #: timezones.h:482 msgid "Asia/Dacca" msgstr "आशिया/ą¤”ą¤•ą„ą¤•ą¤¾" #: timezones.h:483 msgid "Asia/Damascus" msgstr "आशिया/ą¤”ą¤®ą¤øą„ą¤•ą¤ø" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "आशिया/ढाका " #: timezones.h:485 msgid "Asia/Dili" msgstr "आशिया/ą¤¦ą¤æą¤²ą„€" #: timezones.h:486 msgid "Asia/Dubai" msgstr "आशिया/ą¤¦ą„ą¤¬ą¤ˆ" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "आशिया/ą¤¦ą„ą¤øą¤¾ą¤Øą¤¬ą„‡" #: timezones.h:488 msgid "Asia/Gaza" msgstr "आशिया/ą¤—ą¤¾ą¤œą¤¾" #: timezones.h:489 msgid "Asia/Harbin" msgstr "आशिया/ą¤¹ą¤°ą¤¬ą„€ą¤Ø " #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "ą¤¹ą„ˆą¤²ą„‹ą¤‚ą¤œą„€ą¤†ą¤‚ą¤— (ą¤®ą„‹ą¤¹ą„‡ą¤²ą¤¾ ą¤µą¤—ą¤³ą„‚ą¤Ø), ą¤œą„€ą¤²ą„€ą¤Ø" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "आशिया/ą¤¹ą„‹_ą¤›ą„€_मिंह" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "आशिया/हाँग_काँग" #: timezones.h:494 msgid "Asia/Hovd" msgstr "आशिया/हावऔ" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "बयान-ą¤“ą¤²ą„ą¤—ą„€, ą¤—ą„‹ą¤µą„€-ą¤…ą¤²ą„ą¤¤ą„ˆ, ą¤¹ą„‹ą¤µą„ą¤”ą„, ą¤‰ą¤µą„ą¤øą„, ą¤ą¤µą„ą¤–ą¤¾ą¤Ø" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "आशिया/ą¤‡ą¤°ą¤•ą„ą¤Ÿą„ą¤øą„ą¤•" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "ą¤®ą„‰ą¤øą„ą¤•ą„‹+05 - ą¤¬ą„ˆą¤•ą¤² तलाव" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "आशिया/ą¤‡ą¤øą„ą¤¤ą¤¾ą¤‚ą¤¬ą„ą¤²" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "आशिया/ą¤œą¤•ą¤¾ą¤°ą„ą¤¤ą¤¾" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "जावा व ą¤øą„ą¤®ą¤¤ą„ą¤°ą¤¾" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "आशिया/ą¤œą¤Æą¤Ŗą„ą¤°" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "इरियन जया व द ą¤®ą„‹ą¤²ą„ą¤•ą„ą¤•ą¤¾ą¤øą„" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "आशिया/ą¤œą„‡ą¤°ą„ą¤øą¤²ą„‡ą¤®" #: timezones.h:508 msgid "Asia/Kabul" msgstr "आशिया/ą¤•ą¤¾ą¤¬ą„‚ą¤²" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "आशिया/ą¤•ą¤®ą¤šą¤Ÿą¤•ą¤¾" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "ą¤®ą„‰ą¤øą„ą¤•ą„‹+08 - ą¤•ą¤®ą¤šą¤¤ą„ą¤•ą¤¾" #: timezones.h:512 msgid "Asia/Karachi" msgstr "आशिया/ą¤•ą¤°ą¤¾ą¤šą„€" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "आशिया/ą¤•ą„‡ą¤¶ą¤—ą¤°" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤¤ą„€ą¤¬ą„‡ą¤Ÿ & ą¤•ą„ą¤øą„€ą¤‚ą¤œą„€ą¤†ą¤‚ą¤—ą¤šą„‡" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "आशिया/ą¤•ą¤ ą¤®ą¤‚ą¤”ą„‚" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "आशिया/ą¤•ą¤¾ą¤ ą¤®ą¤¾ą¤‚ą¤”ą„‚" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "आशिया/ą¤•ą„‹ą¤²ą¤•ą¤¾ą¤¤ą¤¾" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "आशिया/ą¤•ą„ą¤°ą¤øą„ą¤Øą„‹ą¤Æą¤¾ą¤øą„ą¤•" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "ą¤®ą„‰ą¤øą„ą¤•ą„‹+04 - ą¤Æą„‡ą¤Øą„€ą¤øą„ˆ ą¤Øą¤¦ą„€" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "आशिया/ą¤•ą„ą¤µą¤¾ą¤²ą¤¾_ą¤²ą¤®ą„ą¤Ŗą„ą¤°" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "ą¤Ŗą„‡ą¤Øą„€ą¤‚ą¤øą„ą¤Æą„ą¤²ą¤¾ą¤° ą¤®ą¤²ą„‡ą¤¶ą„€ą¤Æą¤¾" #: timezones.h:525 msgid "Asia/Kuching" msgstr "आशिया/ą¤•ą„ą¤šą¤æą¤‚ą¤—" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "सबाह & सरवाक" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "आशिया/ą¤•ą„ą¤µą„ˆą¤¤" #: timezones.h:529 msgid "Asia/Macao" msgstr "आशिया/मकाओ" #: timezones.h:530 msgid "Asia/Macau" msgstr "आशिया/मकाउ" #: timezones.h:531 msgid "Asia/Magadan" msgstr "आशिया/मगाऔन" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "ą¤®ą„‰ą¤øą„ą¤•ą„‹+08 - मगदान" #: timezones.h:534 msgid "Asia/Makassar" msgstr "आशिया/ą¤®ą¤•ą¤øą„ą¤øą¤°" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µ & ą¤¦ą¤•ą„ą¤·ą¤æą¤£ ą¤¬ą„‹ą¤°ą„ą¤Øą„€ą¤“, ą¤øą„‡ą¤²ą„‡ą¤¬ą„‡ą¤œą„, ą¤¬ą¤¾ą¤²ą„€, ą¤Øą„ą¤øą¤¾ ą¤Ÿą„‡ą¤‚ą¤—ą¤¾ą¤°ą„ą¤°ą¤¾, ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤¤ą„€ą¤®ą„‹ą¤°" #: timezones.h:537 msgid "Asia/Manila" msgstr "आशिया/ą¤®ą¤Øą„€ą¤²ą¤¾" #: timezones.h:538 msgid "Asia/Muscat" msgstr "आशिया/ą¤®ą¤øą„ą¤•ą¤¤" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "आशिया/ą¤Øą¤æą¤•ą„‹ą¤øą¤æą¤Æą¤¾" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "आशिया/ą¤Øą„‹ą¤µą„‹ą¤•ą„ą¤ą„ą¤Øą„‡ą¤¤ą„ą¤øą„ą¤•" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "ą¤®ą„‰ą¤øą„ą¤•ą„‹+03 - ą¤Øą„‹ą¤µą„‹ą¤•ą„ą¤ą„ą¤Øą„‡ą¤¤ą„ą¤øą„ą¤•" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "आशिया/ą¤Øą„‹ą¤µą„‹ą¤øą¤æą¤¬ą„ą¤°ą¤æą¤øą„ą¤•" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "ą¤®ą„‰ą¤øą„ą¤•ą„‹+03 - ą¤Øą„‹ą¤µą„‹ą¤øą¤æą¤¬ą¤æą¤°ą„ą¤øą„ą¤•ą„" #: timezones.h:546 msgid "Asia/Omsk" msgstr "आशिया/ą¤“ą¤®ą¤øą„ą¤•" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "ą¤®ą„‰ą¤øą„ą¤•ą„‹+03 - ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤øą¤¾ą¤Æą¤¬ą„‡ą¤°ą¤æą¤Æą¤¾" #: timezones.h:549 msgid "Asia/Oral" msgstr "आशिया/ओरल" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤•ą¤ą¤¾ą¤–ą¤øą„ą¤¤ą¤¾ą¤Ø" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "आशिया/ą¤Øą„‰ą¤®_ą¤Ŗą„‡ą¤Øą„ą¤¹" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "आशिया/ą¤Ŗą„‹ą¤Øą¤Ÿą„ą¤Æą¤¾ą¤Øą¤•" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µ & ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤¬ą„‹ą¤°ą„ą¤Øą„€ą¤“" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "आशिया/ą¤Ŗą„ą¤Æą„‹ą¤‚ą¤—ą¤Æą¤¾ą¤‚ą¤—" #: timezones.h:557 msgid "Asia/Qatar" msgstr "आशिया/कतार" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "आशिया/ą¤•ą„ˆą¤œą„€ą¤²ą„‹ą¤°ą¤”ą¤¾" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "ą¤•ą„ą¤œą„€ą¤²ą„‹ą¤°ą„ą¤”ą¤¾ (ą¤•ą¤¾ą¤Æą¤œą„€ą¤²ą„‹ą¤°ą„ą¤”ą¤¾, ą¤•ą„ą¤œą„€ą¤²-ą¤“ą¤°ą„ą¤”ą¤¾)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "आशिया/ą¤°ą¤‚ą¤—ą„‚ą¤Ø" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "आशिया/रियाद" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "आशिया/रियाद87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "आशिया/रियाद88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "आशिया/रियाद89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "आशिया/ą¤¶ą„ˆą¤—ą¤¾ą¤‚ą¤µ" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "आशिया/ą¤øą¤¾ą¤–ą¤¾ą¤²ą„€ą¤Ø" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "ą¤®ą„‰ą¤øą„ą¤•ą„‹+07 - ą¤øą¤•ą„ą¤¹ą¤¾ą¤²ą„€ą¤Ø ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "आशिया/समरकंऔ" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ ą¤‰ą¤ą„ą¤¬ą„‡ą¤•ą¤æą¤øą„ą¤¤ą¤¾ą¤Ø" #: timezones.h:573 msgid "Asia/Seoul" msgstr "आशिया/ą¤øą¤æą¤Æą„‹ą¤²" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "आशिया/ą¤¶ą¤‚ą¤˜ą¤¾ą¤ˆ" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ ą¤šą¤¾ą¤‡ą¤Øą¤¾ - ą¤¬ą„ˆą¤œą„€ą¤‚ą¤—, ą¤—ą„ą¤†ą¤‚ą¤—ą¤”ą„‹ą¤‚ą¤—, ą¤¶ą¤¾ą¤‚ą¤˜ą¤¾ą¤ˆ, ą¤‡ą¤¤ą„ą¤Æą¤¾." #: timezones.h:577 msgid "Asia/Singapore" msgstr "आशिया/ą¤øą¤æą¤‚ą¤—ą¤¾ą¤Ŗą„ą¤°" #: timezones.h:578 msgid "Asia/Taipei" msgstr "आशिया/ą¤¤ą¤¾ą¤ˆą¤Ŗą„‡" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "आशिया/ताशकंद" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µ ą¤‰ą¤ą„ą¤¬ą„‡ą¤•ą¤æą¤øą„ą¤¤ą¤¾ą¤Ø" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "आशिया/ą¤¤ą¤¬ą„€ą¤²ą¤æą¤øą„€" #: timezones.h:583 msgid "Asia/Tehran" msgstr "आशिया/ą¤¤ą„‡ą¤¹ą¤°ą¤¾ą¤Ø" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "आशिया/ą¤¤ą„‡ą¤²_ą¤…ą¤µą„€ą¤µ" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "आशिया/ą¤¤ą¤æą¤®ą¤¬ą„‚" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "आशिया/ą¤„ą¤æą¤‚ą¤«ą„‚" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "आशिया/ą¤Ÿą„‹ą¤•ą„ą¤Æą„‹" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "आशिया/ą¤Šą¤œą„‚ą¤‚ą¤—_ą¤Ŗą¤Øą„ą¤¦ą¤¾ą¤‚ą¤—" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "आशिया/उलानबतर" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "आशिया/उलन_ą¤¬ą¤¤ą„‹ą¤°" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "आशिया/ą¤‰ą¤°ą„ą¤®ą¤•ą„€" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "ą¤¤ą„€ą¤¬ą„‡ą¤Ÿ & ą¤•ą„ą¤øą„€ą¤‚ą¤œą„€ą¤†ą¤‚ą¤—ą¤šą„‡ ą¤¬ą¤¹ą„ą¤¤ą¤¾ą¤‚ą¤¶ भाग" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "आशिया/ą¤µą„‡ą¤‚ą¤Ÿą„€ą¤Æą„‡ą¤Ø" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "आशिया/ą¤µą„ą¤²ą¤¾ą¤”ą„€ą¤µą„‹ą¤øą„ą¤Ÿą„‹ą¤•" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "ą¤®ą„‰ą¤øą„ą¤•ą„‹+07 - ą¤…ą¤®ą„‚ą¤° ą¤Øą¤¦ą„€" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "आशिया/ą¤Æą¤•ą„ą¤Ÿą„ą¤øą„ą¤•" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "ą¤®ą„‰ą¤øą„ą¤•ą„‹+06 - ą¤²ą„‡ą¤Øą¤¾ ą¤Øą¤¦ą„€" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "आशिया/ą¤Æą„‡ą¤•ą¤¾ą¤¤ą¤°ą„€ą¤Øą¤¬ą¤°ą„ą¤—" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "ą¤®ą„‰ą¤øą„ą¤•ą„‹+02 - ą¤Æą„‚ą¤°ą¤²ą„ą¤øą„" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "आशिया/ą¤Æą„‡ą¤°ą¤¾ą¤µą¤æą¤Ø" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤…ą¤œą„‹ą¤°ą„ą¤ø" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "ą¤…ą¤ą„‹ą¤°ą„‡ą¤œą„" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤¬ą¤°ą„ą¤®ą„ą¤Æą„‚ą¤”ą¤¾" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤•ą„…ą¤Øą„‡ą¤°ą„€" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "ą¤•ą¤Øą„…ą¤°ą„€ ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤•ą„‡ą¤Ŗ_ą¤µą¤°ą„ą¤¦ą„‡" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤«ą„ˆą¤°ą„‹" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤«ą„ˆą¤°ą„‹" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/जन_मयन" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤®ą„‡ą¤”ą¤æą¤°ą¤¾" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "ą¤®ą¤”ą„ˆą¤°ą¤¾ ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤°ą¤æą¤•ą¤œą¤¾ą¤µą¤æą¤•" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤¦ą¤•ą„ą¤·ą¤æą¤£_ą¤œą„‰ą¤°ą„ą¤œą¤æą¤Æą¤¾" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤øą„ą¤Ÿą„‡ą¤Øą¤²ą„€" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤øą„‡ą¤‚ą¤Ÿ_ą¤¹ą„‡ą¤²ą„‡ą¤Øą¤¾" #: timezones.h:625 msgid "Australia/ACT" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤ą¤øą„€ą¤Ÿą„€" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤ą¤”ą„€ą¤²ą„‡ą¤”" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "ą¤¦ą¤•ą„ą¤·ą¤æą¤£ ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤¬ą„ą¤°ą¤æą¤øą¤¬ą„‡ą¤Ø" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "ą¤•ą„ą¤µą„€ą¤Øą„ą¤øą¤²ą¤ą¤” - ą¤¬ą¤¹ą„ą¤¤ą¤¾ą¤‚ą¤¶ ठिकाण" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤¬ą„ą¤°ą„‹ą¤•ą¤Ø_हिल" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "ą¤Øą¤µą„€ą¤Ø ą¤¦ą¤•ą„ą¤·ą„€ą¤£ ą¤µą„‡ą¤²ą„ą¤øą„ - ą¤Æą¤¾ą¤‚ą¤•ą„‹ą¤µą¤æą¤‚ą¤Øą„ą¤Øą¤¾" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤•ą„‡ą¤Øą¤¬ą„‡ą¤°ą¤¾" #: timezones.h:636 msgid "Australia/Currie" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤•ą„ą¤Æą„‚ą¤°ą„€" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "ą¤¤ą¤¾ą¤øą„ą¤®ą¤¾ą¤Øą„€ą¤Æą¤¾ - किंग ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:639 msgid "Australia/Darwin" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤”ą¤¾ą¤°ą„ą¤µą¤æą¤Ø" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "ą¤‰ą¤¤ą„ą¤¤ą¤°ą„€ą¤Æ ą¤Ŗą„ą¤°ą¤¾ą¤‚ą¤¤" #: timezones.h:642 msgid "Australia/Eucla" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤ą¤•ą„ą¤²ą¤¾" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾ - ą¤Æą„‚ą¤•ą„ą¤²ą¤¾ ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤°" #: timezones.h:645 msgid "Australia/Hobart" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤¹ą„‹ą¤¬ą¤°ą„ą¤Ÿ" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "ą¤¤ą¤øą„ą¤®ą¤¾ą¤Øą„€ą¤Æą¤¾ - ą¤¬ą¤¹ą„ą¤¤ą¤¾ą¤‚ą¤¶ ठिकाण" #: timezones.h:648 msgid "Australia/LHI" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤ą¤²ą¤ą¤šą¤†ą¤Æ" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤²ą¤æą¤‚ą¤”ą„‡ą¤®ą„‡ą¤Ø" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "ą¤•ą„ą¤µą„€ą¤Øą„ą¤øą¤²ą¤ą¤” - ą¤¹ą„‰ą¤²ą„€ą¤”ą„‡ ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤²ą„‰ą¤°ą„ą¤”_ą¤¹ą„‹ą¤µ" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "ą¤²ą¤¾ą¤°ą„ą¤” ą¤¹ą„‹ą¤µą„ą¤¹ą„‡ ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤®ą„‡ą¤²ą¤¬ą„‰ą¤°ą„ą¤Ø" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "ą¤µą¤æą¤•ą„ą¤Ÿą„‹ą¤°ą¤æą¤Æą¤¾" #: timezones.h:658 msgid "Australia/North" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤‰ą¤¤ą„ą¤¤ą¤°" #: timezones.h:659 msgid "Australia/NSW" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤Ŗą¤°ą„ą¤„" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾ - ą¤¬ą¤¹ą„ą¤¤ą¤¾ą¤‚ą¤¶ ठिकाण" #: timezones.h:663 msgid "Australia/Queensland" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤•ą„ą¤µą„€ą¤‚ą¤øą¤²ą¤ą¤”" #: timezones.h:664 msgid "Australia/South" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤¦ą¤•ą„ą¤·ą¤æą¤£" #: timezones.h:665 msgid "Australia/Sydney" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤øą¤æą¤”ą¤Øą„€" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "ą¤Øą¤µą„€ą¤Ø ą¤¦ą¤•ą„ą¤·ą¤æą¤£ ą¤µą„‡ą¤²ą„ą¤øą„ - ą¤¬ą¤¹ą„ą¤¤ą¤¾ą¤‚ą¤¶ ą¤ ą¤æą¤•ą¤¾ą¤£ą„‡" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤Ÿą¤¾ą¤øą„ą¤®ą¤¾ą¤Øą¤æą¤Æą¤¾" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤µą¤æą¤•ą„ą¤Ÿą„‹ą¤°ą¤æą¤Æą¤¾" #: timezones.h:670 msgid "Australia/West" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤Ŗą¤¶ą„ą¤šą¤æą¤®" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ą¤‘ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤Æą¤¾ą¤Øą„ą¤•ą„‹ą¤µą¤æą¤Øą¤¾" #: timezones.h:672 msgid "Brazil/Acre" msgstr "ą¤¬ą„ą¤°ą¤¾ą¤ą¤æą¤²/ą¤ą¤•ą¤°" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "ą¤¬ą„ą¤°ą¤¾ą¤ą¤æą¤²/ą¤”ą„‡ą¤Øą„‹ą¤°ą„‹ą¤Øą¤¾" #: timezones.h:674 msgid "Brazil/East" msgstr "ą¤¬ą„ą¤°ą¤¾ą¤ą¤æą¤²/ą¤Ŗą„‚ą¤°ą„ą¤µ" #: timezones.h:675 msgid "Brazil/West" msgstr "ą¤¬ą„ą¤°ą¤¾ą¤ą¤æą¤²/ą¤Ŗą¤¶ą„ą¤šą¤æą¤®" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "ą¤•ą„…ą¤Øą¤”ą¤¾/ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•" #: timezones.h:677 msgid "Canada/Central" msgstr "ą¤•ą„…ą¤Øą¤”ą¤¾/ą¤®ą¤§ą„ą¤Æ" #: timezones.h:678 msgid "Canada/Eastern" msgstr "ą¤•ą„…ą¤Øą¤”ą¤¾/ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "ą¤•ą„…ą¤Øą¤”ą¤¾/ą¤Ŗą„‚ą¤°ą„ą¤µ-ą¤øą¤øą„ą¤•ą¤šą¤µą¤Ø" #: timezones.h:680 msgid "Canada/Mountain" msgstr "ą¤•ą„…ą¤Øą¤”ą¤¾/ą¤®ą¤¾ą¤‰ą¤Øą„ą¤Ÿą„‡ą¤Ø" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "ą¤•ą„…ą¤Øą¤”ą¤¾/ą¤Øą„ą¤Æą„‚ą¤«ą¤¾ą¤‰ą¤‚ą¤”ą¤²ą¤ą¤”" #: timezones.h:682 msgid "Canada/Pacific" msgstr "ą¤•ą„…ą¤Øą¤”ą¤¾/ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "ą¤•ą„…ą¤Øą¤”ą¤¾/ą¤øą¤øą„ą¤•ą¤šą¤µą¤Ø" #: timezones.h:684 msgid "Canada/Yukon" msgstr "ą¤•ą„…ą¤Øą¤”ą¤¾/ą¤Æą„‚ą¤•ą„‹ą¤Ø" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "ą¤šą¤æą¤²ą„€/ą¤•ą„‰ą¤Øą„ą¤Ÿą„€ą¤Øą„‡ą¤Øą„ą¤Ÿą¤²" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "ą¤šą¤æą¤²ą„€/ą¤‡ą¤øą„ą¤Ÿą¤°ą¤†ą¤Æą¤²ą¤‚ą¤”" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "ą¤•ą„ą¤Æą„‚ą¤¬ą¤¾" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "ą¤‡ą¤œą¤æą¤Ŗą„ą¤¤" #: timezones.h:692 msgid "Eire" msgstr "आयर" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr " Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/ą¤—ą„ą¤°ą„€ą¤Øą¤µą¤æą¤š" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤²" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/ą¤ą„ą¤²ą„‚" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤ą¤®ą„ą¤øą„ą¤Ÿą¤°ą¤”ą„…ą¤®" #: timezones.h:731 msgid "Europe/Andorra" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤ą¤‚ą¤”ą„‹ą¤°ą¤¾" #: timezones.h:732 msgid "Europe/Athens" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤…ą¤„ą„‡ą¤‚ą¤ø" #: timezones.h:733 msgid "Europe/Belfast" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¬ą„‡ą¤²ą¤«ą¤¾ą¤øą„ą¤Ÿ" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¬ą„‡ą¤²ą¤—ą„ą¤°ą„‡ą¤”" #: timezones.h:735 msgid "Europe/Berlin" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¬ą¤°ą„ą¤²ą¤æą¤Ø" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¬ą„ą¤°ą¤Ÿą¤æą¤øą„ą¤²ą¤¾ą¤µą¤¾" #: timezones.h:737 msgid "Europe/Brussels" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¬ą„ą¤°ą¤øą„ą¤øą„‡ą¤²ą„ą¤ø" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¬ą„ą¤–ą¤¾ą¤°ą„‡ą¤øą„ą¤Ÿ" #: timezones.h:739 msgid "Europe/Budapest" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¬ą„ą¤”ą¤¾ą¤Ŗą„‡ą¤øą„ą¤Ÿ" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤šą„€ą¤øą„€ą¤Øą„‹" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤•ą„‹ą¤Ŗą¤Øą¤¹ą„‡ą¤—ą¤Ø" #: timezones.h:742 msgid "Europe/Dublin" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤”ą¤¬ą„ą¤²ą„€ą¤Ø" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤œą¤æą¤¬ą„ą¤°ą¤¾ą¤²ą„ą¤Ÿą¤°" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤—ą¤°ą„ą¤Øą„‡ą¤øą„€" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¹ą„‡ą¤²ą¤øą¤æą¤‚ą¤•ą„€" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤‡ą¤øą„ą¤²ą„‡_ऑफ_ą¤®ą„…ą¤Ø" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤‡ą¤øą„ą¤¤ą¤¾ą¤‚ą¤¬ą„ą¤²" #: timezones.h:748 msgid "Europe/Jersey" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤œą¤°ą„ą¤øą„€" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤•ą¤¾ą¤²ą¤æą¤Øą„€ą¤—ą„ą¤°ą¤¾ą¤”" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "ą¤®ą„‰ą¤øą„ą¤•ą„‹+01 - ą¤•ą¤²ą„€ą¤Øą„€ą¤‚ą¤—ą„ą¤°ą„…ą¤”" #: timezones.h:752 msgid "Europe/Kiev" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤•ą„€ą¤µ" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤²ą¤æą¤øą„ą¤¬ą¤Ø" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤²ą¤œą„ą¤¬ą¤²ą¤œą¤¾ą¤Øą¤¾" #: timezones.h:759 msgid "Europe/London" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/लंऔन" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤²ą„‡ą¤•ą„ą¤ą¤‚ą¤¬ą¤°ą„ą¤—" #: timezones.h:761 msgid "Europe/Madrid" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤®ą„‡ą¤”ą„ą¤°ą¤æą¤”" #: timezones.h:764 msgid "Europe/Malta" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤®ą¤¾ą¤²ą„ą¤Ÿą¤¾" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤®ą„‡ą¤°ą„€ą¤¹ą„ˆą¤®" #: timezones.h:766 msgid "Europe/Minsk" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤®ą¤æą¤‚ą¤øą„ą¤•" #: timezones.h:767 msgid "Europe/Monaco" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤®ą„‹ą¤Øą„…ą¤•ą„‹" #: timezones.h:768 msgid "Europe/Moscow" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤®ą„‰ą¤øą„ą¤•ą„‹" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "ą¤®ą„‰ą¤øą„ą¤•ą„‹+01 - ą¤Ŗą¤¶ą„ą¤šą¤æą¤® ą¤°ą¤¶ą„€ą¤Æą¤¾" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤Øą¤æą¤•ą„‹ą¤øą¤æą¤Æą¤¾" #: timezones.h:772 msgid "Europe/Oslo" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤“ą¤øą¤²ą„‹" #: timezones.h:773 msgid "Europe/Paris" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤Ŗą„…ą¤°ą¤æą¤ø" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤Ŗą„‰ą¤”ą¤—ą„‹ą¤°ą¤æą¤•ą¤¾" #: timezones.h:775 msgid "Europe/Prague" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤Ŗą„ą¤°ą¤¾ą¤—" #: timezones.h:776 msgid "Europe/Riga" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/रिगा" #: timezones.h:777 msgid "Europe/Rome" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤°ą„‹ą¤®" #: timezones.h:778 msgid "Europe/Samara" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/समारा" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "ą¤®ą„‰ą¤øą„ą¤• - समारा, ą¤‰ą¤¦ą„ą¤®ą„ą¤°ą„ą¤¤ą„€ą¤Æą¤¾" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤øą„…ą¤Ø_ą¤®ą¤°ą„€ą¤Øą„‹" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤øą¤°ą¤¾ą¤œą„‡ą¤µą„‹" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤øą¤æą¤®ą¤«ą„‡ą¤°ą„‹ą¤Ŗą„‹ą¤²" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "ą¤øą„‡ą¤‚ą¤Ÿą„ą¤°ą¤² ą¤•ą„ą¤°ą¤æą¤®ą„‡" #: timezones.h:786 msgid "Europe/Skopje" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤øą„ą¤•ą„‹ą¤Ŗą„ą¤œą„‡" #: timezones.h:787 msgid "Europe/Sofia" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤øą„‹ą¤«ą¤æą¤Æą¤¾" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤øą„ą¤Ÿą„‰ą¤•ą¤¹ą„‹ą¤®" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤Ÿą„…ą¤²ą„€ą¤Ø" #: timezones.h:790 msgid "Europe/Tirane" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¤ą¤æą¤°ą„‡ą¤Ø" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¤ą¤æą¤°ą¤øą¤Ŗą„‹ą¤²" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤‰ą¤œą„ą¤—ą„‹ą¤°ą¤¾ą¤”" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "ą¤°ą„‚ą¤„ą„‡ą¤Øą„€ą¤Æą¤¾" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤µą¤¾ą¤”ą„‚ą¤œ" #: timezones.h:796 msgid "Europe/Vatican" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤µą„…ą¤Ÿą„€ą¤•ą„‡ą¤Ø" #: timezones.h:797 msgid "Europe/Vienna" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤µą¤æą¤Æą„‡ą¤Øą¤¾" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/विलनियस" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤µą„‹ą¤²ą„ą¤—ą„‹ą¤—ą„ą¤°ą¤¾ą¤”" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "ą¤®ą„‰ą¤øą„ą¤•+00 - ą¤•ą¤¾ą¤øą„ą¤Ŗą„€ą¤Æą¤Ø ą¤øą„€" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤µą¤¾ą¤°ą¤øą„‹" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤œą„‡ą¤—ą¤°ą„€ą¤¬" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤œą¤Ŗą„‹ą¤°ą„‹ą¤ą¤¾ą¤ˆ" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "ą¤ą¤¾ą¤Ŗą„‹ą¤°ą„‹ą¤ą„ą¤Æą„‡, ą¤ ą¤²ą„ą¤—ą¤¾ą¤‚ą¤øą„ą¤• / ą¤ą¤¾ą¤Ŗą„‹ą¤°ą¤æą¤ą„€ą¤Æą¤¾, ą¤ ą¤²ą„ą¤¹ą¤¾ą¤‚ą¤øą„ą¤•" #: timezones.h:807 msgid "Europe/Zurich" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤œą„ą¤Æą„‚ą¤°ą¤æą¤–" #: timezones.h:808 msgid "Factory" msgstr "ą¤«ą„…ą¤•ą„ą¤Ÿą¤°ą„€" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-आइर" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "ą¤—ą„ą¤°ą„€ą¤Øą¤µą¤æą¤š" #: timezones.h:816 msgid "Hongkong" msgstr "हाँगकाँग" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "आइसलँऔ" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "इंऔियन/ą¤…ą¤‚ą¤¤ą¤¾ą¤Øą¤¾ą¤Øą¤°ą¤æą¤µą„‹" #: timezones.h:820 msgid "Indian/Chagos" msgstr "इंऔियन/ą¤šą¤¾ą¤—ą„‹ą¤ø" #: timezones.h:821 msgid "Indian/Christmas" msgstr "इंऔियन/ą¤–ą„ą¤°ą¤æą¤øą¤®ą¤ø" #: timezones.h:822 msgid "Indian/Cocos" msgstr "इंऔियन/ą¤•ą„‹ą¤•ą„‹ą¤ø" #: timezones.h:823 msgid "Indian/Comoro" msgstr "इंऔियन/ą¤•ą„‹ą¤®ą„‹ą¤°ą„‹" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "इंऔियन/करगलन" #: timezones.h:825 msgid "Indian/Mahe" msgstr "इंऔियन/ą¤®ą¤¾ą¤¹ą„‡" #: timezones.h:826 msgid "Indian/Maldives" msgstr "इंऔियन/ą¤®ą¤¾ą¤²ą¤¦ą„€ą¤µ" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "इंऔियन/ą¤®ą„‰ą¤°ą„€ą¤¶ą¤ø" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "इंऔियन/ą¤®ą¤¾ą¤Æą„‹ą¤Ÿą„‡" #: timezones.h:829 msgid "Indian/Reunion" msgstr "इंऔियन/ą¤°ą¤æą¤Æą„‚ą¤Øą¤æą¤Æą¤Ø" #: timezones.h:830 msgid "Iran" msgstr "इरान" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "ą¤‡ą¤øą„ą¤°ą¤¾ą¤‡ą¤²" #: timezones.h:833 msgid "Jamaica" msgstr "ą¤œą¤®ą„ˆą¤•ą¤¾" #: timezones.h:834 msgid "Japan" msgstr "जपान" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "ą¤•ą„ą¤µą¤¾ą¤œą¤¾ą¤²ą¤æą¤Ø" #: timezones.h:836 msgid "Libya" msgstr "ą¤²ą„€ą¤¬ą¤æą¤Æą¤¾" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "ą¤®ą„‡ą¤•ą„ą¤ą¤æą¤•ą„‹/ą¤¬ą¤œą¤Øą„‹ą¤°ą„ą¤Ÿ" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "ą¤®ą„‡ą¤•ą„ą¤ą¤æą¤•ą„‹/ą¤¬ą¤œą¤¾ą¤øą„ą¤°" #: timezones.h:840 msgid "Mexico/General" msgstr "ą¤®ą„‡ą¤•ą„ą¤ą¤æą¤•ą„‹/जनरल" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "ą¤®ą¤æą¤”ą¤ˆą¤øą„ą¤Ÿ/रियाद87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "ą¤®ą¤æą¤”ą¤ˆą¤øą„ą¤Ÿ/रियाद88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "ą¤®ą¤æą¤”ą¤ˆą¤øą„ą¤Ÿ/रियाद89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "ą¤Øą¤µą¤œą„‹" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤ą¤Ŗą¤æą¤Æą¤¾" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ऑकलँऔ" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/चाऄम" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "छाऄम ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤›ą„‚ą¤•" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "ą¤›ą„‚ą¤• (ą¤Ÿą„ą¤°ą„‚ą¤•) व ą¤Æą„…ą¤Ŗ" #: timezones.h:859 msgid "Pacific/Easter" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤‡ą¤øą„ą¤Ÿą¤°" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "ą¤‡ą¤øą„ą¤Ÿą¤° ą¤¦ą„ą¤µą„€ą¤Ŗ & साला वाय ą¤—ą„‹ą¤®ą„‡ą¤œą„" #: timezones.h:862 msgid "Pacific/Efate" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤‡ą¤«ą„‡ą¤Ÿ" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤‡ą¤Øą¤”ą¤°ą¤¬ą¤°ą„€" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "ą¤«ą¤æą¤Øą„€ą¤•ą„ą¤øą„ ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤«ą¤•ą¤¾ą¤“ą¤«ą„‹" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤«ą¤æą¤œą„€" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤«ą„ą¤Øą¤¾ą¤«ą„ą¤Ÿą„€" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤—ą¤²ą¤Ŗą¤—ą„‹ą¤ø" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "ą¤—ą¤¾ą¤²ą¤¾ą¤Ŗą¤¾ą¤—ą„‹ą¤øą„ ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤—ą„‡ą¤®ą„ą¤¬ą¤æą¤Æą¤°" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "ą¤—ą„…ą¤®ą„ą¤¬ą„ˆą¤° ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤—ą„ą¤µą¤¾ą¤¦ą¤²ą¤•ą¤Øą¤²" #: timezones.h:876 msgid "Pacific/Guam" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤—ą„ą¤†ą¤®" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤¹ą„‹ą¤Øą„‹ą¤²ą„‚ą¤²ą„‚" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "हवाई" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤œą„‰ą¤Øą¤øą„ą¤Ÿą¤Ø" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "ą¤œą„‰ą¤Øą¤øą„ą¤Ÿą„‹ą¤Ø ą¤ą¤Ÿą„‹ą¤²ą„ą¤²" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "ą¤Ŗą¤øą„€ą¤«ą¤æą¤•/ą¤•ą¤æą¤°ą„€ą¤¤ą¤æą¤®ą¤¤ą¤æ" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "ą¤²ą„€ą¤Øą„‡ ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤•ą„‹ą¤øą„ą¤°ą„‡" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "ą¤•ą„‹ą¤øą„ą¤°ą„‡" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤•ą„ą¤µą¤¾ą¤œą¤¾ą¤²ą„‡ą¤Ø" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤®ą¤œą„‚ą¤°ą„‹" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤®ą¤¾ą¤°ą„ą¤•ą¤øą¤¾ą¤ø" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "ą¤®ą¤¾ą¤°ą„ą¤•ą„ą¤Æą„‚ą¤øą¤¾ą¤ø ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:898 msgid "Pacific/Midway" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤®ą¤æą¤”ą¤µą„‡" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "ą¤®ą¤æą¤”ą¤µą„‡ ą¤†ą¤Æą¤²ą¤ą¤”ą¤øą„" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤Øą„‹ą¤°ą„" #: timezones.h:902 msgid "Pacific/Niue" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤Øą„€ą¤Æą„‚" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤Øą¤¾ą¤°ą¤«ą„‹ą¤•" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/नामिया" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤Ŗą„…ą¤—ą„‹_ą¤Ŗą„…ą¤—ą„‹" #: timezones.h:906 msgid "Pacific/Palau" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/पलाउ" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤Ŗą¤æą¤Ÿą¤•ą„‡ą¤°ą„€ą¤Ø" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤Ŗą„‹ą¤Øą„ą¤Ŗą„ˆ" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "ą¤Ŗą„‹ą¤Øą„ą¤Ŗą„ˆ (ą¤Ŗą„‹ą¤Øą„ą¤Ŗą„‡)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤Ŗą„‹ą¤Øą¤¾ą¤Ŗą„‡" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤Ŗą„‹ą¤°ą„ą¤Ÿ_ą¤®ą„‹ą¤°ą„ą¤øą¤¬ą„€" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤°ą¤°ą„‹ą¤¤ą¤‚ą¤—ą¤¾" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤øą„ˆą¤Ŗą„‡ą¤Ø" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤øą¤®ą„‹ą¤†" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤¤ą¤¾ą¤¹ą¤æą¤Ÿą„€" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "ą¤øą„‹ą¤øą¤¾ą¤Æą¤Ÿą„€ ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/तारावा" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "ą¤—ą¤æą¤²ą„ą¤¬ą¤°ą„ą¤Ÿ ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤Ÿą¤‚ą¤—ą¤Ÿą¤Ŗą„‚" #: timezones.h:923 msgid "Pacific/Truk" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤¤ą„ą¤°ą„ą¤•" #: timezones.h:924 msgid "Pacific/Wake" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/ą¤µą„‡ą¤•" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "ą¤µą„‡ą¤• ą¤¦ą„ą¤µą„€ą¤Ŗ" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą„€ą¤•/ą¤µą¤¾ą¤²ą„€ą¤øą„" #: timezones.h:928 msgid "Pacific/Yap" msgstr "ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•/याप" #: timezones.h:929 msgid "Poland" msgstr "ą¤Ŗą„‹ą¤²ą¤‚ą¤”" #: timezones.h:930 msgid "Portugal" msgstr "ą¤Ŗą„ą¤°ą„ą¤¤ą¤—ą¤¾ą¤²" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "ą¤øą¤æą¤‚ą¤—ą¤¾ą¤Ŗą„ą¤°" #: timezones.h:937 msgid "Turkey" msgstr "ą¤¤ą„ą¤°ą„ą¤•ą„€" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤²" #: timezones.h:940 msgid "US/Alaska" msgstr "US/ą¤…ą¤²ą¤¾ą¤øą„ą¤•ą¤¾" #: timezones.h:941 msgid "US/Aleutian" msgstr "US/ą¤ą¤²ą„ą¤Æą„‚ą¤¶ą¤Ø" #: timezones.h:942 msgid "US/Arizona" msgstr "US/ą¤ą¤°ą„€ą¤œą„‹ą¤Øą¤¾" #: timezones.h:943 msgid "US/Central" msgstr "US/ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ" #: timezones.h:944 msgid "US/Eastern" msgstr "US/ą¤Ŗą„‚ą¤°ą„ą¤µą„€ą¤Æ" #: timezones.h:945 msgid "US/East-Indiana" msgstr "US/ą¤Ŗą„‚ą¤°ą„ą¤µ-इंऔियाना" #: timezones.h:946 msgid "US/Hawaii" msgstr "US/हवाई" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "US/इंऔियाना-ą¤øą„ą¤Ÿą¤¾ą¤°ą„ą¤•" #: timezones.h:948 msgid "US/Michigan" msgstr "US/मिसिगन" #: timezones.h:949 msgid "US/Mountain" msgstr "US/ą¤®ą¤¾ą¤‰ą¤Øą„ą¤Ÿą„‡ą¤Ø" #: timezones.h:950 msgid "US/Pacific" msgstr "US/ą¤Ŗą„…ą¤øą„€ą¤«ą¤æą¤•" #: timezones.h:951 msgid "US/Samoa" msgstr "US/ą¤øą¤®ą„‹ą¤µą¤¾" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "ą¤ą„ą¤²ą„‚" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/hr.po0000664000175000017500000016717314632072346023707 0ustar fabiofabio# Translation of timezones to Croatian # Copyright (C) Croatian team # Translators: Dario Lah <>,Robert Sedak ,Vedran Vyroubal , msgid "" msgstr "" "Project-Id-Version: timezones 0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2007-06-04 23:41+0100\n" "Last-Translator: Renato Pavicic \n" "Language-Team: Croatian Reanto Pavicic \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: TransDict server\n" "X-Poedit-Language: Croatian\n" "X-Poedit-Country: CROATIA\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Afrika/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Afrika/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Afrika/Adis_Ababa" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Afrika/Algiers" #: timezones.h:5 #, fuzzy msgid "Africa/Asmara" msgstr "Afrika/Asmera" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Afrika/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Afrika/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Afrika/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Afrika/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Afrika/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Afrika/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Afrika/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Afrika/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Afrika/Kairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Afrika/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Afrika/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Afrika/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Afrika/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Afrika/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Afrika/Djibouti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Afrika/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Afrika/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Afrika/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Afrika/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Afrika/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Afrika/Johannesbur" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Afrika/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Afrika/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Afrika/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Afrika/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Afrika/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Afrika/Liberville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Afrika/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Afrika/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Afrika/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Afrika/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Afrika/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Afrika/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Afrika/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Afrika/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Afrika/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Afrika/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Afrika/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Afrika/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Afrika/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Afrika/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Afrika/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Afrika/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Afrika/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Afrika/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Afrika/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Afrika/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Afrika/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "Amerika/Adak" #. comment for time zone America/Adak #: timezones.h:62 #, fuzzy msgid "Aleutian Islands" msgstr "Australija/Queensland" #: timezones.h:63 msgid "America/Anchorage" msgstr "Amerika/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 #, fuzzy msgid "Alaska Time" msgstr "SAD/Aljaska" #: timezones.h:66 msgid "America/Anguilla" msgstr "Amerika/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "Amerika/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "Amerika/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Amerika/Argentina/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Amerika/Argentina/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Amerika/Argentina/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Amerika/Argentina/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Amerika/Argentina/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Amerika/Argentina/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Amerika/Argentina/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Amerika/Argentina/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 #, fuzzy msgid "America/Argentina/Salta" msgstr "Amerika/Argentina/San_Juan" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Amerika/Argentina/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 #, fuzzy msgid "America/Argentina/San_Luis" msgstr "Amerika/Argentina/San_Juan" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Amerika/Argentina/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Amerika/Argentina/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "Amerika/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "Amerika/Asuncion" #: timezones.h:110 msgid "America/Atikokan" msgstr "Amerika/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "Amerika/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "Amerika/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "Amerika/Bahia" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "Amerika/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "Amerika/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "Amerika/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "Amerika/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Amerika/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "Amerika/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "Amerika/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Amerika/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Amerika/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "Amerika/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "Amerika/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "Amerika/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "Amerika/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "Amerika/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "Amerika/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "Amerika/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "SAD/SrediÅ”nje" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Amerika/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "Amerika/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "Amerika/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Amerika/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Amerika/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "Amerika/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Amerika/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "Amerika/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Amerika/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "Amerika/Denver" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "SAD/Planine" #: timezones.h:174 msgid "America/Detroit" msgstr "Amerika/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "Amerika/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "Amerika/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "Amerika/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Amerika/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "Amerika/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Amerika/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Amerika/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Amerika/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "Amerika/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Amerika/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Amerika/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "Amerika/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Amerika/Guadaloupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "Amerika/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Amerika/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "Amerika/Guyana" #: timezones.h:207 msgid "America/Halifax" msgstr "Amerika/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "Amerika/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Amerika/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Amerika/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Amerika/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Amerika/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "Amerika/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Amerika/Indianapolis" #: timezones.h:227 #, fuzzy msgid "America/Indiana/Tell_City" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "Amerika/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 #, fuzzy msgid "America/Indiana/Winamac" msgstr "Amerika/Indiana/Vincennes" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "Amerika/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Amerika/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "Amerika/Jamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "Amerika/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "Amerika/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Amerika/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 #, fuzzy msgid "Eastern Time - Kentucky - Louisville area" msgstr "Amerika/Kentucky/Louisville" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Amerika/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Amerika/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "Amerika/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "Amerika/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Amerika/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 #, fuzzy msgid "Pacific Time" msgstr "Tihi_ocean/Niue" #: timezones.h:262 msgid "America/Louisville" msgstr "Amerika/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "Amerika/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "Amerika/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "Amerika/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 #, fuzzy msgid "America/Marigot" msgstr "Amerika/Maceio" #: timezones.h:271 msgid "America/Martinique" msgstr "Amerika/Martinique" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "Amerika/Manaus" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Amerika/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "Amerika/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "Amerika/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "Amerika/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Amerika/Mexico_City" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "Amerika/Miquelon" #: timezones.h:289 msgid "America/Moncton" msgstr "Amerika/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "Amerika/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "Amerika/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "Amerika/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "Amerika/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "Amerika/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "Amerika/New_York" #. comment for time zone America/New_York #: timezones.h:303 #, fuzzy msgid "Eastern Time" msgstr "SAD/Istočno" #: timezones.h:304 msgid "America/Nipigon" msgstr "Amerika/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "Amerika/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "Amerika/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 #, fuzzy msgid "Atlantic islands" msgstr "Atlantik/Kanari" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Amerika/Sjeverna_Dakota/Center" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "Amerika/Sjeverna_Dakota/New_Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "Amerika/Managua" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "Amerika/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Amerika/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Amerika/Paramari" #: timezones.h:327 msgid "America/Phoenix" msgstr "Amerika/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Amerika/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Amerika/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Amerika/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Amerika/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Amerika/Puerto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Amerika/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Amerika/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "Amerika/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "Amerika/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 #, fuzzy msgid "America/Resolute" msgstr "Amerika/Belem" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Amerika/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "Amerika/Rosario" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "Amerika/Santiago" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 #, fuzzy msgid "America/Santarem" msgstr "Amerika/Santiago" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "Amerika/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Amerika/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Amerika/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Amerika/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "Amerika/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 #, fuzzy msgid "America/St_Barthelemy" msgstr "Amerika/Belem" #: timezones.h:376 msgid "America/St_Johns" msgstr "Amerika/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Amerika/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Amerika/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Amerika/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Amerika/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Amerika/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Amerika/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "Amerika/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Amerika/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "Amerika/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "Amerika/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "Amerika/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "Amerika/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "Amerika/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Amerika/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Amerika/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "Amerika/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Amerika/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Antarktika/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Antarktika/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Antarktika/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "Antarktika/McMurdo" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Antarktika/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Antarktika/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Antarktika/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Antarktika/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antarktika/South_Pole" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Antarktika/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Antarktika/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Arktik/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Azija/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Azija/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Azija/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Azija/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Azija/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Azija/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Azija/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Azija/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Azija/Bagdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Azija/Bahrain" #: timezones.h:468 msgid "Asia/Baku" msgstr "Azija/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Azija/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Azija/Bejrut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Azija/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Azija/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Azija/Kalkuta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Azija/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Azija/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "Azija/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Azija/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Azija/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Azija/Damascus" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Azija/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Azija/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Azija/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Azija/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Azija/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Azija/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 #, fuzzy msgid "Asia/Ho_Chi_Minh" msgstr "Azija/Chongqing" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Azija/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Azija/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Azija/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Azija/Istanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Azija/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Azija/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Azija/Jeruzalem" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Azija/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Azija/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Azija/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Azija/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 #, fuzzy msgid "Asia/Kathmandu" msgstr "Azija/Katmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Azija/Katmandu" #: timezones.h:518 #, fuzzy msgid "Asia/Kolkata" msgstr "Azija/Jakarta" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Azija/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Azija/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Azija/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Azija/Kuvajt" #: timezones.h:529 msgid "Asia/Macao" msgstr "Azija/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Azija/Macau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Azija/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Azija/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "Azija/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Azija/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Azija/Nicosia" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "Azija/Irkutsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "Azija/Novosibirsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Azija/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 #, fuzzy msgid "Moscow+03 - Novosibirsk" msgstr "Azija/Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Azija/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "Azija/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Azija/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Azija/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Azija/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Azija/Qatar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Azija/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Azija/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Azija/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Azija/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Azija/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Azija/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Azija/Saigon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Azija/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Azija/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Azija/Seul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Azija/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "Azija/Singapore" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Azija/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Azija/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Azija/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Azija/Tehran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Azija/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Azija/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Azija/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Azija/Tokyo" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Azija/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Azija/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Azija/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Azija/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Azija/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Azija/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Azija/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Azija/Yekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Azija/Yerevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlantik/Azores" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlantik/Bermuda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlantik/Kanari" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlantik/Cape_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlantik/Faeroe" #: timezones.h:616 #, fuzzy msgid "Atlantic/Faroe" msgstr "Atlantik/Faeroe" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlantik/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlantik/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlantik/Reykjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlantik/South_Georgia" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlantik/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlantik/Sv._Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "Australija/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Australija/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 #, fuzzy msgid "South Australia" msgstr "Australija/ACT" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Australija/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Australija/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Australija/Canberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "Australija/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Australija/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 #, fuzzy msgid "Australia/Eucla" msgstr "Australija/Queensland" #. comment for time zone Australia/Eucla #: timezones.h:644 #, fuzzy msgid "Western Australia - Eucla area" msgstr "Australija/Queensland" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Australija/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "Australija/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Australija/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Australija/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Australija/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 #, fuzzy msgid "Victoria" msgstr "Australija/Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "Australija/Sjever" #: timezones.h:659 msgid "Australia/NSW" msgstr "Australija/New South Wels" #: timezones.h:660 msgid "Australia/Perth" msgstr "Australija/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Australija/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "Australija/Jug" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Australija/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Australija/Tasmania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Australija/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "Australija/Zapad" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Australija/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brazil/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brazil/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brazil/Istok" #: timezones.h:675 msgid "Brazil/West" msgstr "Brazil/Zapad" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Kanada/Atlantik" #: timezones.h:677 msgid "Canada/Central" msgstr "Kanada/SrediÅ”nje" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Kanada/Istočna" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Kanada/Istok-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Kanada/Planine" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Kanada/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Kanada/Tihi_ocean" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Kanada/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Kanada/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Čile/Kontinentalno" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Čile/Istočni otoci" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Kuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Egipat" #: timezones.h:692 msgid "Eire" msgstr "Irska" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Ostalo/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Ostalo/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Ostalo/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Ostalo/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Ostalo/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Ostalo/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Ostalo/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Ostalo/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Ostalo/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Ostalo/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Ostalo/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Ostalo/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Ostalo/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Ostalo/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Ostalo/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Ostalo/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Ostalo/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Ostalo/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Ostalo/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Ostalo/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Ostalo/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Ostalo/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Ostalo/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Ostalo/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Ostalo/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Ostalo/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Ostalo/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Ostalo/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Ostalo/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Ostalo/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Ostalo/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Ostalo/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Ostalo/Univerzalno" #: timezones.h:728 msgid "Etc/UTC" msgstr "Ostalo/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Ostalo/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Europa/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Europa/Andora" #: timezones.h:732 msgid "Europe/Athens" msgstr "Europa/Atena" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Europa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Europa/Beograd" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Europa/Berlin" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Europa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Europa/Bruxelles" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Europa/BukureÅ”t" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Europa/BudimpeÅ”ta" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Europa/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Europa/Kopenhagen" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Europa/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Europa/Gibraltar" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Europa/Guernsey" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Europa/Helsinki" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Europa/Isle_of_Man" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Europa/Istanbul" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Europa/Jersey" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Europa/Kalinjingrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Europa/Kijev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Europa/Lisabon" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Europa/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Europa/London" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Europa/Luxemburg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Europa/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Europa/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Europa/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Europa/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Europa/Monaco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Europa/Moskva" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Europa/Nikozija" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Europa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Europa/Pariz" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Europa/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Europa/Prag" #: timezones.h:776 msgid "Europe/Riga" msgstr "Europa/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Europa/Rim" #: timezones.h:778 msgid "Europe/Samara" msgstr "Europa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Europa/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Europa/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Europa/Sevastopolj" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Europa/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Europa/Sofija" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Europa/Stockholm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Europa/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Europa/Tirana" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Europa/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Europa/Užgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Europa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Europa/Vatikan" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Europa/Beč" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Europa/Vilnius" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Europa/Volgograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Europa/VarÅ”ava" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Europa/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Europa/Zaporožje" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Europa/Zurich" #: timezones.h:808 msgid "Factory" msgstr "Izvorno" #: timezones.h:809 msgid "GB" msgstr "VB" #: timezones.h:810 msgid "GB-Eire" msgstr "VB-Irska" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hong_Kong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Island" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Indijski_ocean/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Indijski_ocean/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Indijski_ocean/Božićni_otoci" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Indijski_ocean/Kokosovi otoci" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Indijski_ocean/Komoro otoci" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Indijski_ocean/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Indijski_ocean/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Indijski_ocean/Maldivi" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Indijski_ocean/Mauricijus" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Indijski_ocean/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Indijski_ocean/Reunion" #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "Izrael" #: timezones.h:833 msgid "Jamaica" msgstr "Jamajka" #: timezones.h:834 msgid "Japan" msgstr "Japan" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libija" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Meksiko/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Meksiko/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Meksiko/General" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Srednji Istok/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Srednji Istok/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Srednji Istok/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Tihi_ocean/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Tihi_ocean/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Tihi_ocean/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 #, fuzzy msgid "Chatham Islands" msgstr "Čile/Istočni otoci" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "Tihi_ocean/Truk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 msgid "Pacific/Easter" msgstr "Tihi_ocean/Easter" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Tihi_ocean/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Tihi_ocean/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Tihi_ocean/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Tihi_ocean/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Tihi_ocean/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Tihi_ocean/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Tihi_ocean/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Tihi_ocean/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Tihi_ocean/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Tihi_ocean/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 #, fuzzy msgid "Hawaii" msgstr "SAD/Havaji" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Tihi_ocean/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Tihi_ocean/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Tihi_ocean/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 #, fuzzy msgid "Kosrae" msgstr "Izrael" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Tihi_ocean/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Tihi_ocean/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Tihi_ocean/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Tihi_ocean/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Tihi_ocean/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Tihi_ocean/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Tihi_ocean/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Tihi_ocean/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Tihi_ocean/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Tihi_ocean/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Tihi_ocean/Pitcairn" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "Tihi_ocean/Ponape" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Tihi_ocean/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Tihi_ocean/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Tihi_ocean/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Tihi_ocean/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Tihi_ocean/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Tihi_ocean/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Tihi_ocean/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 #, fuzzy msgid "Gilbert Islands" msgstr "Čile/Istočni otoci" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Tihi_ocean/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Tihi_ocean/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Tihi_ocean/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Tihi_ocean/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Tihi_ocean/Yap" #: timezones.h:929 msgid "Poland" msgstr "Poljska" #: timezones.h:930 msgid "Portugal" msgstr "Portugal" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "NR Kina" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "Republika Kina" #: timezones.h:935 msgid "ROK" msgstr "Republika Koreja" #: timezones.h:936 msgid "Singapore" msgstr "Singapur" #: timezones.h:937 msgid "Turkey" msgstr "Turska" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Univerzalno" #: timezones.h:940 msgid "US/Alaska" msgstr "SAD/Aljaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "SAD/Aleuti" #: timezones.h:942 msgid "US/Arizona" msgstr "SAD/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "SAD/SrediÅ”nje" #: timezones.h:944 msgid "US/Eastern" msgstr "SAD/Istočno" #: timezones.h:945 msgid "US/East-Indiana" msgstr "SAD/Istok-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "SAD/Havaji" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "SAD/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "SAD/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "SAD/Planine" #: timezones.h:950 msgid "US/Pacific" msgstr "SAD/Tihi_ocean" #: timezones.h:951 msgid "US/Samoa" msgstr "SAD/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" #~ msgid "US/Pacific-New" #~ msgstr "SAD/Tihi_ocean-Novo" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/ro.po0000664000175000017500000016601114632072346023704 0ustar fabiofabio# translation of ro.po to # Romanian translation of timezone # # # Cristian Gafton , 2004. # Răzvan Corneliu C.R. VILT , 2006. # Alexandru Szasz , 2006. # Mircea Daniel , 2007. msgid "" msgstr "" "Project-Id-Version: ro\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2007-02-05 21:44+0200\n" "Last-Translator: Mircea Daniel \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Africa/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Africa/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Africa/Addis_Ababa" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Africa/Algiers" #: timezones.h:5 #, fuzzy msgid "Africa/Asmara" msgstr "Africa/Asmera" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Africa/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Africa/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Africa/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Africa/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Africa/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Africa/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Africa/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Africa/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Africa/Cairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Africa/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Africa/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Africa/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Africa/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Africa/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Africa/Djibouti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Africa/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Africa/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Africa/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Africa/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Africa/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Africa/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Africa/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Africa/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Africa/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Africa/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Africa/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Africa/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Africa/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Africa/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Africa/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Africa/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Africa/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Africa/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Africa/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Africa/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Africa/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Africa/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Africa/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Africa/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Africa/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Africa/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Africa/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Africa/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Africa/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Africa/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Africa/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Africa/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Africa/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "America/Adak" #. comment for time zone America/Adak #: timezones.h:62 #, fuzzy msgid "Aleutian Islands" msgstr "Australia/Queensland" #: timezones.h:63 msgid "America/Anchorage" msgstr "America/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 #, fuzzy msgid "Alaska Time" msgstr "US/Alaska" #: timezones.h:66 msgid "America/Anguilla" msgstr "America/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "America/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "America/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "America/Argentina/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "America/Argentina/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "America/Argentina/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "America/Argentina/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "America/Argentina/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "America/Argentina/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "America/Argentina/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "America/Argentina/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 #, fuzzy msgid "America/Argentina/Salta" msgstr "America/Argentina/San_Juan" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "America/Argentina/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 #, fuzzy msgid "America/Argentina/San_Luis" msgstr "America/Argentina/San_Juan" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "America/Argentina/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "America/Argentina/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "America/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "America/Asuncion" #: timezones.h:110 msgid "America/Atikokan" msgstr "America/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "America/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "America/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "America/Bahia" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "America/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "America/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "America/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "America/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "America/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "America/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "America/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "America/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "America/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "America/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "America/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "America/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "America/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "America/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "America/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "America/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "US/Central" #: timezones.h:152 msgid "America/Chihuahua" msgstr "America/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "America/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "America/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "America/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "America/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "America/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "America/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "America/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "America/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "America/Denver" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "US/Mountain" #: timezones.h:174 msgid "America/Detroit" msgstr "America/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "America/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "America/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "America/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "America/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "America/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "America/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "America/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "America/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "America/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "America/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "America/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "America/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "America/Guadeloupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "America/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "America/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "America/Guyana" #: timezones.h:207 msgid "America/Halifax" msgstr "America/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "America/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "America/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "America/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "America/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "America/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "America/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "America/Indianapolis" #: timezones.h:227 #, fuzzy msgid "America/Indiana/Tell_City" msgstr "America/Indiana/Vevay" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "America/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "America/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 #, fuzzy msgid "America/Indiana/Winamac" msgstr "America/Indiana/Vincennes" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "America/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "America/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "America/Jamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "America/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "America/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "America/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 #, fuzzy msgid "Eastern Time - Kentucky - Louisville area" msgstr "America/Kentucky/Louisville" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "America/Kentucky/Montevideo" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "America/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "America/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "America/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "America/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 #, fuzzy msgid "Pacific Time" msgstr "Pacific/Niue" #: timezones.h:262 msgid "America/Louisville" msgstr "America/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "America/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "America/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "America/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 #, fuzzy msgid "America/Marigot" msgstr "America/Maceio" #: timezones.h:271 msgid "America/Martinique" msgstr "America/Martinique" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "America/Manaus" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "America/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "America/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "America/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "America/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "America/Mexico_City" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "America/Miquelon" #: timezones.h:289 msgid "America/Moncton" msgstr "America/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "America/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "America/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "America/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "America/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "America/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "America/New_York" #. comment for time zone America/New_York #: timezones.h:303 #, fuzzy msgid "Eastern Time" msgstr "US/Eastern" #: timezones.h:304 msgid "America/Nipigon" msgstr "America/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "America/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "America/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 #, fuzzy msgid "Atlantic islands" msgstr "Atlantic/Canary" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "America/North_Dakota/Center" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "America/North_Dakota/New_Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "America/Managua" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "America/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "America/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "America/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "America/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "America/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "America/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "America/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "America/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "America/Puerto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "America/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "America/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "America/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "America/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 #, fuzzy msgid "America/Resolute" msgstr "America/Belem" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "America/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "America/Rosario" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "America/Santiago" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 #, fuzzy msgid "America/Santarem" msgstr "America/Santiago" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "America/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "America/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "America/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "America/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "America/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 #, fuzzy msgid "America/St_Barthelemy" msgstr "America/Belem" #: timezones.h:376 msgid "America/St_Johns" msgstr "America/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "America/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "America/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "America/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "America/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "America/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "America/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "America/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "America/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "America/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "America/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "America/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "America/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "America/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "America/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "America/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "America/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "America/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Antarctica/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Antarctica/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Antarctica/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "Antarctica/McMurdo" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Antarctica/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Antarctica/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Antarctica/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Antarctica/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antarctica/South_Pole" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Antarctica/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Antarctica/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Arctic/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Asia/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Asia/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Asia/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Asia/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Asia/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Asia/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Asia/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Asia/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Asia/Baghdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Asia/Bahrain" #: timezones.h:468 msgid "Asia/Baku" msgstr "Asia/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Asia/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Asia/Beirut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Asia/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Asia/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Asia/Calcutta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Asia/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Asia/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "Asia/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Asia/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Asia/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Asia/Damascus" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Asia/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Asia/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Asia/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Asia/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Asia/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Asia/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 #, fuzzy msgid "Asia/Ho_Chi_Minh" msgstr "Asia/Chongqing" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Asia/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Asia/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Asia/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Asia/Istanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Asia/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Asia/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Asia/Jerusalem" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Asia/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Asia/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Asia/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Asia/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 #, fuzzy msgid "Asia/Kathmandu" msgstr "Asia/Katmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Asia/Katmandu" #: timezones.h:518 #, fuzzy msgid "Asia/Kolkata" msgstr "Asia/Jakarta" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Asia/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Asia/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Asia/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Asia/Kuwait" #: timezones.h:529 msgid "Asia/Macao" msgstr "Asia/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Asia/Macau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Asia/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Asia/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "Asia/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Asia/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Asia/Nicosia" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "Asia/Irkutsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "Asia/Novosibirsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Asia/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 #, fuzzy msgid "Moscow+03 - Novosibirsk" msgstr "Asia/Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Asia/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "Asia/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Asia/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Asia/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Asia/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Asia/Qatar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Asia/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Asia/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Asia/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Asia/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Asia/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Asia/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Asia/Saigon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Asia/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Asia/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Asia/Seoul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Asia/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "Asia/Singapore" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Asia/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Asia/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Asia/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Asia/Tehran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Asia/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Asia/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Asia/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Asia/Tokyo" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Asia/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Asia/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Asia/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Asia/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Asia/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Asia/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Asia/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Asia/Yekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Asia/Yerevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlantic/Azores" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlantic/Bermuda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlantic/Canary" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlantic/Cape_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlantic/Faeroe" #: timezones.h:616 #, fuzzy msgid "Atlantic/Faroe" msgstr "Atlantic/Faeroe" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlantic/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlantic/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlantic/Reykjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlantic/South_Georgia" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlantic/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlantic/St_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "Australia/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Australia/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 #, fuzzy msgid "South Australia" msgstr "Australia/ACT" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Australia/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Australia/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Australia/Canberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "Australia/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Australia/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 #, fuzzy msgid "Australia/Eucla" msgstr "Australia/Queensland" #. comment for time zone Australia/Eucla #: timezones.h:644 #, fuzzy msgid "Western Australia - Eucla area" msgstr "Australia/Queensland" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Australia/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "Australia/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Australia/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Australia/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Australia/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 #, fuzzy msgid "Victoria" msgstr "Australia/Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "Australia/North" #: timezones.h:659 msgid "Australia/NSW" msgstr "Australia/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "Australia/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Australia/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "Australia/South" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Australia/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Australia/Tasmania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Australia/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "Australia/West" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Australia/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brazil/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brazil/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brazil/East" #: timezones.h:675 msgid "Brazil/West" msgstr "Brazil/West" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Canada/Atlantic" #: timezones.h:677 msgid "Canada/Central" msgstr "Canada/Central" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Canada/Eastern" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Canada/East-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Canada/Mountain" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Canada/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Canada/Pacific" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Canada/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Canada/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Chile/Continental" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chile/EasterIsland" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Cuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Egypt" #: timezones.h:692 msgid "Eire" msgstr "Eire" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Europa/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Europa/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Europa/Athens" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Europa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Europa/Belgrad" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Europa/Berlin" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Europa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Europa/Brussels" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Europa/Bucureşti" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Europa/Budapesta" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Europa/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Europa/Copenhagen" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Europa/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Europa/Gibraltar" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Europe/Guernsey" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Europa/Helsinki" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Europe/Isle_of_Man" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Europa/Istanbul" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Europe/Jersey" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Europa/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Europa/Kiev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Europa/Lisabona" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Europa/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Europa/London" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Europa/Luxemburg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Europa/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Europa/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Europa/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Europa/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Europa/Monaco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Europa/Moscova" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Europa/Nicosia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Europa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Europa/Paris" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Europe/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Europa/Prague" #: timezones.h:776 msgid "Europe/Riga" msgstr "Europa/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Europa/Roma" #: timezones.h:778 msgid "Europe/Samara" msgstr "Europa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Europa/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Europa/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Europa/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Europa/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Europa/Sofia" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Europa/Stockholm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Europa/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Europa/Tirane" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Europa/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Europa/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Europa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Europa/Vatican" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Europa/Vienna" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Europa/Vilnius" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Europe/Volgograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Europa/Warsaw" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Europa/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Europa/Zaporozhye" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Europa/Zurich" #: timezones.h:808 msgid "Factory" msgstr "Factory" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Iceland" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Indian/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Indian/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Indian/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Indian/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Indian/Comoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Indian/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Indian/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Indian/Maldives" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Indian/Mauritius" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Indian/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Indian/Reunion" #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "Israel" #: timezones.h:833 msgid "Jamaica" msgstr "Jamaica" #: timezones.h:834 msgid "Japan" msgstr "Japan" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libya" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Mexic/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Mexic/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Mexic/General" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Mideast/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Mideast/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Mideast/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Pacific/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Pacific/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Pacific/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 #, fuzzy msgid "Chatham Islands" msgstr "Chile/EasterIsland" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "Pacific/Truk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 #, fuzzy msgid "Pacific/Easter" msgstr "Pacific/Easter" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Pacific/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Pacific/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Pacific/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Pacific/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Pacific/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Pacific/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Pacific/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Pacific/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Pacific/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Pacific/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 #, fuzzy msgid "Hawaii" msgstr "US/Hawaii" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Pacific/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Pacific/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Pacific/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 #, fuzzy msgid "Kosrae" msgstr "Israel" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Pacific/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Pacific/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Pacific/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Pacific/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Pacific/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Pacific/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Pacific/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Pacific/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Pacific/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Pacific/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Pacific/Pitcairn" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "Pacific/Ponape" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Pacific/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Pacific/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Pacific/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Pacific/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Pacific/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Pacific/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Pacific/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 #, fuzzy msgid "Gilbert Islands" msgstr "Chile/EasterIsland" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Pacific/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Pacific/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Pacific/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Pacific/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Pacific/Yap" #: timezones.h:929 msgid "Poland" msgstr "Poland" #: timezones.h:930 msgid "Portugal" msgstr "Portugal" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapore" #: timezones.h:937 msgid "Turkey" msgstr "Turkey" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "US/Alaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "US/Aleutian" #: timezones.h:942 msgid "US/Arizona" msgstr "US/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "US/Central" #: timezones.h:944 msgid "US/Eastern" msgstr "US/Eastern" #: timezones.h:945 msgid "US/East-Indiana" msgstr "US/East-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "US/Hawaii" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "US/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "US/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "US/Mountain" #: timezones.h:950 msgid "US/Pacific" msgstr "US/Pacific" #: timezones.h:951 msgid "US/Samoa" msgstr "US/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" #~ msgid "US/Pacific-New" #~ msgstr "US/Pacific-New" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/bn.po0000664000175000017500000023226714632072346023672 0ustar fabiofabio# BANGLA TRANSLATION OF TIMEZONES.POT # Copyright (C) 2004 RedHat Inc. # This file is distributed under the same license as the PACKAGE package. # Runa Bhattahcarjee , 2004. # Runa Bhattacharjee , 2006. # msgid "" msgstr "" "Project-Id-Version: bn_IN\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2006-01-17 14:40+0530\n" "Last-Translator: Runa Bhattacharjee \n" "Language-Team: Bangla \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.9.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦…ą¦¬ą¦æą¦œą¦¾ą¦Ø" #: timezones.h:2 msgid "Africa/Accra" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦†ą¦•ą§ą¦°ą¦¾" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/আঔিস_আবাবা" #: timezones.h:4 msgid "Africa/Algiers" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦ą¦²ą¦œą¦æą§Ÿą¦¾ą¦°ą§ą¦ø" #: timezones.h:5 #, fuzzy msgid "Africa/Asmara" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/আসমেরা" #: timezones.h:6 msgid "Africa/Asmera" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/আসমেরা" #: timezones.h:7 msgid "Africa/Bamako" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/বামাকো" #: timezones.h:8 msgid "Africa/Bangui" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦¬ą¦¾ą¦™ą§ą¦—ą§ą¦‡" #: timezones.h:9 msgid "Africa/Banjul" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/বানজুল" #: timezones.h:10 msgid "Africa/Bissau" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/বিসাউ" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦¬ą§ą¦²ą§ą¦Æą¦¾ą¦Øą¦Ÿą¦¾ą§Ÿą¦¾ą¦°" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦¬ą§ą¦°ą¦¾ą¦œą¦¾ą¦­ą¦æą¦²" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/বুজুমবুরা" #: timezones.h:14 msgid "Africa/Cairo" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦•ą¦¾ą§Ÿą¦°ą§‹" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦•ą¦¾ą¦øą¦¾ą¦¬ą§ą¦²ą¦¾ą¦™ą§ą¦•ą¦¾" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦„ą§‡ą¦‰ą¦Ÿą¦¾" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦•ą§‹ą¦Øą¦¾ą¦•ą§ą¦°ą¦æ" #: timezones.h:20 msgid "Africa/Dakar" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ঔাকার" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ঔার_ą¦ą¦ø_সালাম" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/জিবুতি" #: timezones.h:23 msgid "Africa/Douala" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ঔুয়ালা" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦ą¦²_আউইন" #: timezones.h:25 msgid "Africa/Freetown" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦«ą§ą¦°ą¦æą¦Ÿą¦¾ą¦‰ą¦Ø" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦—ą§ą¦Æą¦¾ą¦¬ą¦¾ą¦°ą§‹ą¦Ø" #: timezones.h:27 msgid "Africa/Harare" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/হারারে" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦œą§‹ą¦¹ą¦¾ą¦Øą§‡ą¦øą¦¬ą¦¾ą¦°ą§ą¦—" #: timezones.h:29 msgid "Africa/Kampala" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦•ą¦¾ą¦®ą§ą¦Ŗą¦¾ą¦²ą¦¾" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦–ą¦¾ą¦°ą¦¤ą§Œą¦®" #: timezones.h:31 msgid "Africa/Kigali" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/কিগালি" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/কিনশাসা" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/লেগোস" #: timezones.h:36 msgid "Africa/Libreville" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/লিবারভিল" #: timezones.h:37 msgid "Africa/Lome" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/লোমে" #: timezones.h:38 msgid "Africa/Luanda" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦²ą§ą§Ÿą¦¾ą¦Øą§ą¦”ą¦¾" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦²ą§ą¦¬ą§ą¦®ą§ą¦¬ą¦¾ą¦¶ą¦æ" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/লুসাকা" #: timezones.h:43 msgid "Africa/Malabo" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/মালাবো" #: timezones.h:44 msgid "Africa/Maputo" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/মাপুতো" #: timezones.h:45 msgid "Africa/Maseru" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/মাসেরু" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/আমবাবানে" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/মোগাঔিশু" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦®ą§‹ą¦Øą¦°ą§‹ą¦­ą¦æą§Ÿą¦¾" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦Øą¦¾ą§Ÿą¦°ą§‹ą¦¬ą¦æ" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦†ą¦Øą¦œą¦¾ą¦®ą§‡ą¦Øą¦¾" #: timezones.h:51 msgid "Africa/Niamey" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦Øą¦æą§Ÿą¦¾ą¦®ą§‡" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦Øą§‹ą§Ÿą¦¾ą¦•ą¦¶ą§‹ą¦Ÿ" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦“ą§Ÿą¦¾ą¦—ą¦¾ą¦”ą§ą¦—ą§" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦Ŗą§‹ą¦°ą§ą¦Ÿą§‹-নোভো" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/সাও_ą¦Ÿą§‹ą¦®ą§‡" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦Ÿą¦æą¦®ą§ą¦¬ą¦¾ą¦•ą¦Ÿą§" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦Ÿą§ą¦°ą¦æą¦Ŗą§‹ą¦²ą¦æ" #: timezones.h:58 msgid "Africa/Tunis" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦Ÿą¦æą¦‰ą¦Øą¦æą¦ø" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦­ą¦æą¦Øą§ą¦Ÿą¦¹ą§ą¦•" #: timezones.h:60 msgid "America/Adak" msgstr "আমেরিকা/আদাক" #. comment for time zone America/Adak #: timezones.h:62 #, fuzzy msgid "Aleutian Islands" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦•ą§ą¦‡ą¦Øą§ą¦øą¦²ą§ą¦Æą¦¾ą¦Øą§ą¦”" #: timezones.h:63 msgid "America/Anchorage" msgstr "আমেরিকা/ą¦…ą§ą¦Æą¦¾ą¦™ą§ą¦•ą§‹ą¦°ą§‡ą¦œ" #. comment for time zone America/Anchorage #: timezones.h:65 #, fuzzy msgid "Alaska Time" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦†ą¦²ą¦¾ą¦øą§ą¦•ą¦¾" #: timezones.h:66 msgid "America/Anguilla" msgstr "আমেরিকা/ą¦…ą§ą¦Æą¦¾ą¦™ą§ą¦—ą¦æą¦²ą¦¾" #: timezones.h:67 msgid "America/Antigua" msgstr "আমেরিকা/ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦æą¦—ą¦¾" #: timezones.h:68 msgid "America/Araguaina" msgstr "আমেরিকা/ą¦†ą¦°ą¦¾ą¦—ą§ą§Ÿą§‡ą¦Øą¦¾" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦¬ą§ą§Ÿą§‡ą¦Øą§‹ą¦ø_ą¦†ą§Ÿą¦¾ą¦°ą¦ø" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦•ą§‡ą¦Ÿą¦¾ą¦®ą¦¾ą¦°ą§ą¦•ą¦¾" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦•ą§‹ą¦®ą§‹ą¦”ą¦°ą¦æą¦­ą¦¾ą¦”ą¦¾ą¦­ą¦æą§Ÿą¦¾" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦•ą§‹ą¦°ą§ą¦”ą§‹ą¦¬ą¦¾" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦œą§ą¦œą§ą¦‡" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/লা_ą¦°ą¦æą¦“ą¦œą¦¾" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦®ą§‡ą¦Øą§ą¦”ą§‹ą¦œą¦¾" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/রিও_গেলিগোস" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 #, fuzzy msgid "America/Argentina/Salta" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/সান_হুয়ান" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/সান_হুয়ান" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 #, fuzzy msgid "America/Argentina/San_Luis" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/সান_হুয়ান" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦Ÿą§ą¦•ą§ą¦®ą¦¾ą¦Ø" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦‰ą¦¶ą§ą§Ÿą¦¾ą¦‡ą§Ÿą¦¾" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "আমেরিকা/আরুবা" #: timezones.h:109 msgid "America/Asuncion" msgstr "আমেরিকা/ą¦…ą§ą¦Æą¦¾ą¦øą¦¾ą¦Øą¦¶ą¦æą§Ÿą¦¾ą¦Ø" #: timezones.h:110 #, fuzzy msgid "America/Atikokan" msgstr "আমেরিকা/ą¦†ą¦Ÿą¦•ą¦¾" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "আমেরিকা/ą¦†ą¦Ÿą¦•ą¦¾" #: timezones.h:114 msgid "America/Bahia" msgstr "আমেরিকা/বাহিয়া" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "আমেরিকা/বাহিয়া" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "আমেরিকা/বারবাঔোস" #: timezones.h:121 msgid "America/Belem" msgstr "আমেরিকা/বেলেম" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "আমেরিকা/ą¦¬ą§‡ą¦²ą¦æą¦œą§‡" #: timezones.h:125 #, fuzzy msgid "America/Blanc-Sablon" msgstr "আমেরিকা/কেনকুন" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "আমেরিকা/ą¦¬ą§‹ą§Ÿą¦¾_ą¦­ą¦æą¦øą§ą¦Ÿą¦¾" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "আমেরিকা/ą¦¬ą§‹ą¦—ą§‹ą¦Ÿą¦¾" #: timezones.h:132 msgid "America/Boise" msgstr "আমেরিকা/ą¦¬ą§‹ą§Ÿą¦ø" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "আমেরিকা/ą¦¬ą§ą§Ÿą§‡ą¦Øą§‹ą¦ø_ą¦†ą§Ÿą¦¾ą¦°ą¦ø" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "আমেরিকা/ą¦•ą§‡ą¦®ą¦¬ą§ą¦°ą¦æą¦œ_বে" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "আমেরিকা/ą¦•ą¦¾ą¦®ą§ą¦Ŗą§‹_ą¦—ą§ą¦°ą¦¾ą¦Øą§ą¦”ą§‡" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "আমেরিকা/কেনকুন" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "আমেরিকা/কেরাকাস" #: timezones.h:146 msgid "America/Catamarca" msgstr "আমেরিকা/ą¦•ą§‡ą¦Ÿą¦¾ą¦®ą¦¾ą¦°ą§ą¦•ą¦¾" #: timezones.h:147 msgid "America/Cayenne" msgstr "আমেরিকা/ą¦øą¦¾ą§Ÿą§‡ą¦Ø" #: timezones.h:148 msgid "America/Cayman" msgstr "আমেরিকা/কেমেন" #: timezones.h:149 msgid "America/Chicago" msgstr "আমেরিকা/শিকাগো" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦øą§‡ą¦Øą§ą¦Ÿą§ą¦°ą¦¾ą¦²" #: timezones.h:152 msgid "America/Chihuahua" msgstr "আমেরিকা/চিহুয়াহুয়া" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "আমেরিকা/কোরাল_ą¦¹ą¦¾ą¦°ą§ą¦¬ą¦¾ą¦°" #: timezones.h:156 msgid "America/Cordoba" msgstr "আমেরিকা/ą¦•ą§‹ą¦°ą§ą¦”ą§‹ą¦¬ą¦¾" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "আমেরিকা/ą¦•ą§‹ą¦øą§ą¦Ÿą¦¾_রিকা" #: timezones.h:158 msgid "America/Cuiaba" msgstr "আমেরিকা/ą¦•ą§ą¦‡ą§Ÿą¦¾ą¦¬ą¦¾" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "আমেরিকা/কুরাকাও" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "আমেরিকা/ą¦”ą¦¾ą¦Øą¦®ą¦¾ą¦°ą§ą¦•ą¦¶ą¦“ą§Ÿą¦¾ą¦Ø" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "আমেরিকা/ঔসন" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "আমেরিকা/ঔসন_ą¦•ą§ą¦°ą¦æą¦•" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "আমেরিকা/ঔেনভার" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø" #: timezones.h:174 msgid "America/Detroit" msgstr "আমেরিকা/ą¦”ą§‡ą¦Ÿą§ą¦°ą§‹ą§Ÿą§‡ą¦Ÿ" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "আমেরিকা/ঔোমিনিকা" #: timezones.h:178 msgid "America/Edmonton" msgstr "আমেরিকা/ą¦ą¦”ą¦®ą¦Øą¦Ÿą¦Ø" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "আমেরিকা/ইরুনেপে" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "আমেরিকা/ą¦ą¦²_সালভাঔোর" #: timezones.h:185 msgid "America/Ensenada" msgstr "আমেরিকা/ą¦ą¦Øą¦øą§‡ą¦Øą¦¾ą¦”ą¦¾" #: timezones.h:186 msgid "America/Fortaleza" msgstr "আমেরিকা/ą¦«ą§‹ą¦°ą§ą¦Ÿą¦¾ą¦²ą§‡ą¦œą¦¾" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "আমেরিকা/ą¦«ą§‹ą¦°ą§ą¦Ÿ_ą¦“ą§Ÿą§‡ą¦‡ą¦Ø" # not appropriate imho #: timezones.h:190 msgid "America/Glace_Bay" msgstr "আমেরিকা/ą¦—ą§ą¦²ą§‡ą¦ø_বে" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "আমেরিকা/গঔ঄াব" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "আমেরিকা/ą¦—ą§‚ą¦œ_বে" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "আমেরিকা/ą¦—ą§ą¦°ą§ą¦Æą¦¾ą¦Øą§ą¦”_ą¦Ÿą¦¾ą¦°ą§ą¦•" #: timezones.h:200 msgid "America/Grenada" msgstr "আমেরিকা/ą¦—ą§ą¦°ą§‡ą¦Øą¦¾ą¦”ą¦¾" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "আমেরিকা/ą¦—ą§ą§Ÿą¦¾ą¦”ą§‡ą¦²ą§ą¦Ŗ" #: timezones.h:202 msgid "America/Guatemala" msgstr "আমেরিকা/ą¦—ą§ą§Ÿą¦¾ą¦Ÿą§‡ą¦®ą¦¾ą¦²ą¦¾" #: timezones.h:203 msgid "America/Guayaquil" msgstr "আমেরিকা/ą¦—ą¦¾ą§Ÿą¦¾ą¦•ą§ą¦‡ą¦²" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "আমেরিকা/ą¦—ą¦¾ą§Ÿą¦¾ą¦Øą¦¾" #: timezones.h:207 msgid "America/Halifax" msgstr "আমেরিকা/ą¦¹ą§ą¦Æą¦¾ą¦²ą¦æą¦«ą§ą¦Æą¦¾ą¦•ą§ą¦ø" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "আমেরিকা/হাভানা" #: timezones.h:211 msgid "America/Hermosillo" msgstr "আমেরিকা/ą¦¹ą¦¾ą¦°ą§ą¦®ą§‹ą¦øą¦æą¦²ą§‹" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "আমেরিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾ą¦Ŗą§‹ą¦²ą¦æą¦ø" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "আমেরিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ą¦Øą§‹ą¦•ą§ą¦ø" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "আমেরিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ą¦®ą¦¾ą¦°ą§‡ą¦™ą§ą¦—ą§‹" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 #, fuzzy msgid "America/Indiana/Petersburg" msgstr "আমেরিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ą¦®ą¦¾ą¦°ą§‡ą¦™ą§ą¦—ą§‹" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "আমেরিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾ą¦Ŗą§‹ą¦²ą¦æą¦ø" #: timezones.h:227 #, fuzzy msgid "America/Indiana/Tell_City" msgstr "আমেরিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ভিভে" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "আমেরিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ভিভে" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 #, fuzzy msgid "America/Indiana/Vincennes" msgstr "আমেরিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ভিভে" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 #, fuzzy msgid "America/Indiana/Winamac" msgstr "আমেরিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ভিভে" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "আমেরিকা/ইনুভিক" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" # not sure #: timezones.h:242 msgid "America/Iqaluit" msgstr "আমেরিকা/ą¦‡ą¦•ą¦¾ą¦²ą§ą¦‡ą¦Ÿ" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" # not sure #: timezones.h:245 msgid "America/Jamaica" msgstr "আমেরিকা/ą¦œą¦¾ą¦®ą¦¾ą¦‡ą¦•ą¦¾" #: timezones.h:246 msgid "America/Jujuy" msgstr "আমেরিকা/ą¦œą§ą¦œą§ą¦‡" #: timezones.h:247 msgid "America/Juneau" msgstr "আমেরিকা/ą¦œą§ą¦Øą¦æą¦‰" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "আমেরিকা/ą¦•ą§‡ą¦Øą§ą¦Ÿą¦¾ą¦•ą¦æ/লুইভিল" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 #, fuzzy msgid "Eastern Time - Kentucky - Louisville area" msgstr "আমেরিকা/ą¦•ą§‡ą¦Øą§ą¦Ÿą¦¾ą¦•ą¦æ/লুইভিল" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "আমেরিকা/ą¦•ą§‡ą¦Øą§ą¦Ÿą¦¾ą¦•ą¦æ/ą¦®ą§‹ą¦Øą§ą¦Ÿą¦æą¦šą§‡ą¦²ą§‹" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "আমেরিকা/ą¦Øą§‹ą¦•ą§ą¦ø_ইন" #: timezones.h:257 msgid "America/La_Paz" msgstr "আমেরিকা/লা_পাজ" #: timezones.h:258 msgid "America/Lima" msgstr "আমেরিকা/লিমা" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "আমেরিকা/লস_ą¦…ą§ą¦Æą¦¾ą¦žą§ą¦œą§‡ą¦²ą¦ø" #. comment for time zone America/Los_Angeles #: timezones.h:261 #, fuzzy msgid "Pacific Time" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/নিউ" #: timezones.h:262 msgid "America/Louisville" msgstr "আমেরিকা/লুইভিল" #: timezones.h:263 msgid "America/Maceio" msgstr "আমেরিকা/মাসিও" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "আমেরিকা/ą¦®ą¦¾ą¦Øą¦¾ą¦—ą§ą§Ÿą¦¾" #: timezones.h:267 msgid "America/Manaus" msgstr "আমেরিকা/মানাউস" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 #, fuzzy msgid "America/Marigot" msgstr "আমেরিকা/মাসিও" #: timezones.h:271 msgid "America/Martinique" msgstr "আমেরিকা/ą¦®ą¦¾ą¦°ą§ą¦Ÿą¦æą¦Øą¦æą¦•" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "আমেরিকা/মানাউস" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "আমেরিকা/মাজাতলান" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "আমেরিকা/ą¦®ą§‡ą¦Øą§ą¦”ą§‹ą¦œą¦¾" #: timezones.h:279 msgid "America/Menominee" msgstr "আমেরিকা/মেনোমিনি" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "আমেরিকা/মেরিঔা" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "আমেরিকা/ą¦®ą§‡ą¦•ą§ą¦øą¦æą¦•ą§‹_সিটি" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "আমেরিকা/মিকেলন" #: timezones.h:289 #, fuzzy msgid "America/Moncton" msgstr "আমেরিকা/ą¦ą¦”ą¦®ą¦Øą¦Ÿą¦Ø" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "আমেরিকা/ą¦®ą¦Øą§ą¦Ÿą§‡ą¦°ą¦æ" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "আমেরিকা/ą¦®ą¦Øą§ą¦Ÿą§‡ą¦­ą¦æą¦”ą¦æą¦“" #: timezones.h:296 msgid "America/Montreal" msgstr "আমেরিকা/ą¦®ą¦Øą¦Ÿą§ą¦°ą¦æą¦²" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "আমেরিকা/ą¦®ą¦Øą§ą¦Ÿą¦øą§‡ą¦°ą¦¾ą¦¤" #: timezones.h:300 msgid "America/Nassau" msgstr "আমেরিকা/নাসাউ" #: timezones.h:301 msgid "America/New_York" msgstr "আমেরিকা/নিউ_ą¦‡ą§Ÿą§‹ą¦°ą§ą¦•" #. comment for time zone America/New_York #: timezones.h:303 #, fuzzy msgid "Eastern Time" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦‡ą¦øą§ą¦Ÿą¦¾ą¦°ą§ą¦Ø" #: timezones.h:304 msgid "America/Nipigon" msgstr "আমেরিকা/নিপিগন" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "আমেরিকা/নোম" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "আমেরিকা/নোরোনহা" #. comment for time zone America/Noronha #: timezones.h:312 #, fuzzy msgid "Atlantic islands" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/ą¦•ą§ą¦Æą¦¾ą¦Øą¦¾ą¦°ą¦æ" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "আমেরিকা/ą¦Øą¦°ą§ą¦„_ą¦”ą¦¾ą¦•ą§‹ą¦Ÿą¦¾/ą¦øą§‡ą¦Øą§ą¦Ÿą¦¾ą¦°" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 #, fuzzy msgid "America/North_Dakota/New_Salem" msgstr "আমেরিকা/ą¦Øą¦°ą§ą¦„_ą¦”ą¦¾ą¦•ą§‹ą¦Ÿą¦¾/ą¦øą§‡ą¦Øą§ą¦Ÿą¦¾ą¦°" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "আমেরিকা/ą¦®ą¦¾ą¦Øą¦¾ą¦—ą§ą§Ÿą¦¾" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "আমেরিকা/পানামা" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "আমেরিকা/পাংনিরতুং" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "আমেরিকা/পারামারিবো" #: timezones.h:327 msgid "America/Phoenix" msgstr "আমেরিকা/ą¦«ą¦æą¦Øą¦æą¦•ą§ą¦ø" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "আমেরিকা/ą¦Ŗą§‹ą¦°ą§ą¦Ÿ_ও_ą¦Ŗą§ą¦°ą¦æą¦Øą§ą¦ø" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "আমেরিকা/ą¦Ŗą§‹ą¦°ą§ą¦¤ą§‹_ą¦ą¦•ą¦°" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "আমেরিকা/ą¦Ŗą§‹ą¦°ą§ą¦Ÿ_অফ_ą¦øą§ą¦Ŗą§‡ą¦Ø" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "আমেরিকা/ą¦Ŗą§‹ą¦°ą§ą¦¤ą§‹_ভেলহো" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "আমেরিকা/ą¦Ŗą§ą§Ÿą§‡ą¦°ą§ą¦¤ą§‹_রিকো" #: timezones.h:337 msgid "America/Rainy_River" msgstr "আমেরিকা/রেইনি_রিভার" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "আমেরিকা/ą¦°ą§‡ą¦™ą§ą¦•ą¦æą¦Ø_ą¦‡ą¦Øą¦²ą§‡ą¦Ÿ" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "আমেরিকা/রিসাইফে" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "আমেরিকা/ą¦°ą§‡ą¦œą¦æą¦Øą¦¾" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 #, fuzzy msgid "America/Resolute" msgstr "আমেরিকা/বেলেম" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "আমেরিকা/রিও_ą¦¬ą§ą¦°ą¦¾ą¦™ą§ą¦•ą§‹" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "আমেরিকা/ą¦°ą§‹ą¦œą¦¾ą¦°ą¦æą¦“" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "আমেরিকা/ą¦øą¦¾ą¦Øą§ą¦Ÿą¦æą§Ÿą¦¾ą¦—ą§‹" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 #, fuzzy msgid "America/Santarem" msgstr "আমেরিকা/ą¦øą¦¾ą¦Øą§ą¦Ÿą¦æą§Ÿą¦¾ą¦—ą§‹" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "আমেরিকা/ą¦øą¦¾ą¦Øą§ą¦Ÿą¦æą§Ÿą¦¾ą¦—ą§‹" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "আমেরিকা/ą¦øą¦¾ą¦Øą§ą¦Ÿą§‹_ą¦”ą§‹ą¦®ą¦æą¦™ą§ą¦—ą§‹" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "আমেরিকা/সাও_পাওলো" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "আমেরিকা/ą¦øą§ą¦•ą§‹ą¦°ą§ą¦øą¦¬ą¦æą¦øą¦¾ą¦Øą§ą¦”" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "আমেরিকা/শিপরক" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 #, fuzzy msgid "America/St_Barthelemy" msgstr "আমেরিকা/বেলেম" #: timezones.h:376 msgid "America/St_Johns" msgstr "আমেরিকা/ą¦øą§‡ą¦Øą§ą¦Ÿ_জনস" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "আমেরিকা/ą¦øą§‡ą¦Øą§ą¦Ÿ_ą¦•ą¦æą¦Ÿą¦ø" #: timezones.h:380 msgid "America/St_Lucia" msgstr "আমেরিকা/ą¦øą§‡ą¦Øą§ą¦Ÿ_লুসিয়া" #: timezones.h:381 msgid "America/St_Thomas" msgstr "আমেরিকা/ą¦øą§‡ą¦Øą§ą¦Ÿ_঄োমাস" #: timezones.h:382 msgid "America/St_Vincent" msgstr "আমেরিকা/ą¦øą§‡ą¦Øą§ą¦Ÿ_ą¦­ą¦æą¦Øą¦øą§‡ą¦Øą§ą¦Ÿ" #: timezones.h:383 msgid "America/Swift_Current" msgstr "আমেরিকা/ą¦øą§ą¦‡ą¦«ą¦Ÿ_ą¦•ą¦¾ą¦°ą§‡ą¦Øą§ą¦Ÿ" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "আমেরিকা/তেগুসিগালপা" #: timezones.h:387 msgid "America/Thule" msgstr "আমেরিকা/঄ুল" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "আমেরিকা/ą¦„ą¦¾ą¦Øą§ą¦”ą¦¾ą¦°_বে" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "আমেরিকা/ą¦„ą§‡ą¦“ą§Ÿą¦¾ą¦Øą¦¾" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "আমেরিকা/ą¦Ÿą¦°ą§‹ą¦Øą§ą¦Ÿą§‹" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "আমেরিকা/টরটলা" #: timezones.h:400 msgid "America/Vancouver" msgstr "আমেরিকা/ą¦­ą§ą¦Æą¦¾ą¦‚ą¦•ą§ą¦­ą¦¾ą¦°" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "আমেরিকা/ą¦­ą¦¾ą¦°ą§ą¦œą¦æą¦Ø" #: timezones.h:404 msgid "America/Whitehorse" msgstr "আমেরিকা/ą¦“ą§Ÿą¦¾ą¦‡ą¦Ÿą¦¹ą¦°ą§ą¦ø" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "আমেরিকা/উইনিপেগ" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "আমেরিকা/ą¦‡ą§Ÿą¦¾ą¦•ą§ą¦¤ą¦¾ą¦¤" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "আমেরিকা/ą¦‡ą§Ÿą§‡ą¦²ą§‹ą¦Øą¦¾ą¦‡ą¦«" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦•ą§ą¦Æą¦¾ą¦øą¦æ" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦”ą§ą¦Æą¦¾ą¦­ą¦æą¦ø" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦¦ą§ą¦®ą§‹ą¦Øą§ą¦¤ ą¦¦ą§ą¦Æ উরভিল" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦®ą§ą¦Æą¦¾ą¦•ą¦®ą¦¾ą¦°ą§ą¦”ą§‹" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/মসন" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦®ą§ą¦Æą¦¾ą¦•ą¦®ą¦¾ą¦°ą§ą¦”ą§‹" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦Ŗą¦¾ą¦²ą§ą¦®ą¦¾ą¦°" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/রো঄েরা" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦¦ą¦•ą§ą¦·ą¦æą¦£_মেরু" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦øą¦æą¦“ą§Ÿą¦¾" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦­ą§‹ą¦øą§ą¦Ÿą¦•" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "ą¦†ą¦°ą§ą¦•ą¦Ÿą¦æą¦•/ą¦²ą¦‚ą¦‡ą§Ÿą¦¾ą¦°ą¦¬ą§‡ą¦Ø" #: timezones.h:450 msgid "Asia/Aden" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦ą¦”ą§‡ą¦Ø" #: timezones.h:451 msgid "Asia/Almaty" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦†ą¦²ą¦®ą¦¾ą¦Ÿą¦æ" #: timezones.h:454 msgid "Asia/Amman" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦†ą¦®ą§ą¦®ą¦¾ą¦Ø" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/আনাদির" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/আকতু" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/আকতোবে" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦†ą¦¶ā€Œą¦—ą¦¾ą¦¬ą¦¾ą¦¤" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/আশখাবাদ" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/বাগদাদ" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/বাহরেন" #: timezones.h:468 msgid "Asia/Baku" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/বাকু" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦¬ą§ą¦Æą¦¾ą¦™ą§ą¦•ą¦•" #: timezones.h:470 msgid "Asia/Beirut" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦¬ą§‡ą¦‡ą¦°ą§ą¦Ÿ" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/বিশকেক" #: timezones.h:472 msgid "Asia/Brunei" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦¬ą§ą¦°ą§ą¦Øą§‡ą¦‡" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/কলকাতা" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦šą§ˆą¦¬ą¦¾ą¦²ą¦›ą¦¾ą¦Ø" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦šą§‹ą¦‚ą¦•ą¦æą¦‚" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦šą§ą¦‚ą¦•ą¦æą¦‚" #: timezones.h:481 msgid "Asia/Colombo" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦•ą§‹ą¦²ą§‹ą¦®ą§ą¦¬ą§‹" #: timezones.h:482 msgid "Asia/Dacca" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ঢাকা" #: timezones.h:483 msgid "Asia/Damascus" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ঔামাসকাস" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ঢাকা" #: timezones.h:485 msgid "Asia/Dili" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ঔিলি" #: timezones.h:486 msgid "Asia/Dubai" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/দুবাই" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/দুশানবে" #: timezones.h:488 msgid "Asia/Gaza" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦—ą¦¾ą¦œą¦¾" #: timezones.h:489 msgid "Asia/Harbin" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦¹ą¦¾ą¦°ą§ą¦¬ą¦æą¦Ø" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 #, fuzzy msgid "Asia/Ho_Chi_Minh" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦šą§‹ą¦‚ą¦•ą¦æą¦‚" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/হং _কং" #: timezones.h:494 msgid "Asia/Hovd" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/হোভঔ" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦‡ą¦°ą¦•ą§ą¦Ÿą¦ø" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦‡ą¦øą§ą¦¤ą¦¾ą¦Øą¦¬ą§ą¦²" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦œą¦¾ą¦•ą¦¾ą¦°ą§ą¦¤ą¦¾" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/জায়াপুরা" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦œą§‡ą¦°ą§ą¦øą§‡ą¦²ą¦¾ą¦®" #: timezones.h:508 msgid "Asia/Kabul" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/কাবুল" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦•ą¦¾ą¦®ą¦šą¦¾ą¦Ÿą¦•ą¦¾" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦•ą¦°ą¦¾ą¦šą§€" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/কাশগার" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 #, fuzzy msgid "Asia/Kathmandu" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦•ą¦¾ą¦Ÿą¦®ą¦¾ą¦Øą§ą¦”ą§" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦•ą¦¾ą¦Ÿą¦®ą¦¾ą¦Øą§ą¦”ą§" #: timezones.h:518 #, fuzzy msgid "Asia/Kolkata" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦œą¦¾ą¦•ą¦¾ą¦°ą§ą¦¤ą¦¾" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦•ą§ą¦°ą¦¾ą¦øą¦Øą§‹ą§Ÿą¦¾ą¦°ą§ą¦øą§ą¦•" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦•ą§ą§Ÿą¦¾ą¦²ą¦¾_ą¦²ą¦¾ą¦®ą§ą¦Ŗą§ą¦°" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦•ą§ą¦šą¦æą¦‚" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦•ą§ą§Ÿą§‡ą¦¤" #: timezones.h:529 msgid "Asia/Macao" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/মাকাও" #: timezones.h:530 msgid "Asia/Macau" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/মাকাও" #: timezones.h:531 msgid "Asia/Magadan" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/মাগাদান" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/মাকাসসার" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦®ą§ą¦Æą¦¾ą¦Øą¦æą¦²ą¦¾" #: timezones.h:538 msgid "Asia/Muscat" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦®ą¦¾ą¦øą¦•ą¦¾ą¦Ÿ" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦Øą¦æą¦•ą§‹ą¦øą¦æą§Ÿą¦¾" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦‡ą¦°ą¦•ą§ą¦Ÿą¦ø" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦Øą§‹ą¦­ą§‹ą¦øą¦æą¦¬ą¦¾ą¦°ą§ą¦øą§ą¦•" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦Øą§‹ą¦­ą§‹ą¦øą¦æą¦¬ą¦¾ą¦°ą§ą¦øą§ą¦•" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 #, fuzzy msgid "Moscow+03 - Novosibirsk" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦Øą§‹ą¦­ą§‹ą¦øą¦æą¦¬ą¦¾ą¦°ą§ą¦øą§ą¦•" #: timezones.h:546 msgid "Asia/Omsk" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦“ą¦®ą¦øą§ą¦•" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ওরাল" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/নোম_ফেন" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦Ŗą¦Øą§ą¦Ÿą¦æą§Ÿą¦¾ą¦Øą¦¾ą¦•" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦Ŗą¦æą§Ÿą§‹ą¦‚ą¦‡ą§Ÿą¦¾ą¦‚" #: timezones.h:557 msgid "Asia/Qatar" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/কাতার" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦•ą¦æą¦œą¦æą¦²ą§‹ą¦°ą§ą¦¦ą¦¾" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦‡ą§Ÿą¦¾ą¦‚ą¦—ą¦Ø" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/রিয়াদ" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/রিয়াদ৮৭" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/রিয়াদ৮৮" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/রিয়াদ৮৯" #: timezones.h:566 msgid "Asia/Saigon" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦øą¦¾ą§Ÿą¦—ą¦Ø" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/শাকালিন" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦øą¦¾ą¦®ą¦¾ą¦°ą¦–ą¦¾ą¦Øą§ą¦¦" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/সিওল" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦øą¦¾ą¦‚ą¦˜ą¦¾ą¦‡" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦øą¦æą¦™ą§ą¦—ą¦¾ą¦Ŗą§ą¦°" #: timezones.h:578 msgid "Asia/Taipei" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/তাইপে" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦¤ą¦¾ą¦øą¦•ą§‡ą¦Øą§ą¦¤" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/তবিলিশি" #: timezones.h:583 msgid "Asia/Tehran" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/তেহেরান" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/তেল_আভিভ" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦„ą¦æą¦®ą§ą¦¬ą§" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦„ą¦æą¦®ą§ą¦Ŗą§" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦Ÿą§‹ą¦•ą¦æą¦“" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦‰ą¦œą§ą¦‚_ą¦Ŗą¦¾ą¦Øą§ą¦¦ą¦¾ą¦‚" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/উলানবাতোর" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/উলান_বাতোর" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/উরুমকি" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦­ą¦æą§Ÿą§‡ą¦Øą¦¤ą¦æą§Ÿą§‡ą¦Ø" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦­ą§ą¦²ą¦¾ą¦”ą¦æą¦­ą§‹ą¦øą§ą¦Ÿą¦•" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦‡ą§Ÿą¦¾ą¦•ą§ą¦Ÿą¦ø" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦‡ą§Ÿą¦¾ą¦•ą¦¾ą¦¤ą¦¾ą¦°ą¦æą¦Øą¦¬ą§ą¦°ą§ą¦—" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦‡ą§Ÿą¦¾ą¦°ą¦­ą¦¾ą¦Ø" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/ą¦ą¦œą§‹ą¦°ą§‡" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/বারমুঔা" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/ą¦•ą§ą¦Æą¦¾ą¦Øą¦¾ą¦°ą¦æ" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/কেপ_ą¦­ą¦¾ą¦°ą§ą¦”ą¦æ" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/ফেরো" #: timezones.h:616 #, fuzzy msgid "Atlantic/Faroe" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/ফেরো" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/জান_ą¦®ą¦¾ą§Ÿą§‡ą¦Ø" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/মাদিইরা" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/ą¦°ą¦æą¦•ą§Ÿą¦¾ą¦­ą¦æą¦•" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/সাউ঄_ą¦œą¦°ą§ą¦œą¦æą§Ÿą¦¾" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/ą¦øą§ą¦Ÿą§‡ą¦Øą¦²ą¦æ" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/ą¦øą§‡ą¦Øą§ą¦Ÿ_হেলেনা" #: timezones.h:625 msgid "Australia/ACT" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦…ą§ą¦Æą¦¾ą¦”ą¦æą¦²ą§‡ą¦”" #. comment for time zone Australia/Adelaide #: timezones.h:628 #, fuzzy msgid "South Australia" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ACT" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦¬ą§ą¦°ą¦æą¦øą¦¬ą§‡ą¦Ø" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦¬ą§ą¦°ą§‹ą¦•ą§‡ą¦Ø_হিল" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦•ą§ą¦Æą¦¾ą¦Øą¦¬ą§‡ą¦°ą¦¾" #: timezones.h:636 msgid "Australia/Currie" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/কারি" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ঔারউইন" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 #, fuzzy msgid "Australia/Eucla" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦•ą§ą¦‡ą¦Øą§ą¦øą¦²ą§ą¦Æą¦¾ą¦Øą§ą¦”" #. comment for time zone Australia/Eucla #: timezones.h:644 #, fuzzy msgid "Western Australia - Eucla area" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦•ą§ą¦‡ą¦Øą§ą¦øą¦²ą§ą¦Æą¦¾ą¦Øą§ą¦”" #: timezones.h:645 msgid "Australia/Hobart" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦¹ą§‹ą¦¬ą¦¾ą¦°ą§ą¦Ÿ" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦²ą¦æą¦Øą§ą¦”ą¦¾ą¦®ą§ą¦Æą¦¾ą¦Ø" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦²ą¦°ą§ą¦”_হাউই" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦®ą§‡ą¦²ą¦¬ą§‹ą¦°ą§ą¦Ø" #. comment for time zone Australia/Melbourne #: timezones.h:657 #, fuzzy msgid "Victoria" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦­ą¦æą¦•ą§ą¦Ÿą§‹ą¦°ą¦æą§Ÿą¦¾" #: timezones.h:658 msgid "Australia/North" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦‰ą¦¤ą§ą¦¤ą¦°" #: timezones.h:659 msgid "Australia/NSW" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/নিউ সাই঄ ą¦“ą§Ÿą§‡ą¦²ą¦ø" #: timezones.h:660 msgid "Australia/Perth" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦Ŗą¦¾ą¦°ą§ą¦„" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦•ą§ą¦‡ą¦Øą§ą¦øą¦²ą§ą¦Æą¦¾ą¦Øą§ą¦”" #: timezones.h:664 msgid "Australia/South" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦¦ą¦•ą§ą¦·ą¦æą¦£" #: timezones.h:665 msgid "Australia/Sydney" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/সিঔনি" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/তাসমানিয়া" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦­ą¦æą¦•ą§ą¦Ÿą§‹ą¦°ą¦æą§Ÿą¦¾" #: timezones.h:670 msgid "Australia/West" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦Ŗą¦¶ą§ą¦šą¦æą¦®" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦‡ą§Ÿą¦¾ą¦Øą¦•ą§‹ą¦‰ą¦‡ą¦Øą¦¾" #: timezones.h:672 msgid "Brazil/Acre" msgstr "ą¦¬ą§ą¦°ą¦¾ą¦œą¦æą¦²/ą¦ą¦•ą¦°" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "ą¦¬ą§ą¦°ą¦¾ą¦œą¦æą¦²/ঔিনহোনহা" #: timezones.h:674 msgid "Brazil/East" msgstr "ą¦¬ą§ą¦°ą¦¾ą¦œą¦æą¦²/ą¦Ŗą§‚ą¦°ą§ą¦¬" #: timezones.h:675 msgid "Brazil/West" msgstr "ą¦¬ą§ą¦°ą¦¾ą¦œą¦æą¦²/ą¦Ŗą¦¶ą§ą¦šą¦æą¦®" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "কানাঔা/ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•" #: timezones.h:677 msgid "Canada/Central" msgstr "কানাঔা/ą¦øą§‡ą¦Øą§ą¦Ÿą§ą¦°ą¦¾ą¦²" #: timezones.h:678 msgid "Canada/Eastern" msgstr "কানাঔা/ą¦Ŗą§‚ą¦°ą§ą¦¬" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "কানাঔা/ą¦Ŗą§‚ą¦°ą§ą¦¬-ą¦øą¦¾ą¦øą¦•ą¦¾ą¦šą§ą§Ÿą¦¾ą¦Ø" #: timezones.h:680 msgid "Canada/Mountain" msgstr "কানাঔা/ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "কানাঔা/ą¦Øą¦æą¦‰ą¦«ą¦¾ą¦‰ą¦Øą§ą¦”ą¦²ą§ą¦Æą¦¾ą¦Øą§ą¦”" #: timezones.h:682 msgid "Canada/Pacific" msgstr "কানাঔা/ą¦Ŗą§ą¦Æą¦¾ą¦øą¦æą¦«ą¦æą¦•" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "কানাঔা/ą¦øą¦¾ą¦øą¦•ą¦¾ą¦šą§ą§Ÿą¦¾ą¦Ø" #: timezones.h:684 msgid "Canada/Yukon" msgstr "কানাঔা/ইউকোন" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "চিলি/ą¦•ą¦Øą§ą¦Ÿą¦æą¦Øą§‡ą¦Øą§ą¦Ÿą¦¾ą¦²" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "চিলি/ą¦‡ą¦øą§ą¦Ÿą¦¾ą¦°ą¦†ą¦‡ą¦²ą§ą¦Æą¦¾ą¦Øą§ą¦”" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "কিউবা" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "মিশর" #: timezones.h:692 msgid "Eire" msgstr "ą¦†ą§Ÿą¦¾ą¦°" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/ą¦—ą§ą¦°ą¦æą¦£ą¦‰ą¦‡ą¦š" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/জুলু" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "ইউরোপ/ą¦†ą¦®ą¦øą§ą¦Ÿą¦¾ą¦°ą¦”ą¦¾ą¦®" #: timezones.h:731 msgid "Europe/Andorra" msgstr "ইউরোপ/ą¦ą¦Øą§ą¦”ą§‹ą¦°ą¦¾" #: timezones.h:732 msgid "Europe/Athens" msgstr "ইউরোপ/ą¦ą¦„ą§‡ą¦Øą§ą¦ø" #: timezones.h:733 msgid "Europe/Belfast" msgstr "ইউরোপ/ą¦¬ą§‡ą¦²ą¦«ą¦¾ą¦øą§ą¦Ÿ" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "ইউরোপ/ą¦¬ą§‡ą¦²ą¦—ą§ą¦°ą§‡ą¦”" #: timezones.h:735 msgid "Europe/Berlin" msgstr "ইউরোপ/ą¦¬ą¦¾ą¦°ą§ą¦²ą¦æą¦Ø" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "ইউরোপ/ą¦¬ą§ą¦°ą¦¾ą¦¤ą¦æą¦øą¦²ą¦¾ą¦­ą¦¾" #: timezones.h:737 msgid "Europe/Brussels" msgstr "ইউরোপ/ą¦¬ą§ą¦°ą¦¾ą¦øą§‡ą¦²ą¦ø" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "ইউরোপ/ą¦¬ą§ą¦–ą¦¾ą¦°ą§‡ą¦øą§ą¦Ÿ" #: timezones.h:739 msgid "Europe/Budapest" msgstr "ইউরোপ/ą¦¬ą§ą¦”ą¦¾ą¦Ŗą§‡ą¦øą§ą¦Ÿ" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "ইউরোপ/ą¦šą¦æą¦¶ą¦æą¦Øą¦¾ą¦‰" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "ইউরোপ/কোপেনহেগেন" #: timezones.h:742 msgid "Europe/Dublin" msgstr "ইউরোপ/ঔাবলিন" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "ইউরোপ/ą¦œą¦æą¦¬ą§ą¦°ą¦¾ą¦²ą¦Ÿą¦¾ą¦°" #: timezones.h:744 #, fuzzy msgid "Europe/Guernsey" msgstr "ইউরোপ/ą¦ą¦„ą§‡ą¦Øą§ą¦ø" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "ইউরোপ/ą¦¹ą§‡ą¦²ą¦øą¦æą¦™ą§ą¦•ą¦æ" #: timezones.h:746 #, fuzzy msgid "Europe/Isle_of_Man" msgstr "ইউরোপ/ওসলো" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "ইউরোপ/ą¦‡ą¦øą§ą¦¤ą¦¾ą¦Øą¦¬ą§ą¦²" #: timezones.h:748 #, fuzzy msgid "Europe/Jersey" msgstr "ইউরোপ/ą¦Ŗą§ą¦Æą¦¾ą¦°ą¦æą¦ø" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "ইউরোপ/ą¦•ą¦¾ą¦²ą¦æą¦Øą¦æą¦Øą¦—ą§ą¦°ą¦¾ą¦”" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "ইউরোপ/কিভ" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "ইউরোপ/লিসবন" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "ইউরোপ/ą¦²ą§ą¦¬ą¦²ą¦‡ą§Ÿą¦¾ą¦Øą¦¾" #: timezones.h:759 msgid "Europe/London" msgstr "ইউরোপ/ą¦²ą¦Øą§ą¦”ą¦Ø" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "ইউরোপ/ą¦²ą§ą¦•ą§ą¦øą§‡ą¦®ą¦¬ą§ą¦°ą§ą¦—" #: timezones.h:761 msgid "Europe/Madrid" msgstr "ইউরোপ/ą¦®ą¦¾ą¦”ą§ą¦°ą¦æą¦”" #: timezones.h:764 msgid "Europe/Malta" msgstr "ইউরোপ/ą¦®ą¦²ą§ą¦Ÿą¦¾" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "ইউরোপ/মারিহাম" #: timezones.h:766 msgid "Europe/Minsk" msgstr "ইউরোপ/ą¦®ą¦æą¦Øą¦øą§ą¦•" #: timezones.h:767 msgid "Europe/Monaco" msgstr "ইউরোপ/মোনেকো" #: timezones.h:768 msgid "Europe/Moscow" msgstr "ইউরোপ/ą¦®ą¦øą§ą¦•ą§‹" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "ইউরোপ/ą¦Øą¦æą¦•ą§‹ą¦øą¦æą§Ÿą¦¾" #: timezones.h:772 msgid "Europe/Oslo" msgstr "ইউরোপ/ওসলো" #: timezones.h:773 msgid "Europe/Paris" msgstr "ইউরোপ/ą¦Ŗą§ą¦Æą¦¾ą¦°ą¦æą¦ø" #: timezones.h:774 #, fuzzy msgid "Europe/Podgorica" msgstr "ইউরোপ/ą¦ą¦Øą§ą¦”ą§‹ą¦°ą¦¾" #: timezones.h:775 msgid "Europe/Prague" msgstr "ইউরোপ/ą¦Ŗą§ą¦°ą¦¾ą¦—" #: timezones.h:776 msgid "Europe/Riga" msgstr "ইউরোপ/রিগা" #: timezones.h:777 msgid "Europe/Rome" msgstr "ইউরোপ/রোম" #: timezones.h:778 msgid "Europe/Samara" msgstr "ইউরোপ/সামারা" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "ইউরোপ/সান_মারিনো" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "ইউরোপ/ą¦øą¦¾ą¦°ą¦¾ą§Ÿą§‡ą¦­ą§‹" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "ইউরোপ/ą¦øą¦æą¦®ą§ą¦«ą¦æą¦°ą§‹ą¦Ŗą§‡ą¦²" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "ইউরোপ/ą¦øą§ą¦•ą¦Ŗą§Ÿą¦¾" #: timezones.h:787 msgid "Europe/Sofia" msgstr "ইউরোপ/ą¦øą§‹ą¦«ą¦æą§Ÿą¦¾" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "ইউরোপ/ą¦øą§ą¦Ÿą¦•ą¦¹ą§‹ą¦®" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "ইউরোপ/ą¦Ÿą§ą¦Æą¦¾ą¦²ą¦æą¦Ø" #: timezones.h:790 msgid "Europe/Tirane" msgstr "ইউরোপ/তিরানা" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "ইউরোপ/তিরাসপোল" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "ইউরোপ/ą¦‰ą¦œą¦—ą§‹ą¦°ą§‹ą¦¦" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "ইউরোপ/ভাদুজ" #: timezones.h:796 msgid "Europe/Vatican" msgstr "ইউরোপ/ą¦­ą§ą¦Æą¦¾ą¦Ÿą¦æą¦•ą§‡ą¦Ø" #: timezones.h:797 msgid "Europe/Vienna" msgstr "ইউরোপ/ą¦­ą¦æą§Ÿą§‡ą¦Øą¦¾" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "ইউরোপ/ভিলনিয়াস" #: timezones.h:799 #, fuzzy msgid "Europe/Volgograd" msgstr "ইউরোপ/ą¦¬ą§‡ą¦²ą¦—ą§ą¦°ą§‡ą¦”" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "ইউরোপ/ą¦“ą§Ÿą¦¾ą¦°ą¦ø" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "ইউরোপ/ą¦œą¦¾ą¦—ą§ą¦°ą§‡ą¦¬" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "ইউরোপ/ą¦œą¦¾ą¦Ŗą§‹ą¦°ą§‹ą¦Æą§‡ą¦‡" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "ইউরোপ/ą¦œą§ą¦°ą¦æą¦–" #: timezones.h:808 msgid "Factory" msgstr "কারখানা" #: timezones.h:809 msgid "GB" msgstr "ą¦—ą§ą¦°ą§‡ą¦Ÿ ą¦¬ą§ą¦°ą¦æą¦Ÿą§‡ą¦Ø" #: timezones.h:810 msgid "GB-Eire" msgstr "ą¦—ą§ą¦°ą§‡ą¦Ÿ ą¦¬ą§ą¦°ą¦æą¦Ÿą§‡ą¦Ø-ą¦†ą§Ÿą¦¾ą¦°" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "ą¦—ą§ą¦°ą¦æą¦Øą¦‰ą¦‡ą¦š" #: timezones.h:816 msgid "Hongkong" msgstr "হং কং" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "ą¦†ą¦‡ą¦øą¦²ą§ą¦Æą¦¾ą¦Øą§ą¦”" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "ভারত মহাসাগর/ą¦†ą¦Øą§ą¦¤ą¦¾ą¦Øą¦¾ą¦Øą¦¾ą¦°ą¦æą¦­ą§‹" #: timezones.h:820 msgid "Indian/Chagos" msgstr "ভারত মহাসাগর/ą¦šą¦¾ą¦—ą§‹ą¦ø" #: timezones.h:821 msgid "Indian/Christmas" msgstr "ভারত মহাসাগর/ą¦•ą§ą¦°ą¦æą¦øą§ą¦Ÿą¦®ą¦¾ą¦ø" #: timezones.h:822 msgid "Indian/Cocos" msgstr "ভারত মহাসাগর/কোকোস" #: timezones.h:823 msgid "Indian/Comoro" msgstr "ভারত মহাসাগর/কোমোরো" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "ভারত মহাসাগর/ą¦•ą¦¾ą¦°ą¦—ą§ą§Ÿą§‡ą¦²ą§‡ą¦Ø" #: timezones.h:825 msgid "Indian/Mahe" msgstr "ভারত মহাসাগর/মাহে" #: timezones.h:826 msgid "Indian/Maldives" msgstr "ভারত মহাসাগর/মালদিভ" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "ভারত মহাসাগর/মরিশাস" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "ভারত মহাসাগর/ą¦®ą§‡ą§Ÿą§‹ą¦¤ą§‡" #: timezones.h:829 msgid "Indian/Reunion" msgstr "ভারত মহাসাগর/ą¦°ą¦æą¦‰ą¦Øą¦æą§Ÿą¦Ø" #: timezones.h:830 msgid "Iran" msgstr "ইরান" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "ą¦‡ą¦œą¦°ą¦¾ą§Ÿą§‡ą¦²" #: timezones.h:833 msgid "Jamaica" msgstr "ą¦œą¦¾ą¦®ą¦¾ą¦‡ą¦•ą¦¾" #: timezones.h:834 msgid "Japan" msgstr "জাপান" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "ą¦•ą§Ÿą¦¾ą¦œą¦¾ą¦²ą¦æą¦‡ą¦Ø" #: timezones.h:836 msgid "Libya" msgstr "লিবিয়া" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "ą¦®ą§‡ą¦•ą§ą¦øą¦æą¦•ą§‹/ą¦¬ą¦¾ą¦¹ą¦¾ą¦Øą§‹ą¦°ą§ą¦¤ą§‡" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "ą¦®ą§‡ą¦•ą§ą¦øą¦æą¦•ą§‹/বাহাসুর" #: timezones.h:840 msgid "Mexico/General" msgstr "ą¦®ą§‡ą¦•ą§ą¦øą¦æą¦•ą§‹/সাধারণ" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "ą¦®ą¦§ą§ą¦Æą¦Ŗą§ą¦°ą¦¾ą¦šą§ą¦Æ/রিয়াদ৮৭" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "ą¦®ą¦§ą§ą¦Æą¦Ŗą§ą¦°ą¦¾ą¦šą§ą¦Æ/রিয়াদ৮৮" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "ą¦®ą¦§ą§ą¦Æą¦Ŗą§ą¦°ą¦¾ą¦šą§ą¦Æ/রিয়াদ৮৯" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "ą¦Øą¦¾ą¦­ą¦¾ą¦œą§‹" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦ą¦Ŗą¦æą§Ÿą¦¾" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦…ą¦•ą¦²ą§ą¦Æą¦¾ą¦Øą§ą¦”" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦šą§ą¦Æą¦¾ą¦Ÿą¦¹ą¦¾ą¦®" #. comment for time zone Pacific/Chatham #: timezones.h:855 #, fuzzy msgid "Chatham Islands" msgstr "চিলি/ą¦‡ą¦øą§ą¦Ÿą¦¾ą¦°ą¦†ą¦‡ą¦²ą§ą¦Æą¦¾ą¦Øą§ą¦”" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦Ÿą§ą¦°ą§ą¦•" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 #, fuzzy msgid "Pacific/Easter" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦‡ą¦øą§ą¦Ÿą¦¾ą¦°" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦ą¦«ą¦¾ą¦¤ą§‡" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦ą¦Øą§ą¦”ą¦¾ą¦°ą¦¬ą§ą¦°ą¦æ" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ফাকাওফো" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ফিজি" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ফুনাফুতি" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/গালাপাগোস" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦—ą§ą¦Æą¦¾ą¦®ą¦¬ą¦æą§Ÿą¦¾ą¦°" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦—ą§ą§Ÿą¦¾ą¦”ą¦¾ą¦²ą¦•ą¦¾ą¦Øą¦¾ą¦²" #: timezones.h:876 msgid "Pacific/Guam" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦—ą§ą§Ÿą¦¾ą¦®" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/হনোলুলু" #. comment for time zone Pacific/Honolulu #: timezones.h:879 #, fuzzy msgid "Hawaii" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦¹ą¦¾ą¦“ą§Ÿą¦¾ą¦‡" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦œą¦Øą¦øą§ą¦Ÿą¦Ø" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/কিরিবাস" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" # is this kiribati? #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/কোসরে" #. comment for time zone Pacific/Kosrae #: timezones.h:888 #, fuzzy msgid "Kosrae" msgstr "ą¦‡ą¦œą¦°ą¦¾ą§Ÿą§‡ą¦²" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦•ą§Ÿą¦¾ą¦œą¦¾ą¦²ą¦æą¦‡ą¦Ø" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦®ą¦¾ą¦œą§ą¦°ą§‹" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/মারকিসাস" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" # not sure #: timezones.h:898 msgid "Pacific/Midway" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦®ą¦æą¦”ą¦“ą§Ÿą§‡" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/নাউরু" #: timezones.h:902 msgid "Pacific/Niue" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/নিউ" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦Øą§‹ą¦°ą¦«ą§‹ą¦²ą§ą¦•" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/নুমিয়া" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/পাগো_পাগো" #: timezones.h:906 msgid "Pacific/Palau" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/পালাউ" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦Ŗą¦æą¦Ÿą¦•ą§‡ą§Ÿą¦¾ą¦°ą§ą¦Ø" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/পোনাপে" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/পোনাপে" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦Ŗą§‹ą¦°ą§ą¦Ÿ-ą¦®ą§‹ą¦°ą§ą¦øą¦¬ą¦æ" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦°ą¦¾ą¦°ą§‹ą¦Ÿą§‹ą¦™ą§ą¦—ą¦¾" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/সাইপান" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦øą¦¾ą¦®ą§‹ą§Ÿą¦¾" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/তাহিতি" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦¤ą¦¾ą¦°ą¦¾ą¦“ą§Ÿą¦¾" #. comment for time zone Pacific/Tarawa #: timezones.h:921 #, fuzzy msgid "Gilbert Islands" msgstr "চিলি/ą¦‡ą¦øą§ą¦Ÿą¦¾ą¦°ą¦†ą¦‡ą¦²ą§ą¦Æą¦¾ą¦Øą§ą¦”" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦Ÿą§‹ą¦™ą§ą¦—ą¦¾ą¦Ÿą¦¾ą¦Ŗą§" #: timezones.h:923 msgid "Pacific/Truk" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦Ÿą§ą¦°ą§ą¦•" #: timezones.h:924 msgid "Pacific/Wake" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦“ą§Ÿą§‡ą¦•" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦“ą§Ÿą¦¾ą¦²ą¦æą¦ø" #: timezones.h:928 msgid "Pacific/Yap" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ মহাসাগর/ą¦‡ą§Ÿą¦¾ą¦Ŗ" #: timezones.h:929 msgid "Poland" msgstr "ą¦Ŗą§‹ą¦²ą§ą¦Æą¦¾ą¦Øą§ą¦”" #: timezones.h:930 msgid "Portugal" msgstr "ą¦Ŗą¦°ą§ą¦Ÿą§ą¦—ą¦¾ą¦²" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "ą¦øą¦æą¦™ą§ą¦—ą¦¾ą¦Ŗą§ą¦°" #: timezones.h:937 msgid "Turkey" msgstr "ą¦¤ą§ą¦°ą¦øą§ą¦•" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦†ą¦²ą¦¾ą¦øą§ą¦•ą¦¾" #: timezones.h:941 msgid "US/Aleutian" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦†ą¦²ą¦æą¦‰ą¦¶ą¦æą§Ÿą¦¾ą¦Ø" #: timezones.h:942 msgid "US/Arizona" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦†ą¦°ą¦æą¦œą§‹ą¦Øą¦¾" #: timezones.h:943 msgid "US/Central" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦øą§‡ą¦Øą§ą¦Ÿą§ą¦°ą¦¾ą¦²" #: timezones.h:944 msgid "US/Eastern" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦‡ą¦øą§ą¦Ÿą¦¾ą¦°ą§ą¦Ø" # msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦Ŗą§‚ą¦°ą§ą¦¬ą¦¬ą¦°ą§ą¦¤ą§€" #: timezones.h:945 msgid "US/East-Indiana" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦Ŗą§‚ą¦°ą§ą¦¬-ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾" #: timezones.h:946 msgid "US/Hawaii" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦¹ą¦¾ą¦“ą§Ÿą¦¾ą¦‡" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾-ą¦øą§ą¦Ÿą¦¾ą¦°ą§ą¦•" #: timezones.h:948 msgid "US/Michigan" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/মিশিগান" #: timezones.h:949 msgid "US/Mountain" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø" #: timezones.h:950 msgid "US/Pacific" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦Ŗą§ą¦Æą¦¾ą¦øą¦æą¦«ą¦æą¦•" #: timezones.h:951 msgid "US/Samoa" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦øą¦¾ą¦®ą§‹ą§Ÿą¦¾" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "জুলু" #, fuzzy #~ msgid "US/Pacific-New" #~ msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦Ŗą§ą¦Æą¦¾ą¦øą¦æą¦«ą¦æą¦•" #~ msgid "SystemV/AST4" #~ msgstr "SystemV/AST4" #~ msgid "SystemV/AST4ADT" #~ msgstr "SystemV/AST4ADT" #~ msgid "SystemV/CST6" #~ msgstr "SystemV/CST6" #~ msgid "SystemV/CST6CDT" #~ msgstr "SystemV/CST6CDT" #~ msgid "SystemV/EST5" #~ msgstr "SystemV/EST5" #~ msgid "SystemV/EST5EDT" #~ msgstr "SystemV/EST5EDT" #~ msgid "SystemV/HST10" #~ msgstr "SystemV/HST10" #~ msgid "SystemV/MST7" #~ msgstr "SystemV/MST7" #~ msgid "SystemV/MST7MDT" #~ msgstr "SystemV/MST7MDT" #~ msgid "SystemV/PST8" #~ msgstr "SystemV/PST8" #~ msgid "SystemV/PST8PDT" #~ msgstr "SystemV/PST8PDT" #~ msgid "SystemV/YST9" #~ msgstr "SystemV/YST9" #~ msgid "SystemV/YST9YDT" #~ msgstr "SystemV/YST9YDT" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/nds.po0000664000175000017500000020215014632072346024043 0ustar fabiofabio# translation of system-config-date.master-timezones.po to # translation of system-config-date.master-timezones.nds.po to # Low German translation of system-config-date.timezones # Copyright (C) 2004 Red Hat, Inc. # This file is distributed under the same license as the system-config-date package. # # # Automatically generated, 2004. # Nils-Christoph Fiedler , 2010. msgid "" msgstr "" "Project-Id-Version: system-config-date.master-timezones\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-08-16 14:09+0100\n" "Last-Translator: Nils Philippsen \n" "Language-Team: Fedora Low German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nds\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-Language: Low German\n" "X-Generator: vim\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Afrika/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Afrika/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Afrika/Addis_Abeba" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Afrika/Algier" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Afrika/Asmera" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Afrika/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Afrika/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Afrika/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Afrika/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Afrika/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Afrika/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Afrika/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Afrika/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Afrika/Kairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Afrika/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Afrika/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Ceuta & Melilla" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Afrika/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Afrika/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Afrika/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Afrika/Dschibuti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Afrika/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Afrika/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Afrika/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Afrika/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Afrika/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Afrika/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Afrika/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Afrika/Khartum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Afrika/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Afrika/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "Westl. Dem. Rep. Kongo" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Afrika/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Afrika/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Afrika/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Afrika/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Afrika/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "Ɩstl. Dem. Rep. Kongo" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Afrika/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Afrika/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Afrika/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Afrika/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Afrika/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Afrika/Mogadischu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Afrika/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Afrika/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Afrika/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Afrika/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Afrika/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Afrika/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Afrika/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Afrika/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Afrika/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Afrika/Tripolis" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Afrika/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Afrika/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "Amerika/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "Aleuten Inseln" #: timezones.h:63 msgid "America/Anchorage" msgstr "Amerika/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "Alaska-Zeit" #: timezones.h:66 msgid "America/Anguilla" msgstr "Amerika/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "Amerika/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "Amerika/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Tocantins" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Amerika/Argentinien/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Buenos Aires (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Amerika/Argentinien/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "Catamarca (CT), Chubut (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Amerika/Argentinien/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Amerika/Argentinien/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "fast alle Orte (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Amerika/Argentinien/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Jujuy (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Amerika/Argentinien/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "La Rioja (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Amerika/Argentinien/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "Mendoza (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Amerika/Argentinien/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Santa Cruz (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "Amerika/Argentinien/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Amerika/Argentinien/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "San Juan (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "Amerika/Argentinien/San_Luis" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "San Luis (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Amerika/Argentinien/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Tucuman (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Amerika/Argentinien/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Feuerland (Tierra del Fuego, TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "Amerika/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "Amerika/Asuncion" #: timezones.h:110 msgid "America/Atikokan" msgstr "Amerika/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" "Eastern Standard Time - Atikokan, Ontario und Southampton Insel, Nunavut" #: timezones.h:113 msgid "America/Atka" msgstr "Amerika/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "Amerika/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "Bahia" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "Amerika/Bahia_Banderas" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "Mexican Central Time - Bahia de Banderas" #: timezones.h:120 msgid "America/Barbados" msgstr "Amerika/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "Amerika/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "Amapa, E Para" #: timezones.h:124 msgid "America/Belize" msgstr "Amerika/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "Amerika/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "Atlantic Standard Time - Quebec - Untere Nordküste" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Amerika/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "Roraima" #: timezones.h:131 msgid "America/Bogota" msgstr "Amerika/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "Amerika/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "Mountain Time - Süd-Idaho & Ost-Oregon" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Amerika/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Amerika/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "Mountain Time - West-Nunavut" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "Amerika/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "Mato Grosso do Sul" #: timezones.h:142 msgid "America/Cancun" msgstr "Amerika/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "Central Time - Quintana Roo" #: timezones.h:145 msgid "America/Caracas" msgstr "Amerika/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "Amerika/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "Amerika/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "Amerika/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "Amerika/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "Central Time" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Amerika/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "Mexican Mountain Time - Chihuahua fern der US-Grenze" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "Amerika/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "Amerika/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Amerika/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Amerika/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "Mato Grosso" #: timezones.h:161 msgid "America/Curacao" msgstr "Amerika/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Amerika/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "Ostküste, im Norden von Scoresbysund" #: timezones.h:165 msgid "America/Dawson" msgstr "Amerika/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "Pacific Time - Nord Yukon" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Amerika/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" #: timezones.h:171 msgid "America/Denver" msgstr "Amerika/Denver" # #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "Mountain Time" #: timezones.h:174 msgid "America/Detroit" msgstr "Amerika/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "Eastern Time - Michigan - fast alle Orte" #: timezones.h:177 msgid "America/Dominica" msgstr "Amerika/Dominica" # #: timezones.h:178 msgid "America/Edmonton" msgstr "Amerika/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "Mountain Time - Alberta, ƶstl. British-Columbia & westl. Saskatchewan" # #: timezones.h:181 msgid "America/Eirunepe" msgstr "Amerika/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "Westl. Amazonas" # #: timezones.h:184 msgid "America/El_Salvador" msgstr "Amerika/El_Salvador" # #: timezones.h:185 msgid "America/Ensenada" msgstr "Amerika/Ensenada" # #: timezones.h:186 msgid "America/Fortaleza" msgstr "Amerika/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "Nordƶstl. Brasilien (MA, PI, CE, RN, PB)" # #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Amerika/Fort_Wayne" # #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Amerika/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" "Atlantic Time - Nova Scotia - Orte, die der DST (Sommerzeit) 1966-1971 nicht " "folgten" # #: timezones.h:193 msgid "America/Godthab" msgstr "Amerika/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "fast alle Orte" # #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Amerika/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "Atlantic Time - Labrador - fast alle Orte" # #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Amerika/Grand_Turk" # #: timezones.h:200 msgid "America/Grenada" msgstr "Amerika/Grenada" # #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Amerika/Guadeloupe" # #: timezones.h:202 msgid "America/Guatemala" msgstr "Amerika/Guatemala" # #: timezones.h:203 msgid "America/Guayaquil" msgstr "Amerika/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "Festland" # #: timezones.h:206 msgid "America/Guyana" msgstr "Amerika/Guyana" # #: timezones.h:207 msgid "America/Halifax" msgstr "Amerika/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "Atlantic Time - Nova Scotia (fast alle Orte), PEI" # #: timezones.h:210 msgid "America/Havana" msgstr "Amerika/Havanna" # #: timezones.h:211 msgid "America/Hermosillo" msgstr "Amerika/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "Mountain Standard Time - Sonora" # #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Amerika/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "Eastern Time - Indiana - fast alle Orte" # #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Amerika/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "Central Time - Indiana - Starke County" # #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Amerika/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "Eastern Time - Indiana - Crawford County" # #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "Amerika/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "Eastern Time - Indiana - Pike County" # #: timezones.h:226 msgid "America/Indianapolis" msgstr "Amerika/Indianapolis" # #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "Amerika/Indiana/Tell_City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "Central Time - Indiana - Perry County" # #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "Eastern Time - Indiana - Switzerland County" # #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "Amerika/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" # #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "Amerika/Indiana/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "Eastern Time - Indiana - Pulaski County" # #: timezones.h:239 msgid "America/Inuvik" msgstr "Amerika/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "Mountain Time - westliche Northwest Territories" # #: timezones.h:242 msgid "America/Iqaluit" msgstr "Amerika/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "Eastern Time - Ost-Nunavut - fast alle Orte" # #: timezones.h:245 msgid "America/Jamaica" msgstr "Amerika/Jamaika" # #: timezones.h:246 msgid "America/Jujuy" msgstr "Amerika/Jujuy" # #: timezones.h:247 msgid "America/Juneau" msgstr "Amerika/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "Alaska Time - Alaska Panhandle" # #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Amerika/Kentucky/Louisville" # #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "Amerika/Kentucky/Louisville" # #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Amerika/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "Eastern Time - Kentucky - Wayne County" # #: timezones.h:256 msgid "America/Knox_IN" msgstr "Amerika/Knox_IN" # #: timezones.h:257 msgid "America/La_Paz" msgstr "Amerika/La_Paz" # #: timezones.h:258 msgid "America/Lima" msgstr "Amerika/Lima" # #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Amerika/Los_Angeles" # #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "Pacific Time" # #: timezones.h:262 msgid "America/Louisville" msgstr "Amerika/Louisville" # #: timezones.h:263 msgid "America/Maceio" msgstr "Amerika/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "Alagoas" # #: timezones.h:266 msgid "America/Managua" msgstr "Amerika/Managua" # #: timezones.h:267 msgid "America/Manaus" msgstr "Amerika/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "Ɩstl. Amazonas" # #: timezones.h:270 msgid "America/Marigot" msgstr "Amerika/Marigot" # #: timezones.h:271 msgid "America/Martinique" msgstr "Amerika/Martinique" # #: timezones.h:272 msgid "America/Matamoros" msgstr "Amerika/Matamoros" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas nahe der US-" "Grenze" # #: timezones.h:275 msgid "America/Mazatlan" msgstr "Amerika/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "Mountain Time - Südl. Baja, Nayarit, Sinaloa" # #: timezones.h:278 msgid "America/Mendoza" msgstr "Amerika/Mendoza" # #: timezones.h:279 msgid "America/Menominee" msgstr "Amerika/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" # #: timezones.h:282 msgid "America/Merida" msgstr "Amerika/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "Central Time - Campeche, Yucatan" # #: timezones.h:285 msgid "America/Mexico_City" msgstr "Amerika/Mexiko_Stadt" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "Central Time - fast alle Orte" # #: timezones.h:288 msgid "America/Miquelon" msgstr "Amerika/Miquelon" # #: timezones.h:289 msgid "America/Moncton" msgstr "Amerika/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "Atlantic Time - New Brunswick" # #: timezones.h:292 msgid "America/Monterrey" msgstr "Amerika/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas fern der US-" "Grenze" # #: timezones.h:295 msgid "America/Montevideo" msgstr "Amerika/Montevideo" # #: timezones.h:296 msgid "America/Montreal" msgstr "Amerika/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "Eastern Time - Quebec - fast alle Orte" # #: timezones.h:299 msgid "America/Montserrat" msgstr "Amerika/Montserrat" # #: timezones.h:300 msgid "America/Nassau" msgstr "Amerika/Nassau" # #: timezones.h:301 msgid "America/New_York" msgstr "Amerika/New_York" # #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "Eastern Time" # #: timezones.h:304 msgid "America/Nipigon" msgstr "Amerika/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" "Eastern Time - Ontario & Quebec - Orte, die der DST (Sommerzeit) 1967-1973 " "nicht folgten" # #: timezones.h:307 msgid "America/Nome" msgstr "Amerika/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "Alaska Time - West-Alaska" # #: timezones.h:310 msgid "America/Noronha" msgstr "Amerika/Noronha" # #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "Atlantische Inseln" # #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Amerika/North_Dakota/Zentrum" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "Central Time - North Dakota - Oliver County" # #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "Amerika/North_Dakota/New_Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "Central Time - North Dakota - Morton County (außer Mandan-Region)" # #: timezones.h:319 msgid "America/Ojinaga" msgstr "Amerika/Ojinaga" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "US Mountain Time - Chihuahua nahe der US-Grenze" # #: timezones.h:322 msgid "America/Panama" msgstr "Amerika/Panama" # #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Amerika/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "Eastern Time - Pangnirtung, Nunavut" # #: timezones.h:326 msgid "America/Paramaribo" msgstr "Amerika/Paramaribo" # #: timezones.h:327 msgid "America/Phoenix" msgstr "Amerika/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "Mountain Standard Time - Arizona" # #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Amerika/Port-au-Prince" # #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Amerika/Porto_Acre" # #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Amerika/Port_of_Spain" # #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Amerika/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "Rondonia" # #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Amerika/Puerto_Rico" # #: timezones.h:337 msgid "America/Rainy_River" msgstr "Amerika/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "Central Time - Rainy River & Fort Frances, Ontario" # #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Amerika/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "Central Time - Zentral-Nunavut" # #: timezones.h:343 msgid "America/Recife" msgstr "Amerika/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "Pernambuco" # #: timezones.h:346 msgid "America/Regina" msgstr "Amerika/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "Central Standard Time - Saskatchewan - fast alle Orte" #: timezones.h:349 msgid "America/Resolute" msgstr "Amerika/Resolute" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "Eastern Standard Time - Resolute, Nunavut" # #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Amerika/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "Acre" # #: timezones.h:355 msgid "America/Rosario" msgstr "Amerika/Rosario" # #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "Amerika/Santa_Isabel" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "Mexican Pacific Time - Baja California fern der US-Grenze" # #: timezones.h:359 msgid "America/Santarem" msgstr "Amerika/Santarem" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "Westl. Para" # #: timezones.h:362 msgid "America/Santiago" msgstr "Amerika/Santiago" # #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Amerika/Santo_Domingo" # #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Amerika/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "Südl. & Südƶstl. Brasilien (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" # #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Amerika/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Scoresbysund / Ittoqqortoormiit" # #: timezones.h:372 msgid "America/Shiprock" msgstr "Amerika/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "Mountain Time - Navajo" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "Amerika/St_Barthelemy" # #: timezones.h:376 msgid "America/St_Johns" msgstr "Amerika/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "Newfoundland Time, einschließlich südƶstl. Labrador" # #: timezones.h:379 msgid "America/St_Kitts" msgstr "Amerika/St_Kitts" # #: timezones.h:380 msgid "America/St_Lucia" msgstr "Amerika/St_Lucia" # #: timezones.h:381 msgid "America/St_Thomas" msgstr "Amerika/St_Thomas" # #: timezones.h:382 msgid "America/St_Vincent" msgstr "Amerika/St_Vincent" # #: timezones.h:383 msgid "America/Swift_Current" msgstr "Amerika/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "Central Standard Time - Saskatchewan - Mittlerer Westen" # #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Amerika/Tegucigalpa" # #: timezones.h:387 msgid "America/Thule" msgstr "Amerika/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "Thule / Pituffik" # #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Amerika/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "Eastern Time - Thunder Bay, Ontario" # #: timezones.h:393 msgid "America/Tijuana" msgstr "Amerika/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "US Pacific Time - Baja California nahe der US-Grenze" # #: timezones.h:396 msgid "America/Toronto" msgstr "Amerika/Tortola" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "Eastern Time - Ontario - fast alle Orte" # #: timezones.h:399 msgid "America/Tortola" msgstr "Amerika/Tortola" # #: timezones.h:400 msgid "America/Vancouver" msgstr "Amerika/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "Pacific Time - Westliches British Columbia" # #: timezones.h:403 msgid "America/Virgin" msgstr "Amerika/Virgin" # #: timezones.h:404 msgid "America/Whitehorse" msgstr "Amerika/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "Pacific Time - Süd-Yukon" # #: timezones.h:407 msgid "America/Winnipeg" msgstr "Amerika/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "Central Time - Manitoba & West-Ontario" # #: timezones.h:410 msgid "America/Yakutat" msgstr "Amerika/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "Alaska Time - Alaska Panhandle" # #: timezones.h:413 msgid "America/Yellowknife" msgstr "Amerika/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "Mountain Time - zentrale Northwest Territories" # #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Antarktis/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "Casey Station, Bailey Peninsula" # #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Antarktis/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "Davis Station, Vestfold Hills" # #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Antarktis/Dumont d'Urville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Dumont-d'Urville Station, Terre Adelie" # #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "Antarktis/Macquarie" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "Macquarie-Insel Station, Macquarie-Insel" # #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Antarktis/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "Mawson Station, Holme Bay" # #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Antarktis/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "McMurdo Station, Ross Island" # #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Antarktis/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "Palmer Station, Anvers Island" # #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Antarktis/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "Rothera Station, Adelaide Island" # #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antarktis/Südpol" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "Amundsen-Scott Station, South Pole" # #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Antarktis/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "Syowa Station, ƶstl. Ongul Insel" # #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Antarktis/Wostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "Vostok Station, magnetischer Südpol" # #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Arktis/Longyearbyen" # #: timezones.h:450 msgid "Asia/Aden" msgstr "Asien/Aden" # #: timezones.h:451 msgid "Asia/Almaty" msgstr "Asien/Almaty" # #: timezones.h:454 msgid "Asia/Amman" msgstr "Asien/Amman" # #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Asien/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "Moskau+08 - Beringsee" # #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Asien/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" # #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Asien/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "Aqtobe (Aktobe)" # #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Asien/Ashgabat" # #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Asien/Ashkhabad" # #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Asien/Bagdad" # #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Asien/Bahrain" # #: timezones.h:468 msgid "Asia/Baku" msgstr "Asien/Baku" # #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Asien/Bangkok" # #: timezones.h:470 msgid "Asia/Beirut" msgstr "Asien/Beirut" # #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Asien/Bishkek" # #: timezones.h:472 msgid "Asia/Brunei" msgstr "Asien/Brunei" # #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Asien/Kalkutta" # #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Asien/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "Dornod, Sukhbaatar" # #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Asien/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "Zentral-China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, usw." # #: timezones.h:480 msgid "Asia/Chungking" msgstr "Asien/Chungking" # #: timezones.h:481 msgid "Asia/Colombo" msgstr "Asien/Colombo" # #: timezones.h:482 msgid "Asia/Dacca" msgstr "Asien/Dacca" # #: timezones.h:483 msgid "Asia/Damascus" msgstr "Asien/Damaskus" # #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Asien/Dhaka" # #: timezones.h:485 msgid "Asia/Dili" msgstr "Asien/Dili" # #: timezones.h:486 msgid "Asia/Dubai" msgstr "Asien/Dubai" # #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Asien/Duschanbe" # #: timezones.h:488 msgid "Asia/Gaza" msgstr "Asien/Gaza" # #: timezones.h:489 msgid "Asia/Harbin" msgstr "Asien/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Heilongjiang (außer Mohe), Jilin" # #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "Asien/Ho_Chi_Minh_Stadt" # #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Asien/Hong_Kong" # #: timezones.h:494 msgid "Asia/Hovd" msgstr "Asien/Chowd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Bajan-Ɩlgii, Gobi-Altai, Chowd, Uws, Zawchan" # #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Asien/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "Moskau+05 - Baikal-See" # #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Asien/Istanbul" # #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Asien/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "Java & Sumatra" # #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Asien/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "Irian Jaya & die Molukken" # #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Asien/Jerusalem" # #: timezones.h:508 msgid "Asia/Kabul" msgstr "Asien/Kabul" # #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Asien/Kamtschatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "Moskau+08 - Kamtschatka" # #: timezones.h:512 msgid "Asia/Karachi" msgstr "Asien/Karachi" # #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Asien/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "West-Tibet & Xinjiang" # #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "Asien/Kathmandu" # #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Asien/Katmandu" # #: timezones.h:518 msgid "Asia/Kolkata" msgstr "Asien/Kalkutta" # #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Asien/Krasnojarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "Moskau+04 - Jenissei Fluss" # #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Asien/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "Halbinsel Malaysia" # #: timezones.h:525 msgid "Asia/Kuching" msgstr "Asien/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "Sabah & Sarawak" # #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Asien/Kuwait" # #: timezones.h:529 msgid "Asia/Macao" msgstr "Asien/Macao" # #: timezones.h:530 msgid "Asia/Macau" msgstr "Asien/Macau" # #: timezones.h:531 msgid "Asia/Magadan" msgstr "Asien/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "Moskau+08 - Magadan" # #: timezones.h:534 msgid "Asia/Makassar" msgstr "Asien/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "Ost- & Süd-Borneo, Sulawesi, Bali, Kleine Sunda-Inseln, West-Timor" # #: timezones.h:537 msgid "Asia/Manila" msgstr "Asien/Manila" # #: timezones.h:538 msgid "Asia/Muscat" msgstr "Asien/Maskat" # #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Asien/Nikosia" # #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "Asien/Nowokusnezk" # #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "Moskau+03 - Nowokusnezk" # #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Asien/Nowosibirsk" # #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "Moskau+03 - Nowosibirsk" # #: timezones.h:546 msgid "Asia/Omsk" msgstr "Asien/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "Moskau+03 - Westl. Sibirien" # #: timezones.h:549 msgid "Asia/Oral" msgstr "Asien/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "Westl. Kasachstan" # #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Asien/Phnom_Penh" # #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Asien/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "West- & Zentral-Borneo" # #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Asien/Pjƶngjang" # #: timezones.h:557 msgid "Asia/Qatar" msgstr "Asien/Katar" # #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Asien/Qysylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "Qysylorda (Kysyl-Orda, Ksyl-Orda)" # #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Asien/Rangun" # #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Asien/Riad" # #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Asien/Riad87" # #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Asien/Riad88" # #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Asien/Riad89" # #: timezones.h:566 msgid "Asia/Saigon" msgstr "Asien/Saigon" # #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Asien/Sachalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "Moskau+07 - Sachalin Inseln" # #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Asien/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "Westliches Usbekistan" # #: timezones.h:573 msgid "Asia/Seoul" msgstr "Asien/Seoul" # #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Asien/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "Ɩstl. China - Peking, Guangdong, Shanghai, etc." # #: timezones.h:577 msgid "Asia/Singapore" msgstr "Asien/Singapur" # #: timezones.h:578 msgid "Asia/Taipei" msgstr "Asien/Taipei" # #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Asien/Taschkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "Ɩstl. Usbekistan" # #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Asien/Tiflis" # #: timezones.h:583 msgid "Asia/Tehran" msgstr "Asien/Teheran" # #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Asien/Tel_Aviv" # #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Asien/Thimbu" # #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Asien/Thimphu" # #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Asien/Tokio" # #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Asien/Ujung_Pandang" # #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Asien/Ulaanbaatar" # #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Asien/Ulan_Bator" # #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Asien/Ürümqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "Große Teile von Tibet & Xinjiang" # #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Asien/Vientiane" # #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Asien/Wladiwostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "Moskau+07 - Amur Fluss" # #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Asien/Jakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "Moskau+06 - Lena Fluss" # #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Asien/Jekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "Moskau+02 - Ural" # #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Asien/Eriwan" # #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlantik/Azoren" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "Azoren" # #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlantik/Bermuda" # #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlantik/Kanaren" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "Kanarische Inseln" # #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlantik/Kap_Verde" # #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlantik/FƤrƶer" # #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "Atlantik/FƤrƶer" # #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlantik/Jan_Mayen" # #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlantik/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "Madeira Inseln" # #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlantik/Reykjavik" # #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlantik/Südgeorgien" # #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlantik/Stanley" # #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlantik/St._Helena" # #: timezones.h:625 msgid "Australia/ACT" msgstr "Australien/ACT" # #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Australien/Adelaide" # #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "Südaustralien" # #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Australien/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "Queensland - fast alle Orte" # #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Australien/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "Neusüdwales - Yancowinna" # #: timezones.h:635 msgid "Australia/Canberra" msgstr "Australien/Canberra" # #: timezones.h:636 msgid "Australia/Currie" msgstr "Australien/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "Tasmanien - King Island" # #: timezones.h:639 msgid "Australia/Darwin" msgstr "Australien/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "Nordterritorium" # #: timezones.h:642 msgid "Australia/Eucla" msgstr "Australien/Eucla" # #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "Westaustralien - Eucla-Gebiet" # #: timezones.h:645 msgid "Australia/Hobart" msgstr "Australien/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "Tasmanien - fast alle Orte" # #: timezones.h:648 msgid "Australia/LHI" msgstr "Australien/LHI" # #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Australien/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "Queensland - Holiday Islands" # #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Australien/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "Lord-Howe-Insel" # #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Australien/Melbourne" # #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "Viktoria" # #: timezones.h:658 msgid "Australia/North" msgstr "Australien/Nord" # #: timezones.h:659 msgid "Australia/NSW" msgstr "Australien/NSW" # #: timezones.h:660 msgid "Australia/Perth" msgstr "Australien/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "Westaustralien - fast alle Orte" # #: timezones.h:663 msgid "Australia/Queensland" msgstr "Australien/Queensland" # #: timezones.h:664 msgid "Australia/South" msgstr "Australien/Süd" # #: timezones.h:665 msgid "Australia/Sydney" msgstr "Australien/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "Neusüdwales - fast alle Orte" # #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Australien/Tasmanien" # #: timezones.h:669 msgid "Australia/Victoria" msgstr "Australien/Viktoria" # #: timezones.h:670 msgid "Australia/West" msgstr "Australien/West" # #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Australien/Yancowinna" # #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brasilien/Acre" # #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brasilien/DeNoronha" # #: timezones.h:674 msgid "Brazil/East" msgstr "Brasilien/Ost" # #: timezones.h:675 msgid "Brazil/West" msgstr "Brasilien/West" # #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Kanada/Atlantik" # #: timezones.h:677 msgid "Canada/Central" msgstr "Kanada/Zentral" # #: timezones.h:678 msgid "Canada/Eastern" msgstr "Kanada/Ost" # #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Kanada/Ost-Saskatchewan" # #: timezones.h:680 msgid "Canada/Mountain" msgstr "Kanada/Mountain" # #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Kanada/Neufundland" # #: timezones.h:682 msgid "Canada/Pacific" msgstr "Kanada/Pazifik" # #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Kanada/Saskatchewan" # #: timezones.h:684 msgid "Canada/Yukon" msgstr "Kanada/Yukon" # #: timezones.h:685 msgid "CET" msgstr "CET" # #: timezones.h:686 msgid "Chile/Continental" msgstr "Chile/Kontinental" # #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chile/Osterinsel" # #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Kuba" # #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Ƅgypten" #: timezones.h:692 msgid "Eire" msgstr "Irland" # #: timezones.h:693 msgid "EST" msgstr "EST" # #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" # #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" # #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" # #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" # #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" # #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" # #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" # #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" # #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" # #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" # #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" # #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" # #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" # #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" # #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" # #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" # #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" # #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" # #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" # #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" # #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" # #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" # #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" # #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" # #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" # #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" # #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" # #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" # #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" # #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" # #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" # #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" # #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" # #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" # #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" # #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" # #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Europa/Amsterdam" # #: timezones.h:731 msgid "Europe/Andorra" msgstr "Europa/Andorra" # #: timezones.h:732 msgid "Europe/Athens" msgstr "Europa/Athen" # #: timezones.h:733 msgid "Europe/Belfast" msgstr "Europa/Belfast" # #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Europa/Belgrad" # #: timezones.h:735 msgid "Europe/Berlin" msgstr "Europa/Berlin" # #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Europa/Bratislava" # #: timezones.h:737 msgid "Europe/Brussels" msgstr "Europa/Brüssel" # #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Europa/Bukarest" # #: timezones.h:739 msgid "Europe/Budapest" msgstr "Europa/Budapest" # #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Europa/Chişinău" # #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Europa/Kopenhagen" # #: timezones.h:742 msgid "Europe/Dublin" msgstr "Europa/Dublin" # #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Europa/Gibraltar" # #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Europa/Guernsey" # #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Europa/Helsinki" # #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Europa/Isle_of_Man" # #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Europa/Istanbul" # #: timezones.h:748 msgid "Europe/Jersey" msgstr "Europa/Jersey" # #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Europa/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "Moskau-01 - Kaliningrad" # #: timezones.h:752 msgid "Europe/Kiev" msgstr "Europa/Kiew" # #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Europa/Lissabon" # #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Europa/Ljubljana" # #: timezones.h:759 msgid "Europe/London" msgstr "Europa/London" # #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Europa/Luxemburg" # #: timezones.h:761 msgid "Europe/Madrid" msgstr "Europa/Madrid" # #: timezones.h:764 msgid "Europe/Malta" msgstr "Europa/Malta" # #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Europa/Mariehamn" # #: timezones.h:766 msgid "Europe/Minsk" msgstr "Europa/Minsk" # #: timezones.h:767 msgid "Europe/Monaco" msgstr "Europa/Monaco" # #: timezones.h:768 msgid "Europe/Moscow" msgstr "Europa/Moskau" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "Moskau+00 - Westliches Russland" # #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Europa/Nikosia" # #: timezones.h:772 msgid "Europe/Oslo" msgstr "Europa/Oslo" # #: timezones.h:773 msgid "Europe/Paris" msgstr "Europa/Paris" # #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Europa/Podgorica" # #: timezones.h:775 msgid "Europe/Prague" msgstr "Europa/Prag" # #: timezones.h:776 msgid "Europe/Riga" msgstr "Europa/Riga" # #: timezones.h:777 msgid "Europe/Rome" msgstr "Europa/Rom" # #: timezones.h:778 msgid "Europe/Samara" msgstr "Europa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "Moskau - Samara, Udmurtia" # #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Europa/San_Marino" # #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Europa/Sarajevo" # #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Europa/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "Zentral-Crimea" # #: timezones.h:786 msgid "Europe/Skopje" msgstr "Europa/Skopje" # #: timezones.h:787 msgid "Europe/Sofia" msgstr "Europa/Sofia" # #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Europa/Stockholm" # #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Europa/Tallinn" # #: timezones.h:790 msgid "Europe/Tirane" msgstr "Europa/Tirana" # #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Europa/Tiraspol" # #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Europa/Uschhorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "Ruthenien" # #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Europa/Vaduz" # #: timezones.h:796 msgid "Europe/Vatican" msgstr "Europa/Vatikan" # #: timezones.h:797 msgid "Europe/Vienna" msgstr "Europa/Wien" # #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Europa/Vilnius" # #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Europa/Wolgograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "Moskau+00 - Kaspisches Meer" # #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Europa/Warschau" # #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Europa/Zagreb" # #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Europa/Saporischschja" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Saporoschje, ƶstl. Lugansk / Saporischschja, ƶstl. Luhansk" # #: timezones.h:807 msgid "Europe/Zurich" msgstr "Europa/Zürich" # #: timezones.h:808 msgid "Factory" msgstr "Factory" # #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Irland" # #: timezones.h:811 msgid "GMT" msgstr "GMT" # #: timezones.h:812 msgid "GMT0" msgstr "GMT0" # #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" # #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" # #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" # #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" # #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Island" # #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Indischer Ozean/Antananarivo" # #: timezones.h:820 msgid "Indian/Chagos" msgstr "Indischer Ozean/Chagos" # #: timezones.h:821 msgid "Indian/Christmas" msgstr "Indischer Ozean/Weihnachtsinseln" # #: timezones.h:822 msgid "Indian/Cocos" msgstr "Indischer Ozean/Kokosinseln" # #: timezones.h:823 msgid "Indian/Comoro" msgstr "Indischer Ozean/Komoren" # #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Indischer Ozean/Kerguelen" # #: timezones.h:825 msgid "Indian/Mahe" msgstr "Indischer Ozean/Mahe" # #: timezones.h:826 msgid "Indian/Maldives" msgstr "Indischer Ozean/Malediven" # #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Indischer Ozean/Mauritius" # #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Indischer Ozean/Mayotte" # #: timezones.h:829 msgid "Indian/Reunion" msgstr "Indischer Ozean/RĆ©union" # #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" # #: timezones.h:832 msgid "Israel" msgstr "Israel" # #: timezones.h:833 msgid "Jamaica" msgstr "Jamaika" # #: timezones.h:834 msgid "Japan" msgstr "Japan" # #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libyen" # #: timezones.h:837 msgid "MET" msgstr "MET" # #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Mexiko/BajaNorte" # #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Mexiko/BajaSur" # #: timezones.h:840 msgid "Mexico/General" msgstr "Mexiko/General" # #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Mittlerer Osten/Riad87" # #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Mittlerer Osten/Riad88" # #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Mittlerer Osten/Riad89" # #: timezones.h:844 msgid "MST" msgstr "MST" # #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" # #: timezones.h:846 msgid "Navajo" msgstr "Navajo" # #: timezones.h:847 msgid "NZ" msgstr "NZ" # #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" # #: timezones.h:849 msgid "Pacific/Apia" msgstr "Pazifik/Apia" # #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Pazifik/Auckland" # #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Pazifik/Chatham" # #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "Chatham Inseln" # #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "Pazifik/Chuuk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "Chuuk (Truk) und Yap" # #: timezones.h:859 msgid "Pacific/Easter" msgstr "Pazifik/Osterinsel" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "Osterinseln & Sala y Gomez" # #: timezones.h:862 msgid "Pacific/Efate" msgstr "Pazifik/Efate" # #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Pazifik/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "Phoenixinseln" # #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Pazifik/Fakaofo" # #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Pazifik/Fidschi" # #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Pazifik/Funafuti" # #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Pazifik/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "Galapagos-Inseln" # #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Pazifik/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "Gambier Inseln" # #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Pazifik/Guadalcanal" # #: timezones.h:876 msgid "Pacific/Guam" msgstr "Pazifik/Guam" # #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Pazifik/Honolulu" # #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "Hawaii" # #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Pazifik/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "Johnston-Atoll" # #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Pazifik/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "Line-Inseln" # #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Pazifik/Kosrae" # #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "Kosrae" # #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Pazifik/Kwajalein" # #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Pazifik/Majuro" # #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Pazifik/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "Marquesas-Inseln" # #: timezones.h:898 msgid "Pacific/Midway" msgstr "Pazifik/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "Midway-Inseln" # #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Pazifik/Nauru" # #: timezones.h:902 msgid "Pacific/Niue" msgstr "Pazifik/Niue" # #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Pazifik/Norfolk" # #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Pazifik/Noumea" # #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Pazifik/Pago_Pago" # #: timezones.h:906 msgid "Pacific/Palau" msgstr "Pazifik/Palau" # #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Pazifik/Pitcairn" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "Pazifik/Pohnpei" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "Pohnpei (Ponape)" # #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Pazifik/Ponape" # #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Pazifik/Port_Moresby" # #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Pazifik/Rarotonga" # #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Pazifik/Saipan" # #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Pazifik/Samoa" # #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Pazifik/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "Gesellschaftsinseln" # #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Pazifik/Tarawa" # #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "Gilbert-Inseln" # #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Pazifik/Tongatapu" # #: timezones.h:923 msgid "Pacific/Truk" msgstr "Pazifik/Truk" # #: timezones.h:924 msgid "Pacific/Wake" msgstr "Pazifik/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "Wake Island" # #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Pazifik/Wallis" # #: timezones.h:928 msgid "Pacific/Yap" msgstr "Pazifik/Yap" #: timezones.h:929 msgid "Poland" msgstr "Polen" # #: timezones.h:930 msgid "Portugal" msgstr "Portugal" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" # #: timezones.h:932 msgid "PRC" msgstr "PRC" # #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" # #: timezones.h:934 msgid "ROC" msgstr "ROC" # #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapur" #: timezones.h:937 msgid "Turkey" msgstr "Türkei" # #: timezones.h:938 msgid "UCT" msgstr "UCT" # #: timezones.h:939 msgid "Universal" msgstr "Universal" # #: timezones.h:940 msgid "US/Alaska" msgstr "US/Alaska" # #: timezones.h:941 msgid "US/Aleutian" msgstr "US/Aleutian" # #: timezones.h:942 msgid "US/Arizona" msgstr "US/Arizona" # #: timezones.h:943 msgid "US/Central" msgstr "US/Central" # #: timezones.h:944 msgid "US/Eastern" msgstr "US/Eastern" # #: timezones.h:945 msgid "US/East-Indiana" msgstr "US/Ost-Indiana" # #: timezones.h:946 msgid "US/Hawaii" msgstr "US/Hawaii" # #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "US/Indiana-Starke" # #: timezones.h:948 msgid "US/Michigan" msgstr "US/Michigan" # #: timezones.h:949 msgid "US/Mountain" msgstr "US/Mountain" # #: timezones.h:950 msgid "US/Pacific" msgstr "US/Pacific" # #: timezones.h:951 msgid "US/Samoa" msgstr "US/Samoa" # #: timezones.h:952 msgid "UTC" msgstr "UTC" # #: timezones.h:953 msgid "WET" msgstr "WET" # #: timezones.h:954 msgid "W-SU" msgstr "W-SU" # #: timezones.h:955 msgid "Zulu" msgstr "Zulu" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/id.po0000664000175000017500000016724114632072346023666 0ustar fabiofabio# timezones Bahasa Indonesia # Copyright (C) 1999 Free Software Foundation, Inc. # Mohammad DAMT , 1999. # Teguh DC , 2004-2006. # $Id: id.po,v 1.10 2007/04/27 09:16:28 nphilipp Exp $ # msgid "" msgstr "" "Project-Id-Version: ID-timezones 1.0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2006-03-10 23:59+0700\n" "Last-Translator: Teguh DC \n" "Language-Team: LDP Indonesia \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Afrika/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Afrika/Akra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Afrika/Addis_Ababa" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Afrika/Aljazair" #: timezones.h:5 #, fuzzy msgid "Africa/Asmara" msgstr "Afrika/Asmera" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Afrika/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Afrika/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Afrika/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Afrika/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Afrika/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Afrika/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Afrika/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Afrika/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Afrika/Kairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Afrika/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Afrika/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Afrika/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Afrika/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Afrika/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Afrika/Djibouti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Afrika/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Afrika/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Afrika/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Afrika/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Afrika/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Afrika/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Afrika/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Afrika/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Afrika/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Afrika/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Afrika/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Afrika/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Afrika/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Afrika/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Afrika/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Afrika/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Afrika/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Afrika/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Afrika/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Afrika/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Afrika/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Afrika/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Afrika/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Afrika/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Afrika/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Afrika/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Afrika/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Afrika/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Afrika/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Afrika/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Afrika/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Afrika/Tunisia" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Afrika/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "Amerika/Adak" #. comment for time zone America/Adak #: timezones.h:62 #, fuzzy msgid "Aleutian Islands" msgstr "Australia/Queensland" #: timezones.h:63 msgid "America/Anchorage" msgstr "Amerika/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 #, fuzzy msgid "Alaska Time" msgstr "US/Alaska" #: timezones.h:66 msgid "America/Anguilla" msgstr "Amerika/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "Amerika/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "Amerika/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Amerika/Argentina/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Amerika/Argentina/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Amerika/Argentina/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Amerika/Argentina/Kordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Amerika/Argentina/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Amerika/Argentina/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Amerika/Argentina/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Amerika/Argentina/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 #, fuzzy msgid "America/Argentina/Salta" msgstr "Amerika/Argentina/San_Juan" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Amerika/Argentina/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 #, fuzzy msgid "America/Argentina/San_Luis" msgstr "Amerika/Argentina/San_Juan" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Amerika/Argentina/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Amerika/Argentina/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "Amerika/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "Amerika/Asuncion" #: timezones.h:110 #, fuzzy msgid "America/Atikokan" msgstr "Amerika/Atka" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "Amerika/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "Amerika/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "Amerika/Bahia" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "Amerika/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "Amerika/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "Amerika/Belize" #: timezones.h:125 #, fuzzy msgid "America/Blanc-Sablon" msgstr "Amerika/Cancun" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Amerika/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "Amerika/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "Amerika/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Amerika/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Amerika/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "Amerika/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "Amerika/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "Amerika/Karakas" #: timezones.h:146 msgid "America/Catamarca" msgstr "Amerika/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "Amerika/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "Amerika/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "Amerika/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "US/Central" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Amerika/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "Amerika/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "Amerika/Kordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Amerika/Kosta_Rika" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Amerika/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "Amerika/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Amerika/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "Amerika/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Amerika/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "Amerika/Denver" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "US/Mountain" #: timezones.h:174 msgid "America/Detroit" msgstr "Amerika/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "Amerika/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "Amerika/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "Amerika/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Amerika/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "Amerika/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Amerika/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Amerika/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Amerika/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "Amerika/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Amerika/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Amerika/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "Amerika/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Amerika/Guadeloupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "Amerika/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Amerika/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "Amerika/Guyana" #: timezones.h:207 msgid "America/Halifax" msgstr "Amerika/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "Amerika/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Amerika/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Amerika/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Amerika/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Amerika/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 #, fuzzy msgid "America/Indiana/Petersburg" msgstr "Amerika/Indiana/Marengo" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Amerika/Indianapolis" #: timezones.h:227 #, fuzzy msgid "America/Indiana/Tell_City" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 #, fuzzy msgid "America/Indiana/Vincennes" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 #, fuzzy msgid "America/Indiana/Winamac" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "Amerika/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Amerika/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "Amerika/Jamaika" #: timezones.h:246 msgid "America/Jujuy" msgstr "Amerika/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "Amerika/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Amerika/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 #, fuzzy msgid "Eastern Time - Kentucky - Louisville area" msgstr "Amerika/Kentucky/Louisville" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Amerika/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Amerika/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "Amerika/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "Amerika/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Amerika/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 #, fuzzy msgid "Pacific Time" msgstr "Pasifik/Niue" #: timezones.h:262 msgid "America/Louisville" msgstr "Amerika/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "Amerika/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "Amerika/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "Amerika/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 #, fuzzy msgid "America/Marigot" msgstr "Amerika/Maceio" #: timezones.h:271 msgid "America/Martinique" msgstr "Amerika/Martinique" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "Amerika/Manaus" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Amerika/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "Amerika/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "Amerika/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "Amerika/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Amerika/Mexico_City" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "Amerika/Miquelon" #: timezones.h:289 #, fuzzy msgid "America/Moncton" msgstr "Amerika/Edmonton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "Amerika/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "Amerika/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "Amerika/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "Amerika/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "Amerika/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "Amerika/New_York" #. comment for time zone America/New_York #: timezones.h:303 #, fuzzy msgid "Eastern Time" msgstr "US/Eastern" #: timezones.h:304 msgid "America/Nipigon" msgstr "Amerika/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "Amerika/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "Amerika/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 #, fuzzy msgid "Atlantic islands" msgstr "Atlantik/Canary" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Amerika/NOrth_Dakota/Center" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 #, fuzzy msgid "America/North_Dakota/New_Salem" msgstr "Amerika/NOrth_Dakota/Center" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "Amerika/Managua" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "Amerika/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Amerika/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Amerika/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "Amerika/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Amerika/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Amerika/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Amerika/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Amerika/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Amerika/Puerto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Amerika/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Amerika/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "Amerika/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "Amerika/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 #, fuzzy msgid "America/Resolute" msgstr "Amerika/Belem" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Amerika/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "Amerika/Rosario" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "Amerika/Santiago" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 #, fuzzy msgid "America/Santarem" msgstr "Amerika/Santiago" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "Amerika/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Amerika/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Amerika/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Amerika/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "Amerika/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 #, fuzzy msgid "America/St_Barthelemy" msgstr "Amerika/Belem" #: timezones.h:376 msgid "America/St_Johns" msgstr "Amerika/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Amerika/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Amerika/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Amerika/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Amerika/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Amerika/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Amerika/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "Amerika/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Amerika/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "Amerika/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "Amerika/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "Amerika/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "Amerika/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "Amerika/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Amerika/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Amerika/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "Amerika/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Amerika/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Antartika/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Antartika/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Antartika/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "Antartika/McMurdo" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Antartika/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Antartika/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Antartika/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Antartika/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antartika/Kutub_Selatan" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Antartika/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Antartika/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Artik/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Asia/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Asia/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Asia/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Asia/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Asia/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Asia/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Asia/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Asia/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Asia/Baghdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Asia/Bahrain" #: timezones.h:468 msgid "Asia/Baku" msgstr "Asia/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Asia/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Asia/Beirut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Asia/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Asia/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Asia/Kalkuta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Asia/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Asia/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "Asia/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Asia/Kolombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Asia/Daka" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Asia/Damaskus" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Asia/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Asia/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Asia/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Asia/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Asia/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Asia/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 #, fuzzy msgid "Asia/Ho_Chi_Minh" msgstr "Asia/Chongqing" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Asia/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Asia/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Asia/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Asia/Istanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Asia/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Asia/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Asia/Jerusalem" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Asia/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Asia/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Asia/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Asia/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 #, fuzzy msgid "Asia/Kathmandu" msgstr "Asia/Katmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Asia/Katmandu" #: timezones.h:518 #, fuzzy msgid "Asia/Kolkata" msgstr "Asia/Jakarta" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Asia/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Asia/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Asia/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Asia/Kuwait" #: timezones.h:529 msgid "Asia/Macao" msgstr "Asia/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Asia/Makau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Asia/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Asia/Makasar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "Asia/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Asia/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Asia/Nicosia" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "Asia/Irkutsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "Asia/Novosibirsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Asia/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 #, fuzzy msgid "Moscow+03 - Novosibirsk" msgstr "Asia/Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Asia/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "Asia/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Asia/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Asia/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Asia/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Asia/Qatar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Asia/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Asia/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Asia/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Asia/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Asia/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Asia/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Asia/Saigon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Asia/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Asia/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Asia/Seoul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Asia/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "Asia/Singapura" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Asia/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Asia/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Asia/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Asia/Tehran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Asia/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Asia/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Asia/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Asia/Tokyo" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Asia/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Asia/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Asia/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Asia/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Asia/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Asia/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Asia/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Asia/Yekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Asia/Yerevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlantik/Azores" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlantik/Bermuda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlantik/Canary" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlantik/Cape_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlantik/Faeroe" #: timezones.h:616 #, fuzzy msgid "Atlantic/Faroe" msgstr "Atlantik/Faeroe" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlantik/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlantik/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlantik/Reykjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlantik/South_Georgia" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlantik/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlantik/St_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "Australia/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Australia/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 #, fuzzy msgid "South Australia" msgstr "Australia/ACT" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Australia/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Australia/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Australia/Canberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "Australia/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Australia/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 #, fuzzy msgid "Australia/Eucla" msgstr "Australia/Queensland" #. comment for time zone Australia/Eucla #: timezones.h:644 #, fuzzy msgid "Western Australia - Eucla area" msgstr "Australia/Queensland" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Australia/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "Australia/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Australia/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Australia/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Australia/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 #, fuzzy msgid "Victoria" msgstr "Australia/Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "Australia/North" #: timezones.h:659 msgid "Australia/NSW" msgstr "Australia/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "Australia/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Australia/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "Australia/South" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Australia/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Australia/Tasmania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Australia/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "Australia/Barat" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Australia/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brazil/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brazil/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brazil/Timur" #: timezones.h:675 msgid "Brazil/West" msgstr "Brazil/Barat" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Kanada/Atlantik" #: timezones.h:677 msgid "Canada/Central" msgstr "Kanada/Central" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Kanada/Eastern" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Kanada/East-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Kanada/Mountain" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Kanada/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Kanada/Pasifik" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Kanada/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Kanada/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Chili/Kontinental" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chili/EasterIsland" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Kuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Mesir" #: timezones.h:692 msgid "Eire" msgstr "Eire" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Eropa/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Eropa/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Eropa/Athens" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Eropa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Eropa/Belgrade" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Eropa/Berlin" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Eropa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Eropa/Brussels" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Eropa/Bucharest" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Eropa/Budapest" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Eropa/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Eropa/Kopenhagen" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Eropa/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Eropa/Gibraltar" #: timezones.h:744 #, fuzzy msgid "Europe/Guernsey" msgstr "Eropa/Athens" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Eropa/Helsinki" #: timezones.h:746 #, fuzzy msgid "Europe/Isle_of_Man" msgstr "Eropa/Oslo" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Eropa/Istanbul" #: timezones.h:748 #, fuzzy msgid "Europe/Jersey" msgstr "Eropa/Paris" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Eropa/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Eropa/Kiev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Eropa/Lisbon" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Eropa/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Eropa/London" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Eropa/Luxembourg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Eropa/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Eropa/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Eropa/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Eropa/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Eropa/Monako" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Eropa/Moskow" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Eropa/Nicosia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Eropa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Eropa/Paris" #: timezones.h:774 #, fuzzy msgid "Europe/Podgorica" msgstr "Eropa/Andorra" #: timezones.h:775 msgid "Europe/Prague" msgstr "Eropa/Prague" #: timezones.h:776 msgid "Europe/Riga" msgstr "Eropa/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Eropa/Rome" #: timezones.h:778 msgid "Europe/Samara" msgstr "Eropa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Eropa/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Eropa/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Eropa/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Eropa/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Eropa/Sofia" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Eropa/Stockholm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Eropa/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Eropa/Tirane" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Eropa/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Eropa/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Eropa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Eropa/Vatikan" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Eropa/Wina" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Eropa/Vilnius" #: timezones.h:799 #, fuzzy msgid "Europe/Volgograd" msgstr "Eropa/Belgrade" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Eropa/Warsawa" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Eropa/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Eropa/Zaporozhye" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Eropa/Zurich" #: timezones.h:808 msgid "Factory" msgstr "Factory" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Islandia" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Indian/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Indian/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Indian/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Indian/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Indian/Komoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Indian/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Indian/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Indian/Maladewa" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Indian/Mauritius" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Indian/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Indian/Reunion" #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "Israel" #: timezones.h:833 msgid "Jamaica" msgstr "Jamaika" #: timezones.h:834 msgid "Japan" msgstr "Jepang" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libya" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Mexico/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Mexico/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Mexico/General" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Mideast/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Mideast/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Mideast/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Pasifik/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Pasifik/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Pasifik/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 #, fuzzy msgid "Chatham Islands" msgstr "Chili/EasterIsland" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "Pasifik/Truk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 #, fuzzy msgid "Pacific/Easter" msgstr "Pasifik/Easter" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Pasifik/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Pasifik/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Pasifik/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Pasifik/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Pasifik/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Pasifik/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Pasifik/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Pasifik/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Pasifik/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Pasifik/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 #, fuzzy msgid "Hawaii" msgstr "US/Hawaii" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Pasifik/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Pasifik/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Pasifik/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 #, fuzzy msgid "Kosrae" msgstr "Israel" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Pasifik/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Pasifik/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Pasifik/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Pasifik/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Pasifik/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Pasifik/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Pasifik/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Pasifik/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Pasifik/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Pasifik/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Pasifik/Pitcairn" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "Pasifik/Ponape" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Pasifik/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Pasifik/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Pasifik/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Pasifik/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Pasifik/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Pasifik/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Pasifik/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 #, fuzzy msgid "Gilbert Islands" msgstr "Chili/EasterIsland" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Pasifik/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Pasifik/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Pasifik/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Pasifik/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Pasifik/Yap" #: timezones.h:929 msgid "Poland" msgstr "Polandia" #: timezones.h:930 msgid "Portugal" msgstr "Portugal" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapore" #: timezones.h:937 msgid "Turkey" msgstr "Turki" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "US/Alaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "US/Aleutian" #: timezones.h:942 msgid "US/Arizona" msgstr "US/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "US/Central" #: timezones.h:944 msgid "US/Eastern" msgstr "US/Eastern" #: timezones.h:945 msgid "US/East-Indiana" msgstr "US/East-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "US/Hawaii" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "US/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "US/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "US/Mountain" #: timezones.h:950 msgid "US/Pacific" msgstr "US/Pasifik" #: timezones.h:951 msgid "US/Samoa" msgstr "US/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" #, fuzzy #~ msgid "US/Pacific-New" #~ msgstr "US/Pasifik" #~ msgid "SystemV/AST4" #~ msgstr "SystemV/AST4" #~ msgid "SystemV/AST4ADT" #~ msgstr "SystemV/AST4ADT" #~ msgid "SystemV/CST6" #~ msgstr "SystemV/CST6" #~ msgid "SystemV/CST6CDT" #~ msgstr "SystemV/CST6CDT" #~ msgid "SystemV/EST5" #~ msgstr "SystemV/EST5" #~ msgid "SystemV/EST5EDT" #~ msgstr "SystemV/EST5EDT" #~ msgid "SystemV/HST10" #~ msgstr "SystemV/HST10" #~ msgid "SystemV/MST7" #~ msgstr "SystemV/MST7" #~ msgid "SystemV/MST7MDT" #~ msgstr "SystemV/MST7MDT" #~ msgid "SystemV/PST8" #~ msgstr "SystemV/PST8" #~ msgid "SystemV/PST8PDT" #~ msgstr "SystemV/PST8PDT" #~ msgid "SystemV/YST9" #~ msgstr "SystemV/YST9" #~ msgid "SystemV/YST9YDT" #~ msgstr "SystemV/YST9YDT" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/el.po0000664000175000017500000022061514632072346023665 0ustar fabiofabio# translation of el.po to Greek # Timezones Greek Translation. # Copyright (C) 2003 Nikos Charonitakis # This file is distributed under the same license as the redhat-config-date/timezones package. # # # Nikos Charonitakis , 2003, 2004, 2006. # Dimitrios Michelinakis , 2006. # Dimitris Glezos , 2007. # Thalia Papoutsaki , 2010. msgid "" msgstr "" "Project-Id-Version: el\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-03-13 17:14+0200\n" "Last-Translator: thalia papoutsaki \n" "Language-Team: Greek \n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Αφρική/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Αφρική/Άκκρα" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Αφρική/Αντίς_Αμπέμπα" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Αφρική/Αλγέρι" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Αφρική/Asmera" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Αφρική/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Αφρική/ĪœĻ€Ī±Ī¼Ī¬ĪŗĪæ" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Αφρική/ĪœĻ€Ī±Ī½Ī³ĪŗĪæĻĪ¹" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Αφρική/ĪœĻ€Ī±Ī½Ī¶ĪæĻĪ»" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Αφρική/ĪœĻ€Ī¹ĻƒĻƒĪ¬ĪæĻ…" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Αφρική/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Αφρική/ĪœĻ€ĻĪ±Ī¶Ī±Ī²ĪÆĪ»" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Αφρική/ĪœĻ€ĪæĻ…Ī¶ĪæĻ…Ī¼Ļ€ĪæĻĻĪ±" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Αφρική/Κάιρο" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Αφρική/ĪšĪ±Ī¶Ī±Ī¼Ļ€Ī»Ī¬Ī½ĪŗĪ±" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Αφρική/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Ceuta & Melilla" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Αφρική/Κόνακρι" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Αφρική/ĪĻ„Ī±ĪŗĪ¬Ļ" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Αφρική/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Αφρική/Τζιμπουτί" #: timezones.h:23 msgid "Africa/Douala" msgstr "Αφρική/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Αφρική/Ελ_Ī‘ĻŠĪæĻĪ½" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Αφρική/Φρίταουν" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Αφρική/Ī“ĪŗĪ±Ī¼Ļ€ĪæĻĻŒĪ½" #: timezones.h:27 msgid "Africa/Harare" msgstr "Αφρική/Χαράρε" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Αφρική/Ī“Ī¹ĪæĻ‡Ī¬Ī½ĪµĻƒĪ¼Ļ€ĪæĻ…ĻĪ³Īŗ" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Αφρική/ĪšĪ±Ī¼Ļ€Ī¬Ī»Ī±" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Αφρική/Ī§Ī±ĻĻ„ĪæĻĪ¼" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Αφρική/Κιγκάλι" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Αφρική/Κινσάσα" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "Δυτική Ī›Ī±ĻŠĪŗĪ® Δημοκρατία του Κονγκό" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Αφρική/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Αφρική/Λιμπρεβίλ" #: timezones.h:37 msgid "Africa/Lome" msgstr "Αφρική/Λομέ" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Αφρική/Λουάντα" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Αφρική/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "Ανατολική Ī›Ī±ĻŠĪŗĪ® Δημοκρατία του Κονγκό" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Αφρική/Ī›ĪæĻ…ĻƒĪ¬ĪŗĪ±" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Αφρική/ĪœĪ±Ī»Ī¬Ī¼Ļ€Īæ" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Αφρική/ĪœĪ±Ļ€ĪæĻĻ„Īæ" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Αφρική/ĪœĪ±ĻƒĪµĻĪæĻ" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Αφρική/ĪœĻ€Ī±Ī¼Ļ€Ī¬Ī½Īµ" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Αφρική/ĪœĪæĪ³ĪŗĪ±Ī½Ļ„ĪÆĻƒĪæĻ…" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Αφρική/Μονρόβια" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Αφρική/ĪĪ±ĻŠĻĻŒĪ¼Ļ€Ī¹" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Αφρική/Τζαμένα" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Αφρική/ĪĪ¹Ī±Ī¼Ī­Ī¹" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Αφρική/ĪĪæĻ…Ī±Ī¾ĻŒĻ„" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Αφρική/ĪŸĻ…Ī±Ī³ĪŗĪ±Ī½Ļ„ĪæĻĪ³ĪŗĪæĻ…" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Αφρική/Ī ĻŒĻĻ„Īæ ĪĻŒĪ²Īæ" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Αφρική/Σάο_Τομέ" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Αφρική/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Αφρική/Τρίπολη" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Αφρική/Ī¤ĻĪ½Ī¹Ī“Ī±" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Αφρική/Γουίντχουκ" #: timezones.h:60 msgid "America/Adak" msgstr "Αμερική/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "ĪĪ·ĻƒĪ¹Ī¬ Aleutian " #: timezones.h:63 msgid "America/Anchorage" msgstr "Αμερική/Άνκορατζ" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "ĪĻĪ± Ī‘Ī»Ī¬ĻƒĪŗĪ±Ļ‚" #: timezones.h:66 msgid "America/Anguilla" msgstr "Αμερική/Ανγκουίλα" #: timezones.h:67 msgid "America/Antigua" msgstr "Αμερική/Αντίγκουα" #: timezones.h:68 msgid "America/Araguaina" msgstr "Αμερική/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Τοκαντίνς" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Αμερική/Αργεντινή/ĪœĻ€ĪæĻ…Ī­Ī½ĪæĻ‚_Άιρες" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "ĪœĻ€ĪæĻ…Ī­Ī½ĪæĻ‚ Άιρες (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Αμερική/Αργεντινή/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "Catamarca (CT), Chubut (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Αμερική/Αργεντινή/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Αμερική/Αργεντινή/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "Ļ€ĪµĻĪ¹ĻƒĻƒĻŒĻ„ĪµĻĪµĻ‚ περιοχές (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Αμερική/Αργεντινή/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Jujuy (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Αμερική/Αργεντινή/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "Λα Ī”Ī¹ĻŒĻ‡Ī± (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Αμερική/Αργεντινή/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "ĪœĪµĪ½Ļ„ĻŒĪ¶Ī± (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Αμερική/Αργεντινή/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Σάντα ĪšĻĪæĻ…Ī¶ (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "Αμερική/Αργεντινή/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Αμερική/Αργεντινή/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "Σαν Χουάν (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "Αμερική/Αργεντινή/San_Luis" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "Σαν Ī›Ī¹ĪæĻĪ¹Ļ‚ (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Αμερική/Αργεντινή/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Τουκουμαν (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Αμερική/Αργεντινή/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Τιέρα ντελ Φουέγο (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "Αμερική/Ī‘ĻĪæĻĪ¼Ļ€Ī±" #: timezones.h:109 msgid "America/Asuncion" msgstr "Αμερική/Ī‘ĻƒĪæĻ…Ī½ĻƒĪ¹ĻŒĪ½" #: timezones.h:110 msgid "America/Atikokan" msgstr "Αμερική/Ī‘Ļ„Ī¹ĪŗĻŒĪŗĪ±Ī½" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "Ηπα/Ανατολική Ακτή - Atikokan, ĪŸĪ½Ļ„Ī¬ĻĪ¹Īæ και Σαουθάμπτον I, Nunavut" #: timezones.h:113 msgid "America/Atka" msgstr "Αμερική/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "Αμερική/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "ĪœĻ€Ī¬Ļ‡Ī¹Ī± " #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "Αμερική/Bahia" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "Αμερική/ĪœĻ€Ī±ĻĪ¼Ļ€Ī¬Ī½Ļ„ĪæĻ‚" #: timezones.h:121 msgid "America/Belem" msgstr "Αμερική/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "Amapa, E Para" #: timezones.h:124 msgid "America/Belize" msgstr "Αμερική/ĪœĻ€ĪµĪ»ĪÆĪ¶Īµ" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "Αμερική/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "ĪšĪ±Ī½Ī±Ī“Ī¬Ļ‚/Ī‘Ļ„Ī»Ī±Ī½Ļ„Ī¹ĪŗĻŒĻ‚ - ĪšĪµĪ¼Ļ€Ī­Īŗ- Lower North Shore" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Αμερική/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "Roraima" #: timezones.h:131 msgid "America/Bogota" msgstr "Αμερική/ĪœĻ€ĪæĪ³ĪŗĪæĻ„Ī¬" #: timezones.h:132 msgid "America/Boise" msgstr "Αμερική/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "Ī—Ī Ī‘/Mountain - Ī½ĻŒĻ„Ī¹Īæ Idaho & Ī±Ī½Ī±Ļ„ĪæĪ»Ī¹ĪŗĻŒ Oregon" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Αμερική/ĪœĻ€ĪæĻ…Ī­Ī½ĪæĻ‚_Άιρες" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Αμερική/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "Ī—Ī Ī‘/Mountain - Ī“Ļ…Ļ„Ī¹ĪŗĻŒ Nunavut" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "Αμερική/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "ĪœĪ¬Ļ„Īæ Ī“ĪŗĻĻŒĻƒĻƒĪæ ĪĻ„Īæ Σουλ" #: timezones.h:142 msgid "America/Cancun" msgstr "Αμερική/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "Ī—Ī Ī‘/ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĪ® - ĪšĪæĻ…Ī¹Ī½Ļ„Ī¬Ī½Ī± Δου" #: timezones.h:145 msgid "America/Caracas" msgstr "Αμερική/ĪšĪ±ĻĪ¬ĪŗĪ±Ļ‚" #: timezones.h:146 msgid "America/Catamarca" msgstr "Αμερική/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "Αμερική/Καγιέν" #: timezones.h:148 msgid "America/Cayman" msgstr "Αμερική/ĪšĪ¬Ļ…Ī¼Ī±Ī½" #: timezones.h:149 msgid "America/Chicago" msgstr "Αμερική/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "Ī—Ī Ī‘/ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĪ®" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Αμερική/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 #, fuzzy msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "Ī—Ī Ī‘/Mountain - Chihuahua" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "Αμερική/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "Αμερική/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Αμερική/ĪšĻŒĻƒĻ„Ī±_Δίκα" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Αμερική/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "ĪœĪ¬Ļ„Īæ Ī“ĪŗĻĻŒĻƒĻƒĪæ" #: timezones.h:161 msgid "America/Curacao" msgstr "Αμερική/ĪšĪæĻ…ĻĪ±ĪŗĪ¬Īæ" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Αμερική/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "ανατολική ακτή, βόρεια του Scoresbysund" #: timezones.h:165 msgid "America/Dawson" msgstr "Αμερική/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚ - βόρειο Yukon" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Αμερική/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "Ī—Ī Ī‘/Mountain - Dawson Creek & Fort Saint John, Βρετανική Κολομβία" #: timezones.h:171 msgid "America/Denver" msgstr "Αμερική/ĪĻ„Ī­Ī½Ī²ĪµĻ" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "Ī—Ī Ī‘/Mountain" #: timezones.h:174 msgid "America/Detroit" msgstr "Αμερική/ĪĻ„Ī¹Ļ„ĻĻŒĪ¹Ļ„" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "Ī—Ī Ī‘/Ανατολική ακτή - Μίσιγκαν - Ļ€ĪµĻĪ¹ĻƒĻƒĻŒĻ„ĪµĻĪµĻ‚ περιοχές" #: timezones.h:177 msgid "America/Dominica" msgstr "Αμερική/ĪĻ„ĪæĪ¼ĪÆĪ½Ī¹ĪŗĪ±" #: timezones.h:178 msgid "America/Edmonton" msgstr "Αμερική/ĪˆĪ½Ļ„Ī¼ĪæĪ½Ļ„ĪæĪ½" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" "Ī—Ī Ī‘/Mountain - Alberta, ανατολική Βρετανική Κολομβία & Ī“Ļ…Ļ„Ī¹ĪŗĻŒ Saskatchewan" #: timezones.h:181 msgid "America/Eirunepe" msgstr "Αμερική/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "Ī”. Ī‘Ī¼Ī±Ī¶ĻŒĪ½Ī¹ĪæĻ‚" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Αμερική/Ελ_ΣαλβαΓόρ" #: timezones.h:185 msgid "America/Ensenada" msgstr "Αμερική/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Αμερική/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "Ī’Ī‘ Βραζιλία (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Αμερική/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Αμερική/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" "“Ωρα Ī‘Ļ„Ī»Ī±Ī½Ļ„Ī¹ĪŗĪæĻ - Nova Scotia - περιοχές που Γεν Ļ„Ī·ĻĪæĻĪ½ το DST 1966-1971" #: timezones.h:193 msgid "America/Godthab" msgstr "Αμερική/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "Ļ€ĪµĻĪ¹ĻƒĻƒĻŒĻ„ĪµĻĪµĻ‚ περιοχές" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Αμερική/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "“Ωρα Ī‘Ļ„Ī»Ī±Ī½Ļ„Ī¹ĪŗĪæĻ - Ī›Ī±Ī¼Ļ€ĻĪ±Ī½Ļ„ĻŒĻ - Ļ€ĪµĻĪ¹ĻƒĻƒĻŒĻ„ĪµĻĪµĻ‚ περιοχές" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Αμερική/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "Αμερική/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Αμερική/Ī“ĪæĻ…Ī±Ī“ĪµĪ»ĪæĻĻ€Ī·" #: timezones.h:202 msgid "America/Guatemala" msgstr "Αμερική/Γουατεμάλα" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Αμερική/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "ηπειρωτική περιοχή" #: timezones.h:206 msgid "America/Guyana" msgstr "Αμερική/Γουιάνα" #: timezones.h:207 msgid "America/Halifax" msgstr "Αμερική/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "“Ωρα Ī‘Ļ„Ī»Ī±Ī½Ļ„Ī¹ĪŗĪæĻ - Nova Scotia (Ļ€ĪµĻĪ¹ĻƒĻƒĻŒĻ„ĪµĻĪµĻ‚ περιοχές), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "Αμερική/Αβάνα" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Αμερική/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "Ī—Ī Ī‘/Mountain - Sonora" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Αμερική/Ιντιάνα/Ιντιανάπολις" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "Ī—Ī Ī‘/Ανατολική ακτή - Ιντιάνα - Ļ€ĪµĻĪ¹ĻƒĻƒĻŒĻ„ĪµĻĪµĻ‚ περιοχές" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Αμερική/Ιντιάνα/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "Ī—Ī Ī‘/ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĪ® - Ιντιάνα - Starke County" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Αμερική/Ιντιάνα/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "Ī—Ī Ī‘/Ανατολική ακτή - Ιντιάνα - Crawford County" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "Αμερική/Ιντιάνα/Ī ĪµĻ„ĻĪæĻĻ€ĪæĪ»Ī·" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "Ī—Ī Ī‘/Ανατολική ακτή - Ιντιάνα - Pike County" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Αμερική/Ιντιανάπολις" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "Αμερική/Ιντιάνα/Vevay" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "Ī—Ī Ī‘/ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĪ® - Ιντιάνα - Perry County" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Αμερική/Ιντιάνα/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "Ī—Ī Ī‘/Ανατολική ακτή - Ιντιάνα - Switzerland County" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "Αμερική/Ιντιάνα/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "Ī—Ī Ī‘/Ανατολική ακτή - Ιντιάνα - Daviess, Dubois, Knox & Martin Counties" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "Αμερική/ΙνΓιάνα/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "Ī—Ī Ī‘/Ανατολική ακτή - Ιντιάνα - Pulaski County" #: timezones.h:239 msgid "America/Inuvik" msgstr "Αμερική/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "Ī—Ī Ī‘/Mountain - west Northwest Territories" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Αμερική/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "Ī—Ī Ī‘/Ανατολική ακτή - Ī‘Ī½Ī±Ļ„ĪæĪ»Ī¹ĪŗĻŒ Nunavut - Ļ€ĪµĻĪ¹ĻƒĻƒĻŒĻ„ĪµĻĪµĻ‚ περιοχές" #: timezones.h:245 msgid "America/Jamaica" msgstr "Αμερική/Τζαμάικα" #: timezones.h:246 msgid "America/Jujuy" msgstr "Αμερική/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "Αμερική/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "ĪĻĪ± Ī‘Ī»Ī¬ĻƒĪŗĪ±Ļ‚ - Alaska panhandle" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Αμερική/ĪšĪµĪ½Ļ„Ī¬ĪŗĪ¹/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "Ī—Ī Ī‘/Ανατολική Ακτή - ĪšĪµĪ½Ļ„Ī¬ĪŗĪ¹ - περιοχή Louisville" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Αμερική/ĪšĪµĪ½Ļ„Ī¬ĪŗĪ¹/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "Ī—Ī Ī‘/Ανατολική ακτή - ĪšĪµĪ½Ļ„Ī¬ĪŗĪ¹ - Wayne County" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Αμερική/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "Αμερική/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "Αμερική/Λίμα" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Αμερική/Λος_Άντζελες" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "Ī—Ī Ī‘/Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚" #: timezones.h:262 msgid "America/Louisville" msgstr "Αμερική/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "Αμερική/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "Alagoas, Sergipe" #: timezones.h:266 msgid "America/Managua" msgstr "Αμερική/ĪœĪ±Ī½Ī¬Ī³ĪŗĪæĻ…Ī±" #: timezones.h:267 msgid "America/Manaus" msgstr "Αμερική/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "Ī‘ Ī‘Ī¼Ī±Ī¶ĻŒĪ½Ī¹ĪæĻ‚" #: timezones.h:270 msgid "America/Marigot" msgstr "Αμερική/ĪœĪ¬ĻĪ¹Ī³ĪŗĪæĻ„" #: timezones.h:271 msgid "America/Martinique" msgstr "Αμερική/ĪœĪ±ĻĻ„Ī¹Ī½ĪÆĪŗĪ±" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "Αμερική/Manaus" #. comment for time zone America/Matamoros #: timezones.h:274 #, fuzzy msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "Ī—Ī Ī‘/ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĪ® - Coahuila, Durango, Nuevo Leon, Tamaulipas" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Αμερική/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "Ī—Ī Ī‘/Mountain -S Baja, Nayarit, Sinaloa" #: timezones.h:278 msgid "America/Mendoza" msgstr "Αμερική/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "Αμερική/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" "Ī—Ī Ī‘/ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĪ® - Μίσιγκαν - ĪĻ„ĪÆĪŗĪ¹Ī½ĻƒĪæĪ½, Gogebic, Iron & Menominee Counties" #: timezones.h:282 msgid "America/Merida" msgstr "Αμερική/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "Ī—Ī Ī‘/ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĪ® - Campeche, Yucatan" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Αμερική/Μεξικό" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "Ī—Ī Ī‘/ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĪ® - Ļ€ĪµĻĪ¹ĻƒĻƒĻŒĻ„ĪµĻĪµĻ‚ περιοχές" #: timezones.h:288 msgid "America/Miquelon" msgstr "Αμερική/Μικελόν" #: timezones.h:289 msgid "America/Moncton" msgstr "Αμερική/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "“Ωρα Ī‘Ļ„Ī»Ī±Ī½Ļ„Ī¹ĪŗĪæĻ - ĪĪ­Īæ Brunswick" #: timezones.h:292 msgid "America/Monterrey" msgstr "Αμερική/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 #, fuzzy msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "Ī—Ī Ī‘/ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĪ® - Coahuila, Durango, Nuevo Leon, Tamaulipas" #: timezones.h:295 msgid "America/Montevideo" msgstr "Αμερική/ĪœĪæĪ½Ļ„ĪµĪ²Ī¹Ī“Ī­Īæ" #: timezones.h:296 msgid "America/Montreal" msgstr "Αμερική/ĪœĻŒĪ½Ļ„ĻĪµĪ±Ī»" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "Ī—Ī Ī‘/Ανατολική ακτή - ĪšĪµĪ¼Ļ€Ī­Īŗ - Ļ€ĪµĻĪ¹ĻƒĻƒĻŒĻ„ĪµĻĪµĻ‚ περιοχές" #: timezones.h:299 msgid "America/Montserrat" msgstr "Αμερική/ĪœĪæĪ½Ļ„ĻƒĪµĻĪ¬Ļ„" #: timezones.h:300 msgid "America/Nassau" msgstr "Αμερική/ĪĪ±ĻƒĻƒĪ¬ĪæĻ…" #: timezones.h:301 msgid "America/New_York" msgstr "Αμερική/ĪĪ­Ī± ΄όρκη" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "Ī—Ī Ī‘/Ανατολική ακτή" #: timezones.h:304 msgid "America/Nipigon" msgstr "Αμερική/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" "Ī—Ī Ī‘/Ανατολική ακτή - ĪŸĪ½Ļ„Ī¬ĻĪ¹Īæ & ĪšĪµĪ¼Ļ€Ī­Īŗ - περιοχές που Γεν Ļ„Ī·ĻĪæĻĪ½ το DST " "1967-1973" #: timezones.h:307 msgid "America/Nome" msgstr "Αμερική/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "ĪĻĪ± Ī‘Ī»Ī¬ĻƒĪŗĪ±Ļ‚ - Γυτική Ī‘Ī»Ī¬ĻƒĪŗĪ±" #: timezones.h:310 msgid "America/Noronha" msgstr "Αμερική/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "ĪĪ·ĻƒĪ¹Ī¬ Ī‘Ļ„Ī»Ī±Ī½Ļ„Ī¹ĪŗĪæĻ" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Αμερική/Ī’ĻŒĻĪµĪ¹Ī±_ĪĻ„Ī±ĪŗĻŒĻ„Ī±/ĪšĪ­Ī½Ļ„ĻĪæ" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "Ī—Ī Ī‘/ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĪ® - Ī’ĻŒĻĪµĪ¹Ī± ĪĻ„Ī±ĪŗĻŒĻ„Ī± - Oliver County" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "Αμερική/Ī’ĻŒĻĪµĪ¹Ī±_ĪĻ„Ī±ĪŗĻŒĻ„Ī±/ĪĪ­Īæ_Σάλεμ" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "Ī—Ī Ī‘/ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĪ® - Ī’ĻŒĻĪµĪ¹Ī± ĪĻ„Ī±ĪŗĻŒĻ„Ī± - Morton County (ĪµĪŗĻ„ĻŒĻ‚ περιοχής Mandan)" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "Αμερική/ĪœĪ±Ī½Ī¬Ī³ĪŗĪæĻ…Ī±" #. comment for time zone America/Ojinaga #: timezones.h:321 #, fuzzy msgid "US Mountain Time - Chihuahua near US border" msgstr "Ī—Ī Ī‘/Mountain - Chihuahua" #: timezones.h:322 msgid "America/Panama" msgstr "Αμερική/Παναμάς" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Αμερική/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "Ī—Ī Ī‘/Ανατολική ακτή - Pangnirtung, Nunavut" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Αμερική/Παραμαρίμπο" #: timezones.h:327 msgid "America/Phoenix" msgstr "Αμερική/Φοίνιξ" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "Ī—Ī Ī‘/Mountain - Ī‘ĻĪ¹Ī¶ĻŒĪ½Ī±" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Αμερική/Πορτ-Īæ-Πρενς" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Αμερική/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Αμερική/Πορτ_οφ_Σπέιν" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Αμερική/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "Δοντονία" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Αμερική/Πουέρτο Δίκο" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Αμερική/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "Ī—Ī Ī‘/ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĪ® - Rainy River & Fort Frances, ĪŸĪ½Ļ„Ī¬ĻĪ¹Īæ" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Αμερική/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "Ī—Ī Ī‘/ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĪ® - κεντρική Nunavut" #: timezones.h:343 msgid "America/Recife" msgstr "Αμερική/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "Ī ĪµĻĪ½Ī±Ī¼Ļ€ĪæĻĪŗĪæ" #: timezones.h:346 msgid "America/Regina" msgstr "Αμερική/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "Ī—Ī Ī‘/ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĪ® - - Saskatchewan - Ļ€ĪµĻĪ¹ĻƒĻƒĻŒĻ„ĪµĻĪµĻ‚ περιοχές" #: timezones.h:349 msgid "America/Resolute" msgstr "Αμερική/Resolute" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "Ī—Ī Ī‘/Ανατολική - Resolute, Nunavut" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Αμερική/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "Ακρ" #: timezones.h:355 msgid "America/Rosario" msgstr "Αμερική/Rosario" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "Αμερική/Santarem" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 msgid "America/Santarem" msgstr "Αμερική/Santarem" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "Ī”. Para" #: timezones.h:362 msgid "America/Santiago" msgstr "Αμερική/Σαντιάγκο" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Αμερική/Άγιος_Δομίνικος" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Αμερική/Σάο_Πάολο" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "Ī’. και Ī’Ī‘ Βραζιλία (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Αμερική/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Scoresbysund / Ittoqqortoormiit" #: timezones.h:372 msgid "America/Shiprock" msgstr "Αμερική/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "Ī—Ī Ī‘/Mountain - ĪĪ±Ī²Ī¬Ļ‡Īæ" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "Αμερική/Άγιος Βαρθολομαιος (Σεν ĪœĻ€Ī±ĻĻ„Ļ‚)" #: timezones.h:376 msgid "America/St_Johns" msgstr "Αμερική/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "Newfoundland Time, including SE Labrador" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Αμερική/Αγίου_Ī§ĻĪ¹ĻƒĻ„ĻŒĻ†ĪæĻĪæĻ…_(ĪšĪ¹Ļ„Ļ‚)" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Αμερική/Αγία_Λουκία" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Αμερική/Άγιος_Ī˜Ļ‰Ī¼Ī¬Ļ‚" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Αμερική/Άγιος_Βικέντιος" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Αμερική/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "Ī—Ī Ī‘/ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĪ® - Saskatchewan - midwest" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Αμερική/Ī¤ĪµĪ³ĪŗĪæĻ…ĻƒĪ¹Ī³ĪŗĪ¬Ī»Ļ€Ī±" #: timezones.h:387 msgid "America/Thule" msgstr "Αμερική/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "Thule / Pituffik" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Αμερική/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "Ī—Ī Ī‘/Ανατολική ακτή - Thunder Bay, ĪŸĪ½Ļ„Ī¬ĻĪ¹Īæ" #: timezones.h:393 msgid "America/Tijuana" msgstr "Αμερική/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "Αμερική/Ī¤ĪæĻĻŒĪ½Ļ„Īæ" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "Ī—Ī Ī‘/Ανατολική ακτή - ĪŸĪ½Ļ„Ī¬ĻĪ¹Īæ - Ļ€ĪµĻĪ¹ĻƒĻƒĻŒĻ„ĪµĻĪµĻ‚ περιοχές" #: timezones.h:399 msgid "America/Tortola" msgstr "Αμερική/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "Αμερική/Ī’Ī±Ī½ĪŗĪæĻĪ²ĪµĻ" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "Ī—Ī Ī‘/Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚ - Δυτική Κολομβία" #: timezones.h:403 msgid "America/Virgin" msgstr "Αμερική/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Αμερική/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "Ī—Ī Ī‘/ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĪ® - Ī½ĻŒĻ„Ī¹Ī± Yukon" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Αμερική/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "Ī—Ī Ī‘/ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĪ® - Manitoba & Ī“Ļ…Ļ„Ī¹ĪŗĻŒ ĪŸĪ½Ļ„Ī¬ĻĪ¹Īæ" #: timezones.h:410 msgid "America/Yakutat" msgstr "Αμερική/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "ĪĻĪ± Ī‘Ī»Ī¬ĻƒĪŗĪ±Ļ‚ - Alaska panhandle neck" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Αμερική/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "Ī—Ī Ī‘/Mountain - central Northwest Territories" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Ανταρκτική/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "Casey Station, Bailey Peninsula" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Ανταρκτική/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "Davis Station, Vestfold Hills" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Ανταρκτική/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Dumont-d'Urville Station, Terre Adelie" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "Ανταρκτική/McMurdo" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 #, fuzzy msgid "Macquarie Island Station, Macquarie Island" msgstr "McMurdo Station, Ross Island" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Ανταρκτική/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "Mawson Station, Holme Bay" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Ανταρκτική/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "McMurdo Station, Ross Island" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Ανταρκτική/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "Palmer Station, Anvers Island" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Ανταρκτική/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "Rothera Station, Adelaide Island" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Ανταρκτική/ĪĻŒĻ„Ī¹ĪæĻ‚_Ī ĻŒĪ»ĪæĻ‚" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "Amundsen-Scott Station, South Pole" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Ανταρκτική/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "Syowa Station, E Ongul I" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Ανταρκτική/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "Vostok Station, S Magnetic Pole" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Αρκτική/Ī›ĻŒĪ½Ī³ĪŗĪ³ĪµĪ±ĻĪ¼Ļ€Ī³ĪµĪ½" #: timezones.h:450 msgid "Asia/Aden" msgstr "Ī‘ĻƒĪÆĪ±/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Ī‘ĻƒĪÆĪ±/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Ī‘ĻƒĪÆĪ±/Αμμάν" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Ī‘ĻƒĪÆĪ±/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 #, fuzzy msgid "Moscow+08 - Bering Sea" msgstr "ĪœĻŒĻƒĻ‡Ī±+10 - Θάλασσα ĪœĻ€Ī­ĻĪ¹Ī½Ī³Īŗ" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Ī‘ĻƒĪÆĪ±/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Ī‘ĻƒĪÆĪ±/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "Aqtobe (Aktobe)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Ī‘ĻƒĪÆĪ±/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Ī‘ĻƒĪÆĪ±/Ī‘ĻƒĪ³ĪŗĪ±Ī¼Ļ€Ī¬Ļ„" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Ī‘ĻƒĪÆĪ±/ΒαγΓάτη" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Ī‘ĻƒĪÆĪ±/ĪœĻ€Ī±Ļ‡ĻĪ­Ī¹Ī½" #: timezones.h:468 msgid "Asia/Baku" msgstr "Ī‘ĻƒĪÆĪ±/ĪœĻ€Ī±ĪŗĪæĻ" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Ī‘ĻƒĪÆĪ±/ĪœĻ€Ī±Ī½Ī³ĪŗĻŒĪŗ" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Ī‘ĻƒĪÆĪ±/Ī’Ī·ĻĻ…Ļ„ĻŒĻ‚" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Ī‘ĻƒĪÆĪ±/ĪœĻ€Ī¹ĻƒĪŗĪ­Īŗ" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Ī‘ĻƒĪÆĪ±/ĪœĻ€ĻĪæĻ…Ī½Ī­Ī¹" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Ī‘ĻƒĪÆĪ±/ĪšĪ±Ī»ĪŗĪæĻĻ„Ī±" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Ī‘ĻƒĪÆĪ±/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "Dornod, Sukhbaatar" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Ī‘ĻƒĪÆĪ±/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "κεντρική Κίνα - Ī£Ī¹Ļ„ĻƒĪæĻ…Ī¬Ī½, Γιουνάν, Γκουανξί, Σαανχί, Ī“ĪšĪæĻ…ĪÆĪ¶ĪæĻ…, κλπ. " #: timezones.h:480 msgid "Asia/Chungking" msgstr "Ī‘ĻƒĪÆĪ±/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Ī‘ĻƒĪÆĪ±/ĪšĪæĪ»ĻŒĪ¼Ļ€Īæ" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Ī‘ĻƒĪÆĪ±/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Ī‘ĻƒĪÆĪ±/Ī”Ī±Ī¼Ī±ĻƒĪŗĻŒĻ‚" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Ī‘ĻƒĪÆĪ±/ĪĻ„Ī¬ĪŗĪ±" #: timezones.h:485 msgid "Asia/Dili" msgstr "Ī‘ĻƒĪÆĪ±/ĪĻ„ĪÆĪ»Ī¹" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Ī‘ĻƒĪÆĪ±/ĪĻ„ĪæĻ…Ī¼Ļ€Ī¬Ī¹" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Ī‘ĻƒĪÆĪ±/ĪĻ„ĪæĻ…ĻƒĪ¬Ī½Ī¼Ļ€Īµ" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Ī‘ĻƒĪÆĪ±/Γάζα" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Ī‘ĻƒĪÆĪ±/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Heilongjiang (ĪµĪŗĻ„ĻŒĻ‚ Mohe), Jilin" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "Ī‘ĻƒĪÆĪ±/Χο Τσι ĪœĪ¹Ī½Ļ‡" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Ī‘ĻƒĪÆĪ±/Χονγκ_Κογκ" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Ī‘ĻƒĪÆĪ±/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Ī‘ĻƒĪÆĪ±/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "ĪœĻŒĻƒĻ‡Ī±+05 - Λίμνη Βα" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Ī‘ĻƒĪÆĪ±/Istanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Ī‘ĻƒĪÆĪ±/Τζακάρτα" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "Ιάβα και Σουμάτρα" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Ī‘ĻƒĪÆĪ±/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "Irian Jaya και Moluccas" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Ī‘ĻƒĪÆĪ±/Ī™ĪµĻĪæĻ…ĻƒĪ±Ī»Ī®Ī¼" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Ī‘ĻƒĪÆĪ±/ĪšĪ±Ī¼Ļ€ĪæĻĪ»" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Ī‘ĻƒĪÆĪ±/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 #, fuzzy msgid "Moscow+08 - Kamchatka" msgstr "ĪœĻŒĻƒĻ‡Ī±+09 - ĪšĪ±Ī¼Ļ„ĻƒĪ¬Ļ„ĪŗĪ±" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Ī‘ĻƒĪÆĪ±/ĪšĪ±ĻĪ¬Ļ„ĻƒĪ¹" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Ī‘ĻƒĪÆĪ±/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "Ī”Ļ…Ļ„Ī¹ĪŗĻŒ Ī˜Ī™Ī²Ī­Ļ„ και Xinjiang" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "Ī‘ĻƒĪÆĪ±/ĪšĪ±Ļ„Ī¼Ī±Ī½Ļ„ĪæĻ" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Ī‘ĻƒĪÆĪ±/ĪšĪ±Ļ„Ī¼Ī±Ī½Ļ„ĪæĻ" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "Ī‘ĻƒĪÆĪ±/Kolkata" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Ī‘ĻƒĪÆĪ±/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "ĪœĻŒĻƒĻ‡Ī±+04 - Ī ĪæĻ„Ī±Ī¼ĻŒĻ‚ Ī“ĪµĪ¹Ī½Ī¹ĻƒĪ­ĻŠ" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Ī‘ĻƒĪÆĪ±/ĪšĪæĻ…Ī¬Ī»Ī±_Ī›ĪæĻ…Ī¼Ļ€ĪæĻĻ" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "Ī ĪµĪ½Ī¹Ī½ĻƒĪæĻĪ»Ī± Μαλαισία" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Ī‘ĻƒĪÆĪ±/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "Sabah και Sarawak" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Ī‘ĻƒĪÆĪ±/ĪšĪæĻ…Ī²Ī­Ī¹Ļ„" #: timezones.h:529 msgid "Asia/Macao" msgstr "Ī‘ĻƒĪÆĪ±/Μακάο" #: timezones.h:530 msgid "Asia/Macau" msgstr "Ī‘ĻƒĪÆĪ±/Macau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Ī‘ĻƒĪÆĪ±/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "ĪœĻŒĻƒĻ‡Ī±+08 - ΜαγαΓάν" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Ī‘ĻƒĪÆĪ±/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" "Ī±Ī½Ī±Ļ„ĪæĪ»Ī¹ĪŗĻŒ & Ī½ĻŒĻ„Ī¹Īæ ĪœĻ€ĻŒĻĪ½ĪµĪæ, Σέλεμπες, ĪœĻ€Ī±Ī»ĪÆ, ĪĪæĻĻƒĪ± Τενάγκρα, Ī“Ļ…Ļ„Ī¹ĪŗĻŒ Τιμόρ" #: timezones.h:537 msgid "Asia/Manila" msgstr "Ī‘ĻƒĪÆĪ±/Μανίλα" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Ī‘ĻƒĪÆĪ±/ĪœĪæĻ…ĻƒĪŗĪ¬Ļ„" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Ī‘ĻƒĪÆĪ±/Ī›ĪµĻ…ĪŗĻ‰ĻƒĪÆĪ±" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "Ī‘ĻƒĪÆĪ±/Irkutsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "ĪœĻŒĻƒĻ‡Ī±+03 - Novosibirsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Ī‘ĻƒĪÆĪ±/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "ĪœĻŒĻƒĻ‡Ī±+03 - Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Ī‘ĻƒĪÆĪ±/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "ĪœĻŒĻƒĻ‡Ī±+03 - Γυτική Σιβηρία " #: timezones.h:549 msgid "Asia/Oral" msgstr "Ī‘ĻƒĪÆĪ±/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "Ī”Ļ…Ļ„Ī¹ĪŗĻŒ ĪšĪ±Ī¶Ī±ĪŗĻƒĻ„Ī¬Ī½" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Ī‘ĻƒĪÆĪ±/Πνομ_Πενχ" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Ī‘ĻƒĪÆĪ±/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "Ī“Ļ…Ļ„Ī¹ĪŗĻŒ & ĪŗĪµĪ½Ļ„ĻĪ¹ĪŗĻŒ ĪœĻ€ĻŒĻĪ½ĪµĪæ" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Ī‘ĻƒĪÆĪ±/Πιονγιάνγκ" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Ī‘ĻƒĪÆĪ±/ĪšĪ±Ļ„Ī¬Ļ" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Ī‘ĻƒĪÆĪ±/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "Qyzylorda (Kyzylorda, Kzyl-Orda)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Ī‘ĻƒĪÆĪ±/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Ī‘ĻƒĪÆĪ±/Διάντ" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Ī‘ĻƒĪÆĪ±/Διάντ87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Ī‘ĻƒĪÆĪ±/Διάντ88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Ī‘ĻƒĪÆĪ±/Διάντ89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Ī‘ĻƒĪÆĪ±/Σαϊγκόν" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Ī‘ĻƒĪÆĪ±/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "ĪœĻŒĻƒĻ‡Ī±+07 - Ī½Ī®ĻƒĪæĻ‚ Sakhalin" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Ī‘ĻƒĪÆĪ±/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "Ī“Ļ…Ļ„Ī¹ĪŗĻŒ ĪŸĻ…Ī¶Ī¼Ļ€ĪµĪŗĪ¹ĻƒĻ„Ī¬Ī½ " #: timezones.h:573 msgid "Asia/Seoul" msgstr "Ī‘ĻƒĪÆĪ±/Ī£ĪµĪæĻĪ»" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Ī‘ĻƒĪÆĪ±/Σαγκάη" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "ανατολική Κίνα - Πεκίνο, Ī“ĪŗĪæĻ…Ī±Ī½Ļ„ĻŒĪ½Ī³Īŗ, Σαγκάη, κτλ. " #: timezones.h:577 msgid "Asia/Singapore" msgstr "Ī‘ĻƒĪÆĪ±/Ī£Ī¹Ī½Ī³ĪŗĪ±Ļ€ĪæĻĻĪ·" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Ī‘ĻƒĪÆĪ±/Ī¤Ī±ĻŠĻ€Ī­Ī¹" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Ī‘ĻƒĪÆĪ±/ΤασκένΓη" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "Ī±Ī½Ī±Ļ„ĪæĪ»Ī¹ĪŗĻŒ ĪæĻ…Ī¶Ī¼Ļ€ĪµĪŗĪ¹ĻƒĻ„Ī¬Ī½" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Ī‘ĻƒĪÆĪ±/ΤιφλίΓα" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Ī‘ĻƒĪÆĪ±/Τεχεράνη" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Ī‘ĻƒĪÆĪ±/Τελ_Αβίβ" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Ī‘ĻƒĪÆĪ±/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Ī‘ĻƒĪÆĪ±/Ī˜Ī¹Ī¼Ļ€ĪæĻ" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Ī‘ĻƒĪÆĪ±/Τόκιο" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Ī‘ĻƒĪÆĪ±/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Ī‘ĻƒĪÆĪ±/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Ī‘ĻƒĪÆĪ±/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Ī‘ĻƒĪÆĪ±/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "Ļ€ĪµĻĪ¹ĻƒĻƒĻŒĻ„ĪµĻĪ± Ī±Ļ€ĻŒ Ī˜Ī¹Ī²Ī­Ļ„ & Xinjiang" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Ī‘ĻƒĪÆĪ±/Βιεντιάν" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Ī‘ĻƒĪÆĪ±/Ī’Ī»Ī±Ī“Ī¹Ī²ĪæĻƒĻ„ĻŒĪŗ" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "ĪœĻŒĻƒĻ‡Ī±+07 - Αμουρ Ļ€ĪæĻ„Ī±Ī¼ĻŒĻ‚" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Ī‘ĻƒĪÆĪ±/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "ĪœĻŒĻƒĻ‡Ī±+06 - Λένας Ī ĪæĻ„Ī±Ī¼ĻŒĻ‚ " #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Ī‘ĻƒĪÆĪ±/Yekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "ĪœĻŒĻƒĻ‡Ī±+02 - ĪŸĻ…ĻĪ¬Ī»Ī·Ļ‚" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Ī‘ĻƒĪÆĪ±/Ερεβάν" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Ī‘Ļ„Ī»Ī±Ī½Ļ„Ī¹ĪŗĻŒĻ‚/Ī‘Ī¶ĻŒĻĪµĻ‚" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "Ī‘Ī¶ĻŒĻĪµĻ‚" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Ī‘Ļ„Ī»Ī±Ī½Ļ„Ī¹ĪŗĻŒĻ‚/Ī’ĪµĻĪ¼ĪæĻĪ“ĪµĻ‚" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Ī‘Ļ„Ī»Ī±Ī½Ļ„Ī¹ĪŗĻŒĻ‚/Κανάριοι_ĪĪ®ĻƒĪæĪ¹" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "Κανάρια ĪĪ·ĻƒĪ¹Ī¬" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Ī‘Ļ„Ī»Ī±Ī½Ļ„Ī¹ĪŗĻŒĻ‚/Πράσινο_Ακρωτήριο" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Ī‘Ļ„Ī»Ī±Ī½Ļ„Ī¹ĪŗĻŒĻ‚/Ī¦ĪµĻĻŒĪµĻ‚" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "Ī‘Ļ„Ī»Ī±Ī½Ļ„Ī¹ĪŗĻŒĻ‚/Ī¦ĪµĻĻŒĪµĻ‚ ĪĪ®ĻƒĪæĪ¹" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Ī‘Ļ„Ī»Ī±Ī½Ļ„Ī¹ĪŗĻŒĻ‚/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Ī‘Ļ„Ī»Ī±Ī½Ļ„Ī¹ĪŗĻŒĻ‚/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "ĪĪ·ĻƒĪ¹Ī¬ ĪœĪ±Ī“Ī­ĻĪ±Ļ‚" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Ī‘Ļ„Ī»Ī±Ī½Ļ„Ī¹ĪŗĻŒĻ‚/Δέικιαβικ" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Ī‘Ļ„Ī»Ī±Ī½Ļ„Ī¹ĪŗĻŒĻ‚/ĪĻŒĻ„Ī¹Ī±_Γεωργία" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Ī‘Ļ„Ī»Ī±Ī½Ļ„Ī¹ĪŗĻŒĻ‚/Ī£Ļ„Ī¬Ī½Ī»ĪµĻŠ" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Ī‘Ļ„Ī»Ī±Ī½Ļ„Ī¹ĪŗĻŒĻ‚/Αγία_Ελένη" #: timezones.h:625 msgid "Australia/ACT" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/ΑΓελαΐΓα" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "ĪĻŒĻ„Ī¹Ī± Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/ĪœĻ€ĻĪÆĻƒĪ¼Ļ€ĪµĻŠĪ½" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "ĪšĪæĻ…ĪÆĪ½ĻƒĪ»Ī±Ī½Ļ„ - Ļ€ĪµĻĪ¹ĻƒĻƒĻŒĻ„ĪµĻĪµĻ‚ περιοχές" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "ĪĪ­Ī± ĪĻŒĻ„Ī¹Ī± ĪŸĻ…Ī±Ī»ĪÆĪ± - Yancowinna" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/Canberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "Τασμανία - ĪĪ®ĻƒĪæĻ‚ Κίνγκ" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "Northern Territory" #: timezones.h:642 msgid "Australia/Eucla" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/Eucla" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "Δυτική Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ± - περιοχή Eucla " #: timezones.h:645 msgid "Australia/Hobart" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "Ταζμανία - Ļ€ĪµĻĪ¹ĻƒĻƒĻŒĻ„ĪµĻĪµĻ‚ περιοχές" #: timezones.h:648 msgid "Australia/LHI" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "ĪšĪæĻ…ĪÆĪ½ĻƒĪ»Ī±Ī½Ļ„ - Holiday Islands" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "ĪĪ®ĻƒĪæĻ‚ Ī›ĻŒĻĪ½Ļ„ Χάουι" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/ĪœĪµĪ»Ī²ĪæĻĻĪ½Ī·" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/Ī’ĻŒĻĪµĪ¹Ī±" #: timezones.h:659 msgid "Australia/NSW" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/Πέρθ" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "Δυτική Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ± - Ļ€ĪµĻĪ¹ĻƒĻƒĻŒĻ„ĪµĻĪµĻ‚ περιοχές" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/ĪĻŒĻ„Ī¹Ī±" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/ΣίΓνεϊ" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "ĪĪ­Ī± ĪĻŒĻ„Ī¹Ī± ĪŸĻ…Ī±Ī»ĪÆĪ± - Ļ€ĪµĻĪ¹ĻƒĻƒĻŒĻ„ĪµĻĪµĻ‚ περιοχές" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/Tasmania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/Δυτική" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Ī‘Ļ…ĻƒĻ„ĻĪ±Ī»ĪÆĪ±/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Βραζιλία/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Βραζιλία/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Βραζιλία/Ανατολική" #: timezones.h:675 msgid "Brazil/West" msgstr "Βραζιλία/Δυτική" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "ĪšĪ±Ī½Ī±Ī“Ī¬Ļ‚/Ī‘Ļ„Ī»Ī±Ī½Ļ„Ī¹ĪŗĻŒĻ‚" #: timezones.h:677 msgid "Canada/Central" msgstr "ĪšĪ±Ī½Ī±Ī“Ī¬Ļ‚/ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĻŒĻ‚" #: timezones.h:678 msgid "Canada/Eastern" msgstr "ĪšĪ±Ī½Ī±Ī“Ī¬Ļ‚/Ī‘Ī½Ī±Ļ„ĪæĪ»Ī¹ĪŗĻŒĻ‚" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "ĪšĪ±Ī½Ī±Ī“Ī¬Ļ‚/East-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "ĪšĪ±Ī½Ī±Ī“Ī¬Ļ‚/Mountain" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "ĪšĪ±Ī½Ī±Ī“Ī¬Ļ‚/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "ĪšĪ±Ī½Ī±Ī“Ī¬Ļ‚/Pacific" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "ĪšĪ±Ī½Ī±Ī“Ī¬Ļ‚/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "ĪšĪ±Ī½Ī±Ī“Ī¬Ļ‚/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Χιλή/Continental" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Χιλή/EasterIsland" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "ĪšĪæĻĪ²Ī±" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Αίγυπτος" #: timezones.h:692 msgid "Eire" msgstr "Εΐρε" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Ī–ĪæĻ…Ī»ĪæĻ" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Ī†Ī¼ĻƒĻ„ĪµĻĪ½Ļ„Ī±Ī¼" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Ī‘Ī½Ī“ĻŒĻĪ±" #: timezones.h:732 msgid "Europe/Athens" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Αθήνα" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/ĪœĻ€Ī­Ī»Ļ†Ī±ĻƒĻ„" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/ΒελιγράΓι" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Βερολίνο" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/ĪœĻ€ĻĪ±Ļ„Ī¹ĻƒĪ»Ī¬Ī²Ī±" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Βρυξέλες" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Ī’ĪæĻ…ĪŗĪæĻ…ĻĪ­ĻƒĻ„Ī¹" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Ī’ĪæĻ…Ī“Ī±Ļ€Ī­ĻƒĻ„Ī·" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/ĪšĪ¹ĻƒĪ¹Ī½Ī¬ĪæĻ…" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/ĪšĪæĻ€ĪµĪ½Ļ‡Ī¬Ī³Ī·" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Δουβλίνο" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Γιβραλτάρ" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Ī“ĪŗĪæĻ…Ī­ĻĻƒĪ½ĪµĻ…" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Ī•Ī»Ī½ĻƒĪÆĪ½ĪŗĪ¹" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/ĪĪ®ĻƒĪæĻ‚_Μαν" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/ĪšĻ‰Ī½ĻƒĻ„Ī±Ī½Ļ„Ī¹Ī½ĪæĻĻ€ĪæĪ»Ī·" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Τζέρσεϊ" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "ĪœĻŒĻƒĻ‡Ī±-01 - ĪšĪ±Ī»Ī¹Ī½Ī³ĪŗĻĪ±Ī½Ļ„" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Κίεβο" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Ī›Ī¹ĻƒĪ±Ī²ĻŽĪ½Ī±" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Λιουμπλιάνα" #: timezones.h:759 msgid "Europe/London" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/ΛονΓίνο" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Ī›ĪæĻ…Ī¾ĪµĪ¼Ī²ĪæĻĻĪ³Īæ" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/ĪœĪ±Ī“ĻĪÆĻ„Ī·" #: timezones.h:764 msgid "Europe/Malta" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/ĪœĪ¬Ī»Ļ„Ī±" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Μίνσκ" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Μονακό" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/ĪœĻŒĻƒĻ‡Ī±" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "ĪœĻŒĻƒĻ‡Ī±+00 - Γυτική Ī”Ļ‰ĻƒĪÆĪ±" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Ī›ĪµĻ…ĪŗĻ‰ĻƒĪÆĪ±" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Όσλο" #: timezones.h:773 msgid "Europe/Paris" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Παρίσι" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Πράγα" #: timezones.h:776 msgid "Europe/Riga" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Δήγα" #: timezones.h:777 msgid "Europe/Rome" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Ī”ĻŽĪ¼Ī·" #: timezones.h:778 msgid "Europe/Samara" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Σαμάρα" #. comment for time zone Europe/Samara #: timezones.h:780 #, fuzzy msgid "Moscow - Samara, Udmurtia" msgstr "ĪœĻŒĻƒĻ‡Ī±+00 - Σαμάρα, ĪŸĻ…Ī½Ļ„Ī¼ĪæĻ…ĻĻ„ĪÆĪ± " #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Άγιος_ĪœĪ±ĻĪÆĪ½ĪæĻ‚" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Σεράγεβο" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "κεντρική Κριμέα" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Ī£ĪŗĻŒĻ€Ī¹Ī±" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Ī£ĻŒĻ†Ī¹Ī±" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Ī£Ļ„ĪæĪŗĻ‡ĻŒĪ»Ī¼Ī·" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Ταλίν" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Τίρανα" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "Ruthenia" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Ī’Ī±Ī½Ļ„ĪæĻĪ¶" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Ī’Ī±Ļ„Ī¹ĪŗĪ±Ī½ĻŒ" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Βιέννη" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Βίλνα" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Volgograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "ĪœĻŒĻƒĻ‡Ī±+00 - ĪšĪ±ĻƒĻ€ĪÆĪ± θάλασσα " #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Ī’Ī±ĻĻƒĪæĪ²ĪÆĪ±" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Ζάγκρεπ" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Zaporozhye" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Ī•Ļ…ĻĻŽĻ€Ī·/Ζυρίχη" #: timezones.h:808 msgid "Factory" msgstr "Ī•ĻĪ³ĪæĻƒĻ„Ī¬ĻƒĪ¹Īæ" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Γκρήνουιτς" #: timezones.h:816 msgid "Hongkong" msgstr "Χονγκ Κονγκ" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Ī™ĻƒĪ»Ī±Ī½Ī“ĪÆĪ±" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Ī™Ī½Ī“Ī¹ĪŗĻŒĻ‚/Ανταναναρίβο" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Ī™Ī½Ī“Ī¹ĪŗĻŒĻ‚/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Ī™Ī½Ī“Ī¹ĪŗĻŒĻ‚/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Ī™Ī½Ī“Ī¹ĪŗĻŒĻ‚/ĪšĻŒĪŗĪæĻ‚" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Ī™Ī½Ī“Ī¹ĪŗĻŒĻ‚/Comoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Ī™Ī½Ī“Ī¹ĪŗĻŒĻ‚/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Ī™Ī½Ī“Ī¹ĪŗĻŒĻ‚/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Ī™Ī½Ī“Ī¹ĪŗĻŒĻ‚/ĪœĪ±Ī»Ī“ĪÆĪ²ĪµĻ‚" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Ī™Ī½Ī“Ī¹ĪŗĻŒĻ‚/ĪœĪ±Ļ…ĻĪÆĪŗĪ¹ĪæĻ‚" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Ī™Ī½Ī“Ī¹ĪŗĻŒĻ‚/ĪœĪ±Ī³Ī¹ĻŒĻ„" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Ī™Ī½Ī“Ī¹ĪŗĻŒĻ‚/Ī”ĪµĻ‹Ī½Ī¹ĻŒĪ½" #: timezones.h:830 msgid "Iran" msgstr "Ιράν" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "Ī™ĻƒĻĪ±Ī®Ī»" #: timezones.h:833 msgid "Jamaica" msgstr "Τζαμάικα" #: timezones.h:834 msgid "Japan" msgstr "Ιαπωνία" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Ī›Ī¹Ī²ĻĪ·" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Μεξικό/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Μεξικό/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Μεξικό/Γενικά" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Μέση ανατολή/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Μέση ανατολή/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Μέση ανατολή/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "ĪĪ±Ī²Ī¬Ļ‡Īæ" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Άπια" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "ĪĪ·ĻƒĪ¹Ī¬ Chatham " #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Truk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 #, fuzzy msgid "Chuuk (Truk) and Yap" msgstr "Truk (Chuuk) και Yap" #: timezones.h:859 msgid "Pacific/Easter" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/ĪĪ·ĻƒĪ¹Ī¬ του Ī Ī¬ĻƒĻ‡Ī±" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "ĪĪ·ĻƒĪÆ Ī Ī¬ĻƒĻ‡Ī± & Σάλα ι Γκομέζ" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "ĪĪ·ĻƒĪ¹Ī¬ Φοίνικα" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Ī¦Ī±ĪŗĪ±ĻŒĻ†Īæ" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Φίτζι" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Γκαλαπάγκος" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "ĪĪ·ĻƒĪ¹Ī¬ Γκαλαπάγκος" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "ĪĪ·ĻƒĪ¹Ī¬ Γκαπιέρ " #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Γκουάμ" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Ī§ĪæĪ½ĪæĪ»ĪæĻ…Ī»ĪæĻ" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "Χαβάη" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "Johnston Atoll" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "ĪĪ·ĻƒĪ¹Ī¬ Λάιν" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "Kosrae" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "ĪĪ·ĻƒĪ¹Ī¬ ĪœĪ±ĻĪŗĪ­ĻƒĪ±Ļ‚ " #: timezones.h:898 msgid "Pacific/Midway" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "ĪĪ·ĻƒĪ¹Ī¬ ĪœĪÆĪ½Ļ„Ī³ĪæĻ…Ī­ĻŠ" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/ĪĪ±ĪæĻ…ĻĪæĻ" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/ĪĪ¹ĪæĻĪµ" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/ĪĻŒĻĻ†ĪæĪŗ" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/ĪĪæĻ…Ī¼Ī­Ī±" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Πάγκο_Πάγκο" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Παλάου" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Πίτκαιρν" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Ponape" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 #, fuzzy msgid "Pohnpei (Ponape)" msgstr "Ponape (Pohnpei)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Πορτ_ĪœĻŒĻĪµĻƒĪ¼Ļ€Ī¹" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Σαμόα" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Ī¤Ī±ĻŠĻ„Ī®" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "ĪĪ·ĻƒĪ¹Ī¬ Society" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "ĪĪ·ĻƒĪ¹Ī¬ Γκίλμπερτ" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "ĪĪ·ĻƒĪÆ Γουέικ " #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Βαλίς" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚/Yap" #: timezones.h:929 msgid "Poland" msgstr "Πολωνία" #: timezones.h:930 msgid "Portugal" msgstr "Πορτογαλία" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Ī£Ī¹Ī½Ī³ĪŗĪ±Ļ€ĪæĻĻĪ·" #: timezones.h:937 msgid "Turkey" msgstr "Τουρκία" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "Ī—Ī Ī‘/Ī‘Ī»Ī¬ĻƒĪŗĪ±" #: timezones.h:941 msgid "US/Aleutian" msgstr "Ī—Ī Ī‘/Aleutian" #: timezones.h:942 msgid "US/Arizona" msgstr "Ī—Ī Ī‘/Ī‘ĻĪ¹Ī¶ĻŒĪ½Ī±" #: timezones.h:943 msgid "US/Central" msgstr "Ī—Ī Ī‘/ĪšĪµĪ½Ļ„ĻĪ¹ĪŗĪ®" #: timezones.h:944 msgid "US/Eastern" msgstr "Ī—Ī Ī‘/Ανατολική" #: timezones.h:945 msgid "US/East-Indiana" msgstr "Ī—Ī Ī‘/East-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "Ī—Ī Ī‘/Χαβάη" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "Ī—Ī Ī‘/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "Ī—Ī Ī‘/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "Ī—Ī Ī‘/Mountain" #: timezones.h:950 msgid "US/Pacific" msgstr "Ī—Ī Ī‘/Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚" #: timezones.h:951 msgid "US/Samoa" msgstr "Ī—Ī Ī‘/Σαμόα" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Ī–ĪæĻ…Ī»ĪæĻ" #~ msgid "US/Pacific-New" #~ msgstr "Ī—Ī Ī‘/Ī•Ī¹ĻĪ·Ī½Ī¹ĪŗĻŒĻ‚-ĪĪ­ĪæĻ‚" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/ca.po0000664000175000017500000017551114632072346023654 0ustar fabiofabio# Catalan translations for timezones package. # Copyright (C) 2004, 2006, 2007 Free Software Foundation Inc. # This file is distributed under the same license as the # system-config-date package. # # Robert Antoni Buj Gelonch , 2010 # Josep Puigdemont , 2004, 2006, 2007 # # This file is translated according to the glossary and style guide of # SoftcatalĆ . If you plan to modify this file, please read first the page # of the Catalan translation team for the Fedora project at: # http://www.softcatala.org/projectes/fedora/ # and contact the previous translator # # Aquest fitxer s'ha de traduir d'acord amb el recull de termes i la guia # d'estil de SoftcatalĆ . Si voleu modificar aquest fitxer, llegiu si # us plau la pĆ gina de catalanització del projecte Fedora a: # http://www.softcatala.org/projectes/fedora/ # i contacteu l'anterior traductor/a. # msgid "" msgstr "" "Project-Id-Version: timezones\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-09-20 05:41+0100\n" "Last-Translator: Robert Antoni Buj Gelonch \n" "Language-Team: Catalan \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ca\n" "X-Poedit-Language: Catalan\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "ƀfrica/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "ƀfrica/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "ƀfrica/Addis_Ababa" #: timezones.h:4 msgid "Africa/Algiers" msgstr "ƀfrica/Algiers" #: timezones.h:5 msgid "Africa/Asmara" msgstr "ƀfrica/Asmara" #: timezones.h:6 msgid "Africa/Asmera" msgstr "ƀfrica/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "ƀfrica/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "ƀfrica/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "ƀfrica/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "ƀfrica/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "ƀfrica/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "ƀfrica/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "ƀfrica/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "ƀfrica/El_Caire" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "ƀfrica/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "ƀfrica/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Ceuta i Melilla" #: timezones.h:19 msgid "Africa/Conakry" msgstr "ƀfrica/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "ƀfrica/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "ƀfrica/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "ƀfrica/Djibouti" #: timezones.h:23 msgid "Africa/Douala" msgstr "ƀfrica/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "ƀfrica/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "ƀfrica/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "ƀfrica/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "ƀfrica/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "ƀfrica/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "ƀfrica/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "ƀfrica/Khartum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "ƀfrica/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "ƀfrica/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "Rep. Dem. del Congo de l'oest" #: timezones.h:35 msgid "Africa/Lagos" msgstr "ƀfrica/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "ƀfrica/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "ƀfrica/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "ƀfrica/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "ƀfrica/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "Rep. Dem. del Congo de l'est" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "ƀfrica/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "ƀfrica/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "ƀfrica/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "ƀfrica/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "ƀfrica/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "ƀfrica/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "ƀfrica/Monròvia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "ƀfrica/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "ƀfrica/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "ƀfrica/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "ƀfrica/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "ƀfrica/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "ƀfrica/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "ƀfrica/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "ƀfrica/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "ƀfrica/TrĆ­poli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "ƀfrica/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "ƀfrica/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "AmĆØrica/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "Illes Aleutianes" #: timezones.h:63 msgid "America/Anchorage" msgstr "AmĆØrica/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "Horari d'Alaska" #: timezones.h:66 msgid "America/Anguilla" msgstr "AmĆØrica/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "AmĆØrica/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "AmĆØrica/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Tocantins" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "AmĆØrica/Argentina/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Buenos Aires (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "AmĆØrica/Argentina/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "Catamarca (CT), Chubut (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "AmĆØrica/Argentina/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "AmĆØrica/Argentina/Còrdoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "la majoria dels llocs (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "AmĆØrica/Argentina/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Jujuy (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "AmĆØrica/Argentina/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "La Rioja (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "AmĆØrica/Argentina/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "Mendoza (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "AmĆØrica/Argentina/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Santa Cruz (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "AmĆØrica/Argentina/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "AmĆØrica/Argentina/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "San Juan (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "AmĆØrica/Argentina/San_Luis" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "San Luis (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "AmĆØrica/Argentina/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Tucuman (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "AmĆØrica/Argentina/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Tierra del Fuego (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "AmĆØrica/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "AmĆØrica/Asuncion" #: timezones.h:110 msgid "America/Atikokan" msgstr "AmĆØrica/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "AmĆØrica/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "AmĆØrica/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "AmĆØrica/Bahia_Banderas" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "AmĆØrica/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "AmĆØrica/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "AmĆØrica/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "AmĆØrica/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "AmĆØrica/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "AmĆØrica/BogotĆ " #: timezones.h:132 msgid "America/Boise" msgstr "AmĆØrica/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "AmĆØrica/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "AmĆØrica/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "AmĆØrica/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "AmĆØrica/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "AmĆØrica/Caraques" #: timezones.h:146 msgid "America/Catamarca" msgstr "AmĆØrica/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "AmĆØrica/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "AmĆØrica/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "AmĆØrica/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "Horari cental" #: timezones.h:152 msgid "America/Chihuahua" msgstr "AmĆØrica/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "AmĆØrica/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "AmĆØrica/Còrdoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "AmĆØrica/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "AmĆØrica/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "AmĆØrica/CuraƧao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "AmĆØrica/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "AmĆØrica/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "AmĆØrica/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "AmĆØrica/Denver" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "US/Mountain" #: timezones.h:174 msgid "America/Detroit" msgstr "AmĆØrica/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "AmĆØrica/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "AmĆØrica/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "AmĆØrica/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "AmĆØrica/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "AmĆØrica/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "AmĆØrica/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "Brazil NE (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "AmĆØrica/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "AmĆØrica/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "Horari de l'AtlĆ ntic - Nova escòcia - llocs que no van observar l'horari d'estiu 1966-1971" #: timezones.h:193 msgid "America/Godthab" msgstr "AmĆØrica/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 #: timezones.h:364 #: timezones.h:453 #: timezones.h:591 #: timezones.h:754 #: timezones.h:852 #: timezones.h:894 msgid "most locations" msgstr "la majoria dels llocs" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "AmĆØrica/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "Horari de l'AtlĆ ntic - Labrador - la majoria de llocs" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "AmĆØrica/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "AmĆØrica/Granada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "AmĆØrica/Guadalupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "AmĆØrica/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "AmĆØrica/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 #: timezones.h:757 #: timezones.h:763 msgid "mainland" msgstr "continent" #: timezones.h:206 msgid "America/Guyana" msgstr "AmĆØrica/Guaiana" #: timezones.h:207 msgid "America/Halifax" msgstr "AmĆØrica/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "Horari de l'AtlĆ ntic - Nova Escòcia (la majoria de llocs), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "AmĆØrica/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "AmĆØrica/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "AmĆØrica/Indiana/IndianĆ polis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "Horari oriental - Indiana - la majoria de llocs" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "AmĆØrica/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "Horari central - Indiana - Comptat d'Starke" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "AmĆØrica/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "Horari oriental- Indiana - Comptat de Crawford" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "AmĆØrica/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "Horari oriental- Indiana - Comptat de Pike" #: timezones.h:226 msgid "America/Indianapolis" msgstr "AmĆØrica/IndianĆ polis" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "AmĆØrica/Indiana/Tell_City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "Horari central - Indiana - Comptat de Perry" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "AmĆØrica/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "Horari oriental - Indiana - Comptat de SuĆÆssa" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "AmĆØrica/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "Horari oriental - Indiana - Comptats de Daviess, Dubois, Knox i Martin" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "AmĆØrica/Indiana/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "Horari oriental- Indiana - Comptat de Pulaski" #: timezones.h:239 msgid "America/Inuvik" msgstr "AmĆØrica/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "AmĆØrica/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "Horari oriental - Nunavut de l'est - la majoria de llocs" #: timezones.h:245 msgid "America/Jamaica" msgstr "AmĆØrica/Jamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "AmĆØrica/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "AmĆØrica/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "AmĆØrica/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "Horari oriental - Kentucky - Zona de Louisville" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "AmĆØrica/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "Horari oriental - Kentucky - Comptat de Wayne" #: timezones.h:256 msgid "America/Knox_IN" msgstr "AmĆØrica/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "AmĆØrica/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "AmĆØrica/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "AmĆØrica/Los_ƀngeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "Horari del PacĆ­fic" #: timezones.h:262 msgid "America/Louisville" msgstr "AmĆØrica/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "AmĆØrica/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "AmĆØrica/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "AmĆØrica/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "Amazones E" #: timezones.h:270 msgid "America/Marigot" msgstr "AmĆØrica/Marigot" #: timezones.h:271 msgid "America/Martinique" msgstr "AmĆØrica/Martinica" #: timezones.h:272 msgid "America/Matamoros" msgstr "AmĆØrica/Matamoros" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "Horari central dels EEUU - Coahuila, Durango, Nuevo Leon, Tamaulipas pròxims al marge dels EEUU" #: timezones.h:275 msgid "America/Mazatlan" msgstr "AmĆØrica/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "AmĆØrica/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "AmĆØrica/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "Horari central - Michigan - Comptats de Dickinson, Gogebic, Iron i Menominee" #: timezones.h:282 msgid "America/Merida" msgstr "AmĆØrica/MĆØrida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "Horari central - Campeche, Yucatan" #: timezones.h:285 msgid "America/Mexico_City" msgstr "AmĆØrica/Ciutat_de_MĆØxic" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "Horari central - la majoria de llocs" #: timezones.h:288 msgid "America/Miquelon" msgstr "AmĆØrica/Miquelon" #: timezones.h:289 msgid "America/Moncton" msgstr "AmĆØrica/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "Horari de l'AtlĆ ntic - Nova Brunsvic" #: timezones.h:292 msgid "America/Monterrey" msgstr "AmĆØrica/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from US border" msgstr "Horari central de MĆØxic - Coahuila, Durango, Nuevo Leon, Tamaulipas fora del marge dels EEUU" #: timezones.h:295 msgid "America/Montevideo" msgstr "AmĆØrica/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "AmĆØrica/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "Horari oriental - Quebec - la majoria de llocs" #: timezones.h:299 msgid "America/Montserrat" msgstr "AmĆØrica/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "AmĆØrica/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "AmĆØrica/Nova_York" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "Horari oriental" #: timezones.h:304 msgid "America/Nipigon" msgstr "AmĆØrica/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "Horari oriental - Ontario i Quebec - llocs que no van observar l'horari d'estiu 1967-1973" #: timezones.h:307 msgid "America/Nome" msgstr "AmĆØrica/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "Horari d'Alaska - Alaska de l'oest" #: timezones.h:310 msgid "America/Noronha" msgstr "AmĆØrica/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "Illes de l'AtlĆ ntic" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "AmĆØrica/Dakota_del_Nord/Center" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "Horari central - Dakota del nord - Comptat d'Oliver" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "AmĆØrica/Dakota_del_Nord/New_Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "Horari central - Dakota del nord - Comptat de Morton (exceptuant la zona de Mandan)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "AmĆØrica/Ojinaga" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "AmĆØrica/PanamĆ " #: timezones.h:323 msgid "America/Pangnirtung" msgstr "AmĆØrica/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "AmĆØrica/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "AmĆØrica/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "AmĆØrica/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "AmĆØrica/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "AmĆØrica/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "AmĆØrica/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "Rondonia" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "AmĆØrica/Puerto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "AmĆØrica/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "AmĆØrica/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "Horari central - Nunavut central" #: timezones.h:343 msgid "America/Recife" msgstr "AmĆØrica/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "Pernambuco" #: timezones.h:346 msgid "America/Regina" msgstr "AmĆØrica/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "Horari central estĆ ndard - Saskatchewan - la majoria dels llocs" #: timezones.h:349 msgid "America/Resolute" msgstr "AmĆØrica/Resolute" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "Horari oriental estĆ ndard - Resolute, Nunavut" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "AmĆØrica/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "AmĆØrica/Rosario" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "AmĆØrica/Santa_Isabel" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "Horari del PacĆ­fic MexicĆ  - Baixa California fora del marge dels EEUU" #: timezones.h:359 msgid "America/Santarem" msgstr "AmĆØrica/Santarem" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "AmĆØrica/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "AmĆØrica/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "AmĆØrica/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "Brasil S/SE (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "AmĆØrica/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "AmĆØrica/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "AmĆØrica/St_Barthelemy" #: timezones.h:376 msgid "America/St_Johns" msgstr "AmĆØrica/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "AmĆØrica/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "AmĆØrica/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "AmĆØrica/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "AmĆØrica/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "AmĆØrica/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "AmĆØrica/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "AmĆØrica/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "AmĆØrica/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "AmĆØrica/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "AmĆØrica/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "AmĆØrica/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "AmĆØrica/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "AmĆØrica/Virginia" #: timezones.h:404 msgid "America/Whitehorse" msgstr "AmĆØrica/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "AmĆØrica/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "AmĆØrica/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "AmĆØrica/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "AntĆ rtida/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "AntĆ rtida/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "AntĆ rtida/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "AntĆ rtida/Macquarie" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "AntĆ rtida/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "AntĆ rtida/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "AntĆ rtida/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "AntĆ rtida/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "AntĆ rtida/Pol_Sud" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "AntĆ rtida/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "AntĆ rtida/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Arctic/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "ƀsia/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "ƀsia/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "ƀsia/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "ƀsia/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "ƀsia/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "ƀsia/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "ƀsia/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "ƀsia/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "ƀsia/Bagdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "ƀsia/Bahrain" #: timezones.h:468 msgid "Asia/Baku" msgstr "ƀsia/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "ƀsia/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "ƀsia/Beirut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "ƀsia/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "ƀsia/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "ƀsia/Calcuta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "ƀsia/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "ƀsia/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "ƀsia/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "ƀsia/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "ƀsia/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "ƀsia/Damasc" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "ƀsia/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "ƀsia/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "ƀsia/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "ƀsia/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "ƀsia/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "ƀsia/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "ƀsia/Ho_Chi_Minh" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "ƀsia/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "ƀsia/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "ƀsia/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "Moscou+05 - Llac Baikal" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "ƀsia/Estanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "ƀsia/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "Java i Sumatra" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "ƀsia/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "ƀsia/Jerusalem" #: timezones.h:508 msgid "Asia/Kabul" msgstr "ƀsia/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "ƀsia/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "ƀsia/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "ƀsia/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "ƀsia/KatmandĆŗ" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "ƀsia/KatmandĆŗ" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "ƀsia/Kolkata" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "ƀsia/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "ƀsia/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "ƀsia/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "ƀsia/Kuwait" #: timezones.h:529 msgid "Asia/Macao" msgstr "ƀsia/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "ƀsia/Macau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "ƀsia/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "Moscou+08 - Magadan" #: timezones.h:534 msgid "Asia/Makassar" msgstr "ƀsia/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "ƀsia/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "ƀsia/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "ƀsia/Nicòsia" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "ƀsia/Novokuznetsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "Moscou+03 - Novosibirsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "ƀsia/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "Moscou+03 - Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "ƀsia/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "ƀsia/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "ƀsia/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "ƀsia/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "Borneo oest i cental" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "ƀsia/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "ƀsia/Qatar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "ƀsia/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "ƀsia/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "ƀsia/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "ƀsia/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "ƀsia/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "ƀsia/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "ƀsia/Saigon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "ƀsia/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "ƀsia/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "Uzbekistan de l'oest" #: timezones.h:573 msgid "Asia/Seoul" msgstr "ƀsia/Seul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "ƀsia/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "ƀsia/Singapur" #: timezones.h:578 msgid "Asia/Taipei" msgstr "ƀsia/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "ƀsia/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "Uzbekistan de l'est" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "ƀsia/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "ƀsia/Teheran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "ƀsia/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "ƀsia/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "ƀsia/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "ƀsia/Tokyo" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "ƀsia/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "ƀsia/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "ƀsia/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "ƀsia/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "La major part del Tibet i Xinjiang" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "ƀsia/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "ƀsia/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "ƀsia/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "ƀsia/Yekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "ƀsia/Yerevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "AtlĆ ntic/Azores" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "AtlĆ ntic/Bermuda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "AtlĆ ntic/CanĆ ries" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "Illes CanĆ ries" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "AtlĆ ntic/Cap_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "AtlĆ ntic/Faeroe" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "AtlĆ ntic/Faroe" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "AtlĆ ntic/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "AtlĆ ntic/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "AtlĆ ntic/Reykjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "AtlĆ ntic/South_Georgia" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "AtlĆ ntic/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "AtlĆ ntic/St_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "AustrĆ lia/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "AustrĆ lia/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "AustrĆ lia del sur" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "AustrĆ lia/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "AustrĆ lia/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "AustrĆ lia/Canberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "AustrĆ lia/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "AustrĆ lia/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 msgid "Australia/Eucla" msgstr "AustrĆ lia/Eucla" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "AustrĆ lia occidental - Zona d'Eucla" #: timezones.h:645 msgid "Australia/Hobart" msgstr "AustrĆ lia/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "AustrĆ lia/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "AustrĆ lia/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "AustrĆ lia/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "AustrĆ lia/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "Victòria" #: timezones.h:658 msgid "Australia/North" msgstr "AustrĆ lia/Nord" #: timezones.h:659 msgid "Australia/NSW" msgstr "AustrĆ lia/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "AustrĆ lia/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "AustrĆ lia/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "AustrĆ lia/Sud" #: timezones.h:665 msgid "Australia/Sydney" msgstr "AustrĆ lia/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "AustrĆ lia/TasmĆ nia" #: timezones.h:669 msgid "Australia/Victoria" msgstr "AustrĆ lia/Victòria" #: timezones.h:670 msgid "Australia/West" msgstr "AustrĆ lia/Oest" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "AustrĆ lia/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brasil/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brasil/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brasil/Est" #: timezones.h:675 msgid "Brazil/West" msgstr "Brasil/Oest" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "CanadĆ /AtlĆ ntic" #: timezones.h:677 msgid "Canada/Central" msgstr "CanadĆ /Central" #: timezones.h:678 msgid "Canada/Eastern" msgstr "CanadĆ /Oriental" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "CanadĆ /Saskatchewan-Est" #: timezones.h:680 msgid "Canada/Mountain" msgstr "CanadĆ /Mountain" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "CanadĆ /Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "CanadĆ /PacĆ­fic" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "CanadĆ /Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "CanadĆ /Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Xile/Continental" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Xile/Illa_de_Pasqua" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Cuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Egipte" #: timezones.h:692 msgid "Eire" msgstr "Irlanda" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Europa/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Europa/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Europa/Atenes" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Europa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Europa/Belgrad" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Europa/BerlĆ­n" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Europa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Europa/BrusselĀ·les" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Europa/Bucarest" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Europa/Budapest" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Europa/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Europa/Copenhagen" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Europa/DublĆ­n" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Europa/Gibraltar" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Europa/Guernsey" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Europa/Helsinki" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Europa/Illa_de_Man" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Europa/Estambul" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Europa/Jersey" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Europa/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "Moscou-01 - Kaliningrad" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Europa/Kiev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Europa/Lisboa" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Europa/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Europa/Londres" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Europa/Luxemburg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Europa/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Europa/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Europe/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Europa/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Europa/Mònaco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Europa/Moscou" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Europa/Nicòsia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Europa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Europa/ParĆ­s" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Europa/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Europa/Praga" #: timezones.h:776 msgid "Europe/Riga" msgstr "Europa/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Europa/Rome" #: timezones.h:778 msgid "Europe/Samara" msgstr "Europa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "Moscou - Samara, Udmurtia" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Europa/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Europa/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Europa/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "Crimea central" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Europa/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Europa/Sofia" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Europa/Estocolm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Europa/Tallin" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Europa/Tirane" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Europa/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Europa/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Europa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Europa/VaticĆ " #: timezones.h:797 msgid "Europe/Vienna" msgstr "Europa/Viena" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Europa/Vilnius" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Europa/Volgograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Europa/Varsòvia" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Europa/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Europa/Zaporozhye" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Europa/ZĆŗrich" #: timezones.h:808 msgid "Factory" msgstr "FĆ brica" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Irlanda" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "IslĆ ndia" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "ƍndic/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "ƍndic/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "ƍndic/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "ƍndic/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "ƍndic/Comoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "ƍndic/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "ƍndic/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "ƍndic/Maldives" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "ƍndic/Mauritius" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "ƍndic/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "ƍndic/Reunion" #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "Israel" #: timezones.h:833 msgid "Jamaica" msgstr "Jamaica" #: timezones.h:834 msgid "Japan" msgstr "Japó" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 #: timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "LĆ­bia" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "MĆØxic/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "MĆØxic/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "MĆØxic/General" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Mideast/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Mideast/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Mideast/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "PacĆ­fic/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "PacĆ­fic/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "PacĆ­fic/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "Illes_Chatham" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "PacĆ­fic/Chuuk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 msgid "Pacific/Easter" msgstr "PacĆ­fic/Pasqua" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "PacĆ­fic/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "PacĆ­fic/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "PacĆ­fic/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "PacĆ­fic/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "PacĆ­fic/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "PacĆ­fic/GalĆ pagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "PacĆ­fic/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "PacĆ­fic/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "PacĆ­fic/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "PacĆ­fic/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "Hawaii" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "PacĆ­fic/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "PacĆ­fic/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "PacĆ­fic/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "Kosrae" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "PacĆ­fic/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "PacĆ­fic/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "PacĆ­fic/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "PacĆ­fic/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "PacĆ­fic/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "PacĆ­fic/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "PacĆ­fic/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "PacĆ­fic/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "PacĆ­fic/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "PacĆ­fic/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "PacĆ­fic/Pitcairn" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "PacĆ­fic/Pohnpei" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "PacĆ­fic/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "PacĆ­fic/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "PacĆ­fic/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "PacĆ­fic/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "PacĆ­fic/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "PacĆ­fic/TahitĆ­" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "PacĆ­fic/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "Illes de Gilbert" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "PacĆ­fic/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "PacĆ­fic/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "PacĆ­fic/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "PacĆ­fic/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "PacĆ­fic/Yap" #: timezones.h:929 msgid "Poland" msgstr "Polònia" #: timezones.h:930 msgid "Portugal" msgstr "Portugal" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapur" #: timezones.h:937 msgid "Turkey" msgstr "Turquia" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "EEUU/Alaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "EEUU/Aleutian" #: timezones.h:942 msgid "US/Arizona" msgstr "EEUU/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "EEUU/Central" #: timezones.h:944 msgid "US/Eastern" msgstr "EEUU/Oriental" #: timezones.h:945 msgid "US/East-Indiana" msgstr "EEUU/Indiana-Est" #: timezones.h:946 msgid "US/Hawaii" msgstr "EEUU/Hawaii" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "EEUU/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "EEUU/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "EEUU/Mountain" #: timezones.h:950 msgid "US/Pacific" msgstr "EEUU/PacĆ­fic" #: timezones.h:951 msgid "US/Samoa" msgstr "EEUU/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" #~ msgid "US/Pacific-New" #~ msgstr "US/PacĆ­fic-Nou" #~ msgid "SystemV/AST4" #~ msgstr "SystemV/AST4" #~ msgid "SystemV/AST4ADT" #~ msgstr "SystemV/AST4ADT" #~ msgid "SystemV/CST6" #~ msgstr "SystemV/CST6" #~ msgid "SystemV/CST6CDT" #~ msgstr "SystemV/CST6CDT" #~ msgid "SystemV/EST5" #~ msgstr "SystemV/EST5" #~ msgid "SystemV/EST5EDT" #~ msgstr "SystemV/EST5EDT" #~ msgid "SystemV/HST10" #~ msgstr "SystemV/HST10" #~ msgid "SystemV/MST7" #~ msgstr "SystemV/MST7" #~ msgid "SystemV/MST7MDT" #~ msgstr "SystemV/MST7MDT" #~ msgid "SystemV/PST8" #~ msgstr "SystemV/PST8" #~ msgid "SystemV/PST8PDT" #~ msgstr "SystemV/PST8PDT" #~ msgid "SystemV/YST9" #~ msgstr "SystemV/YST9" #~ msgid "SystemV/YST9YDT" #~ msgstr "SystemV/YST9YDT" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/nb.po0000664000175000017500000017274114632072346023672 0ustar fabiofabio# Kjartan Maraas , 2006-2010. # msgid "" msgstr "" "Project-Id-Version: timezones 3.0.13\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-10-31 15:14+0100\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian/Bokmaal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: \n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Afrika/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Afrika/Akra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Afrika/Addis_Abeba" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Afrika/Algerie" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Afrika/Asmara" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Afrika/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Afrika/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Afrika/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Afrika/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Afrika/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Afrika/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Afrika/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Afrika/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Afrika/Kairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Afrika/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Afrika/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Ceuta & Melilla" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Afrika/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Afrika/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Afrika/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Afrika/Djibouti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Afrika/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Afrika/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Afrika/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Afrika/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Afrika/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Afrika/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Afrika/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Afrika/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Afrika/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Afrika/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Afrika/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Afrika/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Afrika/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Afrika/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Afrika/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Afrika/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Afrika/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Afrika/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Afrika/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Afrika/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Afrika/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Afrika/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Afrika/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Afrika/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Afrika/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Afrika/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Afrika/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Afrika/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Afrika/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Afrika/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Afrika/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Afrika/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Afrika/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "Amerika/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "Aleutiske Ćøyer" #: timezones.h:63 msgid "America/Anchorage" msgstr "Amerika/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "Alaska-tid" #: timezones.h:66 msgid "America/Anguilla" msgstr "Amerika/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "Amerika/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "Amerika/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Tocantins" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Amerika/Argentina/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Buenos Aires (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Amerika/Argentina/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "Catamarca (CT), Chubut (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Amerika/Argentina/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Amerika/Argentina/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "de fleste lokasjoner (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Amerika/Argentina/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Jujuy (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Amerika/Argentina/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "La Rioja (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Amerika/Argentina/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "Mendoza (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Amerika/Argentina/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Santa Cruz (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "Amerika/Argentina/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Amerika/Argentina/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "San Juan (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "Amerika/Argentina/San_Luis" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "San Luis (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Amerika/Argentina/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Tucuman (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Amerika/Argentina/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Tierra del Fuego (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "Amerika/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "Amerika/Asuncion" #: timezones.h:110 msgid "America/Atikokan" msgstr "Amerika/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "Amerika/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "Amerika/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "Bahia" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "Amerika/Bahia_Banderas" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "Meksikansk sentraltid - Bahia de Banderas" #: timezones.h:120 msgid "America/Barbados" msgstr "Amerika/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "Amerika/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "Amapa, E Para" #: timezones.h:124 msgid "America/Belize" msgstr "Amerika/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "Amerika/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "Atlantisk standardtid - Quebec - nedre nordlige kyst" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Amerika/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "Roraima" #: timezones.h:131 msgid "America/Bogota" msgstr "Amerika/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "Amerika/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Amerika/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Amerika/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "Fjelltid - vest-Nunavut" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "Amerika/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "Mato Grosso do Sul" #: timezones.h:142 msgid "America/Cancun" msgstr "Amerika/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "Sentraltid - Quintana Roo" #: timezones.h:145 msgid "America/Caracas" msgstr "Amerika/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "Amerika/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "Amerika/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "Amerika/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "Amerika/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "Sentral tid" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Amerika/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "Fjell-tid - Chihuahua" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "Amerika/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "Amerika/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Amerika/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Amerika/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "Mato Grosso" #: timezones.h:161 msgid "America/Curacao" msgstr "Amerika/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Amerika/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "Ćøstkysten, nord for Scresbysund" #: timezones.h:165 msgid "America/Dawson" msgstr "Amerika/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "Stillehavstid - nordre Yukon" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Amerika/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "Amerika/Denver" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "Fjelltid" #: timezones.h:174 msgid "America/Detroit" msgstr "Amerika/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "Ƙstlig tid - Michigan - de fleste lokasjoner" #: timezones.h:177 msgid "America/Dominica" msgstr "Amerika/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "Amerika/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "Amerika/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "Vestlige Amazonas" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Amerika/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "Amerika/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Amerika/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "noen " #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Amerika/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Amerika/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "Amerika/Kapp_det_gode_hĆ„p" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "de fleste lokasjoner" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Amerika/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Amerika/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "Amerika/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Amerika/Guadeloupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "Amerika/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Amerika/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "hovedlandet" #: timezones.h:206 msgid "America/Guyana" msgstr "Amerika/Guyana" #: timezones.h:207 msgid "America/Halifax" msgstr "Amerika/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "Atlanterhavstid - Nova Scotia (de fleste steder), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "Amerika/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Amerika/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Amerika/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "Ƙstlig tid - Indiana - de fleste lokasjoner" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Amerika/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "Sentraltid - Indiana - Starke fylke" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Amerika/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "Amerika/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Amerika/Indianapolis" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "Amerika/Indiana/Tell City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "Amerika/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "Amerika/Indiana/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "Amerika/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Amerika/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "Amerika/Jamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "Amerika/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "Amerika/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "Alaska-tid - Alaska panhandle" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Amerika/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "Ƙstlig tid - Kentucky - Louisville omrĆ„det" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Amerika/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "Ƙstlig tid - Kentucky - Wayne County" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Amerika/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "Amerika/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "Amerika/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Amerika/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "Stillehavstid" #: timezones.h:262 msgid "America/Louisville" msgstr "Amerika/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "Amerika/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "Alagoas, Sergipe" #: timezones.h:266 msgid "America/Managua" msgstr "Amerika/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "Amerika/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "Ƙstlige Amazonas" #: timezones.h:270 msgid "America/Marigot" msgstr "Amerika/Marigot" #: timezones.h:271 msgid "America/Martinique" msgstr "Amerika/Martinique" #: timezones.h:272 msgid "America/Matamoros" msgstr "Amerika/Matamoros" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Amerika/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "Amerika/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "Amerika/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "Amerika/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "Sentral tid - Campeche, Yucatan" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Amerika/Mexico_by" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "Sentral tid - de fleste lokasjoner" #: timezones.h:288 msgid "America/Miquelon" msgstr "Amerika/Miquelon" #: timezones.h:289 msgid "America/Moncton" msgstr "Amerika/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "Atlantisk tid - New Brunswick" #: timezones.h:292 msgid "America/Monterrey" msgstr "Amerika/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "Amerika/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "Amerika/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "Amerika/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "Amerika/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "Amerika/New_York" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "Ƙstlig tid" #: timezones.h:304 msgid "America/Nipigon" msgstr "Amerika/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "Amerika/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "Alaska-tid - vest-Alaska" #: timezones.h:310 msgid "America/Noronha" msgstr "Amerika/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "Ƙyer i atlanterhavet" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Amerika/North_Dakota/Sentrum" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "Amerika/North_Dakota/New_Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 msgid "America/Ojinaga" msgstr "Amerika/Ojinaga" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "USA Fjell-tid - Chihuahua nƦr den amerikanske grensen" #: timezones.h:322 msgid "America/Panama" msgstr "Amerika/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Amerika/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "Ƙstlig tid - Pangnirtung, Nunavut" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Amerika/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "Amerika/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "Standard fjelltid - Arizona" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Amerika/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Amerika/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Amerika/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Amerika/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "Rondonia" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Amerika/Puerto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Amerika/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Amerika/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "Sentraltid - sentrale Nunavut" #: timezones.h:343 msgid "America/Recife" msgstr "Amerika/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "Pernambuco" #: timezones.h:346 msgid "America/Regina" msgstr "Amerika/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 msgid "America/Resolute" msgstr "Amerika/Resolute" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "Ƙstlig standardtid - Resolute, Nunavut" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Amerika/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "Acre" #: timezones.h:355 msgid "America/Rosario" msgstr "Amerika/Rosario" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "Amerika/Santa_Isabel" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 msgid "America/Santarem" msgstr "Amerika/Santarem" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "Ruthenia" #: timezones.h:362 msgid "America/Santiago" msgstr "Amerika/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Amerika/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Amerika/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Amerika/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Scoresbysund / Ittoqqortoormiit" #: timezones.h:372 msgid "America/Shiprock" msgstr "Amerika/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "Fjelltid - Navajo" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "Amerika/St_Barthelemy" #: timezones.h:376 msgid "America/St_Johns" msgstr "Amerika/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Amerika/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Amerika/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Amerika/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Amerika/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Amerika/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "Sentral standardtid - Saskatchewan - midtvesten" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Amerika/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "Amerika/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "Thule / Pituffik" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Amerika/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "Amerika/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "Amerika/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "Amerika/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "Amerika/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "Amerika/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Amerika/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Amerika/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "Amerika/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Amerika/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Antarktis/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "Casey Station, Bailey Peninsula" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Antarktis/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "Davis Station, Vestfold Hills" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Antarktis/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Dumont-d'Urville Station, Terre Adelie" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "Antarktis/Macquarie" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "Macquarie Island Station, Macquarie Island" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Antarktis/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "Mawson Station, Holme Bay" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Antarktis/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "McMurdo Station, Ross Island" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Antarktis/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "Palmer Station, Anvers Island" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Antarktis/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "Rothera Station, Adelaide Island" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antarktis/Sydpolen" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "Amundsen-Scott-stasjonen, sydpolen" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Antarktis/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "Syowa Station, E Ongul I" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Antarktis/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "Vostok Station, S magnetiske pol" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Antarktis/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Asia/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Asia/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Asia/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Asia/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "Moskva+08 - Beringhavet" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Asia/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Asia/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "Aqtobe (Aktobe)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Asia/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Asia/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Asia/Bagdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Asia/Bahrain" #: timezones.h:468 msgid "Asia/Baku" msgstr "Asia/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Asia/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Asia/Beirut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Asia/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Asia/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Asia/Calcutta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Asia/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "Dornod, Sukhbaatar" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Asia/Chongging" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "Asia/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Asia/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Asia/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Asia/Damaskus" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Asia/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Asia/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Asia/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Asia/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Asia/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Asia/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "Asia/Ho_Chi_Minh" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Asia/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Asia/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Asia/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "Moskva+05 - BaikalsjĆøen" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Asia/Istanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Asia/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "Java & Sumatra" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Asia/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Asia/Jerusalem" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Asia/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Asia/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "Moskva+08 - Kamchatka" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Asia/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Asia/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "vest-tibet & Xinjiang" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "Asia/Katmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Asia/Katmandu" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "Asia/Kolkata" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Asia/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "Moskva+04 - Yenisei-elven" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Asia/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Asia/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "Sabah & Sarawak" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Asia/Kuwait" #: timezones.h:529 msgid "Asia/Macao" msgstr "Asia/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Asia/Macao" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Asia/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "Moskva+08 - Magadan" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Asia/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "Asia/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Asia/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Asia/Nikosia" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "Asia/Novokuznetsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "Moskva+03 - Novokuznetsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Asia/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "Moskva+03 - Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Asia/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "Moskva+03 - vest-Sibir" #: timezones.h:549 msgid "Asia/Oral" msgstr "Asia/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "Vest-Kasakhstan" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Asia/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Asia/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "vestlige og sentrale Borneo" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Asia/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Asia/Qatar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Asia/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Asia/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Asia/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Asia/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Asia/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Asia/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Asia/Saigon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Asia/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "Moskva+07 - Sakhalin-Ćøya" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Asia/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "vest-Usbekistan" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Asia/Seoul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Asia/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "Ƙst-Kina - Beijing, Guangdong, Shanghai, etc." #: timezones.h:577 msgid "Asia/Singapore" msgstr "Asia/Singapore" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Asia/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Asia/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "Ƙst-Usbekistan" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Asia/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Asia/Tehran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Asia/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Asia/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Asia/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Asia/Tokyo" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Asia/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Asia/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Asia/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Asia/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "det meste av Tibet & Xinjiang" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Asia/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Asia/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "Moskva+07 - Amurelven" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Asia/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "Moskva+06 - Elven Lena" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Asia/Yekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "Moskva+02 - Uralfjellene" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Asia/Yerevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlanterhavet/Azorene" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "Azorene" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlanterhavet/Bermuda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlanterhavet/KanariĆøyene" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "KanariĆøyene" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlanterhavet/Kapp_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlanterhavet/FƦrĆøyene" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "Atlanterhavet/FƦrĆøyene" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlanterhavet/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlanterhavet/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "Madeira" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlanterhavet/Reykjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlanterhavet/Syd_Georgia" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlanterhavet/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlanterhavet/St_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "Australia/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Australia/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "Syd-Australia" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Australia/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "Queensland - de fleste lokasjoner" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Australia/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "New South Wales - Yancowinna" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Australia/Canberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "Australia/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "Tasmania - King Island" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Australia/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "Nordterritoriet" #: timezones.h:642 msgid "Australia/Eucla" msgstr "Australia/Eucla" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "Vest-Australia - Eucla-omrĆ„det" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Australia/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "Tasmania - de fleste lokasjoner" #: timezones.h:648 msgid "Australia/LHI" msgstr "Australia/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Australia/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "Queensland - Holiday Islands" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Australia/Lord_Howe-Ćøya" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "Lord Howe Island" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Australia/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "Australia/Nord" #: timezones.h:659 msgid "Australia/NSW" msgstr "Australia/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "Australia/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "Vest-Australia - de fleste lokasjoner" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Australia/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "Australia/Syd" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Australia/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "New South Wales - de fleste lokasjoner" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Australia/Tasmania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Australia/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "Australia/Vest" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Australia/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brasil/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brasil/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brasil/Ƙst" #: timezones.h:675 msgid "Brazil/West" msgstr "Brasil/Vest" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Canada/Atlantisk" #: timezones.h:677 msgid "Canada/Central" msgstr "Canada/Sentral" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Canada/Ƙstlig" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Canada/Ƙst-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Canada/Mountain" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Canada/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Canada/Stillehavet" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Canada/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Canada/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Chile/Kontinental" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chile/PĆ„skeĆøya" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Cuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Egypt" #: timezones.h:692 msgid "Eire" msgstr "Irland" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universell" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Europa/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Europa/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Europa/Aten" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Europa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Europa/Beograd" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Europa/Berlin" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Europa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Europa/Brussel" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Europa/Bukuresti" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Europa/Budapest" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Europa/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Europa/KĆøbenhavn" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Europa/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Europa/Gibraltar" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Europa/Guernsey" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Europa/Helsinki" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Europa/Man" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Europa/Istanbul" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Europa/Jersey" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Europa/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "Moskva-01 - Kaliningrad" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Europa/Kiev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Europa/Lisboa" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Europa/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Europa/London" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Europa/Luxemburg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Europa/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Europa/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Europa/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Europa/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Europa/Monaco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Europa/Moskva" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "Moskva+00 - vest-russland" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Europa/Nicosia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Europa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Europa/Paris" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Europa/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Europa/Praha" #: timezones.h:776 msgid "Europe/Riga" msgstr "Europa/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Europa/Roma" #: timezones.h:778 msgid "Europe/Samara" msgstr "Europa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "Moskva - Samara, Udmurtia" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Europa/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Europa/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Europa/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "Sentrale Krim" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Europa/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Europa/Sofia" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Europa/Stockholm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Europa/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Europa/Tirana" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Europa/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Europa/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "Ruthenia" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Europa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Europa/Vatikanstaten" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Europa/Wien" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Europa/Vilnius" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Europa/Volgograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "Moskva+00 - det kaspiske hav" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Europa/Warshawa" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Europa/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Europa/Zaporozje" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Europa/Zurich" #: timezones.h:808 msgid "Factory" msgstr "Factory" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Island" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Indiahavet/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Indiahavet/ChagosĆøyene" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Indiahavet/ChristmasĆøya" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Indiahavet/KokosĆøyene" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Indiahavet/Komorene" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Indiahavet/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Indiahavet/MahĆ©" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Indiahavet/Maldivene" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Indiahavet/Mauritius" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Indiahavet/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Indiahavet/RĆ©union" #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "Israel" #: timezones.h:833 msgid "Jamaica" msgstr "Jamaica" #: timezones.h:834 msgid "Japan" msgstr "Japan" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libya" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Mexico/Baja_California_Norte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Mexico/Baja_California_Sur" #: timezones.h:840 msgid "Mexico/General" msgstr "Mexico/Generell" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Midt-Ćøsten/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Midt-Ćøsten/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Midt-Ćøsten/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Stillehavet/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Stillehavet/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Stillehavet/ChathamĆøyene" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "Chatham-Ćøyene" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "Stillehavet/Chuuk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "Chuuk (Truk) og Yap" #: timezones.h:859 msgid "Pacific/Easter" msgstr "Stillehavet/PĆ„skeĆøya" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "PĆ„skeĆøya & Sala y Gomez" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Stillehavet/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Stillehavet/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "Phoenix-Ćøyene" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Stillehavet/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Stillehavet/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Stillehavet/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Stillehavet/GalĆ”pagosĆøyene" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "Galapagos-Ćøyene" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Stillehavet/GambierĆøyene" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "Gambier-Ćøyene" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Stillehavet/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Stillehavet/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Stillehavet/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "Hawaii" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Stillehavet/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "Johnston-atollen" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Stillehavet/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "Line-Ćøyene" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Stillehavet/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "Kosrae" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Stillehavet/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Stillehavet/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Stillehavet/MarquesasĆøyene" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "Marquesas-Ćøyene" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Stillehavet/MidwayĆøyene" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "Midway-Ćøyene" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Stillehavet/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Stillehavet/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Stillehavet/NorfolkĆøya" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Stillehavet/NoumĆ©a" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Stillehavet/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Stillehavet/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Stillehavet/Pitcairn" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "Stillehavet/Pohnpei" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "Pohnpei (Ponape)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Stillehavet/Pohnpei" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Stillehavet/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Stillehavet/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Stillehavet/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Stillehavet/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Stillehavet/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "Society-Ćøyene" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Stillehavet/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "Gilbert-Ćøyene" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Stillehavet/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Stillehavet/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Stillehavet/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "Wake-Ćøya" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Stillehavet/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Stillehavet/Yap" #: timezones.h:929 msgid "Poland" msgstr "Polen" #: timezones.h:930 msgid "Portugal" msgstr "Portugal" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapore" #: timezones.h:937 msgid "Turkey" msgstr "Tyrkia" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universell" #: timezones.h:940 msgid "US/Alaska" msgstr "US/Alaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "US/Aleutene" #: timezones.h:942 msgid "US/Arizona" msgstr "US/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "US/Sentral" #: timezones.h:944 msgid "US/Eastern" msgstr "US/Ƙst" #: timezones.h:945 msgid "US/East-Indiana" msgstr "US/Ƙst-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "US/Hawaii" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "US/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "US/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "US/Mountain" #: timezones.h:950 msgid "US/Pacific" msgstr "US/Stillehavet" #: timezones.h:951 msgid "US/Samoa" msgstr "US/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/ilo.po0000664000175000017500000014422714632072346024054 0ustar fabiofabiomsgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2006-11-25 10:33-0800\n" "Last-Translator: Joseph S. Maza \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "" #: timezones.h:2 msgid "Africa/Accra" msgstr "" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "" #: timezones.h:4 msgid "Africa/Algiers" msgstr "" #: timezones.h:5 msgid "Africa/Asmara" msgstr "" #: timezones.h:6 msgid "Africa/Asmera" msgstr "" #: timezones.h:7 msgid "Africa/Bamako" msgstr "" #: timezones.h:8 msgid "Africa/Bangui" msgstr "" #: timezones.h:9 msgid "Africa/Banjul" msgstr "" #: timezones.h:10 msgid "Africa/Bissau" msgstr "" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "" #: timezones.h:14 msgid "Africa/Cairo" msgstr "" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "" #: timezones.h:20 msgid "Africa/Dakar" msgstr "" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "" #: timezones.h:23 msgid "Africa/Douala" msgstr "" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "" #: timezones.h:25 msgid "Africa/Freetown" msgstr "" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "" #: timezones.h:27 msgid "Africa/Harare" msgstr "" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "" #: timezones.h:29 msgid "Africa/Kampala" msgstr "" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "" #: timezones.h:31 msgid "Africa/Kigali" msgstr "" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "" #: timezones.h:36 msgid "Africa/Libreville" msgstr "" #: timezones.h:37 msgid "Africa/Lome" msgstr "" #: timezones.h:38 msgid "Africa/Luanda" msgstr "" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "" #: timezones.h:43 msgid "Africa/Malabo" msgstr "" #: timezones.h:44 msgid "Africa/Maputo" msgstr "" #: timezones.h:45 msgid "Africa/Maseru" msgstr "" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "" #: timezones.h:51 msgid "Africa/Niamey" msgstr "" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "" #: timezones.h:58 msgid "Africa/Tunis" msgstr "" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "" #: timezones.h:60 msgid "America/Adak" msgstr "" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "" #: timezones.h:63 msgid "America/Anchorage" msgstr "" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "" #: timezones.h:66 msgid "America/Anguilla" msgstr "" #: timezones.h:67 msgid "America/Antigua" msgstr "" #: timezones.h:68 msgid "America/Araguaina" msgstr "" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "" #: timezones.h:109 msgid "America/Asuncion" msgstr "" #: timezones.h:110 msgid "America/Atikokan" msgstr "" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "" #: timezones.h:114 msgid "America/Bahia" msgstr "" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "" #: timezones.h:121 msgid "America/Belem" msgstr "" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "" #: timezones.h:132 msgid "America/Boise" msgstr "" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "" #: timezones.h:146 msgid "America/Catamarca" msgstr "" #: timezones.h:147 msgid "America/Cayenne" msgstr "" #: timezones.h:148 msgid "America/Cayman" msgstr "" #: timezones.h:149 msgid "America/Chicago" msgstr "" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "" #: timezones.h:152 msgid "America/Chihuahua" msgstr "" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "" #: timezones.h:156 msgid "America/Cordoba" msgstr "" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "" #: timezones.h:158 msgid "America/Cuiaba" msgstr "" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "" #: timezones.h:174 msgid "America/Detroit" msgstr "" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "" #: timezones.h:178 msgid "America/Edmonton" msgstr "" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "" #: timezones.h:185 msgid "America/Ensenada" msgstr "" #: timezones.h:186 msgid "America/Fortaleza" msgstr "" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "" #: timezones.h:200 msgid "America/Grenada" msgstr "" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "" #: timezones.h:202 msgid "America/Guatemala" msgstr "" #: timezones.h:203 msgid "America/Guayaquil" msgstr "" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "" #: timezones.h:207 msgid "America/Halifax" msgstr "" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "" #: timezones.h:211 msgid "America/Hermosillo" msgstr "" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "" #: timezones.h:246 msgid "America/Jujuy" msgstr "" #: timezones.h:247 msgid "America/Juneau" msgstr "" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "" #: timezones.h:257 msgid "America/La_Paz" msgstr "" #: timezones.h:258 msgid "America/Lima" msgstr "" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "" #: timezones.h:262 msgid "America/Louisville" msgstr "" #: timezones.h:263 msgid "America/Maceio" msgstr "" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "" #: timezones.h:267 msgid "America/Manaus" msgstr "" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 msgid "America/Marigot" msgstr "" #: timezones.h:271 msgid "America/Martinique" msgstr "" #: timezones.h:272 msgid "America/Matamoros" msgstr "" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "" #: timezones.h:279 msgid "America/Menominee" msgstr "" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "" #: timezones.h:289 msgid "America/Moncton" msgstr "" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "" #: timezones.h:296 msgid "America/Montreal" msgstr "" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "" #: timezones.h:300 msgid "America/Nassau" msgstr "" #: timezones.h:301 msgid "America/New_York" msgstr "" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "" #: timezones.h:304 msgid "America/Nipigon" msgstr "" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 msgid "America/Ojinaga" msgstr "" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "" #: timezones.h:327 msgid "America/Phoenix" msgstr "" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "" #: timezones.h:337 msgid "America/Rainy_River" msgstr "" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 msgid "America/Resolute" msgstr "" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 msgid "America/Santarem" msgstr "" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "" #: timezones.h:376 msgid "America/St_Johns" msgstr "" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "" #: timezones.h:380 msgid "America/St_Lucia" msgstr "" #: timezones.h:381 msgid "America/St_Thomas" msgstr "" #: timezones.h:382 msgid "America/St_Vincent" msgstr "" #: timezones.h:383 msgid "America/Swift_Current" msgstr "" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "" #: timezones.h:387 msgid "America/Thule" msgstr "" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "" #: timezones.h:400 msgid "America/Vancouver" msgstr "" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "" #: timezones.h:404 msgid "America/Whitehorse" msgstr "" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "" #: timezones.h:450 msgid "Asia/Aden" msgstr "" #: timezones.h:451 msgid "Asia/Almaty" msgstr "" #: timezones.h:454 msgid "Asia/Amman" msgstr "" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "" #: timezones.h:468 msgid "Asia/Baku" msgstr "" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "" #: timezones.h:470 msgid "Asia/Beirut" msgstr "" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "" #: timezones.h:472 msgid "Asia/Brunei" msgstr "" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "" #: timezones.h:481 msgid "Asia/Colombo" msgstr "" #: timezones.h:482 msgid "Asia/Dacca" msgstr "" #: timezones.h:483 msgid "Asia/Damascus" msgstr "" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "" #: timezones.h:485 msgid "Asia/Dili" msgstr "" #: timezones.h:486 msgid "Asia/Dubai" msgstr "" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "" #: timezones.h:488 msgid "Asia/Gaza" msgstr "" #: timezones.h:489 msgid "Asia/Harbin" msgstr "" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "" #: timezones.h:494 msgid "Asia/Hovd" msgstr "" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "" #: timezones.h:508 msgid "Asia/Kabul" msgstr "" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "" #: timezones.h:529 msgid "Asia/Macao" msgstr "" #: timezones.h:530 msgid "Asia/Macau" msgstr "" #: timezones.h:531 msgid "Asia/Magadan" msgstr "" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "" #: timezones.h:538 msgid "Asia/Muscat" msgstr "" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "" #: timezones.h:546 msgid "Asia/Omsk" msgstr "" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "" #: timezones.h:557 msgid "Asia/Qatar" msgstr "" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "" #: timezones.h:566 msgid "Asia/Saigon" msgstr "" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "" #: timezones.h:578 msgid "Asia/Taipei" msgstr "" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "" #: timezones.h:583 msgid "Asia/Tehran" msgstr "" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "" #: timezones.h:625 msgid "Australia/ACT" msgstr "" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "" #: timezones.h:636 msgid "Australia/Currie" msgstr "" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 msgid "Australia/Eucla" msgstr "" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "" #: timezones.h:645 msgid "Australia/Hobart" msgstr "" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "" #: timezones.h:658 msgid "Australia/North" msgstr "" #: timezones.h:659 msgid "Australia/NSW" msgstr "" #: timezones.h:660 msgid "Australia/Perth" msgstr "" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "" #: timezones.h:664 msgid "Australia/South" msgstr "" #: timezones.h:665 msgid "Australia/Sydney" msgstr "" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "" #: timezones.h:669 msgid "Australia/Victoria" msgstr "" #: timezones.h:670 msgid "Australia/West" msgstr "" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "" #: timezones.h:672 msgid "Brazil/Acre" msgstr "" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "" #: timezones.h:674 msgid "Brazil/East" msgstr "" #: timezones.h:675 msgid "Brazil/West" msgstr "" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "" #: timezones.h:677 msgid "Canada/Central" msgstr "" #: timezones.h:678 msgid "Canada/Eastern" msgstr "" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "" #: timezones.h:680 msgid "Canada/Mountain" msgstr "" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "" #: timezones.h:682 msgid "Canada/Pacific" msgstr "" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "" #: timezones.h:684 msgid "Canada/Yukon" msgstr "" #: timezones.h:685 msgid "CET" msgstr "" #: timezones.h:686 msgid "Chile/Continental" msgstr "" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "" #: timezones.h:688 msgid "CST6CDT" msgstr "" #: timezones.h:689 msgid "Cuba" msgstr "" #: timezones.h:690 msgid "EET" msgstr "" #: timezones.h:691 msgid "Egypt" msgstr "" #: timezones.h:692 msgid "Eire" msgstr "" #: timezones.h:693 msgid "EST" msgstr "" #: timezones.h:694 msgid "EST5EDT" msgstr "" #: timezones.h:695 msgid "Etc/GMT" msgstr "" #: timezones.h:696 msgid "Etc/GMT0" msgstr "" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "" #: timezones.h:726 msgid "Etc/UCT" msgstr "" #: timezones.h:727 msgid "Etc/Universal" msgstr "" #: timezones.h:728 msgid "Etc/UTC" msgstr "" #: timezones.h:729 msgid "Etc/Zulu" msgstr "" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "" #: timezones.h:731 msgid "Europe/Andorra" msgstr "" #: timezones.h:732 msgid "Europe/Athens" msgstr "" #: timezones.h:733 msgid "Europe/Belfast" msgstr "" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "" #: timezones.h:735 msgid "Europe/Berlin" msgstr "" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "" #: timezones.h:737 msgid "Europe/Brussels" msgstr "" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "" #: timezones.h:739 msgid "Europe/Budapest" msgstr "" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "" #: timezones.h:742 msgid "Europe/Dublin" msgstr "" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "" #: timezones.h:748 msgid "Europe/Jersey" msgstr "" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "" #: timezones.h:759 msgid "Europe/London" msgstr "" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "" #: timezones.h:761 msgid "Europe/Madrid" msgstr "" #: timezones.h:764 msgid "Europe/Malta" msgstr "" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "" #: timezones.h:766 msgid "Europe/Minsk" msgstr "" #: timezones.h:767 msgid "Europe/Monaco" msgstr "" #: timezones.h:768 msgid "Europe/Moscow" msgstr "" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "" #: timezones.h:772 msgid "Europe/Oslo" msgstr "" #: timezones.h:773 msgid "Europe/Paris" msgstr "" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "" #: timezones.h:775 msgid "Europe/Prague" msgstr "" #: timezones.h:776 msgid "Europe/Riga" msgstr "" #: timezones.h:777 msgid "Europe/Rome" msgstr "" #: timezones.h:778 msgid "Europe/Samara" msgstr "" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "" #: timezones.h:787 msgid "Europe/Sofia" msgstr "" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "" #: timezones.h:790 msgid "Europe/Tirane" msgstr "" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "" #: timezones.h:796 msgid "Europe/Vatican" msgstr "" #: timezones.h:797 msgid "Europe/Vienna" msgstr "" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "" #: timezones.h:808 msgid "Factory" msgstr "" #: timezones.h:809 msgid "GB" msgstr "" #: timezones.h:810 msgid "GB-Eire" msgstr "" #: timezones.h:811 msgid "GMT" msgstr "" #: timezones.h:812 msgid "GMT0" msgstr "" #: timezones.h:813 msgid "GMT-0" msgstr "" #: timezones.h:814 msgid "GMT+0" msgstr "" #: timezones.h:815 msgid "Greenwich" msgstr "" #: timezones.h:816 msgid "Hongkong" msgstr "" #: timezones.h:817 msgid "HST" msgstr "" #: timezones.h:818 msgid "Iceland" msgstr "" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "" #: timezones.h:820 msgid "Indian/Chagos" msgstr "" #: timezones.h:821 msgid "Indian/Christmas" msgstr "" #: timezones.h:822 msgid "Indian/Cocos" msgstr "" #: timezones.h:823 msgid "Indian/Comoro" msgstr "" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "" #: timezones.h:825 msgid "Indian/Mahe" msgstr "" #: timezones.h:826 msgid "Indian/Maldives" msgstr "" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "" #: timezones.h:829 msgid "Indian/Reunion" msgstr "" #: timezones.h:830 msgid "Iran" msgstr "" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "" #: timezones.h:833 msgid "Jamaica" msgstr "" #: timezones.h:834 msgid "Japan" msgstr "" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "" #: timezones.h:836 msgid "Libya" msgstr "" #: timezones.h:837 msgid "MET" msgstr "" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "" #: timezones.h:840 msgid "Mexico/General" msgstr "" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "" #: timezones.h:844 msgid "MST" msgstr "" #: timezones.h:845 msgid "MST7MDT" msgstr "" #: timezones.h:846 msgid "Navajo" msgstr "" #: timezones.h:847 msgid "NZ" msgstr "" #: timezones.h:848 msgid "NZ-CHAT" msgstr "" #: timezones.h:849 msgid "Pacific/Apia" msgstr "" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 msgid "Pacific/Easter" msgstr "" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "" #: timezones.h:876 msgid "Pacific/Guam" msgstr "" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "" #: timezones.h:902 msgid "Pacific/Niue" msgstr "" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "" #: timezones.h:906 msgid "Pacific/Palau" msgstr "" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "" #: timezones.h:923 msgid "Pacific/Truk" msgstr "" #: timezones.h:924 msgid "Pacific/Wake" msgstr "" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "" #: timezones.h:928 msgid "Pacific/Yap" msgstr "" #: timezones.h:929 msgid "Poland" msgstr "" #: timezones.h:930 msgid "Portugal" msgstr "" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "" #: timezones.h:933 msgid "PST8PDT" msgstr "" #: timezones.h:934 msgid "ROC" msgstr "" #: timezones.h:935 msgid "ROK" msgstr "" #: timezones.h:936 msgid "Singapore" msgstr "" #: timezones.h:937 msgid "Turkey" msgstr "" #: timezones.h:938 msgid "UCT" msgstr "" #: timezones.h:939 msgid "Universal" msgstr "" #: timezones.h:940 msgid "US/Alaska" msgstr "" #: timezones.h:941 msgid "US/Aleutian" msgstr "" #: timezones.h:942 msgid "US/Arizona" msgstr "" #: timezones.h:943 msgid "US/Central" msgstr "" #: timezones.h:944 msgid "US/Eastern" msgstr "" #: timezones.h:945 msgid "US/East-Indiana" msgstr "" #: timezones.h:946 msgid "US/Hawaii" msgstr "" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "" #: timezones.h:948 msgid "US/Michigan" msgstr "" #: timezones.h:949 msgid "US/Mountain" msgstr "" #: timezones.h:950 msgid "US/Pacific" msgstr "" #: timezones.h:951 msgid "US/Samoa" msgstr "" #: timezones.h:952 msgid "UTC" msgstr "" #: timezones.h:953 msgid "WET" msgstr "" #: timezones.h:954 msgid "W-SU" msgstr "" #: timezones.h:955 msgid "Zulu" msgstr "" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/pl.po0000664000175000017500000020056414632072346023701 0ustar fabiofabio# translation of pl.po to Polish # Radosław Zawartko , 2004. # Piotr Drąg , 2008. # msgid "" msgstr "" "Project-Id-Version: pl\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-08-25 14:49+0200\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Afryka/Abidżan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Afryka/Akra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Afryka/Addis_Abeba" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Afryka/Algier" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Afryka/Asmara" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Afryka/Asmara" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Afryka/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Afryka/Bangi" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Afryka/BandÅŗul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Afryka/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Afryka/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Afryka/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Afryka/Bużumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Afryka/Kair" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Afryka/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Afryka/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Ceuta i Melilla" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Afryka/Konakri" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Afryka/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Afryka/Dar_es-Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Afryka/Dżibuti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Afryka/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Afryka/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Afryka/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Afryka/Gaborne" #: timezones.h:27 msgid "Africa/Harare" msgstr "Afryka/Harara" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Afryka/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Afryka/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Afryka/Chartum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Afryka/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Afryka/Kinszasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "Zachodnia Demokratyczna Republika Konga" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Afryka/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Afryka/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Afryka/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Afryka/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Afryka/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "Wschodnia Demokratyczna Republika Konga" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Afryka/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Afryka/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Afryka/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Afryka/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Afryka/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Afryka/Mogadiszu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Afryka/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Afryka/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Afryka/Ndżamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Afryka/Niamej" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Afryka/Nawakszut" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Afryka/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Afryka/Porto_Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Afryka/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Afryka/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Afryka/Trypolis" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Afryka/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Afryka/Windhuk" #: timezones.h:60 msgid "America/Adak" msgstr "Ameryka/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "Aleuty" #: timezones.h:63 msgid "America/Anchorage" msgstr "Ameryka/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "Czas Alaski" #: timezones.h:66 msgid "America/Anguilla" msgstr "Ameryka/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "Ameryka/Antiqua" #: timezones.h:68 msgid "America/Araguaina" msgstr "Ameryka/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Tocantins" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Ameryka/Argentyna/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Buenos Aires (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Ameryka/Argentyna/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "Catamarca (CT), Chubut (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Ameryka/Argentyna/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Ameryka/Argentyna/Kordowa" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "większość lokalizacji (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Ameryka/Argentyna/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Jujuy (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Ameryka/Argentyna/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "La Rioja (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Ameryka/Argentyna/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "Mendoza (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Ameryka/Argentyna/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Santa Cruz (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "Ameryka/Argentyna/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Ameryka/Argentyna/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "San Juan (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "Ameryka/Argentyna/San_Luis" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "San Luis (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Ameryka/Argentyna/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Tucuman (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Ameryka/Argentyna/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Tierra del Fuego (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "Ameryka/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "Ameryka/Asuncion" #: timezones.h:110 msgid "America/Atikokan" msgstr "Ameryka/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "Wschodni czas standardowy - Atikokan, Ontario i Southampton I, Nunavut" #: timezones.h:113 msgid "America/Atka" msgstr "Ameryka/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "Ameryka/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "Bahia" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "Ameryka/Bahia_Banderas" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "Meksykański czas środkowy - Bahia de Banderas" #: timezones.h:120 msgid "America/Barbados" msgstr "Ameryka/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "Ameryka/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "Amapa, wschodnie Para" #: timezones.h:124 msgid "America/Belize" msgstr "Ameryka/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "Ameryka/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "Atlantycki czas standardowy - Quebec - Lower North Shore" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Ameryka/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "Roraima" #: timezones.h:131 msgid "America/Bogota" msgstr "Ameryka/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "Ameryka/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "Czas górski - południowe Idaho i wschodni Oregon" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Ameryka/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Ameryka/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "Czas górski - zachodnie Nunavut" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "Ameryka/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "Mato Grosso do Sul" #: timezones.h:142 msgid "America/Cancun" msgstr "Ameryka/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "Czas środkowy - Quintana Roo" #: timezones.h:145 msgid "America/Caracas" msgstr "Ameryka/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "Ameryka/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "Ameryka/Kajenna" #: timezones.h:148 msgid "America/Cayman" msgstr "Ameryka/Kajmany" #: timezones.h:149 msgid "America/Chicago" msgstr "Ameryka/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "Czas środkowy" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Ameryka/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "Meksykański czas górski - Chihuahua poza granicą Stanów Zjednoczonych" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "Ameryka/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "Ameryka/Kordowa" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Ameryka/Kostaryka" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Ameryka/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "Mato Grosso" #: timezones.h:161 msgid "America/Curacao" msgstr "Ameryka/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Ameryka/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "wschodnie wybrzeże, północ od Scoresbysund" #: timezones.h:165 msgid "America/Dawson" msgstr "Ameryka/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "Czas pacyficzny - północny Jukon" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Ameryka/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" "Górski czas standardowy - Dawson Creek i Fort Saint John, Kolumbia Brytyjska" #: timezones.h:171 msgid "America/Denver" msgstr "Ameryka/Denver" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "Czas górski" #: timezones.h:174 msgid "America/Detroit" msgstr "Ameryka/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "Czas wschodni - Michigan - większość lokalizacji" #: timezones.h:177 msgid "America/Dominica" msgstr "Ameryka/Dominika" #: timezones.h:178 msgid "America/Edmonton" msgstr "Ameryka/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" "Czas górski - Alberta, wschodnia Kolumbia Brytyjska i zachodnie Saskatchewan" #: timezones.h:181 msgid "America/Eirunepe" msgstr "Ameryka/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "Zachodnia Amazonia" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Ameryka/Salwador" #: timezones.h:185 msgid "America/Ensenada" msgstr "Ameryka/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Ameryka/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "Północno wschodnia Brazylia (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Ameryka/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Ameryka/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" "Czas atlantycki - Nowa Szkocja - miejsca nie obserwujące DST w latach " "1966-1971" #: timezones.h:193 msgid "America/Godthab" msgstr "Arktyka/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "większość lokalizacji" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Ameryka/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "Czas atlantycki - Labrador - większość lokalizacji" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Ameryka/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "Ameryka/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Ameryka/Gwadelupa" #: timezones.h:202 msgid "America/Guatemala" msgstr "Ameryka/Gwatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Ameryka/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "główny ląd" #: timezones.h:206 msgid "America/Guyana" msgstr "Ameryka/Gujana" #: timezones.h:207 msgid "America/Halifax" msgstr "Ameryka/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "Czas atlantycki - Nowa Szkocja (większość miejsc), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "Ameryka/Hawana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Ameryka/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "Górski czas standardowy - Sonora" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Ameryka/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "Czas wschodni - Indiana - większość lokalizacji" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Ameryka/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "Czas środkowy - Indiana - hrabstwo Starke" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Ameryka/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "Czas wschodni - Indiana - hrabstwo Crawford" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "Ameryka/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "Czas wschodni - Indiana - hrabstwo Pike" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Ameryka/Indianapolis" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "Ameryka/Indiana/Tell_City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "Czas środkowy - Indiana - hrabstwo Perry" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Ameryka/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "Czas wschodni - Indiana - hrabstwo Switzerland" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "Ameryka/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "Czas wschodni - Indiana - hrabstwa Daviess, Dubois, Knox i Martin" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "Ameryka/Indiana/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "Czas wschodni - Indiana - hrabstwo Pulaski" #: timezones.h:239 msgid "America/Inuvik" msgstr "Ameryka/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "Czas górski - wschodnie Terytoria Północnozachodnie" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Ameryka/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "Czas wschodni - wschodnie Nunavut - większość lokalizacji" #: timezones.h:245 msgid "America/Jamaica" msgstr "Ameryka/Jamajka" #: timezones.h:246 msgid "America/Jujuy" msgstr "Ameryka/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "Ameryka/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "Czas Alaski - korytarz alaskański" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Ameryka/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "Czas wschodni - Kentucky - obszar Louisville" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Ameryka/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "Czas wschodni - Kentucky - hrabstwo Wayne" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Ameryka/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "Ameryka/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "Ameryka/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Ameryka/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "Czas pacyficzny" #: timezones.h:262 msgid "America/Louisville" msgstr "Ameryka/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "Ameryka/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "Alagoas, Sergipe" #: timezones.h:266 msgid "America/Managua" msgstr "Ameryka/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "Ameryka/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "Wschodnia Amazonia" #: timezones.h:270 msgid "America/Marigot" msgstr "Ameryka/Marigot" #: timezones.h:271 msgid "America/Martinique" msgstr "Ameryka/Martynika" #: timezones.h:272 msgid "America/Matamoros" msgstr "Ameryka/Matamoros" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" "Czas środkowy Stanów Zjednoczonych - Coahuila, Durango, Nuevo Leon, " "Tamaulipas w pobliżu granicy Stanów Zjednoczonych" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Ameryka/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "Czas górski - południowe Baja, Nayarit, Sinaloa" #: timezones.h:278 msgid "America/Mendoza" msgstr "Ameryka/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "Ameryka/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" "Czas środkowy - Michigan - hrabstwa Dickinson, Gogebic, Iron i Menominee" #: timezones.h:282 msgid "America/Merida" msgstr "Ameryka/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "Czas środkowy - Campeche, Jukatan" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Ameryka/Meksyk" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "Czas środkowy - większość lokalizacji" #: timezones.h:288 msgid "America/Miquelon" msgstr "Ameryka/Miquelon" #: timezones.h:289 msgid "America/Moncton" msgstr "Ameryka/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "Czas atlantycki - Nowy Brunszwik" #: timezones.h:292 msgid "America/Monterrey" msgstr "Ameryka/Moterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" "Meksykański czas środkowy - Coahuila, Durango, Nuevo Leon, Tamaulipas poza " "granicą Stanów Zjednoczonych" #: timezones.h:295 msgid "America/Montevideo" msgstr "Ameryka/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "Ameryka/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "Czas wschodni - Quebec - większość lokalizacji" #: timezones.h:299 msgid "America/Montserrat" msgstr "Ameryka/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "Ameryka/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "Ameryka/Nowy_York" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "Czas wschodni" #: timezones.h:304 msgid "America/Nipigon" msgstr "Ameryka/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" "Czas wschodni - Ontario i Quebec - miejsca nie obserwujące DST w latach " "1967-1973" #: timezones.h:307 msgid "America/Nome" msgstr "Ameryka/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "Czas Alaski - zachodnia Alaska" #: timezones.h:310 msgid "America/Noronha" msgstr "Ameryka/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "Wyspy atlantyckie" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Ameryka/Dakota_Północna/Centrum" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "Czas środkowy - Północna Dakota - hrabstwo Oliver" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "Ameryka/Dakota_Północna/New_Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" "Czas środkowy - Północna Dakota - hrabstwo Morton (poza obszarem Mandan)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "Ameryka/Ojinaga" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" "Czas górski Stanów Zjednoczonych - Chihuahua w pobliżu granicy Stanów " "Zjednoczonych" #: timezones.h:322 msgid "America/Panama" msgstr "Ameryka/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Ameryka/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "Czas wschodni - Pangnirtung, Nunavut" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Ameryka/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "Ameryka/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "Górski czas standardowy - Arizona" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Ameryka/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Ameryka/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Ameryka/Port-of-Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Ameryka/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "Rondonia" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Ameryka/Portoryko" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Ameryka/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "Czas środkowy - Rainy River i Fort Frances, Ontario" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Ameryka/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "Czas środkowy - środkowe Nunavut" #: timezones.h:343 msgid "America/Recife" msgstr "Ameryka/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "Pernambuco" #: timezones.h:346 msgid "America/Regina" msgstr "Ameryka/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "Środkowy czas standardowy - Saskatchewan - większość lokalizacji" #: timezones.h:349 msgid "America/Resolute" msgstr "Ameryka/Resolute" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "Wschodni czas standardowy - Resolute, Nunavut" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Ameryka/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "Acre" #: timezones.h:355 msgid "America/Rosario" msgstr "Ameryka/Rosario" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "Ameryka/Santa_Isabel" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" "Meksykański czas pacyficzny - Baja California poza granicą Stanów " "Zjednoczonych" #: timezones.h:359 msgid "America/Santarem" msgstr "Ameryka/Santarem" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "W Para" #: timezones.h:362 msgid "America/Santiago" msgstr "Ameryka/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Ameryka/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Ameryka/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" "Południowa i południowo wschodnia Brazylia (GO, DF, MG, ES, RJ, SP, PR, SC, " "RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Arktyka/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Scoresbysund/Ittoqqortoormiit" #: timezones.h:372 msgid "America/Shiprock" msgstr "Ameryka/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "Czas górski - Navajo" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "Ameryka/St_Barthelemy" #: timezones.h:376 msgid "America/St_Johns" msgstr "Ameryka/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "Czas nowofundlandzki, w tym południowo wschodni Labrador" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Ameryka/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Ameryka/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Ameryka/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Ameryka/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Ameryka/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "Środkowy czas standardowy - Saskatchewan - środkowy zachód" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Ameryka/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "Ameryka/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "Thule/Pituffik" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Ameryka/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "Czas wschodni - Thunder Bay, Ontario" #: timezones.h:393 msgid "America/Tijuana" msgstr "Ameryka/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" "Czas pacyficzny Stanów Zjednoczonych - Baja California w pobliżu granicy " "Stanów Zjednoczonych" #: timezones.h:396 msgid "America/Toronto" msgstr "Ameryka/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "Czas wschodni - Ontario - większość lokalizacji" #: timezones.h:399 msgid "America/Tortola" msgstr "Ameryka/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "Ameryka/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "Czas pacyficzny - zachodnia Kolumbia Brytyjska" #: timezones.h:403 msgid "America/Virgin" msgstr "Ameryka/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Ameryka/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "Czas pacyficzny - południowy Jukon" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Ameryka/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "Czas środkowy - Manitoba i zachodnie Ontario" #: timezones.h:410 msgid "America/Yakutat" msgstr "Ameryka/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "Czas Alaski - korytarz alaskański" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Ameryka/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "Czas górski - środkowe Terytoria Północnozachodnie" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Antarktyda/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "Stacja Casey, półwysep Bailey" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Antarktyda/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "Stacja Davis, Vestfold Hills" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Antarktyda/DumontdUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Stacja Dumont-d'Urville, Terre Adelie" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "Antarktyda/Macquarie" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "Stacja Macquarie Island, Wyspa Macquarie" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Antarktyda/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "Stacja Mawson, zatoka Holme" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Antarktyda/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "Stacja McMurdo, Wyspa Rossa" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Antarktyda/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "Stacja Palmera, Wyspy Anvers" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Antarktyda/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "Stacja Rothera, Wyspy Królowej Adelajdy" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antarktyda/Biegun_Południowy" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "Stacja Amundsena i Scotta, biegun południowy" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Antarktyda/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "Stacja Syowa, wschodni Ongul I" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Antarktyda/Wostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "Stacja Wostok, południowy biegun magnetyczny" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Arktyka/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Azja/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Azja/Ałma Ata" #: timezones.h:454 msgid "Asia/Amman" msgstr "Azja/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Azja/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "Moskwa+08 - Morze Beringa" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Azja/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Azja/Aktyubińsk" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "Aqtobe (Aktobe)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Azja/Aszchabad" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Azja/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Azja/Bagdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Azja/Bahrajn" #: timezones.h:468 msgid "Asia/Baku" msgstr "Azja/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Azja/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Azja/Bejrut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Azja/Biszkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Azja/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Azja/Kalkuta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Azja/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "Dornod, Sukhbaatar" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Azja/Czungcing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "Środkowe Chiny - Syczuan, Yunnan, Guangxi, Shaanxi, Guizhou itp." #: timezones.h:480 msgid "Asia/Chungking" msgstr "Azja/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Azja/Kolombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Azja/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Azja/Damaszek" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Azja/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Azja/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Azja/Dubajj" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Azja/Duszanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Azja/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Azja/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Heilongjiang (poza Mohe), Jilin" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "Azja/Ho_Chi_Minh" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Azja/Hongkong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Azja/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Azja/Irkuck" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "Moskwa+05 - Jezioro Bajkał" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Azja/Stambuł" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Azja/Dżakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "Jawa i Sumatra" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Azja/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "Jaya i Moluccas irańskie" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Azja/Jerozolima" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Azja/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Azja/Kamczatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "Moskwa+08 - Kamczatka" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Azja/Karaczi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Azja/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "zachodni Tybet i Xinjiang" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "Azja/Katmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Azja/Katmandu" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "Azja/Kalkuta" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Azja/Krasnojarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "Moskwa+04 - Rzeka Jenisej" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Azja/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "Półwysep Malajski" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Azja/Kuczing" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "Sabah i Sarawak" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Azja/Kuwejt" #: timezones.h:529 msgid "Asia/Macao" msgstr "Azja/Makao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Azja/Makau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Azja/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "Moskwa+08 - Magadan" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Azja/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" "Wschodnie i południowe Borneo, Celebes, Bali, Nusa Tengarra, zachodni Timor" #: timezones.h:537 msgid "Asia/Manila" msgstr "Azja/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Azja/Maskat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Azja/Nikozja" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "Azja/NowokuÅŗnieck" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "Moskwa+03 - NowokuÅŗnieck" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Azja/Nowosybirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "Moskwa+03 - Nowosybirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Azja/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "Moskwa+03 - zachodnia Syberia" #: timezones.h:549 msgid "Asia/Oral" msgstr "Azja/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "Zachodni Kazachstan" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Azja/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Azja/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "Zachodnie i środkowe Borneo" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Azja/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Azja/Katar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Azja/Kyzył-Orda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "Qyzylorda (Kyzylorda, Kzyl-Orda)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Azja/Rangun" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Azja/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Azja/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Azja/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Azja/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Azja/Sajgon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Azja/Sachalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "Moskwa+07 - Wyspa Sachalin" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Azja/Samarkanda" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "Zachodni Uzbekistan" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Azja/Seul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Azja/Szanghaj" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "wschodnie Chiny - Pekin, Guangdong, Szanghaj itp." #: timezones.h:577 msgid "Asia/Singapore" msgstr "Azja/Singapur" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Azja/Tajpej" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Azja/Taszkient" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "Wschodni Uzbekistan" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Azja/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Azja/Teheran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Azja/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Azja/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Azja/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Azja/Tokio" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Azja/Ujung_Pandag" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Azja/Ułan Bator" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Azja/Ułan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Azja/Urumczi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "Większość Tybetu i Xinjiang" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Azja/Wientian" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Azja/Władywostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "Moskwa+07 - Rzeka Amur" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Azja/Jakuck" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "Moskwa+06 - Rzeka Lena" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Azja/Jekaterynburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "Moskwa+02 - Góry Ural" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Azja/Erewan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlantyk/Azory" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "Azory" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlantyk/Bermudy" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlantyk/Kanary" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "Wyspy Kanaryjskie" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlantyk/Wyspy_Zielonego_Przylądka" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlantyk/Wyspy Owcze" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "Atlantyk/Wyspy_Owcze" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlantyk/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlantyk/Madera" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "Wyspy Madera" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlantyk/Rejkiawik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlantyk/Georgia_Południowa" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlantyk/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlantyk/Św._Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "Australia/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Australia/Adelajda" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "Południowa Australia" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Australia/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "Queensland - większość lokalizacji" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Australia/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "Nowa Południowa Walia - Yancowinna" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Australia/Canberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "Australia/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "Tasmania - Wyspa King" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Australia/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "Terytorium Północne" #: timezones.h:642 msgid "Australia/Eucla" msgstr "Australia/Eucla" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "Zachodnia Australia - obszar Eucla" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Australia/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "Tasmania - większość lokalizacji" #: timezones.h:648 msgid "Australia/LHI" msgstr "Australia/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Australia/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "Queensland - Wyspy Bożego Narodzenia" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Australia/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "Wyspa Lord Howe" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Australia/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "Australia/Północ" #: timezones.h:659 msgid "Australia/NSW" msgstr "Australia/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "Australia/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "Zachodnia Australia - większość lokalizacji" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Australia/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "Australia/Południe" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Australia/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "Nowa Południowa Walia - większość lokalizacji" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Australia/Tasmania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Australia/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "Australia/Zachód" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Australia/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brazylia/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brazylia/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brazylia/Wschód" #: timezones.h:675 msgid "Brazil/West" msgstr "Brazylia/Zachód" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Kanada/Atlantyk" #: timezones.h:677 msgid "Canada/Central" msgstr "Kanada/Środkowa" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Kanada/Wschodnia" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Kanada/Wschód-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Kanada/Góry" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Kanada/Nowa Fundlandia" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Kanada/Pacyfik" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Kanada/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Kanada/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Chile/Kontynentalny" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chile/Wyspa Wielkanocna" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Kuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Egipt" #: timezones.h:692 msgid "Eire" msgstr "Eire" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Uniwersalny" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Europa/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Europa/Andora" #: timezones.h:732 msgid "Europe/Athens" msgstr "Europa/Ateny" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Europa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Europa/Belgrad" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Europa/Berlin" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Europa/Bratysława" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Europa/Bruksela" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Europa/Bukareszt" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Europa/Budapeszt" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Europa/Kiszyniów" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Europa/Kopenhaga" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Europa/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Europa/Gibraltar" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Europa/Guernsey" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Europa/Helsinki" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Europa/Wyspa_Man" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Europa/Istambuł" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Europa/Jersey" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Europa/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "Moskwa-01 - Kaliningrad" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Europa/Kijów" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Europa/Lisbona" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Europa/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Europa/Londyn" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Europa/Luksemburg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Europa/Madryt" #: timezones.h:764 msgid "Europe/Malta" msgstr "Europa/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Europa/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Europa/Mińsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Europa/Monako" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Europa/Moskwa" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "Moskwa+00 - zachodnia Rosja" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Europa/Nikozja" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Europa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Europa/Paryż" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Europa/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Europa/Praga" #: timezones.h:776 msgid "Europe/Riga" msgstr "Europa/Ryga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Europa/Rzym" #: timezones.h:778 msgid "Europe/Samara" msgstr "Europa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "Moskwa - Samara, Udmurta" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Europa/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Europa/Sarajewo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Europa/Symferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "Środkowy Krym" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Europa/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Europa/Sofia" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Europa/Sztokholm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Europa/Tallin" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Europa/Tirana" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Europa/Terespol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Europa/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "Ruś" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Europa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Europa/Watykan" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Europa/Wiedeń" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Europa/Wilno" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Europa/Wołgograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "Moskwa+00 - Morze Kaspijskie" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Europa/Warszawa" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Europa/Zagrzeb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Europa/Zaporoże" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Zaporoże, wschodni Ługańsk/Zaporoże, wschodni Ługańsk" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Europa/Zurich" #: timezones.h:808 msgid "Factory" msgstr "Factory" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Islandia" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Indyjski/Antananarywa" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Indyjski/Czagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Indyjski/Wyspa Bożego Narodzenia" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Indyjski/Wyspy Kokosowe" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Indyjski/Komory" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Indyjski/Wyspy Kerguelena" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Indyjski/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Indyjski/Malediwy" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Indyjski/auritius" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Indyjski/Majotta" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Indyjski/Reunion" #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "Izrael" #: timezones.h:833 msgid "Jamaica" msgstr "Jamajka" #: timezones.h:834 msgid "Japan" msgstr "Japonia" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libia" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Meksyk/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Meksyk/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Meksyk/Ogólny" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Mideast/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Mideast/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Mideast/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Pacyfik/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Pacyfik/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Pacyfik/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "Wyspy Chatham" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "Pacyfik/Chuuk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "Chuuk (Truk) i Yap" #: timezones.h:859 msgid "Pacific/Easter" msgstr "Pacyfik/Wyspa Wielkanocna" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "Wyspy Wielkanocne i Sala y Gomez" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Pacyfik/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Pacyfik/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "Wyspy Feniks" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Pacyfik/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Pacyfik/Fidżi" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Pacyfik/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Pacyfik/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "Wyspy Galapagos" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Pacyfik/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "Wyspy Gambiera" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Pacyfik/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Pacyfik/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Pacyfik/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "Hawaje" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Pacyfik/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "Atol Johnstona" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Pacyfik/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "Wyspy Line" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Pacyfik/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "Kosrae" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Pacyfik/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Pacyfik/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Pacyfik/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "Markizy" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Pacyfik/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "Wyspy Midway" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Pacyfik/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Pacyfik/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Pacyfik/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Pacyfik/Numea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Pacyfik/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Pacyfik/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Pacyfik/Pitcairn" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "Pacyfik/Pohnpei" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "Pohnpei (Ponape)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Pacyfik/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Pacyfik/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Pacyfik/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Pacyfik/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Pacyfik/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Pacyfik/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "Wyspy Towarzystwa" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Pacyfik/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "Wyspy Gilberta" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Pacyfik/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Pacyfik/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Pacyfik/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "Wyspa Wake" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Pacyfik/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Pacyfik/Yap" #: timezones.h:929 msgid "Poland" msgstr "Polska" #: timezones.h:930 msgid "Portugal" msgstr "Portugalia" #: timezones.h:931 msgid "posixrules" msgstr "Reguły POSIX" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapur" #: timezones.h:937 msgid "Turkey" msgstr "Turcja" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Uniwersalny" #: timezones.h:940 msgid "US/Alaska" msgstr "US/Alaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "US/Aleutian" #: timezones.h:942 msgid "US/Arizona" msgstr "US/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "US/Środkowe" #: timezones.h:944 msgid "US/Eastern" msgstr "US/Wschodnie" #: timezones.h:945 msgid "US/East-Indiana" msgstr "US/Wschodnia-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "US/Hawaje" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "US/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "US/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "US/Góry" #: timezones.h:950 msgid "US/Pacific" msgstr "US/Pacyfik" #: timezones.h:951 msgid "US/Samoa" msgstr "US/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/hu.po0000664000175000017500000017576714632072346023722 0ustar fabiofabio# Arpad Biro , 2004, 2007. # SzentivĆ”nyi GĆ”bor , 2006. msgid "" msgstr "" "Project-Id-Version: system-config-date/timezones\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-04-03 14:23+0100\n" "Last-Translator: Zoltan Hoppar \n" "Language-Team: Hungarian \n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" "X-Poedit-Language: Hungarian\n" "X-Poedit-Country: HUNGARY\n" "X-Poedit-SourceCharset: utf-8\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Afrika/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Afrika/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Afrika/Addisz-Abeba" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Afrika/AlgĆ­r" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Afrika/Asmara" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Afrika/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Afrika/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Afrika/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Afrika/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Afrika/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Afrika/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Afrika/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Afrika/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Afrika/Kairó" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Afrika/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Afrika/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Ceuta & Melilla" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Afrika/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Afrika/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Afrika/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Afrika/Dzsibuti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Afrika/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Afrika/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Afrika/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Afrika/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Afrika/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Afrika/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Afrika/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Afrika/Kartum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Afrika/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Afrika/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "ny-i Demokratikus Kongó-i Kƶzt." #: timezones.h:35 msgid "Africa/Lagos" msgstr "Afrika/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Afrika/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Afrika/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Afrika/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Afrika/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "K-i Demokratikus Kongó-i Kƶzt." #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Afrika/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Afrika/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Afrika/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Afrika/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Afrika/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Afrika/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Afrika/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Afrika/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Afrika/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Afrika/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Afrika/Noukachott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Afrika/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Afrika/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Afrika/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Afrika/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Afrika/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Afrika/Tunisz" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Afrika/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "Amerika/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "AusztrĆ”lia/Aleutian szigetek" #: timezones.h:63 msgid "America/Anchorage" msgstr "Amerika/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "Alaszka-i idő" #: timezones.h:66 msgid "America/Anguilla" msgstr "Amerika/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "Amerika/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "Amerika/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Tokantin Ć”llam (Brazilia, Amazónia - Palmas)" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Amerika/ArgentĆ­na/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Buenos Aires (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Amerika/ArgentĆ­na/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "Catamarca (CT), Chubut (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Amerika/ArgentĆ­na/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Amerika/ArgentĆ­na/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "leggyakoribb helyein (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Amerika/ArgentĆ­na/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Jujuy (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Amerika/ArgentĆ­na/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "La Rioja (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Amerika/ArgentĆ­na/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "Mendoza (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Amerika/ArgentĆ­na/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Santa Cruz (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "America/Argentina/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Amerika/ArgentĆ­na/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "San Juan (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "Amerika/ArgentĆ­na/San_Luis" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "San Luis (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Amerika/ArgentĆ­na/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Tucuman (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Amerika/ArgentĆ­na/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Tierra del Fuego (TF) (Patagónia)" #: timezones.h:108 msgid "America/Aruba" msgstr "Amerika/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "Amerika/Asuncion" #: timezones.h:110 msgid "America/Atikokan" msgstr "Amerika/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "EST - Atikokan, Ontario Ć©s Southampton I, Nunavut" #: timezones.h:113 msgid "America/Atka" msgstr "Amerika/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "Amerika/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "Bahia" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "Amerika/Bahia" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "Amerika/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "Amerika/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "Amapa, E Para" #: timezones.h:124 msgid "America/Belize" msgstr "Amerika/Beliz" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "Amerika/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Amerika/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "Roraima" #: timezones.h:131 msgid "America/Bogota" msgstr "Amerika/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "Amerika/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Amerika/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Amerika/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "Amerika/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "Mato Grosso do Sul" #: timezones.h:142 msgid "America/Cancun" msgstr "Amerika/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "Amerika/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "Amerika/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "Amerika/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "Amerika/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "Amerika/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "KƶzĆ©p Amerikai idő" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Amerika/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "Amerika/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "Amerika/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Amerika/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Amerika/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "Mato Grosso" #: timezones.h:161 msgid "America/Curacao" msgstr "Amerika/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Amerika/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "keleti part, Ɖ-i rĆ©sze Scoresbysund-nak" #: timezones.h:165 msgid "America/Dawson" msgstr "Amerika/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Amerika/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "Amerika/Denver" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "Mountain Time" #: timezones.h:174 msgid "America/Detroit" msgstr "Amerika/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "Amerika/Dominika" #: timezones.h:178 msgid "America/Edmonton" msgstr "Amerika/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "Amerika/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "Ny. Amazonas" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Amerika/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "Amerika/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Amerika/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "ƉK Brazilia (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Amerika/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Amerika/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "Amerika/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "leggyakoribb helyein" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Amerika/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Amerika/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "Amerika/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Amerika/Guadaloupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "Amerika/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Amerika/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "Amerika/Guyana" #: timezones.h:207 msgid "America/Halifax" msgstr "Amerika/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "Amerika/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Amerika/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Amerika/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Amerika/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Amerika/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "Amerika/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Amerika/Indianapolis" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "Amerika/Indiana/Tell_City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "Amerika/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "Amerika/Indiana/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "Amerika/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Amerika/Iqualit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "Amerika/Jamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "Amerika/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "Amerika/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Amerika/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "Amerika/Kentucky/Louisville területe" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Amerika/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Amerika/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "Amerika/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "Amerika/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Amerika/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "Nyugati partok szerinti idő" #: timezones.h:262 msgid "America/Louisville" msgstr "Amerika/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "Amerika/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "Alagoas, Sergipe" #: timezones.h:266 msgid "America/Managua" msgstr "Amerika/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "Amerika/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "K Amazonas" #: timezones.h:270 msgid "America/Marigot" msgstr "Amerika/Marigot" #: timezones.h:271 msgid "America/Martinique" msgstr "Amerika/Martinique" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "Amerika/Manaus" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Amerika/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "Amerika/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "Amerika/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "Amerika/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Amerika/Mexico_City" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "Amerika/Miquelon" #: timezones.h:289 msgid "America/Moncton" msgstr "Amerika/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "Amerika/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "Amerika/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "Amerika/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "Amerika/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "Amerika/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "Amerika/New_York" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "Keleti partok szerinti idő" #: timezones.h:304 msgid "America/Nipigon" msgstr "Amerika/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "Amerika/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "Alaszkai Idő - NY Alaszka" #: timezones.h:310 msgid "America/Noronha" msgstr "Amerika/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "Atlanti szigetek" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Amerika/Ɖszak-Dakota/KƶzĆ©p" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "Amerika/Ɖszak-Dakota/New_Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "Amerika/Managua" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "Amerika/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Amerika/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Amerika/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "Amerika/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Amerika/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Amerika/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Amerika/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Amerika/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "Rondonia" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Amerika/Puerto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Amerika/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Amerika/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "Amerika/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "Pernambuco" #: timezones.h:346 msgid "America/Regina" msgstr "Amerika/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 msgid "America/Resolute" msgstr "Amerika/Resolute" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Amerika/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "Acre" #: timezones.h:355 msgid "America/Rosario" msgstr "Amerika/Rosario" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "Amerika/Santarem" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 msgid "America/Santarem" msgstr "Amerika/Santarem" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "Ny. Para" #: timezones.h:362 msgid "America/Santiago" msgstr "Amerika/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Amerika/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Amerika/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "K & DK Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Amerika/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Scoresbysund / Ittoqqortoormiit" #: timezones.h:372 msgid "America/Shiprock" msgstr "Amerika/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "Mountain Time - Navajo" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "Amerika/St_Barthelemy" #: timezones.h:376 msgid "America/St_Johns" msgstr "Amerika/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Amerika/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Amerika/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Amerika/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Amerika/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Amerika/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Amerika/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "Amerika/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "Thule / Pituffik" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Amerika/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "Keleti parti idő - Thunder Bay, Ontario" #: timezones.h:393 msgid "America/Tijuana" msgstr "Amerika/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "Amerika/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "Keleti Idő - Ontario - legtƶbb helyein" #: timezones.h:399 msgid "America/Tortola" msgstr "Amerika/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "Amerika/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "Amerika/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Amerika/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Amerika/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "Central Time - Manitoba & nyugat Ontario" #: timezones.h:410 msgid "America/Yakutat" msgstr "Amerika/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "Alaszkai idő szerint - Alaszka" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Amerika/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "Mountain Time - kƶzĆ©p ƉNY-i területek" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Antarktisz/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "Casey ƁllomĆ”s, Bailey Peninsula" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Antarktisz/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "Davis ƁllomĆ”s, Vestfold Hills" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Antarktisz/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Dumont-d'Urville ƁllomĆ”s, Terre Adelie" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "Antarktisz/McMurdo" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 #, fuzzy msgid "Macquarie Island Station, Macquarie Island" msgstr "McMurdo ƁllomĆ”s, Ross sziget" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Antarktisz/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "Mawson ƁllomĆ”s, Holme-ƶbƶl" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Antarktisz/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "McMurdo ƁllomĆ”s, Ross sziget" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Antarktisz/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "Palmer Ć”llomĆ”s, Anvers sziget" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Antarktisz/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "Rothera ƁllomĆ”s, Adelaide sziget" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antarktisz/DĆ©li-sark" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "Amundsen-Scott ƁllomĆ”s, DĆ©li sark" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Antarktisz/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "Syowa ƁllomĆ”s, E Ongul I" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Antarktisz/Vosztok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "Vosztok ƁllomĆ”s, DĆ©li sark" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Antarktisz/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Ɓzsia/Ɓden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Ɓzsia/Alma-Ata" #: timezones.h:454 msgid "Asia/Amman" msgstr "Ɓzsia/AmmĆ”n" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Ɓzsia/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 #, fuzzy msgid "Moscow+08 - Bering Sea" msgstr "Moszkva+10 - Bering tenger" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Ɓzsia/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Ɓzsia/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "Aqtobe (Aktobe)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Ɓzsia/Ashkabad" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Ɓzsia/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Ɓzsia/Bagdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Ɓzsia/Bahrein" #: timezones.h:468 msgid "Asia/Baku" msgstr "Ɓzsia/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Ɓzsia/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Ɓzsia/BejrĆŗt" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Ɓzsia/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Ɓzsia/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Ɓzsia/Calcutta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Ɓzsia/CsojbalszĆ”n" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "Dornod, Sukhbaatar" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Ɓzsia/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "KĆ­na kƶzpontja - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, stb." #: timezones.h:480 msgid "Asia/Chungking" msgstr "Ɓzsia/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Ɓzsia/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Ɓzsia/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Ɓzsia/Damaszkusz" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Ɓzsia/Dacca" #: timezones.h:485 msgid "Asia/Dili" msgstr "Ɓzsia/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Ɓzsia/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Ɓzsia/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Ɓzsia/GĆ”za" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Ɓzsia/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Heilongjiang (Mohe kivĆ©telĆ©vel), Jilin" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "Ɓzsia/Ho-Chi-Minh" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Ɓzsia/Hongkong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Ɓzsia/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Ɓzsia/Irkutszk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "Moszkva+05 - BajkĆ”l tó kƶrnyĆ©ke" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Ɓzsia/Isztambul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Ɓzsia/Dzsakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "Java & SzumĆ”tra" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Ɓzsia/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "Irian Jaya & Molokai" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Ɓzsia/JeruzsĆ”lem" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Ɓzsia/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Ɓzsia/Kamcsatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 #, fuzzy msgid "Moscow+08 - Kamchatka" msgstr "Moszkva+09 - Kamcsatka" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Ɓzsia/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Ɓzsia/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "Tibet & Xinjiang nyugai rĆ©sze" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "Ɓzsia/Kathmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Ɓzsia/Katmandu" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "Ɓzsia/Kolkata" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Ɓzsia/Krasznojarszk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "Moszkva+04 - Jeniszei folyó" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Ɓzsia/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "Malajzia (belső)" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Ɓzsia/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "Sabah & Sarawak" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Ɓzsia/Kuvait" #: timezones.h:529 msgid "Asia/Macao" msgstr "Ɓzsia/Makaó" #: timezones.h:530 msgid "Asia/Macau" msgstr "Ɓzsia/Macau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Ɓzsia/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "Moszkva+08 - Magadan" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Ɓzsia/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" "Borneo keleti Ć©s dĆ©li rĆ©sze, Celebes, Bali, Nusa Tengarra,Timor nyugati rĆ©sze" #: timezones.h:537 msgid "Asia/Manila" msgstr "Ɓzsia/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Ɓzsia/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Ɓzsia/Nicosia" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "Ɓzsia/Irkutszk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "Moszkva+03 - Novosibirsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Ɓzsia/Novoszibirszk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "Moszkva+03 - Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Ɓzsia/Omszk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "Moszkva+03 - SzibĆ©ria nyugati rĆ©sze" #: timezones.h:549 msgid "Asia/Oral" msgstr "Ɓzsia/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "KazahsztĆ”n nyugati rĆ©sz" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Ɓzsia/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Ɓzsia/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "Borneo nyugati Ć©s kƶzĆ©pső rĆ©sze" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Ɓzsia/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Ɓzsia/Katar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Ɓzsia/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "Qyzylorda (Kyzylorda, Kzyl-Orda)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Ɓzsia/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Ɓzsia/RijĆ”d" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Ɓzsia/RijĆ”d87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Ɓzsia/RijĆ”d88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Ɓzsia/RijĆ”d89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Ɓzsia/Saigon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Ɓzsia/Szahalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "Moszkva+07 - Sakhalin sziget" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Ɓzsia/Szamarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "ÜzbegisztĆ”n - nyugat" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Ɓzsia/Szƶul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Ɓzsia/Sanghaj" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "KĆ­na keleti rĆ©sz - Beijing, Guangdong, Shanghai, stb." #: timezones.h:577 msgid "Asia/Singapore" msgstr "Ɓzsia/SzingapĆŗr" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Ɓzsia/Tajpej" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Ɓzsia/Taskent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "ÜzbegisztĆ”n - kelet" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Ɓzsia/Tbiliszi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Ɓzsia/TeherĆ”n" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Ɓzsia/Tel-Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Ɓzsia/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Ɓzsia/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Ɓzsia/Tokió" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Ɓzsia/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Ɓzsia/UlĆ”nbĆ”tor" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Ɓzsia/UlĆ”nbĆ”tor" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Ɓzsia/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "Tibet & Xinjiang nagyobb rĆ©sze" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Ɓzsia/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Ɓzsia/Vlagyivosztok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "Moszkva+07 - Amur folyó" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Ɓzsia/Jakutszk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "Moszkva+06 - Lena folyó" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Ɓzsia/Jekatyerinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "Moszkva+02 - UrĆ”l kƶrnyĆ©ke" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Ɓzsia/JerevĆ”n" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlanti-óceĆ”n/Azori-szk." #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "Azori szigetek" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlanti-óceĆ”n/Bermuda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlanti-óceĆ”n/KanĆ”ri-szk." #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "KanĆ”ri szigetek" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlanti-óceĆ”n/Zƶld-foki-szk." #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlanti-óceĆ”n/Ferƶer-szk." #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "Atlanti-óceĆ”n/Ferƶer-szk." #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlanti-óceĆ”n/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlanti-óceĆ”n/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "Madeira szigetek" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlanti-óceĆ”n/ReykjavĆ­k" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlanti-óceĆ”n/DĆ©l-Georgia" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlanti-óceĆ”n/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlanti-óceĆ”n/St_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "AusztrĆ”lia/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "AusztrĆ”lia/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "DĆ©l AusztrĆ”lia" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "AusztrĆ”lia/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "Queensland- a legtƶbb helyein" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "AusztrĆ”lia/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "Új DĆ©l Wales - Yancowinna" #: timezones.h:635 msgid "Australia/Canberra" msgstr "AusztrĆ”lia/Canberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "AusztrĆ”lia/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "TazmĆ”nia - King sziget" #: timezones.h:639 msgid "Australia/Darwin" msgstr "AusztrĆ”lia/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "Ɖszaki területek" #: timezones.h:642 msgid "Australia/Eucla" msgstr "AusztrĆ”lia/Eucla" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "Nyugat AusztrĆ”lia - Eucla területe" #: timezones.h:645 msgid "Australia/Hobart" msgstr "AusztrĆ”lia/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "TazmĆ”nia - legtƶbb helyein" #: timezones.h:648 msgid "Australia/LHI" msgstr "AusztrĆ”lia/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "AusztrĆ”lia/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "Queensland - Holiday szigetek" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "AusztrĆ”lia/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "Lord Howe sziget" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "AusztrĆ”lia/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "AusztrĆ”lia/Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "AusztrĆ”lia/Ɖszak" #: timezones.h:659 msgid "Australia/NSW" msgstr "AusztrĆ”lia/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "AusztrĆ”lia/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "Nyugat AusztrĆ”lia - legtƶbb helyein" #: timezones.h:663 msgid "Australia/Queensland" msgstr "AusztrĆ”lia/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "AusztrĆ”lia/DĆ©l" #: timezones.h:665 msgid "Australia/Sydney" msgstr "AusztrĆ”lia/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "Új DĆ©l Wales - legtƶbb helyein" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "AusztrĆ”lia/TasmĆ”nia" #: timezones.h:669 msgid "Australia/Victoria" msgstr "AusztrĆ”lia/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "AusztrĆ”lia/Nyugat" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "AusztrĆ”lia/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "BrazĆ­lia/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "BrazĆ­lia/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "BrazĆ­lia/Kelet" #: timezones.h:675 msgid "Brazil/West" msgstr "BrazĆ­lia/Nyugat" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Kanada/Atlanti-óceĆ”n" #: timezones.h:677 msgid "Canada/Central" msgstr "Kanada/KƶzĆ©p" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Kanada/Kelet" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Kanada/Kelet-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Kanada/Mountain" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Kanada/Újfundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Kanada/Csendes-óceĆ”n" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Kanada/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Kanada/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Chile/SzĆ”razfƶld" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chile/HĆŗsvĆ©t-sziget" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Kuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Egyiptom" #: timezones.h:692 msgid "Eire" msgstr "ƍrorszĆ”g" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "EgyĆ©b/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "EgyĆ©b/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "EgyĆ©b/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "EgyĆ©b/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "EgyĆ©b/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "EgyĆ©b/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "EgyĆ©b/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "EgyĆ©b/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "EgyĆ©b/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "EgyĆ©b/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "EgyĆ©b/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "EgyĆ©b/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "EgyĆ©b/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "EgyĆ©b/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "EgyĆ©b/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "EgyĆ©b/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "EgyĆ©b/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "EgyĆ©b/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "EgyĆ©b/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "EgyĆ©b/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "EgyĆ©b/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "EgyĆ©b/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "EgyĆ©b/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "EgyĆ©b/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "EgyĆ©b/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "EgyĆ©b/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "EgyĆ©b/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "EgyĆ©b/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "EgyĆ©b/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "EgyĆ©b/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "EgyĆ©b/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "EgyĆ©b/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "EgyĆ©b/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "EgyĆ©b/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "EgyĆ©b/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Európa/Amszterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Európa/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Európa/AthĆ©n" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Európa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Európa/BelgrĆ”d" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Európa/Berlin" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Európa/Pozsony" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Európa/Brüsszel" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Európa/Bukarest" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Európa/Budapest" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Európa/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Európa/KoppenhĆ”ga" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Európa/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Európa/GibraltĆ”r" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Európa/Guernsey" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Európa/Helsinki" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Európa/Man-sziget" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Európa/Isztambul" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Európa/Jersey" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Európa/KalinyingrĆ”d" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "Moscow-01 - Kaliningrad" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Európa/Kijev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Európa/Lisszabon" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Európa/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Európa/London" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Európa/Luxemburg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Európa/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Európa/MĆ”lta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Európa/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Európa/Minszk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Európa/Monaco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Európa/Moszkva" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "Moscow+00 - OroszorszĆ”g, nyugati rĆ©sz" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Európa/Nicosia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Európa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Európa/PĆ”rizs" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Európa/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Európa/PrĆ”ga" #: timezones.h:776 msgid "Europe/Riga" msgstr "Európa/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Európa/Róma" #: timezones.h:778 msgid "Europe/Samara" msgstr "Európa/Szamara" #. comment for time zone Europe/Samara #: timezones.h:780 #, fuzzy msgid "Moscow - Samara, Udmurtia" msgstr "Moszkva+01 - Samara, Udmurtia" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Európa/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Európa/Szarajevó" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Európa/Szimferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "KrĆ­m - kƶzĆ©pső rĆ©sze" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Európa/Szkopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Európa/Szófia" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Európa/Stockholm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Európa/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Európa/Tirana" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Európa/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Európa/ƉrsekĆŗjvĆ”r" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "Ruthenia" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Európa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Európa/VatikĆ”n" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Európa/BĆ©cs" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Európa/Vilnius" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Európa/VolgogrĆ”d" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "Moszkva+00 - Kaszpi tenger" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Európa/Varsó" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Európa/ZĆ”grĆ”b" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Európa/Zaporozsje" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Európa/Zürich" #: timezones.h:808 msgid "Factory" msgstr "Factory" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-ƍrorszĆ”g" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Izland" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Indiai-óceĆ”n/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Indiai-óceĆ”n/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Indiai-óceĆ”n/KarĆ”csony-szk." #: timezones.h:822 msgid "Indian/Cocos" msgstr "Indiai-óceĆ”n/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Indiai-óceĆ”n/Comoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Indiai-óceĆ”n/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Indiai-óceĆ”n/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Indiai-óceĆ”n/MaldĆ­v-szk." #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Indiai-óceĆ”n/Mauritius" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Indiai-óceĆ”n/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Indiai-óceĆ”n/Reunion" #: timezones.h:830 msgid "Iran" msgstr "IrĆ”n" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166" #: timezones.h:832 msgid "Israel" msgstr "Izrael" #: timezones.h:833 msgid "Jamaica" msgstr "Jamaica" #: timezones.h:834 msgid "Japan" msgstr "JapĆ”n" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "LĆ­bia" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Mexikó/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Mexikó/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Mexikó/ƁltalĆ”nos" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "KƶzĆ©p-Kelet/RijĆ”d87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "KƶzĆ©p-Kelet/RijĆ”d88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "KƶzĆ©p-Kelet/RijĆ”d89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Csendes-óceĆ”n/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Csendes-óceĆ”n/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Csendes-óceĆ”n/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "Chile/Chatham-szigetek" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "Csendes-óceĆ”n/Truk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 #, fuzzy msgid "Chuuk (Truk) and Yap" msgstr "Truk (Chuuk) Ć©s Yap" #: timezones.h:859 msgid "Pacific/Easter" msgstr "Csendes-óceĆ”n/HĆŗsvĆ©t-sziget" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "HĆŗsvĆ©t szigetek & Sala y Gomez" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Csendes-óceĆ”n/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Csendes-óceĆ”n/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "Főnix szigetek" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Csendes-óceĆ”n/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Csendes-óceĆ”n/Fidzsi" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Csendes-óceĆ”n/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Csendes-óceĆ”n/GalĆ”pagos-szk." #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "Galapagos szigetek" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Csendes-óceĆ”n/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "Gambier szigetek" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Csendes-óceĆ”n/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Csendes-óceĆ”n/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Csendes-óceĆ”n/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "USA/Hawaii" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Csendes-óceĆ”n/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "Johnston Atoll" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Csendes-óceĆ”n/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "Line szigetek" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Csendes-óceĆ”n/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "Kosrae (MikronĆ©zia)" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Csendes-óceĆ”n/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Csendes-óceĆ”n/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Csendes-óceĆ”n/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "Marquesas szigetek (Fr. PolinĆ©zia)" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Csendes-óceĆ”n/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "Midway szigetek" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Csendes-óceĆ”n/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Csendes-óceĆ”n/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Csendes-óceĆ”n/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Csendes-óceĆ”n/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Csendes-óceĆ”n/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Csendes-óceĆ”n/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Csendes-óceĆ”n/Pitcairn" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "Csendes-óceĆ”n/Panape" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 #, fuzzy msgid "Pohnpei (Ponape)" msgstr "Ponape (Ponpei)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Csendes-óceĆ”n/Panape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Csendes-óceĆ”n/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Csendes-óceĆ”n/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Csendes-óceĆ”n/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Csendes-óceĆ”n/Szamoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Csendes-óceĆ”n/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "Society szigetek" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Csendes-óceĆ”n/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "Chile/Gilbert-szigetek" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Csendes-óceĆ”n/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Csendes-óceĆ”n/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Csendes-óceĆ”n/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "Wake sziget" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Csendes-óceĆ”n/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Csendes-óceĆ”n/Yap" #: timezones.h:929 msgid "Poland" msgstr "LengyelorszĆ”g" #: timezones.h:930 msgid "Portugal" msgstr "PortugĆ”lia" #: timezones.h:931 msgid "posixrules" msgstr "Posix szabvĆ”ny szerinti" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "SzingapĆŗr" #: timezones.h:937 msgid "Turkey" msgstr "TƶrƶkorszĆ”g" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "USA/Alaszka" #: timezones.h:941 msgid "US/Aleutian" msgstr "USA/Aleutian" #: timezones.h:942 msgid "US/Arizona" msgstr "USA/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "USA/KƶzĆ©p" #: timezones.h:944 msgid "US/Eastern" msgstr "USA/Kelet" #: timezones.h:945 msgid "US/East-Indiana" msgstr "USA/Kelet-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "USA/Hawaii" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "USA/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "USA/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "USA/Mountain" #: timezones.h:950 msgid "US/Pacific" msgstr "USA/Csendes-óceĆ”n" #: timezones.h:951 msgid "US/Samoa" msgstr "USA/Szamoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" #~ msgid "US/Pacific-New" #~ msgstr "USA/Csendes-óceĆ”n-Ćŗj" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/is.po0000664000175000017500000020126014632072346023673 0ustar fabiofabio# translation of system-config-date.master-timezones.is.po to Icelandic # Sveinn Ć­ Felli , 2009, 2010. # Ć­slensk þýðing system-config-date.master-timezones.is.po msgid "" msgstr "" "Project-Id-Version: system-config-date.master-timezones.is\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-05-05 10:23+0000\n" "Last-Translator: Sveinn Ć­ Felli \n" "Language-Team: Icelandic \n" "Language: is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: Plural-Forms: nplurals=2; plural=1;\n" "\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "AfrĆ­ka/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "AfrĆ­ka/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "AfrĆ­ka/Addis_Ababa" #: timezones.h:4 msgid "Africa/Algiers" msgstr "AfrĆ­ka/Algiers" #: timezones.h:5 msgid "Africa/Asmara" msgstr "AfrĆ­ka/Asmara" #: timezones.h:6 msgid "Africa/Asmera" msgstr "AfrĆ­ka/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "AfrĆ­ka/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "AfrĆ­ka/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "AfrĆ­ka/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "AfrĆ­ka/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "AfrĆ­ka/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "AfrĆ­ka/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "AfrĆ­ka/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "AfrĆ­ka/Cairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "AfrĆ­ka/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "AfrĆ­ka/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Ceuta & Melilla" #: timezones.h:19 msgid "Africa/Conakry" msgstr "AfrĆ­ka/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "AfrĆ­ka/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "AfrĆ­ka/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "AfrĆ­ka/Djibouti" #: timezones.h:23 msgid "Africa/Douala" msgstr "AfrĆ­ka/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "AfrĆ­ka/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "AfrĆ­ka/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "AfrĆ­ka/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "AfrĆ­ka/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "AfrĆ­ka/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "AfrĆ­ka/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "AfrĆ­ka/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "AfrĆ­ka/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "AfrĆ­ka/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "Vestur Kongó" #: timezones.h:35 msgid "Africa/Lagos" msgstr "AfrĆ­ka/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "AfrĆ­ka/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "AfrĆ­ka/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "AfrĆ­ka/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "AfrĆ­ka/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "Austur Kongó" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "AfrĆ­ka/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "AfrĆ­ka/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "AfrĆ­ka/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "AfrĆ­ka/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "AfrĆ­ka/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "AfrĆ­ka/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "AfrĆ­ka/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "AfrĆ­ka/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "AfrĆ­ka/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "AfrĆ­ka/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "AfrĆ­ka/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "AfrĆ­ka/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "AfrĆ­ka/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "AfrĆ­ka/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "AfrĆ­ka/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "AfrĆ­ka/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "AfrĆ­ka/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "AfrĆ­ka/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "AmerĆ­ka/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "AljĆŗtaeyjar" #: timezones.h:63 msgid "America/Anchorage" msgstr "AmerĆ­ka/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "AlaskatĆ­mi" #: timezones.h:66 msgid "America/Anguilla" msgstr "AmerĆ­ka/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "AmerĆ­ka/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "AmerĆ­ka/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Tocantin" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "AmerĆ­ka/Argentina/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Buenos Aires (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "AmerĆ­ka/Argentina/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "Catamarca (CT), Chubut (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "AmerĆ­ka/Argentina/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "AmerĆ­ka/Argentina/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "flestar staưsetningar (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "AmerĆ­ka/Argentina/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Jujuy (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "AmerĆ­ka/Argentina/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "La Rioja (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "AmerĆ­ka/Argentina/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "Mendoza (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "AmerĆ­ka/Argentina/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Santa Cruz (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "AmerĆ­ka/ArgentĆ­na/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "AmerĆ­ka/Argentina/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "San Juan (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "AmerĆ­ka/ArgentĆ­na/San_Juan" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "San Luis (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "AmerĆ­ka/Argentina/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Tucuman (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "AmerĆ­ka/Argentina/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Tierra del Fuego - Eldlandiư (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "AmerĆ­ka/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "AmerĆ­ka/Asuncion" #: timezones.h:110 msgid "America/Atikokan" msgstr "AmerĆ­ka/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "AusturstrandartĆ­mi EST - Atikokan, Ontario og Southampton I, Nunavut" #: timezones.h:113 msgid "America/Atka" msgstr "AmerĆ­ka/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "AmerĆ­ka/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "Bahia" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "AmerĆ­ka/Bahia" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "AmerĆ­ka/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "AmerĆ­ka/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "Amapa, A-Para" #: timezones.h:124 msgid "America/Belize" msgstr "AmerĆ­ka/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "AmerĆ­ka/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "AtlantshafstĆ­mi AST - Quebec - Lower North Shore" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "AmerĆ­ka/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "Roraima" #: timezones.h:131 msgid "America/Bogota" msgstr "AmerĆ­ka/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "AmerĆ­ka/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "KlettafjallatĆ­mi - suưur Idaho & austur Oregon" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "AmerĆ­ka/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "AmerĆ­ka/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "KlettafjallatĆ­mi - vestur Nunavut" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "AmerĆ­ka/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "Mato Grosso do Sul" #: timezones.h:142 msgid "America/Cancun" msgstr "AmerĆ­ka/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "MiưrĆ­kjatĆ­mi - Quintana Roo" #: timezones.h:145 msgid "America/Caracas" msgstr "AmerĆ­ka/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "AmerĆ­ka/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "AmerĆ­ka/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "AmerĆ­ka/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "AmerĆ­ka/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "MiưrĆ­kjatĆ­mi" #: timezones.h:152 msgid "America/Chihuahua" msgstr "AmerĆ­ka/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "MexĆ­kanskur KlettafjallatĆ­mi - Chihuahua frĆ” landamƦrum BNA" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "AmerĆ­ka/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "AmerĆ­ka/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "AmerĆ­ka/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "AmerĆ­ka/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "Mato Grosso" #: timezones.h:161 msgid "America/Curacao" msgstr "AmerĆ­ka/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "AmerĆ­ka/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "austurstrƶndin, norưan Scoresbysunds" #: timezones.h:165 msgid "America/Dawson" msgstr "AmerĆ­ka/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "KyrrahafstĆ­mi - norưur Yukon" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "AmerĆ­ka/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "KlettafjallatĆ­mi MST - Dawson Creek & Fort Saint John, Breska-KólumbĆ­a" #: timezones.h:171 msgid "America/Denver" msgstr "AmerĆ­ka/Denver" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "KlettafjallatĆ­mi" #: timezones.h:174 msgid "America/Detroit" msgstr "AmerĆ­ka/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "AusturstrandartĆ­mi - Michigan - flestir staưir" #: timezones.h:177 msgid "America/Dominica" msgstr "AmerĆ­ka/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "AmerĆ­ka/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" "KlettafjallatĆ­mi - Alberta, austur-Breska-KólumbĆ­a & vestur-Saskatchewan" #: timezones.h:181 msgid "America/Eirunepe" msgstr "AmerĆ­ka/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "Vestur-Amazon" #: timezones.h:184 msgid "America/El_Salvador" msgstr "AmerĆ­ka/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "AmerĆ­ka/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "AmerĆ­ka/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "NA-BrasilĆ­a (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "AmerĆ­ka/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "AmerĆ­ka/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "AtlantshafstĆ­mi - Nova Scotia - staưir sem ekki tóku upp DST 1966-1971" #: timezones.h:193 msgid "America/Godthab" msgstr "AmerĆ­ka/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "flestar staưsetningar" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "AmerĆ­ka/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "AtlantshafstĆ­mi - Labrador - flestir staưir" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "AmerĆ­ka/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "AmerĆ­ka/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "AmerĆ­ka/Guadeloupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "AmerĆ­ka/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "AmerĆ­ka/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "meginlands" #: timezones.h:206 msgid "America/Guyana" msgstr "AmerĆ­ka/Guyana" #: timezones.h:207 msgid "America/Halifax" msgstr "AmerĆ­ka/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "AtlantshafstĆ­mi - Nova Scotia (flestir staưir), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "AmerĆ­ka/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "AmerĆ­ka/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "KlettafjallatĆ­mi MST - Sonora" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "AmerĆ­ka/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "AusturstrandartĆ­mi - Indiana - flestir staưir" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "AmerĆ­ka/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "MiưrĆ­kjatĆ­mi - Indiana - Starke County" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "AmerĆ­ka/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "AusturstrandartĆ­mi - Indiana - Crawford County" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "AmerĆ­ka/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "AusturstrandartĆ­mi - Indiana - Pike County" #: timezones.h:226 msgid "America/Indianapolis" msgstr "AmerĆ­ka/Indianapolis" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "AmerĆ­ka/Indiana/Tell_City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "MiưrĆ­kjatĆ­mi - Indiana - Perry County" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "AmerĆ­ka/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "AusturstrandartĆ­mi - Indiana - Switzerland County" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "AmerĆ­ka/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "AusturstrandartĆ­mi - Indiana - Daviess, Dubois, Knox & Martin Counties" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "AmerĆ­ka/Indiana/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "AusturstrandartĆ­mi - Indiana - Pulasky County" #: timezones.h:239 msgid "America/Inuvik" msgstr "AmerĆ­ka/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "KlettafjallatĆ­mi - vestur Northwest Territories" #: timezones.h:242 msgid "America/Iqaluit" msgstr "AmerĆ­ka/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "AusturstrandartĆ­mi - austur Nunavut - flestir staưir" #: timezones.h:245 msgid "America/Jamaica" msgstr "AmerĆ­ka/Jamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "AmerĆ­ka/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "AmerĆ­ka/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "AlaskatĆ­mi - Alaska panhandle" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "AmerĆ­ka/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "AusturstrandartĆ­mi - Kentucky - Louisville svƦưiư" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "AmerĆ­ka/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "AusturstrandartĆ­mi - Kentucky - Wayne-sýsla" #: timezones.h:256 msgid "America/Knox_IN" msgstr "AmerĆ­ka/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "AmerĆ­ka/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "AmerĆ­ka/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "AmerĆ­ka/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "KyrrahafstĆ­mi" #: timezones.h:262 msgid "America/Louisville" msgstr "AmerĆ­ka/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "AmerĆ­ka/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "Alagoas, Sergipe" #: timezones.h:266 msgid "America/Managua" msgstr "AmerĆ­ka/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "AmerĆ­ka/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "Austur-Amazon" #: timezones.h:270 msgid "America/Marigot" msgstr "AmerĆ­ka/Marigot" #: timezones.h:271 msgid "America/Martinique" msgstr "AmerĆ­ka/Martinique" #: timezones.h:272 msgid "America/Matamoros" msgstr "AmerĆ­ka/Matamoros" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" "MiưrĆ­kjatĆ­mi - Coahuila, Durango, Nuevo Leon, Tamaulipas nĆ”lƦgt landamƦrum " "BNA" #: timezones.h:275 msgid "America/Mazatlan" msgstr "AmerĆ­ka/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "KlettafjallatĆ­mi - S Baja, Nayarit, Sinaloa" #: timezones.h:278 msgid "America/Mendoza" msgstr "AmerĆ­ka/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "AmerĆ­ka/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "MiưrĆ­kjatĆ­mi - Michigan - Dickinson, Gogebic, Iron & Menominee-sýslur" #: timezones.h:282 msgid "America/Merida" msgstr "AmerĆ­ka/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "MiưrĆ­kjatĆ­mi - Campeche, Yucatan" #: timezones.h:285 msgid "America/Mexico_City" msgstr "AmerĆ­ka/MexĆ­kóborg" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "MiưrĆ­kjatĆ­mi - flestir staưir" #: timezones.h:288 msgid "America/Miquelon" msgstr "AmerĆ­ka/Miquelon" #: timezones.h:289 msgid "America/Moncton" msgstr "AmerĆ­ka/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "AtlantshafstĆ­mi - New Brunswick" #: timezones.h:292 msgid "America/Monterrey" msgstr "AmerĆ­ka/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" "MexĆ­kanskur miưtĆ­mi - Coahuila, Durango, Nuevo Leon, Tamaulipas fjarri " "landamƦrum BNA" #: timezones.h:295 msgid "America/Montevideo" msgstr "AmerĆ­ka/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "AmerĆ­ka/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "AusturstrandartĆ­mi - Quebec - flestir staưir" #: timezones.h:299 msgid "America/Montserrat" msgstr "AmerĆ­ka/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "AmerĆ­ka/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "AmerĆ­ka/New_York" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "AusturstrandartĆ­mi" #: timezones.h:304 msgid "America/Nipigon" msgstr "AmerĆ­ka/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" "AusturstrandartĆ­mi - Ontario & Quebec - staưir sem ekki tóku upp DST " "1967-1973" #: timezones.h:307 msgid "America/Nome" msgstr "AmerĆ­ka/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "AlaskatĆ­mi - vestur Alaska" #: timezones.h:310 msgid "America/Noronha" msgstr "AmerĆ­ka/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "Atlantshafseyjar" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "AmerĆ­ka/North_Dakota/Center" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "AusturstrandartĆ­mi - Norưur Dakóta - Oliver County" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "AmerĆ­ka/North_Dakota/New_Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" "AusturstrandartĆ­mi - Norưur Dakóta - Morton County (nema Mandan svƦưiư)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "AmerĆ­ka/Ojinaga" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "KlettafjallatĆ­mi - Chihuahua nĆ”lƦgt landamƦrum BNA" #: timezones.h:322 msgid "America/Panama" msgstr "AmerĆ­ka/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "AmerĆ­ka/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "AusturstrandartĆ­mi - Pangnirtung, Nunavut" #: timezones.h:326 msgid "America/Paramaribo" msgstr "AmerĆ­ka/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "AmerĆ­ka/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "KlettafjallatĆ­mi MST - Arizona" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "AmerĆ­ka/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "AmerĆ­ka/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "AmerĆ­ka/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "AmerĆ­ka/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "Rondonia" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "AmerĆ­ka/Puerto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "AmerĆ­ka/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "MiưrĆ­kjatĆ­mi - Rainy River & Fort Frances, Ontario" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "AmerĆ­ka/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "MiưrĆ­kjatĆ­mi - miư-Nunavut" #: timezones.h:343 msgid "America/Recife" msgstr "AmerĆ­ka/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "Pernambuco" #: timezones.h:346 msgid "America/Regina" msgstr "AmerĆ­ka/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "MiưrĆ­kjatĆ­mi CST - Saskatchewan - flestir staưir" #: timezones.h:349 msgid "America/Resolute" msgstr "AmerĆ­ka/Resolute" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "AusturstrandartĆ­mi EST - Resolute, Nunavut" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "AmerĆ­ka/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "Acre" #: timezones.h:355 msgid "America/Rosario" msgstr "AmerĆ­ka/Rosario" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "AmerĆ­ka/Santa_Isabel" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "MexĆ­kanskur KyrrahafstĆ­mi - Baja California fjarri landamƦrum BNA" #: timezones.h:359 msgid "America/Santarem" msgstr "AmerĆ­ka/Santarem" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "Vestur-Para" #: timezones.h:362 msgid "America/Santiago" msgstr "AmerĆ­ka/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "AmerĆ­ka/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "AmerĆ­ka/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "S- & SA-BrasilĆ­a (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "AmerĆ­ka/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Scoresbysund / Ittoqqortoormiit" #: timezones.h:372 msgid "America/Shiprock" msgstr "AmerĆ­ka/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "KlettafjallatĆ­mi - Navajo" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "AmerĆ­ka/St_Barthelemy" #: timezones.h:376 msgid "America/St_Johns" msgstr "AmerĆ­ka/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "NýfundnalandstĆ­mi, þar meư taliư SA-Labrador" #: timezones.h:379 msgid "America/St_Kitts" msgstr "AmerĆ­ka/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "AmerĆ­ka/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "AmerĆ­ka/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "AmerĆ­ka/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "AmerĆ­ka/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "MiưrĆ­kjatĆ­mi CST - Saskatchewan - miưvestur" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "AmerĆ­ka/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "AmerĆ­ka/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "Thule / Pituffik" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "AmerĆ­ka/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "AusturstrandartĆ­mi - Thunder Bay, Ontario" #: timezones.h:393 msgid "America/Tijuana" msgstr "AmerĆ­ka/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "KyrrahafstĆ­mi - Baja California nĆ”lƦgt landamƦrum BNA" #: timezones.h:396 msgid "America/Toronto" msgstr "AmerĆ­ka/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "AusturstrandartĆ­mi - Ontario - flestir staưir" #: timezones.h:399 msgid "America/Tortola" msgstr "AmerĆ­ka/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "AmerĆ­ka/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "KyrrahafstĆ­mi - vestur-Breska-KólumbĆ­a" #: timezones.h:403 msgid "America/Virgin" msgstr "AmerĆ­ka/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "AmerĆ­ka/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "KyrrahafstĆ­mi - suưur-Yukon" #: timezones.h:407 msgid "America/Winnipeg" msgstr "AmerĆ­ka/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "MiưrĆ­kjatĆ­mi - Manitoba & vestur-Ontario" #: timezones.h:410 msgid "America/Yakutat" msgstr "AmerĆ­ka/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "AlaskatĆ­mi - Alaska panhandle neck" #: timezones.h:413 msgid "America/Yellowknife" msgstr "AmerĆ­ka/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "KlettafjallatĆ­mi - miư-Northwest Territories" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Suưurskautslandiư/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "Casey stƶưin, Bailey-skaga" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Suưurskautslandiư/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "Davis stƶưin, Vestfold-hƦưum" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Suưurskautslandiư/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Dumont-d'Urville stƶưin, Terre Adelie" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "Suưurskautslandiư/Macquarie" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "Macquarie Island stƶưin, Macquarie-eyju" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Suưurskautslandiư/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "Mawson stƶưin, Holme-flóa" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Suưurskautslandiư/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "McMurdo stƶưin, Ross-eyju" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Suưurskautslandiư/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "Palmer stƶưin, Anvers-eyju" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Suưurskautslandiư/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "Rothera stƶưin, Adelaide-eyju" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Suưurskautslandiư/South_Pole" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "Amundsen-Scott stƶưin, Suưurpól" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Suưurskautslandiư/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "Syowa stƶưin, Austur-Ongul-eyju" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Suưurskautslandiư/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "Vostok stƶưin, Suưursegulpól" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Heimskautiư/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "AsĆ­a/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "AsĆ­a/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "AsĆ­a/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "AsĆ­a/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "Moskva+08 - Beringshaf" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "AsĆ­a/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "AsĆ­a/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "Aqtobe (Aktobe)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "AsĆ­a/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "AsĆ­a/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "AsĆ­a/Baghdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "AsĆ­a/Bahrain" #: timezones.h:468 msgid "Asia/Baku" msgstr "AsĆ­a/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "AsĆ­a/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "AsĆ­a/Beirut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "AsĆ­a/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "AsĆ­a/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "AsĆ­a/Calcutta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "AsĆ­a/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "Dornod, Sukhbaatar" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "AsĆ­a/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "Miư-KĆ­na - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, o.s.frv." #: timezones.h:480 msgid "Asia/Chungking" msgstr "AsĆ­a/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "AsĆ­a/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "AsĆ­a/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "AsĆ­a/Damascus" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "AsĆ­a/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "AsĆ­a/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "AsĆ­a/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "AsĆ­a/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "AsĆ­a/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "AsĆ­a/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Heilongjiang (fyrir utan Mohe), Jilin" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "AsĆ­a/Ho_Chi_Minh" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "AsĆ­a/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "AsĆ­a/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "AsĆ­a/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "Moscow+05 - Baikalvatn" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "AsĆ­a/Istanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "AsĆ­a/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "Java & SĆŗmatra" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "AsĆ­a/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "IrĆ­anska Jaya & Moluccaeyjar" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "AsĆ­a/Jerusalem" #: timezones.h:508 msgid "Asia/Kabul" msgstr "AsĆ­a/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "AsĆ­a/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "Moskva+08 - Kamchatka" #: timezones.h:512 msgid "Asia/Karachi" msgstr "AsĆ­a/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "AsĆ­a/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "Vestur-Tibet & Xinjiang" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "AsĆ­a/Katmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "AsĆ­a/Katmandu" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "AsĆ­a/Kolkata" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "AsĆ­a/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "Moscow+04 - Yeniseifljót" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "AsĆ­a/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "MalaysĆ­uskagi" #: timezones.h:525 msgid "Asia/Kuching" msgstr "AsĆ­a/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "Sabah & Sarawak" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "AsĆ­a/Kuwait" #: timezones.h:529 msgid "Asia/Macao" msgstr "AsĆ­a/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "AsĆ­a/Macau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "AsĆ­a/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "Moskva+08 - Magadan" #: timezones.h:534 msgid "Asia/Makassar" msgstr "AsĆ­a/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "austur- & suưur-Borneó, Celebes, BalĆ­, Nusa Tengarra, vestur-TĆ­mor" #: timezones.h:537 msgid "Asia/Manila" msgstr "AsĆ­a/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "AsĆ­a/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "AsĆ­a/Nicosia" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "AsĆ­a/Novokuznetsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "Moskva+03 - Novokuznetsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "AsĆ­a/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "Moskva+03 - Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "AsĆ­a/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "Moscow+03 - Vestur-SĆ­berĆ­a" #: timezones.h:549 msgid "Asia/Oral" msgstr "AsĆ­a/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "Vestur-Kazakhstan" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "AsĆ­a/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "AsĆ­a/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "vestur- & miư-Borneó" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "AsĆ­a/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "AsĆ­a/Qatar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "AsĆ­a/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "Qyzylorda (Kyzylorda, Kzyl-Orda)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "AsĆ­a/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "AsĆ­a/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "AsĆ­a/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "AsĆ­a/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "AsĆ­a/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "AsĆ­a/Saigon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "AsĆ­a/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "Moskva+07 - SakhalĆ­neyja" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "AsĆ­a/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "vestur Uzbekistan" #: timezones.h:573 msgid "Asia/Seoul" msgstr "AsĆ­a/Seoul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "AsĆ­a/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "Austur-KĆ­na - Beijing, Guangdong, Shanghai, o.s.frv." #: timezones.h:577 msgid "Asia/Singapore" msgstr "AsĆ­a/Singapore" #: timezones.h:578 msgid "Asia/Taipei" msgstr "AsĆ­a/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "AsĆ­a/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "austur Uzbekistan" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "AsĆ­a/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "AsĆ­a/Tehran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "AsĆ­a/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "AsĆ­a/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "AsĆ­a/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "AsĆ­a/Tokyo" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "AsĆ­a/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "AsĆ­a/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "AsĆ­a/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "AsĆ­a/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "mest af Tibet & Xinjiang" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "AsĆ­a/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "AsĆ­a/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "Moscow+07 - Amurfljót" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "AsĆ­a/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "Moscow+06 - Lenafljót" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "AsĆ­a/Yekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "Moscow+02 - Úralfjƶll" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "AsĆ­a/Yerevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlandshafiư/Azores" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "Asoreyjar" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlandshafiư/Bermuda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlandshafiư/Canary" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "KanarĆ­eyjar" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlandshafiư/Cape_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlandshafiư/Faeroe" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "Atlantshaf/FƦreyjar" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlandshafiư/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlandshafiư/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "Madeira-eyjar" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlandshafiư/ReykjavĆ­k" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlandshafiư/Suưur_Georgia" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlandshafiư/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlandshafiư/St_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "ƁstralĆ­a/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ƁstralĆ­a/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "Suưur-ƁstralĆ­a" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "ƁstralĆ­a/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "Queensland - flestir staưir" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ƁstralĆ­a/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "Nýja Suưur-Wales - Yancowinna" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ƁstralĆ­a/Canberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "ƁstralĆ­a/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "TasmanĆ­a - King-eyja" #: timezones.h:639 msgid "Australia/Darwin" msgstr "ƁstralĆ­a/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "NorưursvƦưiư - Northern Territory" #: timezones.h:642 msgid "Australia/Eucla" msgstr "ƁstralĆ­a/Eucla" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "Vestur-ƁstralĆ­a - Eucla svƦưiư" #: timezones.h:645 msgid "Australia/Hobart" msgstr "ƁstralĆ­a/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "TasmanĆ­a - flestir staưir" #: timezones.h:648 msgid "Australia/LHI" msgstr "ƁstralĆ­a/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "ƁstralĆ­a/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "Queensland - Holiday-eyjar" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "ƁstralĆ­a/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "Lord Howe-eyja" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "ƁstralĆ­a/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "ViktorĆ­a" #: timezones.h:658 msgid "Australia/North" msgstr "ƁstralĆ­a/Norưur" #: timezones.h:659 msgid "Australia/NSW" msgstr "ƁstralĆ­a/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "ƁstralĆ­a/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "Vestur-ƁstralĆ­a - flestir staưir" #: timezones.h:663 msgid "Australia/Queensland" msgstr "ƁstralĆ­a/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "ƁstralĆ­a/Suưur" #: timezones.h:665 msgid "Australia/Sydney" msgstr "ƁstralĆ­a/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "Nýja Suưur-Wales - flestir staưir" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ƁstralĆ­a/Tasmania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ƁstralĆ­a/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "ƁstralĆ­a/Vestur" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ƁstralĆ­a/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "BarsilĆ­a/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "BarsilĆ­a/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "BarsilĆ­a/Austur" #: timezones.h:675 msgid "Brazil/West" msgstr "BarsilĆ­a/West" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Kanada/Atlantic" #: timezones.h:677 msgid "Canada/Central" msgstr "Kanada/Central" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Kanada/Eastern" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Kanada/East-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Kanada/Mountain" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Kanada/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Kanada/Pacific" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Kanada/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Kanada/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Chile/Continental" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chile/EasterIsland" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "KĆŗba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Egyptaland" #: timezones.h:692 msgid "Eire" msgstr "Eire" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Evrópa/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Evrópa/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Evrópa/Athens" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Evrópa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Evrópa/Belgrade" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Evrópa/Berlin" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Evrópa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Evrópa/Brussels" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Evrópa/Bucharest" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Evrópa/Budapest" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Evrópa/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Evrópa/Copenhagen" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Evrópa/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Evrópa/Gibraltar" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Evrópa/Guernsey" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Evrópa/Helsinki" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Evrópa/Isle_of_Man" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Evrópa/Istanbul" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Evrópa/Jersey" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Evrópa/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "Moskva-01 - Kaliningrad" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Evrópa/Kiev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Evrópa/Lisbon" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Evrópa/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Evrópa/London" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Evrópa/Luxembourg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Evrópa/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Evrópa/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Evrópa/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Evrópa/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Evrópa/Monaco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Evrópa/Moscow" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "Moskva+00 - Vestur-RĆŗssland" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Evrópa/Nicosia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Evrópa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Evrópa/Paris" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Evrópa/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Evrópa/Prague" #: timezones.h:776 msgid "Europe/Riga" msgstr "Evrópa/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Evrópa/Rome" #: timezones.h:778 msgid "Europe/Samara" msgstr "Evrópa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "Moskva - Samara, Udmurtia" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Evrópa/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Evrópa/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Evrópa/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "Miư-KrĆ­mskagi" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Evrópa/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Evrópa/Sofia" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Evrópa/Stockholm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Evrópa/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Evrópa/Tirane" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Evrópa/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Evrópa/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "Ruthenia" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Evrópa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Evrópa/Vatican" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Evrópa/Vienna" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Evrópa/Vilnius" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Evrópa/Volgograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "Moskva+00 - KaspĆ­ahaf" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Evrópa/Warsaw" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Evrópa/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Evrópa/Zaporozhye" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Evrópa/Zurich" #: timezones.h:808 msgid "Factory" msgstr "Factory" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "ƍsland" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Indland/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Indland/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Indland/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Indland/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Indland/Comoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Indland/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Indland/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Indland/Maldives" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Indland/Mauritius" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Indland/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Indland/Reunion" #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "Israel" #: timezones.h:833 msgid "Jamaica" msgstr "Jamaica" #: timezones.h:834 msgid "Japan" msgstr "Japan" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "LĆ­bĆ­a" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Mexikó/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Mexikó/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Mexikó/General" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Miưaustur/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Miưaustur/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Miưaustur/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Kyrrahafiư/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Kyrrahafiư/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Kyrrahafiư/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "Chatham-eyjar" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "Kyrrahafiư/Truk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 #, fuzzy msgid "Chuuk (Truk) and Yap" msgstr "Truk (Chuuk) og Yap" #: timezones.h:859 msgid "Pacific/Easter" msgstr "Kyrrahafiư/PĆ”ska" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "PĆ”skaeyja & Sala y Gomez" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Kyrrahafiư/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Kyrrahafiư/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "Phoenix-eyjar" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Kyrrahafiư/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Kyrrahafiư/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Kyrrahafiư/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Kyrrahafiư/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "Galapagos-eyjar" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Kyrrahafiư/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "Gambier-eyjar" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Kyrrahafiư/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Kyrrahafiư/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Kyrrahafiư/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "Hawaii" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Kyrrahafiư/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "Johnston kóralrifiư" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Kyrrahafiư/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "LĆ­nueyjar" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Kyrrahafiư/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "Kosrae" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Kyrrahafiư/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Kyrrahafiư/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Kyrrahafiư/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "Marquesas-eyjar" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Kyrrahafiư/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "Midway-eyjar" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Kyrrahafiư/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Kyrrahafiư/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Kyrrahafiư/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Kyrrahafiư/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Kyrrahafiư/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Kyrrahafiư/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Kyrrahafiư/Pitcairn" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "Kyrrahafiư/Ponape" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 #, fuzzy msgid "Pohnpei (Ponape)" msgstr "Ponape (Pohnpei)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Kyrrahafiư/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Kyrrahafiư/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Kyrrahafiư/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Kyrrahafiư/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Kyrrahafiư/Samóa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Kyrrahafiư/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "Society-eyjar" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Kyrrahafiư/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "Gilbert-eyjar" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Kyrrahafiư/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Kyrrahafiư/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Kyrrahafiư/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "Wake eyja" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Kyrrahafiư/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Kyrrahafiư/Yap" #: timezones.h:929 msgid "Poland" msgstr "Pólland" #: timezones.h:930 msgid "Portugal" msgstr "Portugal" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapore" #: timezones.h:937 msgid "Turkey" msgstr "Tyrkland" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Alheims" #: timezones.h:940 msgid "US/Alaska" msgstr "BNA/Alaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "BNA/AljĆŗtaeyjar" #: timezones.h:942 msgid "US/Arizona" msgstr "BNA/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "BNA/Miưfylki" #: timezones.h:944 msgid "US/Eastern" msgstr "BNA/Austurfylki" #: timezones.h:945 msgid "US/East-Indiana" msgstr "BNA/Austur-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "BNA/Hawaii" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "BNA/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "BNA/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "BNA/Klettafjƶll" #: timezones.h:950 msgid "US/Pacific" msgstr "BNA/Kyrrahafs" #: timezones.h:951 msgid "US/Samoa" msgstr "BNA/Samóa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "Vestur-SU" #: timezones.h:955 msgid "Zulu" msgstr "ZĆŗlu" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/fi.po0000664000175000017500000020345214632072346023663 0ustar fabiofabio# Finnish translation of timezones. # TODO Many translations probably need work: I wasn't sure of all the # place-names in Finnish and accents aren't used consistently, because # some names were copied from the msgids (no accents) and some from Wikipedia # (with accents). -vpv # Lauri Nurmi , 2004. # Ville-Pekka Vainio , 2007-2009, 2010. msgid "" msgstr "" "Project-Id-Version: timezones\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-08-29 20:02+0300\n" "Last-Translator: Ville-Pekka Vainio \n" "Language-Team: Finnish \n" "Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Virtaal 0.6.1\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Afrikka/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Afrikka/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Afrikka/Addis-Abeba" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Afrikka/Algiers" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Afrikka/Asmara" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Afrikka/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Afrikka/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Afrikka/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Afrikka/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Afrikka/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Afrikka/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Afrikka/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Afrikka/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Afrikka/Cairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Afrikka/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Afrikka/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Ceuta & Melilla" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Afrikka/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Afrikka/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Afrikka/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Afrikka/Djibouti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Afrikka/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Afrikka/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Afrikka/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Afrikka/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Afrikka/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Afrikka/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Afrikka/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Afrikka/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Afrikka/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Afrikka/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "Kongon demokraattisen tasavallan lƤnsiosa" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Afrikka/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Afrikka/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Afrikka/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Afrikka/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Afrikka/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "Kongon demokraattisen tasavallan itƤosa" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Afrikka/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Afrikka/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Afrikka/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Afrikka/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Afrikka/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Afrikka/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Afrikka/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Afrikka/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Afrikka/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Afrikka/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Afrikka/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Afrikka/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Afrikka/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Afrikka/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Afrikka/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Afrikka/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Afrikka/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Afrikka/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "Amerikka/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "Aleutit" #: timezones.h:63 msgid "America/Anchorage" msgstr "Amerikka/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "Alaskan aikavyƶhyke" #: timezones.h:66 msgid "America/Anguilla" msgstr "Amerikka/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "Amerikka/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "Amerikka/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Tocantins" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Amerikka/Argentiina/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Buenos Aires (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Amerikka/Argentiina/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "Catamarca (CT), Chubut (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Amerikka/Argentiina/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Amerikka/Argentiina/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "useimmat paikat (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Amerikka/Argentiina/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Jujuy (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Amerikka/Argentiina/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "La Rioja (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Amerikka/Argentiina/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "Mendoza (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Amerikka/Argentiina/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Santa Cruz (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "Amerikka/Argentiina/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Amerikka/Argentiina/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "San Juan (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "Amerikka/Argentiina/San_Luis" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "San Luis (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Amerikka/Argentiina/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Tucuman (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Amerikka/Argentiina/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Tierra del Fuego (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "Amerikka/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "Amerikka/Asuncion" #: timezones.h:110 msgid "America/Atikokan" msgstr "Amerikka/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" "ItƤinen normaaliaika - Atikokan, Ontario ja Southamptoninsaari, Nunavut" #: timezones.h:113 msgid "America/Atka" msgstr "Amerikka/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "Amerikka/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "Bahia" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "Amerikka/Bahia_Banderas" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "Meksikon keskinen aikavyƶhyke - Bahia de Banderas" #: timezones.h:120 msgid "America/Barbados" msgstr "Amerikka/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "Amerikka/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "Amapa, ItƤ-Para" #: timezones.h:124 msgid "America/Belize" msgstr "Amerikka/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "Amerikka/Bahia" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "Atlantin normaaliaika - Quebec - Basse-CĆ“te-Nord" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Amerikka/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "Roraima" #: timezones.h:131 msgid "America/Bogota" msgstr "Amerikka/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "Amerikka/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "Kalliovuorten aikavyƶhyke - EtelƤ-Idaho & ItƤ-Oregon" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Amerikka/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Amerikka/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "Kalliovuorten aikavyƶhyke - LƤnsi-Nunavut" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "Amerikka/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "Mato Grosso do Sul" #: timezones.h:142 msgid "America/Cancun" msgstr "Amerikka/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "Keskinen aikavyƶhyke - Quintana Roo" #: timezones.h:145 msgid "America/Caracas" msgstr "Amerikka/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "Amerikka/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "Amerikka/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "Amerikka/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "Amerikka/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "Keskinen normaaliaika" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Amerikka/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" "Kalliovuorten aikavyƶhyke (Meksiko) - Chihuahua kauempana Yhdysvaltojen " "rajasta" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "Amerikka/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "Amerikka/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Amerikka/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Amerikka/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "Mato Grosso" #: timezones.h:161 msgid "America/Curacao" msgstr "Amerikka/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Amerikka/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "itƤrannikko, IttoqqortoormiitistƤ (Scoresbysundista) pohjoiseen" #: timezones.h:165 msgid "America/Dawson" msgstr "Amerikka/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "Tyynenmeren aikavyƶhyke - Pohjois-Yukon" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Amerikka/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" "Kalliovuorten normaaliaika - Dawson Creek & Fort Saint John, BrittilƤinen " "Kolumbia" #: timezones.h:171 msgid "America/Denver" msgstr "Amerikka/Denver" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "Kalliovuorten aikavyƶhyke" #: timezones.h:174 msgid "America/Detroit" msgstr "Amerikka/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "ItƤinen aikavyƶhyke - Michigan - useimmat paikat" #: timezones.h:177 msgid "America/Dominica" msgstr "Amerikka/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "Amerikka/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" "Kalliovuorten aikavyƶhyke - Alberta, BrittilƤisen Kolumbian itƤosa & " "Saskatchewanin lƤnsiosa" #: timezones.h:181 msgid "America/Eirunepe" msgstr "Amerikka/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "LƤnsi-Amazonas" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Amerikka/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "Amerikka/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Amerikka/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "Koillis-Brasilia (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Amerikka/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Amerikka/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" "Atlantin aikavyƶhyke - Nova Scotia - paikat joissa ei kƤytetty kesƤaikaa " "vuosina 1966-1971" #: timezones.h:193 msgid "America/Godthab" msgstr "Amerikka/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "useimmat paikat" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Amerikka/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "Atlantin aikavyƶhyke - Labrador - useimmat paikat" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Amerikka/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "Amerikka/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Amerikka/Guadeloupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "Amerikka/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Amerikka/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "manner" #: timezones.h:206 msgid "America/Guyana" msgstr "Amerikka/Guyana" #: timezones.h:207 msgid "America/Halifax" msgstr "Amerikka/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" "Atlantin aikavyƶhyke - Nova Scotia (useimmat paikat), Prinssi Edwardin saari" #: timezones.h:210 msgid "America/Havana" msgstr "Amerikka/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Amerikka/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "Kalliovuorten normaaliaika - Sonora" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Amerikka/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "ItƤinen aikavyƶhyke - Indiana - useimmat paikat" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Amerikka/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "Keskinen aikavyƶhyke - Indiana - Starken piirikunta" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Amerikka/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "ItƤinen aikavyƶhyke - Indiana - Crawfordin piirikunta" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "Amerikka/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "ItƤinen aikavyƶhyke - Indiana - Piken piirikunta" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Amerikka/Indianapolis" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "Amerikka/Indiana/Tell City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "Keskinen aikavyƶhyke - Indiana - Perryn piirikunta" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Amerikka/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "ItƤinen aikavyƶhyke - Indiana - Switzerlandin piirikunta" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "Amerikka/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" "ItƤinen aikavyƶhyke - Daviessin, Duboisin, Knoxin ja Martinin piirikunnat" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "Amerikka/Indiana/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "ItƤinen aikavyƶhyke - Indiana - Pulaskin piirikunta" #: timezones.h:239 msgid "America/Inuvik" msgstr "Amerikka/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "Kalliovuorten aikavyƶhyke - Luoteisterritorioiden lƤnsiosa" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Amerikka/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "ItƤinen aikavyƶhyke - ItƤ-Nunavut - useimmat paikat" #: timezones.h:245 msgid "America/Jamaica" msgstr "Amerikka/Jamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "Amerikka/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "Amerikka/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "Alaskan aikavyƶhyke - Kaakkois-Alaska (panhandle)" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Amerikka/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "ItƤinen aikavyƶhyke - Kentucky - Louisvillen alue" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Amerikka/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "ItƤinen aikavyƶhyke - Indiana - Waynen piirikunta" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Amerikka/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "Amerikka/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "Amerikka/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Amerikka/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "Tyynenmeren aikavyƶhyke" #: timezones.h:262 msgid "America/Louisville" msgstr "Amerikka/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "Amerikka/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "Alagoas, Sergipe" #: timezones.h:266 msgid "America/Managua" msgstr "Amerikka/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "Amerikka/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "ItƤ-Amazonas" #: timezones.h:270 msgid "America/Marigot" msgstr "Amerikka/Marigot" #: timezones.h:271 msgid "America/Martinique" msgstr "Amerikka/Martinique" #: timezones.h:272 msgid "America/Matamoros" msgstr "Amerikka/Matamoros" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" "Keskinen aikavyƶhyke (Yhdysvallat) - Coahuila, Durango, Nuevo Leon, " "Tamaulipas lƤhellƤ Yhdysvaltojen rajaa" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Amerikka/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "Kalliovuorten aikavyƶhyke - EtelƤ-Baja, Nayarit, Sinaloa" #: timezones.h:278 msgid "America/Mendoza" msgstr "Amerikka/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "Amerikka/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" "Keskinen aikavyƶhyke - Michigan - Dickinsonin, Gogebicin, Ironin ja " "Menomineen piirikunnat" #: timezones.h:282 msgid "America/Merida" msgstr "Amerikka/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "Keskinen aikavyƶhyke - Campeche, Yucatan" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Amerikka/Mexico_City" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "Keskinen aikavyƶhyke - useimmat paikat" #: timezones.h:288 msgid "America/Miquelon" msgstr "Amerikka/Miquelon" #: timezones.h:289 msgid "America/Moncton" msgstr "Amerikka/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "Atlantin aikavyƶhyke - New Brunswick" #: timezones.h:292 msgid "America/Monterrey" msgstr "Amerikka/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" "Keskinen aikavyƶhyke (Meksiko) - Coahuila, Durango, Nuevo Leon, Tamaulipas " "kauempana Yhdysvaltojen rajasta" #: timezones.h:295 msgid "America/Montevideo" msgstr "Amerikka/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "Amerikka/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "ItƤinen aikavyƶhyke - Quebec - useimmat paikat" #: timezones.h:299 msgid "America/Montserrat" msgstr "Amerikka/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "Amerikka/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "Amerikka/New_York" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "ItƤinen aikavyƶhyke" #: timezones.h:304 msgid "America/Nipigon" msgstr "Amerikka/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" "ItƤinen aikavyƶhyke - Ontario & Quebec - paikat joissa ei kƤytetty kesƤaikaa " "vuosina 1967-1973" #: timezones.h:307 msgid "America/Nome" msgstr "Amerikka/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "Alaskan aikavyƶhyke - LƤnsi-Alaska" #: timezones.h:310 msgid "America/Noronha" msgstr "Amerikka/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "Atlantin saaret" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Amerikka/North_Dakota/Center" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "Keskinen aikavyƶhyke - Pohjois-Dakota - Oliverin piirikunta" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "Amerikka/North_Dakota/New_Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" "Keskinen aikavyƶhyke - Pohjois-Dakota - Mortonin piirikunta (paitsi Mandanin " "alue)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "Amerikka/Ojinaga" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" "Kalliovuorten aikavyƶhyke (Yhdysvallat) - Chihuahua lƤhellƤ Yhdysvaltojen " "rajaa" #: timezones.h:322 msgid "America/Panama" msgstr "Amerikka/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Amerikka/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "ItƤinen aikavyƶhyke - Pangnirtung, Nunavut" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Amerikka/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "Amerikka/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "Kalliovuorten normaaliaika - Arizona" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Amerikka/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Amerikka/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Amerikka/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Amerikka/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "Rondonia" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Amerikka/Puerto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Amerikka/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "Keskinen aikavyƶhyke - Rainy River & Fort Frances, Ontario" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Amerikka/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "Keskinen aikavyƶhyke - Keski-Nunavut" #: timezones.h:343 msgid "America/Recife" msgstr "Amerikka/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "Pernambuco" #: timezones.h:346 msgid "America/Regina" msgstr "Amerikka/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "Keskinen normaaliaika - Saskatchewan - useimmat paikat" #: timezones.h:349 msgid "America/Resolute" msgstr "Amerikka/Resolute" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "ItƤinen normaaliaika - Resolute, Nunavut" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Amerikka/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "Acre" #: timezones.h:355 msgid "America/Rosario" msgstr "Amerikka/Rosario" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "Amerikka/Santa_Isabel" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" "Tyynenmeren aikavyƶhyke (Meksiko) - Baja California kauempana Yhdysvaltojen " "rajasta" #: timezones.h:359 msgid "America/Santarem" msgstr "Amerikka/Santarem" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "LƤnsi-Para" #: timezones.h:362 msgid "America/Santiago" msgstr "Amerikka/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Amerikka/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Amerikka/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "EtelƤ- ja Kaakkois-Brasilia (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Amerikka/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Scoresbysund / Ittoqqortoormiit" #: timezones.h:372 msgid "America/Shiprock" msgstr "Amerikka/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "Kalliovuorten aikavyƶhyke - Navajo" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "Amerikka/Saint BarthĆ©lemy" #: timezones.h:376 msgid "America/St_Johns" msgstr "Amerikka/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "Newfoundlandin aikavyƶhyke, mukaan lukien Kaakkois-Labrador" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Amerikka/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Amerikka/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Amerikka/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Amerikka/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Amerikka/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "Keskinen normaaliaika - Saskatchewan - keskilƤnsi" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Amerikka/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "Amerikka/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "Thule / Pituffik" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Amerikka/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "ItƤinen aikavyƶhyke - Thunder Bay, Ontario" #: timezones.h:393 msgid "America/Tijuana" msgstr "Amerikka/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" "Tyynenmeren aikavyƶhyke (Yhdysvallat) - Baja California lƤhellƤ " "Yhdysvaltojen rajaa" #: timezones.h:396 msgid "America/Toronto" msgstr "Amerikka/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "ItƤinen aikavyƶhyke - Ontario - useimmat paikat" #: timezones.h:399 msgid "America/Tortola" msgstr "Amerikka/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "Amerikka/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "Tyynenmeren aikavyƶhyke - BrittilƤisen Kolumbian lƤnsiosa" #: timezones.h:403 msgid "America/Virgin" msgstr "Amerikka/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Amerikka/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "Tyynenmeren aikavyƶhyke - EtelƤ-Yukon" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Amerikka/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "Keskinen aikavyƶhyke - Manitoba & LƤnsi-Ontario" #: timezones.h:410 msgid "America/Yakutat" msgstr "Amerikka/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "Alaskan aikavyƶhyke - Kaakkois-Alaska (panhandle neck)" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Amerikka/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "Kalliovuorten aikavyƶhyke - Luoteisterritorioiden keskiosa" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "EtelƤmanner/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "Casey-asema, Bailey Peninsula" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "EtelƤmanner/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "Davis-asema, Vestfold Hills" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "EtelƤmanner/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Dumont-d'Urville-asema, AdĆ©lienmaa" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "EtelƤmanner/Macquariesaari" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "Macquariesaaren asema, Macquariesaari" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "EtelƤmanner/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "Mawson-asema, Holme Bay" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "EtelƤmanner/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "McMurdo-asema, Rossin saari" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "EtelƤmanner/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "Palmer-asema, Anvers Island" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "EtelƤmanner/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "Rothera-asema, Adelaide Island" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "EtelƤmanner/EtelƤnapa" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "Amundsen-Scott-asema, EtelƤnapa" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "EtelƤmanner/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "Syowa-asema, East Ongul Island" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "EtelƤmanner/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "Vostok-asema, magneettinen etelƤnapa" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Arctic/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Aasia/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Aasia/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Aasia/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Aasia/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "Moskova+08 - Beringinmeri" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Aasia/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "Atıraw, Mañğıstaw" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Aasia/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "Aqtƶbe" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Aasia/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Aasia/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Aasia/Bagdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Aasia/Bahrain" #: timezones.h:468 msgid "Asia/Baku" msgstr "Aasia/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Aasia/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Aasia/Beirut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Aasia/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Aasia/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Aasia/Calcutta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Aasia/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "Dornod, Sühbaatar" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Aasia/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "Keski-Kiina - Sichuan, Yunnan, Guanxi, Shaanxi, Guizhou jne." #: timezones.h:480 msgid "Asia/Chungking" msgstr "Aasia/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Aasia/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Aasia/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Aasia/Damaskos" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Aasia/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Aasia/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Aasia/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Aasia/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Aasia/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Aasia/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Heilongjiang (paitsi Mohe), Jilin" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "Aasia/Ho_Chi_Minh" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Aasia/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Aasia/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Bajan-Ɩlgii, Govi-Altai, Hovd, Uvs, Zavhan" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Aasia/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "Moskova+05 - BaikaljƤrvi" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Aasia/Istanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Aasia/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "Jaava & Sumatra" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Aasia/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "Papua & Molukit" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Aasia/Jerusalem" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Aasia/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Aasia/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "Moskova+08 - KamtÅ”atka" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Aasia/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Aasia/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "LƤnsi-Tiibet & Xinjiang" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "Aasia/Kathmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Aasia/Katmandu" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "Asia/Kalkutta" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Aasia/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "Moskova+04 - Jenisei" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Aasia/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "Malesian niemimaa-alue" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Aasia/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "Sabah & Sarawak" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Aasia/Kuwait" #: timezones.h:529 msgid "Asia/Macao" msgstr "Aasia/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Aasia/Macau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Aasia/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "Moskova+08 - Magadan" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Aasia/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "ItƤ- & EtelƤ-Bornea, Sulawesi, Bali, Pienet Sundasaaret, LƤnsi-Timor" #: timezones.h:537 msgid "Asia/Manila" msgstr "Aasia/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Aasia/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Aasia/Nicosia" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "Aasia/Novokuznetsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "Moskova+03 - Novokuznetsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Aasia/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "Moskova+03 - Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Aasia/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "Moskova+03 - LƤnsi-Siperia" #: timezones.h:549 msgid "Asia/Oral" msgstr "Aasia/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "LƤnsi-Kazakstan" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Aasia/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Aasia/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "LƤnsi- & Keski-Borneo" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Aasia/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Aasia/Qatar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Aasia/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "Qızılorda" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Aasia/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Aasia/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Aasia/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Aasia/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Aasia/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Aasia/Saigon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Aasia/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "Moskova+07 - Sahalin" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Aasia/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "LƤnsi-Uzbekistan" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Aasia/Seoul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Aasia/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "ItƤ-Kiina - Peking, Guangdong, Shanghai jne." #: timezones.h:577 msgid "Asia/Singapore" msgstr "Aasia/Singapore" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Aasia/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Aasia/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "ItƤ-Uzbekistan" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Aasia/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Aasia/Tehran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Aasia/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Aasia/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Aasia/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Aasia/Tokyo" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Aasia/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Aasia/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Aasia/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Aasia/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "suurin osa TiibetistƤ & Xinjiangista" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Aasia/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Aasia/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "Moskova+07 - Amur" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Aasia/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "Moskova+06 - Lena" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Aasia/Yekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "Moskova+02 - Ural" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Aasia/Yerevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlantti/Azores" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "Azorit" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlantti/Bermuda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlantti/Canary" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "Kanariansaaret" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlantti/Kap_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlantti/FƤrsaaret" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "Atlantti/FƤrsaaret" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlantti/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlantti/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "Madeira" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlantti/Reykjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlantti/South_Georgia" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlantti/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlantti/St_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "Australia/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Australia/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "EtelƤ-Australia" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Australia/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "Queensland - useimmat paikat" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Australia/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "Uusi EtelƤ-Wales - Yancowinna" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Australia/Canberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "Australia/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "Tasmania - King Island" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Australia/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "Pohjoisterritorio" #: timezones.h:642 msgid "Australia/Eucla" msgstr "Australia/Eucla" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "LƤnsi-Australia - Euclan alue" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Australia/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "Tasmania - useimmat paikat" #: timezones.h:648 msgid "Australia/LHI" msgstr "Australia/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Australia/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "Queensland - Holiday Islands" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Australia/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "Lord Howe -saari" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Australia/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "Australia/Pohjoinen" #: timezones.h:659 msgid "Australia/NSW" msgstr "Australia/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "Australia/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "LƤnsi-Australia - useimmat paikat" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Australia/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "Australia/EtelƤ" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Australia/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "Uusi EtelƤ-Wales - useimmat paikat" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Australia/Tasmania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Australia/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "Australia/LƤnsi" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Australia/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brasilia/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brasilia/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brasilia/ItƤ" #: timezones.h:675 msgid "Brazil/West" msgstr "Brasilia/LƤnsi" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Kanada/Atlantic" #: timezones.h:677 msgid "Canada/Central" msgstr "Kanada/Central" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Kanada/Eastern" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Kanada/East-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Kanada/Mountain" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Kanada/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Kanada/Pacific" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Kanada/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Kanada/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Chile/Manner" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chile/PƤƤsiƤissaari" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Kuuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Egypti" #: timezones.h:692 msgid "Eire" msgstr "Eire" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Muut/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Muut/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Muut/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Muut/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Muut/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Muut/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Muut/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Muut/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Muut/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Muut/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Muut/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Muut/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Muut/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Muut/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Muut/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Muut/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Muut/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Muut/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Muut/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Muut/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Muut/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Muut/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Muut/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Muut/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Muut/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Muut/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Muut/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Muut/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Muut/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Muut/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Muut/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Muut/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Muut/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Muut/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Muut/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Eurooppa/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Eurooppa/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Eurooppa/Ateena" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Eurooppa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Eurooppa/Belgrad" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Eurooppa/Berliini" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Eurooppa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Eurooppa/Bryssel" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Eurooppa/Bukarest" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Eurooppa/Budapest" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Eurooppa/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Eurooppa/Kƶƶpenhamina" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Eurooppa/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Eurooppa/Gibraltar" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Eurooppa/Guernsey" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Eurooppa/Helsinki" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Eurooppa/Mansaari" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Eurooppa/Istanbul" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Eurooppa/Jersey" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Eurooppa/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "Moskova-01 - Kaliningrad" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Eurooppa/Kiova" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Eurooppa/Lissabon" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Eurooppa/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Eurooppa/Lontoo" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Eurooppa/Luxemburg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Eurooppa/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Eurooppa/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Eurooppa/Maarianhamina" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Eurooppa/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Eurooppa/Monaco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Eurooppa/Moskova" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "Moskova+00 - LƤnsi-VenƤjƤ" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Eurooppa/Nicosia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Eurooppa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Eurooppa/Pariisi" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Eurooppa/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Eurooppa/Praha" #: timezones.h:776 msgid "Europe/Riga" msgstr "Eurooppa/Riika" #: timezones.h:777 msgid "Europe/Rome" msgstr "Eurooppa/Rooma" #: timezones.h:778 msgid "Europe/Samara" msgstr "Eurooppa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "Moskova - Samara, Udmurtia" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Eurooppa/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Eurooppa/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Eurooppa/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "Keski-Krim" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Eurooppa/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Eurooppa/Sofia" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Eurooppa/Tukholma" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Eurooppa/Tallinna" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Eurooppa/Tirana" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Eurooppa/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Eurooppa/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "Rutenia" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Eurooppa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Eurooppa/Vatikaani" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Eurooppa/Wien" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Eurooppa/Vilna" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Eurooppa/Volgograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "Moskova+00 - Kaspianmeri" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Eurooppa/Varsova" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Eurooppa/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Eurooppa/Zaporozhye" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Zaporižžja, ItƤ-Luhansk" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Eurooppa/Zürich" #: timezones.h:808 msgid "Factory" msgstr "Tehdas" #: timezones.h:809 msgid "GB" msgstr "Iso-Britannia" #: timezones.h:810 msgid "GB-Eire" msgstr "Iso-Britannia-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Islanti" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Intian_valtameri/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Intian_valtameri/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Intian_valtameri/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Intian_valtameri/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Intian_valtameri/Comoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Intian_valtameri/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Intian_valtameri/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Intian_valtameri/Maldives" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Intian_valtameri/Mauritius" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Intian_valtameri/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Intian_valtameri/RĆ©union" #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "Israel" #: timezones.h:833 msgid "Jamaica" msgstr "Jamaika" #: timezones.h:834 msgid "Japan" msgstr "Japani" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libya" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Meksiko/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Meksiko/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Meksiko/General" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "LƤhi-ItƤ/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "LƤhi-ItƤ/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "LƤhi-ItƤ/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Tyyni_valtameri/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Tyyni_valtameri/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Tyyni_valtameri/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "Chathamsaaret" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "Tyyni_valtameri/Chuuk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "Chuuk (Truk) ja Yap" #: timezones.h:859 msgid "Pacific/Easter" msgstr "Tyyni_valtameri/Easter" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "PƤƤsiƤissaari & Sala y Gómez" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Tyyni_valtameri/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Tyyni_valtameri/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "Phoenixsaaret" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Tyyni_valtameri/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Tyyni_valtameri/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Tyyni_valtameri/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Tyyni_valtameri/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "GalĆ”pagossaaret" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Tyyni_valtameri/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "Gambiersaaret" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Tyyni_valtameri/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Tyyni_valtameri/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Tyyni_valtameri/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "Havaiji" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Tyyni_valtameri/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "Johnstonin atolli" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Tyyni_valtameri/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "Linesaaret" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Tyyni_valtameri/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "Kosrae" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Tyyni_valtameri/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Tyyni_valtameri/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Tyyni_valtameri/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "Marquesassaaret" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Tyyni_valtameri/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "Midwaysaaret" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Tyyni_valtameri/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Tyyni_valtameri/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Tyyni_valtameri/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Tyyni_valtameri/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Tyyni_valtameri/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Tyyni_valtameri/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Tyyni_valtameri/Pitcairn" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "Tyyni_valtameri/Pohnpei" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "Pohnpei (Ponape)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Tyyni_valtameri/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Tyyni_valtameri/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Tyyni_valtameri/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Tyyni_valtameri/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Tyyni_valtameri/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Tyyni_valtameri/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "Seurasaaret" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Tyyni_valtameri/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "Gilbertsaaret" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Tyyni_valtameri/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Tyyni_valtameri/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Tyyni_valtameri/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "Wakensaari" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Tyyni_valtameri/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Tyyni_valtameri/Yap" #: timezones.h:929 msgid "Poland" msgstr "Puola" #: timezones.h:930 msgid "Portugal" msgstr "Portugali" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapore" #: timezones.h:937 msgid "Turkey" msgstr "Turkki" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "Yhdysvallat/Alaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "Yhdysvallat/Aleutian" #: timezones.h:942 msgid "US/Arizona" msgstr "Yhdysvallat/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "Yhdysvallat/Central" #: timezones.h:944 msgid "US/Eastern" msgstr "Yhdysvallat/Eastern" #: timezones.h:945 msgid "US/East-Indiana" msgstr "Yhdysvallat/East-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "Yhdysvallat/Hawaii" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "Yhdysvallat/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "Yhdysvallat/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "Yhdysvallat/Mountain" #: timezones.h:950 msgid "US/Pacific" msgstr "Yhdysvallat/Pacific" #: timezones.h:951 msgid "US/Samoa" msgstr "Yhdysvallat/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" # TƤmƤ on oikein. #: timezones.h:955 msgid "Zulu" msgstr "UTC" #~ msgid "US/Pacific-New" #~ msgstr "Yhdysvallat/Pacific-New" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/gu.po0000664000175000017500000025464314632072346023710 0ustar fabiofabio# translation of gu.po to Gujarati # This file is distributed under the same license as the PACKAGE package. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. # Ankit Patel , 2004, 2006, 2008, 2010. # Sweta Kothari , 2009, 2010. # Ankitkumar Patel , 2010. msgid "" msgstr "" "Project-Id-Version: gu\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-12-06 14:52+0530\n" "Last-Translator: Ankitkumar Patel \n" "Language-Team: fedora-trans-gu@lists.fedoraproject.org\n" "Language: gu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Virtaal 0.6.1\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ…ąŖ¬ąŖæąŖ”ą«ąŖœąŖ¾ąŖØ" #: timezones.h:2 msgid "Africa/Accra" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖąŖ•ą«ąŖ°ąŖ¾" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖąŖ”ąŖæąŖø_ąŖąŖ¬ąŖ¾ąŖ¬ąŖ¾" #: timezones.h:4 msgid "Africa/Algiers" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖąŖ²ą«ąŖœą«€ąŖ°ą«ąŖø" #: timezones.h:5 msgid "Africa/Asmara" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ…ąŖøą«ąŖ®ą«‡ąŖ°ąŖ¾" #: timezones.h:6 msgid "Africa/Asmera" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ…ąŖøą«ąŖ®ą«‡ąŖ°ąŖ¾" #: timezones.h:7 msgid "Africa/Bamako" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/બામાકો" #: timezones.h:8 msgid "Africa/Bangui" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ¬ąŖ¾ąŖØą«ąŖ—ą«ąŖÆą«ąŖˆ" #: timezones.h:9 msgid "Africa/Banjul" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ¬ąŖ¾ąŖØą«ąŖœą«ąŖ²" #: timezones.h:10 msgid "Africa/Bissau" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/બિસાઉ" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ¬ą«ąŖ²ąŖ¾ąŖØą«ąŖŸą«€ąŖ°" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ¬ą«ąŖ°ąŖ¾ąŖąŖ¾ąŖµąŖæąŖ²ą«ąŖ²ą«‡" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ¬ą«ąŖœą«ąŖ®ą«ąŖ¬ą«ąŖ°ąŖ¾" #: timezones.h:14 msgid "Africa/Cairo" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ•ą«‡ąŖˆąŖ°ą«‹" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ•ąŖ¾ąŖøąŖ¾ąŖ¬ą«ąŖ²ąŖ¾ąŖØą«ąŖ•ąŖ¾" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖøą«‡ąŖÆą«ąŖŸąŖ¾" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "સેઉતા & ąŖ®ą«‡ąŖ²ąŖæąŖ²ą«ąŖ²ąŖ¾" #: timezones.h:19 msgid "Africa/Conakry" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ•ą«‹ąŖØąŖ¾ąŖ•ą«ąŖ°ą«€" #: timezones.h:20 msgid "Africa/Dakar" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ઔાકાર" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ¦ąŖ¾ąŖ°ą«ąŖøą«‡ąŖ²ą«ąŖ²ąŖ¾ąŖ®" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ”ąŖæąŖœą«€ąŖ¬ą«ŒąŖŸą«€" #: timezones.h:23 msgid "Africa/Douala" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ઔોઉલા" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖˆąŖ†ąŖˆąŖ“ąŖˆąŖ‰ąŖØ" #: timezones.h:25 msgid "Africa/Freetown" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ«ą«ąŖ°ą«€ąŖŸąŖ¾ąŖ‰ąŖØ" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ગાબોરોન" #: timezones.h:27 msgid "Africa/Harare" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/હારારે" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖœą«ąŖ¹ą«‹ąŖØą«€ąŖøąŖ¬ąŖ°ą«ąŖ—" #: timezones.h:29 msgid "Africa/Kampala" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ•ąŖ¾ąŖ®ą«ąŖŖąŖ¾ąŖ²ąŖ¾" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ–ąŖ¾ąŖ°ą«ąŖŸą«‹ąŖ‰ąŖ®" #: timezones.h:31 msgid "Africa/Kigali" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/કિગાલી" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ•ąŖæąŖØą«ąŖøąŖ¾ąŖ¹ąŖ¾" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "ąŖŖąŖ¶ą«ąŖšąŖæąŖ® ąŖ”ą«‡ąŖ®ą«‹ąŖ•ą«ąŖ°ą«‡ąŖŸą«€ąŖ• ąŖ°ąŖæąŖŖąŖ¬ą«ąŖ²ą«€ąŖ• ąŖ‘ąŖ« ąŖ•ą«‹ąŖ‚ąŖØą«ąŖ—ą«‹" #: timezones.h:35 msgid "Africa/Lagos" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/લાગોસ" #: timezones.h:36 msgid "Africa/Libreville" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ²ąŖæąŖ¬ą«ąŖ°ą«‡ąŖµąŖæąŖ²ą«ąŖ²ą«‡" #: timezones.h:37 msgid "Africa/Lome" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/લોમ" #: timezones.h:38 msgid "Africa/Luanda" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ²ąŖ¾ąŖ‰ąŖØą«ąŖ¦ąŖ¾" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ²ą«ąŖ¬ą«ąŖ®ą«ąŖ¬ąŖ¾ąŖ¶ą«€" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "ąŖŖą«‚ąŖ°ą«ąŖµ ąŖ”ą«‡ąŖ®ą«‹ąŖ•ą«ąŖ°ą«‡ąŖŸą«€ąŖ• ąŖ°ąŖæąŖŖąŖ¬ą«ąŖ²ą«€ąŖ• ąŖ‘ąŖ« ąŖ•ą«‹ąŖ‚ąŖØą«ąŖ—ą«‹" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/લુસાકા" #: timezones.h:43 msgid "Africa/Malabo" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/માલાકો" #: timezones.h:44 msgid "Africa/Maputo" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ®ąŖ¾ąŖŖą«ąŖŸą«‹" #: timezones.h:45 msgid "Africa/Maseru" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/માસેરુ" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ®ą«ąŖ¬ąŖ¾ąŖ¬ąŖ¾ąŖØą«‡" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/મોગાઔીશુ" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ®ą«‹ąŖØą«ąŖ°ą«‹ąŖµąŖæąŖÆąŖ¾" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖØą«ˆąŖ°ą«‹ąŖ¬ą«€" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖØą«€ąŖ¦ą«ąŖœąŖ¾ąŖ®ą«‡ąŖØąŖ¾" #: timezones.h:51 msgid "Africa/Niamey" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/નિયામે" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖØą«ŒąŖ•ąŖšą«‹ąŖŸą«ąŖŸ" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ”ąŖ—ąŖ¾ąŖ”ą«ŒąŖ—ą«" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖŖą«‹ąŖ°ą«ąŖŸą«‹-નોવો" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖøąŖ¾ąŖ“ąŖŸą«‹ąŖ®" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖ¤ąŖæąŖ®ą«ąŖ¬ą«ąŖ•ą«ąŖ¤ą«" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖŸą«ąŖ°ąŖæąŖŖą«‹ąŖ²ą«€" #: timezones.h:58 msgid "Africa/Tunis" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖŸą«ąŖÆą«ąŖØąŖæąŖø" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "ąŖ†ąŖ«ą«ąŖ°ąŖæąŖ•ąŖ¾/ąŖµąŖæąŖØą«ąŖ”ąŖ¹ą«‹ąŖ•" #: timezones.h:60 msgid "America/Adak" msgstr "અમેરિકા/અઔાક" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "ąŖąŖ²ą«ąŖÆą«ąŖŸąŖæąŖÆąŖØ ટાપુ" #: timezones.h:63 msgid "America/Anchorage" msgstr "અમેરિકા/ąŖąŖØą«ąŖ•ą«‹ąŖ°ą«‡ąŖœ" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "ąŖ…ąŖ²ąŖ¾ąŖøą«ąŖ•ąŖ¾ સમય" #: timezones.h:66 msgid "America/Anguilla" msgstr "અમેરિકા/ąŖąŖØą«ąŖ—ą«ąŖÆą«ąŖˆąŖ²ą«ąŖ²ąŖ¾" #: timezones.h:67 msgid "America/Antigua" msgstr "અમેરિકા/ąŖąŖØą«ąŖŸą«€ąŖ—ą«ąŖµąŖ¾" #: timezones.h:68 msgid "America/Araguaina" msgstr "અમેરિકા/ąŖ†ąŖ°ąŖ¾ąŖ—ą«ąŖÆą«ąŖ†ąŖˆąŖØąŖ¾" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "ąŖŸą«‰ąŖ•ą«…ąŖØą«ąŖŸą«€ąŖØą«ąŖø" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "અમેરિકા/ąŖ†ąŖ°ą«ąŖœą«‡ąŖØą«ąŖŸąŖæąŖØąŖ¾/ąŖ¬ą«ąŖÆą«ąŖąŖØą«‹ąŖø ąŖąŖ°ą«ąŖø" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "ąŖ¬ą«ąŖÆą«‚ąŖąŖØą«‹ąŖœą« ąŖ†ąŖÆąŖ°ą«€ąŖœ (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "અમેરિકા/ąŖ†ąŖ°ą«ąŖœą«‡ąŖØą«ąŖŸąŖæąŖØąŖ¾/ąŖ•ąŖ¾ąŖŸąŖ¾ąŖ®ąŖ¾ąŖ°ą«ąŖ•ąŖ¾" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "ąŖ•ąŖŸąŖ¾ąŖ®ąŖ¾ąŖ°ą«ąŖ•ąŖ¾ (CT), ચુબુટ (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "અમેરિકા/ąŖ†ąŖ°ą«ąŖœą«‡ąŖØą«ąŖŸąŖæąŖØąŖ¾/કોમોઔરીવાઔાવીયા" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "અમેરિકા/ąŖ†ąŖ°ą«ąŖœą«‡ąŖØą«ąŖŸąŖæąŖØąŖ¾/ąŖ•ą«‹ąŖ°ą«ąŖ”ą«‹ąŖ¬ąŖ¾" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "ąŖ®ą«‹ąŖŸąŖ¾ąŖ­ąŖ¾ąŖ—ąŖØąŖ¾ąŖ‚ ąŖøą«ąŖ„ąŖ¾ąŖØą«‹ (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "અમેરિકા/ąŖ†ąŖ°ą«ąŖœą«‡ąŖØą«ąŖŸąŖæąŖØąŖ¾/ąŖœą«ąŖÆą«ąŖœąŖÆ" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "જુજુય (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "અમેરિકા/ąŖ†ąŖ°ą«ąŖœą«‡ąŖØą«ąŖŸąŖæąŖØąŖ¾/લા ąŖ°ą«€ąŖÆą«‹ąŖœąŖ¾" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "લા ąŖ°ą«€ąŖ“ąŖœąŖ¾ (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "અમેરિકા/ąŖ†ąŖ°ą«ąŖœą«‡ąŖØą«ąŖŸąŖæąŖØąŖ¾/ąŖ®ą«‡ąŖØą«ąŖ”ą«‹ąŖąŖ¾" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "ąŖ®ą«‡ąŖØą«ąŖ”ą«‹ąŖąŖ¾ (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "અમેરિકા/ąŖ†ąŖ°ą«ąŖœą«‡ąŖØą«ąŖŸąŖæąŖØąŖ¾/રાયો ગાલેગોસ" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "ąŖøąŖ¾ąŖØą«ąŖ¤ąŖ¾ ąŖ•ą«ąŖ°ą«ąŖ (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "અમેરિકા/ąŖ†ąŖ°ą«ąŖœą«‡ąŖØą«ąŖŸąŖæąŖØąŖ¾/ąŖøąŖ¾ąŖ²ą«ąŖŸąŖ¾" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "અમેરિકા/ąŖ†ąŖ°ą«ąŖœą«‡ąŖØą«ąŖŸąŖæąŖØąŖ¾/સાન ąŖœą«ąŖÆą«ąŖ†ąŖØ" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "સાન ąŖœą«‚ąŖ†ąŖØ (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "અમેરિકા/ąŖ†ąŖ°ą«ąŖœą«‡ąŖØą«ąŖŸąŖæąŖØąŖ¾/સાન લૂઇસ (_L)" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "સાન લૂઇસ (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "અમેરિકા/ąŖ†ąŖ°ą«ąŖœą«‡ąŖØą«ąŖŸąŖæąŖØąŖ¾/તુકુમન" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "તુકુમાન (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "અમેરિકા/ąŖ†ąŖ°ą«ąŖœą«‡ąŖØą«ąŖŸąŖæąŖØąŖ¾/ąŖÆą«ąŖ¶ą«ąŖ†ąŖˆąŖÆąŖ¾" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "ąŖ¤ą«ˆąŖ°ą«ąŖ°ąŖ¾ ઔેલ ąŖ«ą«ąŖąŖ—ą«‹ (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "અમેરિકા/ąŖąŖ°ą«ąŖ¬ąŖ¾" #: timezones.h:109 msgid "America/Asuncion" msgstr "અમેરિકા/ąŖ…ąŖøą«ąŖØą«ąŖøą«€ąŖ“ąŖØ" #: timezones.h:110 msgid "America/Atikokan" msgstr "અમેરિકા/ąŖ…ąŖŸąŖæąŖ•ą«‹ąŖ•ąŖ¾ąŖØ" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ મૂળભૂત સમય - ąŖ…ąŖŸąŖæąŖ•ą«‹ąŖ•ąŖØ, ąŖ“ąŖØą«ąŖŸąŖ¾ąŖ°ą«€ąŖÆą«‹ અને ąŖøąŖ¾ąŖ‰ąŖ„ąŖ¹ą«…ąŖ®ą«ąŖŖąŖŸąŖØ ąŖ‡, નુનાવુટ" #: timezones.h:113 msgid "America/Atka" msgstr "અમેરિકા/ąŖ…ąŖŸą«ąŖ•ąŖ¾" #: timezones.h:114 msgid "America/Bahia" msgstr "અમેરિકા/બાહિયા" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "બાહિઆ" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "અમેરિકા/બાહિયા ąŖ¬ąŖ¾ąŖØą«ąŖ”ą«‡ąŖ°ąŖ¾ąŖø (_B)" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "ąŖ®ą«‡ąŖ•ą«ąŖøąŖæąŖ•ą«€ ąŖ•ą«‡ąŖØą«ąŖ¦ą«ąŖ°ąŖæąŖÆ સમય - બાહિયા ઔે ąŖ¬ąŖ¾ąŖØą«ąŖ”ą«‡ąŖ°ąŖ¾ąŖø" #: timezones.h:120 msgid "America/Barbados" msgstr "અમેરિકા/ąŖ¬ąŖ¾ąŖ°ą«ąŖ¬ąŖ¾ąŖ”ą«‹ąŖø" #: timezones.h:121 msgid "America/Belem" msgstr "અમેરિકા/બેલેમ" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "ąŖąŖ®ą«ąŖŖąŖ¾ąŖ°ąŖ¾, ąŖ‡ પારા" #: timezones.h:124 msgid "America/Belize" msgstr "અમેરિકા/ąŖ¬ą«‡ąŖ²ąŖæąŖ" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "અમેરિકા/ąŖ¬ą«ąŖ²ą«‡ąŖØą«ąŖ•-ąŖøąŖ¾ąŖ¬ą«ąŖ²ą«‹ąŖØ" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "ąŖąŖŸąŖ²ąŖ¾ąŖØą«ąŖŸąŖæąŖ• મૂળભૂત સમય - ąŖ•ą«ąŖÆą«ąŖ¬ą«‡ąŖ• - લોવર ąŖ‡ąŖ¤ą«ąŖ¤ąŖ°ą«€ąŖÆ ąŖ¶ą«‹ąŖ°" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "અમેરિકા/ąŖ¬ą«‹ąŖ†ąŖµąŖæąŖ¤ą«ąŖøąŖ¾" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "રોરાઇમા" #: timezones.h:131 msgid "America/Bogota" msgstr "અમેરિકા/ąŖ¬ą«‹ąŖ—ą«‹ąŖŸąŖ¾" #: timezones.h:132 msgid "America/Boise" msgstr "અમેરિકા/ąŖ¬ą«‹ąŖˆąŖø" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "ąŖŖąŖ°ą«ąŖµąŖ¤ą«€ąŖÆ સમય - ąŖ¦ąŖ•ą«ąŖ·ąŖæąŖ£ ઇઔાહો અને ąŖŖą«‚ąŖ°ą«ąŖµ ઓરેગોન" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "અમેરિકા/ąŖ¬ą«ąŖÆą«ąŖąŖØą«‹ąŖø ąŖąŖ°ą«ąŖø" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "અમેરિકા/ąŖ•ą«‡ąŖ®ą«ąŖ¬ą«ąŖ°ąŖæąŖœ બે" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "ąŖŖąŖ°ą«ąŖµąŖ¤ą«€ąŖÆ સમય - ąŖŖąŖ¶ą«ąŖšąŖæąŖ® નુનાવુટ" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "અમેરિકા/ąŖ•ąŖ¾ąŖ®ą«ąŖŖą«‹ ąŖ—ą«ąŖ°ąŖ¾ąŖØą«ąŖ”ą«‡" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "ąŖ®ąŖ¾ąŖŸą«‹ ąŖ—ą«ąŖ°ą«‹ąŖøą«ąŖøą«‹ ઔુ સુલ" #: timezones.h:142 msgid "America/Cancun" msgstr "અમેરિકા/કેનકન" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "ąŖ®ąŖ§ą«ąŖÆ સમય - ąŖ•ą«ąŖ‡ąŖ‚ąŖŸąŖ¾ąŖµąŖ¾ રુ" #: timezones.h:145 msgid "America/Caracas" msgstr "અમેરિકા/ąŖ•ąŖ¾ąŖ°ąŖ¾ąŖ•ą«ąŖø" #: timezones.h:146 msgid "America/Catamarca" msgstr "અમેરિકા/ąŖ•ąŖ¾ąŖŸąŖ¾ąŖ®ąŖ¾ąŖ°ą«ąŖ•ąŖ¾" #: timezones.h:147 msgid "America/Cayenne" msgstr "અમેરિકા/ąŖ•ą«‡ąŖÆą«‡ąŖØą«ąŖØ" #: timezones.h:148 msgid "America/Cayman" msgstr "અમેરિકા/કેયમેન" #: timezones.h:149 msgid "America/Chicago" msgstr "અમેરિકા/શિકાગો" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "ąŖ•ą«‡ąŖØą«ąŖ¦ą«ąŖ°ąŖæąŖÆ સમય" #: timezones.h:152 msgid "America/Chihuahua" msgstr "અમેરિકા/ąŖšąŖæąŖ¹ą«ąŖ†ąŖ¹ą«ąŖ†" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "ąŖ®ą«‡ąŖ•ą«ąŖøąŖæąŖ•ąŖØ ąŖ®ąŖ¾ąŖ‰ąŖØą«ąŖŸą«‡ąŖØ ટાઈમ - ąŖšąŖæąŖ¹ą«ąŖ†ąŖ¹ą«ąŖ† US ąŖ¬ą«‹ąŖ°ą«ąŖ”ąŖ°ąŖ„ą«€ દૂર" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "અમેરિકા/કોરાલ ટાપુ" #: timezones.h:156 msgid "America/Cordoba" msgstr "અમેરિકા/ąŖ•ą«‹ąŖ°ą«ąŖ”ą«‹ąŖ¬ąŖ¾" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "અમેરિકા/ąŖ•ą«‹ąŖøą«ąŖŸąŖ¾ ąŖ°ąŖæąŖ•ąŖ¾" #: timezones.h:158 msgid "America/Cuiaba" msgstr "અમેરિકા/ąŖ•ą«ąŖÆą«ąŖˆąŖ¬ąŖ¾" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "ąŖ®ąŖ¾ąŖŸą«‹ ąŖ—ą«ąŖ°ą«‹ąŖøą«ąŖøą«‹" #: timezones.h:161 msgid "America/Curacao" msgstr "અમેરિકા/ąŖ•ą«ąŖÆą«ąŖ°ąŖ¾ąŖ•ąŖ¾ąŖ“" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "અમેરિકા/ąŖ”ą«‡ąŖØą«ąŖ®ąŖ¾ąŖ°ą«ąŖ•ąŖ¶ą«‹ąŖØ" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ તટ, ąŖ‰ąŖ¤ą«ąŖ¤ąŖ°ą«€ąŖÆ ąŖøą«ąŖ•ą«‹ąŖ°ą«ąŖøąŖ¬ąŖ¾ąŖÆąŖøą«ąŖ‚ąŖ”" #: timezones.h:165 msgid "America/Dawson" msgstr "અમેરિકા/ઔાઉનસન" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "પેસિફીક સમય - ąŖ‰ąŖ¤ą«ąŖ¤ąŖ° યુકોન" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "અમેરિકા/ઔાઉનસન ąŖ•ą«ąŖ°ą«€ąŖ•" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "ąŖŖąŖ°ą«ąŖµąŖ¤ą«€ąŖÆ મૂળભૂત સમય - ąŖ¦ąŖ¾ąŖµą«ąŖøą«‹ąŖØ ąŖ•ą«ąŖ°ąŖæąŖ• અને ąŖ«ą«‹ąŖ°ą«ąŖŸ ąŖøą«ˆąŖ‚ąŖŸ ąŖœą«‰ąŖØ, ąŖ¬ą«ąŖ°ąŖæąŖŸą«€ąŖ¶ ąŖ•ą«‹ąŖ²ą«ąŖ®ąŖ¬ą«€ąŖÆąŖ¾" #: timezones.h:171 msgid "America/Denver" msgstr "અમેરિકા/ąŖ”ą«‡ąŖØą«ąŖµą«‡ąŖ°" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "ąŖŖąŖ°ą«ąŖµąŖ¤ą«€ąŖÆ સમય" #: timezones.h:174 msgid "America/Detroit" msgstr "અમેરિકા/ąŖ”ą«‡ąŖŸą«ąŖ°ą«‹ąŖˆąŖŸ" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ સમય - મિસિગન - ąŖ®ą«‹ąŖŸąŖ¾ąŖ­ąŖ¾ąŖ—ąŖØąŖ¾ąŖ‚ ąŖøą«ąŖ„ąŖ¾ąŖØą«‹" #: timezones.h:177 msgid "America/Dominica" msgstr "અમેરિકા/ઔોમિનિકા" #: timezones.h:178 msgid "America/Edmonton" msgstr "અમેરિકા/ąŖąŖ”ąŖ®ą«‡ąŖØą«ąŖŸą«‹ąŖØ" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "ąŖŖąŖ°ą«ąŖµąŖ¤ą«€ąŖÆ સમય - ąŖ…ąŖ²ą«ąŖ¬ą«‡ąŖ°ą«ąŖŸąŖ¾, ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ ąŖ¬ą«ąŖ°ąŖæąŖŸą«€ąŖ¶ ąŖ•ą«‹ąŖ²ą«ąŖ®ąŖ¬ą«€ąŖÆąŖ¾ અને ąŖŖąŖ¶ą«ąŖšąŖæąŖ® ąŖøą«ąŖ•ąŖ¾ąŖ¤ą«ąŖµą«‡ąŖµąŖ¾ąŖØ" #: timezones.h:181 msgid "America/Eirunepe" msgstr "અમેરિકા/યુરુનેપે" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "W Amazonas" #: timezones.h:184 msgid "America/El_Salvador" msgstr "અમેરિકા/ąŖˆąŖ†ąŖˆ ąŖøą«‡ąŖ²ą«ąŖµą«‡ąŖ”ą«‹ąŖ°" #: timezones.h:185 msgid "America/Ensenada" msgstr "અમેરિકા/ąŖąŖØą«ąŖøą«‡ąŖØąŖ¾ąŖ”ąŖ¾" #: timezones.h:186 msgid "America/Fortaleza" msgstr "અમેરિકા/ąŖ«ą«‹ąŖ°ą«ąŖŸąŖ¾ąŖ²ą«€ąŖąŖ¾" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "NE ąŖ¬ą«ąŖ°ąŖ¾ąŖąŖæąŖ² (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "અમેરિકા/ąŖ«ą«‹ąŖ°ą«ąŖŸ વેયને" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "અમેરિકા/ąŖ—ą«ąŖ²ą«‡ąŖø બે" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "ąŖąŖŸąŖ²ąŖ¾ąŖØą«ąŖŸąŖæąŖ• સમય - નોવા ąŖøą«ąŖ•ą«‹ąŖŸą«€ąŖÆąŖ¾ - ąŖœąŖ—ą«ąŖÆąŖ¾ąŖ“ કે ąŖœą«‡ DST 1966-1971 નું ąŖ§ą«ąŖÆąŖ¾ąŖØ રાખતુ ąŖØąŖ„ą«€" #: timezones.h:193 msgid "America/Godthab" msgstr "અમેરિકા/ગોઔ઄ેબ" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "ąŖ®ą«‹ąŖŸąŖ¾ąŖ­ąŖ¾ąŖ—ąŖØąŖ¾ąŖ‚ ąŖøą«ąŖ„ąŖ¾ąŖØą«‹" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "અમેરિકા/ąŖ—ą«ąŖ બે" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "ąŖąŖŸąŖ²ąŖ¾ąŖØą«ąŖŸąŖæąŖ• સમય - ąŖ²ą«…ąŖ¬ą«ąŖ°ąŖ”ą«‹ąŖ° - ąŖ®ą«‹ąŖŸąŖ¾ąŖ­ąŖ¾ąŖ—ąŖØąŖ¾ąŖ‚ ąŖøą«ąŖ„ąŖ¾ąŖØą«‹" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "અમેરિકા/ąŖ—ą«ąŖ°ąŖ¾ąŖØą«ąŖ” ąŖ¤ą«ąŖ°ą«ąŖ•" #: timezones.h:200 msgid "America/Grenada" msgstr "અમેરિકા/ąŖ—ą«ąŖ°ą«‡ąŖØąŖ¾ąŖ”ąŖ¾" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "અમેરિકા/ąŖ—ą«ąŖÆą«ąŖ†ąŖ”ą«‡ąŖ²ą«‹ąŖŖ" #: timezones.h:202 msgid "America/Guatemala" msgstr "અમેરિકા/ąŖ—ą«ŒąŖŸą«‡ąŖ®ąŖ¾ąŖ²ąŖ¾" #: timezones.h:203 msgid "America/Guayaquil" msgstr "અમેરિકા/ąŖ—ą«ąŖÆą«ąŖ†ąŖÆąŖ¾ąŖ•ą«€ąŖ²" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "ąŖ®ą«‡ąŖ‡ąŖØąŖ²ą«…ąŖØą«ąŖ”" #: timezones.h:206 msgid "America/Guyana" msgstr "અમેરિકા/ąŖ—ą«ąŖÆą«ąŖ†ąŖØąŖ¾" #: timezones.h:207 msgid "America/Halifax" msgstr "અમેરિકા/ąŖ¹ą«‡ąŖ²ąŖæąŖ«ą«‡ąŖ•ą«ąŖø" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "ąŖąŖŸąŖ²ąŖ¾ąŖØą«ąŖŸąŖæąŖ• સમય - નોવા ąŖøą«ąŖ•ą«‹ąŖŸą«€ąŖ† (ąŖ®ą«‹ąŖŸąŖ¾ąŖ­ąŖ¾ąŖ—ąŖØąŖ¾ąŖ‚ ąŖøą«ąŖ„ąŖ¾ąŖØą«‹), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "અમેરિકા/હેવાના" #: timezones.h:211 msgid "America/Hermosillo" msgstr "અમેરિકા/ąŖ¹ąŖ°ą«ąŖ®ą«‹ąŖøąŖæąŖ²ą«ąŖ²ą«‹" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "ąŖŖąŖ°ą«ąŖµąŖ¤ą«€ąŖÆ મૂળભૂત સમય - ąŖøą«‹ąŖØą«‹ąŖ°ąŖ¾" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "અમેરિકા/ąŖˆąŖØą«ąŖ”ąŖæąŖÆąŖ¾ąŖØąŖ¾/ąŖˆąŖØą«ąŖ”ąŖæąŖÆąŖ¾ąŖØąŖ¾ąŖŖą«‹ąŖ²ąŖæąŖø" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ સમય - ąŖ‡ąŖØą«ąŖ”ąŖæąŖÆąŖ¾ąŖØąŖ¾ - ąŖ®ą«‹ąŖŸąŖ¾ąŖ­ąŖ¾ąŖ—ąŖØąŖ¾ąŖ‚ ąŖøą«ąŖ„ąŖ¾ąŖØą«‹" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "અમેરિકા/ąŖˆąŖØą«ąŖ”ąŖæąŖÆąŖ¾ąŖØąŖ¾/ąŖ•ą«ąŖØą«‹ąŖ•ą«ąŖø" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "ąŖ®ąŖ§ą«ąŖÆ સમય- ąŖ‡ąŖØą«ąŖ”ąŖæąŖÆąŖ¾ąŖØąŖ¾ - ąŖøą«ąŖŸąŖ¾ąŖ°ą«ąŖ•ą«‡ દેશ" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "અમેરિકા/ąŖˆąŖØą«ąŖ”ąŖæąŖÆąŖ¾ąŖØąŖ¾/મારેંગો" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ સમય - ąŖ‡ąŖØą«ąŖ”ąŖæąŖÆąŖ¾ąŖØąŖ¾ - ąŖ•ą«ąŖ°ą«‰ąŖµą«ąŖ«ą«‹ąŖ°ą«ąŖ” દેશ" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "અમેરિકા/ąŖˆąŖØą«ąŖ”ąŖæąŖÆąŖ¾ąŖØąŖ¾/ąŖŖą«€ąŖŸąŖ°ą«ąŖøąŖ¬ąŖ°ą«ąŖ—" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ સમય - ąŖ‡ąŖØą«ąŖ”ąŖæąŖÆąŖ¾ąŖØąŖ¾ - પાઇક દેશ" #: timezones.h:226 msgid "America/Indianapolis" msgstr "અમેરિકા/ąŖˆąŖØą«ąŖ”ąŖæąŖÆąŖ¾ąŖØąŖ¾ąŖŖą«‹ąŖ²ąŖæąŖø" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "અમેરિકા/ąŖˆąŖØą«ąŖ”ąŖæąŖÆąŖ¾ąŖØąŖ¾/ąŖŸą«‡ąŖ²ą«‡_શહેર" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "ąŖ®ąŖ§ą«ąŖÆ સમય - ąŖ‡ąŖØą«ąŖ”ąŖæąŖÆąŖ¾ąŖØąŖ¾ - ąŖŖą«‡ąŖ°ą«ąŖ°ą«€ દેશ" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "અમેરિકા/ąŖˆąŖØą«ąŖ”ąŖæąŖÆąŖ¾ąŖØąŖ¾/વેવે" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ સમય - ąŖ‡ąŖØą«ąŖ”ąŖæąŖÆąŖ¾ąŖØąŖ¾ - ąŖøą«ąŖµąŖæąŖąŖ°ąŖ²ą«…ąŖØą«ąŖ” દેશ" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "અમેરિકા/ąŖˆąŖØą«ąŖ”ąŖæąŖÆąŖ¾ąŖØąŖ¾/ąŖµąŖæąŖØą«ąŖøą«‡ąŖØą«€ąŖ" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ સમય - ąŖ‡ąŖØą«ąŖ”ąŖæąŖÆąŖ¾ąŖØąŖ¾ - ąŖ”ąŖ¾ąŖµą«€ąŖąŖø, ઔુબૌસ, ąŖ•ą«ąŖØą«‹ąŖ•ą«ąŖø અને ąŖ®ąŖ¾ąŖ°ą«ąŖŸą«€ąŖØ દેશ" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "અમેરિકા/ąŖˆąŖØą«ąŖ”ąŖæąŖÆąŖ¾ąŖØąŖ¾/વિનામેક" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ સમય - ąŖ‡ąŖØą«ąŖ”ąŖæąŖÆąŖ¾ąŖØąŖ¾ - ąŖŖą«ąŖ²ąŖ¾ąŖøą«ąŖ•ą«€ દેશ" #: timezones.h:239 msgid "America/Inuvik" msgstr "અમેરિકા/ąŖˆąŖØą«ąŖµąŖæąŖ•" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "ąŖŖąŖ°ą«ąŖµąŖ¤ą«€ąŖÆ સમય - ąŖŖąŖ¶ą«ąŖšąŖæąŖ® ąŖ‰ąŖ¤ą«ąŖ¤ąŖ°ąŖŖąŖ¶ą«ąŖšąŖæąŖ® ąŖŖą«ąŖ°ąŖ¾ąŖ‚ąŖ¤" #: timezones.h:242 msgid "America/Iqaluit" msgstr "અમેરિકા/ąŖˆąŖ•ą«ąŖµąŖ¾ąŖ²ą«ąŖÆą«ąŖŸ" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ સમય - ąŖŖą«‚ąŖ°ą«ąŖµ નુનાવુટ - ąŖ®ą«‹ąŖŸąŖ¾ąŖ­ąŖ¾ąŖ—ąŖØąŖ¾ąŖ‚ ąŖøą«ąŖ„ąŖ¾ąŖØą«‹" #: timezones.h:245 msgid "America/Jamaica" msgstr "અમેરિકા/ąŖœąŖ®ą«ˆąŖ•ąŖ¾" #: timezones.h:246 msgid "America/Jujuy" msgstr "અમેરિકા/ąŖœą«ąŖÆą«ąŖœąŖÆ" #: timezones.h:247 msgid "America/Juneau" msgstr "અમેરિકા/ąŖœą«ąŖØą«‡ąŖ‰" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "ąŖ…ąŖ²ąŖ¾ąŖøą«ąŖ•ąŖ¾ સમય - ąŖ…ąŖ²ąŖ¾ąŖøą«ąŖ•ąŖ¾ ąŖŖą«…ąŖØąŖ¹ą«…ąŖØą«ąŖ”ąŖ²" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "અમેરિકા/ąŖ•ą«‡ąŖØą«ąŖŸą«ąŖ•ą«€/ąŖ²ą«ąŖˆąŖøąŖµąŖæąŖ²ą«ąŖ²ą«‡" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ સમય - ąŖ•ą«‡ąŖØą«ąŖŸą«ąŖ•ą«€ - ąŖ²ą«ąŖˆąŖøąŖµąŖæąŖ²ą«ąŖ²ą«‡ ąŖµąŖæąŖøą«ąŖ¤ąŖ¾ąŖ°" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "અમેરિકા/ąŖ•ą«‡ąŖØą«ąŖŸą«ąŖ•ą«€/ąŖ®ą«‹ąŖØą«ąŖŸą«€ąŖøą«‡ąŖ²ą«‹" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ સમય - ąŖ•ą«…ąŖØą«ąŖŸą«ąŖ•ą«€ - ąŖµą«‡ąŖÆą«ąŖØ દેશ" #: timezones.h:256 msgid "America/Knox_IN" msgstr "અમેરિકા/ąŖ•ą«ąŖØą«‹ąŖ•ą«ąŖø ઈન" #: timezones.h:257 msgid "America/La_Paz" msgstr "અમેરિકા/લા ąŖŖąŖ¾ąŖ" #: timezones.h:258 msgid "America/Lima" msgstr "અમેરિકા/લિમા" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "અમેરિકા/લોસ ąŖąŖØą«ąŖœą«‡ąŖ²ąŖø" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "પેસિફિક સમય" #: timezones.h:262 msgid "America/Louisville" msgstr "અમેરિકા/ąŖ²ą«ąŖˆąŖøąŖµąŖæąŖ²ą«ąŖ²ą«‡" #: timezones.h:263 msgid "America/Maceio" msgstr "અમેરિકા/ąŖ®ąŖ¾ąŖ•ąŖ¾ąŖˆąŖ“" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "ąŖ…ąŖ²ą«ąŖ—ą«‹ąŖ†ąŖø, ąŖøą«‡ąŖ°ą«ąŖ—ą«€ąŖŖą«‡" #: timezones.h:266 msgid "America/Managua" msgstr "અમેરિકા/માનાગુઆ" #: timezones.h:267 msgid "America/Manaus" msgstr "અમેરિકા/માનાઉસ" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "E ąŖ…ąŖ®ąŖ¾ąŖœą«‹ąŖØąŖ¾ąŖø" #: timezones.h:270 msgid "America/Marigot" msgstr "અમેરિકા/ąŖ®ą«‡ąŖ°ą«€ąŖ—ą«‹ąŖŸ" #: timezones.h:271 msgid "America/Martinique" msgstr "અમેરિકા/ąŖ®ąŖ¾ąŖ°ą«ąŖŸą«€ąŖØą«€ąŖ•" #: timezones.h:272 msgid "America/Matamoros" msgstr "અમેરિકા/ąŖ®ąŖ¾ąŖŸąŖ¾ąŖ®ą«‹ąŖ°ą«‹ąŖø" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "US ąŖ•ą«‡ąŖØą«ąŖ¦ą«ąŖ°ąŖæąŖÆ સમય - ąŖ•ą«‹ąŖ†ąŖ¹ą«ąŖˆąŖ²ąŖ¾, ąŖ”ą«ąŖ°ąŖ¾ąŖØą«ąŖ—ą«‹, ąŖØą«ąŖÆą«ąŖąŖµą«‹ લીઓન, તમાઉલિપાસ US ąŖ¬ą«‹ąŖ°ą«ąŖ”ąŖ° ąŖØąŖœą«€ąŖ•" #: timezones.h:275 msgid "America/Mazatlan" msgstr "અમેરિકા/ąŖ®ąŖ¾ąŖąŖ¾ąŖŸą«ąŖ²ąŖ¾ąŖØ" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "ąŖŖąŖ°ą«ąŖµąŖ¤ą«€ąŖÆ સમય - S બજા, નયારીત, સિનાલોઆ" #: timezones.h:278 msgid "America/Mendoza" msgstr "અમેરિકા/ąŖ®ą«‡ąŖØą«ąŖ”ą«‹ąŖąŖ¾" #: timezones.h:279 msgid "America/Menominee" msgstr "અમેરિકા/મેનોમીનિ" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "ąŖ®ąŖ§ą«ąŖÆ સમય - મિસિગન - ઔિકિંસન, ગોગેબીક, ąŖ†ąŖ°ą«ąŖØ અને મેનોમિની દેશો" #: timezones.h:282 msgid "America/Merida" msgstr "અમેરિકા/મેરિઔા" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "ąŖ®ąŖ§ą«ąŖÆ સમય - ąŖ•ą«…ąŖŖą«‡ąŖšą«‡, ąŖÆą«ąŖ•ą«…ąŖŸąŖØ" #: timezones.h:285 msgid "America/Mexico_City" msgstr "અમેરિકા/ąŖ®ą«‡ąŖ•ą«ąŖøąŖæąŖ•ą«‹ શહેર" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "ąŖ®ąŖ§ą«ąŖÆ સમય - ąŖ®ą«‹ąŖŸąŖ¾ąŖ­ąŖ¾ąŖ—ąŖØąŖ¾ąŖ‚ ąŖøą«ąŖ„ąŖ¾ąŖØą«‹" #: timezones.h:288 msgid "America/Miquelon" msgstr "અમેરિકા/મિકેલોન" #: timezones.h:289 msgid "America/Moncton" msgstr "અમેરિકા/ąŖ®ą«‹ąŖØą«ąŖ•ą«ąŖŸąŖØ" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "ąŖąŖŸąŖ²ąŖ¾ąŖØą«ąŖŸąŖæąŖ• સમય - નવું ąŖ¬ą«ąŖ°ą«ąŖ‚ąŖøą«ąŖµą«€ąŖ•" #: timezones.h:292 msgid "America/Monterrey" msgstr "અમેરિકા/ąŖ®ą«‹ąŖØą«ąŖŸą«‡ąŖ°ą«€" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" "ąŖ®ą«‡ąŖ•ą«ąŖøąŖæąŖ•ąŖØ ąŖ•ą«‡ąŖØą«ąŖ¦ą«ąŖ°ąŖæąŖÆ સમય - ąŖ•ą«‹ąŖ†ąŖ¹ą«ąŖˆąŖ²ąŖ¾, ąŖ”ą«ąŖ°ąŖ¾ąŖØą«ąŖ—ą«‹, ąŖØą«ąŖÆą«ąŖąŖµą«‹ લીઓન, તમાઉલિપાસ US ąŖ¬ą«‹ąŖ°ą«ąŖ”ąŖ°ąŖ„ą«€ દૂર" #: timezones.h:295 msgid "America/Montevideo" msgstr "અમેરિકા/ąŖ®ą«‹ąŖØą«ąŖŸą«‡ąŖµąŖæąŖ”ą«€ąŖÆą«‹" #: timezones.h:296 msgid "America/Montreal" msgstr "અમેરિકા/ąŖ®ą«‹ąŖØą«ąŖŸą«‡ąŖ°ą«€ąŖÆąŖ²" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ સમય - ąŖ•ą«ąŖÆą«ąŖ¬ą«‡ąŖ• - ąŖ®ą«‹ąŖŸąŖ¾ąŖ­ąŖ¾ąŖ—ąŖØąŖ¾ąŖ‚ ąŖøą«ąŖ„ąŖ¾ąŖØą«‹" #: timezones.h:299 msgid "America/Montserrat" msgstr "અમેરિકા/ąŖ®ą«‹ąŖØą«ąŖŸą«‡ąŖøą«‡ąŖ°ąŖ¾ąŖŸ" #: timezones.h:300 msgid "America/Nassau" msgstr "અમેરિકા/નાસાઉ" #: timezones.h:301 msgid "America/New_York" msgstr "અમેરિકા/ąŖØą«ąŖÆą« ąŖÆą«‹ąŖ°ą«ąŖ•" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ સમય" #: timezones.h:304 msgid "America/Nipigon" msgstr "અમેરિકા/ąŖØąŖæąŖŖąŖæąŖ—ą«‹ąŖØ" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ સમય - ąŖ“ąŖ‚ąŖŸąŖ¾ąŖ°ą«€ąŖÆą«‹ અને ąŖ•ą«ąŖÆą«ąŖ¬ą«‡ąŖ• - ąŖøą«ąŖ„ąŖ¾ąŖØą«‹ કે ąŖœą«‡ DST 1967-1973 નું ąŖ§ą«ąŖÆąŖ¾ąŖØ રાખતા ąŖØąŖ„ą«€" #: timezones.h:307 msgid "America/Nome" msgstr "અમેરિકા/ąŖØą«‹ąŖ®" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "ąŖ…ąŖ²ąŖ¾ąŖøą«ąŖ•ąŖ¾ સમય - ąŖŖąŖ¶ą«ąŖšąŖæąŖ® ąŖ…ąŖ²ąŖ¾ąŖøą«ąŖ•ąŖ¾" #: timezones.h:310 msgid "America/Noronha" msgstr "અમેરિકા/ąŖØą«‹ąŖ°ą«‹ąŖØą«ąŖ¹ąŖ¾" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "ąŖąŖŸąŖ²ąŖ¾ąŖØą«ąŖŸąŖæąŖ• ąŖŸąŖ¾ąŖŖą«ąŖ“" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "અમેરિકા/ąŖ‰ąŖ¤ą«ąŖ¤ąŖ° ઔાકોતા/ąŖøą«‡ąŖØą«ąŖŸąŖ°" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "ąŖ®ąŖ§ą«ąŖÆ સમય - ąŖ‰ąŖ¤ą«ąŖ¤ąŖ°ą«€ąŖÆ ąŖ”ąŖ•ą«‹ąŖŸąŖ¾ - ąŖ“ąŖ²ą«€ąŖµą«ąŖ¹ąŖ° દેશ" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "અમેરિકા/ąŖ‰ąŖ¤ą«ąŖ¤ąŖ° ઔાકોતા/ąŖØą«ąŖÆą« સાલેમ" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "ąŖ®ąŖ§ą«ąŖÆ સમય - ąŖ‰ąŖ¤ą«ąŖ¤ąŖ°ą«€ąŖÆ ąŖ”ąŖ•ą«‹ąŖŸąŖ¾ - ąŖ®ą«‹ąŖ°ą«ąŖŸąŖØ દેશ (મંદાન ąŖµąŖæąŖøą«ąŖ¤ąŖ¾ąŖ°ąŖØą«‡ બાદ કરતા)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "અમેરિકા/ąŖ“ąŖœą«€ąŖØąŖ¾ąŖ—ąŖ¾" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "US ąŖ®ąŖ¾ąŖ‰ąŖØą«ąŖŸą«‡ąŖØ ટાઈમ - ąŖšąŖæąŖ¹ą«ąŖ†ąŖ¹ą«ąŖ† US ąŖ¬ą«‹ąŖ°ą«ąŖ”ąŖ° ąŖØąŖœą«€ąŖ•" #: timezones.h:322 msgid "America/Panama" msgstr "અમેરિકા/પનામા" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "અમેરિકા/ąŖŖą«‡ąŖØą«ąŖ—ąŖØą«€ąŖ°ą«ąŖŸą«ąŖ‚ąŖ—" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ સમય - ąŖŖąŖ¾ąŖ‚ąŖ—ą«ąŖØą«€ąŖ°ą«ąŖ¤ą«ąŖ—, નુનાવુટ" #: timezones.h:326 msgid "America/Paramaribo" msgstr "અમેરિકા/પેરામારીબો" #: timezones.h:327 msgid "America/Phoenix" msgstr "અમેરિકા/ąŖ«ą«‹ąŖØąŖæąŖ•ą«ąŖø" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "ąŖŖąŖ°ą«ąŖµąŖ¤ą«€ąŖÆ મૂળભૂત સમય - ąŖąŖ°ąŖæąŖą«‹ąŖØąŖ¾" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "અમેરિકા/ąŖŖą«‹ąŖ°ą«ąŖŸ ąŖ“ ąŖŖą«ąŖ°ąŖæąŖØą«ąŖø" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "અમેરિકા/ąŖŖą«‹ąŖ°ą«ąŖŸą«‹ ąŖąŖ•ąŖ°" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "અમેરિકા/ąŖŖą«‹ąŖ°ą«ąŖŸ ąŖ“ąŖ« ąŖøą«ąŖŖą«‡ąŖØ" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "અમેરિકા/ąŖŖą«‹ąŖ°ą«ąŖŸą«‹ ąŖµą«‡ąŖ²ą«ąŖ¹ą«‹" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "રોંઔોનીયા" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "અમેરિકા/ąŖŖą«ąŖÆą«ąŖ…ąŖ°ą«ąŖŸą«‹ ąŖ°ąŖæąŖ•ą«‹" #: timezones.h:337 msgid "America/Rainy_River" msgstr "અમેરિકા/ąŖ°ą«‡ąŖˆąŖØą«€ નદી" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "ąŖ®ąŖ§ą«ąŖÆ સમય - ąŖ°ą«ˆąŖØą«€ ąŖ°ąŖæąŖµą«ąŖ¹ąŖ° અને ąŖ«ą«‹ąŖ°ą«ąŖŸ ąŖ«ą«ąŖ°ąŖ¾ąŖ‚ąŖøą«‡ąŖø, ąŖ“ąŖ‚ąŖŸąŖ¾ąŖ°ą«€ąŖÆą«‹" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "અમેરિકા/ąŖ°ą«‡ąŖØą«ąŖ•ą«€ąŖØ ąŖˆąŖØąŖ²ą«‡ąŖŸ" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "ąŖ®ąŖ§ą«ąŖÆ સમય - ąŖ®ąŖ§ą«ąŖÆ નુનાવુટ" #: timezones.h:343 msgid "America/Recife" msgstr "અમેરિકા/રીસીફ" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "ąŖŖą«‡ąŖ°ą«ąŖØąŖ¾ąŖ®ą«ąŖ¬ą«ąŖ•ą«‹" #: timezones.h:346 msgid "America/Regina" msgstr "અમેરિકા/રેગિના" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "ąŖ®ąŖ§ą«ąŖÆ મૂળભૂત સમય - ąŖøąŖ¾ąŖøą«ąŖ•ąŖ¾ąŖ¤ą«ąŖšą«‡ąŖµąŖ¾ąŖØ - ąŖ®ą«‹ąŖŸąŖ¾ąŖ­ąŖ¾ąŖ—ąŖØąŖ¾ąŖ‚ ąŖøą«ąŖ„ąŖ¾ąŖØą«‹" #: timezones.h:349 msgid "America/Resolute" msgstr "અમેરિકા/ąŖ°ą«€ąŖøą«‹ąŖ²ą«ąŖÆą«ąŖŸ" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ મૂળભૂત સમય - ąŖ°ą«‡ąŖøą«‹ąŖ²ą«ąŖÆą«‚ąŖŸ, નુનાવુટ" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "અમેરિકા/ąŖ°ąŖæąŖÆą«‹ ąŖ¬ą«ąŖ°ąŖ¾ąŖØą«ąŖ•ą«‹" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "ąŖąŖ•ąŖ°" #: timezones.h:355 msgid "America/Rosario" msgstr "અમેરિકા/ąŖ°ą«‹ąŖąŖ¾ąŖ°ąŖæąŖÆą«‹" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "અમેરિકા/ąŖøąŖ¾ąŖØą«ąŖ¤ąŖ¾ ąŖˆąŖøąŖ¾ąŖ¬ą«‡ąŖ² (_I)" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "ąŖ®ą«‡ąŖ•ą«ąŖøąŖæąŖ•ąŖØ પેસિફિક સમય - બાજા ąŖ•ą«‡ąŖ²ąŖæąŖ«ą«‹ąŖ°ą«ąŖØąŖæąŖÆąŖ¾ US ąŖ¬ą«‹ąŖ°ą«ąŖ”ąŖ°ąŖ„ą«€ દૂર" #: timezones.h:359 msgid "America/Santarem" msgstr "અમેરિકા/ąŖøąŖ¾ąŖØą«ąŖ¤ąŖ¾ąŖ°ą«‡ąŖ®" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "W ąŖŖą«…ąŖ°ąŖ¾" #: timezones.h:362 msgid "America/Santiago" msgstr "અમેરિકા/ąŖøąŖ¾ąŖØą«ąŖŸą«€ąŖ†ąŖ—ą«‹" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "અમેરિકા/ąŖøąŖ¾ąŖØą«ąŖŸą«‹ ąŖ”ą«‹ąŖ®ąŖæąŖØą«ąŖ—ą«‹" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "અમેરિકા/સાઉ ąŖŖą«ŒąŖ²ą«‹" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "અમેરિકા/ąŖøą«ąŖ•ą«‹ąŖ°ą«ąŖø ąŖ¬ąŖ¾ąŖÆąŖøąŖØą«ąŖ”" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "ąŖøą«ąŖ•ą«‹ąŖ°ą«ąŖøąŖ¬ą«€ąŖøą«ąŖ‚ąŖ” / ąŖ‡ąŖŸą«ąŖŸą«‹ąŖ•ą«ąŖ•ą«‹ąŖ°ą«ąŖ¤ą«‚ąŖ°ą«ąŖ®ą«€ąŖ¤" #: timezones.h:372 msgid "America/Shiprock" msgstr "અમેરિકા/શીપરોક" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "ąŖŖąŖ°ą«ąŖµąŖ¤ą«€ąŖÆ સમય - ąŖØąŖ¾ąŖµąŖ¾ąŖœą«‹" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "અમેરિકા/ąŖøąŖ‚ąŖ¤_ąŖ¬ąŖ¾ąŖ°ą«ąŖ„ą«‡ąŖ²ą«‡ąŖ®ą«€" #: timezones.h:376 msgid "America/St_Johns" msgstr "અમેરિકા/ąŖøąŖ‚ąŖ¤ ąŖœą«ąŖ¹ą«‹ąŖØą«ąŖø" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "નવીનફાઉંઔવૅંઔ સમય, SE ąŖ²ą«…ąŖ¬ą«ąŖ°ąŖ”ą«‹ąŖ°ąŖØą«‡ સમાવી ąŖ°ąŖ¹ą«ąŖÆąŖ¾ છે" #: timezones.h:379 msgid "America/St_Kitts" msgstr "અમેરિકા/ąŖøąŖ‚ąŖ¤ ąŖ•ąŖæąŖŸą«ąŖø" #: timezones.h:380 msgid "America/St_Lucia" msgstr "અમેરિકા/ąŖøąŖ‚ąŖ¤ ąŖ²ą«ąŖÆą«ąŖøą«€ąŖ†" #: timezones.h:381 msgid "America/St_Thomas" msgstr "અમેરિકા/ąŖøąŖ‚ąŖ¤ ઄ોમસ" #: timezones.h:382 msgid "America/St_Vincent" msgstr "અમેરિકા/ąŖøąŖ‚ąŖ¤ ąŖµąŖæąŖØą«ąŖøą«‡ąŖØą«ąŖŸ" #: timezones.h:383 msgid "America/Swift_Current" msgstr "અમેરિકા/ąŖøą«ąŖµą«€ąŖ«ą«ąŖŸ ąŖ•ąŖ°ąŖ‚ąŖŸ" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "ąŖ®ąŖ§ą«ąŖÆ મૂળભૂત સમય - ąŖøąŖ¾ąŖøą«ąŖ•ąŖ¾ąŖ¤ą«ąŖšą«‡ąŖµąŖ¾ąŖØ - ąŖ®ą«€ąŖ”ąŖµą«‡ąŖøą«ąŖŸ" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "અમેરિકા/ąŖŸą«‡ąŖ—ą«ąŖÆą«ąŖøąŖæąŖ—ąŖ¾ąŖ²ą«ąŖŖąŖ¾" #: timezones.h:387 msgid "America/Thule" msgstr "અમેરિકા/઄ુલે" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "઄ુલે / ąŖŖą«€ąŖŸą«ąŖ«ą«ąŖ«ą«€ąŖ•" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "અમેરિકા/ąŖ„ąŖØą«ąŖ”ąŖ° બે" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ સમય - ąŖ„ąŖØą«ąŖ”ąŖ° બે, ąŖ“ąŖ‚ąŖŸąŖ¾ąŖ°ą«€ąŖÆą«‹" #: timezones.h:393 msgid "America/Tijuana" msgstr "અમેરિકા/ąŖŸąŖ¾ąŖˆąŖœą«ąŖ†ąŖØąŖ¾" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "US પેસિફિક સમય - બાજા ąŖ•ą«‡ąŖ²ąŖæąŖ«ą«‹ąŖ°ą«ąŖØąŖæąŖÆąŖ¾ US ąŖ¬ą«‹ąŖ°ą«ąŖ”ąŖ° ąŖØąŖœą«€ąŖ•" #: timezones.h:396 msgid "America/Toronto" msgstr "અમેરિકા/ąŖŸą«‹ąŖ°ąŖ‚ąŖŸą«‹" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ સમય - ąŖ“ąŖ‚ąŖŸąŖ¾ąŖ°ą«€ąŖÆą«‹ - ąŖ®ą«‹ąŖŸąŖ¾ąŖ­ąŖ¾ąŖ—ąŖØąŖ¾ąŖ‚ ąŖøą«ąŖ„ąŖ¾ąŖØą«‹" #: timezones.h:399 msgid "America/Tortola" msgstr "અમેરિકા/ąŖŸą«‹ąŖ°ą«ąŖŸą«‹ąŖ²ąŖ¾" #: timezones.h:400 msgid "America/Vancouver" msgstr "અમેરિકા/ąŖµąŖ¾ąŖØą«ąŖ•ą«‹ąŖµą«‡ąŖ°" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "પેસિફીક સમય - ąŖŖąŖ¶ą«ąŖšąŖæąŖ® ąŖ¬ą«ąŖ°ąŖæąŖŸą«€ąŖ¶ ąŖ•ą«‰ąŖ²ąŖ®ą«ąŖ¬ą«€ąŖÆąŖ¾" #: timezones.h:403 msgid "America/Virgin" msgstr "અમેરિકા/ąŖµąŖ°ą«ąŖœą«€ąŖØ" #: timezones.h:404 msgid "America/Whitehorse" msgstr "અમેરિકા/સફેદ ąŖ˜ą«‹ąŖ”ą«‹" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "પેસિફીક સમય - ąŖ¦ąŖ•ą«ąŖ·ąŖæąŖ£ યુકોન" #: timezones.h:407 msgid "America/Winnipeg" msgstr "અમેરિકા/વિનીપેગ" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "ąŖ®ąŖ§ą«ąŖÆ સમય - ąŖ®ąŖØą«€ąŖŸą«‹ąŖ¬ą«‹ અને ąŖŖąŖ¶ą«ąŖšąŖæąŖ® ąŖ“ąŖØą«ąŖŸąŖ¾ąŖ°ą«€ąŖÆą«‹" #: timezones.h:410 msgid "America/Yakutat" msgstr "અમેરિકા/યાકુતાત" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "ąŖ…ąŖ²ąŖ¾ąŖøą«ąŖ•ąŖ¾ સમય - ąŖ…ąŖ²ąŖ¾ąŖøą«ąŖ•ąŖ¾ ąŖŖą«…ąŖØąŖ¹ą«…ąŖØą«ąŖ”ąŖ² નેક" #: timezones.h:413 msgid "America/Yellowknife" msgstr "અમેરિકા/ąŖÆą«‡ąŖ²ą«‹ąŖ•ą«ąŖØąŖ¾ąŖˆąŖ«" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "ąŖŖąŖ°ą«ąŖµąŖ¤ą«€ąŖÆ સમય - ąŖ®ąŖ§ą«ąŖÆ ąŖ‰ąŖ¤ą«ąŖ¤ąŖ°ąŖŖąŖ¶ą«ąŖšąŖæąŖ® ąŖŖą«ąŖ°ąŖ¾ąŖ‚ąŖ¤" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "ąŖąŖØą«ąŖŸąŖ¾ąŖ°ą«ąŖ•ąŖŸą«€ąŖ•ąŖ¾/કેસે" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "કેસી ąŖøą«ąŖŸą«‡ąŖ¶ąŖØ, ąŖ¬ą«ˆąŖ²ą«‡ પેનીંસુલા" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "ąŖąŖØą«ąŖŸąŖ¾ąŖ°ą«ąŖ•ąŖŸą«€ąŖ•ąŖ¾/ઔેવિસ" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "ઔેવીસ ąŖøą«ąŖŸą«‡ąŖ¶ąŖØ, ąŖµą«‡ąŖøą«ąŖŸąŖ«ą«‹ąŖ²ą«ąŖ” ąŖ¹ąŖæąŖ²ą«ąŖø" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "ąŖąŖØą«ąŖŸąŖ¾ąŖ°ą«ąŖ•ąŖŸą«€ąŖ•ąŖ¾/ąŖ”ą«ąŖ®ąŖ¾ąŖ‰ąŖØą«ąŖŸąŖ”ą«ąŖ°ą«ąŖµąŖæąŖ²ą«ąŖ²ą«‡" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "ąŖ”ą«ąŖÆą«ąŖ®ą«‹ąŖ‚ąŖŸ-ąŖ”ąŖ‰ąŖ°ą«ąŖµą«€ąŖ²ą«ąŖ²ą«‡ ąŖøą«ąŖŸą«‡ąŖ¶ąŖØ, ąŖŸą«‡ąŖ°ą«ąŖ°ą«‡ ąŖ…ąŖ”ą«€ąŖ²ą«ąŖ²ą«‡" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "ąŖąŖØą«ąŖŸąŖ¾ąŖ°ą«ąŖ•ąŖŸą«€ąŖ•ąŖ¾/ąŖ®ą«‡ąŖ•ą«ąŖ•ąŖ°ą«€" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "ąŖ®ą«‡ąŖ•ą«ąŖ•ąŖ°ą«€ ટાપુ ąŖøą«ąŖŸą«‡ąŖ¶ąŖØ, ąŖ®ą«‡ąŖ•ą«ąŖ•ąŖ°ą«€ ટાપુ" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "ąŖąŖØą«ąŖŸąŖ¾ąŖ°ą«ąŖ•ąŖŸą«€ąŖ•ąŖ¾/મોસોન" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "ąŖ®ąŖµą«ąŖ¹ą«‹ąŖøąŖØ ąŖøą«ąŖŸą«‡ąŖ¶ąŖØ, ąŖ¹ą«‹ąŖ²ą«ąŖ® બે" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "ąŖąŖØą«ąŖŸąŖ¾ąŖ°ą«ąŖ•ąŖŸą«€ąŖ•ąŖ¾/ąŖ®ą«‡ąŖ•ąŖ®ąŖ°ą«ąŖ”ą«‹" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "ąŖ®ą«…ąŖ•ąŖ®ą«ąŖ°ą«ąŖ”ą«‹ ąŖøą«ąŖŸą«‡ąŖ¶ąŖØ, રૉસ ટાપુ" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "ąŖąŖØą«ąŖŸąŖ¾ąŖ°ą«ąŖ•ąŖŸą«€ąŖ•ąŖ¾/ąŖŖąŖ¾ąŖ²ą«ąŖ®ąŖ°" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "ąŖŖąŖ¾ąŖ²ą«ąŖ®ąŖ° ąŖøą«ąŖŸą«‡ąŖ¶ąŖØ, ąŖ…ąŖ‚ąŖµą«‡ąŖ°ą«ąŖø ટાપુ" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "ąŖąŖØą«ąŖŸąŖ¾ąŖ°ą«ąŖ•ąŖŸą«€ąŖ•ąŖ¾/રો઄ેરા" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "રો઄ેરા ąŖøą«ąŖŸą«‡ąŖ¶ąŖØ, ąŖ…ąŖ”ą«‡ąŖ²ą«ˆąŖ” ટાપુ" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "ąŖąŖØą«ąŖŸąŖ¾ąŖ°ą«ąŖ•ąŖŸą«€ąŖ•ąŖ¾/ąŖ¦ąŖ•ą«ąŖ·ąŖæąŖ£ ąŖ§ą«ąŖ°ą«ąŖµ" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "ąŖ…ąŖ®ą«ąŖ‚ąŖ”ą«ąŖøą«‡ąŖØ-ąŖøą«ąŖ•ą«‰ąŖŸ ąŖøą«ąŖŸą«‡ąŖ¶ąŖØ, ąŖ¦ąŖ•ą«ąŖ·ąŖæąŖ£ ąŖŖą«‹ąŖ²" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "ąŖąŖØą«ąŖŸąŖ¾ąŖ°ą«ąŖ•ąŖŸą«€ąŖ•ąŖ¾/ąŖøą«ąŖÆą«‹ąŖµąŖ¾" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "ąŖøą«ąŖÆą«‹ąŖµąŖ¾ ąŖøą«ąŖŸą«‡ąŖ¶ąŖØ, ąŖ ઓંગુલ ąŖ‡" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "ąŖąŖØą«ąŖŸąŖ¾ąŖ°ą«ąŖ•ąŖŸą«€ąŖ•ąŖ¾/ąŖµą«‹ąŖøą«ąŖŸą«‹ąŖ•" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "ąŖµą«‹ąŖøą«ąŖŸą«‹ąŖ• ąŖøą«ąŖŸą«‡ąŖ¶ąŖØ, ąŖ¦ąŖ•ą«ąŖ·ąŖæąŖ£ ąŖ®ą«…ąŖ—ąŖØą«‡ąŖŸąŖæąŖ• ąŖŖą«‹ąŖ²" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "ąŖ†ąŖ°ą«ąŖ•ąŖŸą«€ąŖ•/ąŖ²ą«‹ąŖ‚ąŖ—ąŖÆąŖ°ąŖ¬ąŖ¾ąŖˆąŖØ" #: timezones.h:450 msgid "Asia/Aden" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖąŖ”ą«‡ąŖØ" #: timezones.h:451 msgid "Asia/Almaty" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖąŖ²ą«ąŖ®ąŖ¾ąŖŸą«€" #: timezones.h:454 msgid "Asia/Amman" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖąŖ®ąŖ¾ąŖØ" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖąŖØąŖ¾ąŖ”ą«€ąŖ°" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "ąŖ®ą«‹ąŖøą«ąŖ•ą«‹+૦૮ - બેરીંગ ąŖøąŖ®ą«ąŖ¦ą«ąŖ°" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖąŖ•ą«ąŖŸąŖ¾ąŖ‰" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "ąŖ…ąŖ¤ą«ąŖÆąŖ°ą«Œ (ąŖ…ąŖ¤ą«€ąŖ°ą«Œ, ąŖ—ą«ąŖ°ą«ąŖÆą«‡ąŖµ), ąŖ®ąŖ‚ąŖ˜ą«ąŖ˜ą«€ąŖøą«ąŖ¤ą«Œ (ąŖ®ąŖØąŖ•ą«€ąŖøą«ąŖ¤ą«Œ)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖąŖ•ą«ąŖŸą«‹ąŖ¬ą«‡" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "ąŖ…ąŖ•ą«ąŖ¤ą«‹ąŖ¬ą«‡ (ąŖ…ąŖ•ą«ąŖ¤ą«‹ąŖ¬ą«‡)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖąŖ¶ąŖ—ąŖ¾ąŖ¬ąŖ¾ąŖŸ" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖąŖ¶ąŖ–ąŖ¾ąŖ¬ąŖ¾ąŖ¦" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/બગદાદ" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/બહૈરિન" #: timezones.h:468 msgid "Asia/Baku" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/બાકુ" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/બેંગકોક" #: timezones.h:470 msgid "Asia/Beirut" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/બૈરટ" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/બિશકેક" #: timezones.h:472 msgid "Asia/Brunei" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ¬ą«ąŖ°ą«ąŖØą«‡ąŖˆ" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ•ąŖ²ąŖ•ąŖ¤ą«ąŖ¤ąŖ¾" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖšą«‹ąŖˆąŖøąŖ¬ąŖ¾ąŖ²ą«ąŖøąŖ¾ąŖØ" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "ąŖ”ą«‹ąŖ°ą«ąŖØą«‹ąŖ”, સુખબાતર" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖšą«‹ąŖ‚ąŖ—ąŖ•ą«€ąŖ‚ąŖ—" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "ąŖ®ąŖ§ą«ąŖÆ ąŖšąŖ¾ąŖ‡ąŖØąŖ¾ - ąŖøąŖ¾ąŖšą«ąŖ†ąŖØ, યુનાન, ąŖ—ą«ąŖ†ąŖ‚ąŖ—ą«ąŖ•ą«ąŖ·ą«€, ąŖ¶ąŖ¾ąŖØą«ąŖ•ą«ąŖ·ą«€, ąŖ—ą«ąŖ‡ąŖœą«Œ, ąŖ‡ąŖ¤ą«ąŖÆąŖ¾." #: timezones.h:480 msgid "Asia/Chungking" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖšąŖ‚ąŖ—ąŖ•ą«€ąŖ‚ąŖ—" #: timezones.h:481 msgid "Asia/Colombo" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ•ą«‹ąŖ²ą«‹ąŖ®ą«ąŖ¬ą«‹" #: timezones.h:482 msgid "Asia/Dacca" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ઔાકા" #: timezones.h:483 msgid "Asia/Damascus" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ”ą«‹ąŖ®ąŖ¾ąŖøą«ąŖ•ąŖø" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ઢાકા" #: timezones.h:485 msgid "Asia/Dili" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ઔીલી" #: timezones.h:486 msgid "Asia/Dubai" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/દુબઈ" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ¦ą«ąŖ¶ąŖ¾ąŖØą«ąŖ¬ą«‡" #: timezones.h:488 msgid "Asia/Gaza" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ—ąŖ¾ąŖąŖ¾" #: timezones.h:489 msgid "Asia/Harbin" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ¹ąŖ¾ąŖ°ą«ąŖ¬ąŖæąŖØ" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "ąŖ¹ą«ˆąŖ²ą«‹ąŖ‚ąŖœą«€ąŖ†ąŖ‚ąŖ— (મોહે ને બાદ કરતા), ąŖœą«€ąŖ²ą«€ąŖØ" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/હો_ąŖšą«€_મીન" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/હોંગ ąŖ•ą«‹ąŖ‚ąŖ—" #: timezones.h:494 msgid "Asia/Hovd" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ¹ą«‹ąŖµą«ąŖ”" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "બયાન-ąŖ“ąŖ²ą«ąŖ—ą«€, ગોવી-ąŖ…ąŖ²ą«ąŖ¤ą«ˆ, ąŖ¹ą«‹ąŖµą«ąŖ”, ąŖ‰ąŖµą«ąŖø, ąŖœąŖµą«ąŖ–ąŖ¾ąŖØ" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖˆąŖ°ą«ąŖ•ą«ąŖ¤ą«ąŖøąŖ•" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "ąŖ®ą«‰ąŖøą«ąŖ•ą«‹+૦૫ - લૅક ąŖ¬ą«ˆąŖ•ąŖ²" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖˆąŖøą«ąŖ¤ąŖ‚ąŖ¬ą«ąŖ²" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖœąŖ•ąŖ¾ąŖ°ą«ąŖ¤ąŖ¾" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "જાવા અને ąŖøą«ąŖ®ąŖ¾ąŖ¤ą«ąŖ°ąŖ¾" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/જયાપુરા" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "ઇરિયન જયા અને ąŖ§ ąŖ®ą«‹ąŖ²ą«ąŖ•ą«ąŖ•ąŖ¾ąŖø" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖœą«‡ąŖ°ą«ąŖøąŖ²ą«‡ąŖ®" #: timezones.h:508 msgid "Asia/Kabul" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/કાબુલ" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ•ąŖ¾ąŖ®ąŖšąŖ¾ąŖ¤ą«ąŖ•ąŖ¾" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "ąŖ®ą«‹ąŖøą«ąŖ•ą«‹+૦૮ - Kamchatka" #: timezones.h:512 msgid "Asia/Karachi" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ•ąŖ°ąŖ¾ąŖ‚ąŖšą«€" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/કાશગર" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "ąŖŖąŖ¶ą«ąŖšąŖæąŖ® ąŖ¤ą«€ąŖ¬ą«‡ąŖŸ અને ąŖ•ą«ąŖøą«€ąŖ‚ąŖœą«€ąŖ†ąŖ‚ąŖ—ąŖšą«‡" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/કાઠમંઔુ" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/કાઠમંઔુ" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ•ąŖ²ąŖ•ąŖ¤ą«ąŖ¤ąŖ¾" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ•ą«ąŖ°ąŖ¾ąŖøąŖØą«‹ąŖÆąŖ¾ąŖ°ą«ąŖøą«ąŖ•" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "ąŖ®ą«‰ąŖøą«ąŖ•ą«‹+૦૪ - ąŖÆą«‡ąŖØą«€ąŖøą«ˆ નદી" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/કુઆલા ąŖ²ąŖ®ą«ąŖŖąŖ°" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "ąŖŖą«‡ąŖØą«€ąŖ‚ąŖøą«ąŖÆą«ąŖ²ąŖ¾ąŖ° મલેશીયા" #: timezones.h:525 msgid "Asia/Kuching" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ•ą«ąŖšą«€ąŖ‚ąŖ—" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "સાબાહ અને સારાવાક" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ•ą«ąŖµą«ˆąŖ¤" #: timezones.h:529 msgid "Asia/Macao" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/મકાઓ" #: timezones.h:530 msgid "Asia/Macau" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/માકાઉ" #: timezones.h:531 msgid "Asia/Magadan" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/મગાદાન" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "ąŖ®ą«‰ąŖøą«ąŖ•ą«‹+૦૮ - મગદાન" #: timezones.h:534 msgid "Asia/Makassar" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/માકાસાર" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "ąŖŖą«‚ąŖ°ą«ąŖµ અને ąŖ¦ąŖ•ą«ąŖ·ąŖæąŖ£ ąŖ¬ą«‹ąŖ°ą«ąŖØą«€ąŖ“, ąŖøą«‡ąŖ²ą«‡ąŖ¬ą«‡ąŖœ, બાલી, નુસા ąŖŸą«‡ąŖ‚ąŖ—ąŖ¾ąŖ°ą«ąŖ°ąŖ¾, ąŖŖąŖ¶ą«ąŖšąŖæąŖ® તીમોર" #: timezones.h:537 msgid "Asia/Manila" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/માનિલા" #: timezones.h:538 msgid "Asia/Muscat" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ®ąŖøą«ąŖ•ąŖ¤" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖØąŖ¾ąŖˆąŖ•ą«‹ąŖøąŖæąŖÆąŖ¾" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖØą«‹ąŖµą«‹ąŖ•ą«ąŖąŖØą«‡ąŖ¤ą«ąŖøą«ąŖ•" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "ąŖ®ą«‹ąŖøą«ąŖ•ą«‹+૦૩ - ąŖØą«‹ąŖµą«‹ąŖ•ą«ąŖąŖØą«‡ąŖ¤ą«ąŖøą«ąŖ•" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖØą«‹ąŖµą«‹ąŖøą«€ąŖ¬ąŖæąŖ°ą«ąŖøą«ąŖ•" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "ąŖ®ą«‹ąŖøą«ąŖ•ą«‹+03 - ąŖØą«‹ąŖµą«‹ąŖøą«€ąŖ¬ąŖæąŖ°ą«ąŖøą«ąŖ•" #: timezones.h:546 msgid "Asia/Omsk" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ“ąŖ®ąŖ¾ąŖøą«ąŖ•" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "ąŖ®ą«‰ąŖøą«ąŖ•ą«‹+૦૩ - ąŖŖąŖ¶ą«ąŖšąŖæąŖ® સાયબેરીયા" #: timezones.h:549 msgid "Asia/Oral" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ઓરાલ" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "ąŖŖąŖ¶ą«ąŖšąŖæąŖ® ąŖ•ąŖąŖ¾ąŖ–ąŖøą«ąŖ¤ąŖ¾ąŖØ" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ«ą«ąŖØą«‹ąŖ® ąŖŖą«‡ąŖØą«ąŖ¹" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖŖą«‹ąŖØą«ąŖŸą«€ąŖ†ąŖØąŖ¾ąŖ•" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "ąŖŖąŖ¶ą«ąŖšąŖæąŖ® અને ąŖ®ąŖ§ą«ąŖÆ ąŖ¬ą«‹ąŖ°ą«ąŖØą«€ąŖ“" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/પાયોંગયાંગ" #: timezones.h:557 msgid "Asia/Qatar" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/કતાર" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ•ą«€ąŖą«€ąŖ²ą«‹ąŖ°ą«ąŖ”ąŖ¾" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "ąŖ•ą«ąŖœą«€ąŖ²ą«‹ąŖ°ą«ąŖ”ąŖ¾ (ąŖ•ąŖ¾ąŖÆąŖœą«€ąŖ²ą«‹ąŖ°ą«ąŖ”ąŖ¾, ąŖ•ą«ąŖœą«€ąŖ²-ąŖ“ąŖ°ą«ąŖ”ąŖ¾)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/રંગુન" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/રિયાધ" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/રીયાધ૮૭" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/રીયાધ૮૮" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/રીયાધ૮૯" #: timezones.h:566 msgid "Asia/Saigon" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖøąŖ¾ąŖˆąŖ—ą«‹ąŖØ" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/સાખાલિન" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "ąŖ®ą«‰ąŖøą«ąŖ•ą«‹+૦૭ - ąŖøąŖ•ą«ąŖ¹ąŖ¾ąŖ²ą«€ąŖØ ટાપુ" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖøąŖ¾ąŖ®ąŖ¾ąŖ°ą«ąŖ•ąŖ‚ąŖ”" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "ąŖŖąŖ¶ą«ąŖšąŖæąŖ® ąŖ‰ąŖœą«ąŖ¬ą«‡ąŖ•ąŖæąŖøą«ąŖ¤ąŖ¾ąŖØ" #: timezones.h:573 msgid "Asia/Seoul" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/સેયુલ" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ¶ąŖ¾ąŖ‚ąŖ—ąŖ¹ąŖ¾ąŖˆ" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ ąŖšąŖ¾ąŖ‡ąŖØąŖ¾ - ąŖ¬ą«ˆąŖœą«€ąŖ‚ąŖ—, ગુઆંગઔોંગ, ąŖ¶ąŖ¾ąŖ‚ąŖ˜ąŖ¾ąŖ‡, વગેરે." #: timezones.h:577 msgid "Asia/Singapore" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/સિંગાપુર" #: timezones.h:578 msgid "Asia/Taipei" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ¤ąŖ¾ąŖˆąŖŖą«‡ąŖˆ" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ¤ąŖ¾ąŖ¶ąŖ•ą«‡ąŖ‚ąŖŸ" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "ąŖŖą«‚ąŖ°ą«ąŖµ ąŖ‰ąŖąŖ¬ą«‡ąŖ•ąŖæąŖøą«ąŖ¤ąŖ¾ąŖØ" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ¤ą«ąŖ¬ąŖæąŖ²ą«€ąŖøą«€" #: timezones.h:583 msgid "Asia/Tehran" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/તેહરાન" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ¤ą«‡ąŖ²ąŖąŖµą«€ąŖµ" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/઄ીંબુ" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ„ą«€ąŖ®ą«ąŖŖą«" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖŸą«‹ąŖ•ą«ąŖÆą«‹" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ‰ąŖœą«ąŖ‚ąŖ— ąŖŖąŖ¾ąŖØą«ąŖ”ąŖ¾ąŖ‚ąŖ—" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ‰ąŖ²ąŖ¾ąŖØąŖ¬ąŖ¾ąŖŸąŖ¾ąŖ°" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ઉલાન બાટર" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖ‰ąŖ°ą«ąŖ®ą«ąŖ•ą«€" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "ąŖ¤ą«€ąŖ¬ą«‡ąŖŸ અને ąŖ•ą«ąŖøą«€ąŖ‚ąŖœą«€ąŖ†ąŖ‚ąŖ— ąŖØą«‹ ભાગ" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖµąŖæąŖÆą«‡ąŖØą«ąŖŸąŖ¾ąŖˆąŖØ" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖµąŖæąŖ²ąŖ¾ąŖ”ą«€ąŖµą«‹ąŖøą«ąŖŸą«‹ąŖ•" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "ąŖ®ą«‰ąŖøą«ąŖ•ą«‹+૦૭ - અમુર નદી" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖÆąŖ¾ąŖ•ą«ąŖ¤ą«ąŖøąŖ•" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "ąŖ®ą«‰ąŖøą«ąŖ•ą«‹+૦૬ - લૅના નદી" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/ąŖÆą«‹ąŖ•ąŖ¾ąŖŸą«‡ąŖ°ą«€ąŖ‚ąŖ—ąŖ¬ąŖ°ą«ąŖ—" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "ąŖ®ą«‰ąŖøą«ąŖ•ą«‹+૦૨ - ąŖÆą«‚ąŖ°ąŖ²ą«ąŖø" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "ąŖąŖ¶ąŖæąŖÆąŖ¾/યેરેવાન" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "ąŖąŖŸąŖ²ąŖ¾ąŖØą«ąŖŸąŖæąŖ•/ąŖąŖą«‹ąŖ°ą«ąŖø" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "ąŖ…ąŖą«‹ąŖ°ą«‡ąŖø" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "ąŖąŖŸąŖ²ąŖ¾ąŖØą«ąŖŸąŖæąŖ•/ąŖ¬ąŖ°ą«ąŖ®ą«ąŖÆą«ąŖ”ąŖ¾" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "ąŖąŖŸąŖ²ąŖ¾ąŖØą«ąŖŸąŖæąŖ•/કેનેરી" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "ąŖ•ąŖØą«…ąŖ°ą«€ ટાપુ" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "ąŖąŖŸąŖ²ąŖ¾ąŖØą«ąŖŸąŖæąŖ•/કેપ ąŖµą«‡ąŖ°ą«ąŖ”ą«‡" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "ąŖąŖŸąŖ²ąŖ¾ąŖØą«ąŖŸąŖæąŖ•/ફેરો" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "ąŖąŖŸąŖ²ąŖ¾ąŖØą«ąŖŸąŖæąŖ•/ફેરો" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "ąŖąŖŸąŖ²ąŖ¾ąŖØą«ąŖŸąŖæąŖ•/જાન મેયેન" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "ąŖąŖŸąŖ²ąŖ¾ąŖØą«ąŖŸąŖæąŖ•/ąŖ®ą«‡ąŖ”ą«ˆąŖ°ąŖ¾" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "મઔૈરા ટાપુ" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "ąŖąŖŸąŖ²ąŖ¾ąŖØą«ąŖŸąŖæąŖ•/ąŖ°ą«€ąŖÆąŖ•ą«ąŖœąŖ¾ąŖµąŖæąŖ•" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "ąŖąŖŸąŖ²ąŖ¾ąŖØą«ąŖŸąŖæąŖ•/ąŖ¦ąŖ•ą«ąŖ·ąŖæąŖ£ ąŖœą«ąŖÆą«‹ąŖ°ą«ąŖœąŖæąŖÆąŖ¾" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "ąŖąŖŸąŖ²ąŖ¾ąŖØą«ąŖŸąŖæąŖ•/ąŖøą«ąŖŸą«‡ąŖØą«ąŖ²ą«€" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "ąŖąŖŸąŖ²ąŖ¾ąŖØą«ąŖŸąŖæąŖ•/ąŖøąŖ‚ąŖ¤ હેલેના" #: timezones.h:625 msgid "Australia/ACT" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/અઔિલેઔ" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "ąŖ¦ąŖ•ą«ąŖ·ąŖæąŖ£ ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/ąŖ¬ą«ąŖ°ąŖæąŖąŖ¬ą«‡ąŖØ" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "ąŖ•ą«ąŖµą«€ąŖ‚ąŖøąŖ²ą«…ąŖØą«ąŖ” - ąŖ®ą«‹ąŖŸąŖ¾ąŖ­ąŖ¾ąŖ—ąŖØąŖ¾ąŖ‚ ąŖøą«ąŖ„ąŖ¾ąŖØą«‹" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/ąŖ¬ą«ąŖ°ą«‹ąŖ•ąŖØ હિલ" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "નવીન ąŖ¦ąŖ•ą«ąŖ·ąŖæąŖ£ ąŖµą«‡ąŖ²ą«ąŖø - ąŖÆąŖ¾ąŖ‚ąŖ•ą«‹ąŖµąŖæąŖØą«ąŖØąŖ¾" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/ąŖ•ą«‡ąŖØą«ąŖ¬ą«‡ąŖ°ąŖ¾" #: timezones.h:636 msgid "Australia/Currie" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/ąŖ•ąŖ°ą«€" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "ąŖ¤ąŖøą«ąŖ®ąŖ¾ąŖØą«€ąŖÆąŖ¾ - ąŖ•ąŖæąŖ‚ąŖ— ટાપુ" #: timezones.h:639 msgid "Australia/Darwin" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/ąŖ”ąŖ¾ąŖ°ą«ąŖµąŖæąŖØ" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "ąŖ‰ąŖ¤ą«ąŖ¤ąŖ°ą«€ąŖÆ ąŖŖą«ąŖ°ąŖ¾ąŖ‚ąŖ¤" #: timezones.h:642 msgid "Australia/Eucla" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/ąŖÆą«ąŖ•ą«ąŖ²ąŖ¾" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "ąŖŖąŖ¶ą«ąŖšąŖæąŖ®ą«€ ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾ - ąŖÆą«ąŖ•ą«ąŖ²ąŖ¾ ąŖµąŖæąŖøą«ąŖ¤ąŖ¾ąŖ°" #: timezones.h:645 msgid "Australia/Hobart" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/ąŖ¹ą«‹ąŖ¬ąŖ¾ąŖ°ą«ąŖŸ" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "ąŖ¤ąŖøą«ąŖ®ąŖ¾ąŖØą«€ąŖÆąŖ¾ - ąŖ®ą«‹ąŖŸąŖ¾ąŖ­ąŖ¾ąŖ—ąŖØąŖ¾ąŖ‚ ąŖøą«ąŖ„ąŖ¾ąŖØą«‹" #: timezones.h:648 msgid "Australia/LHI" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/ąŖ²ąŖæąŖØą«ąŖ”ą«‡ąŖ®ąŖØ" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "ąŖ•ą«ąŖµą«€ąŖØą«ąŖøąŖµą«‡ąŖ‚ąŖ” - હૉલીઔે ąŖŸąŖ¾ąŖŖą«ąŖ“" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/ąŖ²ą«‹ąŖ°ą«ąŖ” હોવે" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "ąŖ²ą«‹ąŖ°ą«ąŖ” હોવે ટાપુ" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/ąŖ®ą«‡ąŖ²ąŖ¬ą«‹ąŖ°ą«ąŖØ" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "ąŖµąŖæąŖ•ą«ąŖŸą«‹ąŖ°ąŖæąŖÆąŖ¾" #: timezones.h:658 msgid "Australia/North" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/ąŖ‰ąŖ¤ą«ąŖ¤ąŖ°" #: timezones.h:659 msgid "Australia/NSW" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/ąŖŖąŖ°ą«ąŖ„" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "ąŖŖąŖ¶ą«ąŖšąŖæąŖ®ą«€ ąŖ‘ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ą«€ąŖÆąŖ¾ - ąŖ®ą«‹ąŖŸąŖ¾ąŖ­ąŖ¾ąŖ—ąŖØąŖ¾ąŖ‚ ąŖøą«ąŖ„ąŖ¾ąŖØą«‹" #: timezones.h:663 msgid "Australia/Queensland" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/ąŖ•ą«ąŖµą«€ąŖØą«ąŖøąŖ²ą«‡ąŖØą«ąŖ”" #: timezones.h:664 msgid "Australia/South" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/ąŖ¦ąŖ•ą«ąŖ·ąŖæąŖ£" #: timezones.h:665 msgid "Australia/Sydney" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/સીઔની" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "નવું ąŖ¦ąŖ•ą«ąŖ·ąŖæąŖ£ ąŖµą«‡ąŖ²ą«ąŖø - ąŖ®ą«‹ąŖŸąŖ¾ ભાગનાં ąŖøą«ąŖ„ąŖ¾ąŖØą«‹" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/ąŖ¤ąŖ¾ąŖøą«ąŖ®ąŖ¾ąŖØąŖæąŖÆąŖ¾" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/ąŖµąŖæąŖ•ą«ąŖŸą«‹ąŖ°ąŖæąŖÆąŖ¾" #: timezones.h:670 msgid "Australia/West" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/ąŖŖąŖ¶ą«ąŖšąŖæąŖ®" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ąŖ“ąŖøą«ąŖŸą«ąŖ°ą«‡ąŖ²ąŖæąŖÆąŖ¾/ąŖÆąŖ¾ąŖØą«ąŖ•ą«‹ąŖµąŖæąŖØą«ąŖØąŖ¾" #: timezones.h:672 msgid "Brazil/Acre" msgstr "ąŖ¬ą«ąŖ°ąŖ¾ąŖąŖæąŖ²/ąŖąŖ•ąŖ°" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "ąŖ¬ą«ąŖ°ąŖ¾ąŖąŖæąŖ²/ąŖ”ąŖæąŖØą«‹ąŖ°ą«‹ąŖØą«ąŖ¹ąŖ¾" #: timezones.h:674 msgid "Brazil/East" msgstr "ąŖ¬ą«ąŖ°ąŖ¾ąŖąŖæąŖ²/ąŖŖą«‚ąŖ°ą«ąŖµ" #: timezones.h:675 msgid "Brazil/West" msgstr "ąŖ¬ą«ąŖ°ąŖ¾ąŖąŖæąŖ²/ąŖŖąŖ¶ą«ąŖšąŖæąŖ®" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "કેનાઔા/ąŖąŖŸąŖ²ąŖ¾ąŖØą«ąŖŸąŖæąŖ•" #: timezones.h:677 msgid "Canada/Central" msgstr "કેનાઔા/ąŖ•ą«‡ąŖØą«ąŖ¦ą«ąŖ°ąŖæąŖÆ" #: timezones.h:678 msgid "Canada/Eastern" msgstr "કેનાઔા/ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "કેનાઔા/ąŖŖą«‚ąŖ°ą«ąŖµ ąŖøąŖ¾ąŖøą«ąŖ•ąŖ¾ąŖšą«‡ąŖµąŖ¾ąŖØ" #: timezones.h:680 msgid "Canada/Mountain" msgstr "કેનાઔા/ąŖŖąŖ°ą«ąŖµąŖ¤ąŖ®ąŖ¾ąŖ³ąŖ¾" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "કેનાઔા/ąŖØą«ąŖÆą«ąŖ«ąŖ¾ąŖ‰ąŖØą«ąŖ”ąŖ²ą«‡ąŖØą«ąŖ”" #: timezones.h:682 msgid "Canada/Pacific" msgstr "કેનાઔા/પેસિફિક" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "કેનાઔા/ąŖøąŖ¾ąŖøą«ąŖ•ąŖ¾ąŖšą«‡ąŖµąŖ¾ąŖØ" #: timezones.h:684 msgid "Canada/Yukon" msgstr "કેનાઔા/યુકોન" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "ąŖšąŖæąŖ²ą«‡/ąŖ•ą«‹ąŖØą«ąŖŸą«€ąŖØą«‡ąŖØą«ąŖŸąŖ²" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "ąŖšąŖæąŖ²ą«‡/ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ ટાપુ" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "ąŖ•ą«ąŖÆą«ąŖ¬ąŖ¾" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "ąŖˆąŖœą«€ąŖŖą«ąŖ¤" #: timezones.h:692 msgid "Eire" msgstr "આયર" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "યુરોપ/ąŖąŖ®ąŖøą«ąŖŸą«‡ąŖ°ąŖ”ąŖ®" #: timezones.h:731 msgid "Europe/Andorra" msgstr "યુરોપ/ąŖąŖØą«ąŖ”ą«‹ąŖ°ąŖ¾" #: timezones.h:732 msgid "Europe/Athens" msgstr "યુરોપ/ąŖąŖ„ą«‡ąŖØą«ąŖø" #: timezones.h:733 msgid "Europe/Belfast" msgstr "યુરોપ/ąŖ¬ą«‡ąŖ²ą«ąŖ«ąŖ¾ąŖøą«ąŖŸ" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "યુરોપ/ąŖ¬ą«‡ąŖ²ą«ąŖ—ą«ąŖ°ą«‡ąŖ”" #: timezones.h:735 msgid "Europe/Berlin" msgstr "યુરોપ/ąŖ¬ąŖ°ą«ąŖ²ąŖæąŖØ" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "યુરોપ/ąŖ¬ą«ąŖ°ąŖ¾ąŖŸą«€ąŖøą«ąŖ²ąŖ¾ąŖµąŖ¾" #: timezones.h:737 msgid "Europe/Brussels" msgstr "યુરોપ/ąŖ¬ą«ąŖ°ą«ąŖøą«‡ąŖ²ą«ąŖø" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "યુરોપ/ąŖ¬ą«ąŖ•ąŖ¾ąŖ°ą«‡ąŖøą«ąŖŸ" #: timezones.h:739 msgid "Europe/Budapest" msgstr "યુરોપ/ąŖ¬ą«ąŖÆą«ąŖ”ąŖ¾ąŖŖą«‡ąŖøą«ąŖŸ" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "યુરોપ/ąŖšąŖæąŖøąŖæąŖØąŖ¾ąŖ‰" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "યુરોપ/ąŖ•ą«‹ąŖŖą«‡ąŖØą«ąŖ¹ąŖ¾ąŖ—ą«‡ąŖØ" #: timezones.h:742 msgid "Europe/Dublin" msgstr "યુરોપ/ąŖ”ąŖ¬ą«ąŖ²ą«€ąŖØ" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "યુરોપ/ąŖ—ąŖæąŖ¬ą«ąŖ°ąŖ¾ąŖ²ą«ąŖŸąŖ¾ąŖ°" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "યુરોપ/ąŖ—ą«ąŖÆą«ąŖ°ą«ąŖØąŖøą«€" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "યુરોપ/ąŖ¹ą«‡ąŖ²ą«ąŖøą«€ąŖØą«ąŖ•ą«€" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "યુરોપ/ઈસલ ąŖ“ąŖ« મેન" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "યુરોપ/ąŖˆąŖøą«ąŖ¤ąŖ‚ąŖ¬ą«ąŖ²" #: timezones.h:748 msgid "Europe/Jersey" msgstr "યુરોપ/ąŖœąŖ°ą«ąŖøą«€" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "યુરોપ/ąŖ•ąŖ¾ąŖ²ąŖæąŖØą«€ąŖØą«ąŖ—ą«ąŖ°ąŖ¾ąŖ”" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "ąŖ®ą«‰ąŖøą«ąŖ•ą«‹-૦૧ - ąŖ•ąŖ²ą«€ąŖØą«€ąŖ‚ąŖ—ą«ąŖ°ą«…ąŖ”" #: timezones.h:752 msgid "Europe/Kiev" msgstr "યુરોપ/કીવ" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "યુરોપ/ąŖ²ąŖæąŖøą«ąŖ¬ą«‹ąŖØ" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "યુરોપ/ąŖ²ą«ąŖœą«ąŖ¬ą«ąŖ²ąŖ¾ąŖœą«ąŖØąŖ¾" #: timezones.h:759 msgid "Europe/London" msgstr "યુરોપ/લંઔન" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "યુરોપ/ąŖ²ąŖ•ą«ąŖą«‡ąŖ®ą«ąŖ¬ąŖ°ą«ąŖ—" #: timezones.h:761 msgid "Europe/Madrid" msgstr "યુરોપ/ąŖ®ąŖ¾ąŖ”ą«ąŖ°ąŖæąŖ”" #: timezones.h:764 msgid "Europe/Malta" msgstr "યુરોપ/ąŖ®ąŖ¾ąŖ²ą«ąŖŸąŖ¾" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "યુરોપ/ąŖ®ą«‡ąŖ°ą«€ąŖ¹ąŖ¾ąŖ®ą«ąŖØ" #: timezones.h:766 msgid "Europe/Minsk" msgstr "યુરોપ/ąŖ®ąŖæąŖØą«ąŖøą«ąŖ•" #: timezones.h:767 msgid "Europe/Monaco" msgstr "યુરોપ/મોનેકો" #: timezones.h:768 msgid "Europe/Moscow" msgstr "યુરોપ/ąŖ®ą«‹ąŖøą«ąŖ•ą«‹" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "ąŖ®ą«‰ąŖøą«ąŖ•ą«‹+૦૦ - ąŖŖąŖ¶ą«ąŖšąŖæąŖ® ąŖ°ąŖ¶ąŖæąŖÆąŖ¾" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "યુરોપ/ąŖØąŖæąŖ•ą«‹ąŖøąŖæąŖÆąŖ¾" #: timezones.h:772 msgid "Europe/Oslo" msgstr "યુરોપ/ąŖ“ąŖøą«ąŖ²ą«‹" #: timezones.h:773 msgid "Europe/Paris" msgstr "યુરોપ/પેરિસ" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "યુરોપ/પોઔગોરીકા" #: timezones.h:775 msgid "Europe/Prague" msgstr "યુરોપ/ąŖŖą«ąŖ°ąŖ¾ąŖ—ą«ąŖÆą«" #: timezones.h:776 msgid "Europe/Riga" msgstr "યુરોપ/રીગા" #: timezones.h:777 msgid "Europe/Rome" msgstr "યુરોપ/ąŖ°ą«‹ąŖ®" #: timezones.h:778 msgid "Europe/Samara" msgstr "યુરોપ/સમારા" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "ąŖ®ą«‹ąŖ•ą«ąŖøą«‹ - સમારા, ąŖ‰ąŖ”ąŖ®ą«ąŖ°ą«ąŖ¶ą«€ąŖÆąŖ¾" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "યુરોપ/સાન મારિનો" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "યુરોપ/ąŖøąŖ°ąŖ¾ąŖœą«‡ąŖµą«‹" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "યુરોપ/ąŖøąŖæąŖ®ą«ąŖ«ą«‡ąŖ°ą«‹ąŖŖą«‹ąŖ²" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "ąŖøą«‡ąŖ‚ąŖØą«ąŖŸą«ąŖ°ąŖ² ąŖ•ą«ąŖ°ąŖæąŖ®ą«‡" #: timezones.h:786 msgid "Europe/Skopje" msgstr "યુરોપ/ąŖøą«ąŖ•ą«‹ąŖŖą«ąŖœą«‡" #: timezones.h:787 msgid "Europe/Sofia" msgstr "યુરોપ/ąŖøą«‹ąŖ«ąŖæąŖÆąŖ¾" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "યુરોપ/ąŖøą«ąŖŸą«‹ąŖ•ąŖ¹ą«‹ąŖ²ą«ąŖ®" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "યુરોપ/તાલિન" #: timezones.h:790 msgid "Europe/Tirane" msgstr "યુરોપ/ąŖŸąŖæąŖ°ąŖ¾ąŖØą«‡" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "યુરોપ/ąŖŸąŖæąŖ°ąŖ¾ąŖøą«ąŖŖą«‹ąŖ²" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "યુરોપ/ąŖ‰ąŖąŖ—ą«‹ąŖ°ą«‹ąŖ”" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "રુ઄ેનીયા" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "યુરોપ/ąŖµąŖ¾ąŖ”ą«ąŖ" #: timezones.h:796 msgid "Europe/Vatican" msgstr "યુરોપ/ąŖµąŖ¾ąŖŸąŖæąŖ•ąŖØ" #: timezones.h:797 msgid "Europe/Vienna" msgstr "યુરોપ/વિયેના" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "યુરોપ/વિલનિયસ" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "યુરોપ/ąŖµą«‹ąŖ²ą«ąŖ—ą«‹ąŖ—ą«ąŖ°ą«‡ąŖ”" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "ąŖ®ą«‰ąŖøą«ąŖ•ą«‹+00 - ąŖ•ąŖ¾ąŖøą«ąŖŖą«€ąŖÆąŖØ ąŖøąŖ®ą«ąŖ¦ą«ąŖ°" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "યુરોપ/વોરસો" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "યુરોપ/ąŖą«‡ąŖ—ą«ąŖ°ą«‡ąŖ¬" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "યુરોપ/ąŖąŖ¾ąŖŖą«‹ąŖ°ą«‹ąŖą«€" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "ąŖœąŖ¾ąŖŖą«‹ąŖ°ą«‹ąŖœą«ąŖÆą«‡, ąŖ‡ ąŖ²ą«ąŖ—ąŖ¾ąŖ‚ąŖøą«ąŖ• / ąŖœąŖ¾ąŖŖą«‹ąŖ°ąŖæąŖœą«€ąŖÆąŖ¾, ąŖ ąŖ²ą«ąŖ¹ąŖ¾ąŖ‚ąŖøą«ąŖ•" #: timezones.h:807 msgid "Europe/Zurich" msgstr "યુરોપ/ąŖą«ąŖÆą«ąŖ°ą«€ąŖš" #: timezones.h:808 msgid "Factory" msgstr "કારખાનું" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "હોંગકોંગ" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "ટાપુ" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "ભારતીય/ąŖąŖØą«ąŖŸąŖ¾ąŖØąŖ¾ąŖØąŖ¾ąŖ°ą«€ąŖµą«‹" #: timezones.h:820 msgid "Indian/Chagos" msgstr "ભારતીય/ąŖšąŖ¾ąŖ—ą«‹ąŖ" #: timezones.h:821 msgid "Indian/Christmas" msgstr "ભારતીય/ąŖ•ą«ąŖ°ąŖæąŖøąŖ®ąŖø" #: timezones.h:822 msgid "Indian/Cocos" msgstr "ભારતીય/ąŖ•ą«‹ąŖ•ą«‹ąŖø" #: timezones.h:823 msgid "Indian/Comoro" msgstr "ભારતીય/કોમોરો" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "ભારતીય/ąŖ•ąŖ°ą«ąŖ—ą«ąŖÆą«ąŖ²ą«‡ąŖØ" #: timezones.h:825 msgid "Indian/Mahe" msgstr "ભારતીય/માહે" #: timezones.h:826 msgid "Indian/Maldives" msgstr "ભારતીય/માલદીવ" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "ભારતીય/મોરેશિયસ" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "ભારતીય/ąŖ®ą«‡ąŖÆą«‹ąŖŸą«‡" #: timezones.h:829 msgid "Indian/Reunion" msgstr "ભારતીય/રીયુનિયન" #: timezones.h:830 msgid "Iran" msgstr "ઈરાન" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "ąŖˆąŖąŖ°ąŖ¾ąŖÆąŖ²" #: timezones.h:833 msgid "Jamaica" msgstr "ąŖœąŖ®ą«ˆąŖ•ąŖ¾" #: timezones.h:834 msgid "Japan" msgstr "જાપાન" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "ąŖ•ą«ąŖµąŖ¾ąŖœąŖ¾ąŖ²ą«‡ąŖˆąŖØ" #: timezones.h:836 msgid "Libya" msgstr "ąŖ²ąŖæąŖ¬ą«ąŖÆąŖ¾" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "ąŖ®ą«‡ąŖ•ą«ąŖøąŖæąŖ•ą«‹/ąŖ¬ąŖ¾ąŖœąŖ¾ąŖØą«‹ąŖ°ą«ąŖŸą«‡" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "ąŖ®ą«‡ąŖ•ą«ąŖøąŖæąŖ•ą«‹/બાજાસુર" #: timezones.h:840 msgid "Mexico/General" msgstr "ąŖ®ą«‡ąŖ•ą«ąŖøąŖæąŖ•ą«‹/ąŖøąŖ¾ąŖ®ąŖ¾ąŖØą«ąŖÆ" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "ąŖ®ąŖ§ą«ąŖÆąŖŖą«‚ąŖ°ą«ąŖµ/રિયાધ૮૭" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "ąŖ®ąŖ§ą«ąŖÆąŖŖą«‚ąŖ°ą«ąŖµ/રિયાધ૮૮" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "ąŖ®ąŖ§ą«ąŖÆąŖŖą«‚ąŖ°ą«ąŖµ/રિયાધ૮૯" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "ąŖØąŖ¾ąŖµąŖ¾ąŖœą«‹" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "પેસિફિક/ąŖąŖŖąŖæąŖÆąŖ¾" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "પેસિફિક/ąŖ‘ąŖ•ąŖ²ą«‡ąŖØą«ąŖ”" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "પેસિફિક/ચા઄મ" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "ચાટહામ ટાપુ" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "પેસિફિક/ąŖšą«ąŖ•" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "ąŖšą«ąŖ• (ąŖ¤ą«ąŖ°ą«ąŖ•) અને યાપ" #: timezones.h:859 msgid "Pacific/Easter" msgstr "પેસિફિક/ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "ąŖ‡ąŖøą«ąŖŸąŖ° ટાપુ અને સાલા વાય ąŖ—ą«‹ąŖ®ą«‡ąŖ" #: timezones.h:862 msgid "Pacific/Efate" msgstr "પેસિફિક/ąŖąŖ«ą«‡ąŖŸ" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "પેસિફિક/ąŖąŖØą«ąŖ”ąŖ¬ąŖ°ą«€" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "ąŖ«ąŖæąŖØą«€ąŖ•ą«ąŖø ટાપુ" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "પેસિફિક/ફાકાઓફો" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "પેસિફિક/ąŖ«ąŖæąŖœą«€" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "પેસિફિક/ąŖ«ą«ąŖØąŖ¾ąŖ«ą«ąŖŸą«€" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "પેસિફિક/ąŖ—ą«‡ąŖ²ą«‡ąŖŖą«‡ąŖ—ą«‹ąŖ" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "ગાલાપાગોસ ટાપુ" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "પેસિફિક/ąŖ—ąŖ¾ąŖ®ą«ąŖ¬ą«€ąŖÆąŖ°" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "ąŖ—ą«…ąŖ®ą«ąŖ¬ą«ˆąŖ° ટાપુ" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "પેસિફિક/ąŖ—ą«ąŖÆą«ąŖ†ąŖ”ą«‡ąŖ²ą«ąŖ•ąŖ¾ąŖØąŖ¾ąŖ²" #: timezones.h:876 msgid "Pacific/Guam" msgstr "પેસિફિક/ąŖ—ą«ąŖÆą«ąŖ†ąŖ®" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "પેસિફિક/હોનોલુલુ" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "હવાઈ" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "પેસિફિક/ąŖœą«ąŖ¹ą«‹ąŖØą«ąŖøą«ąŖŸąŖØ" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "ąŖœą«‰ąŖØąŖøą«ąŖŸą«‹ąŖØ ąŖąŖŸą«‹ąŖ²ą«ąŖ²" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "પેસિફિક/ąŖ•ąŖæąŖ°ąŖæąŖŸąŖæąŖ®ąŖ¾ąŖŸą«€" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "લાઇન ટાપુ" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "પેસિફિક/કોસરે" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "કોસરાઇ" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "પેસિફિક/ąŖ•ą«ąŖµąŖ¾ąŖœąŖ¾ąŖ²ą«‡ąŖØ" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "પેસિફિક/ąŖ®ąŖœą«ąŖ°ą«‹" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "પેસિફિક/ąŖ®ąŖ¾ąŖ°ą«ąŖ•ą«€ąŖøąŖ¾ąŖø" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "ąŖ®ąŖ¾ąŖ°ą«ąŖ•ą«ąŖÆą«‚ąŖøąŖ¾ąŖø ટાપુ" #: timezones.h:898 msgid "Pacific/Midway" msgstr "પેસિફિક/મિઔવે" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "મિઔવે ટાપુ" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "પેસિફિક/નૌરુ" #: timezones.h:902 msgid "Pacific/Niue" msgstr "પેસિફિક/નિયુ" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "પેસિફિક/ąŖØą«‹ąŖ°ąŖ«ą«‹ąŖ²ą«ąŖ•" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "પેસિફિક/ąŖØą«ŒąŖ®ą«€ąŖÆąŖ¾" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "પેસિફિક/પાગો પાગો" #: timezones.h:906 msgid "Pacific/Palau" msgstr "પેસિફિક/પલાઉ" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "પેસિફિક/ąŖŖąŖæąŖŸąŖ•ą«‡ąŖ°ą«ąŖØ" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "પેસિફિક/ąŖŖą«‹ąŖØąŖŖą«‡ąŖˆ" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "ąŖŖą«‹ąŖØąŖŖą«‡ąŖˆ (ąŖŖą«‹ąŖ¹ą«ąŖØąŖŖą«ˆ)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "પેસિફિક/પોનાપે" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "પેસિફિક/ąŖŖą«‹ąŖ°ą«ąŖŸ ąŖ®ą«‹ąŖ°ą«‡ąŖøą«ąŖ¬ą«€" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "પેસિફિક/ąŖ°ąŖ¾ąŖ°ą«‹ąŖŸą«‹ąŖ‚ąŖ—ąŖ¾" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "પેસિફિક/ąŖøą«‡ąŖˆąŖŖąŖ¾ąŖØ" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "પેસિફિક/સામોઆ" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "પેસિફિક/ąŖŸąŖ¾ąŖ¹ąŖæąŖŸą«€" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "ąŖøą«‹ąŖøąŖ¾ąŖÆąŖŸą«€ ટાપુ" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "પેસિફિક/ટારાવા" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "ąŖ—ąŖæąŖ²ąŖ¬ąŖ°ą«ąŖŸ ટાપુ" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "પેસિફિક/ąŖŸą«‹ąŖ‚ąŖ—ąŖ¾ąŖŸąŖ¾ąŖŖą«" #: timezones.h:923 msgid "Pacific/Truk" msgstr "પેસિફિક/ąŖ¤ą«ąŖ°ą«ąŖ•" #: timezones.h:924 msgid "Pacific/Wake" msgstr "પેસિફિક/વેક" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "વૅક ટાપુ" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "પેસિફિક/વાલિસ" #: timezones.h:928 msgid "Pacific/Yap" msgstr "પેસિફિક/યાપ" #: timezones.h:929 msgid "Poland" msgstr "ąŖŖą«‹ąŖ²ą«‡ąŖØą«ąŖ”" #: timezones.h:930 msgid "Portugal" msgstr "ąŖŖą«‹ąŖ°ą«ąŖŸą«ąŖ—ąŖ²" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "સિંગાપુર" #: timezones.h:937 msgid "Turkey" msgstr "ąŖ¤ą«ąŖ°ą«ąŖ•ą«€" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "ąŖøąŖ¾ąŖ°ą«ąŖµąŖ¤ą«ąŖ°ąŖæąŖ•" #: timezones.h:940 msgid "US/Alaska" msgstr "US/ąŖ…ąŖ²ąŖ¾ąŖøą«ąŖ•ąŖ¾" #: timezones.h:941 msgid "US/Aleutian" msgstr "US/ąŖąŖ²ą«‡ąŖÆą«ąŖŸąŖæąŖ†ąŖØ" #: timezones.h:942 msgid "US/Arizona" msgstr "US/ąŖąŖ°ąŖæąŖą«‹ąŖØąŖ¾" #: timezones.h:943 msgid "US/Central" msgstr "US/ąŖ•ą«‡ąŖØą«ąŖ¦ą«ąŖ°ąŖæąŖÆ" #: timezones.h:944 msgid "US/Eastern" msgstr "US/ąŖŖą«‚ąŖ°ą«ąŖµą«€ąŖÆ" #: timezones.h:945 msgid "US/East-Indiana" msgstr "US/ąŖŖą«‚ąŖ°ą«ąŖµ-ąŖˆąŖØą«ąŖ”ąŖæąŖÆąŖ¾ąŖØąŖ¾" #: timezones.h:946 msgid "US/Hawaii" msgstr "US/હવાઈ" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "US/ąŖˆąŖØą«ąŖ”ąŖæąŖÆąŖ¾ąŖØąŖ¾-ąŖøą«ąŖŸąŖ¾ąŖ°ą«ąŖ•ą«‡" #: timezones.h:948 msgid "US/Michigan" msgstr "US/ąŖ®ąŖæąŖšą«€ąŖ—ąŖØ" #: timezones.h:949 msgid "US/Mountain" msgstr "US/ąŖŖąŖ°ą«ąŖµąŖ¤ąŖ®ąŖ¾ąŖ³ąŖ¾" #: timezones.h:950 msgid "US/Pacific" msgstr "US/પેસિફિક" #: timezones.h:951 msgid "US/Samoa" msgstr "US/સમોઆ" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/ur.po0000664000175000017500000014454714632072346023724 0ustar fabiofabio# Urdu translations for PACKAGE package. # Copyright (C) 2004 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Automatically generated, 2004. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2002-04-12 17:04-0400\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ASCII\n" "Content-Transfer-Encoding: 8bit\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "" #: timezones.h:2 msgid "Africa/Accra" msgstr "" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "" #: timezones.h:4 msgid "Africa/Algiers" msgstr "" #: timezones.h:5 msgid "Africa/Asmara" msgstr "" #: timezones.h:6 msgid "Africa/Asmera" msgstr "" #: timezones.h:7 msgid "Africa/Bamako" msgstr "" #: timezones.h:8 msgid "Africa/Bangui" msgstr "" #: timezones.h:9 msgid "Africa/Banjul" msgstr "" #: timezones.h:10 msgid "Africa/Bissau" msgstr "" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "" #: timezones.h:14 msgid "Africa/Cairo" msgstr "" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "" #: timezones.h:20 msgid "Africa/Dakar" msgstr "" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "" #: timezones.h:23 msgid "Africa/Douala" msgstr "" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "" #: timezones.h:25 msgid "Africa/Freetown" msgstr "" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "" #: timezones.h:27 msgid "Africa/Harare" msgstr "" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "" #: timezones.h:29 msgid "Africa/Kampala" msgstr "" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "" #: timezones.h:31 msgid "Africa/Kigali" msgstr "" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "" #: timezones.h:36 msgid "Africa/Libreville" msgstr "" #: timezones.h:37 msgid "Africa/Lome" msgstr "" #: timezones.h:38 msgid "Africa/Luanda" msgstr "" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "" #: timezones.h:43 msgid "Africa/Malabo" msgstr "" #: timezones.h:44 msgid "Africa/Maputo" msgstr "" #: timezones.h:45 msgid "Africa/Maseru" msgstr "" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "" #: timezones.h:51 msgid "Africa/Niamey" msgstr "" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "" #: timezones.h:58 msgid "Africa/Tunis" msgstr "" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "" #: timezones.h:60 msgid "America/Adak" msgstr "" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "" #: timezones.h:63 msgid "America/Anchorage" msgstr "" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "" #: timezones.h:66 msgid "America/Anguilla" msgstr "" #: timezones.h:67 msgid "America/Antigua" msgstr "" #: timezones.h:68 msgid "America/Araguaina" msgstr "" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "" #: timezones.h:109 msgid "America/Asuncion" msgstr "" #: timezones.h:110 msgid "America/Atikokan" msgstr "" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "" #: timezones.h:114 msgid "America/Bahia" msgstr "" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "" #: timezones.h:121 msgid "America/Belem" msgstr "" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "" #: timezones.h:132 msgid "America/Boise" msgstr "" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "" #: timezones.h:146 msgid "America/Catamarca" msgstr "" #: timezones.h:147 msgid "America/Cayenne" msgstr "" #: timezones.h:148 msgid "America/Cayman" msgstr "" #: timezones.h:149 msgid "America/Chicago" msgstr "" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "" #: timezones.h:152 msgid "America/Chihuahua" msgstr "" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "" #: timezones.h:156 msgid "America/Cordoba" msgstr "" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "" #: timezones.h:158 msgid "America/Cuiaba" msgstr "" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "" #: timezones.h:174 msgid "America/Detroit" msgstr "" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "" #: timezones.h:178 msgid "America/Edmonton" msgstr "" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "" #: timezones.h:185 msgid "America/Ensenada" msgstr "" #: timezones.h:186 msgid "America/Fortaleza" msgstr "" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "" #: timezones.h:200 msgid "America/Grenada" msgstr "" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "" #: timezones.h:202 msgid "America/Guatemala" msgstr "" #: timezones.h:203 msgid "America/Guayaquil" msgstr "" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "" #: timezones.h:207 msgid "America/Halifax" msgstr "" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "" #: timezones.h:211 msgid "America/Hermosillo" msgstr "" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "" #: timezones.h:246 msgid "America/Jujuy" msgstr "" #: timezones.h:247 msgid "America/Juneau" msgstr "" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "" #: timezones.h:257 msgid "America/La_Paz" msgstr "" #: timezones.h:258 msgid "America/Lima" msgstr "" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "" #: timezones.h:262 msgid "America/Louisville" msgstr "" #: timezones.h:263 msgid "America/Maceio" msgstr "" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "" #: timezones.h:267 msgid "America/Manaus" msgstr "" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 msgid "America/Marigot" msgstr "" #: timezones.h:271 msgid "America/Martinique" msgstr "" #: timezones.h:272 msgid "America/Matamoros" msgstr "" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "" #: timezones.h:279 msgid "America/Menominee" msgstr "" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "" #: timezones.h:289 msgid "America/Moncton" msgstr "" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "" #: timezones.h:296 msgid "America/Montreal" msgstr "" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "" #: timezones.h:300 msgid "America/Nassau" msgstr "" #: timezones.h:301 msgid "America/New_York" msgstr "" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "" #: timezones.h:304 msgid "America/Nipigon" msgstr "" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 msgid "America/Ojinaga" msgstr "" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "" #: timezones.h:327 msgid "America/Phoenix" msgstr "" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "" #: timezones.h:337 msgid "America/Rainy_River" msgstr "" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 msgid "America/Resolute" msgstr "" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 msgid "America/Santarem" msgstr "" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "" #: timezones.h:376 msgid "America/St_Johns" msgstr "" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "" #: timezones.h:380 msgid "America/St_Lucia" msgstr "" #: timezones.h:381 msgid "America/St_Thomas" msgstr "" #: timezones.h:382 msgid "America/St_Vincent" msgstr "" #: timezones.h:383 msgid "America/Swift_Current" msgstr "" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "" #: timezones.h:387 msgid "America/Thule" msgstr "" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "" #: timezones.h:400 msgid "America/Vancouver" msgstr "" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "" #: timezones.h:404 msgid "America/Whitehorse" msgstr "" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "" #: timezones.h:450 msgid "Asia/Aden" msgstr "" #: timezones.h:451 msgid "Asia/Almaty" msgstr "" #: timezones.h:454 msgid "Asia/Amman" msgstr "" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "" #: timezones.h:468 msgid "Asia/Baku" msgstr "" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "" #: timezones.h:470 msgid "Asia/Beirut" msgstr "" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "" #: timezones.h:472 msgid "Asia/Brunei" msgstr "" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "" #: timezones.h:481 msgid "Asia/Colombo" msgstr "" #: timezones.h:482 msgid "Asia/Dacca" msgstr "" #: timezones.h:483 msgid "Asia/Damascus" msgstr "" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "" #: timezones.h:485 msgid "Asia/Dili" msgstr "" #: timezones.h:486 msgid "Asia/Dubai" msgstr "" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "" #: timezones.h:488 msgid "Asia/Gaza" msgstr "" #: timezones.h:489 msgid "Asia/Harbin" msgstr "" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "" #: timezones.h:494 msgid "Asia/Hovd" msgstr "" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "" #: timezones.h:508 msgid "Asia/Kabul" msgstr "" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "" #: timezones.h:529 msgid "Asia/Macao" msgstr "" #: timezones.h:530 msgid "Asia/Macau" msgstr "" #: timezones.h:531 msgid "Asia/Magadan" msgstr "" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "" #: timezones.h:538 msgid "Asia/Muscat" msgstr "" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "" #: timezones.h:546 msgid "Asia/Omsk" msgstr "" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "" #: timezones.h:557 msgid "Asia/Qatar" msgstr "" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "" #: timezones.h:566 msgid "Asia/Saigon" msgstr "" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "" #: timezones.h:578 msgid "Asia/Taipei" msgstr "" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "" #: timezones.h:583 msgid "Asia/Tehran" msgstr "" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "" #: timezones.h:625 msgid "Australia/ACT" msgstr "" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "" #: timezones.h:636 msgid "Australia/Currie" msgstr "" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 msgid "Australia/Eucla" msgstr "" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "" #: timezones.h:645 msgid "Australia/Hobart" msgstr "" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "" #: timezones.h:658 msgid "Australia/North" msgstr "" #: timezones.h:659 msgid "Australia/NSW" msgstr "" #: timezones.h:660 msgid "Australia/Perth" msgstr "" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "" #: timezones.h:664 msgid "Australia/South" msgstr "" #: timezones.h:665 msgid "Australia/Sydney" msgstr "" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "" #: timezones.h:669 msgid "Australia/Victoria" msgstr "" #: timezones.h:670 msgid "Australia/West" msgstr "" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "" #: timezones.h:672 msgid "Brazil/Acre" msgstr "" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "" #: timezones.h:674 msgid "Brazil/East" msgstr "" #: timezones.h:675 msgid "Brazil/West" msgstr "" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "" #: timezones.h:677 msgid "Canada/Central" msgstr "" #: timezones.h:678 msgid "Canada/Eastern" msgstr "" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "" #: timezones.h:680 msgid "Canada/Mountain" msgstr "" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "" #: timezones.h:682 msgid "Canada/Pacific" msgstr "" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "" #: timezones.h:684 msgid "Canada/Yukon" msgstr "" #: timezones.h:685 msgid "CET" msgstr "" #: timezones.h:686 msgid "Chile/Continental" msgstr "" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "" #: timezones.h:688 msgid "CST6CDT" msgstr "" #: timezones.h:689 msgid "Cuba" msgstr "" #: timezones.h:690 msgid "EET" msgstr "" #: timezones.h:691 msgid "Egypt" msgstr "" #: timezones.h:692 msgid "Eire" msgstr "" #: timezones.h:693 msgid "EST" msgstr "" #: timezones.h:694 msgid "EST5EDT" msgstr "" #: timezones.h:695 msgid "Etc/GMT" msgstr "" #: timezones.h:696 msgid "Etc/GMT0" msgstr "" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "" #: timezones.h:726 msgid "Etc/UCT" msgstr "" #: timezones.h:727 msgid "Etc/Universal" msgstr "" #: timezones.h:728 msgid "Etc/UTC" msgstr "" #: timezones.h:729 msgid "Etc/Zulu" msgstr "" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "" #: timezones.h:731 msgid "Europe/Andorra" msgstr "" #: timezones.h:732 msgid "Europe/Athens" msgstr "" #: timezones.h:733 msgid "Europe/Belfast" msgstr "" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "" #: timezones.h:735 msgid "Europe/Berlin" msgstr "" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "" #: timezones.h:737 msgid "Europe/Brussels" msgstr "" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "" #: timezones.h:739 msgid "Europe/Budapest" msgstr "" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "" #: timezones.h:742 msgid "Europe/Dublin" msgstr "" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "" #: timezones.h:748 msgid "Europe/Jersey" msgstr "" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "" #: timezones.h:759 msgid "Europe/London" msgstr "" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "" #: timezones.h:761 msgid "Europe/Madrid" msgstr "" #: timezones.h:764 msgid "Europe/Malta" msgstr "" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "" #: timezones.h:766 msgid "Europe/Minsk" msgstr "" #: timezones.h:767 msgid "Europe/Monaco" msgstr "" #: timezones.h:768 msgid "Europe/Moscow" msgstr "" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "" #: timezones.h:772 msgid "Europe/Oslo" msgstr "" #: timezones.h:773 msgid "Europe/Paris" msgstr "" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "" #: timezones.h:775 msgid "Europe/Prague" msgstr "" #: timezones.h:776 msgid "Europe/Riga" msgstr "" #: timezones.h:777 msgid "Europe/Rome" msgstr "" #: timezones.h:778 msgid "Europe/Samara" msgstr "" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "" #: timezones.h:787 msgid "Europe/Sofia" msgstr "" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "" #: timezones.h:790 msgid "Europe/Tirane" msgstr "" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "" #: timezones.h:796 msgid "Europe/Vatican" msgstr "" #: timezones.h:797 msgid "Europe/Vienna" msgstr "" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "" #: timezones.h:808 msgid "Factory" msgstr "" #: timezones.h:809 msgid "GB" msgstr "" #: timezones.h:810 msgid "GB-Eire" msgstr "" #: timezones.h:811 msgid "GMT" msgstr "" #: timezones.h:812 msgid "GMT0" msgstr "" #: timezones.h:813 msgid "GMT-0" msgstr "" #: timezones.h:814 msgid "GMT+0" msgstr "" #: timezones.h:815 msgid "Greenwich" msgstr "" #: timezones.h:816 msgid "Hongkong" msgstr "" #: timezones.h:817 msgid "HST" msgstr "" #: timezones.h:818 msgid "Iceland" msgstr "" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "" #: timezones.h:820 msgid "Indian/Chagos" msgstr "" #: timezones.h:821 msgid "Indian/Christmas" msgstr "" #: timezones.h:822 msgid "Indian/Cocos" msgstr "" #: timezones.h:823 msgid "Indian/Comoro" msgstr "" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "" #: timezones.h:825 msgid "Indian/Mahe" msgstr "" #: timezones.h:826 msgid "Indian/Maldives" msgstr "" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "" #: timezones.h:829 msgid "Indian/Reunion" msgstr "" #: timezones.h:830 msgid "Iran" msgstr "" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "" #: timezones.h:833 msgid "Jamaica" msgstr "" #: timezones.h:834 msgid "Japan" msgstr "" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "" #: timezones.h:836 msgid "Libya" msgstr "" #: timezones.h:837 msgid "MET" msgstr "" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "" #: timezones.h:840 msgid "Mexico/General" msgstr "" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "" #: timezones.h:844 msgid "MST" msgstr "" #: timezones.h:845 msgid "MST7MDT" msgstr "" #: timezones.h:846 msgid "Navajo" msgstr "" #: timezones.h:847 msgid "NZ" msgstr "" #: timezones.h:848 msgid "NZ-CHAT" msgstr "" #: timezones.h:849 msgid "Pacific/Apia" msgstr "" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 msgid "Pacific/Easter" msgstr "" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "" #: timezones.h:876 msgid "Pacific/Guam" msgstr "" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "" #: timezones.h:902 msgid "Pacific/Niue" msgstr "" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "" #: timezones.h:906 msgid "Pacific/Palau" msgstr "" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "" #: timezones.h:923 msgid "Pacific/Truk" msgstr "" #: timezones.h:924 msgid "Pacific/Wake" msgstr "" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "" #: timezones.h:928 msgid "Pacific/Yap" msgstr "" #: timezones.h:929 msgid "Poland" msgstr "" #: timezones.h:930 msgid "Portugal" msgstr "" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "" #: timezones.h:933 msgid "PST8PDT" msgstr "" #: timezones.h:934 msgid "ROC" msgstr "" #: timezones.h:935 msgid "ROK" msgstr "" #: timezones.h:936 msgid "Singapore" msgstr "" #: timezones.h:937 msgid "Turkey" msgstr "" #: timezones.h:938 msgid "UCT" msgstr "" #: timezones.h:939 msgid "Universal" msgstr "" #: timezones.h:940 msgid "US/Alaska" msgstr "" #: timezones.h:941 msgid "US/Aleutian" msgstr "" #: timezones.h:942 msgid "US/Arizona" msgstr "" #: timezones.h:943 msgid "US/Central" msgstr "" #: timezones.h:944 msgid "US/Eastern" msgstr "" #: timezones.h:945 msgid "US/East-Indiana" msgstr "" #: timezones.h:946 msgid "US/Hawaii" msgstr "" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "" #: timezones.h:948 msgid "US/Michigan" msgstr "" #: timezones.h:949 msgid "US/Mountain" msgstr "" #: timezones.h:950 msgid "US/Pacific" msgstr "" #: timezones.h:951 msgid "US/Samoa" msgstr "" #: timezones.h:952 msgid "UTC" msgstr "" #: timezones.h:953 msgid "WET" msgstr "" #: timezones.h:954 msgid "W-SU" msgstr "" #: timezones.h:955 msgid "Zulu" msgstr "" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/sl.po0000664000175000017500000016777114632072346023720 0ustar fabiofabio# SLOVENIAN TRANSLATION OF TIMEZONES. # Copyright (C) 2003 THE PACKAGE'S COPYRIGHT HOLDER # Roman Maurer , 2001. # $Id: sl.po,v 1.7 2007/04/27 09:16:29 nphilipp Exp $ # $Source: /home/fedora/mmcgrath/elvis/cvs/redhat-config-date/po/timezones/sl.po,v $ # msgid "" msgstr "" "Project-Id-Version: timezones 9.1\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2003-06-24 18:50+0200\n" "Last-Translator: Roman Maurer \n" "Language-Team: Slovenian \n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Afrika/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Afrika/Akra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Afrika/Adis_Abeba" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Afrika/Alžir" #: timezones.h:5 #, fuzzy msgid "Africa/Asmara" msgstr "Afrika/Asmera" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Afrika/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Afrika/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Afrika/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Afrika/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Afrika/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Afrika/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Afrika/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Afrika/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Afrika/Kairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Afrika/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Afrika/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Afrika/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Afrika/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Afrika/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Afrika/Džibuti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Afrika/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Afrika/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Afrika/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Afrika/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Afrika/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Afrika/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Afrika/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Afrika/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Afrika/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Afrika/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Afrika/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Afrika/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Afrika/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Afrika/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Afrika/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Afrika/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Afrika/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Afrika/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Afrika/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Afrika/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Afrika/MogadiÅ”" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Afrika/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Afrika/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Afrika/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Afrika/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Afrika/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Afrika/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Afrika/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Afrika/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Afrika/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Afrika/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Afrika/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Afrika/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "Amerika/Adak" #. comment for time zone America/Adak #: timezones.h:62 #, fuzzy msgid "Aleutian Islands" msgstr "Avstralija/Queensland" #: timezones.h:63 msgid "America/Anchorage" msgstr "Amerika/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 #, fuzzy msgid "Alaska Time" msgstr "US/Aljaska" #: timezones.h:66 msgid "America/Anguilla" msgstr "Amerika/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "Amerika/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "Amerika/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 #, fuzzy msgid "America/Argentina/Buenos_Aires" msgstr "Amerika/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 #, fuzzy msgid "America/Argentina/Catamarca" msgstr "Amerika/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 #, fuzzy msgid "America/Argentina/ComodRivadavia" msgstr "Amerika/Indiana/Indianapolis" #: timezones.h:78 #, fuzzy msgid "America/Argentina/Cordoba" msgstr "Amerika/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 #, fuzzy msgid "America/Argentina/Jujuy" msgstr "Amerika/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 #, fuzzy msgid "America/Argentina/La_Rioja" msgstr "Amerika/Araguaina" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 #, fuzzy msgid "America/Argentina/Mendoza" msgstr "Amerika/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 #, fuzzy msgid "America/Argentina/Rio_Gallegos" msgstr "Amerika/Indiana/Marengo" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 #, fuzzy msgid "America/Argentina/Salta" msgstr "Amerika/Antigua" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 #, fuzzy msgid "America/Argentina/San_Juan" msgstr "Amerika/Antigua" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 #, fuzzy msgid "America/Argentina/San_Luis" msgstr "Amerika/Antigua" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 #, fuzzy msgid "America/Argentina/Tucuman" msgstr "Amerika/Antigua" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 #, fuzzy msgid "America/Argentina/Ushuaia" msgstr "Amerika/Araguaina" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "Amerika/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "Amerika/Asuncion" #: timezones.h:110 #, fuzzy msgid "America/Atikokan" msgstr "Amerika/Atka" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "Amerika/Atka" #: timezones.h:114 #, fuzzy msgid "America/Bahia" msgstr "Amerika/Boa_Vista" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "Amerika/Boa_Vista" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "Amerika/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "Amerika/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "Amerika/Belize" #: timezones.h:125 #, fuzzy msgid "America/Blanc-Sablon" msgstr "Amerika/Cancun" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Amerika/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "Amerika/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "Amerika/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Amerika/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Amerika/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 #, fuzzy msgid "America/Campo_Grande" msgstr "Amerika/Cayman" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "Amerika/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "Amerika/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "Amerika/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "Amerika/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "Amerika/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "Amerika/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "US/Centralni" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Amerika/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 #, fuzzy msgid "America/Coral_Harbour" msgstr "Amerika/Curacao" #: timezones.h:156 msgid "America/Cordoba" msgstr "Amerika/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Amerika/Kostarika" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Amerika/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "Amerika/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Amerika/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "Amerika/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Amerika/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "Amerika/Denver" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "US/Mountain" #: timezones.h:174 msgid "America/Detroit" msgstr "Amerika/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "Amerika/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "Amerika/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "Amerika/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Amerika/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "Amerika/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Amerika/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Amerika/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Amerika/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "Amerika/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Amerika/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Amerika/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "Amerika/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Amerika/Guadeloupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "Amerika/Gvatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Amerika/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "Amerika/Gvajana" #: timezones.h:207 msgid "America/Halifax" msgstr "Amerika/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "Amerika/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Amerika/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Amerika/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Amerika/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Amerika/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 #, fuzzy msgid "America/Indiana/Petersburg" msgstr "Amerika/Indiana/Marengo" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Amerika/Indianapolis" #: timezones.h:227 #, fuzzy msgid "America/Indiana/Tell_City" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 #, fuzzy msgid "America/Indiana/Vincennes" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 #, fuzzy msgid "America/Indiana/Winamac" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "Amerika/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Amerika/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "Amerika/Jamajka" #: timezones.h:246 msgid "America/Jujuy" msgstr "Amerika/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "Amerika/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Amerika/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 #, fuzzy msgid "Eastern Time - Kentucky - Louisville area" msgstr "Amerika/Kentucky/Louisville" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Amerika/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Amerika/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "Amerika/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "Amerika/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Amerika/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 #, fuzzy msgid "Pacific Time" msgstr "Pacifik/Niue" #: timezones.h:262 msgid "America/Louisville" msgstr "Amerika/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "Amerika/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "Amerika/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "Amerika/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 #, fuzzy msgid "America/Marigot" msgstr "Amerika/Maceio" #: timezones.h:271 msgid "America/Martinique" msgstr "Amerika/Martinik" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "Amerika/Manaus" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Amerika/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "Amerika/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "Amerika/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "Amerika/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Amerika/Mexico_City" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "Amerika/Miquelon" #: timezones.h:289 #, fuzzy msgid "America/Moncton" msgstr "Amerika/Edmonton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "Amerika/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "Amerika/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "Amerika/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "Amerika/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "Amerika/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "Amerika/New_York" #. comment for time zone America/New_York #: timezones.h:303 #, fuzzy msgid "Eastern Time" msgstr "US/Vzhodni" #: timezones.h:304 msgid "America/Nipigon" msgstr "Amerika/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "Amerika/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "Amerika/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 #, fuzzy msgid "Atlantic islands" msgstr "Atlantik/Kanari" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Amerika/Severna_Dakota/Center" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 #, fuzzy msgid "America/North_Dakota/New_Salem" msgstr "Amerika/Severna_Dakota/Center" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "Amerika/Managua" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "Amerika/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Amerika/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Amerika/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "Amerika/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Amerika/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Amerika/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Amerika/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Amerika/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Amerika/Puerto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Amerika/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Amerika/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "Amerika/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "Amerika/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 #, fuzzy msgid "America/Resolute" msgstr "Amerika/Belem" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Amerika/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "Amerika/Rosario" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "Amerika/Santiago" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 #, fuzzy msgid "America/Santarem" msgstr "Amerika/Santiago" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "Amerika/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Amerika/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Amerika/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Amerika/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "Amerika/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 #, fuzzy msgid "America/St_Barthelemy" msgstr "Amerika/Belem" #: timezones.h:376 msgid "America/St_Johns" msgstr "Amerika/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Amerika/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Amerika/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Amerika/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Amerika/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Amerika/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Amerika/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "Amerika/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Amerika/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "Amerika/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 #, fuzzy msgid "America/Toronto" msgstr "Amerika/Tortola" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "Amerika/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "Amerika/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "Amerika/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Amerika/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Amerika/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "Amerika/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Amerika/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Antarktika/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Antarktika/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Antarktika/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "Antarktika/McMurdo" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Antarktika/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Antarktika/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Antarktika/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 #, fuzzy msgid "Antarctica/Rothera" msgstr "Antarktika/Južni_pol" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antarktika/Južni_pol" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Antarktika/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Antarktika/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Arktika/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Azija/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Azija/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Azija/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Azija/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Azija/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Azija/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Azija/AÅ”gabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Azija/AÅ”khabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Azija/Bagdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Azija/Bahrein" #: timezones.h:468 msgid "Asia/Baku" msgstr "Azija/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Azija/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Azija/Bejrut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Azija/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Azija/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Azija/Kalkuta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Azija/Čoibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Azija/Čongking" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "Azija/Čungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Azija/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Azija/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Azija/Damask" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Azija/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Azija/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Azija/Dubaj" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Azija/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Azija/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Azija/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 #, fuzzy msgid "Asia/Ho_Chi_Minh" msgstr "Azija/Čongking" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Azija/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Azija/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Azija/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Azija/Carigrad" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Azija/Džakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Azija/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Azija/Jeruzalem" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Azija/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Azija/Kamčatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Azija/Karači" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Azija/KaÅ”gar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 #, fuzzy msgid "Asia/Kathmandu" msgstr "Azija/Katmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Azija/Katmandu" #: timezones.h:518 #, fuzzy msgid "Asia/Kolkata" msgstr "Azija/Džakarta" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Azija/Krasnojarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Azija/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Azija/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Azija/Kuvajt" #: timezones.h:529 msgid "Asia/Macao" msgstr "Azija/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Azija/Macao" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Azija/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Azija/Makasar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "Azija/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Azija/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Azija/Nikozija" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "Azija/Irkutsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "Azija/Novosibirsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Azija/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 #, fuzzy msgid "Moscow+03 - Novosibirsk" msgstr "Azija/Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Azija/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "Azija/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Azija/Pnom_Pen" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Azija/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Azija/Pjongjang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Azija/Katar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Azija/Kizilorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Azija/Rangun" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Azija/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Azija/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Azija/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Azija/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Azija/Sajgon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Azija/Sahalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Azija/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Azija/Seul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Azija/Å anghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "Azija/Singapur" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Azija/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Azija/TaÅ”kent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Azija/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Azija/Teheran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Azija/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Azija/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Azija/Timfu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Azija/Tokio" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Azija/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Azija/Ulan_Bator" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Azija/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Azija/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Azija/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Azija/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Azija/Jakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Azija/Ekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Azija/Erevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlantik/Azuri" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlantik/Bermuda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlantik/Kanari" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlantik/Cape_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlantik/Faeroe" #: timezones.h:616 #, fuzzy msgid "Atlantic/Faroe" msgstr "Atlantik/Faeroe" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlantik/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlantik/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlantik/Reykjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlantik/Južna_Georgia" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlantik/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlantik/St_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "Avstralija/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Avstralija/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 #, fuzzy msgid "South Australia" msgstr "Avstralija/ACT" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Avstralija/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Avstralija/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Avstralija/Canberra" #: timezones.h:636 #, fuzzy msgid "Australia/Currie" msgstr "Avstralija/Canberra" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Avstralija/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 #, fuzzy msgid "Australia/Eucla" msgstr "Avstralija/Queensland" #. comment for time zone Australia/Eucla #: timezones.h:644 #, fuzzy msgid "Western Australia - Eucla area" msgstr "Avstralija/Queensland" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Avstralija/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "Avstralija/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Avstralija/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Avstralija/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Avstralija/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 #, fuzzy msgid "Victoria" msgstr "Avstralija/Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "Avstralija/Sever" #: timezones.h:659 msgid "Australia/NSW" msgstr "Avstralija/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "Avstralija/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Avstralija/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "Avstralija/Jug" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Avstralija/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Avstralija/Tasmanija" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Avstralija/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "Avstralija/Zahod" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Avstralija/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brazilija/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brazilija/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brazilija/Vzhod" #: timezones.h:675 msgid "Brazil/West" msgstr "Brazilija/Zahod" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Kanada/Atlantik" #: timezones.h:677 msgid "Canada/Central" msgstr "Kanada/Centralna" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Kanada/Vzhodna" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Kanada/Vzhodni-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Kanada/Mountain" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Kanada/Nova_Funlandija" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Kanada/Pacifik" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Kanada/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Kanada/Yukon" #: timezones.h:685 msgid "CET" msgstr "SEČ" #: timezones.h:686 msgid "Chile/Continental" msgstr "Čile/Continental" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Čile/EasterIsland" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Kuba" #: timezones.h:690 msgid "EET" msgstr "VEČ" #: timezones.h:691 msgid "Egypt" msgstr "Egipt" #: timezones.h:692 msgid "Eire" msgstr "Irska" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Itd/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Itd/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Itd/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Itd/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Itd/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Itd/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Itd/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Itd/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Itd/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Itd/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Itd/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Itd/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Itd/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Itd/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Itd/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Itd/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Itd/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Itd/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Itd/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Itd/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Itd/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Itd/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Itd/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Itd/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Itd/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Itd/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Itd/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Itd/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Itd/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Itd/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Itd/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Itd/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Itd/Univerzalni" #: timezones.h:728 msgid "Etc/UTC" msgstr "Itd/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Itd/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Evropa/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Evropa/Andora" #: timezones.h:732 msgid "Europe/Athens" msgstr "Evropa/Atene" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Evropa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Evropa/Beograd" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Evropa/Berlin" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Evropa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Evropa/Bruselj" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Evropa/BukareÅ”ta" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Evropa/BudimpeÅ”ta" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Evropa/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Evropa/Koebenhaven" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Evropa/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Evropa/Gibraltar" #: timezones.h:744 #, fuzzy msgid "Europe/Guernsey" msgstr "Evropa/Atene" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Evropa/Helsinki" #: timezones.h:746 #, fuzzy msgid "Europe/Isle_of_Man" msgstr "Evropa/Oslo" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Evropa/Carigrad" #: timezones.h:748 #, fuzzy msgid "Europe/Jersey" msgstr "Evropa/Pariz" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Evropa/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Evropa/Kijev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Evropa/Lizbona" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Evropa/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Evropa/London" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Evropa/Luksemburg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Evropa/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Evropa/Malta" #: timezones.h:765 #, fuzzy msgid "Europe/Mariehamn" msgstr "Evropa/Madrid" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Evropa/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Evropa/Monako" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Evropa/Moskva" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Evropa/Nikozija" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Evropa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Evropa/Pariz" #: timezones.h:774 #, fuzzy msgid "Europe/Podgorica" msgstr "Evropa/Andora" #: timezones.h:775 msgid "Europe/Prague" msgstr "Evropa/Praga" #: timezones.h:776 msgid "Europe/Riga" msgstr "Evropa/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Evropa/Rim" #: timezones.h:778 msgid "Europe/Samara" msgstr "Evropa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Evropa/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Evropa/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Evropa/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Evropa/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Evropa/Sofija" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Evropa/Stockholm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Evropa/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Evropa/Tirana" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Evropa/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Evropa/Užgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Evropa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Evropa/Vatikan" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Evropa/Benetke" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Evropa/Vilnius" #: timezones.h:799 #, fuzzy msgid "Europe/Volgograd" msgstr "Evropa/Beograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Evropa/VarÅ”ava" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Evropa/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Evropa/Zaporožje" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Evropa/Zürich" #: timezones.h:808 msgid "Factory" msgstr "TovarniÅ”ki" #: timezones.h:809 msgid "GB" msgstr "VB" #: timezones.h:810 msgid "GB-Eire" msgstr "VB-Irska" #: timezones.h:811 msgid "GMT" msgstr "GVČ" #: timezones.h:812 msgid "GMT0" msgstr "GVČ0" #: timezones.h:813 msgid "GMT-0" msgstr "GVČ-0" #: timezones.h:814 msgid "GMT+0" msgstr "GVČ+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Iceland" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Indijski/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Indijski/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Indijski/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Indijski/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Indijski/Comoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Indijski/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Indijski/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Indijski/Maldivi" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Indijski/Mauricius" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Indijski/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Indijski/Reunion" #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "Izrael" #: timezones.h:833 msgid "Jamaica" msgstr "Jamajka" #: timezones.h:834 msgid "Japan" msgstr "Japonska" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libija" #: timezones.h:837 msgid "MET" msgstr "SEČ" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Mehika/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Mehika/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Mehika/General" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Mideast/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Mideast/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Mideast/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Pacifik/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Pacifik/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Pacifik/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 #, fuzzy msgid "Chatham Islands" msgstr "Čile/EasterIsland" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "Pacifik/Truk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 #, fuzzy msgid "Pacific/Easter" msgstr "Pacifik/Easter" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Pacifik/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Pacifik/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Pacifik/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Pacifik/Fidži" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Pacifik/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Pacifik/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Pacifik/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Pacifik/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Pacifik/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Pacifik/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 #, fuzzy msgid "Hawaii" msgstr "US/Hawaii" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Pacifik/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Pacifik/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Pacifik/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 #, fuzzy msgid "Kosrae" msgstr "Izrael" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Pacifik/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Pacifik/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Pacifik/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Pacifik/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Pacifik/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Pacifik/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Pacifik/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Pacifik/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Pacifik/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Pacifik/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Pacifik/Pitcairn" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "Pacifik/Ponape" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Pacifik/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Pacifik/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Pacifik/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Pacifik/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Pacifik/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Pacifik/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Pacifik/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 #, fuzzy msgid "Gilbert Islands" msgstr "Čile/EasterIsland" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Pacifik/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Pacifik/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Pacifik/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Pacifik/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Pacifik/Yap" #: timezones.h:929 msgid "Poland" msgstr "Poljska" #: timezones.h:930 msgid "Portugal" msgstr "Portugalska" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapur" #: timezones.h:937 msgid "Turkey" msgstr "Turčija" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Univerzalni" #: timezones.h:940 msgid "US/Alaska" msgstr "US/Aljaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "US/Aleutian" #: timezones.h:942 msgid "US/Arizona" msgstr "US/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "US/Centralni" #: timezones.h:944 msgid "US/Eastern" msgstr "US/Vzhodni" #: timezones.h:945 msgid "US/East-Indiana" msgstr "US/Vzhodna-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "US/Hawaii" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "US/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "US/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "US/Mountain" #: timezones.h:950 msgid "US/Pacific" msgstr "US/Pacifik" #: timezones.h:951 msgid "US/Samoa" msgstr "US/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "ZEČ" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" #, fuzzy #~ msgid "US/Pacific-New" #~ msgstr "US/Pacifik" #~ msgid "SystemV/AST4" #~ msgstr "SystemV/AST4" #~ msgid "SystemV/AST4ADT" #~ msgstr "SystemV/AST4ADT" #~ msgid "SystemV/CST6" #~ msgstr "SystemV/CST6" #~ msgid "SystemV/CST6CDT" #~ msgstr "SystemV/CST6CDT" #~ msgid "SystemV/EST5" #~ msgstr "SystemV/EST5" #~ msgid "SystemV/EST5EDT" #~ msgstr "SystemV/EST5EDT" #~ msgid "SystemV/HST10" #~ msgstr "SystemV/HST10" #~ msgid "SystemV/MST7" #~ msgstr "SystemV/MST7" #~ msgid "SystemV/MST7MDT" #~ msgstr "SystemV/MST7MDT" #~ msgid "SystemV/PST8" #~ msgstr "SystemV/PST8" #~ msgid "SystemV/PST8PDT" #~ msgstr "SystemV/PST8PDT" #~ msgid "SystemV/YST9" #~ msgstr "SystemV/YST9" #~ msgid "SystemV/YST9YDT" #~ msgstr "SystemV/YST9YDT" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/fr.po0000664000175000017500000020172414632072346023674 0ustar fabiofabio# translation of timezones.tip.po to french # translation of fr.po to # Copyright (C) 2001 Red Hat, Inc. # # Bettina De Monti , 2001, 2006. # Thomas Canniot , 2006. # Alain PORTAL , 2007. # Gauthier Ancelin , 2008. # Thomas Canniot , 2009, 2010. msgid "" msgstr "" "Project-Id-Version: timezones.tip\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-09-05 17:53+0200\n" "Last-Translator: Thomas Canniot \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: fr\n" "X-Generator: Lokalize 1.1\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Afrique/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Afrique/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Afrique/Addis_Abeba" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Afrique/Alger" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Afrique/Asmara" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Afrique/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Afrique/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Afrique/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Afrique/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Afrique/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Afrique/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Afrique/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Afrique/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Afrique/Le Caire" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Afrique/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Afrique/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Ceuta & Melilla" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Afrique/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Afrique/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Afrique/Dar_Es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Afrique/Djibouti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Afrique/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Afrique/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Afrique/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Afrique/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Afrique/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Afrique/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Afrique/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Afrique/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Afrique/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Afrique/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "Ouest de la RĆ©publique dĆ©mocratique du Congo" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Afrique/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Afrique/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Afrique/LomĆ©" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Afrique/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Afrique/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "Est de la RĆ©publique dĆ©mocratique du Congo" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Afrique/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Afrique/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Afrique/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Afrique/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Afrique/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Afrique/Mogadiscio" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Afrique/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Afrique/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Afrique/NDjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Afrique/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Afrique/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Afrique/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Afrique/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Afrique/Sao_TomĆ©" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Afrique/Tombouctou" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Afrique/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Afrique/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Afrique/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "AmĆ©rique/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "Ǝles AlĆ©outiennes" #: timezones.h:63 msgid "America/Anchorage" msgstr "AmĆ©rique/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "Heure de l'Alaska" #: timezones.h:66 msgid "America/Anguilla" msgstr "AmĆ©rique/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "AmĆ©rique/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "AmĆ©rique/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Tocantins" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "AmĆ©rique/Argentine/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Buenos Aires (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "AmĆ©rique/Argentine/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "Catamarca (CT), Chubut (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "AmĆ©rique/Argentine/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "AmĆ©rique/Argentine/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "lieux divers (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "AmĆ©rique/Argentine/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Jujuy (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "AmĆ©rique/Argentine/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "La Rioja (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "AmĆ©rique/Argentine/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "Mendoza (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "AmĆ©rique/Argentine/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Santa Cruz (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "AmĆ©rique/Argentine/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "AmĆ©rique/Argentine/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "San Juan (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "AmĆ©rique/Argentine/San_Luis" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "San Luis (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "AmĆ©rique/Argentine/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Tucuman (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "AmĆ©rique/Argentine/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Terre de Feu (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "AmĆ©rique/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "AmĆ©rique/Asuncion" #: timezones.h:110 msgid "America/Atikokan" msgstr "AmĆ©rique/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "Heure de l'Est - Atikokan, Ontario et Southampton I, Nunavut" #: timezones.h:113 msgid "America/Atka" msgstr "AmĆ©rique/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "AmĆ©rique/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "Bahia" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "AmĆ©rique/Bahia_Banderas" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "AmĆ©rique/Barbade" #: timezones.h:121 msgid "America/Belem" msgstr "AmĆ©rique/BelĆ©m" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "Amapa, Est du Paraguay" #: timezones.h:124 msgid "America/Belize" msgstr "AmĆ©rique/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "AmĆ©rique/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "Heure de l'Atlantique - QuĆ©bec - CĆ“te Nord" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Amerique/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "Roraima" #: timezones.h:131 msgid "America/Bogota" msgstr "AmĆ©rique/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "AmĆ©rique/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "Heure des Montagnes - Idaho du Sud & OrĆ©gon de l'Est" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "AmĆ©rique/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Amerique/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "Heure des Montagnes - Nunavut de l'Ouest" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "AmĆ©rique/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "Mato Grosso du Sud" #: timezones.h:142 msgid "America/Cancun" msgstr "AmĆ©rique/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "Heure du Centre - Quintana Roo" #: timezones.h:145 msgid "America/Caracas" msgstr "AmĆ©rique/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "AmĆ©rique/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "AmĆ©rique/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "AmĆ©rique/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "AmĆ©rique/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "Heure du Centre" #: timezones.h:152 msgid "America/Chihuahua" msgstr "AmĆ©rique/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" "Heure des Montagnes MĆ©xicaines - Ɖtat de Chihuahua loin de la frontiĆØre" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "AmĆ©rique/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "AmĆ©rique/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "AmĆ©rique/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "AmĆ©rique/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "Mato Grosso" #: timezones.h:161 msgid "America/Curacao" msgstr "AmĆ©rique/CuraƧao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "AmĆ©rique/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "Ittoqqortoormiit du Nord, cĆ“te Est" #: timezones.h:165 msgid "America/Dawson" msgstr "AmĆ©rique/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "Heure du Pacifique - Yukon du Nord" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "AmĆ©rique/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" "Heure des Montagnes - Dawson Creek & Fort Saint John, Colombie-Britannique" #: timezones.h:171 msgid "America/Denver" msgstr "AmĆ©rique/Denver" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "Heure des Montagnes" #: timezones.h:174 msgid "America/Detroit" msgstr "AmĆ©rique/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "Heure de l'Est - Michigan - lieux divers" #: timezones.h:177 msgid "America/Dominica" msgstr "AmĆ©rique/Dominique" #: timezones.h:178 msgid "America/Edmonton" msgstr "AmĆ©rique/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" "Heure des Montagnes - Alberta, Colombie-Britannique de l'Est & Saskatchewan " "de l'Ouest" #: timezones.h:181 msgid "America/Eirunepe" msgstr "AmĆ©rique/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "Ouest de l'Amazonas" #: timezones.h:184 msgid "America/El_Salvador" msgstr "AmĆ©rique/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "AmĆ©rique/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "AmĆ©rique/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "Nord-Est du BrĆ©sil (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "AmĆ©rique/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "AmĆ©rique/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" "Heure de l'Atlantique - Nouvelle-Ɖcosse - lieux n'ayant pas respectĆ© DST de " "1966 Ć  1971" #: timezones.h:193 msgid "America/Godthab" msgstr "AmĆ©rique/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "lieux divers" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "AmĆ©rique/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "Heure de l'Atlantique - Labrador - lieux divers" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "AmĆ©rique/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "AmĆ©rique/Grenade" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "AmĆ©rique/Guadeloupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "AmĆ©rique/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "AmĆ©rique/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "principale rĆ©gion" #: timezones.h:206 msgid "America/Guyana" msgstr "AmĆ©rique/Guyane" #: timezones.h:207 msgid "America/Halifax" msgstr "AmĆ©rique/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" "Heure de l'Atlantique - Nouvelle-Ɖcosse (lieux divers), Ǝle-du-Prince-Ɖdouard" #: timezones.h:210 msgid "America/Havana" msgstr "AmĆ©rique/La Havane" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Amerique/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "Heure des Montagnes - Sonora" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "AmĆ©rique/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "Heure de l'Est - Indiana - lieux divers" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "AmĆ©rique/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "Heure du Centre - Indiana - ComtĆ© de Starke" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "AmĆ©rique/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "Heure de l'Est - Indiana - ComtĆ© de Crawford" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "AmĆ©rique/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "Heure de l'Est - Indiana - ComtĆ© de Pike" #: timezones.h:226 msgid "America/Indianapolis" msgstr "AmĆ©rique/Indianapolis" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "AmĆ©rique/Indiana/Tell_City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "Heure du Centre - Indiana - ComtĆ© de Perry" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "AmĆ©rique/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "Heure de l'Est - Indiana - ComtĆ© de Switzerland" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "AmĆ©rique/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "Heure de l'Est - Indiana - ComtĆ©s de Daviess, Dubois, Knox & Martin" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "AmĆ©rique/Indiana/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "Heure de l'Est - Indiana - ComtĆ© de Pulaski" #: timezones.h:239 msgid "America/Inuvik" msgstr "AmĆ©rique/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "Heure des Montagnes - Ouest des Territoires du Nord-Ouest" #: timezones.h:242 msgid "America/Iqaluit" msgstr "AmĆ©rique/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "Heure de l'Est - Nunavut de l'Est - lieux divers" #: timezones.h:245 msgid "America/Jamaica" msgstr "AmĆ©rique/JamaĆÆque" #: timezones.h:246 msgid "America/Jujuy" msgstr "AmĆ©rique/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "AmĆ©rique/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "Heure de l'Alaska - Queue de poĆŖle de l'Alaska" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "AmĆ©rique/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "Heure de l'Est - Kentucky - Zone de Louisville" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "AmĆ©rique/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "Heure de l'Est - Kentucky - ComtĆ© de Wayne" #: timezones.h:256 msgid "America/Knox_IN" msgstr "AmĆ©rique/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "AmĆ©rique/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "AmĆ©rique/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "AmĆ©rique/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "Heure du Pacifique" #: timezones.h:262 msgid "America/Louisville" msgstr "AmĆ©rique/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "AmĆ©rique/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "Alagoas, Sergipe" #: timezones.h:266 msgid "America/Managua" msgstr "AmĆ©rique/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "AmĆ©rique/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "Est de l'Amazone" #: timezones.h:270 msgid "America/Marigot" msgstr "AmĆ©rique/Marigot" #: timezones.h:271 msgid "America/Martinique" msgstr "AmĆ©rique/Martinique" #: timezones.h:272 msgid "America/Matamoros" msgstr "AmĆ©rique/Matamoros" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" "Heure du Centre des Ɖtats-Unis - Coahuila, Ɖtat du Durango, Nouveau León, " "Tamaulipas" #: timezones.h:275 msgid "America/Mazatlan" msgstr "AmĆ©rique/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "Heure des Montagnes - S Baja, Nayarit, Sinaloa" #: timezones.h:278 msgid "America/Mendoza" msgstr "AmĆ©rique/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "AmĆ©rique/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" "Heure du Centre - Michigan - ComtĆ©s de Dickinson, Gogebic, Iron & Menominee" #: timezones.h:282 msgid "America/Merida" msgstr "AmĆ©rique/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "Heure du Centre - Ɖtat du Campeche, Yucatan" #: timezones.h:285 msgid "America/Mexico_City" msgstr "AmĆ©rique/Mexico" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "Heure du Centre - lieux divers" #: timezones.h:288 msgid "America/Miquelon" msgstr "AmĆ©rique/Miquelon" #: timezones.h:289 msgid "America/Moncton" msgstr "AmĆ©rique/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "Heure de l'Atlantique - Nouveau-Brunswick" #: timezones.h:292 msgid "America/Monterrey" msgstr "AmĆ©rique/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" "Heure du Centre, MĆ©xique - Coahuila, Ɖtat du Durango, Nouveau León, " "Tamaulipas" #: timezones.h:295 msgid "America/Montevideo" msgstr "AmĆ©rique/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "AmĆ©rique/MontrĆ©al" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "Heure de l'Est - QuĆ©bec - lieux divers" #: timezones.h:299 msgid "America/Montserrat" msgstr "AmĆ©rique/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "AmĆ©rique/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "AmĆ©rique/New_York" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "Heure de l'Est" #: timezones.h:304 msgid "America/Nipigon" msgstr "AmĆ©rique/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" "Heure de l'Est - Ontario & QuĆ©bec - lieux n'ayant pas respectĆ© le DST 1967-" "1973" #: timezones.h:307 msgid "America/Nome" msgstr "AmĆ©rique/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "Heure de l'Alaska - Alaska de l'Ouest" #: timezones.h:310 msgid "America/Noronha" msgstr "AmĆ©rique/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "Ǝles de l'Atlantique" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "AmĆ©rique/Dakota_du_Nord/Centre" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "Heure du Centre - Dakota du Nord - ComtĆ© d'Oliver" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "AmĆ©rique/Dakota_du_Nord/New_Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" "Heure du Centre - Dakota du Nord - ComtĆ© du Morton (sauf la rĆ©gion Mandan)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "AmĆ©rique/Ojinaga" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "Heure des Montagnes des Ɖtats-Unis - Ɖtat de Chihuahua" #: timezones.h:322 msgid "America/Panama" msgstr "AmĆ©rique/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "AmĆ©rique/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "Heure de l'Est - Pangnirtung, Nunavut" #: timezones.h:326 msgid "America/Paramaribo" msgstr "AmĆ©rique/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "AmĆ©rique/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "Heure des Montagnes - Arizona" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "AmĆ©rique/Port_au_Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "AmĆ©rique/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "AmĆ©rique/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "AmĆ©rique/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "Rondonia" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "AmĆ©rique/Puerto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "AmĆ©rique/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "Heure du Centre - Rainy River & Fort Frances, Ontario" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "AmĆ©rique/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "Heure du Centre - Nunavut du Centre" #: timezones.h:343 msgid "America/Recife" msgstr "AmĆ©rique/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "Pernambuco" #: timezones.h:346 msgid "America/Regina" msgstr "AmĆ©rique/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "Heure du Centre - Saskatchewan - lieux divers" #: timezones.h:349 msgid "America/Resolute" msgstr "AmĆ©rique/Resolute" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "Heure de l'Est - Resolute, Nunavut" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "AmĆ©rique/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "Acre" #: timezones.h:355 msgid "America/Rosario" msgstr "AmĆ©rique/Rosario" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "AmĆ©rique/Santa_Isabel" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "Heure du MĆ©xique cĆ“te Pacifique - Baja California loin de la frontiĆØre" #: timezones.h:359 msgid "America/Santarem" msgstr "AmĆ©rique/SantarĆ©m" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "Ouest du Paraguay" #: timezones.h:362 msgid "America/Santiago" msgstr "AmĆ©rique/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "AmĆ©rique/Saint_Domingue" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "AmĆ©rique/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "Sud et du Sud-Est du BrĆ©sil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "AmĆ©rique/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Scoresbysund / Ittoqqortoormiit" #: timezones.h:372 msgid "America/Shiprock" msgstr "AmĆ©rique/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "Heure des Montagnes - Navajo" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "AmĆ©rique/Saint_BarthĆ©lemy" #: timezones.h:376 msgid "America/St_Johns" msgstr "AmĆ©rique/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "Heure de Terre-Neuve, inclut le Labrador du Sud-Est" #: timezones.h:379 msgid "America/St_Kitts" msgstr "AmĆ©rique/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "AmĆ©rique/Sainte_Lucie" #: timezones.h:381 msgid "America/St_Thomas" msgstr "AmĆ©rique/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "AmĆ©rique/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "AmĆ©rique/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "Heure du Centre - Saskatchewan - Middle West" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "AmĆ©rique/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "AmĆ©rique/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "Thule / Pituffik" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "AmĆ©rique/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "Heure de l'Est - Thunder Bay, Ontario" #: timezones.h:393 msgid "America/Tijuana" msgstr "AmĆ©rique/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" "Heure des Ɖtats-Unis / CĆ“te Pacifique - Baja California proche de la " "frontiĆØre US" #: timezones.h:396 msgid "America/Toronto" msgstr "AmĆ©rique/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "Heure de l'Est - Ontario - lieux divers" #: timezones.h:399 msgid "America/Tortola" msgstr "AmĆ©rique/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "AmĆ©rique/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "Heure du Pacifique - Colombie-Britannique de l'Ouest" #: timezones.h:403 msgid "America/Virgin" msgstr "AmĆ©rique/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "AmĆ©rique/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "Heure du Pacifique - Yukon du Sud" #: timezones.h:407 msgid "America/Winnipeg" msgstr "AmĆ©rique/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "Heure du Centre - ManitĆ“be & Ontario de l'Ouest" #: timezones.h:410 msgid "America/Yakutat" msgstr "AmĆ©rique/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "Heure de l'Alaska - Queue de poĆŖle de l'Alaska" #: timezones.h:413 msgid "America/Yellowknife" msgstr "AmĆ©rique/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "Heure des Montagnes - Centre des Territoires du Nord-Ouest" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Antarctique/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "Base antarctique Casey, PĆ©ninsule de Bailey" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Antarctique/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "Base antarctique Davis, Vestfold Hills" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Antarctique/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Base antarctique Dumont d'Urville, Terre AdĆ©lie" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "Antarctique/Macquarie" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "Station de l'Ć®le Macquarie, Ǝle de Macquarie" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Antarctique/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "Base antarctique Mawson, Holme Bay" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Antarctique/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "Base antarctique McMurdo, Ǝle de Ross" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Antarctique/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "Station Palmer, Ǝle Anvers" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Antarctique/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "Base antarctique Rothera, Ǝle AdĆ©laĆÆde" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antarctique/PĆ“le_Sud" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "Station d'Amundsen-Scott, PĆ“le Sud" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Antarctique/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "Station Syowa, E Ongul I" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Antarctique/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "Base antarctique Vostok, PĆ“le Sud" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Arctique/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Asie/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Asie/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Asie/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Asie/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "Moscou+08 - Mer de BĆ©ring" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Asie/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "Atyraou, Manguistaou" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Asie/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "AktioubĆ©" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Asie/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Asie/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Asie/Bagdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Asie/BahraĆÆn" #: timezones.h:468 msgid "Asia/Baku" msgstr "Asie/Bakou" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Asie/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Asie/Beyrouth" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Asie/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Asie/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Asie/Calcutta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Asie/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "Dornod, Sukhbaatar" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Asie/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "Centre de la Chine - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." #: timezones.h:480 msgid "Asia/Chungking" msgstr "Asie/Chung_ching" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Asie/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Asie/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Asie/Damas" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Asie/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Asie/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Asie/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Asie/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Asie/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Asie/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Heilongjiang (sauf Mohe), Jilin" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "Asie/Ho_Chi_Minh" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Asie/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Asie/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Asie/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "Moscou+05 - Lac BaĆÆkal" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Asie/Istanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Asie/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "Java & Sumatra" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Asie/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "Nouvelle-GuinĆ©e occidentale & les Moluques" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Asie/JĆ©rusalem" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Asie/Kaboul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Asie/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "Moscou+08 - Kamtchatka" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Asie/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Asie/Kachgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "Tibet Ouest & Xinjiang" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "Asie/Katmandou" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Asie/Katmandou" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "Asie/Calcutta" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Asie/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "Moscou+04 - RiviĆØre IenisseĆÆ" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Asie/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "Malaisie pĆ©ninsulaire" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Asie/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "Sabah & Sarawak" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Asie/Koweit" #: timezones.h:529 msgid "Asia/Macao" msgstr "Asie/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Asie/Macao" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Asie/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "Moscou+08 - Magadan" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Asie/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "BornĆ©o Est et Sud, Celebes, Bali, Nusa Tengarra, Timor Ouest" #: timezones.h:537 msgid "Asia/Manila" msgstr "Asie/Manille" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Asie/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Asie/Nicosie" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "Asie/Novokuznetsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "Moscou+03 - Novokuznetsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Asie/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "Moscou+03 - Novossibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Asie/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "Moscou+03 - SibĆ©rie de l'Ouest" #: timezones.h:549 msgid "Asia/Oral" msgstr "Asie/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "Kazakhstan-Occidental" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Asie/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Asie/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "BornĆ©o Ouest et Centrale" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Asie/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Asie/Qatar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Asie/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "Kyzylorda" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Asie/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Asie/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Asie/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Asie/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Asie/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Asie/Saigon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Asie/Sakhaline" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "Moscou+07 - Ǝle Sakhalin" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Asie/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "OuzbĆ©kistan de l'Ouest" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Asie/SĆ©oul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Asie/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "Est de la Chine - Beijing, Guangdong, Shanghai, etc." #: timezones.h:577 msgid "Asia/Singapore" msgstr "Asie/Singapour" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Asie/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Asie/Tachkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "OuzbĆ©kistan de l'Est" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Asie/Tbilissi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Asie/TĆ©hĆ©ran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Asie/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Asie/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Asie/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Asie/Tokyo" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Asie/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Asie/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Asie/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Asie/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "La plupart du Tibet & Xinjiang" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Asie/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Asie/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "Moscou+07 - Fleuve Amour" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Asie/Yakoutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "Moscou+06 - Fleuve LĆ©na" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Asie/Ekaterinbourg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "Moscou+02 - Oural" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Asie/Erevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlantique/AƧores" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "AƧores" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlantique/Bermudes" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlantique/Canaries" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "Ǝles Canaries" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlantique/Cap_Vert" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlantique/FĆ©roĆ©" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "Atlantique/FĆ©roĆ©" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlantique/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlantique/MadĆØre" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "Ǝles MadĆØre" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlantique/Reykjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlantique/GĆ©orgie_du_sud" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlantique/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlantique/Sainte_HĆ©lĆØne" #: timezones.h:625 msgid "Australia/ACT" msgstr "Australie/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Australie/AdelaĆÆde" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "Australie du Sud" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Australie/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "Queensland - lieux divers" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Australie/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "Nouvelle-Galles du Sud - Yancowinna" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Australie/Canberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "Australie/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "Tasmanie - Ǝle King" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Australie/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "Territoire du Nord" #: timezones.h:642 msgid "Australia/Eucla" msgstr "Australie/Eucla" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "Australie de l'Ouest - zone de l'Eucla" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Australie/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "Tasmanie - lieux divers" #: timezones.h:648 msgid "Australia/LHI" msgstr "Australie/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Australie/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "Queensland - Ǝles Holiday" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Australie/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "Ć®le Lord Howe" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Australie/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "Australie/Nord" #: timezones.h:659 msgid "Australia/NSW" msgstr "Australie/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "Australie/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "Australie de l'Ouest - lieux divers" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Australie/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "Australie/Sud" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Australie/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "Nouvelle-Galles du Sud - lieux divers" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Australie/Tasmanie" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Australie/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "Australie/Ouest" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Australie/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "BrĆ©sil/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "BrĆ©sil/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "BrĆ©sil/Est" #: timezones.h:675 msgid "Brazil/West" msgstr "BrĆ©sil/Ouest" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Canada/Atlantique" #: timezones.h:677 msgid "Canada/Central" msgstr "Canada/Central" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Canada/Est" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Canada/Saskatchewan_de_LEst" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Canada/Montagnes" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Canada/Terre_Neuve" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Canada/Pacifique" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Canada/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Canada/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Chili/Continental" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chili/Ile de PĆ¢ques" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Cuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Egypte" #: timezones.h:692 msgid "Eire" msgstr "Irlande" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universel" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Europe/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Europe/Andorre" #: timezones.h:732 msgid "Europe/Athens" msgstr "Europe/AthĆØnes" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Europe/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Europe/Belgrade" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Europe/Berlin" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Europe/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Europe/Bruxelles" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Europe/Bucarest" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Europe/Budapest" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Europe/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Europe/Copenhague" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Europe/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Europe/Gibraltar" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Europe/Guernsey" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Europe/Helsinki" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Europe/Isle_Of_Man" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Europe/Istanbul" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Europe/Jersey" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Europe/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "Moscou-01 - Kaliningrad" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Europe/Kiev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Europe/Lisbonne" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Europe/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Europe/Londres" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Europe/Luxembourg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Europe/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Europe/Malte" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Europe/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Europe/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Europe/Monaco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Europe/Moscou" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "Moscou+00 - Russie de l'Ouest" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Europe/Nicosie" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Europe/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Europe/Paris" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Europe/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Europe/Prague" #: timezones.h:776 msgid "Europe/Riga" msgstr "Europe/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Europe/Rome" #: timezones.h:778 msgid "Europe/Samara" msgstr "Europe/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "Moscou - Samara, Udmurtia" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Europe/Saint_Marin" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Europe/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Europe/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "CrimĆ©e Centrale" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Europe/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Europe/Sofia" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Europe/Stockholm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Europe/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Europe/Tirana" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Europe/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Europe/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "RuthĆ©nie" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Europe/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Europe/Vatican" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Europe/Vienne" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Europe/Vilnius" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Europe/Volgograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "Moscou+00 - Mer Caspienne" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Europe/Varsovie" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Europe/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Europe/Zaporozhye" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Zaporijia, Louhansk de l'Est" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Europe/Zurich" #: timezones.h:808 msgid "Factory" msgstr "Usine" #: timezones.h:809 msgid "GB" msgstr "Grande-Bretagne" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Irlande" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "Heure de Hawaii" #: timezones.h:818 msgid "Iceland" msgstr "Islande" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Inde/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Inde/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Inde/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Inde/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Inde/Comores" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Inde/KerguĆ©len" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Inde/MahĆ©" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Inde/Maldives" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Inde/Maurice" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Inde/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Inde/RĆ©union" #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "IsraĆ«l" #: timezones.h:833 msgid "Jamaica" msgstr "JamaĆÆque" #: timezones.h:834 msgid "Japan" msgstr "Japon" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libye" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Mexique/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Mexique/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Mexique/GĆ©nĆ©ral" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Moyen-Orient/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Moyen-Orient/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Moyen-Orient/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "HNR" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "Nouvelle-ZĆ©lande" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Pacifique/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Pacifique/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Pacifique/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "Ǝles Chatham" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "Pacifique/Chuuk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "Chuuk (Truk) et Yap" #: timezones.h:859 msgid "Pacific/Easter" msgstr "Pacifique/Ǝle de PĆ¢ques" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "Ǝle de PĆ¢ques & Ǝle Sala y Gómez" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Pacifique/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Pacifique/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "Ǝles Phœnix" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Pacifique/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Pacifique/Fidji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Pacifique/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Pacifique/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "Ǝles GalĆ”pagos" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Pacifique/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "Ǝles Gambier" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Pacifique/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Pacifique/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Pacifique/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "USA/HawaĆÆ" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Pacifique/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "Atoll de Johnston" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Pacifique/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "Ǝles de la Ligne" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Pacifique/KosraĆ©" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "Kosrae" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Pacifique/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Pacifique/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Pacifique/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "Ǝles Marquises" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Pacifique/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "Atoll de Midway" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Pacifique/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Pacifique/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Pacifique/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Pacifique/NoumĆ©a" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Pacifique/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Pacifique/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Pacifique/Pitcairn" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "Pacifique/Pohnpei" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "Pohnpei (Ponape)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Pacifique/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Pacifique/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Pacifique/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Pacifique/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Pacifique/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Pacifique/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "Ǝles de la SociĆ©tĆ©" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Pacifique/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "Ǝles Gilbert" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Pacifique/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Pacifique/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Pacifique/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "Wake" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Pacifique/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Pacifique/Yap" #: timezones.h:929 msgid "Poland" msgstr "Pologne" #: timezones.h:930 msgid "Portugal" msgstr "Portugal" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapour" #: timezones.h:937 msgid "Turkey" msgstr "Turquie" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universel" #: timezones.h:940 msgid "US/Alaska" msgstr "USA/Alaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "USA/AlĆ©outiennes" #: timezones.h:942 msgid "US/Arizona" msgstr "USA/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "USA/Central" #: timezones.h:944 msgid "US/Eastern" msgstr "USA/Est" #: timezones.h:945 msgid "US/East-Indiana" msgstr "USA/Indiana (Est)" #: timezones.h:946 msgid "US/Hawaii" msgstr "USA/Hawaii" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "USA/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "USA/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "USA/Montagnes" #: timezones.h:950 msgid "US/Pacific" msgstr "USA/Pacifique" #: timezones.h:951 msgid "US/Samoa" msgstr "USA/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" #~ msgid "US/Pacific-New" #~ msgstr "USA/Nouveau_Pacifique" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/ml.po0000664000175000017500000027472114632072346023704 0ustar fabiofabio# translation of system-config-date.master-timezones.ml.po to # translation of ml.po to # Ani Peter , 2006, 2007. msgid "" msgstr "" "Project-Id-Version: system-config-date.master-timezones.ml\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-12-06 15:13+0530\n" "Last-Translator: \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: \n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "\n" "\n" "\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“†ą“¬ą“æą“œą“¾ą“Øąµā€" #: timezones.h:2 msgid "Africa/Accra" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“…ą“•ąµą“•ąµą“±ą“¾" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“…ą“”ąµą“”ą“æą“øąµą“øąµ_ą“…ą“¬ą“¾ą“¬ą“¾" #: timezones.h:4 msgid "Africa/Algiers" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“…ą“²ąµā€ą“œą“æą“Æąµ‡ą““ąµą“øąµ" #: timezones.h:5 msgid "Africa/Asmara" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“…ą“øąµą“®ą“¾ą“±ą“¾" #: timezones.h:6 msgid "Africa/Asmera" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“…ą“øąµą“®ą“¾ą“±ą“¾" #: timezones.h:7 msgid "Africa/Bamako" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“¬ą“®ą“¾ą“•ąµą“•ąµ‹" #: timezones.h:8 msgid "Africa/Bangui" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“¬ą“¾ą“™ąµ†ą“Æąµ" #: timezones.h:9 msgid "Africa/Banjul" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“¬ą“¾ą“Øąµā€ą“œąµ‚ą“³ąµā€" #: timezones.h:10 msgid "Africa/Bissau" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“¬ą“æą“øąµą“øąµŒ" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“¬ąµą“³ą“¾ą“Øąµā€ą“Ÿąµˆą“°ąµā€ " #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“¬ąµą“°ą“¾ą“øąµą“øąµ†ą“µą“æą“²ąµā€" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“¬ąµą“œą“‚ą“¬ąµ‚ą“±ąµ†" #: timezones.h:14 msgid "Africa/Cairo" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“•ąµ†ą“Æąµą“±ąµ‹" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“•ą“øą“¾ą“¬ąµą“³ą“¾ą“Øąµā€ą“–ą“¾" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“øąµą“Æąµ‚ą“Ÿąµą“Ÿąµ†" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "ą“øąµą“Æąµ‚ą“Ÿąµą“Ÿą“¾ & ą“®ąµ†ą“²ąµ€ą“²ą“¾" #: timezones.h:19 msgid "Africa/Conakry" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“•ąµŠą“£ą“¾ą“•ąµą“•ąµą“°ą“æą“æ" #: timezones.h:20 msgid "Africa/Dakar" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“”ą“•ąµą“•ą“¾ą“°ąµā€" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“”ą“¾ą“°ąµā€_ą“Žą“øąµ_ą“øą“²ą“¾ą“‚" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“œą“æą“¬ąµ‹ą“Ÿąµą“Ÿą“æ" #: timezones.h:23 msgid "Africa/Douala" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“”ąµą“µą“¾ą“²ą“¾" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“Žą“²ąµā€_ą“†ą“Æąµą“‚" #: timezones.h:25 msgid "Africa/Freetown" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“«ąµą“°ąµ€ą“ŸąµŒą“£ąµā€" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“—ą“¬ą“±ąµ‹ą“£ąµ€" #: timezones.h:27 msgid "Africa/Harare" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“¹ą“±ą“¾ą“±ąµ†" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“œąµ‹ą“¹ą“Øąµą“Øą“øąµą“¬ą“°ąµā€ą“—ąµ" #: timezones.h:29 msgid "Africa/Kampala" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“•ą“‚ą“Ŗą“¾ą“²ą“¾" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“–ą“¾ą“°ąµā€ą“„ąµą“‚" #: timezones.h:31 msgid "Africa/Kigali" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“•ą“æą“—ą“¾ą“³ą“æ" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“•ą“æą“Øąµā€ą“·ą“¾ą“øą“¾" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "ą“Ŗą“Ÿą“æą“žąµą“žą“¾ą“±ą“Øąµā€ ą“”ąµ†ą“®ąµ‹ą“•ąµą“°ą“¾ą“±ąµą“±ą“æą“•ąµ ą““ą“«ąµ ą“•ąµ‹ą“™ąµą“•ąµ‹" #: timezones.h:35 msgid "Africa/Lagos" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“²ą“¾ą“—ąµ‹ą“øąµ" #: timezones.h:36 msgid "Africa/Libreville" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“²ą“æą“¬ąµą“°ąµ‡ą“µą“æą“²ąµā€" #: timezones.h:37 msgid "Africa/Lome" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“²ąµ‹ą“®ąµ†" #: timezones.h:38 msgid "Africa/Luanda" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“²ąµą“µą“¾ą“Øąµā€ą“”ą“¾" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“²ąµą“¬ąµą“‚ą“¬ą“¾ą“·ąµ€" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“”ąµ†ą“®ąµ‹ą“•ąµą“°ą“¾ą“±ąµą“±ą“æą“•ąµ ą““ą“«ąµ ą“•ąµ‹ą“™ąµą“•ąµ‹" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“²ąµą“øą“¾ą“•ąµą“•ą“¾" #: timezones.h:43 msgid "Africa/Malabo" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“®ą“²ą“¾ą“¬ąµŠ" #: timezones.h:44 msgid "Africa/Maputo" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“®ą“Ŗąµ‚ą“±ąµą“±ąµŠ" #: timezones.h:45 msgid "Africa/Maseru" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“®ą“øąµ‡ą“±ąµ" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“Žą“‚ą“¬ą“¾ą“¬ą“¾ą“Øąµā€" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“®ąµŠą“—ą“¾ą“”ą“æą“·ąµ" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“®ąµŠą“£ąµā€ą“±ąµ‹ą“µąµą“Æą“¾" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“Øąµˆą“±ąµ‹ą“¬ą“æ" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“Žą“Øąµā€ą“œą“¾ą“®ąµ†ą“Øą“¾" #: timezones.h:51 msgid "Africa/Niamey" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“Øą“æą“Æą“¾ą“®ąµ†" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“Øąµą“µą“¾ą“•ąµą“·ąµ‹ą“Ÿąµą“Ÿąµ" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“µą“¾ą“—ą“”ąµ‚ą“—ąµ‚" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“Ŗąµ‹ą“°ąµā€ą“Ÿąµą“Ÿąµ‹ -ą“Øąµ‹ą“µąµ‹" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“øą“¾ą“µąµ‹_ą“±ąµą“±ąµ‹ą“®ąµ†" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“±ąµą“±ą“æą“‚ą“¬ą“•ąµą“•ąµą“±ąµą“±ąµ‚" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“Ÿąµą“°ą“æą“Ŗąµą“Ŗąµ‹ą“³ą“æ" #: timezones.h:58 msgid "Africa/Tunis" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“Ÿąµą“Æąµ€ą“£ą“æą“øąµ" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "ą“†ą“«ąµą“°ą“æą“•ąµą“•/ą“µą“æą“Øąµā€ą“”ąµą“¹ąµą“•ąµą“•ąµ" #: timezones.h:60 msgid "America/Adak" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Žą“”ą“¾ą“•ąµą“•ąµ" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "ą“…ą“²ąµ‚ą“·ąµą“Æą“Øąµā€ ą“ą“²ą“Øąµā€ą“”ąµą“•ą“³ąµā€" #: timezones.h:63 msgid "America/Anchorage" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“†ą“˜ą“±ąµ‡ą“œąµ" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "ą“…ą“²ą“¾ą“øąµą“•ąµą“•ą“¾ ą“øą“®ą“Æą“‚" #: timezones.h:66 msgid "America/Anguilla" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“†ą“Øąµā€ą“—ąµą“µą“æą“²" #: timezones.h:67 msgid "America/Antigua" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“†ą“Øąµą“±ą“æą“—ąµą“µą“¾" #: timezones.h:68 msgid "America/Araguaina" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“…ą“°ą“—ąµą“µąµˆą“Ø" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "ą“Ÿąµ‹ą“•ąµą“•ą“¾ą“Øąµą“±ą“æą“øąµ" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“…ą“°ąµā€ą“œą“Øąµą“±ąµ€ą“Ø/ą“¬ąµą“µąµ‡ą“Øą“øąµ_ą“†ą“°ąµ€ą“øąµ" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "ą“¬ąµą“Æąµ‚ą“£ąµ‹ą“øąµ ą“Žą“Æą“°ąµā€ą“øąµ (ą“¬ą“æą“Ž, ą“øą“æą“Žą“«ąµ)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“…ą“°ąµā€ą“œą“Øąµą“±ąµ€ą“Ø/ą“•ą“¾ą“±ąµą“±ą“¾ą“®ą“¾ą“°ąµā€ą“•ąµą“•" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "ą“•ąµą“Æą“¾ą“±ąµą“±ą“®ą“¾ą“°ąµā€ą“•ą“¾ (CT), ą“•ąµą“Æąµ‚ą“¬ą“Ÿąµą“Ÿąµ (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“…ą“°ąµā€ą“œą“Øąµą“±ąµ€ą“Ø/ą“•ąµŠą“®ąµ‹ą“Ÿąµą“°ą“æą“µą“”ą“¾ą“µąµą“Æą“¾" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“…ą“°ąµā€ą“œą“Øąµą“±ąµ€ą“Ø/ą“•ąµŠą“°ąµā€ą“”ąµ‹ą“¬" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "ą“®ą“æą“•ąµą“•ąµ ą“øąµą“„ą“²ą“™ąµą“™ą“³ąµā€ (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“…ą“°ąµā€ą“œą“Øąµą“±ąµ€ą“Ø/ą“¹ąµ‚ą“µąµ€" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "ą“œąµą“œąµ‚ą“Æąµ (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“…ą“°ąµā€ą“œą“Øąµą“±ąµ€ą“Ø/ą“²_ą“±ą“æą“Æąµ‹ą“œ" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "ą“²ą“¾ ą“±ą“æą“Æąµ‹ą“œą“¾ (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“…ą“°ąµā€ą“œą“Øąµą“±ąµ€ą“Ø/ą“®ąµ†ą“Øąµā€ą“”ąµ‹ą“ø" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "ą“®ąµ†ą“Øąµā€ą“”ąµ‹ą“øą“¾ (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“…ą“°ąµā€ą“œą“Øąµą“±ąµ€ą“Ø/ą“±ą“æą“Æąµ‹_ą“—ą“²ąµą“²ąµ†ą“—ąµ‹ą“øąµ" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "ą“øą“¾ą“Øąµą“±ą“¾ ą“•ąµą“°ąµ‚ą“øąµ (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“…ą“°ąµā€ą“œą“Øąµą“±ąµ€ą“Ø/ą“øą“¾ą“²ąµā€ą“Ÿąµą“Ÿą“¾" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“…ą“°ąµā€ą“œą“Øąµą“±ąµ€ą“Ø/ą“øą“¾ą“Øąµā€_ą“µą“¾ą“Øąµā€" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "ą“øą“¾ą“Øąµā€ ą“œąµą“µą“¾ą“Øąµā€ (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“…ą“°ąµā€ą“œą“Øąµą“±ąµ€ą“Ø/ą“øą“¾ą“Øąµā€_ą“²ąµ‚ą“Æą“æą“øąµ" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "ą“øą“¾ą“Øąµā€ ą“²ąµ‚ą“Æą“æą“øąµ (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“…ą“°ąµā€ą“œą“Øąµą“±ąµ€ą“Ø/ą“±ąµą“±ąµą“•ąµą“•ąµą“®ą“¾ą“Øąµā€" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "ą“Ÿąµą“•ąµą“•ąµą“®ą“¾ą“Øąµā€ (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“…ą“°ąµā€ą“œą“Øąµą“±ąµ€ą“Ø/ą“‰ą“·ąµą“µą“¾ą“Æą“¾" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "ą“Ÿą“æą“Æą“±ą“¾ ą“”ąµ†ą“²ąµā€ ą“«ąµą“Æąµ‚ą“—ąµ‹ (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“…ą“±ąµ‚ą“¬" #: timezones.h:109 msgid "America/Asuncion" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“…ą“øąµ‚ą“£ąµā€ą“øąµą“Æąµ‹ą“Øąµā€" #: timezones.h:110 msgid "America/Atikokan" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“…ą“±ąµą“±ą“æą“•ąµ‹ą“•ąµą“•ą“Øąµā€" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“øąµą“±ąµą“±ą“¾ą“Øąµā€ą“”ąµ‡ą“°ąµā€ą“”ąµ ą“øą“®ą“Æą“‚ - ą“…ą“±ąµą“±ą“æą“•ąµą“•ąµ‹ą“•ąµą“•ą“Øąµā€, ą“’ą“Øąµā€ą“Ÿą“¾ą“±ą“æą“Æąµ‹, ą“øąµŒą“¤ąµą“¤ą“¾ą“‚ą“Ŗąµą“Ÿą“Øąµā€ ą“, ą“Øąµą“Øą“¾ą“µą“¤ąµ" #: timezones.h:113 msgid "America/Atka" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“…ą“Ÿąµą“Ÿąµą“•ąµą“•" #: timezones.h:114 msgid "America/Bahia" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“¬ą“¾ą“¹ąµą“Æą“¾" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "ą“¬ą“¾ą“¹ą“æą“Æą“¾" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“¬ą“¾ą“¹ą“æą“Æą“¾_ą“¬ą“¾ą“Øąµā€ą“”ąµ†ą“°ą“¾ą“øąµ" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "ą“®ąµ†ą“•ąµą“øą“æą“•ąµą“•ą“Øąµā€ ą“øąµ†ą“Øąµā€ą“Ÿąµą“°ą“²ąµā€ ą“øą“®ą“Æą“‚ - ą“¬ą“¾ą“¹ą“æą“øą“¾ ą“”ąµ€ ą“¬ą“¾ą“Øąµā€ą“”ąµ†ą“°ą“¾ą“øąµ" #: timezones.h:120 msgid "America/Barbados" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“¬ą“°ąµā€ą“¬ą“¾ą“”ąµ‹ą“øąµ" #: timezones.h:121 msgid "America/Belem" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“¬ąµ†ą“²ąµ†ą“‚" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "ą“…ą“®ą“¾ą“Ŗą“¾, ą“‡ ą“Ŗą“¾ą“°ą“¾" #: timezones.h:124 msgid "America/Belize" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“¬ąµ†ą“²ąµ€ą“øąµ" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“¬ąµą“³ą“¾ą“Øąµā€ą“•ąµ-ą“øą“¾ą“¬ąµą“³ąµ‹ą“£ąµā€" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "ą“…ą“±ąµą“±ąµą“²ą“¾ą“Øąµą“±ą“æą“•ąµ ą“øąµą“±ąµą“±ą“¾ą“Øąµā€ą“”ąµ‡ą“°ąµā€ą“”ąµ ą“øą“®ą“Æą“‚ - ą“•ąµą“Æąµ‚ą“¬ąµ†ą“•ąµ - ą“²ąµ‹ą“µą“°ąµā€ ą“Øąµ‹ą“°ąµā€ą“¤ąµą“¤ąµ ą“øąµą“±ąµą“±ąµ‹ą“°ąµā€" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“¬ąµą“µą“¾_ą“µą“æą“øąµą“¤ą“¾" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "ą“±ąµŠą“±ąµˆą“®ą“¾" #: timezones.h:131 msgid "America/Bogota" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“¬ąµŠą“—ąµ‹ą“±ąµą“±ą“¾" #: timezones.h:132 msgid "America/Boise" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“¬ąµŠą“Æą“æą“øąµ" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "ą“®ąµŒą“£ąµą“Ÿą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“¤ąµ†ą“•ąµą“•ąµ ą“‡ą“”ą“¾ą“¹ąµ‹ & ą“•ą“æą““ą“•ąµą“•ąµ ą““ą“°ąµā€ą“—ą“¾ą“Øąµ‹" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“¬ąµą“µąµ‡ą“Øą“øąµ_ą“†ą“°ąµ€ą“øąµ" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“•ąµą“•ąµ‡ą“¬ąµą“°ą“æą“”ąµą“œąµ_ą“¬ąµ†" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "ą“®ąµŒą“£ąµą“Ÿą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“Ŗą“Ÿą“æą“žąµą“žą“¾ą“±ą“Øąµā€ ą“Øąµą“Øą“¾ą“µą“¤ąµ" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“•ąµą“Æą“¾ą“®ąµą“Ŗąµ‹_ą“—ąµą“°ą“¾ą“Øąµą“”ąµ‡" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "ą“®ą“¾ą“±ąµą“±ąµ‹ ą“—ąµą“°ąµ‹ą“øąµą“øąµ‹ ą“”ąµ‹ ą“øąµą“²ąµā€" #: timezones.h:142 msgid "America/Cancun" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“•ąµą“Æą“¾ą“Øąµā€ą“•ąµ‚ą“£ąµā€" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "ą“øąµ†ą“Øąµā€ą“Ÿąµą“°ą“²ąµā€ ą“øą“®ą“Æą“‚ - ą“•ąµą“µą“æą“Øąµą“±ą“¾ą“Øą“¾ ą“±ąµ‚" #: timezones.h:145 msgid "America/Caracas" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“•ą“¾ą“±ą“•ąµą“•ą“¾ą“øąµ" #: timezones.h:146 msgid "America/Catamarca" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“•ą“¾ą“±ąµą“±ą“¾ą“®ą“¾ą“°ąµā€ą“•ąµą“•" #: timezones.h:147 msgid "America/Cayenne" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“•ą“Æąµ‡ą“Øąµā€" #: timezones.h:148 msgid "America/Cayman" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“•ąµ†ą“Æąµą“®ą“¾ą“Øąµā€" #: timezones.h:149 msgid "America/Chicago" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“·ą“æą“•ąµą“•ą“¾ą“—ąµ‹" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "ą“øąµ†ą“Øąµā€ą“Ÿąµą“°ą“²ąµā€ ą“øą“®ą“Æą“‚" #: timezones.h:152 msgid "America/Chihuahua" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“šą“æą“µą“¾ą“µą“¾" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "ą“®ąµ†ą“•ąµą“øą“æą“•ąµą“•ą“Øąµā€ ą“®ąµŒą“£ąµą“Ÿą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“šą“æą“¹ąµą“µą“¾ą“¹ąµą“µą“¾, ą“Æąµą“Žą“øąµ ą“…ą“¤ą“æą“°ąµā€ą“¤ąµą“¤ą“æą“Æą“æą“²ąµā€ ą“Øą“æą“Øąµą“Øąµą“‚ ą“¦ąµ‚ą“°ąµ†" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“•ąµ‹ą“±ą“²ąµā€_ą“¹ą“¾ą“°ąµā€ą“¬ą“°ąµā€" #: timezones.h:156 msgid "America/Cordoba" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“•ąµŠą“°ąµā€ą“”ąµ‹ą“¬" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“•ąµ‹ą“øąµą“±ąµą“±ą“¾_ą“±ą“æą“•ąµą“•ą“¾" #: timezones.h:158 msgid "America/Cuiaba" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“•ąµą“Æąµ‡ą“¬" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "ą“®ą“¾ą“±ąµą“±ąµ‹ ą“—ąµą“°ąµ‹ą“øąµą“øąµ‹" #: timezones.h:161 msgid "America/Curacao" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“•ąµą“±ąµ‡ą“øąµŒ" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“”ą“Øąµā€ą“®ą“¾ą“°ąµā€ą“•ąµą“•ąµą“·ą“¾ą“µą“Øąµā€" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“•ąµ‹ą“øąµą“±ąµą“±ąµ, ą“µą“Ÿą“•ąµą“•ąµ ą“øąµą“•ąµ‹ą“°ąµā€ą“øąµą“¬ąµˆą“øą“Øąµā€ą“”ąµ" #: timezones.h:165 msgid "America/Dawson" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“”ąµ‹ą“øą“Øąµā€" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµ ą“øą“®ą“Æą“‚ - ą“µą“Ÿą“•ąµą“•ąµ ą“Æąµ‚ą“•ąµą“•ą“£ąµā€" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“”ąµ‹ą“øą“Øąµā€_ą“•ąµą“°ąµ€ą“•ąµą“•ąµ" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "ą“®ąµŒą“£ąµą“Ÿą“Øąµā€ ą“øąµą“±ąµą“±ą“¾ą“Øąµā€ą“”ąµ‡ą“°ąµā€ą“”ąµ ą“øą“®ą“Æą“‚ - ą“”ąµ‹ą“øą“£ąµā€ ą“•ąµą“°ąµ€ą“•ąµą“•ąµ & ą“«ąµ‹ą“°ąµā€ą“Ÿąµą“Ÿąµ ą“øąµ†ą“Æą“æą“Øąµą“±ąµ ą“œąµ‹ą“£ąµā€, ą“¬ąµą“°ą“æą“Ÿąµą“Ÿą“æą“·ąµ ą“•ąµŠą“³ą“‚ą“¬ą“æą“Æą“¾" #: timezones.h:171 msgid "America/Denver" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“”ąµ†ą“Øąµā€ą“µą“°ąµā€" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "ą“®ąµŒą“£ąµą“Ÿą“Øąµā€ ą“øą“®ą“Æą“‚" #: timezones.h:174 msgid "America/Detroit" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“”ąµ†ą“Ÿąµą“°ąµ‹ą“Æą“æą“±ąµą“±ąµ" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“®ą“æą“šąµą“šą“æą“—ą“Øąµā€ - ą“®ą“æą“•ąµą“• ą“øąµą“„ą“²ą“™ąµą“™ą“³ąµā€" #: timezones.h:177 msgid "America/Dominica" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“”ąµŠą“®ąµ†ą“Øą“æą“•ąµą“•" #: timezones.h:178 msgid "America/Edmonton" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Žą“Ÿąµą“®ą“£ąµā€ą“Ÿąµą“Ÿą“£ąµā€" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "ą“®ąµŒą“£ąµą“Ÿą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“†ą“²ąµā€ą“¬ąµ‡ą“°ąµā€ą“Ÿąµą“Ÿą“¾, ą“•ą“æą““ą“•ąµą“•ąµ ą“¬ąµą“°ą“æą“Ÿąµą“Ÿą“æą“·ąµ ą“•ąµŠą“³ą“‚ą“¬ą“æą“Æą“¾ & ą“Ŗą“Ÿą“æą“žąµą“žą“¾ą“±ą“Øąµā€ ą“øą“¾ą“øąµą“•ą“šąµą“šąµ‡ą“µą“Øąµā€" #: timezones.h:181 msgid "America/Eirunepe" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Æąµ‚ą“±ą“æą“Øąµ†ą“Æąµą“Ŗąµą“Ŗąµ" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "ą“Ŗą“Ÿą“æą“žąµą“žą“¾ą“±ą“Øąµā€ ą“…ą“®ąµ‡ą“øąµ‹ą“£ą“¾ą“øąµ" #: timezones.h:184 msgid "America/El_Salvador" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Žą“²ąµā€_ą“øą“¾ą“²ąµā€ą“µą“”ąµ‹ą“°ąµā€" #: timezones.h:185 msgid "America/Ensenada" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Žą“Øąµā€ą“øąµ†ą“Øą“¾ą“”ą“¾" #: timezones.h:186 msgid "America/Fortaleza" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“«ąµ‹ą“°ąµā€ą“Ÿąµą“Ÿą“²ąµ†ą“Æąµą“øą“¾" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "ą“¤ąµ†ą“•ąµą“•ąµ ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“¬ąµą“°ą“øąµ€ą“²ąµā€ (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“«ąµ‹ą“°ąµā€ą“Ÿąµą“Ÿąµ_ą“µąµ†ą“Æąµą“Øąµā€" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“—ąµą“³ąµ†ą“Æąµą“øąµ_ą“¬ąµ†" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "ą“…ą“±ąµą“±ąµą“²ą“¾ą“Øąµą“±ą“æą“•ąµ ą“øą“®ą“Æą“‚ - ą“Øąµ‹ą“µą“¾ ą“øąµą“•ąµ‹ą“Ÿąµą“Ÿą“æą“Æą“¾ - DST 1966-1971 ą“Ŗą“¾ą“²ą“æą“Æąµą“•ąµą“•ą“¾ą“¤ąµą“¤ ą“øąµą“„ą“²ą“™ąµą“™ą“³ąµā€" #: timezones.h:193 msgid "America/Godthab" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“—ąµ‹ą“”ąµą“„ą“¾ą“¬ąµ" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "ą“®ą“æą“•ąµą“• ą“øąµą“„ą“²ą“™ąµą“™ą“³ąµā€" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“—ąµ‚ą“øąµ_ą“¬ąµ†" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "ą“…ą“±ąµą“±ąµą“²ą“¾ą“Øąµą“±ą“æą“•ąµ ą“øą“®ą“Æą“‚ - ą“²ą“¾ą“¬ąµą“°ą“”ąµ‹ą“°ąµā€ - ą“®ą“æą“•ąµą“• ą“øąµą“„ą“²ą“™ąµą“™ą“³ąµā€" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“—ąµą“°ą“¾ą“Øąµā€ą“”ąµ_ą“±ąµą“±ą“°ąµā€ą“•ąµą“•ąµ" #: timezones.h:200 msgid "America/Grenada" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“—ąµą“°ą“Øąµ‡ą“”ą“¾" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“—ąµą“µą“¾ą“”ąµą“²ąµ‹ą“Ŗąµą“Ŗąµ" #: timezones.h:202 msgid "America/Guatemala" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“—ąµą“µą“¾ą“Ÿąµą“Ÿą“æą“®ą“¾ą“²" #: timezones.h:203 msgid "America/Guayaquil" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“—ąµą“µą“¾ą“Æą“¾ą“•ąµą“•ąµ€ą“²ąµā€" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "ą“®ąµ†ą“Æą“æą“Øąµā€ą“²ą“¾ą“Øąµā€ą“”ąµ" #: timezones.h:206 msgid "America/Guyana" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“—ą“Æą“¾ą“Øą“¾" #: timezones.h:207 msgid "America/Halifax" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“¹ą“¾ą“²ą“æą“«ą“¾ą“•ąµą“øąµ" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "ą“…ą“±ąµą“±ąµą“²ą“¾ą“Øąµą“±ą“æą“•ąµ ą“øą“®ą“Æą“‚ - ą“Øąµ‹ą“µą“¾ ą“øąµą“•ąµ‹ą“Ÿąµą“Ÿą“æą“Æą“¾ (ą“®ą“æą“•ąµą“•ąµ ą“øąµą“„ą“²ą“™ąµą“™ą“³ąµā€), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“¹ą“µą“¾ą“Øą“¾" #: timezones.h:211 msgid "America/Hermosillo" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“¹ąµ†ą“°ąµā€ą“®ąµ‹ą“øą“æą“²ąµ‹" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "ą“®ąµŒą“£ąµą“Ÿą“Øąµā€ ą“øąµą“±ąµą“±ą“¾ą“Øąµā€ą“”ąµ‡ą“°ąµā€ą“”ąµ ą“øą“®ą“Æą“‚ - ą“øąµŠą“£ąµ‹ą“±ą“¾" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“‡ą“Øąµā€ą“”ąµą“Æą“¾ą“Ø/ą“‡ą“Øąµā€ą“”ąµą“Æą“¾ą“Øą“Ŗąµ‹ą“³ą“æą“øąµ" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“‡ą“Øąµā€ą“”ąµą“Æą“¾ą“Øą“¾ - ą“®ą“æą“•ąµą“• ą“øąµą“„ą“²ą“™ąµą“™ą“³ąµā€" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“‡ą“Øąµā€ą“”ąµą“Æą“¾ą“Ø/ą“Øąµ‹ą“•ąµą“øąµ" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "ą“øąµ†ą“Øąµā€ą“Ÿąµą“°ą“²ąµā€ ą“øą“®ą“Æą“‚ - ą“‡ą“Øąµā€ą“”ąµą“Æą“¾ą“Øą“¾ - ą“øąµą“±ąµą“±ą“¾ą“°ąµā€ą“•ąµą“•ąµ ą“•ąµŒą“£ąµą“Ÿą“æ" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“‡ą“Øąµā€ą“”ąµą“Æą“¾ą“Ø/ą“®ą“¾ą“°ąµ†ą“Øąµā€ą“—ąµ‹" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“‡ą“Øąµā€ą“”ąµą“Æą“¾ą“Øą“¾ - ą“•ąµą“°ąµŒą“«ąµ‹ą“°ąµā€ą“”ąµ ą“•ąµŒą“£ąµą“Ÿą“æ" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“‡ą“Øąµā€ą“”ąµą“Æą“¾ą“Øą“¾/ą“Ŗąµ€ą“±ąµą“±ąµ‡ą“°ąµā€ą“øąµą“¬ą“°ąµā€ą“—ąµ" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“‡ą“Øąµā€ą“”ąµą“Æą“¾ą“Øą“¾ - ą“Ŗąµˆą“•ąµą“•ąµ ą“•ąµŒą“£ąµą“Ÿą“æ" #: timezones.h:226 msgid "America/Indianapolis" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“‡ą“Øąµā€ą“”ąµą“Æą“¾ą“Øą“Ŗąµ‹ą“³ą“æą“øąµ" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“‡ą“Øąµā€ą“”ąµą“Æą“¾ą“Ø/ą“Ÿąµ†ą“²ąµā€ _ą“øą“æą“±ąµą“±ą“æ" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "ą“øąµ†ą“Øąµā€ą“Ÿąµą“°ą“²ąµā€ ą“øą“®ą“Æą“‚ - ą“‡ą“Øąµā€ą“”ąµą“Æą“¾ą“Øą“¾ - ą“Ŗąµ†ą“±ą“æ ą“•ąµŒą“£ąµą“Ÿą“æ" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“‡ą“Øąµā€ą“”ąµą“Æą“¾ą“Ø/ą“µąµ†ą“µą“¾ą“Æąµ" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“‡ą“Øąµā€ą“”ąµą“Æą“¾ą“Øą“¾ - ą“øąµą“µą“æą“±ąµą“±ąµą“øą“°ąµā€ą“²ą“¾ą“Øąµā€ą“”ąµ ą“•ąµŒą“£ąµą“Ÿą“æ" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“‡ą“Øąµā€ą“”ąµą“Æą“¾ą“Øą“¾/ą“µą“æą“Øąµā€ą“øąµ†ą“Øąµą“Øą“øąµ" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“‡ą“Øąµā€ą“”ąµą“Æą“¾ą“Øą“¾ - ą“”ąµ‡ą“µą“æą“Æą“øąµ, ą“”ąµą“¬ąµ‹ą“Æą“æą“øąµ, ą“Øąµ‹ą“•ąµą“øąµ & ą“®ą“¾ą“°ąµā€ą“Ÿąµą“Ÿą“æą“Øąµā€ ą“•ąµŠą“£ąµą“Ÿąµ€ą“øąµ" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“‡ą“Øąµā€ą“”ąµą“Æą“¾ą“Øą“¾/ą“µą“æą“Øą“¾ą“®ą“¾ą“•ąµ" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“‡ą“Øąµā€ą“”ąµą“Æą“¾ą“Øą“¾ - ą“Ŗąµą“²ą“¾ą“øąµą“•ą“æ ą“•ąµŒą“£ąµą“Ÿą“æ" #: timezones.h:239 msgid "America/Inuvik" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“‡ą“Øąµą“µą“æą“•ąµą“•ąµ" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "ą“®ąµŒą“£ąµą“Ÿą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“Ŗą“Ÿą“æą“žąµą“žą“¾ą“±ąµ ą“µą“Ÿą“•ąµą“•ąµ ą“Ŗą“Ÿą“æą“žąµą“žą“¾ą“±ą“Øąµā€ ą“Ÿąµ†ą“±ą“æą“Ÿąµą“Ÿą“±ą“æą“•ą“³ąµā€" #: timezones.h:242 msgid "America/Iqaluit" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“‡ą“•ąµą“•ą“²ąµ‚ą“Æą“æą“±ąµą“±ąµ" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“•ą“æą““ą“•ąµą“•ąµ ą“Øąµą“Øą“¾ą“µą“¤ąµ - ą“®ą“æą“•ąµą“• ą“øąµą“„ą“²ą“™ąµą“™ą“³ąµā€" #: timezones.h:245 msgid "America/Jamaica" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“œą“®ąµ†ą“Æąµą“•ąµą“•ą“¾" #: timezones.h:246 msgid "America/Jujuy" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“¹ąµ‚ą“µą“æ" #: timezones.h:247 msgid "America/Juneau" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“œąµ‚ą“ØąµŠ" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "ą“…ą“²ą“¾ą“øąµą“•ą“¾ ą“øą“®ą“Æą“‚ - ą“…ą“²ą“¾ą“øąµą“•ą“¾ ą“Ŗą“¾ą“Øąµā€ą“¹ą“¾ą“Øąµā€ą“”ą“æą“²ąµā€" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“•ąµ†ą“£ąµā€ą“Ÿąµą“Ÿą“•ąµą“•ą“æ/ą“²ąµ‚ą“Æą“æą“µą“æą“²ąµā€" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“•ąµ†ą“Øąµā€ą“Ÿąµą“Ÿą“•ąµą“•ą“æ - ą“²ąµ‚ą“Æą“æą“øąµā€Œą“µą“æą“²ąµą“²ą“æ " #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“•ąµ†ą“£ąµā€ą“Ÿąµą“Ÿą“•ąµą“•ą“æ/ą“®ąµ‹ą“£ąµā€ą“Ÿąµą“Ÿąµ‡ą“›ą“æą“²ąµ‹" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“•ąµ†ą“£ąµā€ą“Ÿąµą“Ÿą“•ąµą“•ą“æ - ą“µą“¾ą“Æą“æą“Øąµā€ ą“•ąµŒą“£ąµą“Ÿą“æ" #: timezones.h:256 msgid "America/Knox_IN" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Øąµ‹ą“•ąµą“øąµ_ą“‡ą“Øąµā€" #: timezones.h:257 msgid "America/La_Paz" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“²ą“¾_ą“Ŗą“¾ą“øąµ" #: timezones.h:258 msgid "America/Lima" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“²ą“æą“®ą“¾" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“²ąµ‹ą“øąµ_ą“†ą“Øąµą“šą“²ą“øąµ" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ ą“øą“®ą“Æą“‚" #: timezones.h:262 msgid "America/Louisville" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“²ąµ‚ą“Æą“æą“µą“æą“²ąµā€" #: timezones.h:263 msgid "America/Maceio" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“®ą“¾ą“øąµ†ą“Æąµ‹" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "ą“…ą“²ą“¾ą“—ąµ‹ą“µą“¾ą“øąµ, ą“øąµ†ą“°ąµā€ą“—ąµˆą“Ŗąµą“Ŗąµ" #: timezones.h:266 msgid "America/Managua" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“®ą“Øą“¾ą“—ąµą“µą“¾" #: timezones.h:267 msgid "America/Manaus" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“®ąµ†ą“ØąµŒą“øąµ" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“…ą“®ąµ‡ą“øąµ‹ą“£ą“¾ą“øąµ" #: timezones.h:270 msgid "America/Marigot" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“®ą“¾ą“°ą“æą“—ąµ‹ą“Ÿąµą“Ÿąµ" #: timezones.h:271 msgid "America/Martinique" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“®ą“¾ą“°ąµā€ą“Ÿąµą“Ÿą“æą“Øąµ†ą“•ąµą“•ąµ" #: timezones.h:272 msgid "America/Matamoros" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“®ą“±ąµą“±ą“®ąµ‹ą“±ąµ‹ą“øąµ" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "ą“Æąµą“Žą“øąµ ą“øąµ†ą“Øąµā€ą“Ÿąµą“°ą“²ąµā€ ą“øą“®ą“Æą“‚ - ą“•ąµ‹ą“µą“¾ą“¹ąµą“Æąµ‚ą“²ą“¾, ą“”ąµą“±ą“¾ą“™ąµą“•ąµ‹, ą“Øąµą“Æąµ‚ą“µąµ‹ ą“²ą“æą“Æąµ‹ą“£ąµā€, ą“Ÿą“®ąµŒą“²ą“æą“Ŗą“¾ą“øąµ, ą“Æąµą“Žą“øąµ ą“…ą“¤ą“æą“°ąµā€ą“¤ąµą“¤ą“æą“Æąµą“•ąµą“•ą“Ÿąµą“¤ąµą“¤ąµąµ" #: timezones.h:275 msgid "America/Mazatlan" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“®ą“¾ą“øą“±ąµą“±ąµą“²ą“¾ą“Øąµā€" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "ą“®ąµŒą“£ąµą“Ÿą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“¤ąµ†ą“•ąµą“•ą“Øąµā€ ą“¬ą“¾ą“œą“¾, ą“Øą“¾ą“Æą“¾ą“±ą“æą“¤ąµą“¤ąµ, ą“øą“æą“Øą“¾ą“²ąµ‹ą“µą“¾" #: timezones.h:278 msgid "America/Mendoza" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“®ąµ†ą“Øąµā€ā€ą“”ąµ‹ą“øą“¾" #: timezones.h:279 msgid "America/Menominee" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“®ąµ†ą“Øąµ‹ą“®ą“æą“Øąµ€" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "ą“øąµ†ą“Øąµā€ą“Ÿąµą“°ą“²ąµā€ ą“øą“®ą“Æą“‚ - ą“®ą“æą“šąµą“šą“æą“—ą“Øąµā€ - ą“”ą“æą“•ąµą“•ą“æą“Øąµā€ą“øą“£ąµā€, ą“œąµ‹ą“œąµ†ą“¬ą“æą“•ąµą“•ąµ, ą“…ą“Æą“£ąµā€ & ą“®ąµ†ą“Øąµ‹ą“®ą“æą“Øąµ€ ą“•ąµŒą“£ąµą“Ÿąµ€ą“øąµ" #: timezones.h:282 msgid "America/Merida" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“®ąµ†ą“±ąµ€ą“”ą“¾" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "ą“øąµ†ą“Øąµā€ą“Ÿąµą“°ą“²ąµā€ ą“øą“®ą“Æą“‚ - ą“•ą“¾ą“‚ą“Ŗąµ€ą“šąµą“šąµ, ą“Æąµą“•ą“¾ą“±ąµą“±ą“¾ą“Øąµā€" #: timezones.h:285 msgid "America/Mexico_City" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“®ąµ†ą“•ąµą“øą“æą“•ąµą“•ąµ‹_ą“øą“æą“±ąµą“±ą“æ" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "ą“øąµ†ą“Øąµā€ą“Ÿąµą“°ą“²ąµā€ ą“øą“®ą“Æą“‚ - ą“®ą“æą“•ąµą“• ą“øąµą“„ą“²ą“™ąµą“™ą“³ąµā€" #: timezones.h:288 msgid "America/Miquelon" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“®ą“æą“•ąµą“•ąµą“µą“æą“²ąµ‹ą“£ąµā€ " #: timezones.h:289 msgid "America/Moncton" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“®ąµ‹ą“Øąµā€ą“•ąµą“Ÿąµą“Ÿą“£ąµā€" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "ą“…ą“±ąµą“±ąµą“²ą“¾ą“Øąµą“±ą“æą“•ąµ ą“øą“®ą“Æą“‚ - ą“Øąµą“Æąµ‚ ą“¬ąµą“°ąµ‚ą“£ąµā€ą“øąµā€Œą“µą“æą“•ąµą“•ąµ" #: timezones.h:292 msgid "America/Monterrey" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“®ąµ‹ą“£ąµā€ą“Ÿąµą“Ÿąµ†ą“±ąµ€" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" "ą“®ąµ†ą“•ąµą“øą“æą“•ąµą“•ą“Øąµā€ ą“øąµ†ą“Øąµā€ą“Ÿąµą“°ą“²ąµā€ ą“øą“®ą“Æą“‚ - ą“•ąµ‹ą“µą“¾ą“¹ąµą“Æąµ‚ą“²ą“¾, ą“”ąµą“±ą“¾ą“™ąµą“•ąµ‹, ą“Øąµą“Æąµ‚ą“µąµ‹ ą“²ą“æą“Æąµ‹ą“£ąµā€, ą“Ÿą“®ąµŒą“²ą“æą“Ŗą“¾ą“øąµ, ą“Æąµą“Žą“øąµ " "ą“…ą“¤ą“æą“°ąµā€ą“¤ąµą“¤ą“æą“Æą“æą“²ąµā€ ą“Øą“æą“Øąµą“Øąµą“‚ ą“¦ąµ‚ą“°ąµ†" #: timezones.h:295 msgid "America/Montevideo" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“®ąµ‹ą“£ąµā€ą“Ÿąµą“Ÿąµ†ą“µąµ€ą“”ą“æą“Æąµ‹" #: timezones.h:296 msgid "America/Montreal" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“®ąµ‹ą“£ąµą“Ÿąµą“°ą“æą“Æą“²ąµā€" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“•ąµą“Æąµ‚ą“¬ąµ†ą“•ąµ - ą“®ą“æą“•ąµą“•ąµ ą“øąµą“„ą“²ą“™ąµą“™ą“³ąµā€" #: timezones.h:299 msgid "America/Montserrat" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“®ąµ‹ą“£ąµā€ą“Ÿąµą“Ÿąµą“øąµ†ą“±ą“¾ą“±ąµą“±ąµ" #: timezones.h:300 msgid "America/Nassau" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Øą“¾ą“øąµą“øąµ‹" #: timezones.h:301 msgid "America/New_York" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Øąµą“Æąµ‚_ą“Æąµ‹ą“°ąµā€ą“•ąµą“•ąµ" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“øą“®ą“Æą“‚" #: timezones.h:304 msgid "America/Nipigon" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Øą“æą“Ŗąµą“Ŗą“æą“—ąµ‹ą“£ąµā€" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“’ą“£ąµā€ą“Ÿą“¾ą“°ą“æą“Æąµ‹ & ą“•ąµą“Æąµ‚ą“¬ąµ†ą“•ąµ - DST 1967-1973 ą“Ŗą“¾ą“²ą“æą“šąµą“šą“æą“Ÿąµą“Ÿą“æą“²ąµą“²ą“¾ą“¤ąµą“¤ ą“øąµą“„ą“²ą“™ąµą“™ą“³ąµā€" #: timezones.h:307 msgid "America/Nome" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Øąµ‹ą“‚" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "ą“…ą“²ą“¾ą“øąµą“•ą“¾ ą“øą“®ą“Æą“‚ - ą“Ŗą“Ÿą“æą“žąµą“žą“¾ą“±ą“Øąµā€ ą“…ą“²ą“¾ą“øąµą“•ą“¾" #: timezones.h:310 msgid "America/Noronha" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“ØąµŠą“±ąµ‹ą“£" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "ą“…ą“±ąµą“±ąµą“²ą“¾ą“Øąµą“±ą“æą“•ąµ ą“ą“²ą“Øąµā€ą“”ąµą“•ą“³ąµā€" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Øąµ‹ą“°ąµā€ą“¤ąµą“¤ąµ_ą“”ą“•ąµą“•ąµ‹ą“±ąµą“±/ą“øąµ†ą“Øąµą“±ą“°ąµā€" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "ą“øąµ†ą“Øąµā€ą“Ÿąµą“°ą“²ąµā€ ą“øą“®ą“Æą“‚ - ą“µą“Ÿą“•ąµą“•ąµ ą“”ą“•ąµą“•ąµ‹ą“Ÿąµą“Ÿą“¾ - ą“’ą“²ą“æą“µą“°ąµā€ ą“•ąµŒą“£ąµą“Ÿą“æ" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Øąµ‹ą“°ąµā€ą“¤ąµą“¤ąµ_ą“”ą“•ąµą“•ąµ‹ą“±ąµą“±/ą“Øąµą“Æąµ‚_ą“øą“²ąµ‡ą“‚" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "ą“øąµ†ą“Øąµā€ą“Ÿąµą“°ą“²ąµā€ ą“øą“®ą“Æą“‚ - ą“µą“Ÿą“•ąµą“•ąµ ą“”ą“•ąµą“•ąµ‹ą“Ÿąµą“Ÿą“¾ - ą“®ąµ‹ą“°ąµā€ą“Ÿąµą“Ÿą“£ąµā€ ą“•ąµŒą“£ąµą“Ÿą“æ (ą“®ą“¾ą“Øąµā€ą“”ą“Øąµā€ ą“’ą““ą“æą“šąµą“šąµąµ)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“’ą“œą“æą“Øą“¾ą“—ą“¾" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "ą“Æąµą“Žą“øąµ ą“®ąµŒą“£ąµą“Ÿą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“šą“æą“¹ąµą“µą“¾ą“¹ąµą“µą“¾, ą“Æąµą“Žą“øąµ ą“…ą“¤ą“æą“°ąµā€ą“¤ąµą“¤ą“æą“Æąµą“•ąµą“•ą“Ÿąµą“¤ąµą“¤ąµąµ" #: timezones.h:322 msgid "America/Panama" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Ŗą“Øą“¾ą“®" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Ŗą“¾ą“™ąµą“Øą“æą“°ąµā€ą“Ÿąµą“Ÿą“™ąµ" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“Ŗą“¾ą“™ąµą“Øą“æą“°ąµā€ą“Ÿąµą“Ÿą“™ąµ, ą“Øąµą“Øą“¾ą“µą“¤ąµ" #: timezones.h:326 msgid "America/Paramaribo" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Ŗą“°ą“¾ą“®ą“¾ą“°ą“æą“¬ąµ‹" #: timezones.h:327 msgid "America/Phoenix" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“«ąµ€ą“Øą“æą“•ąµą“øąµ" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "ą“®ąµŒą“£ąµą“Ÿą“Øąµā€ ą“øąµą“±ąµą“±ą“¾ą“Øąµā€ą“”ąµ‡ą“°ąµā€ą“”ąµ ą“øą“®ą“Æą“‚ - ą“…ą“°ą“æą“øąµ‹ą“£ą“¾" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Ŗąµ‹ą“°ąµā€ą“Ÿąµą“Ÿąµ-ą“”-ą“Ŗąµą“°ą“æą“Øąµā€ą“øąµ" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Ŗąµ‹ą“°ąµā€ą“Ÿąµą“Ÿąµ‹_ą“ą“•ąµą“•ą“°ąµā€" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Ŗąµ‹ą“°ąµā€ą“Ÿąµą“Ÿąµ_ą““ą“«ąµ_ą“øąµą“Ŗą“Æą“æą“Øąµā€" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Ŗąµ‹ą“°ąµā€ą“Ÿąµą“Ÿąµ‹_ą“µąµ†ą“²ąµ‹" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "ą“±ąµ‹ą“£ąµą“Ÿą“æą“Æą“¾" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Ŗąµą“Æąµ‚ą“°ąµā€ą“Ÿąµą“Ÿąµ‹_ą“±ą“æą“•ąµą“•ąµ‹" #: timezones.h:337 msgid "America/Rainy_River" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“±ąµ†ą“Æąµą“Øą“æ_ą“±ą“æą“µą“°ąµā€" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "ą“øąµ†ą“Øąµā€ą“Ÿąµą“°ą“²ąµā€ ą“øą“®ą“Æą“‚ - ą“±ąµ†ą“Æą“æą“Øą“æ ą“±ą“æą“µą“°ąµā€ & ą“«ąµ‹ą“°ąµā€ą“Ÿąµą“Ÿąµ ą“«ąµą“°ą“¾ą“Øąµā€ą“øą“øąµ, ą“’ą“£ąµā€ą“Ÿą“¾ą“°ą“æą“Æąµ‹" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“±ą“¾ą“Øąµą“•ą“æą“Øąµā€_ą“‡ą“Øąµā€ą“²ąµ†ą“±ąµą“±ąµ" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "ą“øąµ†ą“Øąµā€ą“Ÿąµą“°ą“²ąµā€ ą“øą“®ą“Æą“‚ - ą“®ą“¦ąµą“§ąµą“Æ ą“Øąµą“Øą“¾ą“µą“¤ąµ" #: timezones.h:343 msgid "America/Recife" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“±ąµ†ą“øąµ€ą“«ąµ†" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "ą“Ŗąµ†ą“°ąµā€ą“Øą“¾ą“¬ąµą“•ąµą“•ąµ‹" #: timezones.h:346 msgid "America/Regina" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“±ąµ†ą“œąµ€ą“Ø" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "ą“øąµ†ą“Øąµā€ą“Ÿąµą“°ą“²ąµā€ ą“øąµą“±ąµą“±ą“¾ą“Øąµā€ą“”ąµ‡ą“°ąµā€ą“”ąµ ą“øą“®ą“Æą“‚ - ą“øą“øąµą“•ą“¾ą“šąµą“šąµ†ą“µą“Øąµā€ - ą“®ą“æą“•ąµą“• ą“øąµą“„ą“²ą“™ąµą“™ą“³ąµā€" #: timezones.h:349 msgid "America/Resolute" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“±ą“æą“øąµŠą“²ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“øąµą“±ąµą“±ą“¾ą“Øąµā€ą“”ąµ‡ą“°ąµā€ą“”ąµ ą“øą“®ą“Æą“‚ - ą“±ą“æą“øą“²ąµą“Æąµ‚ą“Ÿąµą“Ÿąµ, ą“Øąµą“Øą“¾ą“µą“¤ąµ" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“±ą“æą“Æąµ‹_ą“¬ąµą“°ą“¾ą“Øąµā€ą“•ąµą“•ąµ‹" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "ą“ą“•ąµą“•ą“°ąµā€" #: timezones.h:355 msgid "America/Rosario" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“±ąµŠą“øą“¾ą“±ą“æą“Æąµ‹" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“øą“¾ą“Øąµą“±ą“¾_ą“‡ą“øą“¬ąµ†ą“²ąµā€" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "ą“®ąµ†ą“•ąµą“øą“æą“•ąµą“•ą“Øąµā€ ą“Ŗąµ†ą“øą“æą“«ą“æą“•ąµ ą“øą“®ą“Æą“‚ - ą“¬ą“¾ą“œą“¾ ą“•ą“¾ą“²ą“æą“«ąµ‹ą“°ąµā€ą“£ą“æą“Æą“¾ ą“Æąµą“Žą“øąµ ą“…ą“¤ą“æą“°ąµā€ą“¤ąµą“¤ą“æą“Æą“æą“²ąµā€ ą“Øą“æą“Øąµą“Øąµą“‚ ą“¦ąµ‚ą“°ąµ†" #: timezones.h:359 msgid "America/Santarem" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“øą“¾ą“Øąµā€ą“Ÿą“±ąµ†ą“‚" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "ą“Ŗą“Ÿą“æą“žąµą“žą“¾ą“±ą“Øąµā€ ą“Ŗą“¾ą“°ą“¾" #: timezones.h:362 msgid "America/Santiago" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“øą“¾ą“Øąµą“±ą“æą“Æą“¾ą“—ąµ‹" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“øą“¾ą“Øąµą“±ąµ‹ _ą“”ąµŠą“®ą“æą“Øąµā€ą“—ąµ‹" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“øą“¾ą“µąµ‹_ą“ŖąµŒą“²ąµ‹" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "S & SE ą“¬ąµą“°ą“øąµ€ą“²ąµā€ (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“øąµą“•ąµą“•ąµ‹ą““ąµą“øąµą“¬ąµˆą“øą“£ąµā€ą“”ąµ" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "ą“øąµą“•ąµą“•ąµ‹ą“°ąµā€ą“øąµą“¬ąµˆą“øą“Øąµā€ą“”ąµ / ą“‡ą“Ÿąµą“Ÿąµ‹ą“•ąµą“•ąµ‹ą“°ąµā€ą“Ÿąµą“Ÿąµ‚ą“°ąµā€ą“®ą“æą“±ąµą“±ąµ" #: timezones.h:372 msgid "America/Shiprock" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“·ą“æą“Ŗąµą“Ŗąµā€Œą“±ąµ‹ą“•ąµą“•ąµąµ" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "ą“®ąµŒą“£ąµą“Ÿą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“Øą“¾ą“µą“¾ą“œąµ‹" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“øąµ†ą“Øąµą“±ąµ _ą“¬ą“°ąµā€ą“„ą“²ąµ‡ą“®ą“æ" #: timezones.h:376 msgid "America/St_Johns" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“øąµ†ą“Øąµą“±ąµ_ą“œąµ‹ą“£ąµā€ą“øąµ" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "ą“Øąµą“Æąµ‚ą“«ąµŒą“£ąµą“Ÿąµą“²ą“¾ą“Øąµā€ą“”ąµ ą“øą“®ą“Æą“‚, SE ą“²ą“¾ą“¬ąµą“°ą“”ąµ‹ą“°ąµā€ ą“‰ą“³ąµā€ą“Ŗąµą“Ŗą“Ÿąµ†" #: timezones.h:379 msgid "America/St_Kitts" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“øąµ†ą“Øąµą“±ąµ_ą“•ą“æą“±ąµą“±ąµą“øąµ" #: timezones.h:380 msgid "America/St_Lucia" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“øąµ†ą“Øąµą“±ąµ_ą“²ąµ€ą“øą“æą“Æą“¾" #: timezones.h:381 msgid "America/St_Thomas" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“øąµ†ą“Øąµą“±ąµ_ą“¤ąµ‹ą“®ą“øąµ" #: timezones.h:382 msgid "America/St_Vincent" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“øąµ†ą“Øąµą“±ąµ_ą“µą“æą“Øąµā€ą“øąµ†ą“Øąµą“±ąµ" #: timezones.h:383 msgid "America/Swift_Current" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“øąµą“µą“æą“«ąµą“±ąµą“±ąµ_ą“•ą“±ą“£ąµā€ą“Ÿąµą“Ÿąµ" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "ą“øąµ†ą“Øąµā€ą“Ÿąµą“°ą“²ąµā€ ą“øąµą“±ąµą“±ą“¾ą“Øąµā€ą“”ąµ‡ą“°ąµā€ą“”ąµ ą“øą“®ą“Æą“‚ - ą“øą“¾ą“øąµą“•ą“¾ą“šąµą“šąµ†ą“µą“¾ą“Øąµā€ - ą“®ą“æą“”ąµā€Œą“µąµ†ą“øąµą“±ąµą“±ąµ" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Ÿąµ†ą“—ąµ‚ą“øą“æą“—ą“²ąµā€ą“Ŗąµą“Ŗ" #: timezones.h:387 msgid "America/Thule" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“¤ąµą“²ąµ‡" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "ą“¤ąµ‚ą“²ąµ‡ / ą“Ŗą“æą“Ÿąµą“«ą“æą“•ąµą“•ąµ" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“¤ą“£ąµā€ą“”ą“°ąµā€_ą“¬ąµ†" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“¤ą“£ąµą“Ÿą“°ąµā€ ą“¬ąµ‡, ą“’ą“£ąµā€ą“Ÿą“¾ą“°ą“æą“Æąµ‹" #: timezones.h:393 msgid "America/Tijuana" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“¤ą“æą“œąµą“µą“¾ą“Øą“¾" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "ą“Æąµą“Žą“øąµ ą“Ŗą“øą“æą“«ą“æą“•ąµ ą“øą“®ą“Æą“‚ - ą“¬ą“¾ą“œą“¾ ą“•ą“¾ą“²ą“æą“«ąµ‹ą“°ąµā€ą“£ą“æą“Æą“¾, ą“Æąµą“Žą“øąµ ą“…ą“¤ą“æą“°ąµā€ą“¤ąµą“¤ą“æą“Æą“æą“•ąµą“•ą“Ÿąµą“¤ąµą“¤ąµąµ" #: timezones.h:396 msgid "America/Toronto" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“ŸąµŠą“±ąµŠą“£ąµā€ą“Ÿąµą“Ÿąµ‹" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“’ą“£ąµā€ą“Ÿą“¾ą“°ą“æą“Æąµ‹ - ą“®ą“æą“•ąµą“• ą“øąµą“„ą“²ą“™ąµą“™ą“³ąµā€" #: timezones.h:399 msgid "America/Tortola" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“ŸąµŠą“°ąµā€ą“Ÿąµą“Ÿąµ‹ą“³ą“¾" #: timezones.h:400 msgid "America/Vancouver" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“µą“¾ą“Øąµā€ą“•ąµą“•ąµ‚ą“µą“°ąµā€" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµ ą“øą“®ą“Æą“‚ - ą“Ŗą“Ÿą“æą“žąµą“žą“¾ą“±ą“Øąµā€ ą“¬ąµą“°ą“æą“Ÿąµą“Ÿą“æą“·ąµ ą“•ąµŠą“³ą“‚ą“¬ą“æą“Æą“¾" #: timezones.h:403 msgid "America/Virgin" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“µąµ†ą“°ąµā€ą“œą“æą“Øąµā€" #: timezones.h:404 msgid "America/Whitehorse" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“µąµˆą“±ąµą“±ąµą“¹ąµ‹ą““ąµą“øąµ" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµ ą“øą“®ą“Æą“‚ - ą“¤ąµ†ą“•ąµą“•ąµ ą“Æąµą“•ąµą“•ąµ‹ą“£ąµā€" #: timezones.h:407 msgid "America/Winnipeg" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“µą“æą“Øąµą“Øą“æą“Ŗąµą“Ŗąµ†ą“—ąµ" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "ą“øąµ†ą“Øąµā€ą“Ÿąµą“°ą“²ąµā€ ą“øą“®ą“Æą“‚ - ą“®ą“¾ą“Øą“æą“±ąµą“±ąµ‹ą“¬ą“¾ & ą“Ŗą“Ÿą“æą“žąµą“žą“¾ą“±ąµ ą“’ą“£ąµā€ą“Ÿą“¾ą“°ą“æą“Æąµ‹" #: timezones.h:410 msgid "America/Yakutat" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Æą“¾ą“•ąµą“•ąµą“±ąµą“±ą“¾ą“±ąµą“±ąµ" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "ą“…ą“²ą“¾ą“øąµą“•ą“¾ ą“øą“®ą“Æą“‚ - ą“…ą“²ą“¾ą“øąµą“•ą“¾ ą“Ŗą“¾ą“Øąµā€ą“¹ą“¾ą“Øąµā€ą“”ą“æą“²ąµā€ ą“Øąµ†ą“•ąµą“•ąµ" #: timezones.h:413 msgid "America/Yellowknife" msgstr "ą“…ą“®ąµ‡ą“°ą“æą“•ąµą“•/ą“Æąµ†ą“²ąµą“²ąµ‹ą“Øąµˆą“«ąµ" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "ą“®ąµŒą“£ąµą“Ÿą“Øąµā€ ą“øą“®ą“Æą“‚ - ą“®ą“¦ąµą“§ąµą“Æ ą“µą“Ÿą“•ąµą“•ąµ ą“Ŗą“Ÿą“æą“žąµą“žą“¾ą“±ą“Øąµā€ ą“Ÿąµ†ą“±ą“æą“Ÿąµą“Ÿą“±ą“æą“•ą“³ąµā€" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "ą“…ą“Øąµą“±ą“¾ą“°ąµā€ą“Ÿąµą“Ÿą“æą“•ąµą“•/ą“±ą“¾ą“°ąµā€ą“Ÿąµą“Ÿą“æą“¤ąµ/ą“•ą“¾ą“øąµą“øąµ†ą“Æąµ" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "ą“øąµ†ą“øąµ€ ą“øąµą“±ąµą“±ąµ‡ą“·ą“Øąµā€, ą“¬ąµ†ą“Æą“æą“²ąµ€ ą“Ŗąµ†ą“Øą“æą“Øąµā€ą“øąµą“²ą“¾" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "ą“…ą“Øąµą“±ą“¾ą“°ąµā€ą“Ÿąµą“Ÿą“æą“•ąµą“•/ą“”ąµ‡ą“µą“æą“øąµ" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "ą“”ąµ‡ą“µą“æą“øąµ ą“øąµą“±ąµą“±ąµ‡ą“·ą“Øąµā€, ą“µąµ†ą“øąµą“±ąµą“±ąµą“«ąµ‹ą“³ąµā€ą“”ąµ ą“¹ą“æą“²ąµā€ą“øąµ" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "ą“…ą“Øąµą“±ą“¾ą“°ąµā€ą“Ÿąµą“Ÿą“æą“•ąµą“•/ą“”ąµą“®ąµ‹ą“£ąµā€ą“Ÿąµą“Ÿąµą“°ąµā€ą“µą“æą“²ąµą“²ą“æ" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "ą“”ąµą“Æąµ‚ą“®ąµ‹ą“£ąµą“Ÿąµ-ą“”ąµ€ ą“‰ą“°ąµā€ą“µą“æą“²ąµā€, ą“Ÿąµ†ą“±ąµ‡ ą“…ą“”ąµ€ą“²ąµ€" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "ą“…ą“Øąµą“±ą“¾ą“°ąµā€ą“Ÿąµą“Ÿą“æą“•ąµą“•/ą“®ą“¾ą“•ąµą“µą“¾ą“°ąµ€" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "ą“®ą“¾ą“•ąµą“µą“¾ą“°ąµ€ ą“ą“²ą“Øąµą“±ąµ ą“øąµą“±ąµą“±ąµ‡ą“·ą“Øąµā€, ą“®ą“¾ą“•ąµą“µą“¾ą“°ąµ€ ą“ą“²ą“Øąµā€ą“”ąµ" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "ą“…ą“Øąµą“±ą“¾ą“°ąµā€ą“Ÿąµą“Ÿą“æą“•ąµą“•/ą“®ąµ‹ą“øą“£ąµā€" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "ą“®ąµ‹ą“øą“£ąµā€ ą“øąµą“±ąµą“±ąµ‡ą“·ą“Øąµā€, ą“¹ąµ‹ą“‚ ą“¬ąµ‡" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "ą“…ą“Øąµą“±ą“¾ą“°ąµā€ą“Ÿąµą“Ÿą“æą“•ąµą“•/ą“®ą“¾ą“•ąµą“•ąµą“®ą“¾ą“°ąµā€ą“”ąµ‹" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "ą“®ą“¾ą“•ąµā€Œą“®ą“°ąµā€ą“”ąµ‹ ą“øąµą“±ąµą“±ąµ‡ą“·ą“Øąµā€, ą“±ąµ‹ą“øąµ ą“ą“²ą“Øąµā€ą“”ąµ" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "ą“…ą“Øąµą“±ą“¾ą“°ąµā€ą“Ÿąµą“Ÿą“æą“•ąµą“•/ą“Ŗą“¾ą“®ąµ†ą“°ąµā€" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "ą“Ŗą“¾ą“®ą“°ąµā€ ą“øąµą“±ąµą“±ąµ‡ą“·ą“Øąµā€, ą“…ą“Øąµā€ą“µą“°ąµā€ą“øąµ ą“ą“²ą“Øąµā€ą“”ąµ" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "ą“…ą“Øąµą“±ą“¾ą“°ąµā€ą“Ÿąµą“Ÿą“æą“•ąµą“•/ą“±ąµŠą“„ąµ‡ą“±ą“¾" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "ą“±ąµ‹ą“„ąµ‡ą“±ą“¾ ą“øąµą“±ąµą“±ąµ‡ą“·ą“Øąµā€, ą“…ą“”ąµ†ą“²ąµ‡ą“Æą“æą“”ąµ ą“ą“²ą“Øąµā€ą“”ąµ" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "ą“…ą“Øąµą“±ą“¾ą“°ąµā€ą“Ÿąµą“Ÿą“æą“•ąµą“•/ą“øąµŒą“¤ąµą“¤ąµ_ą“Ŗąµ‹ą“³ąµā€" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "ą“…ą“®ą“£ąµą“Ÿąµą“øąµ†ą“Øąµā€-ą“øąµą“•ąµ‹ą“Ÿąµą“Ÿąµ ą“øąµą“±ąµą“±ąµ‡ą“·ą“Øąµā€, ą“øąµŒą“¤ąµą“¤ąµ ą“Ŗąµ‹ą“³ąµā€" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "ą“…ą“Øąµą“±ą“¾ą“°ąµā€ą“Ÿąµą“Ÿą“æą“•ąµą“•/ą“øąµą“Æąµ‹ą“µą“¾" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "ą“øąµą“Æąµ‹ą“µą“¾ ą“øąµą“±ąµą“±ąµ‡ą“·ą“Øąµā€, ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“’ą“™ąµą“•ąµą“²ąµā€ ą“" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "ą“…ą“Øąµą“±ą“¾ą“°ąµā€ą“Ÿąµą“Ÿą“æą“•ąµą“•/ą“µąµ‹ą“øąµą“„ąµ‹ą“•ąµą“•ąµ" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "ą“µąµ‹ą“øąµą“Ÿąµ‹ą“•ąµ ą“øąµą“±ąµą“±ąµ‡ą“·ą“Øąµā€, ą“øąµŒą“¤ąµą“¤ąµ ą“®ą“¾ą“—ąµą“Øąµ†ą“±ąµą“±ą“æą“•ąµ ą“Ŗąµ‹ą“³ąµā€" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "ą“†ą“°ąµā€ą“Ÿąµą“Ÿą“æą“•ąµą“•ąµ/ą“²ąµ‹ą“™ą“æą“Æą“°ąµā€ą“¬ą“Æą“Øąµā€" #: timezones.h:450 msgid "Asia/Aden" msgstr "ą“ą“·ąµą“Æ/ą“ą“”ą“Øąµā€" #: timezones.h:451 msgid "Asia/Almaty" msgstr "ą“ą“·ąµą“Æ/ą“…ą“²ąµā€ą“®ą“¾ą“Ÿąµą“Ÿą“æ" #: timezones.h:454 msgid "Asia/Amman" msgstr "ą“ą“·ąµą“Æ/ą“…ą“®ąµą“®ą“¾ą“Øąµā€" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "ą“ą“·ąµą“Æ/ą“†ą“Øąµ†ą“”ą“æą“°ąµā€" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "ą“®ąµ‹ą“øąµą“•ąµŒ+8 - ą“¬ąµ†ą“±ą“æą“™ąµ ą“øąµ€" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "ą“ą“·ąµą“Æ/ą“†ą“•ąµą“•ąµą“±ąµą“±ąµŒ" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "ą“…ą“±ąµą“±ą“æą“±ąµŒ (ą“…ą“±ąµą“±ą“æą“±ąµŒ, ą“—ąµą“°ąµā€ą“Æąµ†ą“µąµ), ą“®ą“¾ą“™ąµą“•ą“æą“øąµą“±ąµą“±ąµŒ (ą“®ą“¾ą“Øąµā€ą“•ą“æą“øąµą“±ąµą“±ąµŒ)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "ą“ą“·ąµą“Æ/ą“…ą“•ąµą“•ąµą“±ąµą“±ąµ‹ą“¬ąµ†" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "ą“…ą“•ąµą“Ÿąµ‹ą“¬ąµ " #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "ą“ą“·ąµą“Æ/ą“…ą“·ąµą“—ą“¾ą“¬ą“¾ą“¤ąµą“¤ąµ" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "ą“ą“·ąµą“Æ/ą“…ą“·ąµą“•ą“¾ą“¬ą“¾ą“¦ąµ" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "ą“ą“·ąµą“Æ/ą“¬ą“¾ą“—ąµą“¦ą“¾ą“¦ąµ" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "ą“ą“·ąµą“Æ/ą“¬ąµ†ą“¹ą“±ą“æą“Øąµā€" #: timezones.h:468 msgid "Asia/Baku" msgstr "ą“ą“·ąµą“Æ/ą“¬ą“¾ą“•ąµą“•ąµ" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "ą“ą“·ąµą“Æ/ą“¬ą“¾ą“™ąµą“•ąµ‹ą“•ąµą“•ąµ" #: timezones.h:470 msgid "Asia/Beirut" msgstr "ą“ą“·ąµą“Æ/ą“¬ąµ†ą“Æąµą“±ąµ‚ą“Ÿąµą“Ÿąµ" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "ą“ą“·ąµą“Æ/ą“¬ą“æą“·ąµą“•ąµ‡ą“•ąµą“•ąµ" #: timezones.h:472 msgid "Asia/Brunei" msgstr "ą“ą“·ąµą“Æ/ą“¬ąµą“°ąµ‚ą“£ąµ†" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "ą“ą“·ąµą“Æ/ą“•ą“²ąµā€ą“•ąµą“•ą“¤ąµą“¤" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "ą“ą“·ąµą“Æ/ą“·ąµŠą“Æą“æą“¬ą“¾ą“²ąµā€ą“øą“Øąµā€" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "ą“”ąµ‹ą“°ąµā€ą“Øąµ‹ą“”ąµ, ą“øąµą“•ąµą“¬ą“¾ą“¤ąµą“¤ą“°ąµā€" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "ą“ą“·ąµą“Æ/ą“·ąµ‹ą“™ąµą“•ą“æą“‚ą“™ąµ" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "ą“øąµ†ą“Øąµā€ą“Ÿąµą“°ą“²ąµā€ ą“šąµˆą“Øą“¾ - ą“øą“æą“šąµą“šą“¾ą“Øąµā€, ą“Æąµą“Øąµą“Øą“¾ą“Øąµā€, ą“—ąµą“µą“¾ą“™ąµą“øą“æ, ą“·ą“¾ą“™ąµą“øą“æ, ą“—ąµą“Æąµą“øąµ‹, ą“Žą“Øąµą“Øą“æą“µ" #: timezones.h:480 msgid "Asia/Chungking" msgstr "ą“ą“·ąµą“Æ/ą“·ą“™ąµą“•ą“æą“‚ą“™ąµ" #: timezones.h:481 msgid "Asia/Colombo" msgstr "ą“ą“·ąµą“Æ/ą“•ąµ‹ą“³ąµ‹ą“¬ąµŠ" #: timezones.h:482 msgid "Asia/Dacca" msgstr "ą“ą“·ąµą“Æ/ą“”ą“¾ą“•ąµą“•ą“¾" #: timezones.h:483 msgid "Asia/Damascus" msgstr "ą“ą“·ąµą“Æ/ą“”ą“®ą“¾ą“øąµą“•ą“øąµ" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "ą“ą“·ąµą“Æ/ą“”ą“¾ą“•ąµą“•ą“¾" #: timezones.h:485 msgid "Asia/Dili" msgstr "ą“ą“·ąµą“Æ/ą“”ą“æą“²ą“æ" #: timezones.h:486 msgid "Asia/Dubai" msgstr "ą“ą“·ąµą“Æ/ą“¦ąµą“¬ą“¾ą“Æąµ" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "ą“ą“·ąµą“Æ/ą“¦ąµą“·ą“¾ą“Øą“¬ąµ†" #: timezones.h:488 msgid "Asia/Gaza" msgstr "ą“ą“·ąµą“Æ/ą“—ą“¾ą“øą“¾" #: timezones.h:489 msgid "Asia/Harbin" msgstr "ą“ą“·ąµą“Æ/ą“¹ą“¾ą“°ąµā€ą“¬ą“æą“Øąµā€" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "ą“¹ą“æą“²ąµ‹ą“™ąµą“œą“æą“Æą“¾ą“™ą“¾ (ą“®ąµ‹ą“¹ąµ† ą“’ą““ą“æą“•ąµ†), ą“œą“æą“²ą“æą“Øąµā€" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "ą“ą“·ąµą“Æ/ą“¹ąµ‹_ą“šąµ€_ą“®ą“æą“Øąµā€ą“¹ąµ" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "ą“ą“·ąµą“Æ/ą“¹ąµ‹ą“™ąµ_ą“•ąµ‹ą“™ąµ" #: timezones.h:494 msgid "Asia/Hovd" msgstr "ą“ą“·ąµą“Æ/ą“¹ąµ‹ą“µąµą“”ąµ" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "ą“¬ą“¾ą“Æą“¾ą“Øąµā€-ą“’ą“²ąµā€ą“œą“æą“Æąµ, ą“—ąµ‹ą“µą“æ-ą“…ą“²ąµā€ą“Ÿąµą“Ÿą“¾ą“Æą“æ, ą“¹ąµ‹ą“µąµą“”ąµ, ą“‰ą“µąµą“øąµ, ą“øą“¾ą“µąµą“•ąµą“•ą“¾ą“Øąµā€" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "ą“ą“·ąµą“Æ/ą“ą“°ąµā€ą“•ąµą“•ą“Ÿąµą“Ÿąµą“øąµą“•ąµą“•ąµ" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "ą“®ąµ‹ą“øąµą“•ąµŒ+05 - ą“²ąµ†ą“Æą“æą“•ąµą“•ąµ ą“¬ąµ†ą“Æą“æą“•ąµą“•ą“²ąµā€" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "ą“ą“·ąµą“Æ/ą“‡ą“øąµą“¤ąµą“¤ą“¾ą“Øąµā€ą“¬ąµą“²ąµā€" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "ą“ą“·ąµą“Æ/ą“œą“•ąµą“•ą“¾ą“°ąµā€ą“¤ąµą“¤ " #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "ą“œą“¾ą“µą“¾ & ą“øąµą“®ą“¤ąµą“°ą“¾" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "ą“ą“·ąµą“Æ/ą“œą“Æą“Ŗąµą“Ŗąµą“Ŗ" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "ą“‡ą“±ą“æą“Æą“¾ą“Øąµā€ ą“œą“Æą“¾ & ą“®ąµŠą“²ąµą“•ąµą“•ą“øąµ" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "ą“ą“·ąµą“Æ/ą“œąµ‡ą“±ąµą“øą“²ąµ‡ą“‚" #: timezones.h:508 msgid "Asia/Kabul" msgstr "ą“ą“·ąµą“Æ/ą“•ą“¾ą“¬ąµą“³ąµā€" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "ą“ą“·ąµą“Æ/ą“•ą“‚ą“šąµą“šą“Ÿąµą“Ÿąµą“•ąµą“•" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "ą“®ąµ‹ą“øąµą“•ąµŒ+08 - ą“•ą“¾ą“®ąµą“šą“Ÿąµą“Ÿąµą“•ą“¾" #: timezones.h:512 msgid "Asia/Karachi" msgstr "ą“ą“·ąµą“Æ/ą“•ą“±ą“¾ą“šąµą“šą“æ" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "ą“ą“·ąµą“Æ/ą“•ą“¾ą“·ąµą“—ą“°ąµā€" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "ą“Ŗą“Ÿą“žąµą“žą“¾ą“±ąµ ą“Ÿą“æą“¬ą“±ąµą“±ąµ & ą“•ąµą“øą“æą“™ąµą“œą“æą“Æą“¾ą“™ąµ" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "ą“ą“·ąµą“Æ/ą“•ą“¾ą“Ÿąµą“®ą“£ąµą“Ÿąµ" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "ą“ą“·ąµą“Æ/ą“•ą“¾ą“¤ąµą“®ą“£ąµą“Ÿąµ" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "ą“ą“·ąµą“Æ/ą“•ąµ‹ą“²ąµā€ą“•ąµą“•ą“Ÿąµą“Ÿ" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "ą“ą“·ąµą“Æ/ą“•ąµą“°ą“¾ą“øąµą“ØąµŠą“Æą“¾ą“°ąµā€ą“øąµą“•ąµ" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "ą“®ąµ‹ą“øąµą“•ąµŒ+04 - ą“Æąµ†ą“Øą“æą“øąµ€ ą“±ą“æą“µą“°ąµā€" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "ą“ą“·ąµą“Æ/ą“•ąµą“µą“¾ą“²ą“¾_ą“²ą“®ąµą“Ŗąµ‚ą“°ąµā€" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "ą“Ŗąµ†ą“Øą“æą“Øąµā€ą“øąµą“²ą“°ąµā€ ą“®ą“²ąµ‡ą“·ąµą“Æą“¾" #: timezones.h:525 msgid "Asia/Kuching" msgstr "ą“ą“·ąµą“Æ/ą“•ą“šąµą“šą“æą“‚ą“™ąµ" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "ą“øą“¬ą“¾ą“¹ąµ & ą“øą“¾ą“±ą“¾ą“µą“¾ą“•ąµ" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "ą“ą“·ąµą“Æ/ą“•ąµą“µąµˆą“¤ąµą“¤ąµ" #: timezones.h:529 msgid "Asia/Macao" msgstr "ą“ą“·ąµą“Æ/ą“®ą“•ąµą“•ąµŒ" #: timezones.h:530 msgid "Asia/Macau" msgstr "ą“ą“·ąµą“Æ/ą“®ą“•ąµą“•ą“¾ą“µąµ" #: timezones.h:531 msgid "Asia/Magadan" msgstr "ą“ą“·ąµą“Æ/ą“®ą“¾ą“—ą“”ą“Øąµā€" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "ą“®ąµ‹ą“øąµą“•ąµŒ+08 - ą“®ą“—ą“¾ą“”ą“¾ą“Øąµā€" #: timezones.h:534 msgid "Asia/Makassar" msgstr "ą“ą“·ąµą“Æ/ą“®ą“¾ą“•ąµą“•ą“øąµą“øą“°ąµā€" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "ą“•ą“æą““ą“•ąµą“•ąµ, ą“¤ąµ†ą“•ąµą“•ąµ ą“¬ąµ‹ą“°ąµā€ą“£ą“æą“Æąµ‹, ą“øąµ†ą“²ą“¬ąµ†ą“øąµ, ą“¬ą“¾ą“²ą“æ, ą“Øąµą“Æąµ‚ą“øą“¾ ą“Ÿąµ†ą“™ąµą“•ąµ‡ą“°ą“¾, ą“Ŗą“Ÿą“æą“žąµą“žą“¾ą“±ąµ ą“Ÿą“æą“®ąµ‹ą“°ąµā€" #: timezones.h:537 msgid "Asia/Manila" msgstr "ą“ą“·ąµą“Æ/ą“®ą“¾ą“Øą“æą“²" #: timezones.h:538 msgid "Asia/Muscat" msgstr "ą“ą“·ąµą“Æ/ą“®ą“øąµą“•ąµą“•ą“±ąµą“±ąµ" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "ą“ą“·ąµą“Æ/ą“Øą“æą“•ąµą“•ąµ‹ą“·ąµą“Æą“¾" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "ą“ą“·ąµą“Æ/ą“Øąµ‹ą“µąµ‹ą“•ą“øąµą“Øąµ†ą“Ÿąµą“øąµą“•ąµ" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "ą“®ąµ‹ą“øąµą“•ąµą“•ąµ‹+03 - ą“ØąµŠą“µąµ‹ą“•ą“øąµą“Øąµ†ą“Ÿąµą“øąµą“•ąµ" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "ą“ą“·ąµą“Æ/ą“ØąµŠą“µąµ‹ą“øą“æą“¬ą“æą“°ąµā€ą“øąµą“•ąµ" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "ą“®ąµ‹ą“øąµą“•ąµą“•ąµ‹+03 - ą“ØąµŠą“µąµ‹ą“øą“æą“¬ą“æą“°ąµā€ą“øąµą“•ąµ" #: timezones.h:546 msgid "Asia/Omsk" msgstr "ą“ą“·ąµą“Æ/ą““ą“®ąµą“øąµą“•ąµą“•ąµ" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "ą“®ąµ‹ą“øąµą“•ąµŒ+03 - ą“Ŗą“Ÿą“æą“žąµą“žą“¾ą“±ąµ ą“øąµˆą“¬ąµ‡ą“°ą“æą“Æą“¾" #: timezones.h:549 msgid "Asia/Oral" msgstr "ą“ą“·ąµą“Æ/ą“’ą“±ą“¾ą“²ąµā€" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "ą“Ŗą“Ÿą“æą“žąµą“žą“¾ą“±ą“Øąµā€ ą“•ą“øą“•ąµą“øąµą“„ą“¾ą“Øąµā€" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "ą“ą“·ąµą“Æ/ą“Ŗąµ†ą“Øąµ‹ą“‚_ą“Ŗąµ†ą“Øąµā€" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "ą“ą“·ąµą“Æ/ą“ŖąµŠą“£ąµā€ą“Ÿąµą“Ÿą“æą“Æą“¾ą“Øą“¾ą“•ąµą“•ąµ" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "ą“Ŗą“Ÿą“æą“žąµą“žą“¾ą“±ą“Øąµā€ ą“®ą“¦ąµą“§ąµą“Æ ą“¬ąµ‹ą“°ąµā€ą“£ą“æą“Æąµ‹" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "ą“ą“·ąµą“Æ/ą“Ŗąµą“Æąµ‹ą“‚ą“™ąµą“—ąµą“Æą“¾ą“™ąµ" #: timezones.h:557 msgid "Asia/Qatar" msgstr "ą“ą“·ąµą“Æ/ą“–ą“¤ąµą“¤ą“°ąµā€" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "ą“ą“·ąµą“Æ/ą“–ąµą“µą“æą“øą“æą“²ąµ‹ą“°ąµā€ą“”ą“¾" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "ą“–ą“æą“øą“æą“²ąµ‹ą“°ąµā€ą“”ą“¾ " #: timezones.h:561 msgid "Asia/Rangoon" msgstr "ą“ą“·ąµą“Æ/ą“°ą“£ąµā€ą“—ąµ‚ą“£ąµā€" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "ą“ą“·ąµą“Æ/ą“±ą“æą“Æą“¾ą“¦ąµ" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "ą“ą“·ąµą“Æ/ą“±ą“æą“Æą“¾ą“¦ąµ87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "ą“ą“·ąµą“Æ/ą“±ą“æą“Æą“¾ą“¦ąµ88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "ą“ą“·ąµą“Æ/ą“±ą“æą“Æą“¾ą“¦ąµ89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "ą“ą“·ąµą“Æ/ą“øą“Æąµą“—ąµ‹ą“£ąµā€" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "ą“ą“·ąµą“Æ/ą“øą“¾ą“–ą“¾ą“²ą“æą“Øąµā€" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "ą“®ąµ‹ą“øąµą“•ąµŒ+07 - ą“øą“¾ą“–ą“¾ą“²ą“æą“Øąµā€ ą“ą“²ą“Øąµā€ą“”ąµ" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "ą“ą“·ąµą“Æ/ą“øą“®ą“°ąµā€ą“•ąµą“•ą“£ąµą“”ąµ" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "ą“Ŗą“Ÿą“æą“žąµą“žą“¾ą“±ą“Øąµā€ ą“‰ą“øąµą“¬ąµ†ą“•ąµą“•ą“æą“øąµą“„ą“¾ą“Øąµā€" #: timezones.h:573 msgid "Asia/Seoul" msgstr "ą“ą“·ąµą“Æ/ą“øąµ‹ą“³ąµā€" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "ą“ą“·ąµą“Æ/ą“·ą“¾ą“Øąµā€ą“—ąµˆ" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "ą“•ą“æą““ą“•ąµą“•ąµ ą“šąµˆą“Øą“¾ - ą“¬ąµ†ą“Æą“æą“œą“æą“™ąµ, ą“—ąµą“µą“¾ą“™ąµą“”ąµ‹ą“™ąµ, ą“·ą“¾ą“™ąµą“•ą“¾ą“Æą“æ, ą“Žą“Øąµą“Øą“æą“µ" #: timezones.h:577 msgid "Asia/Singapore" msgstr "ą“ą“·ąµą“Æ/ą“øą“æą“‚ą“—ą“Ŗąµ‚ą“°ąµā€" #: timezones.h:578 msgid "Asia/Taipei" msgstr "ą“ą“·ąµą“Æ/ą“„ąµˆą“Ŗąµ†ą“Æąµ" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "ą“ą“·ąµą“Æ/ą“„ą“·ąµą“•ąµą“•ąµ†ą“Øąµą“¤ąµ" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“‰ą“øąµą“¬ąµ†ą“•ąµą“•ą“æą“øąµą“„ą“¾ą“Øąµā€" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "ą“ą“·ąµą“Æ/ą“„ąµ†ą“¬ą“æą“²ą“æą“øą“æ" #: timezones.h:583 msgid "Asia/Tehran" msgstr "ą“ą“·ąµą“Æ/ą“Ÿąµ†ą“¹ąµą“°ą“Øąµā€" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "ą“ą“·ąµą“Æ/ą“„ąµ†ą“²ąµā€_ą“…ą“µąµ€ą“µąµ" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "ą“ą“·ąµą“Æ/ą“„ą“æą“‚ą“®ąµą“Ŗąµ" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "ą“ą“·ąµą“Æ/ą“„ą“æą“‚ą“®ąµą“Ŗąµ" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "ą“ą“·ąµą“Æ/ą“Ÿąµ‹ą“•ąµą“•ąµą“Æąµ‹" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "ą“ą“·ąµą“Æ/ą“‰ą“œą“‚ą“™ąµ_ą“Ŗą“¾ą“Øąµā€ą“”ą“™ąµ" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "ą“ą“·ąµą“Æ/ą“‰ą“²ą“¾ą“Øąµā€ą“¬ą“¾ą“¤ąµą“¤ą“°ąµā€" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "ą“ą“·ąµą“Æ/ą“‰ą“²ą“¾ą“Øąµā€_ą“¬ą“¾ą“±ąµą“±ąµ‹ą“°ąµā€" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "ą“ą“·ąµą“Æ/ą“‰ą“±ąµą“‚ą“–ą“æ" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "ą“Ÿą“æą“¬ą“±ąµą“±ąµ, ą“•ąµą“øą“æą“™ąµą“œą“¾ą“™ąµ ą“Žą“Øąµą“Øą“æą“µą“Ÿą“™ąµą“™ą“³ą“æą“²ąµą“³ąµą“³ ą“®ą“æą“•ąµą“• ą“øąµą“„ą“²ą“™ąµą“™ą“³ąµā€" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "ą“ą“·ąµą“Æ/ą“µą“æą“Æą“Øąµą“±ą“æą“Æą“¾ą“Øąµā€" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "ą“ą“·ąµą“Æ/ą“µąµą“³ą“¾ą“”ą“æą“µąµ‹ą“øąµą“„ąµ‹ą“•ąµą“•ąµ" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "ą“®ąµ‹ą“øąµą“•ąµŒ+07 - ą“…ą“®ąµ‚ą“°ąµā€ ą“±ą“æą“µą“°ąµā€" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "ą“ą“·ąµą“Æ/ą“Æąµ†ą“•ąµą“•ąµ‚ą“Ÿąµą“Ÿąµą“øąµą“•ąµą“•ąµ" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "ą“®ąµ‹ą“øąµą“•ąµŒ+06 - ą“²ąµ†ą“Øą“¾ ą“±ą“æą“µą“°ąµā€" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "ą“ą“·ąµą“Æ/ą“Æąµ†ą“•ąµą“•ą“¾ą“¤ąµą“¤ą“±ą“æą“Øąµā€ą“¬ą“°ąµā€ą“—ąµ" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "ą“®ąµ‹ą“øąµą“•ąµŒ+02 - ą“‰ą“±ą“²ąµā€ą“øąµ" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "ą“ą“·ąµą“Æ/ą“Æąµ†ą“±ąµ†ą“µą“¾ą“Øąµā€" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "ą“…ą“±ąµą“±ąµą“²ą“¾ą“Øąµą“±ą“æą“•ąµ/ą“…ą“øąµ‹ą““ąµą“øąµ" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "ą“…ą“øąµ‹ą“°ąµā€ą“øąµ" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "ą“…ą“±ąµą“±ąµą“²ą“¾ą“Øąµą“±ą“æą“•ąµ/ą“¬ą“°ąµā€ą“®ąµ‚ą“”ą“¾" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "ą“…ą“±ąµą“±ąµą“²ą“¾ą“Øąµą“±ą“æą“•ąµ/ą“•ą“¾ą“Øą“±ą“æ" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "ą“•ą“¾ą“Øą“±ą“æ ą“ą“²ą“Øąµā€ą“”ąµą“•ą“³ąµā€" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "ą“…ą“±ąµą“±ąµą“²ą“¾ą“Øąµą“±ą“æą“•ąµ/ą“•ąµ†ą“Æąµą“Ŗąµą“Ŗąµ_ą“µąµ†ą“°ąµā€ą“¦ą“æ" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "ą“…ą“±ąµą“±ąµą“²ą“¾ą“Øąµą“±ą“æą“•ąµ/ą“«ąµ†ą“Æąµą“±ąµ‹" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "ą“…ą“±ąµą“±ąµą“²ą“¾ą“Øąµą“±ą“æą“•ąµ/ą“«ąµ†ą“±ąµ‹" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "ą“…ą“±ąµą“±ąµą“²ą“¾ą“Øąµą“±ą“æą“•ąµ/ą“œą“¾ą“Øąµā€_ą“®ą“Æą“Øąµā€" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "ą“…ą“±ąµą“±ąµą“²ą“¾ą“Øąµą“±ą“æą“•ąµ/ą“®ą“¦ąµ€ą“Æąµą“±" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "ą“®ą“”ą“Æą“æą“±ą“¾ ą“ą“²ą“Øąµā€ą“”ąµą“•ą“³ąµā€" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "ą“…ą“±ąµą“±ąµą“²ą“¾ą“Øąµą“±ą“æą“•ąµ/ą“±ąµ†ą“–ąµą“Æą“¾ą“µąµ†ą“•ąµą“•ąµ" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "ą“…ą“±ąµą“±ąµą“²ą“¾ą“Øąµą“±ą“æą“•ąµ/ą“øąµŒą“¤ąµą“¤ąµ_ą“œąµ‹ą“°ąµā€ą“œąµą“Æą“¾" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "ą“…ą“±ąµą“±ąµą“²ą“¾ą“Øąµą“±ą“æą“•ąµ/ą“øąµą“±ąµą“±ą“¾ą“Øąµā€ą“²ą“æ" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "ą“…ą“±ąµą“±ąµą“²ą“¾ą“Øąµą“±ą“æą“•ąµ/ą“øąµ†ą“Øąµą“±ą“°ąµā€_ą“¹ąµ†ą“²ąµ†ą“Øą“¾" #: timezones.h:625 msgid "Australia/ACT" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/ą“…ą“”ąµ†ą“²ąµ‡ą“Æąµą“Ÿąµ" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "ą“¤ąµ†ą“•ąµą“•ą“Øąµā€ ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æą“¾" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/ą“¬ąµą“°ą“æą“øąµą“¬ą“Øąµā€" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "ą“•ąµą“µąµ€ą“Øąµā€ą“øąµā€Œą“²ą“¾ą“Øąµā€ą“”ąµ - ą“®ą“æą“•ąµą“•ąµ ą“øąµą“„ą“²ą“™ąµą“™ą“³ąµā€" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/ą“¬ąµą“°ąµ‹ą“•ąµą“•ą“£ąµā€_ą“¹ą“æą“²ąµā€" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "ą“Øąµą“Æąµ‚ ą“øąµŒą“¤ąµą“¤ąµ ą“µąµ†ą“Æą“æą“²ąµā€ą“øąµ - ą“Æą“¾ą“Øąµā€ą“•ąµ‹ą“µą“æą“Øąµą“Øą“¾" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/ą“•ąµą“Æą“¾ą“Øąµā€ą“¬ąµ†ą“±ą“¾" #: timezones.h:636 msgid "Australia/Currie" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/ą“•ąµą“Æą“±ąµ€" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "ą“Ÿą“¾ą“øąµą“®ą“¾ą“Øą“æą“Æą“¾ - ą“•ą“æą“™ąµ ą“ą“²ą“Øąµā€ą“”ąµ" #: timezones.h:639 msgid "Australia/Darwin" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/ą“”ą“¾ą“°ąµā€ą“µą“æą“Øąµā€" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "ą“Øąµ‹ą“°ąµā€ą“¤ąµą“¤ąµ‡ą“£ąµā€ ą“Ÿąµ†ą“±ą“æą“Ÿąµą“Ÿą“±ą“æ" #: timezones.h:642 msgid "Australia/Eucla" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/ą“Æąµ‚ą“•ąµą“²ą“¾" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "ą“Ŗą“Ÿą“æą“žąµą“žą“¾ą“±ą“¾ą“Øąµā€ ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æą“¾ - ą“Æąµ‚ą“•ąµą“²ą“¾" #: timezones.h:645 msgid "Australia/Hobart" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/ą“¹ąµŠą“¬ą“¾ą“°ąµā€ą“Ÿąµą“Ÿąµ" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "ą“Ÿą“¾ą“øąµą“®ą“¾ą“Øą“æą“Æą“¾ - ą“®ą“æą“•ąµą“• ą“øąµą“„ą“²ą“™ąµą“™ą“³ąµā€" #: timezones.h:648 msgid "Australia/LHI" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/ą“²ą“æą“Øąµā€ą“Ÿąµą“®ą“¾ą“Øąµā€" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "ą“•ąµą“µąµ€ą“Øąµā€ą“øąµā€Œą“²ą“¾ą“Øąµā€ą“”ąµ - ą“¹ąµ‹ą“³ą“æą“”ąµ‡ ą“ą“²ą“Øąµā€ą“”ąµą“•ą“³ąµā€" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/ą“²ąµ‹ą“°ąµā€ą“”ąµ_ą“¹ąµ‹ą“µąµ" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "ą“²ąµ‹ą“°ąµā€ą“”ąµ ą“¹ąµ‹ą“µąµ ą“ą“²ą“Øąµā€ą“”ąµ" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/ą“®ąµ†ą“²ąµā€ą“¬ąµ‹ą“£ąµā€" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "ą“µą“æą“•ąµą“Ÿąµ‹ą“±ą“æą“Æ" #: timezones.h:658 msgid "Australia/North" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/ą“µą“Ÿą“•ąµą“•ąµ" #: timezones.h:659 msgid "Australia/NSW" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/ą“Ŗąµ†ą“°ąµā€ą“¤ąµą“¤ąµ" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "ą“Ŗą“Ÿą“æą“žąµą“žą“¾ą“±ą“Øąµā€ ą“’ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æą“¾ - ą“®ą“æą“•ąµą“•ąµ ą“øąµą“„ą“²ą“™ąµą“™ą“³ąµā€" #: timezones.h:663 msgid "Australia/Queensland" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/ą“•ąµą“Æąµ€ą“Øąµā€ą“øąµą“²ą“¾ą“Øąµā€ą“”ąµ" #: timezones.h:664 msgid "Australia/South" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/ą“¤ąµ†ą“•ąµą“•ąµ" #: timezones.h:665 msgid "Australia/Sydney" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/ą“øą“æą“”ąµą“Øą“æ" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "ą“Øąµą“Æąµ‚ ą“øąµŒą“¤ąµą“¤ąµ ą“µąµ†ą“Æą“æą“²ąµā€ą“øąµ - ą“®ą“æą“•ąµą“• ą“øąµą“„ą“²ą“™ąµą“™ą“³ąµā€" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/ą“±ąµą“±ą“¾ą“øąµą“®ą“¾ą“Øąµą“Æ" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/ą“µą“æą“•ąµą“Ÿąµ‹ą“±ą“æą“Æ" #: timezones.h:670 msgid "Australia/West" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/ą“Ŗą“Ÿą“æą“žąµą“žą“¾ą“±ąµ" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ą““ą“øąµą“Ÿąµą“°ąµ‡ą“²ą“æą“Æ/ą“Æą“¾ą“Øąµā€ą“•ąµą“•ąµ‹ą“µą“æą“Ø" #: timezones.h:672 msgid "Brazil/Acre" msgstr "ą“¬ąµą“°ą“øąµ€ą“²ąµā€/ą“†ą“•ąµą“•ąµą“°ąµ†" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "ą“¬ąµą“°ą“øąµ€ą“²ąµā€/ą“”ąµ†ą“ØąµŠą“±ąµ‹ą“£ą“¾" #: timezones.h:674 msgid "Brazil/East" msgstr "ą“¬ąµą“°ą“øąµ€ą“²ąµā€/ą“•ą“æą““ą“•ąµą“•ąµ" #: timezones.h:675 msgid "Brazil/West" msgstr "ą“¬ąµą“°ą“øąµ€ą“²ąµā€/ą“Ŗą“Ÿą“æą“žąµą“žą“¾ą“±ąµ" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "ą“•ą“¾ą“Øą“”/ą“…ą“±ąµą“±ąµą“²ą“¾ą“Øąµą“±ą“æą“•ąµ" #: timezones.h:677 msgid "Canada/Central" msgstr "ą“•ą“¾ą“Øą“”/ą“øąµ†ą“Øąµā€ą“Ÿąµą“°ą“²ąµā€" #: timezones.h:678 msgid "Canada/Eastern" msgstr "ą“•ą“¾ą“Øą“”/ą“•ą“æą““ą“•ąµą“•ą“Øąµā€" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "ą“•ą“¾ą“Øą“”/ą“•ą“æą““ą“•ąµą“•ąµ-ą“øą“¾ą“øąµą“•ąµą“•ą“šąµą“šąµ‡ą“µą“¾ą“Øąµā€" #: timezones.h:680 msgid "Canada/Mountain" msgstr "ą“•ą“¾ą“Øą“”/ą“®ąµŒą“£ąµā€ą“Ÿą“Øąµā€" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "ą“•ą“¾ą“Øą“”/ą“Øąµą“Æąµ‚ą“«ąµŒą“£ąµā€ą“Ÿąµą“²ą“¾ą“Øąµā€ą“”ąµ" #: timezones.h:682 msgid "Canada/Pacific" msgstr "ą“•ą“¾ą“Øą“”/ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "ą“•ą“¾ą“Øą“”/ą“øą“¾ą“øąµą“•ąµą“•ą“šąµą“šąµ‡ą“µą“¾ą“Øąµā€" #: timezones.h:684 msgid "Canada/Yukon" msgstr "ą“•ą“¾ą“Øą“”/ą“Æąµą“•ąµą“•ąµ‹ą“£ąµā€" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "ą“šą“æą“²ą“æ/ą“•ąµ‹ą“£ąµā€ą“Ÿąµą“Ÿą“æą“Øąµ†ą“Øąµą“±ą“²ąµā€" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "ą“šą“æą“²ą“æ/ą“ˆą“øąµą“±ąµą“±ą“°ąµā€ą“ą“²ą“Øąµą“±ąµ" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "ą“•ąµą“Æąµ‚ą“¬" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "ą“ˆą“œą“æą“Ŗąµą“±ąµą“±ąµ" #: timezones.h:692 msgid "Eire" msgstr "ą“Žą“Æą“æą“°ąµā€" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/ą“—ąµą“°ąµ€ą“Øąµā€ą“µą“æą“šąµą“šąµ" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“²ąµā€" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/ą“øąµą“³ąµ" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“†ą“®ąµą“øą“±ąµą“±ą“°ąµā€ā€ą“”ą“¾ą“‚" #: timezones.h:731 msgid "Europe/Andorra" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“†ą“Øąµā€ą“”ąµ‹ą“±" #: timezones.h:732 msgid "Europe/Athens" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“ą“„ą“Øąµā€ą“øąµ" #: timezones.h:733 msgid "Europe/Belfast" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“¬ąµ†ą“²ąµā€ą“«ą“¾ą“øąµą“±ąµą“±ąµ" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“¬ąµ†ą“²ąµā€ą“—ąµą“°ąµ‡ą“”ąµ" #: timezones.h:735 msgid "Europe/Berlin" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“¬ąµ†ą“°ąµā€ą“²ą“æą“Øąµā€" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“¬ąµą“°ą“¾ą“±ąµą“±ą“æą“øąµą“²ąµ‹ą“µą“¾" #: timezones.h:737 msgid "Europe/Brussels" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“¬ąµą“°ą“øąµą“øą“²ąµā€ą“øąµ" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“¬ąµą“•ąµą“•ąµ‡ą“±ą“øąµą“±ąµą“±ąµ" #: timezones.h:739 msgid "Europe/Budapest" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“¬ąµą“”ą“¾ą“Ŗąµ†ą“øąµą“±ąµą“±ąµ" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“–ą“æą“·ą“æą“ØąµŒ" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“•ąµŠą“Ŗąµą“Ŗąµ†ą“Øąµā€ą“¹ą“¾ą“—ą“Øąµā€" #: timezones.h:742 msgid "Europe/Dublin" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“”ąµą“Æąµ‚ą“¬ąµą“³ą“æą“Øąµā€" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“—ą“æą“¬ąµą“°ą“¾ą“²ąµą“±ąµą“±ą“°ąµā€" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“œąµ‡ą“°ąµā€ą“£ąµą“øąµ€" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“¹ąµ†ą“²ąµā€ą“øą“æą“Øąµā€ą“–ą“æ" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“ą“²ąµā€ ą““ą“«ąµ ą“®ą“¾ą“Øąµā€" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“‡ą“øąµą“±ąµą“±ą“¾ą“Øąµā€ą“¬ąµą“²ąµā€" #: timezones.h:748 msgid "Europe/Jersey" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“œąµ‡ą“°ąµā€ą“øąµ€" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“•ą“²ą“æą“Øą“æą“Øąµā€ą“—ąµą“°ą“¾ą“”ąµ" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "ą“®ąµ‹ą“øąµą“•ąµŒ-01 - ą“•ą“¾ą“²ą“æą“™ąµą“—ąµą“°ą“¾ą“”ąµ" #: timezones.h:752 msgid "Europe/Kiev" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“•ąµ†ą“Æą“æą“µąµ" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“²ą“æą“øąµą“¬ą“£ąµā€" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“²ąµą“¬ąµą“³ąµ†ą“Æą“¾ą“Ø" #: timezones.h:759 msgid "Europe/London" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“²ą“£ąµą“Ÿą“Øąµā€" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“²ą“•ąµą“øą“‚ą“¬ą“°ąµā€ą“—ąµ" #: timezones.h:761 msgid "Europe/Madrid" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“®ą“¾ą“”ąµą“°ą“æą“”ąµ" #: timezones.h:764 msgid "Europe/Malta" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“®ą“¾ą“²ąµā€ą“±ąµą“±ą“¾" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“®ą“¾ą“°ąµ€ą“¹ą“‚" #: timezones.h:766 msgid "Europe/Minsk" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“®ą“æą“Øąµā€ą“øąµą“•ąµą“•ąµ" #: timezones.h:767 msgid "Europe/Monaco" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“®ąµŠą“£ą“¾ą“•ąµą“•ąµŠ" #: timezones.h:768 msgid "Europe/Moscow" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“®ąµ‹ą“øąµą“•ąµą“•ąµŠ" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "ą“®ąµ‹ą“øąµą“•ąµŒ+00 - ą“Ŗą“Ÿą“æą“žąµą“žą“¾ą“±ą“Øąµā€ ą“±ą“·ąµą“Æą“¾" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“Øą“æą“•ąµą“•ąµ‹ą“·ąµą“Æ" #: timezones.h:772 msgid "Europe/Oslo" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą““ą“øąµą“²ąµ‹" #: timezones.h:773 msgid "Europe/Paris" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“Ŗą“¾ą“°ąµ€ą“øąµ" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“Ŗąµ‹ą“”ąµą“—ąµ‹ą“±ą“æą“•ąµą“•ą“¾" #: timezones.h:775 msgid "Europe/Prague" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“Ŗąµą“°ą“¾ą“—ąµ" #: timezones.h:776 msgid "Europe/Riga" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“±ą“æą“—" #: timezones.h:777 msgid "Europe/Rome" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“±ąµ‹ą“‚" #: timezones.h:778 msgid "Europe/Samara" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“øą“®ąµ‡ą“±" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "ą“®ąµ‹ą“øąµą“•ąµŒ - ą“øą“¾ą“®ą“¾ą“±ą“¾, ą“‰ą“”ąµą“®ą“°ąµā€ą“¤ąµą“Æą“¾" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“øą“¾ą“Øąµā€_ą“®ą“¾ą“±ą“æą“ØąµŠ" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“øą“°ą“¾ą“œąµ†ą“µąµŠ" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“øą“æą“‚ą“«ąµ†ą“±ąµ‹ą“Ŗąµą“Ŗą“²ąµā€" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "ą“øąµ†ą“Øąµā€ą“Ÿąµą“°ą“²ąµā€ ą“•ąµą“°ą“®ą“æą“Æą“¾" #: timezones.h:786 msgid "Europe/Skopje" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“øąµą“•ąµą“•ąµ‹ą“Ŗąµą“Ŗąµą“Æąµ†" #: timezones.h:787 msgid "Europe/Sofia" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“øąµ‹ą“«ą“æą“Æ" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“øąµą“±ąµą“±ąµ‹ą“•ąµą“•ąµą“¹ąµ‹ą“‚" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“±ąµą“±ą“¾ą“²ą“æą“Øąµā€" #: timezones.h:790 msgid "Europe/Tirane" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“±ąµą“±ą“æą“±ą“¾ą“Øąµ†" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“±ąµą“±ą“æą“±ą“¾ą“øąµą“Ŗąµą“Ŗąµ‹ą“³ąµā€" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“‰ą“øąµą“—ąµŠą“±ąµ‹ą“”ąµ" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "ą“±ąµ‚ą“„ąµ‡ą“Øą“æą“Æą“¾" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“µą“¾ą“”ąµ‚ą“øąµ" #: timezones.h:796 msgid "Europe/Vatican" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“µą“¤ąµą“¤ą“æą“•ąµą“•ą“¾ą“Øąµā€" #: timezones.h:797 msgid "Europe/Vienna" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“µą“æą“Æąµ†ą“Øąµą“Ø" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“µą“æą“²ąµā€ą“Øąµ†ą“Æą“øąµ" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“µąµ‹ą“³ąµā€ą“—ąµ‹ą“—ąµą“°ą“¾ą“”ąµ" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "ą“®ąµ‹ą“øąµą“•ąµŒ+00 - ą“•ą“¾ą“øąµą“Ŗą“æą“Æą“Øąµā€ ą“øąµ€" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“µą“¾ą“°ąµā€ą“øąµŒ" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“øą“¾ą“—ąµą“°ąµ†ą“¬ąµ" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“øą“¾ą“Ŗąµą“ŖąµŠą“±ąµ‹ą“øą“æ" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "ą“øą“¾ą“Ŗąµ‹ą“±ąµ‹ą“øąµą“Æąµ‡, ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“²ąµą“—ą“¾ą“Øąµā€ą“øąµą“•ąµ / ą“øą“¾ą“Ŗąµ‹ą“±ą“æą“øą“æą“Æą“¾, ą“•ą“æą““ą“•ąµą“•ą“Øąµā€ ą“²ąµą“¹ą“¾ą“Øąµā€ą“øąµą“•ąµ" #: timezones.h:807 msgid "Europe/Zurich" msgstr "ą“Æąµ‚ą“±ąµ‹ą“Ŗąµą“Ŗąµ/ą“øąµą“Æąµ‚ą“±ą“æą“•ąµą“•ąµ" #: timezones.h:808 msgid "Factory" msgstr "ą“«ą“¾ą“•ąµą“Ÿą“±ą“æ" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-ą“Žą“Æą“æą“°ąµā€" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "ą“—ąµą“°ąµ€ą“Øąµā€ą“µą“æą“šąµą“šąµ" #: timezones.h:816 msgid "Hongkong" msgstr "ą“¹ąµ‹ą“™ąµą“•ąµą“•ąµ‹ą“™ąµ" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "ą“ą“øąµą“²ą“¾ą“Øąµā€ą“”ąµ" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "ą“‡ą“”ąµą“Æą“Øąµā€/ą“†ą“Øąµą“±ą“Øą“¾ą“Øą“¾ą“°ą“æą“µąµŠ" #: timezones.h:820 msgid "Indian/Chagos" msgstr "ą“‡ą“”ąµą“Æą“Øąµā€/ą“·ą“¾ą“—ąµ‹ą“øąµ" #: timezones.h:821 msgid "Indian/Christmas" msgstr "ą“‡ą“”ąµą“Æą“Øąµā€/ą“•ąµą“°ą“æą“øąµą“®ą“øąµ" #: timezones.h:822 msgid "Indian/Cocos" msgstr "ą“‡ą“”ąµą“Æą“Øąµā€/ą“•ąµŠą“•ąµą“•ąµ‹ą“øąµ" #: timezones.h:823 msgid "Indian/Comoro" msgstr "ą“‡ą“”ąµą“Æą“Øąµā€/ą“•ąµŠą“®ąµ‹ą“±ąµŠ" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "ą“‡ą“”ąµą“Æą“Øąµā€/ą“•ąµ†ą“°ąµā€ą“—ąµą“µąµ‡ą“²ą“Øąµā€" #: timezones.h:825 msgid "Indian/Mahe" msgstr "ą“‡ą“”ąµą“Æą“Øąµā€/ą“®ą“¾ą“¹ąµ†" #: timezones.h:826 msgid "Indian/Maldives" msgstr "ą“‡ą“”ąµą“Æą“Øąµā€/ą“®ą“¾ą“²ąµā€ą“”ąµ€ą“µąµą“øąµ" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "ą“‡ą“”ąµą“Æą“Øąµā€/ą“®ąµŠą“±ąµ€ą“·ąµą“Æą“øąµ" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "ą“‡ą“”ąµą“Æą“Øąµā€/ą“®ą“Æąµ‹ą“Ÿąµą“Ÿąµ†" #: timezones.h:829 msgid "Indian/Reunion" msgstr "ą“‡ą“”ąµą“Æą“Øąµā€/ą“±ąµ€ą“Æąµ‚ą“£ąµą“Æą“Øąµā€" #: timezones.h:830 msgid "Iran" msgstr "ą“‡ą“±ą“¾ą“Øąµā€" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "ą“‡ą“øąµą“°ą“Æąµ‡ą“²ąµā€" #: timezones.h:833 msgid "Jamaica" msgstr "ą“œą“®ąµˆą“•ąµą“•" #: timezones.h:834 msgid "Japan" msgstr "ą“œą“Ŗąµą“Ŗą“¾ą“Øąµā€" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "ą“•ąµą“µą“¾ą“œą“²ą“Øąµā€" #: timezones.h:836 msgid "Libya" msgstr "ą“²ą“æą“¬ąµą“Æ" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "ą“®ąµ†ą“•ąµą“øą“æą“•ąµą“•ąµŠ/ą“¬ą“œą“Øąµ‹ą“°ąµā€ą“¤ąµ†" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "ą“®ąµ†ą“•ąµą“øą“æą“•ąµą“•ąµŠ/ą“¬ą“¾ą“œą“¾ą“øąµą“°ąµā€" #: timezones.h:840 msgid "Mexico/General" msgstr "ą“®ąµ†ą“•ąµą“øą“æą“•ąµą“•ąµŠ/ą“œąµ†ą“Øą“±ą“²ąµā€" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "ą“®ą“æą“”ąµą“ˆą“øąµą“±ąµą“±ąµ/ą“±ą“æą“Æą“¾ą“¦ąµ87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "ą“®ą“æą“”ąµą“ˆą“øąµą“±ąµą“±ąµ/ą“±ą“æą“Æą“¾ą“¦ąµ88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "ą“®ą“æą“”ąµą“ˆą“øąµą“±ąµą“±ąµ/ą“±ą“æą“Æą“¾ą“¦ąµ89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "ą“Øą“µą“¾ą“œąµŠ" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“†ą“Ŗąµą“Ŗą“æą“Æ" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą““ą“•ąµą“•ąµą“²ą“¾ą“Øąµā€ą“”ąµ" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“šą“¾ą“„ą“¾ą“‚" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "ą“šą“¾ą“„ą“‚ ą“ą“²ą“Øąµā€ą“”ąµą“•ą“³ąµā€" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“šąµą“•ąµą“•ąµ" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "ą“šąµą“•ąµą“•ąµ (ą“Ÿąµą“°ąµą“•ąµą“•ąµ) ą“†ą“Øąµā€ą“”ąµ ą“Æą“¾ą“Ŗąµ" #: timezones.h:859 msgid "Pacific/Easter" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“ˆą“øąµą“±ąµą“±ą“°ąµā€ " #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "ą“ˆą“øąµą“±ąµą“±ą“°ąµā€ ą“ą“²ą“Øąµā€ą“”ąµ & ą“øą“¾ą“²ą“¾ ą“µą“Æą“æ ą“—ąµ‹ą“®ą“øąµ" #: timezones.h:862 msgid "Pacific/Efate" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“Žą“«ąµ†ą“Æąµą“±ąµą“±ąµ" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“Žą“Øąµā€ą“”ą“°ąµā€ą“¬ąµą“Æąµ‚ą“±ą“æ" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "ą“«ąµ€ą“£ą“æą“•ąµą“øąµ ą“ą“²ą“Øąµā€ą“”ąµą“•ą“³ąµā€" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“«ą“•ąµą“•ąµ‹ą“«ąµŠ" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“«ą“æą“œą“æ" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“«ąµą“£ą“¾ą“«ąµą“¤ąµą“¤ą“æ" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“—ą“²ą“¾ą“Ŗąµą“Ŗą“¾ą“—ąµ‹ą“øąµ" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "ą“—ą“¾ą“²ą“¾ą“Ŗą“¾ą“—ąµ‹ą“øąµ ą“ą“²ą“Øąµā€ą“”ąµą“•ą“³ąµā€" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“—ą“¾ą“‚ą“¬ą“æą“Æą“°ąµā€" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "ą“—ą“¾ą“‚ą“¬ą“æą“Æą“°ąµā€ ą“ą“²ą“Øąµā€ą“”ąµą“•ą“³ąµā€" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“—ąµą“µą“”ą“¾ą“²ąµā€ą“•ą“Øą“¾ą“²ąµā€" #: timezones.h:876 msgid "Pacific/Guam" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“—ąµą“µą“¾ą“‚" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“¹ąµŠą“£ąµ‹ą“²ąµą“²ąµ" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "ą“¹ą“µą“¾ą“Æąµ" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“œąµ‹ą“£ąµā€ą“øąµą“±ąµą“±ą“£ąµā€" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "ą“œąµ‹ą“£ąµā€ą“øąµą“±ąµą“±ą“£ąµā€ ą“…ą“±ąµą“±ąµ‹ą“³ąµā€" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“•ąµ†ą“°ą“æą“øąµą“®ą“øąµ" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "ą“²ąµˆą“Øąµā€ ą“ą“²ą“Øąµā€ą“”ąµą“•ą“³ąµā€" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“•ąµŠą“øąµą“°ąµ†" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "ą“•ąµ‹ą“øąµą“°ąµ‡" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“•ąµą“µą“¾ą“œą“²ą“Øąµā€" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“®ą“œąµ‚ą“±ąµ‹" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“®ą“¾ą“°ą“•ąµą“•ąµą“µąµ†ą“øą“¾ą“øąµ" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "ą“®ą“¾ą“°ąµā€ą“•ąµą“µą“æą“øą“¾ą“øąµ ą“ą“²ą“Øąµā€ą“”ąµą“•ą“³ąµā€" #: timezones.h:898 msgid "Pacific/Midway" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“®ą“æą“”ąµā€Œą“µąµ‡" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "ą“®ą“æą“”ąµā€Œą“µąµ‡ ą“ą“²ą“Øąµā€ą“”ąµą“•ą“³ąµā€" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“ØąµŒą“±ąµŠ" #: timezones.h:902 msgid "Pacific/Niue" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“Øąµ†ą“Æąµ‚ą“µąµ†" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“Øąµ‹ą“°ąµā€ą“«ąµ‹ą“•ąµą“•ąµ" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“Øą“µąµ‹ą“®ąµą“Æ" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“Ŗą“¾ą“—ąµ‹_ą“Ŗą“¾ą“—ąµ‹" #: timezones.h:906 msgid "Pacific/Palau" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“Ŗą“¾ą“²ąµŒ" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“Ŗą“æą“±ąµą“±ąµą“•ąµ†ą“Æą“æą“Øąµā€" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“Ŗąµ‹ą“Øąµā€ą“Ŗąµ†ą“Æąµ" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "ą“Ŗąµ‹ą“Øąµā€ą“Ŗąµ†ą“Æąµ (ą“Ŗąµ‹ą“£ąµ‡ą“Ŗąµą“Ŗąµ)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“ŖąµŠą“Øąµˆą“Ŗąµą“Ŗąµ" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“Ŗąµ‹ą“°ąµā€ą“Ÿąµą“Ÿąµ_ą“®ąµ‹ą“°ąµā€ą“øąµą“¬ąµ€" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“°ą“°ąµ‹ą“Ÿąµą“ŸąµŠą“Øąµā€ą“—" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“øą“¾ą“Æą“æą“Ŗąµą“Ŗą“¾ą“Øąµā€" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“øą“®ąµ‹ą“µ" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“¤ą“¹ą“æą“¤ąµą“¤ą“æ" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "ą“øąµŠą“øąµˆą“±ąµą“±ą“æ ą“ą“²ą“Øąµā€ą“”ąµą“•ą“³ąµā€" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“¤ą“°ą“¾ą“µą“¾" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "ą“—ą“æą“²ąµā€ą“¬ąµ‡ą“°ąµā€ą“Ÿąµą“Ÿąµ ą“ą“²ą“Øąµā€ą“”ąµą“•ą“³ąµā€" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“±ąµą“±ąµ‹ą“™ą“¾ą“±ąµą“±ą“Ŗąµą“Ŗąµ" #: timezones.h:923 msgid "Pacific/Truk" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“Ÿąµą“°ą“•ąµą“•ąµ" #: timezones.h:924 msgid "Pacific/Wake" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“µąµ†ą“Æąµą“•ąµą“•ąµ" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "ą“µąµ†ą“Æą“æą“•ąµą“•ąµ ą“ą“²ą“Øąµā€ą“”ąµ" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“µą“¾ą“²ąµą“²ą“æą“øąµ" #: timezones.h:928 msgid "Pacific/Yap" msgstr "ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ/ą“Æą“¾ą“Ŗąµą“Ŗąµ" #: timezones.h:929 msgid "Poland" msgstr "ą“Ŗąµ‹ą“³ą“£ąµā€ą“Ÿąµ" #: timezones.h:930 msgid "Portugal" msgstr "ą“Ŗąµ‹ą“°ąµā€ą“šąµą“šąµą“Æąµą“—ą“²ąµā€" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "ą“øą“æą“‚ą“—ą“Ŗąµą“Ŗąµ‚ą“°ąµā€" #: timezones.h:937 msgid "Turkey" msgstr "ą“¤ąµą“°ąµā€ą“•ąµą“•ą“æ" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "ą“Æąµ‚ą“£ą“æą“µąµ‡ą““ąµą“øą“²ąµā€" #: timezones.h:940 msgid "US/Alaska" msgstr "ą“Æąµ ą“Žą“øąµ/ą“…ą“²ą“¾ą“øąµą“•ąµą“•" #: timezones.h:941 msgid "US/Aleutian" msgstr "ą“Æąµ ą“Žą“øąµ/ą“Žą“²ąµ‚ą“·ą“Øąµā€" #: timezones.h:942 msgid "US/Arizona" msgstr "ą“Æąµ ą“Žą“øąµ/ą“…ą“°ą“æą“øąµ‹ą“£" #: timezones.h:943 msgid "US/Central" msgstr "ą“Æąµ ą“Žą“øąµ/ą“øąµ†ą“Øąµā€ą“Ÿąµą“°ą“²ąµā€" #: timezones.h:944 msgid "US/Eastern" msgstr "ą“Æąµ ą“Žą“øąµ/ą“•ą“æą““ą“•ąµą“•ą“Øąµā€" #: timezones.h:945 msgid "US/East-Indiana" msgstr "ą“Æąµ ą“Žą“øąµ/ą“•ą“æą““ą“•ąµą“•ąµ-ą“‡ą“”ąµą“Æą“¾ą“Ø" #: timezones.h:946 msgid "US/Hawaii" msgstr "ą“Æąµ ą“Žą“øąµ/ą“¹ą“µą“¾ą“Æąµ" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "ą“Æąµ ą“Žą“øąµ/ą“‡ą“”ąµą“Æą“¾ą“Ø-ą“øąµą“±ąµą“±ą“¾ą“°ąµā€ą“•ąµą“•ąµ" #: timezones.h:948 msgid "US/Michigan" msgstr "ą“Æąµ ą“Žą“øąµ/ą“®ą“æą“·ą“æą“—ą“Øąµā€" #: timezones.h:949 msgid "US/Mountain" msgstr "ą“Æąµ ą“Žą“øąµ/ą“®ąµŒą“£ąµā€ą“Ÿą“Øąµā€" #: timezones.h:950 msgid "US/Pacific" msgstr "ą“Æąµ ą“Žą“øąµ/ą“Ŗą“øą“æą“«ą“æą“•ąµą“•ąµ" #: timezones.h:951 msgid "US/Samoa" msgstr "ą“Æąµ ą“Žą“øąµ/ą“øą“®ąµ‹ą“µ" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "ą“øąµą“³ąµ" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/ka.po0000664000175000017500000016636014632072346023666 0ustar fabiofabio# translation of ka.po to Georgian # Georgian translations for PACKAGE package. # Copyright (C) 2004 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Automatically generated, 2004. # George Machitidze , 2006. msgid "" msgstr "" "Project-Id-Version: ka\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2006-01-02 03:03+0300\n" "Last-Translator: George Machitidze \n" "Language-Team: Georgian \n" "Language: ka\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "" #: timezones.h:2 msgid "Africa/Accra" msgstr "" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "" #: timezones.h:4 msgid "Africa/Algiers" msgstr "įƒįƒ¤įƒ įƒ˜įƒ™įƒ/ალჟირი" #: timezones.h:5 #, fuzzy msgid "Africa/Asmara" msgstr "įƒįƒ¤įƒ įƒ˜įƒ™įƒ/įƒ„įƒįƒ˜įƒ įƒ" #: timezones.h:6 msgid "Africa/Asmera" msgstr "" #: timezones.h:7 msgid "Africa/Bamako" msgstr "" #: timezones.h:8 msgid "Africa/Bangui" msgstr "" #: timezones.h:9 msgid "Africa/Banjul" msgstr "" #: timezones.h:10 msgid "Africa/Bissau" msgstr "" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "" #: timezones.h:14 msgid "Africa/Cairo" msgstr "įƒįƒ¤įƒ įƒ˜įƒ™įƒ/įƒ„įƒįƒ˜įƒ įƒ" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "įƒįƒ¤įƒ įƒ˜įƒ™įƒ/įƒ™įƒįƒ”įƒįƒ‘įƒšįƒįƒœįƒ™įƒ" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "" #: timezones.h:20 msgid "Africa/Dakar" msgstr "įƒįƒ¤įƒ įƒ˜įƒ™įƒ/įƒ“įƒįƒ™įƒįƒ įƒ˜" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "įƒįƒ¤įƒ įƒ˜įƒ™įƒ/įƒÆįƒ˜įƒ‘įƒ£įƒ¢įƒ˜" #: timezones.h:23 msgid "Africa/Douala" msgstr "" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "" #: timezones.h:25 msgid "Africa/Freetown" msgstr "" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "" #: timezones.h:27 msgid "Africa/Harare" msgstr "" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "" #: timezones.h:29 msgid "Africa/Kampala" msgstr "" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "" #: timezones.h:31 msgid "Africa/Kigali" msgstr "" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "įƒįƒ¤įƒ įƒ˜įƒ™įƒ/įƒšįƒįƒ’įƒįƒ”įƒ˜" #: timezones.h:36 msgid "Africa/Libreville" msgstr "" #: timezones.h:37 msgid "Africa/Lome" msgstr "" #: timezones.h:38 msgid "Africa/Luanda" msgstr "" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "" #: timezones.h:43 msgid "Africa/Malabo" msgstr "" #: timezones.h:44 msgid "Africa/Maputo" msgstr "įƒįƒ¤įƒ įƒ˜įƒ™įƒ/įƒ›įƒįƒžįƒ£įƒ¢įƒ" #: timezones.h:45 msgid "Africa/Maseru" msgstr "" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "įƒįƒ¤įƒ įƒ˜įƒ™įƒ/įƒ›įƒįƒ‘įƒįƒ‘įƒįƒœįƒ”" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "įƒįƒ¤įƒ įƒ˜įƒ™įƒ/įƒœįƒįƒ˜įƒ įƒįƒ‘įƒ˜" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "" #: timezones.h:51 msgid "Africa/Niamey" msgstr "" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "" #: timezones.h:58 msgid "Africa/Tunis" msgstr "įƒįƒ¤įƒ įƒ˜įƒ™įƒ/ტუნიეი" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "" #: timezones.h:60 msgid "America/Adak" msgstr "" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "" #: timezones.h:63 msgid "America/Anchorage" msgstr "" #. comment for time zone America/Anchorage #: timezones.h:65 #, fuzzy msgid "Alaska Time" msgstr "აშშ/įƒįƒšįƒįƒ”įƒ™įƒ" #: timezones.h:66 msgid "America/Anguilla" msgstr "" #: timezones.h:67 msgid "America/Antigua" msgstr "" #: timezones.h:68 msgid "America/Araguaina" msgstr "" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒįƒ įƒ’įƒ”įƒœįƒ¢įƒ˜įƒœįƒ/įƒ‘įƒ£įƒ”įƒœįƒįƒ”_įƒįƒ˜įƒ įƒ”įƒ”įƒ˜" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 #, fuzzy msgid "America/Argentina/Salta" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒįƒ įƒ’įƒ”įƒœįƒ¢įƒ˜įƒœįƒ/įƒ‘įƒ£įƒ”įƒœįƒįƒ”_įƒįƒ˜įƒ įƒ”įƒ”įƒ˜" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 #, fuzzy msgid "America/Argentina/San_Luis" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒįƒ įƒ’įƒ”įƒœįƒ¢įƒ˜įƒœįƒ/įƒ‘įƒ£įƒ”įƒœįƒįƒ”_įƒįƒ˜įƒ įƒ”įƒ”įƒ˜" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "" #: timezones.h:109 msgid "America/Asuncion" msgstr "" #: timezones.h:110 #, fuzzy msgid "America/Atikokan" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/ტიხუანა" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "" #: timezones.h:114 msgid "America/Bahia" msgstr "" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ°įƒįƒ•įƒįƒœįƒ" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "" #: timezones.h:121 msgid "America/Belem" msgstr "" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "" #: timezones.h:125 #, fuzzy msgid "America/Blanc-Sablon" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ įƒ˜įƒ_įƒ‘įƒ įƒįƒœįƒ™įƒ" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ‘įƒįƒįƒ¢įƒ" #: timezones.h:132 msgid "America/Boise" msgstr "" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ‘įƒ£įƒ”įƒœįƒįƒ”_įƒįƒ˜įƒ įƒ”įƒ”įƒ˜" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "" #: timezones.h:146 msgid "America/Catamarca" msgstr "" #: timezones.h:147 msgid "America/Cayenne" msgstr "" #: timezones.h:148 msgid "America/Cayman" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ™įƒįƒ˜įƒ›įƒįƒœįƒ˜" #: timezones.h:149 msgid "America/Chicago" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ©įƒ˜įƒ™įƒįƒ’įƒ" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "აშშ/įƒŖįƒ”įƒœįƒ¢įƒ įƒįƒšįƒ£įƒ įƒ˜" #: timezones.h:152 msgid "America/Chihuahua" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/ჩიხუახუა" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "" #: timezones.h:156 msgid "America/Cordoba" msgstr "" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ™įƒįƒ”įƒ¢įƒ_įƒ įƒ˜įƒ™įƒ" #: timezones.h:158 msgid "America/Cuiaba" msgstr "" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ“įƒ”įƒœįƒ•įƒ”įƒ įƒ˜" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "" #: timezones.h:174 msgid "America/Detroit" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ“įƒ”įƒ¢įƒ įƒįƒ˜įƒ¢įƒ˜" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ“įƒįƒ›įƒ˜įƒœįƒ˜įƒ™įƒ" #: timezones.h:178 msgid "America/Edmonton" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ”įƒ“įƒ›įƒįƒœįƒ¢įƒįƒœįƒ˜" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ”įƒš_įƒ”įƒįƒšįƒ•įƒįƒ“įƒįƒ įƒ˜" #: timezones.h:185 msgid "America/Ensenada" msgstr "" #: timezones.h:186 msgid "America/Fortaleza" msgstr "" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "" #: timezones.h:200 msgid "America/Grenada" msgstr "" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "" #: timezones.h:202 msgid "America/Guatemala" msgstr "" #: timezones.h:203 msgid "America/Guayaquil" msgstr "" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "" #: timezones.h:207 msgid "America/Halifax" msgstr "" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ°įƒįƒ•įƒįƒœįƒ" #: timezones.h:211 msgid "America/Hermosillo" msgstr "" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ˜įƒœįƒ“įƒ˜įƒįƒœįƒ/įƒ˜įƒœįƒ“įƒ˜įƒįƒœįƒįƒžįƒįƒšįƒ˜įƒ”įƒ˜" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 #, fuzzy msgid "America/Indiana/Petersburg" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ˜įƒœįƒ“įƒ˜įƒįƒœįƒįƒžįƒįƒšįƒ˜įƒ”įƒ˜" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ˜įƒœįƒ“įƒ˜įƒįƒœįƒįƒžįƒįƒšįƒ˜įƒ”įƒ˜" #: timezones.h:227 #, fuzzy msgid "America/Indiana/Tell_City" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ˜įƒœįƒ“įƒ˜įƒįƒœįƒįƒžįƒįƒšįƒ˜įƒ”įƒ˜" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 #, fuzzy msgid "America/Indiana/Vincennes" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ˜įƒœįƒ“įƒ˜įƒįƒœįƒįƒžįƒįƒšįƒ˜įƒ”įƒ˜" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 #, fuzzy msgid "America/Indiana/Winamac" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ˜įƒœįƒ“įƒ˜įƒįƒœįƒįƒžįƒįƒšįƒ˜įƒ”įƒ˜" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ˜įƒįƒ›įƒįƒ˜įƒ™įƒ" #: timezones.h:246 msgid "America/Jujuy" msgstr "" #: timezones.h:247 msgid "America/Juneau" msgstr "" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ™įƒ”įƒœįƒ¢įƒ£įƒ™įƒ˜/įƒšįƒ£įƒ˜įƒ–įƒ•įƒ˜įƒšįƒ˜" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 #, fuzzy msgid "Eastern Time - Kentucky - Louisville area" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ™įƒ”įƒœįƒ¢įƒ£įƒ™įƒ˜/įƒšįƒ£įƒ˜įƒ–įƒ•įƒ˜įƒšįƒ˜" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "" #: timezones.h:257 msgid "America/La_Paz" msgstr "" #: timezones.h:258 msgid "America/Lima" msgstr "" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒšįƒįƒ”_įƒįƒœįƒÆįƒ”įƒšįƒ”įƒ”įƒ˜" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "" #: timezones.h:262 msgid "America/Louisville" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒšįƒ£įƒ˜įƒ–įƒ•įƒ˜įƒ˜įƒš" #: timezones.h:263 msgid "America/Maceio" msgstr "" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ›įƒįƒœįƒįƒ’įƒ£įƒ" #: timezones.h:267 msgid "America/Manaus" msgstr "" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 #, fuzzy msgid "America/Marigot" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ”įƒįƒœįƒ¢įƒ˜įƒįƒ’įƒ" #: timezones.h:271 msgid "America/Martinique" msgstr "" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ”įƒįƒœįƒ¢įƒ˜įƒįƒ’įƒ" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ›įƒ”įƒœįƒ“įƒįƒ–įƒ" #: timezones.h:279 msgid "America/Menominee" msgstr "" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ›įƒ”įƒ®įƒ˜įƒ™įƒ" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "" #: timezones.h:289 #, fuzzy msgid "America/Moncton" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ”įƒ“įƒ›įƒįƒœįƒ¢įƒįƒœįƒ˜" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ›įƒįƒœįƒ¢įƒ”įƒ įƒ”įƒ˜" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ›įƒįƒœįƒ¢įƒ”įƒ•įƒ˜įƒ“įƒ”įƒ" #: timezones.h:296 msgid "America/Montreal" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ›įƒįƒœįƒ įƒ”įƒįƒšįƒ˜" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "" #: timezones.h:300 msgid "America/Nassau" msgstr "" #: timezones.h:301 msgid "America/New_York" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/ნიუ_įƒ˜įƒįƒ įƒ™įƒ˜" #. comment for time zone America/New_York #: timezones.h:303 #, fuzzy msgid "Eastern Time" msgstr "აშშ/įƒįƒ¦įƒ›įƒįƒ”įƒįƒ•įƒšįƒ”įƒ—įƒ˜" #: timezones.h:304 msgid "America/Nipigon" msgstr "" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ©įƒ įƒ“_įƒ“įƒįƒ™įƒįƒ¢įƒ/įƒŖįƒ”įƒœįƒ¢įƒ įƒ˜" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 #, fuzzy msgid "America/North_Dakota/New_Salem" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ©įƒ įƒ“_įƒ“įƒįƒ™įƒįƒ¢įƒ/įƒŖįƒ”įƒœįƒ¢įƒ įƒ˜" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ›įƒįƒœįƒįƒ’įƒ£įƒ" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒžįƒįƒœįƒįƒ›įƒ" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "" #: timezones.h:327 msgid "America/Phoenix" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ¤įƒ”įƒœįƒ˜įƒ„įƒ”įƒ˜" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒžįƒ£įƒ”įƒ įƒ¢įƒ_įƒ įƒ˜įƒ™įƒ" #: timezones.h:337 msgid "America/Rainy_River" msgstr "" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 #, fuzzy msgid "America/Resolute" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ“įƒ”įƒ¢įƒ įƒįƒ˜įƒ¢įƒ˜" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ įƒ˜įƒ_įƒ‘įƒ įƒįƒœįƒ™įƒ" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ”įƒįƒœįƒ¢įƒ˜įƒįƒ’įƒ" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 #, fuzzy msgid "America/Santarem" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ”įƒįƒœįƒ¢įƒ˜įƒįƒ’įƒ" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ”įƒįƒœįƒ¢įƒ˜įƒįƒ’įƒ" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 #, fuzzy msgid "America/St_Barthelemy" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ›įƒįƒœįƒ įƒ”įƒįƒšįƒ˜" #: timezones.h:376 msgid "America/St_Johns" msgstr "" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "" #: timezones.h:380 msgid "America/St_Lucia" msgstr "" #: timezones.h:381 msgid "America/St_Thomas" msgstr "" #: timezones.h:382 msgid "America/St_Vincent" msgstr "" #: timezones.h:383 msgid "America/Swift_Current" msgstr "" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "" #: timezones.h:387 msgid "America/Thule" msgstr "" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/ტიხუანა" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ¢įƒįƒ įƒįƒœįƒ¢įƒ" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "" #: timezones.h:400 msgid "America/Vancouver" msgstr "įƒįƒ›įƒ”įƒ įƒ˜įƒ™įƒ/įƒ•įƒįƒœįƒ™įƒ£įƒ•įƒ”įƒ įƒ˜" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "" #: timezones.h:404 msgid "America/Whitehorse" msgstr "" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "" #: timezones.h:450 msgid "Asia/Aden" msgstr "" #: timezones.h:451 msgid "Asia/Almaty" msgstr "" #: timezones.h:454 msgid "Asia/Amman" msgstr "" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "įƒįƒ–įƒ˜įƒ/įƒ‘įƒįƒ¦įƒ“įƒįƒ“įƒ˜" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "įƒįƒ–įƒ˜įƒ/įƒ‘įƒįƒ°įƒ įƒ”įƒ˜įƒœįƒ˜" #: timezones.h:468 msgid "Asia/Baku" msgstr "įƒįƒ–įƒ˜įƒ/įƒ‘įƒįƒ„įƒ" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "įƒįƒ–įƒ˜įƒ/įƒ‘įƒįƒœįƒ’įƒ™įƒįƒ™įƒ˜" #: timezones.h:470 msgid "Asia/Beirut" msgstr "įƒįƒ–įƒ˜įƒ/įƒ‘įƒ”įƒ˜įƒ įƒ£įƒ—įƒ˜" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "įƒįƒ–įƒ˜įƒ/įƒ‘įƒ˜įƒØįƒ™įƒ”įƒ™įƒ˜" #: timezones.h:472 msgid "Asia/Brunei" msgstr "įƒįƒ–įƒ˜įƒ/įƒ‘įƒ įƒ£įƒœįƒ”įƒ˜" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "įƒįƒ–įƒ˜įƒ/įƒ™įƒįƒšįƒ™įƒ£įƒ¢įƒ" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "" #: timezones.h:481 msgid "Asia/Colombo" msgstr "" #: timezones.h:482 msgid "Asia/Dacca" msgstr "" #: timezones.h:483 msgid "Asia/Damascus" msgstr "" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "" #: timezones.h:485 msgid "Asia/Dili" msgstr "" #: timezones.h:486 msgid "Asia/Dubai" msgstr "įƒįƒ–įƒ˜įƒ/įƒ“įƒ£įƒ‘įƒįƒ˜" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "įƒįƒ–įƒ˜įƒ/įƒ“įƒ£įƒØįƒįƒœįƒ‘įƒ”" #: timezones.h:488 msgid "Asia/Gaza" msgstr "įƒįƒ–įƒ˜įƒ/įƒ¦įƒįƒ–įƒ" #: timezones.h:489 msgid "Asia/Harbin" msgstr "" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 #, fuzzy msgid "Asia/Ho_Chi_Minh" msgstr "įƒįƒ–įƒ˜įƒ/įƒ°įƒįƒœįƒ’_įƒ™įƒįƒœįƒ’įƒ˜" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "įƒįƒ–įƒ˜įƒ/įƒ°įƒįƒœįƒ’_įƒ™įƒįƒœįƒ’įƒ˜" #: timezones.h:494 msgid "Asia/Hovd" msgstr "" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "įƒįƒ–įƒ˜įƒ/įƒ˜įƒ įƒ™įƒ£įƒ¢įƒ”įƒ™įƒ˜" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "įƒįƒ–įƒ˜įƒ/įƒ”įƒ¢įƒįƒ›įƒ‘įƒ£įƒšįƒ˜" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "įƒįƒ–įƒ˜įƒ/įƒÆįƒįƒ™įƒįƒ įƒ¢įƒ" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "" #: timezones.h:508 msgid "Asia/Kabul" msgstr "įƒįƒ–įƒ˜įƒ/įƒ„įƒįƒ‘įƒ£įƒšįƒ˜" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "įƒįƒ–įƒ˜įƒ/įƒ™įƒįƒ›įƒ©įƒįƒ¢įƒ™įƒ" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "įƒįƒ–įƒ˜įƒ/įƒ™įƒįƒ įƒįƒ©įƒ˜" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 #, fuzzy msgid "Asia/Kathmandu" msgstr "įƒįƒ–įƒ˜įƒ/įƒ™įƒįƒ¢įƒ›įƒįƒœįƒ“įƒ£" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "įƒįƒ–įƒ˜įƒ/įƒ™įƒįƒ¢įƒ›įƒįƒœįƒ“įƒ£" #: timezones.h:518 #, fuzzy msgid "Asia/Kolkata" msgstr "įƒįƒ–įƒ˜įƒ/įƒÆįƒįƒ™įƒįƒ įƒ¢įƒ" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "įƒįƒ–įƒ˜įƒ/įƒ™įƒ įƒįƒ”įƒœįƒįƒ˜įƒįƒ įƒ”įƒ™įƒ˜" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "įƒįƒ–įƒ˜įƒ/įƒ™įƒ£įƒįƒšįƒ_įƒšįƒ˜įƒ›įƒžįƒ£įƒ įƒ˜" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "įƒįƒ–įƒ˜įƒ/įƒ™įƒ£įƒ•įƒ”įƒ˜įƒ¢įƒ˜" #: timezones.h:529 msgid "Asia/Macao" msgstr "" #: timezones.h:530 msgid "Asia/Macau" msgstr "" #: timezones.h:531 msgid "Asia/Magadan" msgstr "įƒįƒ–įƒ˜įƒ/įƒ›įƒįƒ’įƒįƒ“įƒįƒœįƒ˜" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "įƒįƒ–įƒ˜įƒ/įƒ›įƒįƒœįƒ˜įƒšįƒ" #: timezones.h:538 msgid "Asia/Muscat" msgstr "" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "įƒįƒ–įƒ˜įƒ/įƒœįƒ˜įƒ™įƒįƒ”įƒ˜įƒ" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "įƒįƒ–įƒ˜įƒ/įƒ˜įƒ įƒ™įƒ£įƒ¢įƒ”įƒ™įƒ˜" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "įƒįƒ–įƒ˜įƒ/įƒœįƒįƒ•įƒįƒ”įƒ˜įƒ‘įƒ˜įƒ įƒ”įƒ™įƒ˜" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "įƒįƒ–įƒ˜įƒ/įƒœįƒįƒ•įƒįƒ”įƒ˜įƒ‘įƒ˜įƒ įƒ”įƒ™įƒ˜" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 #, fuzzy msgid "Moscow+03 - Novosibirsk" msgstr "įƒįƒ–įƒ˜įƒ/įƒœįƒįƒ•įƒįƒ”įƒ˜įƒ‘įƒ˜įƒ įƒ”įƒ™įƒ˜" #: timezones.h:546 msgid "Asia/Omsk" msgstr "įƒįƒ–įƒ˜įƒ/įƒįƒ›įƒ”įƒ™įƒ˜" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "" #: timezones.h:557 msgid "Asia/Qatar" msgstr "" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "" #: timezones.h:566 msgid "Asia/Saigon" msgstr "" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "įƒįƒ–įƒ˜įƒ/ეახალინი" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "įƒįƒ–įƒ˜įƒ/შანხაი" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "įƒįƒ–įƒ˜įƒ/įƒ”įƒ˜įƒœįƒ’įƒįƒžįƒ£įƒ įƒ˜" #: timezones.h:578 msgid "Asia/Taipei" msgstr "" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "įƒįƒ–įƒ˜įƒ/įƒ¢įƒįƒØįƒ™įƒ”įƒœįƒ¢įƒ˜" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "įƒįƒ–įƒ˜įƒ/įƒ—įƒ‘įƒ˜įƒšįƒ˜įƒ”įƒ˜" #: timezones.h:583 msgid "Asia/Tehran" msgstr "įƒįƒ–įƒ˜įƒ/įƒ—įƒ”įƒ˜įƒ įƒįƒœįƒ˜" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "įƒįƒ–įƒ˜įƒ/įƒ—įƒ”įƒš_įƒįƒ•įƒ˜įƒ•įƒ˜" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "įƒįƒ–įƒ˜įƒ/įƒ¢įƒįƒ™įƒ˜įƒ" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "įƒįƒ–įƒ˜įƒ/įƒ•įƒšįƒįƒ“įƒ˜įƒ•įƒįƒ”įƒ¢įƒįƒ™įƒ˜" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "įƒįƒ–įƒ˜įƒ/įƒ˜įƒįƒ™įƒ£įƒ¢įƒ”įƒ™įƒ˜" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "įƒįƒ–įƒ˜įƒ/įƒ”įƒ™įƒįƒ¢įƒ”įƒ įƒ˜įƒœįƒ‘įƒ£įƒ įƒ’įƒ˜" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "įƒįƒ–įƒ˜įƒ/įƒ”įƒ įƒ”įƒ•įƒįƒœįƒ˜" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "" #: timezones.h:625 msgid "Australia/ACT" msgstr "" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "" #. comment for time zone Australia/Adelaide #: timezones.h:628 #, fuzzy msgid "South Australia" msgstr "įƒįƒ•įƒ”įƒ¢įƒ įƒįƒšįƒ˜įƒ/įƒ“įƒįƒ”įƒįƒ•įƒšįƒ”įƒ—įƒ˜" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "įƒįƒ•įƒ”įƒ¢įƒ įƒįƒšįƒ˜įƒ/įƒ™įƒįƒœįƒ‘įƒ”įƒ įƒ" #: timezones.h:636 msgid "Australia/Currie" msgstr "" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "įƒįƒ•įƒ”įƒ¢įƒ įƒįƒšįƒ˜įƒ/įƒ“įƒįƒ įƒ•įƒ˜įƒœįƒ˜" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 #, fuzzy msgid "Australia/Eucla" msgstr "įƒįƒ•įƒ”įƒ¢įƒ įƒįƒšįƒ˜įƒ/įƒ”įƒįƒ›įƒ®įƒ įƒ”įƒ—įƒ˜" #. comment for time zone Australia/Eucla #: timezones.h:644 #, fuzzy msgid "Western Australia - Eucla area" msgstr "įƒįƒ•įƒ”įƒ¢įƒ įƒįƒšįƒ˜įƒ/įƒ”įƒįƒ›įƒ®įƒ įƒ”įƒ—įƒ˜" #: timezones.h:645 msgid "Australia/Hobart" msgstr "" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "įƒįƒ•įƒ”įƒ¢įƒ įƒįƒšįƒ˜įƒ/įƒ›įƒ”įƒšįƒ‘įƒ£įƒ įƒœįƒ˜" #. comment for time zone Australia/Melbourne #: timezones.h:657 #, fuzzy msgid "Victoria" msgstr "įƒįƒ•įƒ”įƒ¢įƒ įƒįƒšįƒ˜įƒ/įƒ•įƒ˜įƒ„įƒ¢įƒįƒ įƒ˜įƒ" #: timezones.h:658 msgid "Australia/North" msgstr "įƒįƒ•įƒ”įƒ¢įƒ įƒįƒšįƒ˜įƒ/įƒ©įƒ įƒ“įƒ˜įƒšįƒįƒ”įƒ—įƒ˜" #: timezones.h:659 msgid "Australia/NSW" msgstr "" #: timezones.h:660 msgid "Australia/Perth" msgstr "" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "" #: timezones.h:664 msgid "Australia/South" msgstr "įƒįƒ•įƒ”įƒ¢įƒ įƒįƒšįƒ˜įƒ/įƒ”įƒįƒ›įƒ®įƒ įƒ”įƒ—įƒ˜" #: timezones.h:665 msgid "Australia/Sydney" msgstr "įƒįƒ•įƒ”įƒ¢įƒ įƒįƒšįƒ˜įƒ/įƒ”įƒ˜įƒ“įƒœįƒ”įƒ˜" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "įƒįƒ•įƒ”įƒ¢įƒ įƒįƒšįƒ˜įƒ/įƒ¢įƒįƒ”įƒ›įƒįƒœįƒ˜įƒ" #: timezones.h:669 msgid "Australia/Victoria" msgstr "įƒįƒ•įƒ”įƒ¢įƒ įƒįƒšįƒ˜įƒ/įƒ•įƒ˜įƒ„įƒ¢įƒįƒ įƒ˜įƒ" #: timezones.h:670 msgid "Australia/West" msgstr "įƒįƒ•įƒ”įƒ¢įƒ įƒįƒšįƒ˜įƒ/įƒ“įƒįƒ”įƒįƒ•įƒšįƒ”įƒ—įƒ˜" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "" #: timezones.h:672 msgid "Brazil/Acre" msgstr "" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "" #: timezones.h:674 msgid "Brazil/East" msgstr "įƒ‘įƒ įƒįƒ–įƒ˜įƒšįƒ˜įƒ/įƒįƒ¦įƒ›įƒįƒ”įƒįƒ•įƒšįƒ”įƒ—įƒ˜" #: timezones.h:675 msgid "Brazil/West" msgstr "įƒ‘įƒ įƒįƒ–įƒ˜įƒšįƒ˜įƒ/įƒ“įƒįƒ”įƒįƒ•įƒšįƒ”įƒ—įƒ˜" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "" #: timezones.h:677 msgid "Canada/Central" msgstr "įƒ™įƒįƒœįƒįƒ“įƒ/įƒŖįƒ”įƒœįƒ¢įƒ įƒįƒšįƒ£įƒ įƒ˜" #: timezones.h:678 msgid "Canada/Eastern" msgstr "įƒ™įƒįƒœįƒįƒ“įƒ/įƒįƒ¦įƒ›įƒįƒ”įƒįƒ•įƒšįƒ”įƒ—įƒ˜" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "" #: timezones.h:680 msgid "Canada/Mountain" msgstr "" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "įƒ™įƒįƒœįƒįƒ“įƒ/įƒœįƒ˜įƒ£įƒ¤įƒįƒ£įƒœįƒšįƒ”įƒœįƒ“įƒ˜" #: timezones.h:682 msgid "Canada/Pacific" msgstr "" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "" #: timezones.h:684 msgid "Canada/Yukon" msgstr "" #: timezones.h:685 msgid "CET" msgstr "" #: timezones.h:686 msgid "Chile/Continental" msgstr "" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "" #: timezones.h:688 msgid "CST6CDT" msgstr "" #: timezones.h:689 msgid "Cuba" msgstr "įƒ™įƒ£įƒ‘įƒ" #: timezones.h:690 msgid "EET" msgstr "" #: timezones.h:691 msgid "Egypt" msgstr "įƒ”įƒ’įƒ•įƒ˜įƒžįƒ¢įƒ”" #: timezones.h:692 msgid "Eire" msgstr "" #: timezones.h:693 msgid "EST" msgstr "" #: timezones.h:694 msgid "EST5EDT" msgstr "" #: timezones.h:695 msgid "Etc/GMT" msgstr "" #: timezones.h:696 msgid "Etc/GMT0" msgstr "" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "" #: timezones.h:726 msgid "Etc/UCT" msgstr "" #: timezones.h:727 msgid "Etc/Universal" msgstr "" #: timezones.h:728 msgid "Etc/UTC" msgstr "" #: timezones.h:729 msgid "Etc/Zulu" msgstr "" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒįƒ›įƒ”įƒ¢įƒ”įƒ įƒ“įƒįƒ›įƒ˜" #: timezones.h:731 msgid "Europe/Andorra" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒįƒœįƒ“įƒįƒ įƒ" #: timezones.h:732 msgid "Europe/Athens" msgstr "įƒ”įƒ•įƒ įƒįƒ‘įƒ/įƒįƒ—įƒ”įƒœįƒ˜" #: timezones.h:733 msgid "Europe/Belfast" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ‘įƒ”įƒšįƒ¤įƒįƒ”įƒ¢įƒ˜" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ‘įƒ”įƒšįƒ’įƒ įƒįƒ“įƒ˜" #: timezones.h:735 msgid "Europe/Berlin" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ‘įƒ”įƒ įƒšįƒ˜įƒœįƒ˜" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ‘įƒ įƒįƒ¢įƒ˜įƒ”įƒšįƒįƒ•įƒ" #: timezones.h:737 msgid "Europe/Brussels" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ‘įƒ įƒ£įƒ”įƒ”įƒšįƒ˜" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "" #: timezones.h:739 msgid "Europe/Budapest" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ‘įƒ£įƒ“įƒįƒžįƒ”įƒØįƒ¢įƒ˜" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ™įƒįƒžįƒ”įƒœįƒ°įƒįƒ’įƒ”įƒœįƒ˜" #: timezones.h:742 msgid "Europe/Dublin" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ“įƒ£įƒ‘įƒšįƒ˜įƒœįƒ˜" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ’įƒ˜įƒ‘įƒ įƒįƒšįƒ¢įƒįƒ įƒ˜" #: timezones.h:744 #, fuzzy msgid "Europe/Guernsey" msgstr "įƒ”įƒ•įƒ įƒįƒ‘įƒ/įƒįƒ—įƒ”įƒœįƒ˜" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ°įƒ”įƒšįƒ”įƒ˜įƒœįƒ™įƒ˜" #: timezones.h:746 #, fuzzy msgid "Europe/Isle_of_Man" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒįƒ”įƒšįƒ" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ”įƒ¢įƒįƒ›įƒ‘įƒ£įƒšįƒ˜" #: timezones.h:748 #, fuzzy msgid "Europe/Jersey" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒžįƒįƒ įƒ˜įƒ–įƒ˜" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ™įƒįƒšįƒ˜įƒœįƒ˜įƒœįƒ’įƒ įƒįƒ“įƒ˜" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ™įƒ˜įƒ”įƒ•įƒ˜" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒšįƒ˜įƒ”įƒįƒ‘įƒįƒœįƒ˜" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒšįƒ˜įƒ£įƒ‘įƒšįƒ˜įƒįƒœįƒ" #: timezones.h:759 msgid "Europe/London" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒšįƒįƒœįƒ“įƒįƒœįƒ˜" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒšįƒ£įƒ„įƒ”įƒ”įƒ›įƒ‘įƒ£įƒ įƒ’įƒ˜" #: timezones.h:761 msgid "Europe/Madrid" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ›įƒįƒ“įƒ įƒ˜įƒ“įƒ˜" #: timezones.h:764 msgid "Europe/Malta" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ›įƒįƒšįƒ¢įƒ" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "" #: timezones.h:766 msgid "Europe/Minsk" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ›įƒ˜įƒœįƒ”įƒ™įƒ˜" #: timezones.h:767 msgid "Europe/Monaco" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ›įƒįƒœįƒįƒ™įƒ" #: timezones.h:768 msgid "Europe/Moscow" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ›įƒįƒ”įƒ™įƒįƒ•įƒ˜" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒœįƒ˜įƒ™įƒįƒ”įƒ˜įƒ" #: timezones.h:772 msgid "Europe/Oslo" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒįƒ”įƒšįƒ" #: timezones.h:773 msgid "Europe/Paris" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒžįƒįƒ įƒ˜įƒ–įƒ˜" #: timezones.h:774 #, fuzzy msgid "Europe/Podgorica" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒįƒœįƒ“įƒįƒ įƒ" #: timezones.h:775 msgid "Europe/Prague" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒžįƒ įƒįƒ¦įƒ" #: timezones.h:776 msgid "Europe/Riga" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ įƒ˜įƒ’įƒ" #: timezones.h:777 msgid "Europe/Rome" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ įƒįƒ›įƒ˜" #: timezones.h:778 msgid "Europe/Samara" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ”įƒįƒ›įƒįƒ įƒ" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/ეან_įƒ›įƒįƒ įƒ˜įƒœįƒ" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ”įƒįƒ įƒįƒ”įƒ•įƒ" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ”įƒ˜įƒ›įƒ¤įƒ”įƒ įƒįƒžįƒįƒšįƒ˜" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "" #: timezones.h:787 msgid "Europe/Sofia" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ”įƒįƒ¤įƒ˜įƒ" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ”įƒ¢įƒįƒ™įƒ°įƒįƒšįƒ›įƒ˜" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/ტალინი" #: timezones.h:790 msgid "Europe/Tirane" msgstr "" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "" #: timezones.h:796 msgid "Europe/Vatican" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒžįƒįƒ¢įƒ˜įƒ™įƒįƒœįƒ˜" #: timezones.h:797 msgid "Europe/Vienna" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ•įƒ”įƒœįƒ" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ•įƒ˜įƒšįƒœįƒ˜įƒ£įƒ”įƒ˜" #: timezones.h:799 #, fuzzy msgid "Europe/Volgograd" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ‘įƒ”įƒšįƒ’įƒ įƒįƒ“įƒ˜" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ•įƒįƒ įƒØįƒįƒ•įƒ" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ–įƒįƒ’įƒ įƒ”įƒ‘įƒ˜" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/įƒ–įƒįƒžįƒįƒ įƒįƒŸįƒ˜įƒ”" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "įƒ”įƒ•įƒ įƒįƒžįƒ/ციურიხი" #: timezones.h:808 msgid "Factory" msgstr "" #: timezones.h:809 msgid "GB" msgstr "" #: timezones.h:810 msgid "GB-Eire" msgstr "" #: timezones.h:811 msgid "GMT" msgstr "" #: timezones.h:812 msgid "GMT0" msgstr "" #: timezones.h:813 msgid "GMT-0" msgstr "" #: timezones.h:814 msgid "GMT+0" msgstr "" #: timezones.h:815 msgid "Greenwich" msgstr "įƒ’įƒ įƒ˜įƒœįƒ•įƒ˜įƒ©įƒ˜" #: timezones.h:816 msgid "Hongkong" msgstr "įƒ°įƒįƒœįƒ’įƒ™įƒįƒœįƒ’įƒ˜" #: timezones.h:817 msgid "HST" msgstr "" #: timezones.h:818 msgid "Iceland" msgstr "įƒ˜įƒ”įƒšįƒįƒœįƒ“įƒ˜įƒ" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "" #: timezones.h:820 msgid "Indian/Chagos" msgstr "" #: timezones.h:821 msgid "Indian/Christmas" msgstr "" #: timezones.h:822 msgid "Indian/Cocos" msgstr "" #: timezones.h:823 msgid "Indian/Comoro" msgstr "" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "" #: timezones.h:825 msgid "Indian/Mahe" msgstr "" #: timezones.h:826 msgid "Indian/Maldives" msgstr "" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "" #: timezones.h:829 msgid "Indian/Reunion" msgstr "" #: timezones.h:830 msgid "Iran" msgstr "ირანი" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "įƒ˜įƒ”įƒ įƒįƒ”įƒšįƒ˜" #: timezones.h:833 msgid "Jamaica" msgstr "įƒ˜įƒįƒ›įƒįƒ˜įƒ™įƒ" #: timezones.h:834 msgid "Japan" msgstr "įƒ˜įƒįƒžįƒįƒœįƒ˜įƒ" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "" #: timezones.h:836 msgid "Libya" msgstr "įƒšįƒ˜įƒ‘įƒ˜įƒ" #: timezones.h:837 msgid "MET" msgstr "" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "" #: timezones.h:840 msgid "Mexico/General" msgstr "" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "" #: timezones.h:844 msgid "MST" msgstr "" #: timezones.h:845 msgid "MST7MDT" msgstr "" #: timezones.h:846 msgid "Navajo" msgstr "" #: timezones.h:847 msgid "NZ" msgstr "" #: timezones.h:848 msgid "NZ-CHAT" msgstr "" #: timezones.h:849 msgid "Pacific/Apia" msgstr "" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 msgid "Pacific/Easter" msgstr "" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "" #: timezones.h:876 msgid "Pacific/Guam" msgstr "" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "" #. comment for time zone Pacific/Honolulu #: timezones.h:879 #, fuzzy msgid "Hawaii" msgstr "აშშ/įƒ°įƒįƒ•įƒįƒ˜" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "" #. comment for time zone Pacific/Kosrae #: timezones.h:888 #, fuzzy msgid "Kosrae" msgstr "įƒ˜įƒ”įƒ įƒįƒ”įƒšįƒ˜" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "" #: timezones.h:902 msgid "Pacific/Niue" msgstr "" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "" #: timezones.h:906 msgid "Pacific/Palau" msgstr "" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "" #: timezones.h:923 msgid "Pacific/Truk" msgstr "" #: timezones.h:924 msgid "Pacific/Wake" msgstr "" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "" #: timezones.h:928 msgid "Pacific/Yap" msgstr "" #: timezones.h:929 msgid "Poland" msgstr "įƒžįƒįƒšįƒįƒœįƒ”įƒ—įƒ˜" #: timezones.h:930 msgid "Portugal" msgstr "įƒžįƒįƒ įƒ¢įƒ£įƒ’įƒįƒšįƒ˜įƒ" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "" #: timezones.h:933 msgid "PST8PDT" msgstr "" #: timezones.h:934 msgid "ROC" msgstr "" #: timezones.h:935 msgid "ROK" msgstr "" #: timezones.h:936 msgid "Singapore" msgstr "įƒ”įƒ˜įƒœįƒ’įƒįƒžįƒ£įƒ įƒ˜" #: timezones.h:937 msgid "Turkey" msgstr "įƒ—įƒ£įƒ įƒ„įƒ”įƒ—įƒ˜" #: timezones.h:938 msgid "UCT" msgstr "" #: timezones.h:939 msgid "Universal" msgstr "įƒ£įƒœįƒ˜įƒ•įƒ”įƒ įƒ”įƒįƒšįƒ£įƒ įƒ˜" #: timezones.h:940 msgid "US/Alaska" msgstr "აშშ/įƒįƒšįƒįƒ”įƒ™įƒ" #: timezones.h:941 msgid "US/Aleutian" msgstr "" #: timezones.h:942 msgid "US/Arizona" msgstr "აშშ/įƒįƒ įƒ˜įƒ–įƒįƒœįƒ" #: timezones.h:943 msgid "US/Central" msgstr "აშშ/įƒŖįƒ”įƒœįƒ¢įƒ įƒįƒšįƒ£įƒ įƒ˜" #: timezones.h:944 msgid "US/Eastern" msgstr "აშშ/įƒįƒ¦įƒ›įƒįƒ”įƒįƒ•įƒšįƒ”įƒ—įƒ˜" #: timezones.h:945 msgid "US/East-Indiana" msgstr "აშშ/įƒįƒ¦įƒ›_įƒ˜įƒœįƒ“įƒ˜įƒįƒœįƒ" #: timezones.h:946 msgid "US/Hawaii" msgstr "აშშ/įƒ°įƒįƒ•įƒįƒ˜" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "" #: timezones.h:948 msgid "US/Michigan" msgstr "აშშ/įƒ›įƒ˜įƒ©įƒ˜įƒ’įƒįƒœįƒ˜" #: timezones.h:949 msgid "US/Mountain" msgstr "" #: timezones.h:950 msgid "US/Pacific" msgstr "" #: timezones.h:951 msgid "US/Samoa" msgstr "" #: timezones.h:952 msgid "UTC" msgstr "" #: timezones.h:953 msgid "WET" msgstr "" #: timezones.h:954 msgid "W-SU" msgstr "" #: timezones.h:955 msgid "Zulu" msgstr "įƒ–įƒ£įƒšįƒ£" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/he.po0000664000175000017500000020240014632072346023651 0ustar fabiofabio# translation of timezones.tip.po to Hebrew # Hebrew translations for PACKAGE package. # Copyright (C) 2004 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Automatically generated, 2004. # msgid "" msgstr "" "Project-Id-Version: timezones.tip\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2008-10-15 02:36GMT\n" "Last-Translator: Oron Peled \n" "Language-Team: Hebrew\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: KBabel 1.11.4\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "אפריקה/אבידז'אן" #: timezones.h:2 msgid "Africa/Accra" msgstr "אפריקה/אקרה" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "אפריקה/אדיה אבבה" #: timezones.h:4 msgid "Africa/Algiers" msgstr "אפריקה/××œ×’×™×™×Ø×”" #: timezones.h:5 msgid "Africa/Asmara" msgstr "אפריקה/××”×ž×Ø×”" #: timezones.h:6 msgid "Africa/Asmera" msgstr "אפריקה/××”Ö¶×ž×Ø×”" #: timezones.h:7 msgid "Africa/Bamako" msgstr "אפריקה/במקו" #: timezones.h:8 msgid "Africa/Bangui" msgstr "אפריקה/בנגוי" #: timezones.h:9 msgid "Africa/Banjul" msgstr "אפריקה/בנג'ול" #: timezones.h:10 msgid "Africa/Bissau" msgstr "אפריקה/ביהאו" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "אפריקה/×‘×œ× ×˜×™×Ø×”" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "אפריקה/×‘×Ø××–××•×•×™×œ" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "אפריקה/בוג'×•×ž×‘×•×Ø×”" #: timezones.h:14 msgid "Africa/Cairo" msgstr "אפריקה/קהיר" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "אפריקה/קזבלנקה" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "אפריקה/קהוטה" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "אפריקה/קונקרי" #: timezones.h:20 msgid "Africa/Dakar" msgstr "אפריקה/דקאר" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "אפריקה/דאר-א-האלאם" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "אפריקה/ג'יבוטי" #: timezones.h:23 msgid "Africa/Douala" msgstr "אפריקה/דואלה" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "אפריקה/אל-עיון" #: timezones.h:25 msgid "Africa/Freetown" msgstr "אפריקה/×¤×Ø×™×˜××•×Ÿ" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "אפריקה/גאבורונה" #: timezones.h:27 msgid "Africa/Harare" msgstr "אפריקה/הרארה" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "אפריקה/יוהנהבורג" #: timezones.h:29 msgid "Africa/Kampala" msgstr "אפריקה/קמפלה" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "אפריקה/×—×Ø×˜×•×" #: timezones.h:31 msgid "Africa/Kigali" msgstr "אפריקה/קיגלי" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "אפריקה/קינשאהה" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "אפריקה/לאגוה" #: timezones.h:36 msgid "Africa/Libreville" msgstr "אפריקה/×œ×™×‘×Ø×•×•×™×œ" #: timezones.h:37 msgid "Africa/Lome" msgstr "אפריקה/לומה" #: timezones.h:38 msgid "Africa/Luanda" msgstr "אפריקה/לואנדה" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "אפריקה/לובומבאשי" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "אפריקה/לוקאהה" #: timezones.h:43 msgid "Africa/Malabo" msgstr "אפריקה/מלבו" #: timezones.h:44 msgid "Africa/Maputo" msgstr "אפריקה/מפוטו" #: timezones.h:45 msgid "Africa/Maseru" msgstr "אפריקה/×ž×”×Ø×•" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "אפריקה/מבאבנה" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "אפריקה/מוגדישו" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "אפריקה/×ž×•× ×Ø×•×‘×™×”" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "אפריקה/נאירובי" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "אפריקה/נג'מנה" #: timezones.h:51 msgid "Africa/Niamey" msgstr "אפריקה/נאימאי" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "אפריקה/נוקצ'וט" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "אפריקה/אוגדוגו" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "אפריקה/×¤×•×Ø×˜×•-נובו" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "אפריקה/האו-טומה" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "אפריקה/טימבוקטו" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "אפריקה/×˜×Ø×™×¤×•×œ×™" #: timezones.h:58 msgid "Africa/Tunis" msgstr "אפריקה/טוניה" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "אפריקה/ווינדהק" #: timezones.h:60 msgid "America/Adak" msgstr "××ž×Ø×™×§×”/אדק" #. comment for time zone America/Adak #: timezones.h:62 #, fuzzy msgid "Aleutian Islands" msgstr "××•×”×˜×Ø×œ×™×”/קווינהלנד" #: timezones.h:63 msgid "America/Anchorage" msgstr "××ž×Ø×™×§×”/אנקורג'" #. comment for time zone America/Anchorage #: timezones.h:65 #, fuzzy msgid "Alaska Time" msgstr "ארה\"ב/אלהקה" #: timezones.h:66 msgid "America/Anguilla" msgstr "××ž×Ø×™×§×”/אנגוילה" #: timezones.h:67 msgid "America/Antigua" msgstr "××ž×Ø×™×§×”/אנטיגואה" #: timezones.h:68 msgid "America/Araguaina" msgstr "××ž×Ø×™×§×”/ארגווינה" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "××ž×Ø×™×§×”/××Ø×’× ×˜×™× ×”/בואנוה-איירה" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "××ž×Ø×™×§×”/××Ø×’× ×˜×™× ×”/×§×˜×ž×Ø×§×”" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "××ž×Ø×™×§×”/××Ø×’× ×˜×™× ×”/×§×•×ž×•×“×Ø×™×•×•×“×•×•×™×”" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "××ž×Ø×™×§×”/××Ø×’× ×˜×™× ×”/קורדובה" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "××ž×Ø×™×§×”/××Ø×’× ×˜×™× ×”/ג'וג'וי" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "××ž×Ø×™×§×”/××Ø×’× ×˜×™× ×”/לה-ריוג'ה" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "××ž×Ø×™×§×”/××Ø×’× ×˜×™× ×”/מנדוזה" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "××ž×Ø×™×§×”/××Ø×’× ×˜×™× ×”/ריו-גייגוה" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 #, fuzzy msgid "America/Argentina/Salta" msgstr "××ž×Ø×™×§×”/××Ø×’× ×˜×™× ×”/הן-חואן" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "××ž×Ø×™×§×”/××Ø×’× ×˜×™× ×”/הן-חואן" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 #, fuzzy msgid "America/Argentina/San_Luis" msgstr "××ž×Ø×™×§×”/××Ø×’× ×˜×™× ×”/הן-חואן" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "××ž×Ø×™×§×”/××Ø×’× ×˜×™× ×”/טוקומאן" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "××ž×Ø×™×§×”/××Ø×’× ×˜×™× ×”/אושואיה" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "××ž×Ø×™×§×”/ארובה" #: timezones.h:109 msgid "America/Asuncion" msgstr "××ž×Ø×™×§×”/אהונהיון" #: timezones.h:110 msgid "America/Atikokan" msgstr "××ž×Ø×™×§×”/אטיקוקאן" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "××ž×Ø×™×§×”/אטקה" #: timezones.h:114 msgid "America/Bahia" msgstr "××ž×Ø×™×§×”/בהיה" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "××ž×Ø×™×§×”/בהיה" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "××ž×Ø×™×§×”/ברבדוה" #: timezones.h:121 msgid "America/Belem" msgstr "××ž×Ø×™×§×”/בלם" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "××ž×Ø×™×§×”/בליז" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "××ž×Ø×™×§×”/בלנק-הבלון" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "××ž×Ø×™×§×”/בואה-וויהטה" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "××ž×Ø×™×§×”/בוגוטה" #: timezones.h:132 msgid "America/Boise" msgstr "××ž×Ø×™×§×”/בויז" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "××ž×Ø×™×§×”/בואנוה-איירה" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "××ž×Ø×™×§×”/×§×™×™×ž×‘×Ø×™×“×’'-ביי" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "××ž×Ø×™×§×”/קמפו-גרנדה" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "××ž×Ø×™×§×”/קנקון" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "××ž×Ø×™×§×”/קאראקה" #: timezones.h:146 msgid "America/Catamarca" msgstr "××ž×Ø×™×§×”/×§×˜×ž×Ø×§×”" #: timezones.h:147 msgid "America/Cayenne" msgstr "××ž×Ø×™×§×”/קיין" #: timezones.h:148 msgid "America/Cayman" msgstr "××ž×Ø×™×§×”/קיימן" #: timezones.h:149 msgid "America/Chicago" msgstr "××ž×Ø×™×§×”/שיקגו" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "ארה\"ב/×ž×Ø×›×–" #: timezones.h:152 msgid "America/Chihuahua" msgstr "××ž×Ø×™×§×”/צ'יווהווה" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "××ž×Ø×™×§×”/×§×•×Ø×œ-הרבור" #: timezones.h:156 msgid "America/Cordoba" msgstr "××ž×Ø×™×§×”/קורדובה" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "××ž×Ø×™×§×”/קוהטה-ריקה" #: timezones.h:158 msgid "America/Cuiaba" msgstr "××ž×Ø×™×§×”/קוייבה" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "××ž×Ø×™×§×”/קורקאו" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "××ž×Ø×™×§×”/×“× ×ž×Ø×§×©×‘×Ÿ" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "××ž×Ø×™×§×”/דאוהון" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "××ž×Ø×™×§×”/דאוהון-קריק" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "××ž×Ø×™×§×”/דנבר" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "ארה\"ב/×”×Ø×™×" #: timezones.h:174 msgid "America/Detroit" msgstr "××ž×Ø×™×§×”/×“×˜×Ø×•×™×˜" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "××ž×Ø×™×§×”/דומיניקה" #: timezones.h:178 msgid "America/Edmonton" msgstr "××ž×Ø×™×§×”/אדמונטון" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "××ž×Ø×™×§×”/אירונפה" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "××ž×Ø×™×§×”/אל-×”×œ×•×•×“×•×Ø" #: timezones.h:185 msgid "America/Ensenada" msgstr "××ž×Ø×™×§×”/אנהנדה" #: timezones.h:186 msgid "America/Fortaleza" msgstr "××ž×Ø×™×§×”/×¤×•×Ø×˜×œ×”×”" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "××ž×Ø×™×§×”/×¤×•×Ø×˜-ווין" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "××ž×Ø×™×§×”/גלייה-ביי" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "××ž×Ø×™×§×”/גודת'אב" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "××ž×Ø×™×§×”/גוז-ביי" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "××ž×Ø×™×§×”/גרנד-×˜×•×Ø×§" #: timezones.h:200 msgid "America/Grenada" msgstr "××ž×Ø×™×§×”/גרנדה" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "××ž×Ø×™×§×”/גואדלופה" #: timezones.h:202 msgid "America/Guatemala" msgstr "××ž×Ø×™×§×”/גואטמלה" #: timezones.h:203 msgid "America/Guayaquil" msgstr "××ž×Ø×™×§×”/גואייקיל" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "××ž×Ø×™×§×”/גואיינה" #: timezones.h:207 msgid "America/Halifax" msgstr "××ž×Ø×™×§×”/הליפקה" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "××ž×Ø×™×§×”/הוואנה" #: timezones.h:211 msgid "America/Hermosillo" msgstr "××ž×Ø×™×§×”/×”×Ø×ž×•×”×™×•" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "××ž×Ø×™×§×”/אינדיאנה/אינדיאנפוליה" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "××ž×Ø×™×§×”/אינדיאנה/נוקה" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "××ž×Ø×™×§×”/אינדיאנה/×ž×Ø× ×’×•" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "××ž×Ø×™×§×”/אינדיאנה/×¤×˜×Ø×”×‘×•×Ø×’" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "××ž×Ø×™×§×”/אינדיאנפוליה" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "××ž×Ø×™×§×”/אינדיאנה/טל-היטי" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "××ž×Ø×™×§×”/אינדיאנה/ווהווי" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "××ž×Ø×™×§×”/אינדיאנה/וינהנה" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "××ž×Ø×™×§×”/אינדיאנה/ווינמק" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "××ž×Ø×™×§×”/אינוויק" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "××ž×Ø×™×§×”/איקלואיט" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "××ž×Ø×™×§×”/ג'מאיקה" #: timezones.h:246 msgid "America/Jujuy" msgstr "××ž×Ø×™×§×”/ג'וג'וי" #: timezones.h:247 msgid "America/Juneau" msgstr "××ž×Ø×™×§×”/ג'וניאו" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "××ž×Ø×™×§×”/קנטקי/לואיהוויל" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 #, fuzzy msgid "Eastern Time - Kentucky - Louisville area" msgstr "××ž×Ø×™×§×”/קנטקי/לואיהוויל" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "××ž×Ø×™×§×”/קנטקי/מונטיהלו" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "××ž×Ø×™×§×”/נוקה-אין" #: timezones.h:257 msgid "America/La_Paz" msgstr "××ž×Ø×™×§×”/לה-פז" #: timezones.h:258 msgid "America/Lima" msgstr "××ž×Ø×™×§×”/לימה" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "××ž×Ø×™×§×”/לוה-אנג'לה" #. comment for time zone America/Los_Angeles #: timezones.h:261 #, fuzzy msgid "Pacific Time" msgstr "האוקיינוה-השקט/ניוה" #: timezones.h:262 msgid "America/Louisville" msgstr "××ž×Ø×™×§×”/לואיהוויל" #: timezones.h:263 msgid "America/Maceio" msgstr "××ž×Ø×™×§×”/מהאיו" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "××ž×Ø×™×§×”/מנגואה" #: timezones.h:267 msgid "America/Manaus" msgstr "××ž×Ø×™×§×”/מנאוה" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 msgid "America/Marigot" msgstr "××ž×Ø×™×§×”/×ž×Ø×™×’×•×˜" #: timezones.h:271 msgid "America/Martinique" msgstr "××ž×Ø×™×§×”/×ž×Ø×˜×™× ×™×§" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "××ž×Ø×™×§×”/מנאוה" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "××ž×Ø×™×§×”/מזטלן" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "××ž×Ø×™×§×”/מנדוזה" #: timezones.h:279 msgid "America/Menominee" msgstr "××ž×Ø×™×§×”/מנומיני" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "××ž×Ø×™×§×”/×ž×Ø×™×“×”" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "××ž×Ø×™×§×”/מקהיקו-היטי" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "××ž×Ø×™×§×”/מיקולון" #: timezones.h:289 msgid "America/Moncton" msgstr "××ž×Ø×™×§×”/מונקטון" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "××ž×Ø×™×§×”/×ž×•× ×˜×Ø×™×™" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "××ž×Ø×™×§×”/מונטווידאו" #: timezones.h:296 msgid "America/Montreal" msgstr "××ž×Ø×™×§×”/×ž×•× ×˜×Ø×™××•×œ" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "××ž×Ø×™×§×”/×ž×•× ×˜×”×Ø××˜" #: timezones.h:300 msgid "America/Nassau" msgstr "××ž×Ø×™×§×”/נהאו" #: timezones.h:301 msgid "America/New_York" msgstr "××ž×Ø×™×§×”/ניו-יורק" #. comment for time zone America/New_York #: timezones.h:303 #, fuzzy msgid "Eastern Time" msgstr "ארה\"ב/×ž×–×Ø×—" #: timezones.h:304 msgid "America/Nipigon" msgstr "××ž×Ø×™×§×”/ניפיגון" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "××ž×Ø×™×§×”/נום" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "××ž×Ø×™×§×”/נורונהה" #. comment for time zone America/Noronha #: timezones.h:312 #, fuzzy msgid "Atlantic islands" msgstr "האוקיינוה-האטלנטי/האיים-×”×§× ×Ø×™×™×" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "××ž×Ø×™×§×”/דקוטה-הצפונית/×ž×Ø×›×–" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "××ž×Ø×™×§×”/דקוטה-הצפונית/ניו-האלם" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "××ž×Ø×™×§×”/מנגואה" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "××ž×Ø×™×§×”/פנמה" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "××ž×Ø×™×§×”/×¤× ×’× ×™×Ø×˜×•× ×’" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "××ž×Ø×™×§×”/×¤×Ø×ž×Ø×™×‘×•" #: timezones.h:327 msgid "America/Phoenix" msgstr "××ž×Ø×™×§×”/פניקה" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "××ž×Ø×™×§×”/×¤×•×Ø×˜-או-פרינה" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "××ž×Ø×™×§×”/×¤×•×Ø×˜-אקרה" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "××ž×Ø×™×§×”/×¤×•×Ø×˜-אוף-הפיין" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "××ž×Ø×™×§×”/×¤×•×Ø×˜×•-בלו" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "××ž×Ø×™×§×”/×¤×•××Ø×˜×•-ריקו" #: timezones.h:337 msgid "America/Rainy_River" msgstr "××ž×Ø×™×§×”/רייני-ריבר" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "××ž×Ø×™×§×”/×Ø× ×§×™×Ÿ-אינלט" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "××ž×Ø×™×§×”/רהיפה" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "××ž×Ø×™×§×”/רגינה" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 msgid "America/Resolute" msgstr "××ž×Ø×™×§×”/×Ø×–×•×œ×•×˜" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "××ž×Ø×™×§×”/ריו-ברנקו" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "××ž×Ø×™×§×”/רוהריו" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "××ž×Ø×™×§×”/הנטיאגו" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 #, fuzzy msgid "America/Santarem" msgstr "××ž×Ø×™×§×”/הנטיאגו" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "××ž×Ø×™×§×”/הנטיאגו" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "××ž×Ø×™×§×”/הנטו-דומינגו" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "××ž×Ø×™×§×”/האו-פאולו" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "××ž×Ø×™×§×”/הקורהבייהונד" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "××ž×Ø×™×§×”/שיפרוק" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "××ž×Ø×™×§×”/הט.×‘×Ø×˜×•×œ×•×ž×™×™" #: timezones.h:376 msgid "America/St_Johns" msgstr "××ž×Ø×™×§×”/הט.ג'והן" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "××ž×Ø×™×§×”/הט.קיטה" #: timezones.h:380 msgid "America/St_Lucia" msgstr "××ž×Ø×™×§×”/הט.לוהיה" #: timezones.h:381 msgid "America/St_Thomas" msgstr "××ž×Ø×™×§×”/הט.×Ŗ×•×ž×”" #: timezones.h:382 msgid "America/St_Vincent" msgstr "××ž×Ø×™×§×”/הט.ווינהנט" #: timezones.h:383 msgid "America/Swift_Current" msgstr "××ž×Ø×™×§×”/הוויפט-×§×•×Ø× ×˜" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "××ž×Ø×™×§×”/טגוצ'יגלפה" #: timezones.h:387 msgid "America/Thule" msgstr "××ž×Ø×™×§×”/×Ŗ×•×œ×”" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "××ž×Ø×™×§×”/×Ŗ'אנדר-ביי" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "××ž×Ø×™×§×”/טיחואנה" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "××ž×Ø×™×§×”/×˜×•×Ø×•× ×˜×•" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "××ž×Ø×™×§×”/×˜×•×Ø×˜×•×œ×”" #: timezones.h:400 msgid "America/Vancouver" msgstr "××ž×Ø×™×§×”/וואנקובר" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "××ž×Ø×™×§×”/ווריג'ין" #: timezones.h:404 msgid "America/Whitehorse" msgstr "××ž×Ø×™×§×”/×•×•×™×™×˜×”×•×Ø×”" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "××ž×Ø×™×§×”/וויניפג" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "××ž×Ø×™×§×”/יקוטט" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "××ž×Ø×™×§×”/יילואונייף" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "×× ×˜×Ø×§×˜×™×§×”/×§×™×™×”×™" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "×× ×˜×Ø×§×˜×™×§×”/דייויה" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "×× ×˜×Ø×§×˜×™×§×”/×“×•×ž×•× ×˜×“×•×Ø×•×•×™×œ" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "×× ×˜×Ø×§×˜×™×§×”/×ž×§×ž×•×Ø×“×•" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "×× ×˜×Ø×§×˜×™×§×”/מאוהון" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "×× ×˜×Ø×§×˜×™×§×”/×ž×§×ž×•×Ø×“×•" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "×× ×˜×Ø×§×˜×™×§×”/×¤×œ×ž×Ø" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "×× ×˜×Ø×§×˜×™×§×”/רות'רה" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "×× ×˜×Ø×§×˜×™×§×”/הקוטב-×”×“×Ø×•×ž×™" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "×× ×˜×Ø×§×˜×™×§×”/היווה" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "×× ×˜×Ø×§×˜×™×§×”/ווהטוק" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "××Ø×§×˜×™/×œ×•× ×’×™×Ø×‘×™×™×Ÿ" #: timezones.h:450 msgid "Asia/Aden" msgstr "אהיה/עדן" #: timezones.h:451 msgid "Asia/Almaty" msgstr "אהיה/אלמטי" #: timezones.h:454 msgid "Asia/Amman" msgstr "אהיה/עמאן" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "אהיה/אנדיר" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "אהיה/אקטאו" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "אהיה/אקטובה" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "אהיה/אשגבט" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "אהיה/אשחבד" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "אהיה/בגדד" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "אהיה/×‘×—×Ø×™×™×Ÿ" #: timezones.h:468 msgid "Asia/Baku" msgstr "אהיה/בקו" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "אהיה/בנגקוק" #: timezones.h:470 msgid "Asia/Beirut" msgstr "אהיה/ביירות" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "אהיה/בישקק" #: timezones.h:472 msgid "Asia/Brunei" msgstr "אהיה/ברוניי" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "אהיה/×›×œ×›×•×Ŗ×”" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "אהיה/צ'ויבלהן" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "אהיה/צ'ונגקינג" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "אהיה/צ'נגקינג" #: timezones.h:481 msgid "Asia/Colombo" msgstr "אהיה/קולומבו" #: timezones.h:482 msgid "Asia/Dacca" msgstr "אהיה/דאכה" #: timezones.h:483 msgid "Asia/Damascus" msgstr "אהיה/דמשק" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "אהיה/דאקה" #: timezones.h:485 msgid "Asia/Dili" msgstr "אהיה/דילי" #: timezones.h:486 msgid "Asia/Dubai" msgstr "אהיה/דובאי" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "אהיה/דושנבה" #: timezones.h:488 msgid "Asia/Gaza" msgstr "אהיה/עזה" #: timezones.h:489 msgid "Asia/Harbin" msgstr "אהיה/×—×Ø×‘×™×Ÿ" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 #, fuzzy msgid "Asia/Ho_Chi_Minh" msgstr "אהיה/צ'ונגקינג" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "אהיה/הונג-קונג" #: timezones.h:494 msgid "Asia/Hovd" msgstr "אהיה/הובד" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "אהיה/אירקוצק" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "אהיה/איהטנבול" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "אהיה/ג'××§×Ø×˜×”" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "אהיה/ג'איהפורה" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "אהיה/×™×Ø×•×©×œ×™×™×" #: timezones.h:508 msgid "Asia/Kabul" msgstr "אהיה/קאבול" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "אהיה/קמצ'טקה" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "אהיה/קאראצ'י" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "אהיה/קשגאר" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 #, fuzzy msgid "Asia/Kathmandu" msgstr "אהיה/קטמנדו" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "אהיה/קטמנדו" #: timezones.h:518 #, fuzzy msgid "Asia/Kolkata" msgstr "אהיה/ג'××§×Ø×˜×”" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "אהיה/קרהנוירהק" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "אהיה/קואלה-×œ×•×ž×¤×•×Ø" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "אהיה/קוצ'ינג" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "אהיה/כווית" #: timezones.h:529 msgid "Asia/Macao" msgstr "אהיה/מקאֹו" #: timezones.h:530 msgid "Asia/Macau" msgstr "אהיה/מקאְו" #: timezones.h:531 msgid "Asia/Magadan" msgstr "אהיה/מגדאן" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "אהיה/×ž×§×”××Ø" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "אהיה/מנילה" #: timezones.h:538 msgid "Asia/Muscat" msgstr "אהיה/מוהקט" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "אהיה/ניקוהיה" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "אהיה/אירקוצק" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "אהיה/נובוהיבירהק" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "אהיה/נובוהיבירהק" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 #, fuzzy msgid "Moscow+03 - Novosibirsk" msgstr "אהיה/נובוהיבירהק" #: timezones.h:546 msgid "Asia/Omsk" msgstr "אהיה/אומהק" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "אהיה/××•×Ø×œ" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "אהיה/פנום-פן" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "אהיה/פונטיאנק" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "אהיה/פיונג-ינג" #: timezones.h:557 msgid "Asia/Qatar" msgstr "אהיה/קטר" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "אהיה/×§×™×–×™×œ×•×Ø×“×”" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "אהיה/×Ø×× ×’×•×Ÿ" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "אהיה/ריאד" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "אהיה/ריאד-ā€Ž87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "אהיה/ריאד-ā€Ž88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "אהיה/ריאד-ā€Ž89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "אהיה/הייגון" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "אהיה/החאלין" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "אהיה/×”×ž×Ø×§× ×“" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "אהיה/האול" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "אהיה/שנגחאי" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "אהיה/הינגפור" #: timezones.h:578 msgid "Asia/Taipei" msgstr "אהיה/טאייפיי" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "אהיה/טשקנט" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "אהיה/טביליהי" #: timezones.h:583 msgid "Asia/Tehran" msgstr "אהיה/×˜×”×Ø×Ÿ" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "אהיה/תל-אביב" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "אהיה/×Ŗ'ימבו" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "אהיה/×Ŗ'ימפו" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "אהיה/טוקיו" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "אהיה/אוג'ונג-פאנדאנג" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "אהיה/××•×œ×× ×‘××˜××Ø" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "אהיה/אולנ-×‘×˜×•×Ø" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "אהיה/××•×Ø×•×ž×§×™" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "אהיה/וויאנטיאן" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "אהיה/וולדיווהטוק" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "אהיה/יקוצק" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "אהיה/×™×§×˜×Ø×™× ×‘×•×Ø×’" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "אהיה/×™×Ø×•×•××Ÿ" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "האוקיינוה-האטלנטי/האיים-×”××–×•×Ø×™×™×" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "האוקיינוה-האטלנטי/×‘×Ø×ž×•×“×”" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "האוקיינוה-האטלנטי/האיים-×”×§× ×Ø×™×™×" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "האוקיינוה-האטלנטי/קייפ-וורדה" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "האוקיינוה-האטלנטי/פֶארו" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "האוקיינוה-האטלנטי/פארו" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "האוקיינוה-האטלנטי/ג'אן-מאיין" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "האוקיינוה-האטלנטי/×ž×“×™×™×Ø×”" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "האוקיינוה-האטלנטי/רייקייויק" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "האוקיינוה-האטלנטי/×“×Ø×•×-ג'ורג'יה" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "האוקיינוה-האטלנטי/הטאנלי" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "האוקיינוה-האטלנטי/הט.הלן" #: timezones.h:625 msgid "Australia/ACT" msgstr "××•×”×˜×Ø×œ×™×”/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "××•×”×˜×Ø×œ×™×”/אדלייד" #. comment for time zone Australia/Adelaide #: timezones.h:628 #, fuzzy msgid "South Australia" msgstr "××•×”×˜×Ø×œ×™×”/ACT" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "××•×”×˜×Ø×œ×™×”/×‘×Ø×™×”×‘×™×™×Ÿ" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "××•×”×˜×Ø×œ×™×”/×‘×Ø×•×§×Ÿ-היל" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "××•×”×˜×Ø×œ×™×”/קנברה" #: timezones.h:636 msgid "Australia/Currie" msgstr "××•×”×˜×Ø×œ×™×”/קורי" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "××•×”×˜×Ø×œ×™×”/×“×Ø×•×•×™×Ÿ" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 msgid "Australia/Eucla" msgstr "××•×”×˜×Ø×œ×™×”/אאוקלה" #. comment for time zone Australia/Eucla #: timezones.h:644 #, fuzzy msgid "Western Australia - Eucla area" msgstr "××•×”×˜×Ø×œ×™×”/אאוקלה" #: timezones.h:645 msgid "Australia/Hobart" msgstr "××•×”×˜×Ø×œ×™×”/×”×•×‘×Ø×˜" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "××•×”×˜×Ø×œ×™×”/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "××•×”×˜×Ø×œ×™×”/לינדמן" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "××•×”×˜×Ø×œ×™×”/×œ×•×Ø×“-הווה" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "××•×”×˜×Ø×œ×™×”/×ž×œ×‘×•×Ø×Ÿ" #. comment for time zone Australia/Melbourne #: timezones.h:657 #, fuzzy msgid "Victoria" msgstr "××•×”×˜×Ø×œ×™×”/×•×•×™×§×˜×•×Ø×™×”" #: timezones.h:658 msgid "Australia/North" msgstr "××•×”×˜×Ø×œ×™×”/צפון" #: timezones.h:659 msgid "Australia/NSW" msgstr "××•×”×˜×Ø×œ×™×”/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "××•×”×˜×Ø×œ×™×”/פרת'" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "××•×”×˜×Ø×œ×™×”/קווינהלנד" #: timezones.h:664 msgid "Australia/South" msgstr "××•×”×˜×Ø×œ×™×”/×“×Ø×•×" #: timezones.h:665 msgid "Australia/Sydney" msgstr "××•×”×˜×Ø×œ×™×”/הידני" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "××•×”×˜×Ø×œ×™×”/טהמניה" #: timezones.h:669 msgid "Australia/Victoria" msgstr "××•×”×˜×Ø×œ×™×”/×•×•×™×§×˜×•×Ø×™×”" #: timezones.h:670 msgid "Australia/West" msgstr "××•×”×˜×Ø×œ×™×”/×ž×¢×Ø×‘" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "××•×”×˜×Ø×œ×™×”/ינקובינה" #: timezones.h:672 msgid "Brazil/Acre" msgstr "×‘×Ø×–×™×œ/אקרה" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "×‘×Ø×–×™×œ/דה-נורונהה" #: timezones.h:674 msgid "Brazil/East" msgstr "×‘×Ø×–×™×œ/×ž×–×Ø×—" #: timezones.h:675 msgid "Brazil/West" msgstr "×‘×Ø×–×™×œ/×ž×¢×Ø×‘" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "קנדה/אטלנטי" #: timezones.h:677 msgid "Canada/Central" msgstr "קנדה/×ž×Ø×›×–" #: timezones.h:678 msgid "Canada/Eastern" msgstr "קנדה/×ž×–×Ø×—" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "קנדה/×ž×–×Ø×—-ההקצ'וואן" #: timezones.h:680 msgid "Canada/Mountain" msgstr "קנדה/×”×Ø×™×" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "קנדה/ניו-פאונדלנד" #: timezones.h:682 msgid "Canada/Pacific" msgstr "קנדה/האוקינוה-השקט" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "קנדה/ההקצ'וואן" #: timezones.h:684 msgid "Canada/Yukon" msgstr "קנדה/יוקון" #: timezones.h:685 msgid "CET" msgstr "" #: timezones.h:686 msgid "Chile/Continental" msgstr "צ'ילה/היבשת" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "צ'ילה/איי-הפהחא" #: timezones.h:688 msgid "CST6CDT" msgstr "" #: timezones.h:689 msgid "Cuba" msgstr "קובה" #: timezones.h:690 msgid "EET" msgstr "" #: timezones.h:691 msgid "Egypt" msgstr "×ž×¦×Ø×™×™×" #: timezones.h:692 msgid "Eire" msgstr "××™×Ø×œ× ×“" #: timezones.h:693 msgid "EST" msgstr "" #: timezones.h:694 msgid "EST5EDT" msgstr "" #: timezones.h:695 msgid "Etc/GMT" msgstr "" #: timezones.h:696 msgid "Etc/GMT0" msgstr "" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "" #: timezones.h:726 msgid "Etc/UCT" msgstr "" #: timezones.h:727 msgid "Etc/Universal" msgstr "" #: timezones.h:728 msgid "Etc/UTC" msgstr "" #: timezones.h:729 msgid "Etc/Zulu" msgstr "" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "אירופה/××ž×”×˜×Ø×“×" #: timezones.h:731 msgid "Europe/Andorra" msgstr "אירופה/אנדורה" #: timezones.h:732 msgid "Europe/Athens" msgstr "אירופה/אתונה" #: timezones.h:733 msgid "Europe/Belfast" msgstr "אירופה/בלפהט" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "אירופה/×‘×œ×’×Ø×“" #: timezones.h:735 msgid "Europe/Berlin" msgstr "אירופה/×‘×Ø×œ×™×Ÿ" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "אירופה/×‘×Ø×˜×™×”×œ×‘×”" #: timezones.h:737 msgid "Europe/Brussels" msgstr "אירופה/×‘×Ø×™×”×œ" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "אירופה/×‘×•×§×Ø×©×˜" #: timezones.h:739 msgid "Europe/Budapest" msgstr "אירופה/בודפשט" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "אירופה/צ'יהינאו" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "אירופה/קופנהאגן" #: timezones.h:742 msgid "Europe/Dublin" msgstr "אירופה/דבלין" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "אירופה/×’×™×‘×Ø×œ×˜×Ø" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "אירופה/גוארנהיי" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "אירופה/הלהינקי" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "אירופה/אי-האדם" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "אירופה/איהטנבול" #: timezones.h:748 msgid "Europe/Jersey" msgstr "אירופה/ג'רהי" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "אירופה/×§×œ×™× ×™× ×’×Ø×“" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "אירופה/קייב" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "אירופה/ליהבון" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "אירופה/לובליאנה" #: timezones.h:759 msgid "Europe/London" msgstr "אירופה/לונדון" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "אירופה/×œ×•×§×”×ž×‘×•×Ø×’" #: timezones.h:761 msgid "Europe/Madrid" msgstr "אירופה/×ž×“×Ø×™×“" #: timezones.h:764 msgid "Europe/Malta" msgstr "אירופה/מלטה" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "אירופה/×ž×Ø×™×”×" #: timezones.h:766 msgid "Europe/Minsk" msgstr "אירופה/מינהק" #: timezones.h:767 msgid "Europe/Monaco" msgstr "אירופה/מונקו" #: timezones.h:768 msgid "Europe/Moscow" msgstr "אירופה/מוהקווה" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "אירופה/ניקוהיה" #: timezones.h:772 msgid "Europe/Oslo" msgstr "אירופה/אוהלו" #: timezones.h:773 msgid "Europe/Paris" msgstr "אירופה/פריה" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "אירופה/פודגוריקה" #: timezones.h:775 msgid "Europe/Prague" msgstr "אירופה/פראג" #: timezones.h:776 msgid "Europe/Riga" msgstr "אירופה/ריגה" #: timezones.h:777 msgid "Europe/Rome" msgstr "אירופה/×Ø×•×ž×" #: timezones.h:778 msgid "Europe/Samara" msgstr "אירופה/×”×ž×Ø×”" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "אירופה/הן-×ž×Ø×™× ×•" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "אירופה/הרייבו" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "אירופה/×”×™×ž×¤×Ø×•×¤×•×œ" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "אירופה/הקופייה" #: timezones.h:787 msgid "Europe/Sofia" msgstr "אירופה/הופיה" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "אירופה/הטוקהולם" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "אירופה/טאלין" #: timezones.h:790 msgid "Europe/Tirane" msgstr "אירופה/×˜×™×Ø× ×”" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "אירופה/×˜×™×Ø×”×¤×•×œ" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "אירופה/אוזגורוד" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "אירופה/וודוז" #: timezones.h:796 msgid "Europe/Vatican" msgstr "אירופה/ווטיקן" #: timezones.h:797 msgid "Europe/Vienna" msgstr "אירופה/וינה" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "אירופה/וילניוה" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "אירופה/×•×•×œ×’×•×’×Ø×“" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "אירופה/ווארשה" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "אירופה/זאגרב" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "אירופה/זפורוזי" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "אירופה/×¦×™×Ø×™×š" #: timezones.h:808 msgid "Factory" msgstr "מפעל" #: timezones.h:809 msgid "GB" msgstr "×‘×Ø×™×˜× ×™×”" #: timezones.h:810 msgid "GB-Eire" msgstr "×‘×Ø×™×˜× ×™×”-××™×Ø×œ× ×“" #: timezones.h:811 msgid "GMT" msgstr "" #: timezones.h:812 msgid "GMT0" msgstr "" #: timezones.h:813 msgid "GMT-0" msgstr "" #: timezones.h:814 msgid "GMT+0" msgstr "" #: timezones.h:815 msgid "Greenwich" msgstr "גריניׄ'" #: timezones.h:816 msgid "Hongkong" msgstr "הונג-קונג" #: timezones.h:817 msgid "HST" msgstr "" #: timezones.h:818 msgid "Iceland" msgstr "איהלנד" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "הודו/×× ×˜× × ×Ø×™×‘×•" #: timezones.h:820 msgid "Indian/Chagos" msgstr "הודו/צ'אגוה" #: timezones.h:821 msgid "Indian/Christmas" msgstr "הודו/×›×Ø×™×”×˜×ž×”" #: timezones.h:822 msgid "Indian/Cocos" msgstr "הודו/קוקוה" #: timezones.h:823 msgid "Indian/Comoro" msgstr "הודו/×§×•×ž×•×Ø×•" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "הודו/×§×Ø×’×•××œ×Ÿ" #: timezones.h:825 msgid "Indian/Mahe" msgstr "הודו/מהה" #: timezones.h:826 msgid "Indian/Maldives" msgstr "הודו/האיים-המלדיביים" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "הודו/×ž××•×Ø×™×¦×™×•×”" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "הודו/מיוטה" #: timezones.h:829 msgid "Indian/Reunion" msgstr "הודו/איחוד" #: timezones.h:830 msgid "Iran" msgstr "××™×Ø×Ÿ" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "×™×©×Ø××œ" #: timezones.h:833 msgid "Jamaica" msgstr "ג'מאיקה" #: timezones.h:834 msgid "Japan" msgstr "יפן" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "קוואג'אלין" #: timezones.h:836 msgid "Libya" msgstr "לוב" #: timezones.h:837 msgid "MET" msgstr "" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "מקהיקו/בחה-× ×•×Ø×˜×”" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "מקהיקו/בחה-הור" #: timezones.h:840 msgid "Mexico/General" msgstr "מקהיקו/כללי" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "×ž×–×Ø×—-×Ŗ×™×›×•×Ÿ/ריאד87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "×ž×–×Ø×—-×Ŗ×™×›×•×Ÿ/ריאד88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "×ž×–×Ø×—-×Ŗ×™×›×•×Ÿ/ריאד89" #: timezones.h:844 msgid "MST" msgstr "" #: timezones.h:845 msgid "MST7MDT" msgstr "" #: timezones.h:846 msgid "Navajo" msgstr "נבאחו" #: timezones.h:847 msgid "NZ" msgstr "ניו-זילנד" #: timezones.h:848 msgid "NZ-CHAT" msgstr "ניו-זילנד-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "האוקיינוה-השקט/אפיה" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "האוקיינוה-השקט/אוקלנד" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "האוקיינוה-השקט/צ'×Ŗ×" #. comment for time zone Pacific/Chatham #: timezones.h:855 #, fuzzy msgid "Chatham Islands" msgstr "צ'ילה/איי-הפהחא" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "האוקיינוה-השקט/×˜×Ø×•×§" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 msgid "Pacific/Easter" msgstr "האוקיינוה-השקט/××™×”×˜×Ø" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "האוקיינוה-השקט/אפאט" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "האוקיינוה-השקט/אנדרבורי" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "האוקיינוה-השקט/פקאופו" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "האוקיינוה-השקט/פיג'י" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "האוקיינוה-השקט/פונהפוטי" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "האוקיינוה-השקט/גלאפגוה" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "האוקיינוה-השקט/×’×ž×‘×™×™×Ø" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "האוקיינוה-השקט/גואדל-קנאל" #: timezones.h:876 msgid "Pacific/Guam" msgstr "האוקיינוה-השקט/גואם" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "האוקיינוה-השקט/הונולולו" #. comment for time zone Pacific/Honolulu #: timezones.h:879 #, fuzzy msgid "Hawaii" msgstr "ארה\"ב/הוואי" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "האוקיינוה-השקט/ג'ונהון" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "האוקיינוה-השקט/×§×™×Ø×™×˜×™×ž×˜×™" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "האוקיינוה-השקט/קוהרה" #. comment for time zone Pacific/Kosrae #: timezones.h:888 #, fuzzy msgid "Kosrae" msgstr "×™×©×Ø××œ" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "האוקיינוה-השקט/קואג'ליין" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "האוקיינוה-השקט/מג'ורו" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "האוקיינוה-השקט/×ž×Ø×§×”×”" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "האוקיינוה-השקט/מידווי" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "האוקיינוה-השקט/נאורו" #: timezones.h:902 msgid "Pacific/Niue" msgstr "האוקיינוה-השקט/ניוה" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "האוקיינוה-השקט/× ×•×Ø×¤×•×œ×§" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "האוקיינוה-השקט/נומאה" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "האוקיינוה-השקט/פגו-פגו" #: timezones.h:906 msgid "Pacific/Palau" msgstr "האוקיינוה-השקט/פלאו" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "האוקיינוה-השקט/×¤×™×˜×§×Ø×Ÿ" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "האוקיינוה-השקט/פונפה" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "האוקיינוה-השקט/פונפה" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "האוקיינוה-השקט/×¤×•×Ø×˜-×ž×•×Ø×”×‘×™" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "האוקיינוה-השקט/×Ø×Ø×•×˜×•× ×’×”" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "האוקיינוה-השקט/האייפן" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "האוקיינוה-השקט/המואה" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "האוקיינוה-השקט/טהיטי" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "האוקיינוה-השקט/×˜×Ø××•×•×”" #. comment for time zone Pacific/Tarawa #: timezones.h:921 #, fuzzy msgid "Gilbert Islands" msgstr "צ'ילה/איי-הפהחא" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "האוקיינוה-השקט/טונגהטפו" #: timezones.h:923 msgid "Pacific/Truk" msgstr "האוקיינוה-השקט/×˜×Ø×•×§" #: timezones.h:924 msgid "Pacific/Wake" msgstr "האוקיינוה-השקט/ווייק" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "האוקיינוה-השקט/ווליה" #: timezones.h:928 msgid "Pacific/Yap" msgstr "האוקיינוה-השקט/ייאפ" #: timezones.h:929 msgid "Poland" msgstr "פולין" #: timezones.h:930 msgid "Portugal" msgstr "×¤×•×Ø×˜×•×’×œ" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "" #: timezones.h:933 msgid "PST8PDT" msgstr "" #: timezones.h:934 msgid "ROC" msgstr "" #: timezones.h:935 msgid "ROK" msgstr "" #: timezones.h:936 msgid "Singapore" msgstr "הינגפור" #: timezones.h:937 msgid "Turkey" msgstr "×˜×•×Ø×§×™×”" #: timezones.h:938 msgid "UCT" msgstr "" #: timezones.h:939 msgid "Universal" msgstr "עולמי" #: timezones.h:940 msgid "US/Alaska" msgstr "ארה\"ב/אלהקה" #: timezones.h:941 msgid "US/Aleutian" msgstr "ארה\"ב/האיים-האלוטים" #: timezones.h:942 msgid "US/Arizona" msgstr "ארה\"ב/אריזונה" #: timezones.h:943 msgid "US/Central" msgstr "ארה\"ב/×ž×Ø×›×–" #: timezones.h:944 msgid "US/Eastern" msgstr "ארה\"ב/×ž×–×Ø×—" #: timezones.h:945 msgid "US/East-Indiana" msgstr "ארה\"ב/×ž×–×Ø×—-אינדיאנה" #: timezones.h:946 msgid "US/Hawaii" msgstr "ארה\"ב/הוואי" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "ארה\"ב/אינדיאנה-×”×˜×Ø×§×”" #: timezones.h:948 msgid "US/Michigan" msgstr "ארה\"ב/מישיגן" #: timezones.h:949 msgid "US/Mountain" msgstr "ארה\"ב/×”×Ø×™×" #: timezones.h:950 msgid "US/Pacific" msgstr "ארה\"ב/האוקיינוה-השקט" #: timezones.h:951 msgid "US/Samoa" msgstr "ארה\"ב/המואה" #: timezones.h:952 msgid "UTC" msgstr "זמן ×ž×Ŗ×•×× עולמי (UTC)" #: timezones.h:953 msgid "WET" msgstr "" #: timezones.h:954 msgid "W-SU" msgstr "" #: timezones.h:955 msgid "Zulu" msgstr "זולו" #~ msgid "US/Pacific-New" #~ msgstr "ארה\"ב/האוקיינוה-השקט-חדש" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/nn.po0000664000175000017500000014461614632072346023706 0ustar fabiofabio# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: timezones\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: Fri Jul 20 18:10:01 2001\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8-bit\n" "Generated-By: pygettext.py 1.1\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "" #: timezones.h:2 msgid "Africa/Accra" msgstr "" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "" #: timezones.h:4 msgid "Africa/Algiers" msgstr "" #: timezones.h:5 msgid "Africa/Asmara" msgstr "" #: timezones.h:6 msgid "Africa/Asmera" msgstr "" #: timezones.h:7 msgid "Africa/Bamako" msgstr "" #: timezones.h:8 msgid "Africa/Bangui" msgstr "" #: timezones.h:9 msgid "Africa/Banjul" msgstr "" #: timezones.h:10 msgid "Africa/Bissau" msgstr "" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "" #: timezones.h:14 msgid "Africa/Cairo" msgstr "" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "" #: timezones.h:20 msgid "Africa/Dakar" msgstr "" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "" #: timezones.h:23 msgid "Africa/Douala" msgstr "" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "" #: timezones.h:25 msgid "Africa/Freetown" msgstr "" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "" #: timezones.h:27 msgid "Africa/Harare" msgstr "" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "" #: timezones.h:29 msgid "Africa/Kampala" msgstr "" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "" #: timezones.h:31 msgid "Africa/Kigali" msgstr "" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "" #: timezones.h:36 msgid "Africa/Libreville" msgstr "" #: timezones.h:37 msgid "Africa/Lome" msgstr "" #: timezones.h:38 msgid "Africa/Luanda" msgstr "" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "" #: timezones.h:43 msgid "Africa/Malabo" msgstr "" #: timezones.h:44 msgid "Africa/Maputo" msgstr "" #: timezones.h:45 msgid "Africa/Maseru" msgstr "" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "" #: timezones.h:51 msgid "Africa/Niamey" msgstr "" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "" #: timezones.h:58 msgid "Africa/Tunis" msgstr "" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "" #: timezones.h:60 msgid "America/Adak" msgstr "" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "" #: timezones.h:63 msgid "America/Anchorage" msgstr "" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "" #: timezones.h:66 msgid "America/Anguilla" msgstr "" #: timezones.h:67 msgid "America/Antigua" msgstr "" #: timezones.h:68 msgid "America/Araguaina" msgstr "" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "" #: timezones.h:109 msgid "America/Asuncion" msgstr "" #: timezones.h:110 msgid "America/Atikokan" msgstr "" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "" #: timezones.h:114 msgid "America/Bahia" msgstr "" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "" #: timezones.h:121 msgid "America/Belem" msgstr "" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "" #: timezones.h:132 msgid "America/Boise" msgstr "" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "" #: timezones.h:146 msgid "America/Catamarca" msgstr "" #: timezones.h:147 msgid "America/Cayenne" msgstr "" #: timezones.h:148 msgid "America/Cayman" msgstr "" #: timezones.h:149 msgid "America/Chicago" msgstr "" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "" #: timezones.h:152 msgid "America/Chihuahua" msgstr "" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "" #: timezones.h:156 msgid "America/Cordoba" msgstr "" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "" #: timezones.h:158 msgid "America/Cuiaba" msgstr "" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "" #: timezones.h:174 msgid "America/Detroit" msgstr "" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "" #: timezones.h:178 msgid "America/Edmonton" msgstr "" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "" #: timezones.h:185 msgid "America/Ensenada" msgstr "" #: timezones.h:186 msgid "America/Fortaleza" msgstr "" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "" #: timezones.h:200 msgid "America/Grenada" msgstr "" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "" #: timezones.h:202 msgid "America/Guatemala" msgstr "" #: timezones.h:203 msgid "America/Guayaquil" msgstr "" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "" #: timezones.h:207 msgid "America/Halifax" msgstr "" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "" #: timezones.h:211 msgid "America/Hermosillo" msgstr "" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "" #: timezones.h:246 msgid "America/Jujuy" msgstr "" #: timezones.h:247 msgid "America/Juneau" msgstr "" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "" #: timezones.h:257 msgid "America/La_Paz" msgstr "" #: timezones.h:258 msgid "America/Lima" msgstr "" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "" #: timezones.h:262 msgid "America/Louisville" msgstr "" #: timezones.h:263 msgid "America/Maceio" msgstr "" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "" #: timezones.h:267 msgid "America/Manaus" msgstr "" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 msgid "America/Marigot" msgstr "" #: timezones.h:271 msgid "America/Martinique" msgstr "" #: timezones.h:272 msgid "America/Matamoros" msgstr "" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "" #: timezones.h:279 msgid "America/Menominee" msgstr "" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "" #: timezones.h:289 msgid "America/Moncton" msgstr "" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "" #: timezones.h:296 msgid "America/Montreal" msgstr "" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "" #: timezones.h:300 msgid "America/Nassau" msgstr "" #: timezones.h:301 msgid "America/New_York" msgstr "" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "" #: timezones.h:304 msgid "America/Nipigon" msgstr "" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 msgid "America/Ojinaga" msgstr "" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "" #: timezones.h:327 msgid "America/Phoenix" msgstr "" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "" #: timezones.h:337 msgid "America/Rainy_River" msgstr "" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 msgid "America/Resolute" msgstr "" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 msgid "America/Santarem" msgstr "" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "" #: timezones.h:376 msgid "America/St_Johns" msgstr "" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "" #: timezones.h:380 msgid "America/St_Lucia" msgstr "" #: timezones.h:381 msgid "America/St_Thomas" msgstr "" #: timezones.h:382 msgid "America/St_Vincent" msgstr "" #: timezones.h:383 msgid "America/Swift_Current" msgstr "" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "" #: timezones.h:387 msgid "America/Thule" msgstr "" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "" #: timezones.h:400 msgid "America/Vancouver" msgstr "" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "" #: timezones.h:404 msgid "America/Whitehorse" msgstr "" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "" #: timezones.h:450 msgid "Asia/Aden" msgstr "" #: timezones.h:451 msgid "Asia/Almaty" msgstr "" #: timezones.h:454 msgid "Asia/Amman" msgstr "" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "" #: timezones.h:468 msgid "Asia/Baku" msgstr "" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "" #: timezones.h:470 msgid "Asia/Beirut" msgstr "" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "" #: timezones.h:472 msgid "Asia/Brunei" msgstr "" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "" #: timezones.h:481 msgid "Asia/Colombo" msgstr "" #: timezones.h:482 msgid "Asia/Dacca" msgstr "" #: timezones.h:483 msgid "Asia/Damascus" msgstr "" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "" #: timezones.h:485 msgid "Asia/Dili" msgstr "" #: timezones.h:486 msgid "Asia/Dubai" msgstr "" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "" #: timezones.h:488 msgid "Asia/Gaza" msgstr "" #: timezones.h:489 msgid "Asia/Harbin" msgstr "" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "" #: timezones.h:494 msgid "Asia/Hovd" msgstr "" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "" #: timezones.h:508 msgid "Asia/Kabul" msgstr "" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "" #: timezones.h:529 msgid "Asia/Macao" msgstr "" #: timezones.h:530 msgid "Asia/Macau" msgstr "" #: timezones.h:531 msgid "Asia/Magadan" msgstr "" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "" #: timezones.h:538 msgid "Asia/Muscat" msgstr "" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "" #: timezones.h:546 msgid "Asia/Omsk" msgstr "" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "" #: timezones.h:557 msgid "Asia/Qatar" msgstr "" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "" #: timezones.h:566 msgid "Asia/Saigon" msgstr "" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "" #: timezones.h:578 msgid "Asia/Taipei" msgstr "" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "" #: timezones.h:583 msgid "Asia/Tehran" msgstr "" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "" #: timezones.h:625 msgid "Australia/ACT" msgstr "" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "" #: timezones.h:636 msgid "Australia/Currie" msgstr "" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 msgid "Australia/Eucla" msgstr "" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "" #: timezones.h:645 msgid "Australia/Hobart" msgstr "" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "" #: timezones.h:658 msgid "Australia/North" msgstr "" #: timezones.h:659 msgid "Australia/NSW" msgstr "" #: timezones.h:660 msgid "Australia/Perth" msgstr "" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "" #: timezones.h:664 msgid "Australia/South" msgstr "" #: timezones.h:665 msgid "Australia/Sydney" msgstr "" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "" #: timezones.h:669 msgid "Australia/Victoria" msgstr "" #: timezones.h:670 msgid "Australia/West" msgstr "" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "" #: timezones.h:672 msgid "Brazil/Acre" msgstr "" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "" #: timezones.h:674 msgid "Brazil/East" msgstr "" #: timezones.h:675 msgid "Brazil/West" msgstr "" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "" #: timezones.h:677 msgid "Canada/Central" msgstr "" #: timezones.h:678 msgid "Canada/Eastern" msgstr "" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "" #: timezones.h:680 msgid "Canada/Mountain" msgstr "" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "" #: timezones.h:682 msgid "Canada/Pacific" msgstr "" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "" #: timezones.h:684 msgid "Canada/Yukon" msgstr "" #: timezones.h:685 msgid "CET" msgstr "" #: timezones.h:686 msgid "Chile/Continental" msgstr "" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "" #: timezones.h:688 msgid "CST6CDT" msgstr "" #: timezones.h:689 msgid "Cuba" msgstr "" #: timezones.h:690 msgid "EET" msgstr "" #: timezones.h:691 msgid "Egypt" msgstr "" #: timezones.h:692 msgid "Eire" msgstr "" #: timezones.h:693 msgid "EST" msgstr "" #: timezones.h:694 msgid "EST5EDT" msgstr "" #: timezones.h:695 msgid "Etc/GMT" msgstr "" #: timezones.h:696 msgid "Etc/GMT0" msgstr "" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "" #: timezones.h:726 msgid "Etc/UCT" msgstr "" #: timezones.h:727 msgid "Etc/Universal" msgstr "" #: timezones.h:728 msgid "Etc/UTC" msgstr "" #: timezones.h:729 msgid "Etc/Zulu" msgstr "" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "" #: timezones.h:731 msgid "Europe/Andorra" msgstr "" #: timezones.h:732 msgid "Europe/Athens" msgstr "" #: timezones.h:733 msgid "Europe/Belfast" msgstr "" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "" #: timezones.h:735 msgid "Europe/Berlin" msgstr "" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "" #: timezones.h:737 msgid "Europe/Brussels" msgstr "" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "" #: timezones.h:739 msgid "Europe/Budapest" msgstr "" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "" #: timezones.h:742 msgid "Europe/Dublin" msgstr "" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "" #: timezones.h:748 msgid "Europe/Jersey" msgstr "" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "" #: timezones.h:759 msgid "Europe/London" msgstr "" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "" #: timezones.h:761 msgid "Europe/Madrid" msgstr "" #: timezones.h:764 msgid "Europe/Malta" msgstr "" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "" #: timezones.h:766 msgid "Europe/Minsk" msgstr "" #: timezones.h:767 msgid "Europe/Monaco" msgstr "" #: timezones.h:768 msgid "Europe/Moscow" msgstr "" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "" #: timezones.h:772 msgid "Europe/Oslo" msgstr "" #: timezones.h:773 msgid "Europe/Paris" msgstr "" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "" #: timezones.h:775 msgid "Europe/Prague" msgstr "" #: timezones.h:776 msgid "Europe/Riga" msgstr "" #: timezones.h:777 msgid "Europe/Rome" msgstr "" #: timezones.h:778 msgid "Europe/Samara" msgstr "" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "" #: timezones.h:787 msgid "Europe/Sofia" msgstr "" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "" #: timezones.h:790 msgid "Europe/Tirane" msgstr "" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "" #: timezones.h:796 msgid "Europe/Vatican" msgstr "" #: timezones.h:797 msgid "Europe/Vienna" msgstr "" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "" #: timezones.h:808 msgid "Factory" msgstr "" #: timezones.h:809 msgid "GB" msgstr "" #: timezones.h:810 msgid "GB-Eire" msgstr "" #: timezones.h:811 msgid "GMT" msgstr "" #: timezones.h:812 msgid "GMT0" msgstr "" #: timezones.h:813 msgid "GMT-0" msgstr "" #: timezones.h:814 msgid "GMT+0" msgstr "" #: timezones.h:815 msgid "Greenwich" msgstr "" #: timezones.h:816 msgid "Hongkong" msgstr "" #: timezones.h:817 msgid "HST" msgstr "" #: timezones.h:818 msgid "Iceland" msgstr "" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "" #: timezones.h:820 msgid "Indian/Chagos" msgstr "" #: timezones.h:821 msgid "Indian/Christmas" msgstr "" #: timezones.h:822 msgid "Indian/Cocos" msgstr "" #: timezones.h:823 msgid "Indian/Comoro" msgstr "" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "" #: timezones.h:825 msgid "Indian/Mahe" msgstr "" #: timezones.h:826 msgid "Indian/Maldives" msgstr "" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "" #: timezones.h:829 msgid "Indian/Reunion" msgstr "" #: timezones.h:830 msgid "Iran" msgstr "" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "" #: timezones.h:833 msgid "Jamaica" msgstr "" #: timezones.h:834 msgid "Japan" msgstr "" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "" #: timezones.h:836 msgid "Libya" msgstr "" #: timezones.h:837 msgid "MET" msgstr "" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "" #: timezones.h:840 msgid "Mexico/General" msgstr "" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "" #: timezones.h:844 msgid "MST" msgstr "" #: timezones.h:845 msgid "MST7MDT" msgstr "" #: timezones.h:846 msgid "Navajo" msgstr "" #: timezones.h:847 msgid "NZ" msgstr "" #: timezones.h:848 msgid "NZ-CHAT" msgstr "" #: timezones.h:849 msgid "Pacific/Apia" msgstr "" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 msgid "Pacific/Easter" msgstr "" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "" #: timezones.h:876 msgid "Pacific/Guam" msgstr "" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "" #: timezones.h:902 msgid "Pacific/Niue" msgstr "" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "" #: timezones.h:906 msgid "Pacific/Palau" msgstr "" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "" #: timezones.h:923 msgid "Pacific/Truk" msgstr "" #: timezones.h:924 msgid "Pacific/Wake" msgstr "" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "" #: timezones.h:928 msgid "Pacific/Yap" msgstr "" #: timezones.h:929 msgid "Poland" msgstr "" #: timezones.h:930 msgid "Portugal" msgstr "" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "" #: timezones.h:933 msgid "PST8PDT" msgstr "" #: timezones.h:934 msgid "ROC" msgstr "" #: timezones.h:935 msgid "ROK" msgstr "" #: timezones.h:936 msgid "Singapore" msgstr "" #: timezones.h:937 msgid "Turkey" msgstr "" #: timezones.h:938 msgid "UCT" msgstr "" #: timezones.h:939 msgid "Universal" msgstr "" #: timezones.h:940 msgid "US/Alaska" msgstr "" #: timezones.h:941 msgid "US/Aleutian" msgstr "" #: timezones.h:942 msgid "US/Arizona" msgstr "" #: timezones.h:943 msgid "US/Central" msgstr "" #: timezones.h:944 msgid "US/Eastern" msgstr "" #: timezones.h:945 msgid "US/East-Indiana" msgstr "" #: timezones.h:946 msgid "US/Hawaii" msgstr "" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "" #: timezones.h:948 msgid "US/Michigan" msgstr "" #: timezones.h:949 msgid "US/Mountain" msgstr "" #: timezones.h:950 msgid "US/Pacific" msgstr "" #: timezones.h:951 msgid "US/Samoa" msgstr "" #: timezones.h:952 msgid "UTC" msgstr "" #: timezones.h:953 msgid "WET" msgstr "" #: timezones.h:954 msgid "W-SU" msgstr "" #: timezones.h:955 msgid "Zulu" msgstr "" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/ku.po0000664000175000017500000014455214632072346023711 0ustar fabiofabio# Kurdish translations for PACKAGE package. # Copyright (C) 2004 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Automatically generated, 2004. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2002-04-12 17:04-0400\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ASCII\n" "Content-Transfer-Encoding: 8bit\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "" #: timezones.h:2 msgid "Africa/Accra" msgstr "" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "" #: timezones.h:4 msgid "Africa/Algiers" msgstr "" #: timezones.h:5 msgid "Africa/Asmara" msgstr "" #: timezones.h:6 msgid "Africa/Asmera" msgstr "" #: timezones.h:7 msgid "Africa/Bamako" msgstr "" #: timezones.h:8 msgid "Africa/Bangui" msgstr "" #: timezones.h:9 msgid "Africa/Banjul" msgstr "" #: timezones.h:10 msgid "Africa/Bissau" msgstr "" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "" #: timezones.h:14 msgid "Africa/Cairo" msgstr "" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "" #: timezones.h:20 msgid "Africa/Dakar" msgstr "" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "" #: timezones.h:23 msgid "Africa/Douala" msgstr "" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "" #: timezones.h:25 msgid "Africa/Freetown" msgstr "" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "" #: timezones.h:27 msgid "Africa/Harare" msgstr "" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "" #: timezones.h:29 msgid "Africa/Kampala" msgstr "" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "" #: timezones.h:31 msgid "Africa/Kigali" msgstr "" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "" #: timezones.h:36 msgid "Africa/Libreville" msgstr "" #: timezones.h:37 msgid "Africa/Lome" msgstr "" #: timezones.h:38 msgid "Africa/Luanda" msgstr "" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "" #: timezones.h:43 msgid "Africa/Malabo" msgstr "" #: timezones.h:44 msgid "Africa/Maputo" msgstr "" #: timezones.h:45 msgid "Africa/Maseru" msgstr "" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "" #: timezones.h:51 msgid "Africa/Niamey" msgstr "" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "" #: timezones.h:58 msgid "Africa/Tunis" msgstr "" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "" #: timezones.h:60 msgid "America/Adak" msgstr "" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "" #: timezones.h:63 msgid "America/Anchorage" msgstr "" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "" #: timezones.h:66 msgid "America/Anguilla" msgstr "" #: timezones.h:67 msgid "America/Antigua" msgstr "" #: timezones.h:68 msgid "America/Araguaina" msgstr "" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "" #: timezones.h:109 msgid "America/Asuncion" msgstr "" #: timezones.h:110 msgid "America/Atikokan" msgstr "" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "" #: timezones.h:114 msgid "America/Bahia" msgstr "" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "" #: timezones.h:121 msgid "America/Belem" msgstr "" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "" #: timezones.h:132 msgid "America/Boise" msgstr "" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "" #: timezones.h:146 msgid "America/Catamarca" msgstr "" #: timezones.h:147 msgid "America/Cayenne" msgstr "" #: timezones.h:148 msgid "America/Cayman" msgstr "" #: timezones.h:149 msgid "America/Chicago" msgstr "" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "" #: timezones.h:152 msgid "America/Chihuahua" msgstr "" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "" #: timezones.h:156 msgid "America/Cordoba" msgstr "" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "" #: timezones.h:158 msgid "America/Cuiaba" msgstr "" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "" #: timezones.h:174 msgid "America/Detroit" msgstr "" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "" #: timezones.h:178 msgid "America/Edmonton" msgstr "" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "" #: timezones.h:185 msgid "America/Ensenada" msgstr "" #: timezones.h:186 msgid "America/Fortaleza" msgstr "" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "" #: timezones.h:200 msgid "America/Grenada" msgstr "" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "" #: timezones.h:202 msgid "America/Guatemala" msgstr "" #: timezones.h:203 msgid "America/Guayaquil" msgstr "" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "" #: timezones.h:207 msgid "America/Halifax" msgstr "" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "" #: timezones.h:211 msgid "America/Hermosillo" msgstr "" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "" #: timezones.h:246 msgid "America/Jujuy" msgstr "" #: timezones.h:247 msgid "America/Juneau" msgstr "" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "" #: timezones.h:257 msgid "America/La_Paz" msgstr "" #: timezones.h:258 msgid "America/Lima" msgstr "" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "" #: timezones.h:262 msgid "America/Louisville" msgstr "" #: timezones.h:263 msgid "America/Maceio" msgstr "" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "" #: timezones.h:267 msgid "America/Manaus" msgstr "" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 msgid "America/Marigot" msgstr "" #: timezones.h:271 msgid "America/Martinique" msgstr "" #: timezones.h:272 msgid "America/Matamoros" msgstr "" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "" #: timezones.h:279 msgid "America/Menominee" msgstr "" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "" #: timezones.h:289 msgid "America/Moncton" msgstr "" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "" #: timezones.h:296 msgid "America/Montreal" msgstr "" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "" #: timezones.h:300 msgid "America/Nassau" msgstr "" #: timezones.h:301 msgid "America/New_York" msgstr "" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "" #: timezones.h:304 msgid "America/Nipigon" msgstr "" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 msgid "America/Ojinaga" msgstr "" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "" #: timezones.h:327 msgid "America/Phoenix" msgstr "" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "" #: timezones.h:337 msgid "America/Rainy_River" msgstr "" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 msgid "America/Resolute" msgstr "" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 msgid "America/Santarem" msgstr "" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "" #: timezones.h:376 msgid "America/St_Johns" msgstr "" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "" #: timezones.h:380 msgid "America/St_Lucia" msgstr "" #: timezones.h:381 msgid "America/St_Thomas" msgstr "" #: timezones.h:382 msgid "America/St_Vincent" msgstr "" #: timezones.h:383 msgid "America/Swift_Current" msgstr "" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "" #: timezones.h:387 msgid "America/Thule" msgstr "" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "" #: timezones.h:400 msgid "America/Vancouver" msgstr "" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "" #: timezones.h:404 msgid "America/Whitehorse" msgstr "" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "" #: timezones.h:450 msgid "Asia/Aden" msgstr "" #: timezones.h:451 msgid "Asia/Almaty" msgstr "" #: timezones.h:454 msgid "Asia/Amman" msgstr "" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "" #: timezones.h:468 msgid "Asia/Baku" msgstr "" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "" #: timezones.h:470 msgid "Asia/Beirut" msgstr "" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "" #: timezones.h:472 msgid "Asia/Brunei" msgstr "" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "" #: timezones.h:481 msgid "Asia/Colombo" msgstr "" #: timezones.h:482 msgid "Asia/Dacca" msgstr "" #: timezones.h:483 msgid "Asia/Damascus" msgstr "" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "" #: timezones.h:485 msgid "Asia/Dili" msgstr "" #: timezones.h:486 msgid "Asia/Dubai" msgstr "" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "" #: timezones.h:488 msgid "Asia/Gaza" msgstr "" #: timezones.h:489 msgid "Asia/Harbin" msgstr "" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "" #: timezones.h:494 msgid "Asia/Hovd" msgstr "" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "" #: timezones.h:508 msgid "Asia/Kabul" msgstr "" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "" #: timezones.h:529 msgid "Asia/Macao" msgstr "" #: timezones.h:530 msgid "Asia/Macau" msgstr "" #: timezones.h:531 msgid "Asia/Magadan" msgstr "" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "" #: timezones.h:538 msgid "Asia/Muscat" msgstr "" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "" #: timezones.h:546 msgid "Asia/Omsk" msgstr "" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "" #: timezones.h:557 msgid "Asia/Qatar" msgstr "" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "" #: timezones.h:566 msgid "Asia/Saigon" msgstr "" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "" #: timezones.h:578 msgid "Asia/Taipei" msgstr "" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "" #: timezones.h:583 msgid "Asia/Tehran" msgstr "" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "" #: timezones.h:625 msgid "Australia/ACT" msgstr "" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "" #: timezones.h:636 msgid "Australia/Currie" msgstr "" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 msgid "Australia/Eucla" msgstr "" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "" #: timezones.h:645 msgid "Australia/Hobart" msgstr "" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "" #: timezones.h:658 msgid "Australia/North" msgstr "" #: timezones.h:659 msgid "Australia/NSW" msgstr "" #: timezones.h:660 msgid "Australia/Perth" msgstr "" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "" #: timezones.h:664 msgid "Australia/South" msgstr "" #: timezones.h:665 msgid "Australia/Sydney" msgstr "" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "" #: timezones.h:669 msgid "Australia/Victoria" msgstr "" #: timezones.h:670 msgid "Australia/West" msgstr "" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "" #: timezones.h:672 msgid "Brazil/Acre" msgstr "" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "" #: timezones.h:674 msgid "Brazil/East" msgstr "" #: timezones.h:675 msgid "Brazil/West" msgstr "" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "" #: timezones.h:677 msgid "Canada/Central" msgstr "" #: timezones.h:678 msgid "Canada/Eastern" msgstr "" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "" #: timezones.h:680 msgid "Canada/Mountain" msgstr "" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "" #: timezones.h:682 msgid "Canada/Pacific" msgstr "" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "" #: timezones.h:684 msgid "Canada/Yukon" msgstr "" #: timezones.h:685 msgid "CET" msgstr "" #: timezones.h:686 msgid "Chile/Continental" msgstr "" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "" #: timezones.h:688 msgid "CST6CDT" msgstr "" #: timezones.h:689 msgid "Cuba" msgstr "" #: timezones.h:690 msgid "EET" msgstr "" #: timezones.h:691 msgid "Egypt" msgstr "" #: timezones.h:692 msgid "Eire" msgstr "" #: timezones.h:693 msgid "EST" msgstr "" #: timezones.h:694 msgid "EST5EDT" msgstr "" #: timezones.h:695 msgid "Etc/GMT" msgstr "" #: timezones.h:696 msgid "Etc/GMT0" msgstr "" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "" #: timezones.h:726 msgid "Etc/UCT" msgstr "" #: timezones.h:727 msgid "Etc/Universal" msgstr "" #: timezones.h:728 msgid "Etc/UTC" msgstr "" #: timezones.h:729 msgid "Etc/Zulu" msgstr "" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "" #: timezones.h:731 msgid "Europe/Andorra" msgstr "" #: timezones.h:732 msgid "Europe/Athens" msgstr "" #: timezones.h:733 msgid "Europe/Belfast" msgstr "" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "" #: timezones.h:735 msgid "Europe/Berlin" msgstr "" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "" #: timezones.h:737 msgid "Europe/Brussels" msgstr "" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "" #: timezones.h:739 msgid "Europe/Budapest" msgstr "" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "" #: timezones.h:742 msgid "Europe/Dublin" msgstr "" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "" #: timezones.h:748 msgid "Europe/Jersey" msgstr "" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "" #: timezones.h:759 msgid "Europe/London" msgstr "" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "" #: timezones.h:761 msgid "Europe/Madrid" msgstr "" #: timezones.h:764 msgid "Europe/Malta" msgstr "" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "" #: timezones.h:766 msgid "Europe/Minsk" msgstr "" #: timezones.h:767 msgid "Europe/Monaco" msgstr "" #: timezones.h:768 msgid "Europe/Moscow" msgstr "" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "" #: timezones.h:772 msgid "Europe/Oslo" msgstr "" #: timezones.h:773 msgid "Europe/Paris" msgstr "" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "" #: timezones.h:775 msgid "Europe/Prague" msgstr "" #: timezones.h:776 msgid "Europe/Riga" msgstr "" #: timezones.h:777 msgid "Europe/Rome" msgstr "" #: timezones.h:778 msgid "Europe/Samara" msgstr "" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "" #: timezones.h:787 msgid "Europe/Sofia" msgstr "" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "" #: timezones.h:790 msgid "Europe/Tirane" msgstr "" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "" #: timezones.h:796 msgid "Europe/Vatican" msgstr "" #: timezones.h:797 msgid "Europe/Vienna" msgstr "" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "" #: timezones.h:808 msgid "Factory" msgstr "" #: timezones.h:809 msgid "GB" msgstr "" #: timezones.h:810 msgid "GB-Eire" msgstr "" #: timezones.h:811 msgid "GMT" msgstr "" #: timezones.h:812 msgid "GMT0" msgstr "" #: timezones.h:813 msgid "GMT-0" msgstr "" #: timezones.h:814 msgid "GMT+0" msgstr "" #: timezones.h:815 msgid "Greenwich" msgstr "" #: timezones.h:816 msgid "Hongkong" msgstr "" #: timezones.h:817 msgid "HST" msgstr "" #: timezones.h:818 msgid "Iceland" msgstr "" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "" #: timezones.h:820 msgid "Indian/Chagos" msgstr "" #: timezones.h:821 msgid "Indian/Christmas" msgstr "" #: timezones.h:822 msgid "Indian/Cocos" msgstr "" #: timezones.h:823 msgid "Indian/Comoro" msgstr "" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "" #: timezones.h:825 msgid "Indian/Mahe" msgstr "" #: timezones.h:826 msgid "Indian/Maldives" msgstr "" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "" #: timezones.h:829 msgid "Indian/Reunion" msgstr "" #: timezones.h:830 msgid "Iran" msgstr "" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "" #: timezones.h:833 msgid "Jamaica" msgstr "" #: timezones.h:834 msgid "Japan" msgstr "" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "" #: timezones.h:836 msgid "Libya" msgstr "" #: timezones.h:837 msgid "MET" msgstr "" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "" #: timezones.h:840 msgid "Mexico/General" msgstr "" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "" #: timezones.h:844 msgid "MST" msgstr "" #: timezones.h:845 msgid "MST7MDT" msgstr "" #: timezones.h:846 msgid "Navajo" msgstr "" #: timezones.h:847 msgid "NZ" msgstr "" #: timezones.h:848 msgid "NZ-CHAT" msgstr "" #: timezones.h:849 msgid "Pacific/Apia" msgstr "" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 msgid "Pacific/Easter" msgstr "" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "" #: timezones.h:876 msgid "Pacific/Guam" msgstr "" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "" #: timezones.h:902 msgid "Pacific/Niue" msgstr "" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "" #: timezones.h:906 msgid "Pacific/Palau" msgstr "" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "" #: timezones.h:923 msgid "Pacific/Truk" msgstr "" #: timezones.h:924 msgid "Pacific/Wake" msgstr "" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "" #: timezones.h:928 msgid "Pacific/Yap" msgstr "" #: timezones.h:929 msgid "Poland" msgstr "" #: timezones.h:930 msgid "Portugal" msgstr "" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "" #: timezones.h:933 msgid "PST8PDT" msgstr "" #: timezones.h:934 msgid "ROC" msgstr "" #: timezones.h:935 msgid "ROK" msgstr "" #: timezones.h:936 msgid "Singapore" msgstr "" #: timezones.h:937 msgid "Turkey" msgstr "" #: timezones.h:938 msgid "UCT" msgstr "" #: timezones.h:939 msgid "Universal" msgstr "" #: timezones.h:940 msgid "US/Alaska" msgstr "" #: timezones.h:941 msgid "US/Aleutian" msgstr "" #: timezones.h:942 msgid "US/Arizona" msgstr "" #: timezones.h:943 msgid "US/Central" msgstr "" #: timezones.h:944 msgid "US/Eastern" msgstr "" #: timezones.h:945 msgid "US/East-Indiana" msgstr "" #: timezones.h:946 msgid "US/Hawaii" msgstr "" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "" #: timezones.h:948 msgid "US/Michigan" msgstr "" #: timezones.h:949 msgid "US/Mountain" msgstr "" #: timezones.h:950 msgid "US/Pacific" msgstr "" #: timezones.h:951 msgid "US/Samoa" msgstr "" #: timezones.h:952 msgid "UTC" msgstr "" #: timezones.h:953 msgid "WET" msgstr "" #: timezones.h:954 msgid "W-SU" msgstr "" #: timezones.h:955 msgid "Zulu" msgstr "" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/ast.po0000664000175000017500000020015114632072346024045 0ustar fabiofabio# translation of timezones.tip.ast.po to Asturian # translation of ast.po to # Copyright (C) 2004, 2006, 2008 Free Software Foundation, Inc. # # Astur , 2010. msgid "" msgstr "" "Project-Id-Version: timezones.tip.ast\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-10-13 17:28+0100\n" "Last-Translator: IƱigo Varela \n" "Language-Team: Asturian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: ast\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-Language: asturian\n" "X-Poedit-SourceCharset: utf-8\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Ɓfrica/AbiyĆ”n" #: timezones.h:2 msgid "Africa/Accra" msgstr "Ɓfrica/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Ɓfrica/Addis_Abeba" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Ɓfrica/Alxeria" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Ɓfrica/Asmera" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Ɓfrica/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Ɓfrica/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Ɓfrica/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Ɓfrica/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Ɓfrica/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Ɓfrica/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Ɓfrica/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Ɓfrica/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Ɓfrica/El_Cairu" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Ɓfrica/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Ɓfrica/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Ceuta & Melilla" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Ɓfrica/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Ɓfrica/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Ɓfrica/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Ɓfrica/Djibouti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Ɓfrica/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Ɓfrica/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Ɓfrica/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Ɓfrica/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Ɓfrica/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Ɓfrica/Johannesburgu" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Ɓfrica/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Ɓfrica/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Ɓfrica/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Ɓfrica/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "west Dem. Rep. of Congo" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Ɓfrica/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Ɓfrica/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Ɓfrica/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Ɓfrica/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Ɓfrica/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "east Dem. Rep. of Congo" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Ɓfrica/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Ɓfrica/Malabu" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Ɓfrica/Maputu" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Ɓfrica/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Ɓfrica/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Ɓfrica/Mogadixu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Ɓfrica/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Ɓfrica/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Ɓfrica/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Ɓfrica/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Ɓfrica/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Ɓfrica/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Ɓfrica/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Ɓfrica/Santo_TomĆ©" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Ɓfrica/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Ɓfrica/TrĆ­poli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Ɓfrica/TĆŗnez" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Ɓfrica/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "AmĆ©rica/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "Islles Aleutianesds" #: timezones.h:63 msgid "America/Anchorage" msgstr "AmĆ©rica/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "Alaska Time" #: timezones.h:66 msgid "America/Anguilla" msgstr "AmĆ©rica/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "AmĆ©rica/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "AmĆ©rica/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Tocantins" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "AmĆ©rica/Arxentina/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Buenos Aires (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "AmĆ©rica/Arxentina/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "Catamarca (CT), Chubut (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "AmĆ©rica/Arxentina/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "AmĆ©rica/Arxentina/Córdoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "AmĆ©rica/Arxentina/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Jujuy (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "AmĆ©rica/Arxentina/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "La Rioja (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "AmĆ©rica/Arxentina/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "Mendoza (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "AmĆ©rica/Arxentina/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Santa Cruz (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "AmĆ©rica/Arxentina/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "AmĆ©rica/Arxentina/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "San Juan (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "AmĆ©rica/Arxentina/San_Luis" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "San Luis (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "AmĆ©rica/Arxentina/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Tucuman (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "AmĆ©rica/Arxentina/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Tierra del Fuego (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "AmĆ©rica/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "AmĆ©rica/Asunción" #: timezones.h:110 msgid "America/Atikokan" msgstr "AmĆ©rica/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" #: timezones.h:113 msgid "America/Atka" msgstr "AmĆ©rica/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "AmĆ©rica/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "Bahia" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "AmĆ©rica/Bahia_Banderas" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "Mexican Central Time - Bahia de Banderas" #: timezones.h:120 msgid "America/Barbados" msgstr "AmĆ©rica/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "AmĆ©rica/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "Amapa, E Para" #: timezones.h:124 msgid "America/Belize" msgstr "AmĆ©rica/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "AmĆ©rica/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "Atlantic Standard Time - Quebec - Lower North Shore" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "AmĆ©rica/Boa Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "Roraima" #: timezones.h:131 msgid "America/Bogota" msgstr "AmĆ©rica/BogotĆ”" #: timezones.h:132 msgid "America/Boise" msgstr "AmĆ©rica/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "Mountain Time - south Idaho & east Oregon" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "AmĆ©rica/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "AmĆ©rica/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "Mountain Time - west Nunavut" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "AmĆ©rica/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "Mato Grosso do Sul" #: timezones.h:142 msgid "America/Cancun" msgstr "AmĆ©rica/CancĆŗn" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "Central Time - Quintana Roo" #: timezones.h:145 msgid "America/Caracas" msgstr "AmĆ©rica/Caraques" #: timezones.h:146 msgid "America/Catamarca" msgstr "AmĆ©rica/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "AmĆ©rica/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "AmĆ©rica/CaimĆ”n" #: timezones.h:149 msgid "America/Chicago" msgstr "AmĆ©rica/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "Central Time" #: timezones.h:152 msgid "America/Chihuahua" msgstr "AmĆ©rica/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "Mexican Mountain Time - Chihuahua away from US border" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "AmĆ©rica/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "AmĆ©rica/Córdoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "AmĆ©rica/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "AmĆ©rica/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "Mato Grosso" #: timezones.h:161 msgid "America/Curacao" msgstr "AmĆ©rica/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "AmĆ©rica//Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "east coast, north of Scoresbysund" #: timezones.h:165 msgid "America/Dawson" msgstr "AmĆ©rica/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "Pacific Time - north Yukon" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "AmĆ©rica/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" #: timezones.h:171 msgid "America/Denver" msgstr "AmĆ©rica/Denver" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "Mountain Time" #: timezones.h:174 msgid "America/Detroit" msgstr "AmĆ©rica/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "Eastern Time - Michigan - most locations" #: timezones.h:177 msgid "America/Dominica" msgstr "AmĆ©rica/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "AmĆ©rica/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "Mountain Time - Alberta, east British Columbia & west Saskatchewan" #: timezones.h:181 msgid "America/Eirunepe" msgstr "AmĆ©rica/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "W Amazones" #: timezones.h:184 msgid "America/El_Salvador" msgstr "AmĆ©rica/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "AmĆ©rica/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "AmĆ©rica/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "NE Brazil (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "AmĆ©rica/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "AmĆ©rica/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" #: timezones.h:193 msgid "America/Godthab" msgstr "AmĆ©rica/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 #: timezones.h:364 #: timezones.h:453 #: timezones.h:591 #: timezones.h:754 #: timezones.h:852 #: timezones.h:894 msgid "most locations" msgstr "most locations" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "AmĆ©rica/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "Atlantic Time - Labrador - most locations" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "AmĆ©rica/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "AmĆ©rica/Granada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "AmĆ©rica/Guadalupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "AmĆ©rica/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "AmĆ©rica/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 #: timezones.h:757 #: timezones.h:763 msgid "mainland" msgstr "mainland" #: timezones.h:206 msgid "America/Guyana" msgstr "AmĆ©rica/Guyana" #: timezones.h:207 msgid "America/Halifax" msgstr "AmĆ©rica/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "Atlantic Time - Nova Scotia (most places), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "AmĆ©rica/Habana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "AmĆ©rica/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "Mountain Standard Time - Sonora" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "AmĆ©rica/Indiana/IndianĆ”polis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "Eastern Time - Indiana - most locations" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "AmĆ©rica/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "Central Time - Indiana - Starke County" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "AmĆ©rica/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "Eastern Time - Indiana - Crawford County" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "AmĆ©rica/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "Eastern Time - Indiana - Pike County" #: timezones.h:226 msgid "America/Indianapolis" msgstr "AmĆ©rica/IndianĆ”polis" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "AmĆ©rica/Indiana/Tell_City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "Central Time - Indiana - Perry County" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "AmĆ©rica/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "Eastern Time - Indiana - Switzerland County" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "AmĆ©rica/Indiana/Vencennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "AmĆ©rica/Indiana/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "Eastern Time - Indiana - Pulaski County" #: timezones.h:239 msgid "America/Inuvik" msgstr "AmĆ©rica/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "Mountain Time - west Northwest Territories" #: timezones.h:242 msgid "America/Iqaluit" msgstr "AmĆ©rica/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "Eastern Time - east Nunavut - most locations" #: timezones.h:245 msgid "America/Jamaica" msgstr "AmĆ©rica/Xamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "AmĆ©rica/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "AmĆ©rica/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "Alaska Time - Alaska panhandle" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "AmĆ©rica//Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "Eastern Time - Kentucky - Louisville area" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "AmĆ©rica/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "Eastern Time - Kentucky - Wayne County" #: timezones.h:256 msgid "America/Knox_IN" msgstr "AmĆ©rica/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "AmĆ©rica/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "AmĆ©rica/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "AmĆ©rica/Los_Anxeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "Pacific Time" #: timezones.h:262 msgid "America/Louisville" msgstr "AmĆ©rica/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "AmĆ©rica/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "Alagoas, Sergipe" #: timezones.h:266 msgid "America/Managua" msgstr "AmĆ©rica/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "AmĆ©rica/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "E Amazones" #: timezones.h:270 msgid "America/Marigot" msgstr "AmĆ©rica/Marigot" #: timezones.h:271 msgid "America/Martinique" msgstr "AmĆ©rica/Martinica" #: timezones.h:272 msgid "America/Matamoros" msgstr "AmĆ©rica/Matamoros" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" #: timezones.h:275 msgid "America/Mazatlan" msgstr "AmĆ©rica/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "Mountain Time - S Baja, Nayarit, Sinaloa" #: timezones.h:278 msgid "America/Mendoza" msgstr "AmĆ©rica/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "AmĆ©rica/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" #: timezones.h:282 msgid "America/Merida" msgstr "AmĆ©rica/Mendoza" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "Central Time - Campeche, Yucatan" #: timezones.h:285 msgid "America/Mexico_City" msgstr "AmĆ©rica/CiudĆ”_de_MĆ©xicu" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "Central Time - most locations" #: timezones.h:288 msgid "America/Miquelon" msgstr "AmĆ©rica/Miquelon" #: timezones.h:289 msgid "America/Moncton" msgstr "AmĆ©rica/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "Atlantic Time - New Brunswick" #: timezones.h:292 msgid "America/Monterrey" msgstr "AmĆ©rica/MonterrĆ©i" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from US border" msgstr "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from US border" #: timezones.h:295 msgid "America/Montevideo" msgstr "AmĆ©rica/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "AmĆ©rica/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "Eastern Time - Quebec - most locations" #: timezones.h:299 msgid "America/Montserrat" msgstr "AmĆ©rica/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "AmĆ©rica/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "AmĆ©rica/Nueva_York" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "Eastern Time" #: timezones.h:304 msgid "America/Nipigon" msgstr "AmĆ©rica/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" #: timezones.h:307 msgid "America/Nome" msgstr "AmĆ©rica/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "Alaska Time - west Alaska" #: timezones.h:310 msgid "America/Noronha" msgstr "AmĆ©rica/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "Atlantic islands" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "AmĆ©rica/Dakota del Norte/Centru" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "Central Time - North Dakota - Oliver County" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "AmĆ©rica/Dakota del Norte/Nueva Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "Central Time - North Dakota - Morton County (except Mandan area)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "AmĆ©rica/Ojinaga" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "US Mountain Time - Chihuahua near US border" #: timezones.h:322 msgid "America/Panama" msgstr "AmĆ©rica/PanamĆ”" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "AmĆ©rica/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "Eastern Time - Pangnirtung, Nunavut" #: timezones.h:326 msgid "America/Paramaribo" msgstr "AmĆ©rica/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "AmĆ©rica/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "Mountain Standard Time - Arizona" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "AmĆ©rica/Puertu-PrĆ­ncipe" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "AmĆ©rica/Puertu_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "AmĆ©rica/Puertu_EspaƱa" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "AmĆ©rica/Puertu_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "Rondonia" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "AmĆ©rica/Puertu_Ricu" #: timezones.h:337 msgid "America/Rainy_River" msgstr "AmĆ©rica/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "Central Time - Rainy River & Fort Frances, Ontario" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "AmĆ©rica/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "Central Time - central Nunavut" #: timezones.h:343 msgid "America/Recife" msgstr "AmĆ©rica/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "Pernambuco" #: timezones.h:346 msgid "America/Regina" msgstr "AmĆ©rica/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "Central Standard Time - Saskatchewan - most locations" #: timezones.h:349 msgid "America/Resolute" msgstr "AmĆ©rica/Resolute" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "Eastern Standard Time - Resolute, Nunavut" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "AmĆ©rica/RĆ­o Blanco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "Acre" #: timezones.h:355 msgid "America/Rosario" msgstr "AmĆ©rica/Rosario" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "AmĆ©rica/Santa_Isabel" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "Mexican Pacific Time - Baja California away from US border" #: timezones.h:359 msgid "America/Santarem" msgstr "AmĆ©rica/Santarem" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "W Para" #: timezones.h:362 msgid "America/Santiago" msgstr "AmĆ©rica/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "AmĆ©rica/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "AmĆ©rica/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "AmĆ©rica/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Scoresbysund / Ittoqqortoormiit" #: timezones.h:372 msgid "America/Shiprock" msgstr "AmĆ©rica/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "Mountain Time - Navajo" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "AmĆ©rica/San_BartolomĆ©" #: timezones.h:376 msgid "America/St_Johns" msgstr "AmĆ©rica/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "Newfoundland Time, including SE Labrador" #: timezones.h:379 msgid "America/St_Kitts" msgstr "AmĆ©rica/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "AmĆ©rica/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "AmĆ©rica/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "AmĆ©rica/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "AmĆ©rica/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "Central Standard Time - Saskatchewan - midwest" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "AmĆ©rica/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "AmĆ©rica/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "Thule / Pituffik" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "AmĆ©rica/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "Eastern Time - Thunder Bay, Ontario" #: timezones.h:393 msgid "America/Tijuana" msgstr "AmĆ©rica/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "US Pacific Time - Baja California near US border" #: timezones.h:396 msgid "America/Toronto" msgstr "AmĆ©rica/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "Eastern Time - Ontario - most locations" #: timezones.h:399 msgid "America/Tortola" msgstr "AmĆ©rica/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "AmĆ©rica/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "Pacific Time - west British Columbia" #: timezones.h:403 msgid "America/Virgin" msgstr "AmĆ©rica/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "AmĆ©rica/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "Pacific Time - south Yukon" #: timezones.h:407 msgid "America/Winnipeg" msgstr "AmĆ©rica/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "Central Time - Manitoba & west Ontario" #: timezones.h:410 msgid "America/Yakutat" msgstr "AmĆ©rica/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "Alaska Time - Alaska panhandle neck" #: timezones.h:413 msgid "America/Yellowknife" msgstr "AmĆ©rica/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "Mountain Time - central Northwest Territories" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "AntĆ”rtida/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "Casey Station, Bailey Peninsula" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "AntĆ”rtida/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "Davis Station, Vestfold Hills" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "AntĆ”rtida/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Dumont-d'Urville Station, Terre Adelie" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "AntĆ”rtida/Macquarie" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "Macquarie Island Station, Macquarie Island" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "AntĆ”rtida/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "Mawson Station, Holme Bay" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "AntĆ”rtida/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "McMurdo Station, Ross Island" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "AntĆ”rtida/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "Palmer Station, Anvers Island" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "AntĆ”rctica/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "Rothera Station, Adelaide Island" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "AntĆ”rtida/Polo_sur" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "Amundsen-Scott Station, South Pole" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "AntĆ”rtida/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "Syowa Station, E Ongul I" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "AntĆ”rtida/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "Vostok Station, S Magnetic Pole" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Ɓrticu/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Asia/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Asia/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Asia/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Asia/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "Moscow+08 - Bering Sea" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Asia/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Asia/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "Aqtobe (Aktobe)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Asia/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Asia/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Asia/Bagdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Asia/Baįø„rĆ©in" #: timezones.h:468 msgid "Asia/Baku" msgstr "Asia/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Asia/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Asia/Beirut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Asia/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Asia/BrunĆ©i" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Asia/Calcuta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Asia/ChoibalsĆ”n" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "Dornod, Sukhbaatar" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Asia/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." #: timezones.h:480 msgid "Asia/Chungking" msgstr "Asia/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Asia/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Asia/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Asia/Damascu" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Asia/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Asia/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Asia/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Asia/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Asia/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Asia/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Heilongjiang (except Mohe), Jilin" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "Asia/Ho_Chi_Minh" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Asia/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Asia/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Asia/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "Moscow+05 - Lake Baikal" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Asia/Estambul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Asia/Yakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "Java & Sumatra" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Asia/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "Irian Jaya & the Moluccas" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Asia/XerusalĆ©n" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Asia/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Asia/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "Moscow+08 - Kamchatka" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Asia/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Asia/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "west Tibet & Xinjiang" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "Asia/KatmandĆŗ" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Asia/KatmandĆŗ" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "Asia/Calcuta" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Asia/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "Moscow+04 - Yenisei River" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Asia/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "peninsular Malaysia" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Asia/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "Sabah & Sarawak" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Asia/Kuwait" #: timezones.h:529 msgid "Asia/Macao" msgstr "Asia/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Asia/Macao" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Asia/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "Moscow+08 - Magadan" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Asia/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" #: timezones.h:537 msgid "Asia/Manila" msgstr "Asia/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Asia/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Asia/Nicosia" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "Asia/Novokuznetsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "Moscow+03 - Novokuznetsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Asia/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "Moscow+03 - Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Asia/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "Moscow+03 - west Siberia" #: timezones.h:549 msgid "Asia/Oral" msgstr "Asia/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "West Kazakhstan" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Asia/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Asia/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "west & central Borneo" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Asia/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Asia/Qatar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Asia/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "Qyzylorda (Kyzylorda, Kzyl-Orda)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Asia/RangĆŗn" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Asia/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Asia/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Asia/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Asia/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Asia/Saigón" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Asia/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "Moscow+07 - Sakhalin Island" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Asia/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "west Uzbekistan" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Asia/SeĆŗl" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Asia/XanghĆ”i" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "east China - Beijing, Guangdong, Shanghai, etc." #: timezones.h:577 msgid "Asia/Singapore" msgstr "Asia/Singapur" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Asia/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Asia/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "east Uzbekistan" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Asia/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Asia/Teįø„rĆ”n" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Asia/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Asia/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Asia/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Asia/Tokiu" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Asia/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Asia/Ulan_Bator" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Asia/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Asia/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "most of Tibet & Xinjiang" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Asia/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Asia/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "Moscow+07 - Amur River" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Asia/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "Moscow+06 - Lena River" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Asia/Yekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "Moscow+02 - Urales" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Asia/Yerevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "AtlĆ”nticu/Azores" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "Azores" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "AtlĆ”nticu/Bermudes" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "AtlĆ”nticu/Canaries" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "Canary Islands" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "AtlĆ”nticu/Cabu_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "AtlĆ”nticu/Feroe" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "AtlĆ”nticu/Feroe" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "AtlĆ”nticu/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "AtlĆ”nticu/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "Islles Madeira" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "AtlĆ”nticu/Reikiavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "AtlĆ”nticu/Xeorxa_del_Sur" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "AtlĆ”nticu/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "AtlĆ”nticu/St_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "Australia/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Australia/Adelaida" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "South Australia" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Australia/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "Queensland - most locations" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Australia/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "New South Wales - Yancowinna" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Australia/Camberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "Australia/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "Tasmania - King Island" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Australia/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "Northern Territory" #: timezones.h:642 msgid "Australia/Eucla" msgstr "Australia/Eucla" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "Western Australia - Eucla area" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Australia/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "Tasmania - most locations" #: timezones.h:648 msgid "Australia/LHI" msgstr "Australia/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Australia/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "Queensland - Holiday Islands" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Australia/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "Lord Howe Island" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Australia/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "Australia/Norte" #: timezones.h:659 msgid "Australia/NSW" msgstr "Australia/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "Australia/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "Western Australia - most locations" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Australia/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "Australia/Sur" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Australia/Sidney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "New South Wales - most locations" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Australia/Tasmania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Australia/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "Australia/Oeste" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Australia/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brasil/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brasil/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brasil/Este" #: timezones.h:675 msgid "Brazil/West" msgstr "Brasil/Oeste" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "CanadĆ”/AtlĆ”nticu" #: timezones.h:677 msgid "Canada/Central" msgstr "CanadĆ”/Central" #: timezones.h:678 msgid "Canada/Eastern" msgstr "CanadĆ”/Oriental" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "CanadĆ”/East-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "CanadĆ”/Mountain" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "CanadĆ”/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "CanadĆ”/PacĆ­ficu" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "CanadĆ”/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "CanadĆ”/Saskatchewan" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Chile/Continental" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chile/Islla_de_Pascua" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Cuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Exiptu" #: timezones.h:692 msgid "Eire" msgstr "Irlanda" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/ZulĆŗ" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Europa/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Europa/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Europa/Atenes" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Europa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Europa/BelgrĆ”u" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Europa/BerlĆ­n" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Europa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Europa/Bruxeles" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Europa/Bucarest" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Europa/Budapest" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Europa/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Europa/Copenague" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Europa/DublĆ­n" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Europa/Xibraltar" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Europa/Guernsey" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Europa/Helsinki" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Europa/Islla_de_Man" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Europa/Estambul" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Europa/XersĆ©i" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Europa/KaliningrĆ”u" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "Moscow-01 - Kaliningrad" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Europa/Kiev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Europa/Lisboa" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Europa/Liubliana" #: timezones.h:759 msgid "Europe/London" msgstr "Europa/Londres" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Europa/Luxemburgu" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Europa/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Europa/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Europa/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Europa/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Europa/Mónacu" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Europa/MoscĆŗ" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "Moscow+00 - west Russia" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Europa/Nicosia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Europa/Oslu" #: timezones.h:773 msgid "Europe/Paris" msgstr "Europa/ParĆ­s" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Europa/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Europa/Praga" #: timezones.h:776 msgid "Europe/Riga" msgstr "Europa/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Europa/Roma" #: timezones.h:778 msgid "Europe/Samara" msgstr "Europa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "Moscow - Samara, Udmurtia" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Europa/San_MarĆ­n" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Europa/Sarayevu" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Europa/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "central Crimea" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Europa/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Europa/SofĆ­a" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Europa/Estocolmu" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Europa/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Europa/Tirana" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Europa/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Europa/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "Ruthenia" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Europa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Europa/Vaticanu" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Europa/Viena" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Europa/Vilnius" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Europa/VolgogrĆ”u" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "Moscow+00 - Caspian Sea" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Europa/Varsovia" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Europa/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Europa/Zaporozheye" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Europa/ZĆŗrich" #: timezones.h:808 msgid "Factory" msgstr "Factory" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hong-Kong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Islandia" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "ƍndicu/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "ƍndicu/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "ƍndicu/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "ƍndicu/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "ƍndicu/Comores" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "ƍndicu/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "ƍndicu/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "ƍndicu/Maldives" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "ƍndicu/Mauricio" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "ƍndicu/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "ƍndicu/Reunión" #: timezones.h:830 msgid "Iran" msgstr "IrĆ”n" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "Israel" #: timezones.h:833 msgid "Jamaica" msgstr "Xamaica" #: timezones.h:834 msgid "Japan" msgstr "Xapón" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 #: timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libia" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "MĆ©xicu/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "MĆ©xicu/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "MĆ©xicu/Xeneral" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Oriente_Mediu/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Oriente_Mediu/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Oriente_Mediu/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "PacĆ­ficu/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "PacĆ­ficu/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "PacĆ­ficu/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "Chatham Islands" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "PacĆ­ficu/Chuuk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "Chuuk (Truk) and Yap" #: timezones.h:859 msgid "Pacific/Easter" msgstr "PacĆ­ficu/Islla de Pascua" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "Easter Island & Sala y Gomez" #: timezones.h:862 msgid "Pacific/Efate" msgstr "PacĆ­ficu/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "PacĆ­ficu/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "Phoenix Islands" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "PacĆ­ficu/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "PacĆ­ficu/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "PacĆ­ficu/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "PacĆ­ficu/GalĆ”pagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "Islles GalĆ”pagos" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "PacĆ­ficu/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "Islles Gambier" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "PacĆ­ficu/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "PacĆ­ficu/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "PacĆ­ficu/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "Hawaii" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "PacĆ­ficu/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "Johnston Atoll" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "PacĆ­ficu/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "Line Islands" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "PacĆ­ficu/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "Kosrae" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "PacĆ­ficu/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "PacĆ­ficu/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "PacĆ­ficu/Marqueses" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "Islles Marqueses" #: timezones.h:898 msgid "Pacific/Midway" msgstr "PacĆ­ficu/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "Islles Midway" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "PacĆ­ficu/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "PacĆ­ficu/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "PacĆ­ficu/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "PacĆ­ficu/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "PacĆ­ficu/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "PacĆ­ficu/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "PacĆ­ficu/Pitcairn" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "PacĆ­ficu/Pohnpei" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "Pohnpei (Ponape)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "PacĆ­ficu/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "PacĆ­ficu/Puerto_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "PacĆ­ficu/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "PacĆ­ficu/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "PacĆ­ficu/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "PacĆ­ficu/TahitĆ­" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "Islles Society" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "PacĆ­ficu/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "Islles Gilbert" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "PacĆ­ficu/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "PacĆ­ficu/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "PacĆ­ficu/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "Wake Island" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "PacĆ­ficu/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "PacĆ­ficu/Yap" #: timezones.h:929 msgid "Poland" msgstr "Polonia" #: timezones.h:930 msgid "Portugal" msgstr "Portugal" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapur" #: timezones.h:937 msgid "Turkey" msgstr "TurquĆ­a" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "EEXX/Alaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "EEXX/Aleutianas" #: timezones.h:942 msgid "US/Arizona" msgstr "EEXX/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "EEXX/Central" #: timezones.h:944 msgid "US/Eastern" msgstr "EEXX/Oriental" #: timezones.h:945 msgid "US/East-Indiana" msgstr "EEXX/Indiana-Este" #: timezones.h:946 msgid "US/Hawaii" msgstr "EEXX/Hawai" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "EEXX/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "EEXX/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "EEXX/Mountain" #: timezones.h:950 msgid "US/Pacific" msgstr "EEXX/PacĆ­ficu" #: timezones.h:951 msgid "US/Samoa" msgstr "EEXX/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "ZulĆŗ" #~ msgid "US/Pacific-New" #~ msgstr "EEXX/Nuevu PacĆ­ficu" #~ msgid "zone.tab" #~ msgstr "zone.tab" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/LINGUAS0000664000175000017500000000035114632072346023743 0ustar fabiofabio am ar as ast bg bn_IN bn bs ca cs cy da de el en_GB es et fa fi fr gl gu he hi hr hu id ilo is it ja ka kn ko ku lo lt lv mai mk ml mr ms nb nds nl nn or pa pl pt_BR pt ro ru si sk sl sq sr sr@latin sv ta te tr uk ur vi zh_CN zh_TW cinnamon-control-center-6.2.0/panels/datetime/po-timezones/zh_CN.po0000664000175000017500000020610214632072346024261 0ustar fabiofabio# translation of system-config-date.master-timezones.po to Wei Liu # Ben Wu , 2002,2003. # Chester Cheng , 2004, 2005, 2006, 2007. # Waika Liu , 2005. # Leah Liu , 2005. # Walter Cheuk , 2005. # Terry Chuang , 2008. # Terry Chuang , 2009. # pingman , 2009. # Leah Liu , 2010. # Huan Chen , 2010. # Copyright (C) 2002 Red Hat Inc. msgid "" msgstr "" "Project-Id-Version: system-config-date.master-timezones\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-12-07 15:19+1000\n" "Last-Translator: Leah Liu \n" "Language-Team: Wei Liu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: KBabel 1.11.4\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "éžę“²/é˜æęÆ”č®©" #: timezones.h:2 msgid "Africa/Accra" msgstr "éžę“²/é˜æå…‹ę‹‰" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "éžę“²/äŗšēš„ę–Æäŗšč“å·“" #: timezones.h:4 msgid "Africa/Algiers" msgstr "éžę“²/é˜æå°”åŠå°”" #: timezones.h:5 msgid "Africa/Asmara" msgstr "éžę“²/é˜æę–Æé©¬ę‹‰" #: timezones.h:6 msgid "Africa/Asmera" msgstr "éžę“²/é˜æę–Æé©¬ę‹‰" #: timezones.h:7 msgid "Africa/Bamako" msgstr "éžę“²/巓马科" #: timezones.h:8 msgid "Africa/Bangui" msgstr "éžę“²/ē­å‰" #: timezones.h:9 msgid "Africa/Banjul" msgstr "éžę“²/ē­ē " #: timezones.h:10 msgid "Africa/Bissau" msgstr "éžę“²/ęÆ”ē»" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "éžę“²/åøƒå…°å¤Ŗå°”" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "éžę“²/åøƒę‹‰ę‰Žē»“" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "éžę“²/åøƒē¼åøƒę‹‰" #: timezones.h:14 msgid "Africa/Cairo" msgstr "éžę“²/开罗" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "éžę“²/å”čØåøƒå…°å”" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "éžę“²/休达" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "ä¼‘č¾¾å’Œę¢…åˆ©åˆ©äŗš" #: timezones.h:19 msgid "Africa/Conakry" msgstr "éžę“²/ē§‘ēŗ³å…‹é‡Œ" #: timezones.h:20 msgid "Africa/Dakar" msgstr "éžę“²/达喀尔" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "éžę“²/达瓯斯萨拉姆" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "éžę“²/å‰åøƒę" #: timezones.h:23 msgid "Africa/Douala" msgstr "éžę“²/ęœé˜æę‹‰" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "éžę“²/阿尤恩" #: timezones.h:25 msgid "Africa/Freetown" msgstr "éžę“²/å¼—é‡Œę•¦" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "éžę“²/å“ˆåšē½—å†…" #: timezones.h:27 msgid "Africa/Harare" msgstr "éžę“²/å“ˆę‹‰é›·" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "éžę“²/约翰内斯堔" #: timezones.h:29 msgid "Africa/Kampala" msgstr "éžę“²/åŽåø•ę‹‰" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "éžę“²/å–€åœŸē©†" #: timezones.h:31 msgid "Africa/Kigali" msgstr "éžę“²/基加利" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "éžę“²/金沙萨" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "åˆšęžœę°‘äø»å…±å’Œå›½č„æéƒØ" #: timezones.h:35 msgid "Africa/Lagos" msgstr "éžę“²/拉各斯" #: timezones.h:36 msgid "Africa/Libreville" msgstr "éžę“²/åˆ©ä¼Æē»“å°”" #: timezones.h:37 msgid "Africa/Lome" msgstr "éžę“²/ę“›ē¾Ž" #: timezones.h:38 msgid "Africa/Luanda" msgstr "éžę“²/罗安达" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "éžę“²/å¢ęœ¬å·“åøŒ" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "åˆšęžœę°‘äø»å…±å’Œå›½äøœéƒØ" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "éžę“²/å¢čØå”" #: timezones.h:43 msgid "Africa/Malabo" msgstr "éžę“²/é©¬ę‹‰åš" #: timezones.h:44 msgid "Africa/Maputo" msgstr "éžę“²/é©¬ę™®ę‰˜" #: timezones.h:45 msgid "Africa/Maseru" msgstr "éžę“²/马唞卢" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "éžę“²/姆巓巓内" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "éžę“²/ę‘©åŠ čæŖę²™" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "éžę“²/č’™ē½—ē»“äŗš" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "éžę“²/内罗比" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "éžę“²/恩蓾梅纳" #: timezones.h:51 msgid "Africa/Niamey" msgstr "éžę“²/å°¼äŗšē¾Ž" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "éžę“²/åŠŖē“¦å…‹č‚–ē‰¹" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "éžę“²/ē“¦åŠ ęœå¤" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "éžę“²/ę³¢å¤ščÆŗä¼" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "éžę“²/åœ£å¤šē¾Ž" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "éžę“²/é€šåøƒå›¾" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "éžę“²/ēš„é»Žę³¢é‡Œ" #: timezones.h:58 msgid "Africa/Tunis" msgstr "éžę“²/突尼斯" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "éžę“²/ęø©å¾—å’Œå…‹" #: timezones.h:60 msgid "America/Adak" msgstr "ē¾Žę“²/é˜æč¾¾å…‹" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "é˜æē•™ē”³ē¾¤å²›" #: timezones.h:63 msgid "America/Anchorage" msgstr "ē¾Žę“²/安克雷儇" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "é˜æę‹‰ę–ÆåŠ ę—¶é—“" #: timezones.h:66 msgid "America/Anguilla" msgstr "ē¾Žę“²/å®‰åœ­ę‹‰" #: timezones.h:67 msgid "America/Antigua" msgstr "ē¾Žę“²/å®‰ęē“œ" #: timezones.h:68 msgid "America/Araguaina" msgstr "ē¾Žę“²/é˜æę‹‰ē“œä¼Šé‚£" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "ę‰˜åŽå»·ę–Æ" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "ē¾Žę“²/阿根廷/åøƒå®œčÆŗę–Æč‰¾åˆ©ę–Æ" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "åøƒå®œčÆŗę–Æč‰¾åˆ©ę–Æļ¼ˆBA,CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "ē¾Žę“²/阿根廷/協唔马協" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "å”å””é©¬å”ļ¼ˆCT),äø˜åøƒē‰¹ļ¼ˆCH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "ē¾Žę“²āˆ•é˜æę ¹å»·āˆ•ē§‘čŽ«å¤šē½—é‡Œē“¦č¾¾ē»“äŗš" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "ē¾Žę“²/阿根廷/ē§‘å°”å¤šē“¦" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "å¤§éƒØåˆ†åœ°åŒŗļ¼ˆCB,CC,CN,ER,FM,MN,SE,SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "ē¾Žę“²/阿根廷/胔ꃠ" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "胔惠(JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "ē¾Žę“²/阿根廷/ę‹‰é‡Œå„„å“ˆ" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "ę‹‰é‡Œå„„å“ˆļ¼ˆLR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "ē¾Žę“²/阿根廷/é—Øå¤ščØ" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "é—Øå¤ščØļ¼ˆMZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "ē¾Žę“²āˆ•é˜æę ¹å»·āˆ•é‡Œå„„åŠ č€¶ęˆˆę–Æ" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "åœ£å…‹é²ę–Æļ¼ˆSC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "ē¾Žę“²/阿根廷/萨尔唔" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA,LP,NQ,RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "ē¾Žę“²/阿根廷/åœ£čƒ”å®‰" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "åœ£čƒ”å®‰ļ¼ˆSJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "ē¾Žę“²/阿根廷/åœ£č·Æę˜“ę–Æ" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "åœ£č·Æę˜“ę–Æļ¼ˆSL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "ē¾Žę“²/阿根廷/图库曼" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "å›¾åŗ“ę›¼ļ¼ˆTM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "ē¾Žę“²/阿根廷/ä¹Œę–Æę€€äŗš" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "ē«åœ°å²›ļ¼ˆTF)" #: timezones.h:108 msgid "America/Aruba" msgstr "ē¾Žę“²/阿鲁巓" #: timezones.h:109 msgid "America/Asuncion" msgstr "ē¾Žę“²/é˜æå­™č„æēæ" #: timezones.h:110 msgid "America/Atikokan" msgstr "ē¾Žę“²āˆ•é˜æč’‚ē§‘č‚Æ" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "äøœéƒØę ‡å‡†ę—¶é—“ā€”ā€”é˜æč’‚ē§‘č‚Æļ¼Œå®‰å¤§ē•„å’Œå—å®‰ę™®ę•¦å²›ļ¼Œēŗ½ēŗ³ē“¦ē‰¹" #: timezones.h:113 msgid "America/Atka" msgstr "ē¾Žę“²/é˜æē‰¹å”" #: timezones.h:114 msgid "America/Bahia" msgstr "ē¾Žę“²/巓伊亚" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "巓伊亚" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "ē¾Žę“²/巓伊亚_ē­å¾·ę‹‰ę–Æ" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "å¢Øč„æå“„ę”ÆéƒØę—¶é—“ - å·“ä¼Šäŗšå¾·ē­å¾·ę‹‰ę–Æ " #: timezones.h:120 msgid "America/Barbados" msgstr "ē¾Žę“²/å·“å·“å¤šę–Æ" #: timezones.h:121 msgid "America/Belem" msgstr "ē¾Žę“²/č“ä¼¦" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "é˜æé©¬åø•ļ¼Œå·“ę‹‰äøœéƒØ" #: timezones.h:124 msgid "America/Belize" msgstr "ē¾Žę“²/伯利茲" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "ē¾Žę“²āˆ•åøƒęœ—čØåøƒéš†" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "å¤§č„æę“‹ę ‡å‡†ę—¶é—“ā€”ā€”é­åŒ—å…‹ā€”ā€”äø‹åŒ—å²ø" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "ē¾Žę“²/åšé˜æē»“ę–Æå””" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "罗赖马" #: timezones.h:131 msgid "America/Bogota" msgstr "ē¾Žę“²/波哄大" #: timezones.h:132 msgid "America/Boise" msgstr "ē¾Žę“²/åšä¼Šč„æ" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "å±±åœ°ę—¶é—“ā€”ā€”ēˆ±č¾¾č·å—éƒØå’Œäæ„å‹’å†ˆäøœéƒØ" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "ē¾Žę“²/åøƒå®œčÆŗę–Æč‰¾åˆ©ę–Æ" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "ē¾Žę“²/剑攄湾" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "å±±åœ°ę—¶é—“ā€”ā€”ēŗ½ēŗ³ē“¦ē‰¹č„æéƒØ" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "ē¾Žę“²/å¤§åŽę™®" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "é©¬ę‰˜ę ¼ē½—ē“¢å—éƒØ" #: timezones.h:142 msgid "America/Cancun" msgstr "ē¾Žę“²/åŽę˜†" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "äø­éƒØę—¶é—“ā€”ā€”é‡‘å””ēŗ³ē½—å„„" #: timezones.h:145 msgid "America/Caracas" msgstr "ē¾Žę“²/åŠ ę‹‰åŠ ę–Æ" #: timezones.h:146 msgid "America/Catamarca" msgstr "ē¾Žę“²/協唔马協" #: timezones.h:147 msgid "America/Cayenne" msgstr "ē¾Žę“²/協宓" #: timezones.h:148 msgid "America/Cayman" msgstr "ē¾Žę“²/开曼" #: timezones.h:149 msgid "America/Chicago" msgstr "ē¾Žę“²/čŠåŠ å“„" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "äø­éƒØę—¶é—“" #: timezones.h:152 msgid "America/Chihuahua" msgstr "ē¾Žę“²/儇瓦瓦" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "å¢Øč„æå“„å±±åœ°ę—¶é—“ā€”ā€”ē¾Žå›½č¾¹å¢ƒēš„å„‡ē“¦ē“¦" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "ē¾Žę“²/ē§‘å‹’å°”å“ˆä¼Æļ¼ˆēŠē‘šęøÆļ¼‰" #: timezones.h:156 msgid "America/Cordoba" msgstr "ē¾Žę“²/ē§‘å°”å¤šē“¦" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "ē¾Žę“²/å“„ę–Æč¾¾é»ŽåŠ " #: timezones.h:158 msgid "America/Cuiaba" msgstr "ē¾Žę“²/åŗ“äŗšå·“" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "é©¬ę‰˜ę ¼ē½—ē“¢" #: timezones.h:161 msgid "America/Curacao" msgstr "ē¾Žę“²/库拉瓢岛" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "ē¾Žę“²/丹麦沙文" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "äøœęµ·å²øļ¼Œę–Æē§‘ę–ÆęÆ”ę¾åŒ—éƒØ" #: timezones.h:165 msgid "America/Dawson" msgstr "ē¾Žę“²/道森" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "å¤Ŗå¹³ę“‹ę—¶é—“ā€”ā€”č‚²ē©ŗåŒ—éƒØ" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "ē¾Žę“²/é“ę£®å…‹é‡Œå…‹" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "å±±åœ°ę ‡å‡†ę—¶é—“ā€”ā€”é“ē”Ÿå…‹é‡Œå…‹å’Œåœ£ēŗ¦ēæ°å ”ļ¼Œäøåˆ—é¢ å“„ä¼¦ęÆ”äŗš" #: timezones.h:171 msgid "America/Denver" msgstr "ē¾Žę“²/丹佛" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "å±±åœ°ę—¶é—“" #: timezones.h:174 msgid "America/Detroit" msgstr "ē¾Žę“²/底特律" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "äøœéƒØę—¶é—“ā€”ā€”åÆ†ę­‡ę ¹ā€”ā€”å¤§éƒØåˆ†åœ°åŒŗ" #: timezones.h:177 msgid "America/Dominica" msgstr "ē¾Žę“²/多米尼加" #: timezones.h:178 msgid "America/Edmonton" msgstr "ē¾Žę“²/åŸƒå¾·č’™é”æ" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "å±±åœ°ę—¶é—“ā€”ā€”č‰¾ä¼Æå””ļ¼Œäøåˆ—é¢ å“„ä¼¦ęÆ”äŗšäøœéƒØå’ŒčØę–Æå–€å½»ęø©č„æéƒØ" #: timezones.h:181 msgid "America/Eirunepe" msgstr "ē¾Žę“²/埃鲁内佩" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "äŗšé©¬å­™č„æéƒØ" #: timezones.h:184 msgid "America/El_Salvador" msgstr "ē¾Žę“²/čØå°”ē“¦å¤š" #: timezones.h:185 msgid "America/Ensenada" msgstr "ē¾Žę“²/ę©å”žēŗ³č¾¾" #: timezones.h:186 msgid "America/Fortaleza" msgstr "ē¾Žę“²/ē¦å””čŽ±čØ" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "å·“č„æäøœåŒ—éƒØļ¼ˆMA,PI,CE,RN,PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "ē¾Žę“²/韦恩堔" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "ē¾Žę“²/ę ¼čŽ±ę–Æę¹¾" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "å¤§č„æę“‹ę—¶é—“ā€”ā€”ę–°ę–Æē§‘čˆā€”ā€”äøéµå®ˆDST1966——1971ēš„åœ°ę–¹" #: timezones.h:193 msgid "America/Godthab" msgstr "ē¾Žę“²/é«˜ē‰¹å“ˆ" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "å¤§éƒØåˆ†åœ°åŒŗ" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "ē¾Žę“²/å¤ę–Æę¹¾" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "å¤§č„æę“‹ę—¶é—“ā€”ā€”ę‹‰åøƒę‹‰å¤šā€”ā€”å¤§éƒØåˆ†åœ°åŒŗ" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "ē¾Žę“²/大特克" #: timezones.h:200 msgid "America/Grenada" msgstr "ē¾Žę“²/ę ¼ęž—ēŗ³č¾¾" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "ē¾Žę“²/ē“œå¾·å¢ę™®" #: timezones.h:202 msgid "America/Guatemala" msgstr "ē¾Žę“²/å±åœ°é©¬ę‹‰" #: timezones.h:203 msgid "America/Guayaquil" msgstr "ē¾Žę“²/ē“œäŗšåŸŗå°”" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "大陆" #: timezones.h:206 msgid "America/Guyana" msgstr "ē¾Žę“²/åœ­äŗšé‚£" #: timezones.h:207 msgid "America/Halifax" msgstr "ē¾Žę“²/å“ˆåˆ©ę³•å…‹ę–Æ" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "å¤§č„æę“‹ę—¶é—“ā€”ā€”ę–°ę–Æē§‘čˆļ¼ˆå¤§éƒØåˆ†åœ°åŒŗļ¼‰ļ¼Œēˆ±å¾·åŽēŽ‹å­å²›" #: timezones.h:210 msgid "America/Havana" msgstr "ē¾Žę“²/å“ˆē“¦é‚£" #: timezones.h:211 msgid "America/Hermosillo" msgstr "ē¾Žę“²/å“ˆęØ”ę–Æē½—" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "å±±åœ°ę ‡å‡†ę—¶é—“ā€”ā€”ē“¢čÆŗę‹‰" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "ē¾Žę“²/å°ē¬¬å®‰ēŗ³/å°ē¬¬å®‰ēŗ³ę³¢åˆ©ę–Æ" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "äøœéƒØę—¶é—“ā€”ā€”å°åœ°å®‰ēŗ³ā€”ā€”å¤§éƒØåˆ†åœ°åŒŗ" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "ē¾Žę“²/å°ē¬¬å®‰ēŗ³/诺克斯" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "äø­éƒØę—¶é—“ā€”ā€”å°åœ°å®‰ēŗ³ā€”ā€”ę–Æå””å…‹åŽæ" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "ē¾Žę“²/å°ē¬¬å®‰ēŗ³/马伦戈" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "äøœéƒØę—¶é—“ā€”ā€”å°åœ°å®‰é‚£ā€”ā€”å…‹åŠ³ē¦å¾·åŽæ" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "ē¾Žę“²āˆ•å°ē¬¬å®‰é‚£āˆ•å½¼å¾—ę–Æå ”" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "äøœéƒØę—¶é—“ā€”ā€”å°åœ°å®‰é‚£ā€”ā€”ę“¾å…‹åŽæ" #: timezones.h:226 msgid "America/Indianapolis" msgstr "ē¾Žę“²/å°ē¬¬å®‰ēŗ³ę³¢åˆ©ę–Æ" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "ē¾Žę“²āˆ•å°ē¬¬å®‰ēŗ³āˆ•ē‰¹å°”åŸŽ" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "äø­éƒØę—¶é—“ā€”ā€”å°åœ°å®‰ēŗ³ā€”ā€”ä½©é‡ŒåŽæ" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "ē¾Žę“²/å°ē¬¬å®‰é‚£/韦韦" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "äøœéƒØę—¶é—“ā€”ā€”å°åœ°å®‰ēŗ³ā€”ā€”ē‘žå£«åŽæ" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "ē¾Žę“²āˆ•å°ē¬¬å®‰ēŗ³āˆ•ęø©ę£®ę–Æ" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "äøœéƒØę—¶é—“ā€”ā€”å°åœ°å®‰ēŗ³ā€”ā€”ęˆ“ē»“ę–Æļ¼Œęœę³¢ä¾ę–Æļ¼ŒčÆŗå…‹ę–Æå’Œé©¬äøåŽæ" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "ē¾Žę“²āˆ•å°ē¬¬å®‰ēŗ³āˆ•åØēŗ³é©¬å…‹" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "äøœéƒØę—¶é—“ā€”ā€”å°åœ°å®‰ēŗ³ā€”ā€”ē€ę‹‰ę–Æå‡ÆåŽæ" #: timezones.h:239 msgid "America/Inuvik" msgstr "ē¾Žę“²/ä¼ŠåŠŖē»“å…‹" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "å±±åœ°ę—¶é—“ā€”ā€”č„æč„æåŒ—åŒŗ" #: timezones.h:242 msgid "America/Iqaluit" msgstr "ē¾Žę“²/ä¼Šå”å¢ä¼Šē‰¹" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "äøœéƒØę—¶é—“ā€”ā€”ēŗ½ēŗ³ē“¦ē‰¹äøœéƒØā€”ā€”å¤§éƒØåˆ†åœ°åŒŗ" #: timezones.h:245 msgid "America/Jamaica" msgstr "ē¾Žę“²/ē‰™ä¹°åŠ " #: timezones.h:246 msgid "America/Jujuy" msgstr "ē¾Žę“²/胔ꃠ" #: timezones.h:247 msgid "America/Juneau" msgstr "ē¾Žę“²/朱诺" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "é˜æę‹‰ę–ÆåŠ ę—¶é—“ā€”ā€”é˜æę‹‰ę–ÆåŠ ā€œé”…ęŸ„ā€(ē‹­é•æåœ°åø¦)" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "ē¾Žę“²/č‚Æå””åŸŗ/č·Æę˜“ę–Æē»“å°”" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "äøœéƒØę—¶é—“ā€”ā€”č‚Æå””åŸŗā€”ā€”č·Æę˜“ę–Æē»“å°”åœ°åŒŗ" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "ē¾Žę“²/č‚Æå””åŸŗ/č’™č’‚å”žę“›" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "äøœéƒØę—¶é—“ā€”ā€”č‚Æå””åŸŗā€”ā€”éŸ¦ę©åŽæ" #: timezones.h:256 msgid "America/Knox_IN" msgstr "ē¾Žę“²āˆ•čÆŗå…‹ę–Æļ¼ˆå°ē¬¬å®‰ēŗ³ļ¼‰" #: timezones.h:257 msgid "America/La_Paz" msgstr "ē¾Žę“²/拉巓斯" #: timezones.h:258 msgid "America/Lima" msgstr "ē¾Žę“²/利马" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "ē¾Žę“²/ę“›ę‰ēŸ¶" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "太平擋时闓" #: timezones.h:262 msgid "America/Louisville" msgstr "ē¾Žę“²/č·Æę˜“ę–Æē»“å°”" #: timezones.h:263 msgid "America/Maceio" msgstr "ē¾Žę“²/é©¬å”žēŗ¦" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "é˜æę‹‰ęˆˆę–Æļ¼Œå”žå°”åøŒåŸ¹" #: timezones.h:266 msgid "America/Managua" msgstr "ē¾Žę“²/é©¬é‚£ē“œ" #: timezones.h:267 msgid "America/Manaus" msgstr "ē¾Žę“²/马瑙斯" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "äŗšé©¬é€ŠäøœéƒØ" #: timezones.h:270 msgid "America/Marigot" msgstr "ē¾Žę“²āˆ•é©¬é‡Œęˆˆē‰¹" #: timezones.h:271 msgid "America/Martinique" msgstr "ē¾Žę“²/马蒂尼克" #: timezones.h:272 msgid "America/Matamoros" msgstr "ē¾Žę“²/é©¬å””čŽ«ē½—ę–Æ" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "ē¾Žå›½äø­éƒØę—¶é—“ā€”ā€”é čæ‘ē¾Žå›½č¾¹å¢ƒēš„ē§‘é˜æéŸ¦ę‹‰ļ¼Œęœå…°ęˆˆļ¼Œę–°čŽ±ę˜‚ļ¼Œå””ęÆ›åˆ©åø•ę–Æ" #: timezones.h:275 msgid "America/Mazatlan" msgstr "ē¾Žę“²/马萨特兰" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "å±±åœ°ę—¶é—“ā€”ā€”å·“å“ˆå—éƒØļ¼Œēŗ³äŗšé‡Œē‰¹ļ¼Œé””é‚£ē½—äŗš" #: timezones.h:278 msgid "America/Mendoza" msgstr "ē¾Žę“²/é—Øå¤ščØ" #: timezones.h:279 msgid "America/Menominee" msgstr "ē¾Žę“²/梅诺米尼" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "äø­éƒØę—¶é—“ā€”ā€”åÆ†ę­‡ę ¹ā€”ā€”čæŖé‡‘ę£®ļ¼Œęˆˆå‰ęÆ”å…‹ļ¼Œč‰¾ę©å’Œę¢…čÆŗē±³å°¼åŽæ" #: timezones.h:282 msgid "America/Merida" msgstr "ē¾Žę“²/ę¢…é‡Œč¾¾" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "äø­éƒØę—¶é—“ā€”ā€”åŗ·ä½©ä»€ļ¼Œå°¤å”å¦" #: timezones.h:285 msgid "America/Mexico_City" msgstr "ē¾Žę“²/å¢Øč„æå“„åŸŽ" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "äø­éƒØę—¶é—“ā€”ā€”å¤§éƒØåˆ†åœ°åŒŗ" #: timezones.h:288 msgid "America/Miquelon" msgstr "ē¾Žę“²/åÆ†å…‹éš†" #: timezones.h:289 msgid "America/Moncton" msgstr "ē¾Žę“²āˆ•č’™å…‹é”æ" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "å¤§č„æę“‹ę—¶é—“ā€”ā€”ę–°äøä¼¦ē‘žå…‹" #: timezones.h:292 msgid "America/Monterrey" msgstr "ē¾Žę“²/蒙特雷" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "å¢Øč„æå“„äø­éƒØę—¶é—“ā€”ā€”čæœē¦»ē¾Žå›½č¾¹å¢ƒēš„ē§‘é˜æéŸ¦ę‹‰ļ¼Œęœå…°ęˆˆļ¼Œę–°čŽ±ę˜‚ļ¼Œå””ęÆ›åˆ©åø•ę–Æ" #: timezones.h:295 msgid "America/Montevideo" msgstr "ē¾Žę“²/č’™ē‰¹ē»“ēš„äŗš" #: timezones.h:296 msgid "America/Montreal" msgstr "ē¾Žę“²/č’™ē‰¹åˆ©å°”" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "äøœéƒØę—¶é—“ā€”ā€”é­åŒ—å…‹ā€”ā€”å¤§éƒØåˆ†åœ°åŒŗ" #: timezones.h:299 msgid "America/Montserrat" msgstr "ē¾Žę“²/č’™å”žę‹‰ē‰¹" #: timezones.h:300 msgid "America/Nassau" msgstr "ē¾Žę“²/ę‹æéŖš" #: timezones.h:301 msgid "America/New_York" msgstr "ē¾Žę“²/纽约" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "äøœéƒØę—¶é—“" #: timezones.h:304 msgid "America/Nipigon" msgstr "ē¾Žę“²/尼皮蓔" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "äøœéƒØę—¶é—“ā€”ā€”å®‰å¤§ē•„å’Œé­åŒ—å…‹ā€”ā€”äøéµå®ˆDST1967——1973ēš„åœ°ę–¹" #: timezones.h:307 msgid "America/Nome" msgstr "ē¾Žę“²/诺姆" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "é˜æę‹‰ę–ÆåŠ ę—¶é—“ā€”ā€”é˜æę‹‰ę–ÆåŠ č„æéƒØ" #: timezones.h:310 msgid "America/Noronha" msgstr "ē¾Žę“²/čÆŗē½—å°¼äŗš" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "大脿擋群岛" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "ē¾Žę“²āˆ•åŒ—č¾¾ē§‘ä»–āˆ•äø­éƒØ" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "äø­éƒØę—¶é—“ā€”ā€”åŒ—č¾¾ē§‘ä»–ā€”ā€”å„„åˆ©å¼—åŽæ" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "ē¾Žę“²āˆ•åŒ—č¾¾ē§‘ä»–āˆ•ēŗ½ę²™ä¼¦" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "äø­éƒØę—¶é—“ā€”ā€”åŒ—č¾¾ē§‘ä»–ā€”ā€”čŽ«é”æåŽæļ¼ˆę›¼äø¹åœ°åŒŗé™¤å¤–ļ¼‰" #: timezones.h:319 msgid "America/Ojinaga" msgstr "ē¾Žę“²/億希纳加" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "ē¾Žå›½å±±åœ°ę—¶é—“ā€”ā€”é čæ‘ē¾Žå›½č¾¹å¢ƒēš„å„‡ē“¦ē“¦" #: timezones.h:322 msgid "America/Panama" msgstr "ē¾Žę“²/巓拿马" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "ē¾Žę“²/åŗžēŗ³å”" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "äøœéƒØę—¶é—“ā€”ā€”åŗžēŗ³å”ļ¼Œēŗ½ēŗ³ē“¦ē‰¹" #: timezones.h:326 msgid "America/Paramaribo" msgstr "ē¾Žę“²/åø•ę‹‰é©¬é‡Œåš" #: timezones.h:327 msgid "America/Phoenix" msgstr "ē¾Žę“²/凤凰城" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "å±±åœ°ę ‡å‡†ę—¶é—“ā€”ā€”äŗšåˆ©ę”‘é‚£" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "ē¾Žę“²/太子港" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "ē¾Žę“²āˆ•é˜æå…‹é‡ŒęøÆ" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "ē¾Žę“²/č„æē­ē‰™ęøÆ" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "ē¾Žę“²/韦柳港" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "ęœ—å¤šå°¼äŗš" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "ē¾Žę“²/ę³¢å¤šé»Žå„" #: timezones.h:337 msgid "America/Rainy_River" msgstr "ē¾Žę“²/雷尼里弗" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "äø­éƒØę—¶é—“ā€”ā€”é›·å°¼ę²³å’Œå¼—ęœ—č„æę–Æå ”ļ¼Œå®‰å¤§ē•„" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "ē¾Žę“²/å…°é‡‘å› čŽ±ē‰¹" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "äø­éƒØę—¶é—“ā€”ā€”ēŗ½ēŗ³ē“¦ē‰¹äø­éƒØ" #: timezones.h:343 msgid "America/Recife" msgstr "ē¾Žę“²/雷脿腓" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "ä¼Æå—åøƒå“„" #: timezones.h:346 msgid "America/Regina" msgstr "ē¾Žę“²/é‡Œč“¾é‚£" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "äø­éƒØę ‡å‡†ę—¶é—“ā€”ā€”čØę–Æå–€å½»ęø©ā€”ā€”å¤§éƒØåˆ†åœ°åŒŗ" #: timezones.h:349 msgid "America/Resolute" msgstr "ē¾Žę“²āˆ•é›·ē“¢å¢ē‰¹" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "äøœéƒØę ‡å‡†ę—¶é—“ā€”ā€”é›·ē“¢å¢ē‰¹ļ¼Œēŗ½ēŗ³ē“¦ē‰¹" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "ē¾Žę“²/é‡Œå„„åøƒęœ—åŗ“" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "é˜æå…‹é‡Œ" #: timezones.h:355 msgid "America/Rosario" msgstr "ē¾Žę“²/ē½—čØé‡Œå„„" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "ē¾Žå›½/åœ£ä¼ŠčŽŽč“å°”" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "å¢Øč„æå“„å¤Ŗå¹³ę“‹åœ°åŒŗę—¶é—“ā€”ā€”čæœē¦»ē¾Žå›½č¾¹å¢ƒēš„äø‹åŠ åˆ©ē¦å°¼äŗš" #: timezones.h:359 msgid "America/Santarem" msgstr "ē¾Žå›½/圣唔伦" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "å·“ę‹‰č„æéƒØ" #: timezones.h:362 msgid "America/Santiago" msgstr "ē¾Žę“²/åœ£åœ°äŗšå“„" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "ē¾Žę“²/åœ£å¤šę˜Žęˆˆ" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "ē¾Žę“²/åœ£äæē½—" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "å·“č„æå—éƒØå’Œäøœå—éƒØļ¼ˆGO,DF,MG,ES,RJ,SP,PR,SC,RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "ē¾Žę“²/ę–Æē§‘ę–ÆęÆ”ę¾" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "ę–Æē§‘ę–ÆęÆ”ę¾/ä¼Šę‰˜ē§‘å°”ę‰˜ē±³ē‰¹" #: timezones.h:372 msgid "America/Shiprock" msgstr "ē¾Žę“²/åøŒę™®ē½—å…‹" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "å±±åœ°ę—¶é—“ā€”ā€”ēŗ³ē“¦éœ" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "ē¾Žę“²āˆ•åœ£å·“ę³°å‹’ē±³" #: timezones.h:376 msgid "America/St_Johns" msgstr "ē¾Žę“²/åœ£ēŗ¦ēæ°ę–Æ" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "ēŗ½čŠ¬å…°ę—¶é—“ļ¼ŒåŒ…ę‹¬ę‹‰åøƒę‹‰å¤šäøœå—éƒØ" #: timezones.h:379 msgid "America/St_Kitts" msgstr "ē¾Žę“²/圣基茨" #: timezones.h:380 msgid "America/St_Lucia" msgstr "ē¾Žę“²/åœ£å¢č„æäŗš" #: timezones.h:381 msgid "America/St_Thomas" msgstr "ē¾Žę“²/åœ£ę‰˜é©¬ę–Æ" #: timezones.h:382 msgid "America/St_Vincent" msgstr "ē¾Žę“²/åœ£ę–‡ę£®ē‰¹" #: timezones.h:383 msgid "America/Swift_Current" msgstr "ē¾Žę“²/ę–ÆåØå¤«ē‰¹å”ä¼¦ē‰¹" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "äø­éƒØę ‡å‡†ę—¶é—“ā€”ā€”čØę–Æå–€å½»ęø©ā€”ā€”äø­č„æéƒØ" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "ē¾Žę“²/ē‰¹å¤č„æåŠ å°”å·“" #: timezones.h:387 msgid "America/Thule" msgstr "ē¾Žę“²/图勒" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "图勒/ēš®å›¾č²å…‹" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "ē¾Žę“²/攑德湾" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "äøœéƒØę—¶é—“ā€”ā€”ę”‘å¾·ę¹¾ļ¼Œå®‰å¤§ē•„" #: timezones.h:393 msgid "America/Tijuana" msgstr "ē¾Žę“²/ęåŽēŗ³" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "ē¾Žå›½å¤Ŗå¹³ę“‹åœ°åŒŗę—¶é—“ā€”ā€”é čæ‘ē¾Žå›½č¾¹å¢ƒēš„äø‹åŠ åˆ©ē¦å°¼äŗš" #: timezones.h:396 msgid "America/Toronto" msgstr "ē¾Žę“²/多伦多" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "äøœéƒØę—¶é—“ā€”ā€”å®‰å¤§ē•„ā€”ā€”å¤§éƒØåˆ†åœ°åŒŗ" #: timezones.h:399 msgid "America/Tortola" msgstr "ē¾Žę“²/ę‰˜å°”ę‰˜ę‹‰" #: timezones.h:400 msgid "America/Vancouver" msgstr "ē¾Žę“²/ęø©å“„åŽ" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "å¤Ŗå¹³ę“‹ę—¶é—“ā€”ā€”äøåˆ—é¢ å“„ä¼¦ęÆ”äŗšč„æéƒØ" #: timezones.h:403 msgid "America/Virgin" msgstr "ē¾Žę“²āˆ•ē»“å°”äŗ¬" #: timezones.h:404 msgid "America/Whitehorse" msgstr "ē¾Žę“²/ę€€ē‰¹éœę–Æ" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "å¤Ŗå¹³ę“‹ę—¶é—“ā€”ā€”č‚²ē©ŗå—éƒØ" #: timezones.h:407 msgid "America/Winnipeg" msgstr "ē¾Žę“²/温尼伯" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "äø­éƒØę—¶é—“ā€”ā€”é©¬å°¼ę‰˜å·“å’Œå®‰å¤§ē•„č„æéƒØ" #: timezones.h:410 msgid "America/Yakutat" msgstr "ē¾Žę“²/äŗšåŗ“å””ē‰¹" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "é˜æę‹‰ę–ÆåŠ ę—¶é—“ā€”ā€”é˜æę‹‰ę–ÆåŠ ā€œé”…ęŸ„ā€ļ¼ˆē‹­é•æåœ°åø¦ļ¼‰é¢ˆ" #: timezones.h:413 msgid "America/Yellowknife" msgstr "ē¾Žę“²/č€¶ę“›å„ˆå¤«" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "å±±åœ°ę—¶é—“ā€”ā€”č„æåŒ—åŒŗäø­éƒØ" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "å—ęžę“²/凯脿" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "å‡Æč„æē«™ļ¼Œč“åˆ©åŠå²›" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "å—ęžę“²/ęˆ“ē»“ę–Æ" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "ęˆ“ē»“ę–Æē«™ļ¼ŒéŸ¦ę–Æē‰¹ē¦å°”å¾·äø˜é™µ" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "å—ęžę“²/ęœč’™ē‰¹čæŖē»“å°”" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "ęœč’™ē‰¹čæŖē»“å°”ē«™ļ¼Œē‰¹é›·é˜æå¾·åˆ©" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "å—ęžę“²/éŗ¦å¤øé‡Œ" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "éŗ¦å¤øåˆ©å²›ē«™ļ¼Œéŗ¦å¤øåˆ©å²›" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "å—ęžę“²/čŽ«ę£®" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "čŽ«ę£®ē«™ļ¼Œéœå§†ę¹¾" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "å—ęžę“²/éŗ¦å…‹é»˜å¤š" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "éŗ¦å…‹é»˜å¤šē«™ļ¼Œē½—ę–Æå²›" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "å—ęžę“²/åø•é»˜" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "åø•é»˜ē«™ļ¼Œå®‰å¼—ę–Æå²›" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "å—ęžę“²āˆ•ē½—ē‘Ÿę‹‰" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "ē½—ē‘Ÿę‹‰ē«™ļ¼Œé˜æå¾·čŽ±å¾·å²›" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "å—ęžę“²/å—ęž" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "é˜æč’™å¾·ę£®ā€”ā€”ę–Æē§‘ē‰¹ē«™ļ¼Œå—ęž" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "å—ęžę“²/ę˜­å’Œ" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "ę˜­å’Œē«™ļ¼Œēæå¤å°”å²›äøœéƒØ" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "å—ęžę“²/äøœę–¹" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "äøœę–¹ē«™ļ¼Œå—ęžåÆ’ęž" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "åŒ—ęž/ęœ—ä¼Šå°”åŸŽ" #: timezones.h:450 msgid "Asia/Aden" msgstr "亚擲/亚丁" #: timezones.h:451 msgid "Asia/Almaty" msgstr "亚擲/é˜æę‹‰ęœØå›¾" #: timezones.h:454 msgid "Asia/Amman" msgstr "亚擲/安曼" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "亚擲/é˜æēŗ³å¾·å°”" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "čŽ«ę–Æē§‘+08——白令海" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "亚擲/é˜æå…‹å„—" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "é˜æē‰¹åŠ³ļ¼ˆé˜æē‰¹åŠ³ļ¼Œå¤é‡Œč€¶å¤«ļ¼‰ļ¼Œę›¼ę ¼ę–Æå„—ļ¼ˆę›¼å‰ę–Æé™¶ļ¼‰" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "亚擲/é˜æå…‹ę‰˜ęÆ”" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "é˜æå…‹ę‰˜ęÆ”ļ¼ˆé˜æå…‹ę‰˜åˆ«ļ¼‰" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "亚擲/é˜æä»€å“ˆå·“å¾·" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "äŗšę“²āˆ•é˜æä»€å“ˆå·“å¾·" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "亚擲/巓格达" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "亚擲/å·“ęž—" #: timezones.h:468 msgid "Asia/Baku" msgstr "亚擲/å·“åŗ“" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "亚擲/曼谷" #: timezones.h:470 msgid "Asia/Beirut" msgstr "亚擲/č“é²ē‰¹" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "亚擲/比什凯克" #: timezones.h:472 msgid "Asia/Brunei" msgstr "亚擲/ꖇ莱" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "亚擲/åŠ å°”å„ē­”" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "äŗšę“²āˆ•ä¹”å·“å±±" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "äøœę–¹ļ¼Œč‹čµ«å·“ę‰˜å°”" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "äŗšę“²āˆ•é‡åŗ†" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "äø­å›½äø­éƒØā€”ā€”å››å·ļ¼Œäŗ‘å—ļ¼Œå¹æč„æļ¼Œé™•č„æļ¼Œč“µå·žē­‰ć€‚" #: timezones.h:480 msgid "Asia/Chungking" msgstr "äŗšę“²āˆ•é‡åŗ†" #: timezones.h:481 msgid "Asia/Colombo" msgstr "亚擲/ē§‘ä¼¦å”" #: timezones.h:482 msgid "Asia/Dacca" msgstr "äŗšę“²āˆ•č¾¾å”" #: timezones.h:483 msgid "Asia/Damascus" msgstr "亚擲/大马士革" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "亚擲/č¾¾å”" #: timezones.h:485 msgid "Asia/Dili" msgstr "亚擲/åøåŠ›" #: timezones.h:486 msgid "Asia/Dubai" msgstr "亚擲/čæŖę‹œ" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "亚擲/ęœå°šåˆ„" #: timezones.h:488 msgid "Asia/Gaza" msgstr "亚擲/åŠ ę²™" #: timezones.h:489 msgid "Asia/Harbin" msgstr "亚擲/å“ˆå°”ę»Ø" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "é»‘é¾™ę±Ÿļ¼ˆę¼ ę²³é™¤å¤–ļ¼‰ļ¼Œå‰ęž—" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "äŗšę“²āˆ•čƒ”åæ—ę˜Ž" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "亚擲/香港" #: timezones.h:494 msgid "Asia/Hovd" msgstr "亚擲/ē§‘åøƒå¤š" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "å·“å½¦ā€”ā€”ä¹Œåˆ—ē›–ļ¼Œęˆˆå£é˜æå°”ę³°ļ¼Œē§‘åøƒå¤šļ¼Œä¹Œåøƒč‹ļ¼Œę‰Žåøƒę±—" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "亚擲/ä¼Šå°”åŗ“ę¬”å…‹" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "čŽ«ę–Æē§‘+05ā€”ā€”č“åŠ å°”ę¹–" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "亚擲/ä¼Šę–Æå¦åøƒå°”" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "亚擲/é›…åŠ č¾¾" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "ēˆŖå“‡å’Œč‹é—Øē­”č…Š" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "亚擲/ęŸ„äŗšę™®ę‹‰" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "ä¼Šé‡Œå®‰ęŸ„äŗšå’Œę‘©é¹æåŠ " #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "亚擲/耶路撒冷" #: timezones.h:508 msgid "Asia/Kabul" msgstr "亚擲/å–€åøƒå°”" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "亚擲/堪察加" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "čŽ«ę–Æē§‘+08ā€”ā€”å ŖåÆŸåŠ " #: timezones.h:512 msgid "Asia/Karachi" msgstr "亚擲/å”ę‹‰å„‡" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "亚擲/喀什" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "č„æč—å’Œę–°ē–†č„æéƒØ" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "亚擲/加德滔都" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "亚擲/加德滔都" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "亚擲/åŠ å°”å„ē­”" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "亚擲/å…‹ę‹‰ę–ÆčÆŗäŗšå°”ę–Æå…‹" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "čŽ«ę–Æē§‘+04ā€”ā€”å¶å°¼å”žę²³" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "亚擲/吉隆坔" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "é©¬ę„č„æäŗšåŠå²›" #: timezones.h:525 msgid "Asia/Kuching" msgstr "亚擲/å¤ę™‹" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "čØå·“čµ«å’ŒčØę‹‰ē“¦å…‹" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "亚擲/科威特" #: timezones.h:529 msgid "Asia/Macao" msgstr "亚擲/澳门" #: timezones.h:530 msgid "Asia/Macau" msgstr "亚擲/澳门" #: timezones.h:531 msgid "Asia/Magadan" msgstr "亚擲/马加丹" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "čŽ«ę–Æē§‘+08ā€”ā€”é©¬åŠ äø¹" #: timezones.h:534 msgid "Asia/Makassar" msgstr "äŗšę“²āˆ•ęœ›åŠ é””" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "å©†ē½—ę“²äøœéƒØå’Œå—éƒØļ¼Œč‹ę‹‰åØč„æļ¼Œå·“åŽ˜ļ¼ŒåŠŖę²™ē™»åŠ ę‹‰ļ¼Œåøę±¶č„æéƒØ" #: timezones.h:537 msgid "Asia/Manila" msgstr "亚擲/马尼拉" #: timezones.h:538 msgid "Asia/Muscat" msgstr "亚擲/马斯喀特" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "亚擲/å°¼ē§‘č„æäŗš" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "亚擲/ę–°åŗ“å…¹ę¶…čŒØå…‹" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "čŽ«ę–Æē§‘+03ā€”ā€”ę–°åŗ“å…¹ę¶…čŒØå…‹" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "亚擲/ę–°č„æä¼Æåˆ©äŗš" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "čŽ«ę–Æē§‘+03ā€”ā€”ę–°č„æä¼Æåˆ©äŗš" #: timezones.h:546 msgid "Asia/Omsk" msgstr "亚擲/é„‚ęœØę–Æå…‹" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "čŽ«ę–Æē§‘+03ā€”ā€”č„æä¼Æåˆ©äŗšč„æéƒØ" #: timezones.h:549 msgid "Asia/Oral" msgstr "äŗšę“²āˆ•å„„å‹’å°”" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "å“ˆčØå…‹ę–Æå¦č„æéƒØ" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "亚擲/金边" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "亚擲/å¤ē”ø" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "å©†ē½—ę“²č„æå’Œäø­éƒØ" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "亚擲/平壤" #: timezones.h:557 msgid "Asia/Qatar" msgstr "亚擲/協唔尔" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "äŗšę“²āˆ•å…‹å­œå‹’å„„å°”č¾¾" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "å…‹å­œå‹’å„„å°”č¾¾(å…‹å­œå‹’å„„å°”č¾¾ļ¼‰" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "亚擲/仰光" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "亚擲/利雅得" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "亚擲/利雅得87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "亚擲/利雅得88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "亚擲/利雅得89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "亚擲/脿蓔" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "äŗšę“²āˆ•čØå“ˆęž—" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "čŽ«ę–Æē§‘+07ā€”ā€”čØå“ˆęž—å²›" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "亚擲/撒马尔罕" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "ä¹Œå…¹åˆ«å…‹ę–Æå¦č„æéƒØ" #: timezones.h:573 msgid "Asia/Seoul" msgstr "亚擲/首尔" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "亚擲/上海" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "äø­å›½äøœéƒØā€”ā€”åŒ—äŗ¬ļ¼Œå¹æäøœļ¼ŒäøŠęµ·ē­‰ć€‚" #: timezones.h:577 msgid "Asia/Singapore" msgstr "亚擲/ę–°åŠ å”" #: timezones.h:578 msgid "Asia/Taipei" msgstr "亚擲/台北" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "亚擲/唔什干" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "ä¹Œå…¹åˆ«å…‹ę–Æå¦äøœéƒØ" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "亚擲/ē¬¬ęÆ”åˆ©ę–Æ" #: timezones.h:583 msgid "Asia/Tehran" msgstr "亚擲/德黑兰" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "äŗšę“²āˆ•ē‰¹ę‹‰ē»“å¤«" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "亚擲/廷布" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "亚擲/廷布" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "亚擲/东京" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "亚擲/ä¹ŒęˆŽę½˜å½“" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "亚擲/ä¹Œå…°å·“ę‰˜" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "亚擲/ä¹Œå…°å·“ę‰˜" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "亚擲/乌鲁木齐" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "ę–°ē–†å’Œč„æč—å¤§éƒØåˆ†åœ°åŒŗ" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "亚擲/万豔" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "亚擲/ęµ·å‚å““" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "čŽ«ę–Æē§‘+07ā€”ā€”é˜æē©†å°”ę²³" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "亚擲/é›…åŗ“čŒØå…‹" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "čŽ«ę–Æē§‘+06——勒拿河" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "亚擲/å¶å”ę°ē³å ”" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "čŽ«ę–Æē§‘+02ā€”ā€”ä¹Œę‹‰å°”å±±č„‰" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "亚擲/åŸƒé‡Œęø©" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "大脿擋/é˜æē“¢é›·ę–Æ" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "é˜æē“¢é›·ę–Æ" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "大脿擋/百慕达" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "大脿擋/加那利" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "åŠ é‚£åˆ©ē¾¤å²›" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "大脿擋/佛得角" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "大脿擋/法罗" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "大脿擋/法罗" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "大脿擋/扬马延" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "大脿擋/马德拉" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "马德拉群岛" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "大脿擋/é›·å…‹é›…ęœŖå…‹" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "大脿擋/å—ä¹”ę²»äŗš" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "大脿擋/ę–Æå¦åˆ©" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "大脿擋/圣海伦纳" #: timezones.h:625 msgid "Australia/ACT" msgstr "ę¾³ę“²āˆ•ę¾³å¤§åˆ©äŗšé¦–éƒ½åœ°åŒŗ" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ę¾³ę“²āˆ•é˜æå¾·čŽ±å¾·" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "å—ę¾³å¤§åˆ©äŗš" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "澳擲/åøƒé‡Œę–Æē­" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "ę˜†å£«å…°ā€”ā€”å¤§éƒØåˆ†åœ°åŒŗ" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ę¾³ę“²āˆ•åøƒē½—č‚ÆåøŒå°”" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "ę–°å—åØå°”å£«ā€”ā€”ę‰¬ē§‘ē»“ēŗ³" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ę¾³ę“²āˆ•å ŖåŸ¹ę‹‰" #: timezones.h:636 msgid "Australia/Currie" msgstr "ę¾³ę“²āˆ•ęŸÆé‡Œ" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "å””ę–Æé©¬å°¼äŗšā€”ā€”é‡‘å²›" #: timezones.h:639 msgid "Australia/Darwin" msgstr "澳擲/达尔文" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "åŒ—åŒŗ" #: timezones.h:642 msgid "Australia/Eucla" msgstr "澳擲/尤克拉" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "ę¾³å¤§åˆ©äŗšč„æéƒØā€”ā€”å°¤å…‹ę‹‰åœ°åŒŗ" #: timezones.h:645 msgid "Australia/Hobart" msgstr "澳擲/éœå·“ē‰¹" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "å””ę–Æé©¬å°¼äŗšā€”ā€”å¤§éƒØåˆ†åœ°åŒŗ" #: timezones.h:648 msgid "Australia/LHI" msgstr "ę¾³ę“²āˆ•č±Ŗå‹‹ēˆµå²›" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "澳擲/ęž—å¾·ę›¼" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "ę˜†å£«å…°ā€”ā€”å‡ę—„ē¾¤å²›" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "澳擲/č±Ŗå‹‹ēˆµ" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "č±Ŗå‹‹ēˆµå²›" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "澳擲/å¢Øå°”ęœ¬" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "结多利亚" #: timezones.h:658 msgid "Australia/North" msgstr "ę¾³ę“²āˆ•åŒ—éƒØ" #: timezones.h:659 msgid "Australia/NSW" msgstr "ę¾³ę“²āˆ•ę–°å—åØå°”å£«" #: timezones.h:660 msgid "Australia/Perth" msgstr "澳擲/ē€ę–Æ" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "ę¾³å¤§åˆ©äŗšč„æéƒØā€”ā€”å¤§éƒØåˆ†åœ°åŒŗ" #: timezones.h:663 msgid "Australia/Queensland" msgstr "澳擲/ę˜†å£«å…°" #: timezones.h:664 msgid "Australia/South" msgstr "ę¾³ę“²āˆ•å—éƒØ" #: timezones.h:665 msgid "Australia/Sydney" msgstr "澳擲/悉尼" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "ę–°å—åØå°”å£«ā€”ā€”å¤§éƒØåˆ†åœ°åŒŗ" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ę¾³ę“²āˆ•å””ę–Æé©¬å°¼äŗš" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ę¾³ę“²āˆ•ē»“å¤šåˆ©äŗš" #: timezones.h:670 msgid "Australia/West" msgstr "ę¾³ę“²āˆ•č„æéƒØ" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ę¾³ę“²āˆ•ę‰¬ē§‘ē»“ēŗ³" #: timezones.h:672 msgid "Brazil/Acre" msgstr "å·“č„æāˆ•é˜æå…‹é‡Œ" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "å·“č„æāˆ•čæŖčÆŗē½—å°¼äŗš" #: timezones.h:674 msgid "Brazil/East" msgstr "å·“č„æāˆ•äøœéƒØ" #: timezones.h:675 msgid "Brazil/West" msgstr "å·“č„æāˆ•č„æéƒØ" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "åŠ ę‹æå¤§āˆ•å¤§č„æę“‹ę²æå²ø" #: timezones.h:677 msgid "Canada/Central" msgstr "åŠ ę‹æå¤§āˆ•äø­éƒØ" #: timezones.h:678 msgid "Canada/Eastern" msgstr "åŠ ę‹æå¤§āˆ•äøœéƒØ" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "åŠ ę‹æå¤§āˆ•čØę–Æå–€å½»ęø©äøœéƒØ" #: timezones.h:680 msgid "Canada/Mountain" msgstr "åŠ ę‹æå¤§āˆ•å±±åœ°" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "åŠ ę‹æå¤§āˆ•ēŗ½čŠ¬å…°" #: timezones.h:682 msgid "Canada/Pacific" msgstr "åŠ ę‹æå¤§āˆ•å¤Ŗå¹³ę“‹ę²æå²ø" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "åŠ ę‹æå¤§āˆ•čØę–Æå–€å½»ęø©" #: timezones.h:684 msgid "Canada/Yukon" msgstr "åŠ ę‹æå¤§āˆ•č‚²ē©ŗ" #: timezones.h:685 msgid "CET" msgstr "CETļ¼ˆę¬§ę“²äø­éƒØę—¶é—“ļ¼‰" #: timezones.h:686 msgid "Chile/Continental" msgstr "ę™ŗåˆ©āˆ•å¤§é™†" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "ę™ŗåˆ©āˆ•å¤ę“»čŠ‚å²›" #: timezones.h:688 msgid "CST6CDT" msgstr "CSTļ¼ˆē¾Žå›½äø­éƒØę ‡å‡†ę—¶é—“ļ¼‰6CDTļ¼ˆē¾Žå›½äø­éƒØå¤ä»¤ę—¶é—“ļ¼‰" #: timezones.h:689 msgid "Cuba" msgstr "古巓" #: timezones.h:690 msgid "EET" msgstr "EETļ¼ˆę¬§ę“²äøœéƒØę—¶é—“ļ¼‰" #: timezones.h:691 msgid "Egypt" msgstr "埃及" #: timezones.h:692 msgid "Eire" msgstr "ēˆ±å°”å…°" #: timezones.h:693 msgid "EST" msgstr "ESTļ¼ˆē¾Žå›½äøœéƒØę ‡å‡†ę—¶é—“ļ¼‰" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDTļ¼ˆē¾Žå›½äøœéƒØå¤ä»¤ę—¶é—“ļ¼‰" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMTļ¼ˆę ¼ęž—å°¼ę²»ę ‡å‡†ę—¶é—“ļ¼‰" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/ę ¼ęž—å°¼ę²»ę—¶" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCTļ¼ˆåč°ƒäø–ē•Œę—¶ļ¼‰" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/äø–ē•Œę—¶" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/åč°ƒäø–ē•Œę—¶" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/焖鲁" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "欧擲/é˜æå§†ę–Æē‰¹äø¹" #: timezones.h:731 msgid "Europe/Andorra" msgstr "欧擲/安道尔" #: timezones.h:732 msgid "Europe/Athens" msgstr "欧擲/é›…å…ø" #: timezones.h:733 msgid "Europe/Belfast" msgstr "欧擲/č“å°”ę³•ę–Æē‰¹" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "欧擲/č“å°”ę ¼čŽ±å¾·" #: timezones.h:735 msgid "Europe/Berlin" msgstr "欧擲/꟏ꞗ" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "欧擲/åøƒę‹‰čæŖę–Æę‹‰å‘" #: timezones.h:737 msgid "Europe/Brussels" msgstr "欧擲/åøƒé²å”žå°”" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "欧擲/åøƒåŠ å‹’ę–Æē‰¹" #: timezones.h:739 msgid "Europe/Budapest" msgstr "欧擲/åøƒč¾¾ä½©ę–Æ" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "欧擲/基希讷乌" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "欧擲/å“„ęœ¬å“ˆę ¹" #: timezones.h:742 msgid "Europe/Dublin" msgstr "欧擲/éƒ½ęŸęž—" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "欧擲/ē›“åøƒē½—é™€" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "ę¬§ę“²āˆ•ę ¹č„æ" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "欧擲/čµ«å°”č¾›åŸŗ" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "ę¬§ę“²āˆ•é©¬ę©å²›" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "欧擲/ä¼Šę–Æå¦åøƒå°”" #: timezones.h:748 msgid "Europe/Jersey" msgstr "ę¬§ę“²āˆ•č€¶å°”čµ›" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "欧擲/åŠ é‡Œå®ę ¼å‹’" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "čŽ«ę–Æē§‘ā€”01ā€”ā€”åŠ é‡Œå®ę ¼å‹’" #: timezones.h:752 msgid "Europe/Kiev" msgstr "欧擲/åŸŗč¾…" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "欧擲/é‡Œę–Æęœ¬" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "欧擲/å¢åøƒå°”é›…é‚£" #: timezones.h:759 msgid "Europe/London" msgstr "欧擲/伦敦" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "欧擲/å¢ę£®å ”" #: timezones.h:761 msgid "Europe/Madrid" msgstr "欧擲/马德里" #: timezones.h:764 msgid "Europe/Malta" msgstr "欧擲/马尔他" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "ę¬§ę“²āˆ•ēŽ›äø½ęøÆ" #: timezones.h:766 msgid "Europe/Minsk" msgstr "欧擲/ę˜Žę€å…‹" #: timezones.h:767 msgid "Europe/Monaco" msgstr "欧擲/摩纳哄" #: timezones.h:768 msgid "Europe/Moscow" msgstr "欧擲/čŽ«ę–Æē§‘" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "čŽ«ę–Æē§‘+00ā€”ā€”äæ„ē½—ę–Æč„æéƒØ" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "欧擲/å°¼ē§‘č„æäŗš" #: timezones.h:772 msgid "Europe/Oslo" msgstr "欧擲/億斯陆" #: timezones.h:773 msgid "Europe/Paris" msgstr "欧擲/巓黎" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "欧擲/ę³¢å¾·ęˆˆé‡ŒåÆŸ" #: timezones.h:775 msgid "Europe/Prague" msgstr "欧擲/åøƒę‹‰ę ¼" #: timezones.h:776 msgid "Europe/Riga" msgstr "欧擲/é‡ŒåÆŸ" #: timezones.h:777 msgid "Europe/Rome" msgstr "欧擲/罗马" #: timezones.h:778 msgid "Europe/Samara" msgstr "欧擲/萨马拉" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "čŽ«ę–Æē§‘ā€”ā€”čØé©¬ę‹‰ļ¼Œä¹Œå¾·ē©†å°”ē‰¹å…±å’Œå›½" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "欧擲/åœ£é©¬åŠ›čÆŗ" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "欧擲/čØę‹‰ēƒ­ēŖ" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "欧擲/č¾›č²ē½—ę³¢å°”" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "å…‹é‡Œę¢…äø­éƒØ" #: timezones.h:786 msgid "Europe/Skopje" msgstr "欧擲/ę–Æē§‘ę™®é‡Œ" #: timezones.h:787 msgid "Europe/Sofia" msgstr "欧擲/ē“¢éžäŗš" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "欧擲/斯德哄尔摩" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "欧擲/å””ęž—" #: timezones.h:790 msgid "Europe/Tirane" msgstr "欧擲/åœ°ę‹‰é‚£" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "ę¬§ę“²āˆ•č’‚ę‹‰ę–Æę³¢å°”" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "欧擲/ä¹Œę—„ęˆˆē½—å¾·" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "ē½—å”žå°¼äŗš" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "欧擲/ē“¦ęœå…¹" #: timezones.h:796 msgid "Europe/Vatican" msgstr "欧擲/ę¢µč’‚å†ˆ" #: timezones.h:797 msgid "Europe/Vienna" msgstr "欧擲/结也纳" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "欧擲/结尔纽斯" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "ę¬§ę“²āˆ•ä¼å°”åŠ ę ¼å‹’" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "čŽ«ę–Æē§‘+00ā€”ā€”é‡Œęµ·" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "欧擲/åŽę²™" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "欧擲/čØę ¼å‹’åøƒ" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "欧擲/ę‰Žę³¢ē½—ēƒ­" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "ę‰Žę³¢ē½—ēƒ­ļ¼Œå¢ē”˜ę–Æå…‹äøœéƒØ/ę‰Žę³¢ē½—ēƒ­ļ¼Œå¢ē”˜ę–Æå…‹äøœéƒØ" #: timezones.h:807 msgid "Europe/Zurich" msgstr "欧擲/č‹é»Žäø–" #: timezones.h:808 msgid "Factory" msgstr "巄厂" #: timezones.h:809 msgid "GB" msgstr "英国" #: timezones.h:810 msgid "GB-Eire" msgstr "č‹±å›½ā€”ā€”ēˆ±å°”å…°" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "ę ¼ęž—å°¼ę²»" #: timezones.h:816 msgid "Hongkong" msgstr "香港" #: timezones.h:817 msgid "HST" msgstr "HSTļ¼ˆē¾Žå›½å¤åØå¤·ę ‡å‡†ę—¶é—“ļ¼‰" #: timezones.h:818 msgid "Iceland" msgstr "冰岛" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "å°åŗ¦ę“‹/安唔那那利佛" #: timezones.h:820 msgid "Indian/Chagos" msgstr "å°åŗ¦ę“‹/ęŸ„ęˆˆę–Æ" #: timezones.h:821 msgid "Indian/Christmas" msgstr "å°åŗ¦ę“‹/åœ£čÆž" #: timezones.h:822 msgid "Indian/Cocos" msgstr "å°åŗ¦ę“‹/åÆåÆę–Æ" #: timezones.h:823 msgid "Indian/Comoro" msgstr "å°åŗ¦ę“‹/ē§‘ę‘©ē½—" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "å°åŗ¦ę“‹/å‡Æå°”ę ¼ęœ—" #: timezones.h:825 msgid "Indian/Mahe" msgstr "å°åŗ¦ę“‹/马埃" #: timezones.h:826 msgid "Indian/Maldives" msgstr "å°åŗ¦ę“‹/马尔代夫" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "å°åŗ¦ę“‹/ęÆ›é‡Œę±‚ę–Æ" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "å°åŗ¦ę“‹/马约特" #: timezones.h:829 msgid "Indian/Reunion" msgstr "å°åŗ¦ę“‹/留尼旺" #: timezones.h:830 msgid "Iran" msgstr "ä¼Šęœ—" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "ä»„č‰²åˆ—" #: timezones.h:833 msgid "Jamaica" msgstr "ē‰™ä¹°åŠ " #: timezones.h:834 msgid "Japan" msgstr "ę—„ęœ¬" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "å¤øč“¾čŽ±å› " #: timezones.h:836 msgid "Libya" msgstr "åˆ©ęÆ”äŗš" #: timezones.h:837 msgid "MET" msgstr "METļ¼ˆę¬§ę“²äø­éƒØę—¶é—“ļ¼‰" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "å¢Øč„æå“„āˆ•äø‹åŒ—åŠ å·ž" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "å¢Øč„æå“„āˆ•äø‹å—åŠ å·ž" #: timezones.h:840 msgid "Mexico/General" msgstr "å¢Øč„æå“„āˆ•ę™®é€šåœ°åŒŗ" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "äø­äøœāˆ•åˆ©é›…å¾·87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "äø­äøœāˆ•åˆ©é›…å¾·88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "äø­äøœāˆ•åˆ©é›…å¾·89" #: timezones.h:844 msgid "MST" msgstr "MSTļ¼ˆå±±åœ°ę ‡å‡†ę—¶é—“ļ¼‰" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDTļ¼ˆå±±åœ°å¤ä»¤ę—¶é—“ļ¼‰" #: timezones.h:846 msgid "Navajo" msgstr "ēŗ³ē“¦éœ" #: timezones.h:847 msgid "NZ" msgstr "新脿兰" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "太平擋/阿皮亚" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "太平擋/å„„å…‹å…°" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "太平擋/ęŸ„å””å§†" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "ęŸ„å””å§†ē¾¤å²›" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "太平擋/ę„šå…‹" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "ę„šå…‹ļ¼ˆē‰¹é²å…‹ļ¼‰å’Œé›…ę™®" #: timezones.h:859 msgid "Pacific/Easter" msgstr "太平擋/å¤ę“»čŠ‚" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "å¤ę“»čŠ‚å²›å’ŒčØę‹‰ęˆˆéŗ¦ę–Æ" #: timezones.h:862 msgid "Pacific/Efate" msgstr "太平擋/åŸƒę³•ē‰¹" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "太平擋/ę©å¾·ä¼Æé‡Œ" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "č²å°¼å…‹ę–Æē¾¤å²›" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "太平擋/ę³•č€ƒē¦" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "太平擋/ꖐ굎" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "太平擋/åÆŒé‚£åÆŒę" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "太平擋/åŠ ę‹‰åø•ęˆˆę–Æ" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "åŠ ę‹‰åø•ęˆˆę–Æē¾¤å²›" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "太平擋/ē”˜ęÆ”å°”" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "ē”˜ęÆ”å°”ē¾¤å²›" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "太平擋/ē“œč¾¾å°”å”ēŗ³å°”" #: timezones.h:876 msgid "Pacific/Guam" msgstr "太平擋/关岛" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "太平擋/ē«å„“é²é²ļ¼ˆęŖ€é¦™å±±ļ¼‰" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "å¤åØå¤·å²›" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "太平擋/约翰斯锿" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "ēŗ¦ēæ°ę–Æé”æēŽÆē¤" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "太平擋/åŸŗé‡Œé©¬ę–Æå²›" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "čŽ±ę©ē¾¤å²›" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "太平擋/ē§‘ę–Æé›·" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "ē§‘ę–Æé›·å²›" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "太平擋/å¤øč“¾čŽ±å› " #: timezones.h:892 msgid "Pacific/Majuro" msgstr "太平擋/é©¬ęœ±ē½—å²›" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "太平擋/马克萨斯" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "马克萨斯群岛" #: timezones.h:898 msgid "Pacific/Midway" msgstr "太平擋/中途" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "中途群岛" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "太平擋/瑙鲁" #: timezones.h:902 msgid "Pacific/Niue" msgstr "太平擋/纽埃" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "太平擋/čÆŗē¦å…‹å²›" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "太平擋/åŠŖē¾Žé˜æ" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "太平擋/åø•ęžœåø•ęžœ" #: timezones.h:906 msgid "Pacific/Palau" msgstr "太平擋/åø•åŠ³" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "太平擋/ēš®ē‰¹å‡Æę©" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "太平擋/波纳佩" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "ę³¢ēŗ³ä½©ļ¼ˆę³¢ēŗ³ä½©å²›ļ¼‰" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "太平擋/波纳普" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "太平擋/čŽ«å°”å…¹ęÆ”ęøÆ" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "太平擋/ę‹‰ē½—ę±¤åŠ " #: timezones.h:914 msgid "Pacific/Saipan" msgstr "太平擋/å”žē­" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "å¤Ŗå¹³ę“‹āˆ•čØę‘©äŗš" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "太平擋/å””åøŒęå²›" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "ē¤¾ä¼šē¾¤å²›" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "太平擋/å””ę‹‰ē“¦ēŽÆē¤" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "吉尔伯特群岛" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "太平擋/ę±¤åŠ å””åøƒ" #: timezones.h:923 msgid "Pacific/Truk" msgstr "太平擋/特鲁克" #: timezones.h:924 msgid "Pacific/Wake" msgstr "太平擋/威克" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "威克岛" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "太平擋/ē“¦åˆ©ę–Æ" #: timezones.h:928 msgid "Pacific/Yap" msgstr "太平擋/雅굦" #: timezones.h:929 msgid "Poland" msgstr "波兰" #: timezones.h:930 msgid "Portugal" msgstr "葔萄牙" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "ę–°åŠ å”" #: timezones.h:937 msgid "Turkey" msgstr "åœŸč€³å…¶" #: timezones.h:938 msgid "UCT" msgstr "UCTļ¼ˆåč°ƒäø–ē•Œę—¶ļ¼‰" #: timezones.h:939 msgid "Universal" msgstr "å…Øēƒ" #: timezones.h:940 msgid "US/Alaska" msgstr "ē¾Žå›½/é˜æę‹‰ę–ÆåŠ " #: timezones.h:941 msgid "US/Aleutian" msgstr "ē¾Žå›½/é˜æē•™ē”³" #: timezones.h:942 msgid "US/Arizona" msgstr "ē¾Žå›½/äŗšåˆ©ę”‘ēŗ³" #: timezones.h:943 msgid "US/Central" msgstr "ē¾Žå›½/中部" #: timezones.h:944 msgid "US/Eastern" msgstr "ē¾Žå›½/东部" #: timezones.h:945 msgid "US/East-Indiana" msgstr "ē¾Žå›½/äøœå°ē¬¬å®‰é‚£" #: timezones.h:946 msgid "US/Hawaii" msgstr "ē¾Žå›½/å¤åØå¤·" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "ē¾Žå›½/å°ē¬¬å®‰é‚£ā€”ā€”ę–Æå””å…‹" #: timezones.h:948 msgid "US/Michigan" msgstr "ē¾Žå›½/密歇根" #: timezones.h:949 msgid "US/Mountain" msgstr "ē¾Žå›½/å±±åœ°ę—¶é—“" #: timezones.h:950 msgid "US/Pacific" msgstr "ē¾Žå›½/太平擋" #: timezones.h:951 msgid "US/Samoa" msgstr "ē¾Žå›½/čØę‘©äŗš" #: timezones.h:952 msgid "UTC" msgstr "UTCļ¼ˆåč°ƒäø–ē•Œę—¶ļ¼‰" #: timezones.h:953 msgid "WET" msgstr "WETļ¼ˆę¬§ę“²č„æéƒØę—¶é—“ļ¼‰" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "焖鲁" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/lt.po0000664000175000017500000017031514632072346023705 0ustar fabiofabio# translation of lt.po to Lithuanian # translation of timezones.po to Lithuanian # This file is distributed under the same license as the PACKAGE package. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. # Robertas DereÅ”kevičius , 2004. # msgid "" msgstr "" "Project-Id-Version: lt\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2004-05-20 11:29+0300\n" "Last-Translator: Robertas DereÅ”kevičius \n" "Language-Team: Lithuanian\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.3.1\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Afrika/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Afrika/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Afrika/Addis_Ababa" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Afrika/Algiers" #: timezones.h:5 #, fuzzy msgid "Africa/Asmara" msgstr "Afrika/Asmera" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Afrika/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Afrika/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Afrika/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Afrika/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Afrika/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Afrika/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Afrika/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Afrika/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Afrika/Kairas" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Afrika/Kasablanka" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Afrika/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Afrika/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Afrika/Dakaras" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Afrika/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Afrika/Djibouti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Afrika/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Afrika/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Afrika/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Afrika/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Afrika/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Afrika/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Afrika/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Afrika/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Afrika/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Afrika/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Afrika/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Afrika/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Afrika/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Afrika/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Afrika/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Afrika/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Afrika/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Afrika/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Afrika/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Afrika/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Afrika/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Afrika/Monrovija" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Afrika/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Afrika/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Afrika/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Afrika/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Afrika/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Afrika/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Afrika/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Afrika/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Afrika/Tripolis" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Afrika/Tunisas" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Afrika/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "Amerika/Adak" #. comment for time zone America/Adak #: timezones.h:62 #, fuzzy msgid "Aleutian Islands" msgstr "Australija/Queensland" #: timezones.h:63 msgid "America/Anchorage" msgstr "Amerika/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 #, fuzzy msgid "Alaska Time" msgstr "JAV/Alaska" #: timezones.h:66 msgid "America/Anguilla" msgstr "Amerika/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "Amerika/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "Amerika/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 #, fuzzy msgid "America/Argentina/Buenos_Aires" msgstr "Amerika/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 #, fuzzy msgid "America/Argentina/Catamarca" msgstr "Amerika/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 #, fuzzy msgid "America/Argentina/ComodRivadavia" msgstr "Amerika/Indiana/Indianapolis" #: timezones.h:78 #, fuzzy msgid "America/Argentina/Cordoba" msgstr "Amerika/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 #, fuzzy msgid "America/Argentina/Jujuy" msgstr "Amerika/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 #, fuzzy msgid "America/Argentina/La_Rioja" msgstr "Amerika/Araguaina" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 #, fuzzy msgid "America/Argentina/Mendoza" msgstr "Amerika/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 #, fuzzy msgid "America/Argentina/Rio_Gallegos" msgstr "Amerika/Indiana/Marengo" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 #, fuzzy msgid "America/Argentina/Salta" msgstr "Amerika/Antigua" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 #, fuzzy msgid "America/Argentina/San_Juan" msgstr "Amerika/Antigua" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 #, fuzzy msgid "America/Argentina/San_Luis" msgstr "Amerika/Antigua" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 #, fuzzy msgid "America/Argentina/Tucuman" msgstr "Amerika/Antigua" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 #, fuzzy msgid "America/Argentina/Ushuaia" msgstr "Amerika/Araguaina" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "Amerika/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "Amerika/Asuncion" #: timezones.h:110 #, fuzzy msgid "America/Atikokan" msgstr "Amerika/Atka" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "Amerika/Atka" #: timezones.h:114 #, fuzzy msgid "America/Bahia" msgstr "Amerika/Boa_Vista" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "Amerika/Boa_Vista" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "Amerika/Barbadosas" #: timezones.h:121 msgid "America/Belem" msgstr "Amerika/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "Amerika/Belize" #: timezones.h:125 #, fuzzy msgid "America/Blanc-Sablon" msgstr "Amerika/Cancun" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Amerika/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "Amerika/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "Amerika/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Amerika/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Amerika/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 #, fuzzy msgid "America/Campo_Grande" msgstr "Amerika/Cayman" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "Amerika/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "Amerika/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "Amerika/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "Amerika/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "Amerika/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "Amerika/Čikago" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "JAV/Central" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Amerika/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 #, fuzzy msgid "America/Coral_Harbour" msgstr "Amerika/Curacao" #: timezones.h:156 msgid "America/Cordoba" msgstr "Amerika/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Amerika/Kosta_Rika" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Amerika/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "Amerika/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Amerika/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "Amerika/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Amerika/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "Amerika/Denveris" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "JAV/Mountain" #: timezones.h:174 msgid "America/Detroit" msgstr "Amerika/Detroitas" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "Amerika/Dominika" #: timezones.h:178 msgid "America/Edmonton" msgstr "Amerika/Edmontonas" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "Amerika/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Amerika/El_Salvadoras" #: timezones.h:185 msgid "America/Ensenada" msgstr "Amerika/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Amerika/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Amerika/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Amerika/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "Amerika/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Amerika/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Amerika/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "Amerika/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Amerika/Guadeloupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "Amerika/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Amerika/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "Amerika/Guyana" #: timezones.h:207 msgid "America/Halifax" msgstr "Amerika/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "Amerika/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Amerika/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Amerika/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Amerika/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Amerika/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 #, fuzzy msgid "America/Indiana/Petersburg" msgstr "Amerika/Indiana/Marengo" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Amerika/Indianapolis" #: timezones.h:227 #, fuzzy msgid "America/Indiana/Tell_City" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 #, fuzzy msgid "America/Indiana/Vincennes" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 #, fuzzy msgid "America/Indiana/Winamac" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "Amerika/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Amerika/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "Amerika/Jamaika" #: timezones.h:246 msgid "America/Jujuy" msgstr "Amerika/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "Amerika/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Amerika/Kentukis/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 #, fuzzy msgid "Eastern Time - Kentucky - Louisville area" msgstr "Amerika/Kentukis/Louisville" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Amerika/Kentukis/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Amerika/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "Amerika/La_Pazas" #: timezones.h:258 msgid "America/Lima" msgstr "Amerika/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Amerika/Los_Andželas" #. comment for time zone America/Los_Angeles #: timezones.h:261 #, fuzzy msgid "Pacific Time" msgstr "Pacific/Niue" #: timezones.h:262 msgid "America/Louisville" msgstr "Amerika/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "Amerika/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "Amerika/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "Amerika/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 #, fuzzy msgid "America/Marigot" msgstr "Amerika/Maceio" #: timezones.h:271 msgid "America/Martinique" msgstr "Amerika/Martinique" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "Amerika/Manaus" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Amerika/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "Amerika/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "Amerika/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "Amerika/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Amerika/Mexico_City" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "Amerika/Miquelon" #: timezones.h:289 #, fuzzy msgid "America/Moncton" msgstr "Amerika/Edmontonas" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "Amerika/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "Amerika/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "Amerika/Montrealis" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "Amerika/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "Amerika/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "Amerika/Niu_Jorkas" #. comment for time zone America/New_York #: timezones.h:303 #, fuzzy msgid "Eastern Time" msgstr "JAV/Eastern" #: timezones.h:304 msgid "America/Nipigon" msgstr "Amerika/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "Amerika/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "Amerika/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 #, fuzzy msgid "Atlantic islands" msgstr "Atlantika/Kanarai" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Amerika/Å iaurės_Dakota/Center" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 #, fuzzy msgid "America/North_Dakota/New_Salem" msgstr "Amerika/Å iaurės_Dakota/Center" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "Amerika/Managua" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "Amerika/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Amerika/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Amerika/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "Amerika/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Amerika/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Amerika/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Amerika/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Amerika/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Amerika/Puerto_Riko" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Amerika/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Amerika/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "Amerika/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "Amerika/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 #, fuzzy msgid "America/Resolute" msgstr "Amerika/Belem" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Amerika/Rio_Branko" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "Amerika/Rosario" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "Amerika/Santiago" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 #, fuzzy msgid "America/Santarem" msgstr "Amerika/Santiago" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "Amerika/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Amerika/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Amerika/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Amerika/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "Amerika/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 #, fuzzy msgid "America/St_Barthelemy" msgstr "Amerika/Belem" #: timezones.h:376 msgid "America/St_Johns" msgstr "Amerika/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Amerika/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Amerika/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Amerika/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Amerika/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Amerika/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Amerika/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "Amerika/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Amerika/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "Amerika/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 #, fuzzy msgid "America/Toronto" msgstr "Amerika/Tortola" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "Amerika/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "Amerika/Vankuveris" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "Amerika/Virdžinija" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Amerika/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Amerika/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "Amerika/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Amerika/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Antarktika/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Antarktika/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Antarktika/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "Antarktika/McMurdo" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Antarktika/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Antarktika/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Antarktika/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 #, fuzzy msgid "Antarctica/Rothera" msgstr "Antarktika/South_Pole" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antarktika/South_Pole" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Antarktika/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Antarktika/Vostokas" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Arktika/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Azija/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Azija/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Azija/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Azija/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Azija/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Azija/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Azija/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Azija/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Azija/Bagdadas" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Azija/Bahrain" #: timezones.h:468 msgid "Asia/Baku" msgstr "Azija/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Azija/Bankokas" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Azija/Beirutas" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Azija/BiÅ”kekas" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Azija/Brunėjus" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Azija/Kalkuta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Azija/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Azija/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "Azija/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Azija/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Azija/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Azija/Damaskas" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Azija/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Azija/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Azija/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Azija/DuÅ”anbė" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Azija/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Azija/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 #, fuzzy msgid "Asia/Ho_Chi_Minh" msgstr "Azija/Chongqing" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Azija/Hong_Kongas" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Azija/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Azija/Irkutskas" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Azija/Stambulas" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Azija/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Azija/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Azija/Jeruzalė" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Azija/Kabulas" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Azija/Kamčatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Azija/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Azija/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 #, fuzzy msgid "Asia/Kathmandu" msgstr "Azija/Katmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Azija/Katmandu" #: timezones.h:518 #, fuzzy msgid "Asia/Kolkata" msgstr "Azija/Jakarta" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Azija/Krasnojarskas" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Azija/Kuala_Lumpuras" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Azija/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Azija/Kuveitas" #: timezones.h:529 msgid "Asia/Macao" msgstr "Azija/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Azija/Macau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Azija/Magadanas" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Azija/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "Azija/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Azija/Muskatas" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Azija/Nikozija" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "Azija/Irkutskas" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "Azija/Novosibirskas" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Azija/Novosibirskas" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 #, fuzzy msgid "Moscow+03 - Novosibirsk" msgstr "Azija/Novosibirskas" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Azija/Omskas" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "Azija/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Azija/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Azika/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Azija/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Azija/Kataras" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Azija/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Azija/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Azija/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Azija/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Azija/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Azija/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Azija/Saigonas" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Azija/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Azija/Samarkandas" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Azija/Seulas" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Azija/Å anhajus" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "Azija/SingapÅ«ras" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Azija/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Azia/TaÅ”kentas" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Azija/Tbilisis" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Azija/Tehran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Azija/Tel_Avivas" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Azija/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Azija/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Azija/Tokijus" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Azija/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Azija/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Azija/Ulan_Batoras" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Azija/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Azija/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Azija/Vladivostokas" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Azija/Jakutskas" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Azija/Jekaterinburgas" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Azija/Jerevanas" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlantika/Azores" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlantika/Bermudai" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlantika/Kanarai" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlantika/Cape_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlantika/Faeroe" #: timezones.h:616 #, fuzzy msgid "Atlantic/Faroe" msgstr "Atlantika/Faeroe" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlantika/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlantika/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlantika/Reikjavikas" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlantika/South_Georgia" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlantika/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlantika/St_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "Australija/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Australija/Adelaidė" #. comment for time zone Australia/Adelaide #: timezones.h:628 #, fuzzy msgid "South Australia" msgstr "Australija/ACT" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Australija/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Australija/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Australija/Kanbera" #: timezones.h:636 #, fuzzy msgid "Australia/Currie" msgstr "Australija/Kanbera" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Australija/Darvinas" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 #, fuzzy msgid "Australia/Eucla" msgstr "Australija/Queensland" #. comment for time zone Australia/Eucla #: timezones.h:644 #, fuzzy msgid "Western Australia - Eucla area" msgstr "Australija/Queensland" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Australija/Hobartas" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "Australija/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Australija/Lindemanas" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Australija/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Australija/Melburnas" #. comment for time zone Australia/Melbourne #: timezones.h:657 #, fuzzy msgid "Victoria" msgstr "Australija/Viktorija" #: timezones.h:658 msgid "Australia/North" msgstr "Australija/Å iaurė" #: timezones.h:659 msgid "Australia/NSW" msgstr "Australija/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "Australija/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Australija/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "Australija/PietÅ«s" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Australija/Sidnėjus" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Australija/Tasmanija" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Australija/Viktorija" #: timezones.h:670 msgid "Australia/West" msgstr "Australija/Vakarai" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Australija/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brazilija/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brazilija/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brazilija/Rytai" #: timezones.h:675 msgid "Brazil/West" msgstr "Brazilija/Vakarai" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Kanada/Atlantika" #: timezones.h:677 msgid "Canada/Central" msgstr "Kanada/Centrinė" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Kanada/Rytinė" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Kanada/East-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Kanada/Mountain" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Kanada/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Kanada/Pacific" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Kanada/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Kanada/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Čilė/Continental" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Čilė/EasterIsland" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Kuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Egiptas" #: timezones.h:692 msgid "Eire" msgstr "Eire" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Grinvičio" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universalus" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Europa/Amsterdamas" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Europa/Andora" #: timezones.h:732 msgid "Europe/Athens" msgstr "Europa/Atėnai" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Europa/Belfastas" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Europa/Belgradas" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Europa/Berlinas" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Europa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Europa/Briuselis" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Europa/BuchareÅ”tas" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Europa/BudapeÅ”tas" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Europa/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Europa/Kopenhaga" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Europa/Dublinas" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Europa/Gibraltaras" #: timezones.h:744 #, fuzzy msgid "Europe/Guernsey" msgstr "Europa/Atėnai" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Europa/Helsinkis" #: timezones.h:746 #, fuzzy msgid "Europe/Isle_of_Man" msgstr "Europa/Oslas" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Europa/Stambulas" #: timezones.h:748 #, fuzzy msgid "Europe/Jersey" msgstr "Europa/Paryžius" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Europa/Kaliningradas" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Europa/Kijevas" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Europa/Lisabona" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Europa/Liublijana" #: timezones.h:759 msgid "Europe/London" msgstr "Europa/Londonas" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Europa/Luksemburgas" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Europa/Madridas" #: timezones.h:764 msgid "Europe/Malta" msgstr "Europa/Malta" #: timezones.h:765 #, fuzzy msgid "Europe/Mariehamn" msgstr "Europa/Madridas" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Europa/Minskas" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Europa/Monako" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Europa/Maskva" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Europa/Nikozija" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Europa/Oslas" #: timezones.h:773 msgid "Europe/Paris" msgstr "Europa/Paryžius" #: timezones.h:774 #, fuzzy msgid "Europe/Podgorica" msgstr "Europa/Andora" #: timezones.h:775 msgid "Europe/Prague" msgstr "Europa/Praha" #: timezones.h:776 msgid "Europe/Riga" msgstr "Europa/Ryga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Europa/Roma" #: timezones.h:778 msgid "Europe/Samara" msgstr "Europa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Europa/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Europa/Sarajevas" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Europa/Simferopolis" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Europa/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Europa/Sofija" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Europa/Stoholmas" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Europa/Talinas" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Europa/Tirane" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Europa/Tiraspolis" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Europas/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Europa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Europa/Vatikanas" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Europa/Viena" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Europe/Vilnius" #: timezones.h:799 #, fuzzy msgid "Europe/Volgograd" msgstr "Europa/Belgradas" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Europa/VarÅ”uva" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Europa/Zagrebas" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Europa/Zaporožė" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Europa/Ciurichas" #: timezones.h:808 msgid "Factory" msgstr "Factory" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Grivičio" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkongas" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Islandija" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Indiana/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Indiana/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Indiana/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Indiana/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Indiana/Comoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Indiana/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Indiana/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Indiana/Maldives" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Indiana/Mauritius" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Indiana/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Indiana/Reunion" #: timezones.h:830 msgid "Iran" msgstr "Iranas" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "Izraelis" #: timezones.h:833 msgid "Jamaica" msgstr "Jamaika" #: timezones.h:834 msgid "Japan" msgstr "Japonija" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libija" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Meksika/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Meksika/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Meksika/General" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Mideast/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Mideast/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Mideast/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Pacific/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Pacific/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Pacific/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 #, fuzzy msgid "Chatham Islands" msgstr "Čilė/EasterIsland" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "Pacific/Truk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 #, fuzzy msgid "Pacific/Easter" msgstr "Pacific/Easter" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Pacific/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Pacific/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Pacific/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Pacific/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Pacific/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Pacific/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Pacific/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Pacific/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Pacific/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Pacific/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 #, fuzzy msgid "Hawaii" msgstr "JAV/Havajai" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Pacific/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Pacific/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Pacific/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 #, fuzzy msgid "Kosrae" msgstr "Izraelis" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Pacific/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Pacific/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Pacific/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Pacific/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Pacific/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Pacific/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Pacific/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Pacific/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Pacific/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Pacific/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Pacific/Pitcairn" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "Pacific/Ponape" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Pacific/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Pacific/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Pacific/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Pacific/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Pacific/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Pacific/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Pacific/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 #, fuzzy msgid "Gilbert Islands" msgstr "Čilė/EasterIsland" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Pacific/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Pacific/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Pacific/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Pacific/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Pacific/Yap" #: timezones.h:929 msgid "Poland" msgstr "Lenkija" #: timezones.h:930 msgid "Portugal" msgstr "Portugalija" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "SingapÅ«ras" #: timezones.h:937 msgid "Turkey" msgstr "Turkija" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "JAV/Alaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "JAV/Aleutian" #: timezones.h:942 msgid "US/Arizona" msgstr "JAV/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "JAV/Central" #: timezones.h:944 msgid "US/Eastern" msgstr "JAV/Eastern" #: timezones.h:945 msgid "US/East-Indiana" msgstr "JAV/East-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "JAV/Havajai" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "JAV/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "JAV/Mičganas" #: timezones.h:949 msgid "US/Mountain" msgstr "JAV/Mountain" #: timezones.h:950 msgid "US/Pacific" msgstr "JAV/Pacific" #: timezones.h:951 msgid "US/Samoa" msgstr "JAV/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" #, fuzzy #~ msgid "US/Pacific-New" #~ msgstr "JAV/Pacific" #~ msgid "SystemV/AST4" #~ msgstr "SystemV/AST4" #~ msgid "SystemV/AST4ADT" #~ msgstr "SystemV/AST4ADT" #~ msgid "SystemV/CST6" #~ msgstr "SystemV/CST6" #~ msgid "SystemV/CST6CDT" #~ msgstr "SystemV/CST6CDT" #~ msgid "SystemV/EST5" #~ msgstr "SystemV/EST5" #~ msgid "SystemV/EST5EDT" #~ msgstr "SystemV/EST5EDT" #~ msgid "SystemV/HST10" #~ msgstr "SystemV/HST10" #~ msgid "SystemV/MST7" #~ msgstr "SystemV/MST7" #~ msgid "SystemV/MST7MDT" #~ msgstr "SystemV/MST7MDT" #~ msgid "SystemV/PST8" #~ msgstr "SystemV/PST8" #~ msgid "SystemV/PST8PDT" #~ msgstr "SystemV/PST8PDT" #~ msgid "SystemV/YST9" #~ msgstr "SystemV/YST9" #~ msgid "SystemV/YST9YDT" #~ msgstr "SystemV/YST9YDT" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/lo.po0000664000175000017500000014456114632072346023704 0ustar fabiofabio# Laotian translations for PACKAGE package. # Copyright (C) 2004 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Automatically generated, 2004. # msgid "" msgstr "" "Project-Id-Version: redhat-config-packages\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2002-04-12 17:04-0400\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "" #: timezones.h:2 msgid "Africa/Accra" msgstr "" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "" #: timezones.h:4 msgid "Africa/Algiers" msgstr "" #: timezones.h:5 msgid "Africa/Asmara" msgstr "" #: timezones.h:6 msgid "Africa/Asmera" msgstr "" #: timezones.h:7 msgid "Africa/Bamako" msgstr "" #: timezones.h:8 msgid "Africa/Bangui" msgstr "" #: timezones.h:9 msgid "Africa/Banjul" msgstr "" #: timezones.h:10 msgid "Africa/Bissau" msgstr "" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "" #: timezones.h:14 msgid "Africa/Cairo" msgstr "" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "" #: timezones.h:20 msgid "Africa/Dakar" msgstr "" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "" #: timezones.h:23 msgid "Africa/Douala" msgstr "" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "" #: timezones.h:25 msgid "Africa/Freetown" msgstr "" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "" #: timezones.h:27 msgid "Africa/Harare" msgstr "" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "" #: timezones.h:29 msgid "Africa/Kampala" msgstr "" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "" #: timezones.h:31 msgid "Africa/Kigali" msgstr "" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "" #: timezones.h:36 msgid "Africa/Libreville" msgstr "" #: timezones.h:37 msgid "Africa/Lome" msgstr "" #: timezones.h:38 msgid "Africa/Luanda" msgstr "" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "" #: timezones.h:43 msgid "Africa/Malabo" msgstr "" #: timezones.h:44 msgid "Africa/Maputo" msgstr "" #: timezones.h:45 msgid "Africa/Maseru" msgstr "" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "" #: timezones.h:51 msgid "Africa/Niamey" msgstr "" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "" #: timezones.h:58 msgid "Africa/Tunis" msgstr "" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "" #: timezones.h:60 msgid "America/Adak" msgstr "" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "" #: timezones.h:63 msgid "America/Anchorage" msgstr "" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "" #: timezones.h:66 msgid "America/Anguilla" msgstr "" #: timezones.h:67 msgid "America/Antigua" msgstr "" #: timezones.h:68 msgid "America/Araguaina" msgstr "" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "" #: timezones.h:109 msgid "America/Asuncion" msgstr "" #: timezones.h:110 msgid "America/Atikokan" msgstr "" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "" #: timezones.h:114 msgid "America/Bahia" msgstr "" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "" #: timezones.h:121 msgid "America/Belem" msgstr "" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "" #: timezones.h:132 msgid "America/Boise" msgstr "" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "" #: timezones.h:146 msgid "America/Catamarca" msgstr "" #: timezones.h:147 msgid "America/Cayenne" msgstr "" #: timezones.h:148 msgid "America/Cayman" msgstr "" #: timezones.h:149 msgid "America/Chicago" msgstr "" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "" #: timezones.h:152 msgid "America/Chihuahua" msgstr "" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "" #: timezones.h:156 msgid "America/Cordoba" msgstr "" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "" #: timezones.h:158 msgid "America/Cuiaba" msgstr "" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "" #: timezones.h:174 msgid "America/Detroit" msgstr "" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "" #: timezones.h:178 msgid "America/Edmonton" msgstr "" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "" #: timezones.h:185 msgid "America/Ensenada" msgstr "" #: timezones.h:186 msgid "America/Fortaleza" msgstr "" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "" #: timezones.h:200 msgid "America/Grenada" msgstr "" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "" #: timezones.h:202 msgid "America/Guatemala" msgstr "" #: timezones.h:203 msgid "America/Guayaquil" msgstr "" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "" #: timezones.h:207 msgid "America/Halifax" msgstr "" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "" #: timezones.h:211 msgid "America/Hermosillo" msgstr "" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "" #: timezones.h:246 msgid "America/Jujuy" msgstr "" #: timezones.h:247 msgid "America/Juneau" msgstr "" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "" #: timezones.h:257 msgid "America/La_Paz" msgstr "" #: timezones.h:258 msgid "America/Lima" msgstr "" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "" #: timezones.h:262 msgid "America/Louisville" msgstr "" #: timezones.h:263 msgid "America/Maceio" msgstr "" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "" #: timezones.h:267 msgid "America/Manaus" msgstr "" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 msgid "America/Marigot" msgstr "" #: timezones.h:271 msgid "America/Martinique" msgstr "" #: timezones.h:272 msgid "America/Matamoros" msgstr "" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "" #: timezones.h:279 msgid "America/Menominee" msgstr "" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "" #: timezones.h:289 msgid "America/Moncton" msgstr "" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "" #: timezones.h:296 msgid "America/Montreal" msgstr "" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "" #: timezones.h:300 msgid "America/Nassau" msgstr "" #: timezones.h:301 msgid "America/New_York" msgstr "" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "" #: timezones.h:304 msgid "America/Nipigon" msgstr "" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 msgid "America/Ojinaga" msgstr "" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "" #: timezones.h:327 msgid "America/Phoenix" msgstr "" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "" #: timezones.h:337 msgid "America/Rainy_River" msgstr "" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 msgid "America/Resolute" msgstr "" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 msgid "America/Santarem" msgstr "" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "" #: timezones.h:376 msgid "America/St_Johns" msgstr "" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "" #: timezones.h:380 msgid "America/St_Lucia" msgstr "" #: timezones.h:381 msgid "America/St_Thomas" msgstr "" #: timezones.h:382 msgid "America/St_Vincent" msgstr "" #: timezones.h:383 msgid "America/Swift_Current" msgstr "" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "" #: timezones.h:387 msgid "America/Thule" msgstr "" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "" #: timezones.h:400 msgid "America/Vancouver" msgstr "" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "" #: timezones.h:404 msgid "America/Whitehorse" msgstr "" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "" #: timezones.h:450 msgid "Asia/Aden" msgstr "" #: timezones.h:451 msgid "Asia/Almaty" msgstr "" #: timezones.h:454 msgid "Asia/Amman" msgstr "" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "" #: timezones.h:468 msgid "Asia/Baku" msgstr "" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "" #: timezones.h:470 msgid "Asia/Beirut" msgstr "" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "" #: timezones.h:472 msgid "Asia/Brunei" msgstr "" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "" #: timezones.h:481 msgid "Asia/Colombo" msgstr "" #: timezones.h:482 msgid "Asia/Dacca" msgstr "" #: timezones.h:483 msgid "Asia/Damascus" msgstr "" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "" #: timezones.h:485 msgid "Asia/Dili" msgstr "" #: timezones.h:486 msgid "Asia/Dubai" msgstr "" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "" #: timezones.h:488 msgid "Asia/Gaza" msgstr "" #: timezones.h:489 msgid "Asia/Harbin" msgstr "" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "" #: timezones.h:494 msgid "Asia/Hovd" msgstr "" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "" #: timezones.h:508 msgid "Asia/Kabul" msgstr "" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "" #: timezones.h:529 msgid "Asia/Macao" msgstr "" #: timezones.h:530 msgid "Asia/Macau" msgstr "" #: timezones.h:531 msgid "Asia/Magadan" msgstr "" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "" #: timezones.h:538 msgid "Asia/Muscat" msgstr "" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "" #: timezones.h:546 msgid "Asia/Omsk" msgstr "" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "" #: timezones.h:557 msgid "Asia/Qatar" msgstr "" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "" #: timezones.h:566 msgid "Asia/Saigon" msgstr "" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "" #: timezones.h:578 msgid "Asia/Taipei" msgstr "" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "" #: timezones.h:583 msgid "Asia/Tehran" msgstr "" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "" #: timezones.h:625 msgid "Australia/ACT" msgstr "" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "" #: timezones.h:636 msgid "Australia/Currie" msgstr "" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 msgid "Australia/Eucla" msgstr "" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "" #: timezones.h:645 msgid "Australia/Hobart" msgstr "" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "" #: timezones.h:658 msgid "Australia/North" msgstr "" #: timezones.h:659 msgid "Australia/NSW" msgstr "" #: timezones.h:660 msgid "Australia/Perth" msgstr "" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "" #: timezones.h:664 msgid "Australia/South" msgstr "" #: timezones.h:665 msgid "Australia/Sydney" msgstr "" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "" #: timezones.h:669 msgid "Australia/Victoria" msgstr "" #: timezones.h:670 msgid "Australia/West" msgstr "" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "" #: timezones.h:672 msgid "Brazil/Acre" msgstr "" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "" #: timezones.h:674 msgid "Brazil/East" msgstr "" #: timezones.h:675 msgid "Brazil/West" msgstr "" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "" #: timezones.h:677 msgid "Canada/Central" msgstr "" #: timezones.h:678 msgid "Canada/Eastern" msgstr "" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "" #: timezones.h:680 msgid "Canada/Mountain" msgstr "" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "" #: timezones.h:682 msgid "Canada/Pacific" msgstr "" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "" #: timezones.h:684 msgid "Canada/Yukon" msgstr "" #: timezones.h:685 msgid "CET" msgstr "" #: timezones.h:686 msgid "Chile/Continental" msgstr "" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "" #: timezones.h:688 msgid "CST6CDT" msgstr "" #: timezones.h:689 msgid "Cuba" msgstr "" #: timezones.h:690 msgid "EET" msgstr "" #: timezones.h:691 msgid "Egypt" msgstr "" #: timezones.h:692 msgid "Eire" msgstr "" #: timezones.h:693 msgid "EST" msgstr "" #: timezones.h:694 msgid "EST5EDT" msgstr "" #: timezones.h:695 msgid "Etc/GMT" msgstr "" #: timezones.h:696 msgid "Etc/GMT0" msgstr "" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "" #: timezones.h:726 msgid "Etc/UCT" msgstr "" #: timezones.h:727 msgid "Etc/Universal" msgstr "" #: timezones.h:728 msgid "Etc/UTC" msgstr "" #: timezones.h:729 msgid "Etc/Zulu" msgstr "" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "" #: timezones.h:731 msgid "Europe/Andorra" msgstr "" #: timezones.h:732 msgid "Europe/Athens" msgstr "" #: timezones.h:733 msgid "Europe/Belfast" msgstr "" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "" #: timezones.h:735 msgid "Europe/Berlin" msgstr "" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "" #: timezones.h:737 msgid "Europe/Brussels" msgstr "" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "" #: timezones.h:739 msgid "Europe/Budapest" msgstr "" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "" #: timezones.h:742 msgid "Europe/Dublin" msgstr "" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "" #: timezones.h:748 msgid "Europe/Jersey" msgstr "" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "" #: timezones.h:759 msgid "Europe/London" msgstr "" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "" #: timezones.h:761 msgid "Europe/Madrid" msgstr "" #: timezones.h:764 msgid "Europe/Malta" msgstr "" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "" #: timezones.h:766 msgid "Europe/Minsk" msgstr "" #: timezones.h:767 msgid "Europe/Monaco" msgstr "" #: timezones.h:768 msgid "Europe/Moscow" msgstr "" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "" #: timezones.h:772 msgid "Europe/Oslo" msgstr "" #: timezones.h:773 msgid "Europe/Paris" msgstr "" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "" #: timezones.h:775 msgid "Europe/Prague" msgstr "" #: timezones.h:776 msgid "Europe/Riga" msgstr "" #: timezones.h:777 msgid "Europe/Rome" msgstr "" #: timezones.h:778 msgid "Europe/Samara" msgstr "" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "" #: timezones.h:787 msgid "Europe/Sofia" msgstr "" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "" #: timezones.h:790 msgid "Europe/Tirane" msgstr "" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "" #: timezones.h:796 msgid "Europe/Vatican" msgstr "" #: timezones.h:797 msgid "Europe/Vienna" msgstr "" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "" #: timezones.h:808 msgid "Factory" msgstr "" #: timezones.h:809 msgid "GB" msgstr "" #: timezones.h:810 msgid "GB-Eire" msgstr "" #: timezones.h:811 msgid "GMT" msgstr "" #: timezones.h:812 msgid "GMT0" msgstr "" #: timezones.h:813 msgid "GMT-0" msgstr "" #: timezones.h:814 msgid "GMT+0" msgstr "" #: timezones.h:815 msgid "Greenwich" msgstr "" #: timezones.h:816 msgid "Hongkong" msgstr "" #: timezones.h:817 msgid "HST" msgstr "" #: timezones.h:818 msgid "Iceland" msgstr "" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "" #: timezones.h:820 msgid "Indian/Chagos" msgstr "" #: timezones.h:821 msgid "Indian/Christmas" msgstr "" #: timezones.h:822 msgid "Indian/Cocos" msgstr "" #: timezones.h:823 msgid "Indian/Comoro" msgstr "" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "" #: timezones.h:825 msgid "Indian/Mahe" msgstr "" #: timezones.h:826 msgid "Indian/Maldives" msgstr "" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "" #: timezones.h:829 msgid "Indian/Reunion" msgstr "" #: timezones.h:830 msgid "Iran" msgstr "" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "" #: timezones.h:833 msgid "Jamaica" msgstr "" #: timezones.h:834 msgid "Japan" msgstr "" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "" #: timezones.h:836 msgid "Libya" msgstr "" #: timezones.h:837 msgid "MET" msgstr "" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "" #: timezones.h:840 msgid "Mexico/General" msgstr "" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "" #: timezones.h:844 msgid "MST" msgstr "" #: timezones.h:845 msgid "MST7MDT" msgstr "" #: timezones.h:846 msgid "Navajo" msgstr "" #: timezones.h:847 msgid "NZ" msgstr "" #: timezones.h:848 msgid "NZ-CHAT" msgstr "" #: timezones.h:849 msgid "Pacific/Apia" msgstr "" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 msgid "Pacific/Easter" msgstr "" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "" #: timezones.h:876 msgid "Pacific/Guam" msgstr "" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "" #: timezones.h:902 msgid "Pacific/Niue" msgstr "" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "" #: timezones.h:906 msgid "Pacific/Palau" msgstr "" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "" #: timezones.h:923 msgid "Pacific/Truk" msgstr "" #: timezones.h:924 msgid "Pacific/Wake" msgstr "" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "" #: timezones.h:928 msgid "Pacific/Yap" msgstr "" #: timezones.h:929 msgid "Poland" msgstr "" #: timezones.h:930 msgid "Portugal" msgstr "" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "" #: timezones.h:933 msgid "PST8PDT" msgstr "" #: timezones.h:934 msgid "ROC" msgstr "" #: timezones.h:935 msgid "ROK" msgstr "" #: timezones.h:936 msgid "Singapore" msgstr "" #: timezones.h:937 msgid "Turkey" msgstr "" #: timezones.h:938 msgid "UCT" msgstr "" #: timezones.h:939 msgid "Universal" msgstr "" #: timezones.h:940 msgid "US/Alaska" msgstr "" #: timezones.h:941 msgid "US/Aleutian" msgstr "" #: timezones.h:942 msgid "US/Arizona" msgstr "" #: timezones.h:943 msgid "US/Central" msgstr "" #: timezones.h:944 msgid "US/Eastern" msgstr "" #: timezones.h:945 msgid "US/East-Indiana" msgstr "" #: timezones.h:946 msgid "US/Hawaii" msgstr "" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "" #: timezones.h:948 msgid "US/Michigan" msgstr "" #: timezones.h:949 msgid "US/Mountain" msgstr "" #: timezones.h:950 msgid "US/Pacific" msgstr "" #: timezones.h:951 msgid "US/Samoa" msgstr "" #: timezones.h:952 msgid "UTC" msgstr "" #: timezones.h:953 msgid "WET" msgstr "" #: timezones.h:954 msgid "W-SU" msgstr "" #: timezones.h:955 msgid "Zulu" msgstr "" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/ms.po0000664000175000017500000016557414632072346023720 0ustar fabiofabio# Malay translation of timezone # Copyright (C) 2003 Hasbullah Bin Pit # Hasbullah Bin Pit 2003 msgid "" msgstr "" "Project-Id-Version: system-config-date\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2007-05-13 00:27+0800\n" "Last-Translator: Sharuzzaman Ahmat Raslan \n" "Language-Team: Malay \n" "Language: ms\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Afrika/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Afrika/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Afrika/Addis_Ababa" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Afrika/Algiers" #: timezones.h:5 #, fuzzy msgid "Africa/Asmara" msgstr "Afrika/Asmera" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Afrika/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Afrika/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Afrika/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Afrika/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Afrika/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Afrika/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Afrika/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Afrika/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Afrika/Kaherah" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Afrika/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Afrika/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Afrika/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Afrika/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Afrika/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Afrika/Djibouti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Afrika/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Afrika/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Afrika/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Afrika/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Afrika/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Afrika/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Afrika/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Afrika/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Afrika/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Afrika/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Afrika/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Afrika/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Afrika/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Afrika/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Afrika/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Afrika/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Afrika/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Afrika/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Afrika/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Afrika/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Afrika/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Afrika/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Afrika/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Afrika/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Afrika/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Afrika/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Afrika/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Afrika/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Afrika/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Afrika/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Afrika/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Afrika/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Afrika/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "Amerika/Adak" #. comment for time zone America/Adak #: timezones.h:62 #, fuzzy msgid "Aleutian Islands" msgstr "Australia/Queensland" #: timezones.h:63 msgid "America/Anchorage" msgstr "Amerika/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 #, fuzzy msgid "Alaska Time" msgstr "US/Alaska" #: timezones.h:66 msgid "America/Anguilla" msgstr "Amerika/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "Amerika/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "Amerika/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Amerika/Argentina/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Amerika/Argentina/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Amerika/Argentina/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Amerika/Argentina/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Amerika/Argentina/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Amerika/Argentina/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Amerika/Argentina/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Amerika/Argentina/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 #, fuzzy msgid "America/Argentina/Salta" msgstr "Amerika/Argentina/San_Juan" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Amerika/Argentina/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 #, fuzzy msgid "America/Argentina/San_Luis" msgstr "Amerika/Argentina/San_Juan" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Amerika/Argentina/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Amerika/Argentina/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "Amerika/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "Amerika/Asuncion" #: timezones.h:110 msgid "America/Atikokan" msgstr "Amerika/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "Amerika/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "Amerika/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "Amerika/Bahia" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "Amerika/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "Amerika/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "Amerika/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "Amerika/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Amerika/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "Amerika/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "Amerika/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Amerika/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Amerika/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "Amerika/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "Amerika/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "Amerika/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "Amerika/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "Amerika/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "Amerika/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "Amerika/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "US/Central" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Amerika/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "Amerika/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "Amerika/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Amerika/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Amerika/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "Amerika/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Amerika/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "Amerika/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Amerika/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "Amerika/Denver" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "US/Mountain" #: timezones.h:174 msgid "America/Detroit" msgstr "Amerika/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "Amerika/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "Amerika/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "Amerika/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Amerika/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "Amerika/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Amerika/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Amerika/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Amerika/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "Amerika/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Amerika/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Amerika/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "Amerika/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Amerika/Guadeloupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "Amerika/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Amerika/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "Amerika/Guyana" #: timezones.h:207 msgid "America/Halifax" msgstr "Amerika/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "Amerika/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Amerika/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Amerika/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Amerika/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Amerika/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "Amerika/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Amerika/Indianapolis" #: timezones.h:227 #, fuzzy msgid "America/Indiana/Tell_City" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "Amerika/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 #, fuzzy msgid "America/Indiana/Winamac" msgstr "Amerika/Indiana/Vincennes" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "Amerika/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Amerika/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "Amerika/Jamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "Amerika/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "Amerika/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Amerika/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 #, fuzzy msgid "Eastern Time - Kentucky - Louisville area" msgstr "Amerika/Kentucky/Louisville" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Amerika/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Amerika/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "Amerika/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "Amerika/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Amerika/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 #, fuzzy msgid "Pacific Time" msgstr "Pasifik/Niue" #: timezones.h:262 msgid "America/Louisville" msgstr "Amerika/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "Amerika/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "Amerika/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "Amerika/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 #, fuzzy msgid "America/Marigot" msgstr "Amerika/Maceio" #: timezones.h:271 msgid "America/Martinique" msgstr "Amerika/Martinique" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "Amerika/Manaus" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Amerika/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "Amerika/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "Amerika/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "Amerika/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Amerika/Mexico_City" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "Amerika/Miquelon" #: timezones.h:289 msgid "America/Moncton" msgstr "Amerika/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "Amerika/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "Amerika/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "Amerika/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "Amerika/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "Amerika/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "Amerika/New_York" #. comment for time zone America/New_York #: timezones.h:303 #, fuzzy msgid "Eastern Time" msgstr "US/Eastern" #: timezones.h:304 msgid "America/Nipigon" msgstr "Amerika/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "Amerika/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "Amerika/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 #, fuzzy msgid "Atlantic islands" msgstr "Atlantik/Canary" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Amerika/North_Dakota/Center" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "Amerika/North_Dakota/New_Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "Amerika/Managua" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "Amerika/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Amerika/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Amerika/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "Amerika/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Amerika/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Amerika/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Amerika/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Amerika/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Amerika/Puerto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Amerika/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Amerika/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "Amerika/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "Amerika/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 #, fuzzy msgid "America/Resolute" msgstr "Amerika/Belem" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Amerika/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "Amerika/Rosario" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "Amerika/Santiago" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 #, fuzzy msgid "America/Santarem" msgstr "Amerika/Santiago" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "Amerika/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Amerika/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Amerika/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Amerika/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "Amerika/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 #, fuzzy msgid "America/St_Barthelemy" msgstr "Amerika/Belem" #: timezones.h:376 msgid "America/St_Johns" msgstr "Amerika/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Amerika/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Amerika/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Amerika/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Amerika/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Amerika/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Amerika/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "Amerika/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Amerika/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "Amerika/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "Amerika/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "Amerika/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "Amerika/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "Amerika/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Amerika/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Amerika/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "Amerika/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Amerika/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Antartika/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Antartika/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Antartika/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "Antartika/McMurdo" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Antartika/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Antartika/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Antartika/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Antartika/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antartika/Kutub_Selatan" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Antartika/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Antartika/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Artik/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Asia/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Asia/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Asia/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Asia/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Asia/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Asia/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Asia/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Asia/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Asia/Baghdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Asia/Bahrain" #: timezones.h:468 msgid "Asia/Baku" msgstr "Asia/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Asia/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Asia/Beirut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Asia/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Asia/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Asia/Calcutta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Asia/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Asia/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "Asia/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Asia/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Asia/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Asia/Damascus" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Asia/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Asia/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Asia/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Asia/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Asia/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Asia/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 #, fuzzy msgid "Asia/Ho_Chi_Minh" msgstr "Asia/Chongqing" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Asia/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Asia/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Asia/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Asia/Istanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Asia/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Asia/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Asia/Jerusalem" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Asia/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Asia/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Asia/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Asia/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 #, fuzzy msgid "Asia/Kathmandu" msgstr "Asia/Katmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Asia/Katmandu" #: timezones.h:518 #, fuzzy msgid "Asia/Kolkata" msgstr "Asia/Jakarta" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Asia/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Asia/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Asia/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Asia/Kuwait" #: timezones.h:529 msgid "Asia/Macao" msgstr "Asia/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Asia/Macau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Asia/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Asia/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "Asia/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Asia/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Asia/Nicosia" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "Asia/Irkutsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "Asia/Novosibirsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Asia/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 #, fuzzy msgid "Moscow+03 - Novosibirsk" msgstr "Asia/Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Asia/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "Asia/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Asia/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Asia/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Asia/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Asia/Qatar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Asia/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Asia/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Asia/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Asia/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Asia/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Asia/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Asia/Saigon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Asia/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Asia/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Asia/Seoul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Asia/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "Asia/Singapura" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Asia/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Asia/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Asia/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Asia/Tehran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Asia/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Asia/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Asia/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Asia/Tokyo" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Asia/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Asia/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Asia/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Asia/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Asia/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Asia/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Asia/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Asia/Yekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Asia/Yerevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlantik/Azores" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlantik/Bermuda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlantik/Canary" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlantik/Cape_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlantik/Faeroe" #: timezones.h:616 #, fuzzy msgid "Atlantic/Faroe" msgstr "Atlantik/Faeroe" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlantik/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlantik/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlantik/Reykjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlantik/South_Georgia" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlantik/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlantik/St_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "Australia/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Australia/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 #, fuzzy msgid "South Australia" msgstr "Australia/ACT" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Australia/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Australia/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Australia/Canberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "Australia/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Australia/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 #, fuzzy msgid "Australia/Eucla" msgstr "Australia/Queensland" #. comment for time zone Australia/Eucla #: timezones.h:644 #, fuzzy msgid "Western Australia - Eucla area" msgstr "Australia/Queensland" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Australia/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "Australia/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Australia/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Australia/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Australia/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 #, fuzzy msgid "Victoria" msgstr "Australia/Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "Australia/Utara" #: timezones.h:659 msgid "Australia/NSW" msgstr "Australia/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "Australia/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Australia/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "Australia/South" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Australia/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Australia/Tasmania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Australia/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "Australia/Barat" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Australia/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brazil/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brazil/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brazil/Timur" #: timezones.h:675 msgid "Brazil/West" msgstr "Brazil/Barat" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Kanada/Atlantik" #: timezones.h:677 msgid "Canada/Central" msgstr "Kanada/Tengah" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Kanada/Timur" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Kanada/East-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Kanada/Mountain" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Kanada/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Kanada/Pasifik" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Kanada/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Kanada/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Chile/Continental" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chile/EasterIsland" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Cuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Mesir" #: timezones.h:692 msgid "Eire" msgstr "Eire" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Eropah/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Eropah/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Eropah/Athens" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Eropah/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Eropah/Belgrade" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Eropah/Berlin" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Eropah/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Eropah/Brussels" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Eropah/Bucharest" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Eropah/Budapest" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Eropah/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Eropah/Copenhagen" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Eropah/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Eropah/Gibraltar" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Eropah/Guernsey" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Eropah/Helsinki" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Eropah/Isle_of_Man" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Eropah/Istanbul" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Eropah/Jersey" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Eropah/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Eropah/Kiev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Eropah/Lisbon" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Eropah/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Eropah/London" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Eropah/Luxembourg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Eropah/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Eropah/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Eropah/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Eropah/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Eropah/Monaco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Eropah/Moskow" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Eropah/Nicosia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Eropah/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Eropah/Paris" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Eropah/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Eropah/Prague" #: timezones.h:776 msgid "Europe/Riga" msgstr "Eropah/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Eropah/Rom" #: timezones.h:778 msgid "Europe/Samara" msgstr "Eropah/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Eropah/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Eropah/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Eropah/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Eropah/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Eropah/Sofia" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Eropah/Stockholm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Eropah/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Eropah/Tirane" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Eropah/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Eropah/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Eropah/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Eropah/Vatican" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Eropah/Vienna" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Eropah/Vilnius" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Eropah/Volgograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Eropah/Warsaw" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Eropah/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Eropah/Zaporozhye" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Eropah/Zurich" #: timezones.h:808 msgid "Factory" msgstr "Kilang" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Iceland" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "India/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "India/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "India/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "India/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "India/Comoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "India/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "India/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "India/Maldives" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "India/Mauritius" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "India/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "India/Reunion" #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "Israel" #: timezones.h:833 msgid "Jamaica" msgstr "Jamaica" #: timezones.h:834 msgid "Japan" msgstr "Jepun" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libya" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Mexico/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Mexico/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Mexico/General" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Timurtengah/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Timurtengah/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Timurtengah/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Pasifik/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Pasifik/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Pasifik/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 #, fuzzy msgid "Chatham Islands" msgstr "Chile/EasterIsland" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "Pasifik/Truk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 msgid "Pacific/Easter" msgstr "Pasifik/Easter" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Pasifik/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Pasifik/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Pasifik/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Pasifik/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Pasifik/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Pasifik/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Pasifik/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Pasifik/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Pasifik/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Pasifik/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 #, fuzzy msgid "Hawaii" msgstr "US/Hawaii" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Pasifik/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Pasifik/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Pasifik/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 #, fuzzy msgid "Kosrae" msgstr "Israel" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Pasifik/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Pasifik/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Pasifik/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Pasifik/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Pasifik/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Pasifik/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Pasifik/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Pasifik/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Pasifik/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Pasifik/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Pasifik/Pitcairn" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "Pasifik/Ponape" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Pasifik/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Pasifik/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Pasifik/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Pasifik/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Pasifik/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Pasifik/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Pasifik/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 #, fuzzy msgid "Gilbert Islands" msgstr "Chile/EasterIsland" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Pasifik/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Pasifik/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Pasifik/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Pasifik/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Pasifik/Yap" #: timezones.h:929 msgid "Poland" msgstr "Poland" #: timezones.h:930 msgid "Portugal" msgstr "Portugal" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapura" #: timezones.h:937 msgid "Turkey" msgstr "Turki" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "US/Alaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "US/Aleutian" #: timezones.h:942 msgid "US/Arizona" msgstr "US/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "US/Central" #: timezones.h:944 msgid "US/Eastern" msgstr "US/Eastern" #: timezones.h:945 msgid "US/East-Indiana" msgstr "US/East-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "US/Hawaii" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "US/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "US/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "US/Mountain" #: timezones.h:950 msgid "US/Pacific" msgstr "US/Pacific" #: timezones.h:951 msgid "US/Samoa" msgstr "US/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" #~ msgid "US/Pacific-New" #~ msgstr "US/Pasifik-Baru" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/bn_IN.po0000664000175000017500000026301114632072346024247 0ustar fabiofabio# translation of system-config-date.master-timezones.po to Bengali INDIA # BANGLA TRANSLATION OF TIMEZONES.POT # Copyright (C) 2004 RedHat Inc. # This file is distributed under the same license as the PACKAGE package. # # Runa Bhattahcarjee , 2004. # Runa Bhattacharjee , 2006, 2009, 2010. # Runa Bhattacharjee , 2008. # runa b , 2010. msgid "" msgstr "" "Project-Id-Version: system-config-date.master-timezones\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-12-06 16:58+0530\n" "Last-Translator: Runa Bhattacharjee \n" "Language-Team: Bengali India \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: \n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "\n" "\n" "\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦…ą¦¬ą¦æą¦œą¦¾ą¦Ø" #: timezones.h:2 msgid "Africa/Accra" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦†ą¦•ą§ą¦°ą¦¾" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/আঔিস_আবাবা" #: timezones.h:4 msgid "Africa/Algiers" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦…ą§ą¦Æą¦¾ą¦²ą¦œą¦æą§Ÿą¦¾ą¦°ą§ą¦ø" #: timezones.h:5 msgid "Africa/Asmara" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/আসমারা" #: timezones.h:6 msgid "Africa/Asmera" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/আসমেরা" #: timezones.h:7 msgid "Africa/Bamako" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/বামাকো" #: timezones.h:8 msgid "Africa/Bangui" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦¬ą¦¾ą¦™ą§ą¦—ą§ą¦‡" #: timezones.h:9 msgid "Africa/Banjul" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/বানজুল" #: timezones.h:10 msgid "Africa/Bissau" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/বিসাউ" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦¬ą§ą¦²ą§ą¦Æą¦¾ą¦Øą¦Ÿą¦¾ą§Ÿą¦¾ą¦°" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦¬ą§ą¦°ą¦¾ą¦œą¦¾ą¦­ą¦æą¦²" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/বুজুমবুরা" #: timezones.h:14 msgid "Africa/Cairo" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦•ą¦¾ą§Ÿą¦°ą§‹" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦•ą¦¾ą¦øą¦¾ą¦¬ą§ą¦²ą¦¾ą¦™ą§ą¦•ą¦¾" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦„ą§‡ą¦‰ą¦Ÿą¦¾" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "ą¦øą¦æą¦‰ą¦Ÿą¦¾ ও মেলিলা" #: timezones.h:19 msgid "Africa/Conakry" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦•ą§‹ą¦Øą¦¾ą¦•ą§ą¦°ą¦æ" #: timezones.h:20 msgid "Africa/Dakar" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ঔাকার" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ঔার_ą¦ą¦ø_সালাম" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/জিবুতি" #: timezones.h:23 msgid "Africa/Douala" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ঔুয়ালা" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦ą¦²_আউইন" #: timezones.h:25 msgid "Africa/Freetown" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦«ą§ą¦°ą¦æą¦Ÿą¦¾ą¦‰ą¦Ø" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦—ą§ą¦Æą¦¾ą¦¬ą¦¾ą¦°ą§‹ą¦Ø" #: timezones.h:27 msgid "Africa/Harare" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/হারারে" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦œą§‹ą¦¹ą¦¾ą¦Øą§‡ą¦øą¦¬ą¦¾ą¦°ą§ą¦—" #: timezones.h:29 msgid "Africa/Kampala" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦•ą¦¾ą¦®ą§ą¦Ŗą¦¾ą¦²ą¦¾" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦–ą¦¾ą¦°ą¦¤ą§Œą¦®" #: timezones.h:31 msgid "Africa/Kigali" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/কিগালি" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/কিনশাসা" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦—ą¦£ą¦¤ą¦¾ą¦Øą§ą¦¤ą§ą¦°ą¦æą¦• ą¦Ŗą§ą¦°ą¦œą¦¾ą¦¤ą¦Øą§ą¦¤ą§ą¦° ą¦•ą¦™ą§ą¦—ą§‹" #: timezones.h:35 msgid "Africa/Lagos" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/লাগোস" #: timezones.h:36 msgid "Africa/Libreville" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/লিবারভিল" #: timezones.h:37 msgid "Africa/Lome" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/লোমে" #: timezones.h:38 msgid "Africa/Luanda" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦²ą§ą§Ÿą¦¾ą¦Øą§ą¦”ą¦¾" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦²ą§ą¦¬ą§ą¦®ą§ą¦¬ą¦¾ą¦¶ą¦æ" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "ą¦Ŗą§‚ą¦°ą§ą¦¬ ą¦—ą¦£ą¦¤ą¦¾ą¦Øą§ą¦¤ą§ą¦°ą¦æą¦• ą¦Ŗą§ą¦°ą¦œą¦¾ą¦¤ą¦Øą§ą¦¤ą§ą¦° ą¦•ą¦™ą§ą¦—ą§‹" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/লুসাকা" #: timezones.h:43 msgid "Africa/Malabo" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/মালাবো" #: timezones.h:44 msgid "Africa/Maputo" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/মাপুতো" #: timezones.h:45 msgid "Africa/Maseru" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/মাসেরু" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/আমবাবানে" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/মোগাঔিশু" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦®ą§‹ą¦Øą¦°ą§‹ą¦­ą¦æą§Ÿą¦¾" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦Øą¦¾ą§Ÿą¦°ą§‹ą¦¬ą¦æ" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦†ą¦Øą¦œą¦¾ą¦®ą§‡ą¦Øą¦¾" #: timezones.h:51 msgid "Africa/Niamey" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦Øą¦æą§Ÿą¦¾ą¦®ą§‡" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦Øą§‹ą§Ÿą¦¾ą¦•ą¦¶ą§‹ą¦Ÿ" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦“ą§Ÿą¦¾ą¦—ą¦¾ą¦”ą§ą¦—ą§" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦Ŗą§‹ą¦°ą§ą¦Ÿą§‹-নোভো" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/সাও_ą¦Ÿą§‹ą¦®ą§‡" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦Ÿą¦æą¦®ą§ą¦¬ą¦¾ą¦•ą¦Ÿą§" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦Ÿą§ą¦°ą¦æą¦Ŗą§‹ą¦²ą¦æ" #: timezones.h:58 msgid "Africa/Tunis" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦Ÿą¦æą¦‰ą¦Øą¦æą¦ø" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "ą¦†ą¦«ą§ą¦°ą¦æą¦•ą¦¾/ą¦­ą¦æą¦Øą§ą¦Ÿą¦¹ą§ą¦•" #: timezones.h:60 msgid "America/Adak" msgstr "আমেরিকা/আদাক" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "ą¦†ą¦²ą§ą¦¤ą¦æą§Ÿą¦¾ą¦Ø ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:63 msgid "America/Anchorage" msgstr "আমেরিকা/ą¦…ą§ą¦Æą¦¾ą¦™ą§ą¦•ą§‹ą¦°ą§‡ą¦œ" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "ą¦†ą¦²ą¦¾ą¦øą§ą¦•ą¦¾ সময়" #: timezones.h:66 msgid "America/Anguilla" msgstr "আমেরিকা/ą¦…ą§ą¦Æą¦¾ą¦™ą§ą¦—ą¦æą¦²ą¦¾" #: timezones.h:67 msgid "America/Antigua" msgstr "আমেরিকা/ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦æą¦—ą¦¾" #: timezones.h:68 msgid "America/Araguaina" msgstr "আমেরিকা/ą¦†ą¦°ą¦¾ą¦—ą§ą§Ÿą§‡ą¦Øą¦¾" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "ą¦Ÿą§‹ą¦•ą¦¾ą¦Øą§ą¦Ÿą¦æą¦Øą§ą¦ø" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦¬ą§ą§Ÿą§‡ą¦Øą§‹ą¦ø_ą¦†ą§Ÿą¦¾ą¦°ą¦ø" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "ą¦¬ą§ą§Ÿą§‡ą¦Øą§‹ą¦ø ą¦†ą§Ÿą¦¾ą¦°ą¦ø (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦•ą¦¾ą¦Ÿą¦¾ą¦®ą¦¾ą¦°ą§ą¦•ą¦¾" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "ą¦•ą¦¾ą¦Ÿą¦¾ą¦®ą¦¾ą¦°ą§ą¦•ą¦¾ (CT), ছুবুত (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦•ą§‹ą¦®ą§‹ą¦”ą¦°ą¦æą¦­ą¦¾ą¦”ą¦¾ą¦­ą¦æą§Ÿą¦¾" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦•ą§‹ą¦°ą§ą¦”ą§‹ą¦¬ą¦¾" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦œą§ą¦œą§ą¦‡" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "ą¦œą§ą¦œą§ą¦‡ (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/লা_ą¦°ą¦æą¦“ą¦œą¦¾" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "লা ą¦°ą¦æą¦“ą§Ÿą¦¾ (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦®ą§‡ą¦Øą§ą¦”ą§‹ą¦œą¦¾" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "ą¦®ą§‡ą¦Øą§ą¦”ą§‹ą¦œą¦¾ (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/রিও_গেলিগোস" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "ą¦øą¦¾ą¦Øą§ą¦Ÿą¦¾ ą¦•ą§ą¦°ą§ą¦œ (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦øą¦²ą§ą¦Ÿą¦¾" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/সান_হুয়ান" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "সান হুয়ান (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/সান_লুই" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "সান লুই (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦Ÿą§ą¦•ą§ą¦®ą¦¾ą¦Ø" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "ą¦Ÿą§ą¦•ą§ą¦®ą¦¾ą¦Ø (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "আমেরিকা/ą¦†ą¦°ą§ą¦œą§‡ą¦Øą¦Ÿą¦æą¦Øą¦¾/ą¦‰ą¦¶ą§ą§Ÿą¦¾ą¦‡ą§Ÿą¦¾" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "ą¦Ÿą¦æą§Ÿą§‡ą¦°ą¦¾ ঔেল ą¦«ą§ą§Ÿą§‡ą¦—ą§‹ (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "আমেরিকা/আরুবা" #: timezones.h:109 msgid "America/Asuncion" msgstr "আমেরিকা/ą¦…ą§ą¦Æą¦¾ą¦øą¦¾ą¦Øą¦¶ą¦æą§Ÿą¦¾ą¦Ø" #: timezones.h:110 msgid "America/Atikokan" msgstr "আমেরিকা/ą¦†ą¦Ÿą¦æą¦•ą§‹ą¦•ą¦¾ą¦Ø" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "ą¦‡ą¦øą§ą¦Ÿą¦¾ą¦°ą§ą¦Ø ą¦øą§ą¦Ÿą§ą¦Æą¦¾ą¦Øą§ą¦”ą¦¾ą¦°ą§ą¦” সময় - ą¦†ą¦Ÿą¦æą¦•ą§‹ą¦•ą¦¾ą¦Ø, ą¦“ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦æą¦“ ও ą¦øą¦¾ą¦‰ą¦„ą¦¹ą§ą¦Æą¦¾ą¦®ą§ą¦Ŗą¦Ÿą¦Ø ą¦¦ą§ą¦¬ą§€ą¦Ŗ, নুনাভুট" #: timezones.h:113 msgid "America/Atka" msgstr "আমেরিকা/ą¦†ą¦Ÿą¦•ą¦¾" #: timezones.h:114 msgid "America/Bahia" msgstr "আমেরিকা/বাহিয়া" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "বাহিয়া" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "আমেরিকা/বাহিয়া_ą¦¬ą¦¾ą¦Øą§ą¦”ą§‡ą¦°ą¦¾ą¦ø" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "ą¦®ą§‡ą¦•ą§ą¦øą¦æą¦•ą¦¾ą¦Ø ą¦øą§‡ą¦Øą§ą¦Ÿą§ą¦°ą¦¾ą¦² সময় - বাহিয়া ঔে ą¦¬ą¦¾ą¦Øą§ą¦”ą§‡ą¦°ą¦¾ą¦ø" #: timezones.h:120 msgid "America/Barbados" msgstr "আমেরিকা/বারবাঔোস" #: timezones.h:121 msgid "America/Belem" msgstr "আমেরিকা/বেলেম" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "আমাপা, ą¦Ŗą§‚ą¦°ą§ą¦¬ পারা" #: timezones.h:124 msgid "America/Belize" msgstr "আমেরিকা/ą¦¬ą§‡ą¦²ą¦æą¦œą§‡" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "আমেরিকা/ą¦¬ą§ą¦²ą¦¾ą¦™ą§ą¦•-সাবলোন" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "ą¦†ą¦¤ą¦²ą¦¾ą¦Øą§ą¦¤ą¦æą¦• ą¦øą§ą¦Ÿą§ą¦Æą¦¾ą¦Øą§ą¦”ą¦¾ą¦°ą§ą¦” সময় - কিউবেক - ą¦²ą§‹ą§Ÿą¦¾ą¦° ą¦Øą¦°ą§ą¦„ শোর" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "আমেরিকা/ą¦¬ą§‹ą§Ÿą¦¾_ą¦­ą¦æą¦øą§ą¦Ÿą¦¾" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "রোরাইমা" #: timezones.h:131 msgid "America/Bogota" msgstr "আমেরিকা/ą¦¬ą§‹ą¦—ą§‹ą¦Ÿą¦¾" #: timezones.h:132 msgid "America/Boise" msgstr "আমেরিকা/ą¦¬ą§‹ą§Ÿą¦ø" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø সময় - ą¦¦ą¦•ą§ą¦·ą¦æą¦£ আইঔাহো ও ą¦Ŗą§‚ą¦°ą§ą¦¬ ওরেগন" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "আমেরিকা/ą¦¬ą§ą§Ÿą§‡ą¦Øą§‹ą¦ø_ą¦†ą§Ÿą¦¾ą¦°ą¦ø" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "আমেরিকা/ą¦•ą§‡ą¦®ą¦¬ą§ą¦°ą¦æą¦œ_বে" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø সময় - ą¦Ŗą¦¶ą§ą¦šą¦æą¦¤ নুনাভুট" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "আমেরিকা/ą¦•ą¦¾ą¦®ą§ą¦Ŗą§‹_ą¦—ą§ą¦°ą¦¾ą¦Øą§ą¦”ą§‡" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "ą¦®ą¦¾ą¦Ÿą§‹ ą¦—ą§ą¦°ą§‹ą¦øą§‹ দো সুল" #: timezones.h:142 msgid "America/Cancun" msgstr "আমেরিকা/কেনকুন" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "ą¦øą§‡ą¦Øą§ą¦Ÿą§ą¦°ą¦¾ą¦² সময় - ą¦•ą¦æą¦Øą§ą¦Ÿą¦¾ą¦Øą¦¾ রু" #: timezones.h:145 msgid "America/Caracas" msgstr "আমেরিকা/কেরাকাস" #: timezones.h:146 msgid "America/Catamarca" msgstr "আমেরিকা/ą¦•ą¦¾ą¦Ÿą¦¾ą¦®ą¦¾ą¦°ą§ą¦•ą¦¾" #: timezones.h:147 msgid "America/Cayenne" msgstr "আমেরিকা/ą¦•ą§‡ą§Ÿą§‡ą¦Ø" #: timezones.h:148 msgid "America/Cayman" msgstr "আমেরিকা/কেমেন" #: timezones.h:149 msgid "America/Chicago" msgstr "আমেরিকা/শিকাগো" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "ą¦øą§‡ą¦Øą§ą¦Ÿą§ą¦°ą¦¾ą¦² সময়" #: timezones.h:152 msgid "America/Chihuahua" msgstr "আমেরিকা/চিহুয়াহুয়া" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "ą¦®ą§‡ą¦•ą§ą¦øą¦æą¦•ą§ą¦Æą¦¾ą¦Ø ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø সময় - চিহুয়াহুয়া (ą¦®ą¦¾ą¦°ą§ą¦•ą¦æą¦Ø ą¦øą§€ą¦®ą¦¾ą¦Øą§ą¦¤ ঄েকে দূরে)" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "আমেরিকা/কোরাল_ą¦¹ą¦¾ą¦°ą§ą¦¬ą¦¾ą¦°" #: timezones.h:156 msgid "America/Cordoba" msgstr "আমেরিকা/ą¦•ą§‹ą¦°ą§ą¦”ą§‹ą¦¬ą¦¾" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "আমেরিকা/ą¦•ą§‹ą¦øą§ą¦Ÿą¦¾_রিকা" #: timezones.h:158 msgid "America/Cuiaba" msgstr "আমেরিকা/ą¦•ą§ą¦‡ą§Ÿą¦¾ą¦¬ą¦¾" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "ą¦®ą¦¾ą¦Ÿą§‹ ą¦—ą§ą¦°ą§‹ą¦øą§‹" #: timezones.h:161 msgid "America/Curacao" msgstr "আমেরিকা/কুরাকাও" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "আমেরিকা/ą¦”ą¦¾ą¦Øą¦®ą¦¾ą¦°ą§ą¦•ą¦¶ą¦“ą§Ÿą¦¾ą¦Ø" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "ą¦Ŗą§‚ą¦°ą§ą¦¬ą§€ তট, ą¦øą§ą¦•ą§‹ą¦°ą§ą¦øą¦¬ą¦¾ą¦‡ą¦øą¦¾ą¦Øą§ą¦”ą§‡ą¦° ą¦‰ą¦¤ą§ą¦¤ą¦°" #: timezones.h:165 msgid "America/Dawson" msgstr "আমেরিকা/ঔসন" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ ą¦®ą¦¹ą¦¾ą¦øą¦¾ą¦—ą¦°ą§€ą§Ÿ সময় -ą¦‰ą¦¤ą§ą¦¤ą¦° ইউকোন" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "আমেরিকা/ঔসন_ą¦•ą§ą¦°ą¦æą¦•" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø ą¦øą§ą¦Ÿą§ą¦Æą¦¾ą¦Øą§ą¦”ą¦¾ą¦°ą§ą¦” সময় - ঔসন ą¦•ą§ą¦°ą¦æą¦• ও ą¦«ą§‹ą¦°ą§ą¦Ÿ ą¦øą§‡ą¦Øą§ą¦Ÿ জন, ą¦¬ą§ą¦°ą¦æą¦Ÿą¦æą¦¶ ą¦•ą¦²ą¦¾ą¦®ą§ą¦¬ą¦æą§Ÿą¦¾" #: timezones.h:171 msgid "America/Denver" msgstr "আমেরিকা/ঔেনভার" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø সময়" #: timezones.h:174 msgid "America/Detroit" msgstr "আমেরিকা/ą¦”ą§‡ą¦Ÿą§ą¦°ą§Ÿą§‡ą¦Ÿ" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "ą¦Ŗą§‚ą¦°ą§ą¦¬ সময় - ą¦®ą¦æą¦šą¦æą¦—ą¦Ø - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:177 msgid "America/Dominica" msgstr "আমেরিকা/ঔোমিনিকা" #: timezones.h:178 msgid "America/Edmonton" msgstr "আমেরিকা/ą¦ą¦”ą¦®ą¦Øą¦Ÿą¦Ø" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø সময় - ą¦…ą§ą¦Æą¦¾ą¦²ą¦¬ą¦¾ą¦°ą§ą¦Ÿą¦¾, ą¦Ŗą§‚ą¦°ą§ą¦¬ ą¦¬ą§ą¦°ą¦æą¦Ÿą¦æą¦¶ ą¦•ą¦²ą¦¾ą¦®ą§ą¦¬ą¦æą§Ÿą¦¾ ও ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦øą¦¾ą¦øą¦•ą¦¾ą¦šą§ą§Ÿą¦¾ą¦Ø" #: timezones.h:181 msgid "America/Eirunepe" msgstr "আমেরিকা/ইরুনেপে" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "পঃ ą¦†ą¦®ą¦¾ą¦œą§‹ą¦Øą¦¾ą¦ø" #: timezones.h:184 msgid "America/El_Salvador" msgstr "আমেরিকা/ą¦ą¦²_সালভাঔোর" #: timezones.h:185 msgid "America/Ensenada" msgstr "আমেরিকা/ą¦ą¦Øą¦øą§‡ą¦Øą¦¾ą¦”ą¦¾" #: timezones.h:186 msgid "America/Fortaleza" msgstr "আমেরিকা/ą¦«ą§‹ą¦°ą§ą¦Ÿą¦¾ą¦²ą§‡ą¦œą¦¾" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "ą¦‰ą¦ƒą¦Ŗą§‚ą¦ƒ ą¦¬ą§ą¦°ą¦¾ą¦œą¦æą¦² (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "আমেরিকা/ą¦«ą§‹ą¦°ą§ą¦Ÿ_ą¦“ą§Ÿą§‡ą¦‡ą¦Ø" # not appropriate imho #: timezones.h:190 msgid "America/Glace_Bay" msgstr "আমেরিকা/ą¦—ą§ą¦²ą§‡ą¦ø_বে" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" "ą¦†ą¦¤ą¦²ą¦¾ą¦Øą§ą¦¤ą¦æą¦• সময় - নোভা ą¦øą§ą¦•ą§‹ą¦¶ą¦æą§Ÿą¦¾ - ১৯৬৬-ą§§ą§Æą§­ą§§-র ą¦®ą¦§ą§ą¦Æą§‡ দিবালোক ą¦øą¦‚ą¦°ą¦•ą§ą¦·ą¦£ą¦•ą¦¾ą¦°ą§€ সময় না " "ą¦¬ą§ą¦Æą¦¬ą¦¹ą¦¾ą¦°ą¦•ą¦¾ą¦°ą§€ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:193 msgid "America/Godthab" msgstr "আমেরিকা/গঔ঄াব" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "আমেরিকা/ą¦—ą§‚ą¦œ_বে" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "ą¦†ą¦¤ą¦²ą¦¾ą¦Øą§ą¦¤ą¦æą¦• সময় - ą¦²ą§ą¦Æą¦¾ą¦¬ą§ą¦°ą§‡ą¦”ą¦° - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "আমেরিকা/ą¦—ą§ą¦°ą§ą¦Æą¦¾ą¦Øą§ą¦”_ą¦Ÿą¦¾ą¦°ą§ą¦•" #: timezones.h:200 msgid "America/Grenada" msgstr "আমেরিকা/ą¦—ą§ą¦°ą§‡ą¦Øą¦¾ą¦”ą¦¾" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "আমেরিকা/ą¦—ą§ą§Ÿą¦¾ą¦”ą§‡ą¦²ą§ą¦Ŗ" #: timezones.h:202 msgid "America/Guatemala" msgstr "আমেরিকা/ą¦—ą§ą§Ÿą¦¾ą¦Ÿą§‡ą¦®ą¦¾ą¦²ą¦¾" #: timezones.h:203 msgid "America/Guayaquil" msgstr "আমেরিকা/ą¦—ą¦¾ą§Ÿą¦¾ą¦•ą§ą¦‡ą¦²" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "মূল ą¦­ą§ą¦–ą¦£ą§ą¦”" #: timezones.h:206 msgid "America/Guyana" msgstr "আমেরিকা/ą¦—ą¦¾ą§Ÿą¦¾ą¦Øą¦¾" #: timezones.h:207 msgid "America/Halifax" msgstr "আমেরিকা/ą¦¹ą§ą¦Æą¦¾ą¦²ą¦æą¦«ą§ą¦Æą¦¾ą¦•ą§ą¦ø" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "ą¦†ą¦¤ą¦²ą¦¾ą¦Øą§ą¦¤ą¦æą¦• সময় - নোভা ą¦øą§ą¦•ą§‹ą¦¶ą¦æą§Ÿą¦¾ (অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø), PEI" #: timezones.h:210 msgid "America/Havana" msgstr "আমেরিকা/হাভানা" #: timezones.h:211 msgid "America/Hermosillo" msgstr "আমেরিকা/ą¦¹ą¦¾ą¦°ą§ą¦®ą§‹ą¦øą¦æą¦²ą§‹" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø ą¦øą§ą¦Ÿą§ą¦Æą¦¾ą¦Øą§ą¦”ą¦¾ą¦°ą§ą¦” সময় - সোনোরা" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "আমেরিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾ą¦Ŗą§‹ą¦²ą¦æą¦ø" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "ą¦Ŗą§‚ą¦°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾ - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "আমেরিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ą¦Øą§‹ą¦•ą§ą¦ø" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "ą¦øą§‡ą¦Øą§ą¦Ÿą§ą¦°ą¦¾ą¦² সময় - ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾ - ą¦øą§ą¦Ÿą¦¾ą¦°ą§ą¦• ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿą¦æ" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "আমেরিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ą¦®ą¦¾ą¦°ą§‡ą¦™ą§ą¦—ą§‹" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "ą¦Ŗą§‚ą¦°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾ - ą¦•ą§ą¦°ą¦«ą§‹ą¦°ą§ą¦” ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿą¦æ" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "আমেরিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ą¦Ŗą¦æą¦Ÿą¦¾ą¦°ą§ą¦øą¦¬ą¦¾ą¦°ą§ą¦—" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "ą¦Ŗą§‚ą¦°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾ - পাইক ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿą¦æ" #: timezones.h:226 msgid "America/Indianapolis" msgstr "আমেরিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾ą¦Ŗą§‹ą¦²ą¦æą¦ø" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "আমেরিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ą¦Ÿą§‡ą¦²_সিটি" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "ą¦øą§‡ą¦Øą§ą¦Ÿą§ą¦°ą¦¾ą¦² সময় - ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾ - পেরি ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿą¦æ" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "আমেরিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ভিভে" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "ą¦Ŗą§‚ą¦°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾ - ą¦øą§ą¦‡ą§Žą¦œą¦¾ą¦°ą¦²ą§ą¦Æą¦¾ą¦Øą§ą¦” ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿą¦æ" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "আমেরিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/ভিনসেন" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "ą¦Ŗą§‚ą¦°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾ - ঔেভিস, ঔুবোইস, ą¦Øą¦•ą§ą¦ø ও ą¦®ą¦¾ą¦°ą§ą¦Ÿą¦æą¦Ø ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿą¦æ" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "আমেরিকা/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾/উইনামেক" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "ą¦Ŗą§‚ą¦°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾ - ą¦Ŗą§ą¦²ą¦¾ą¦øą§ą¦•ą¦æ ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿą¦æ" #: timezones.h:239 msgid "America/Inuvik" msgstr "আমেরিকা/ইনুভিক" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø সময় - ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦‰ą¦¤ą§ą¦¤ą¦°ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦Ŗą§ą¦°ą¦¦ą§‡ą¦¶" # not sure #: timezones.h:242 msgid "America/Iqaluit" msgstr "আমেরিকা/ą¦‡ą¦•ą¦¾ą¦²ą§ą¦‡ą¦Ÿ" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "ą¦Ŗą§‚ą¦°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦Ŗą§‚ą¦°ą§ą¦¬ নুনাভুট - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" # not sure #: timezones.h:245 msgid "America/Jamaica" msgstr "আমেরিকা/ą¦œą¦¾ą¦®ą¦¾ą¦‡ą¦•ą¦¾" #: timezones.h:246 msgid "America/Jujuy" msgstr "আমেরিকা/ą¦œą§ą¦œą§ą¦‡" #: timezones.h:247 msgid "America/Juneau" msgstr "আমেরিকা/ą¦œą§ą¦Øą¦æą¦‰" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "ą¦†ą¦²ą¦¾ą¦øą§ą¦•ą¦¾ সময় - ą¦†ą¦²ą¦¾ą¦øą§ą¦•ą¦¾ ą¦Ŗą§ą¦Æą¦¾ą¦Ø-ą¦¹ą§ą¦Æą¦¾ą¦Øą§ą¦”ą§‡ą¦²" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "আমেরিকা/ą¦•ą§‡ą¦Øą§ą¦Ÿą¦¾ą¦•ą¦æ/লুইভিল" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "ą¦Ŗą§‚ą¦°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦•ą§‡ą¦Øą§ą¦Ÿą¦¾ą¦•ą¦æ - লুইভিল ą¦…ą¦žą§ą¦šą¦²" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "আমেরিকা/ą¦•ą§‡ą¦Øą§ą¦Ÿą¦¾ą¦•ą¦æ/ą¦®ą§‹ą¦Øą§ą¦Ÿą¦æą¦šą§‡ą¦²ą§‹" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "ą¦Ŗą§‚ą¦°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦•ą§‡ą¦Øą§ą¦Ÿą¦¾ą¦•ą¦æ - ą¦“ą§Ÿą§‡ą¦‡ą¦Ø ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿą¦æ" #: timezones.h:256 msgid "America/Knox_IN" msgstr "আমেরিকা/ą¦Øą§‹ą¦•ą§ą¦ø_ইন" #: timezones.h:257 msgid "America/La_Paz" msgstr "আমেরিকা/লা_পাজ" #: timezones.h:258 msgid "America/Lima" msgstr "আমেরিকা/লিমা" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "আমেরিকা/লস_ą¦…ą§ą¦Æą¦¾ą¦žą§ą¦œą§‡ą¦²ą¦ø" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ ą¦®ą¦¹ą¦¾ą¦øą¦¾ą¦—ą¦°ą§€ą§Ÿ সময়" #: timezones.h:262 msgid "America/Louisville" msgstr "আমেরিকা/লুইভিল" #: timezones.h:263 msgid "America/Maceio" msgstr "আমেরিকা/মাসিও" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "ą¦†ą¦²ą¦¾ą¦—ą§‹ą§Ÿą¦¾ą¦ø, ą¦øą¦¾ą¦°ą§ą¦—ą¦æą¦Ŗą§‡" #: timezones.h:266 msgid "America/Managua" msgstr "আমেরিকা/ą¦®ą¦¾ą¦Øą¦¾ą¦—ą§ą§Ÿą¦¾" #: timezones.h:267 msgid "America/Manaus" msgstr "আমেরিকা/মানাউস" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "ą¦Ŗą§‚ą¦ƒ ą¦†ą¦®ą¦¾ą¦œą§‹ą¦Øą¦¾ą¦ø" #: timezones.h:270 msgid "America/Marigot" msgstr "আমেরিকা/ą¦®ą¦¾ą¦°ą¦æą¦—ą¦Ÿ" #: timezones.h:271 msgid "America/Martinique" msgstr "আমেরিকা/ą¦®ą¦¾ą¦°ą§ą¦Ÿą¦æą¦Øą¦æą¦•" #: timezones.h:272 msgid "America/Matamoros" msgstr "আমেরিকা/ą¦®ą¦¾ą¦Ÿą¦¾ą¦®ą§‹ą¦°ą§‹ą¦ø" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" "ą¦®ą¦¾ą¦°ą§ą¦•ą¦æą¦Ø ą¦øą§‡ą¦Øą§ą¦Ÿą§ą¦°ą¦¾ą¦² সময় - ą¦•ą§‹ą§Ÿą¦¾ą¦¹ą§ą¦‡ą¦²ą¦¾, ঔুরাংগো, ą¦Øą§ą§Ÿą§‡ą¦­ą§‹ লিওন, ą¦Ÿą¦¾ą¦®ą§ą¦Ŗą¦¾ą¦‰ą¦²ą¦æą¦Ŗą¦¾ą¦ø (ą¦®ą¦¾ą¦°ą§ą¦•ą¦æą¦Ø " "ą¦øą§€ą¦®ą¦¾ą¦Øą§ą¦¤ą§‡ą¦° কাছে)" #: timezones.h:275 msgid "America/Mazatlan" msgstr "আমেরিকা/মাজাতলান" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø সময় - দঃ বাজা, নায়ারিত, ą¦øą¦æą¦Øą¦¾ą¦²ą§‹ą§Ÿą¦¾" #: timezones.h:278 msgid "America/Mendoza" msgstr "আমেরিকা/ą¦®ą§‡ą¦Øą§ą¦”ą§‹ą¦œą¦¾" #: timezones.h:279 msgid "America/Menominee" msgstr "আমেরিকা/মেনোমিনি" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "ą¦øą§‡ą¦Øą§ą¦Ÿą§ą¦°ą¦¾ą¦² সময় - ą¦®ą¦æą¦šą¦æą¦—ą¦Ø - ঔিকিনসন, গোগেবিক, ą¦†ą¦šą¦‡ą¦°ą¦Ø ও মেনোমিনি ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿą¦æ" #: timezones.h:282 msgid "America/Merida" msgstr "আমেরিকা/মেরিঔা" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "ą¦øą§‡ą¦Øą§ą¦Ÿą§ą¦°ą¦¾ą¦² সময় - ą¦•ą§ą¦Æą¦¾ą¦®ą§ą¦Ŗą§‡ą¦šą§‡, ą¦‡ą¦‰ą¦•ą¦¾ą¦Ÿą¦¾ą¦Ø" #: timezones.h:285 msgid "America/Mexico_City" msgstr "আমেরিকা/ą¦®ą§‡ą¦•ą§ą¦øą¦æą¦•ą§‹_সিটি" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "ą¦øą§‡ą¦Øą§ą¦Ÿą§ą¦°ą¦¾ą¦² সময় - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:288 msgid "America/Miquelon" msgstr "আমেরিকা/মিকেলন" #: timezones.h:289 msgid "America/Moncton" msgstr "আমেরিকা/ą¦®ą¦™ą§ą¦•ą¦Ÿą¦Ø" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "ą¦†ą¦¤ą¦²ą¦¾ą¦Øą§ą¦¤ą¦æą¦• সময় -নিউ ą¦¬ą§ą¦°ą¦¾ą¦Øą§ą¦øą¦‰ą¦‡ą¦•" #: timezones.h:292 msgid "America/Monterrey" msgstr "আমেরিকা/ą¦®ą¦Øą§ą¦Ÿą§‡ą¦°ą¦æ" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" "ą¦®ą§‡ą¦•ą§ą¦øą¦æą¦•ą§ą¦Æą¦¾ą¦Ø ą¦øą§‡ą¦Øą§ą¦Ÿą§ą¦°ą¦¾ą¦² সময় - ą¦•ą§‹ą§Ÿą¦¾ą¦¹ą§ą¦‡ą¦²ą¦¾, ঔুরাংগো, ą¦Øą§ą§Ÿą§‡ą¦­ą§‹ লিওন, ą¦Ÿą¦¾ą¦®ą§ą¦Ŗą¦¾ą¦‰ą¦²ą¦æą¦Ŗą¦¾ą¦ø ą¦®ą¦¾ą¦°ą§ą¦•ą¦æą¦Ø " "ą¦øą§€ą¦®ą¦¾ą¦Øą§ą¦¤ą§‡ą¦° দূরে" #: timezones.h:295 msgid "America/Montevideo" msgstr "আমেরিকা/ą¦®ą¦Øą§ą¦Ÿą§‡ą¦­ą¦æą¦”ą¦æą¦“" #: timezones.h:296 msgid "America/Montreal" msgstr "আমেরিকা/ą¦®ą¦Øą¦Ÿą§ą¦°ą¦æą¦²" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "ą¦Ŗą§‚ą¦°ą§ą¦¬ą§€ą§Ÿ সময় - কিউবেক - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:299 msgid "America/Montserrat" msgstr "আমেরিকা/ą¦®ą¦Øą§ą¦Ÿą¦øą§‡ą¦°ą¦¾ą¦¤" #: timezones.h:300 msgid "America/Nassau" msgstr "আমেরিকা/নাসাউ" #: timezones.h:301 msgid "America/New_York" msgstr "আমেরিকা/নিউ_ą¦‡ą§Ÿą§‹ą¦°ą§ą¦•" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "ą¦Ŗą§‚ą¦°ą§ą¦¬ą§€ą§Ÿ সময়" #: timezones.h:304 msgid "America/Nipigon" msgstr "আমেরিকা/নিপিগন" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" "ą¦Ŗą§‚ą¦°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦“ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦æą¦“ ও কিউবেক - ১৯৬৭-ą§§ą§Æą§­ą§©-র ą¦®ą¦§ą§ą¦Æą§‡ দিবালোক ą¦øą¦‚ą¦°ą¦•ą§ą¦·ą¦£ą¦•ą¦¾ą¦°ą§€ সময় না " "ą¦¬ą§ą¦Æą¦¬ą¦¹ą¦¾ą¦°ą¦•ą¦¾ą¦°ą§€ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:307 msgid "America/Nome" msgstr "আমেরিকা/নোম" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "ą¦†ą¦²ą¦¾ą¦øą§ą¦•ą¦¾ সময় - ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦†ą¦²ą¦¾ą¦øą§ą¦•ą¦¾" #: timezones.h:310 msgid "America/Noronha" msgstr "আমেরিকা/নোরোনহা" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "ą¦†ą¦¤ą¦²ą¦¾ą¦Øą§ą¦¤ą¦æą¦• ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "আমেরিকা/ą¦Øą¦°ą§ą¦„_ą¦”ą¦¾ą¦•ą§‹ą¦Ÿą¦¾/ą¦øą§‡ą¦Øą§ą¦Ÿą¦¾ą¦°" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "ą¦øą§‡ą¦Øą§ą¦Ÿą§ą¦°ą¦¾ą¦² সময় - ą¦‰ą¦¤ą§ą¦¤ą¦° ą¦”ą¦¾ą¦•ą§‹ą¦Ÿą¦¾ - অলিভার ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿą¦æ" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "আমেরিকা/ą¦Øą¦°ą§ą¦„_ą¦”ą¦¾ą¦•ą§‹ą¦Ÿą¦¾/নিউ_সেলাম" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "ą¦øą§‡ą¦Øą§ą¦Ÿą§ą¦°ą¦¾ą¦² সময় - ą¦‰ą¦¤ą§ą¦¤ą¦° ą¦”ą¦¾ą¦•ą§‹ą¦Ÿą¦¾ - ą¦®ą¦°ą§ą¦Ÿą¦Ø ą¦•ą¦¾ą¦‰ą¦Øą§ą¦Ÿą¦æ (ą¦®ą§ą¦Æą¦¾ą¦Øą§ą¦”ą¦¾ą¦Ø ą¦…ą¦žą§ą¦šą¦² ą¦¬ą§ą¦Æą¦¾ą¦¤ą§€ą¦¤)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "আমেরিকা/ą¦“ą¦œą¦æą¦Øą¦¾ą¦—ą¦¾" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "ą¦®ą¦¾ą¦°ą§ą¦•ą¦æą¦Ø ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø সময় - চিহুয়াহুয়া ą¦®ą¦¾ą¦°ą§ą¦•ą¦æą¦Ø ą¦øą§€ą¦®ą¦¾ą¦Øą§ą¦¤ą§‡ą¦° কাছে" #: timezones.h:322 msgid "America/Panama" msgstr "আমেরিকা/পানামা" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "আমেরিকা/পাংনিরতুং" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "ą¦Ŗą§‚ą¦°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦Ŗą¦¾ą¦‚ą¦—ą¦Øą¦æą¦°ą¦Ÿą§ą¦‚ą¦—, নুনাভুট" #: timezones.h:326 msgid "America/Paramaribo" msgstr "আমেরিকা/পারামারিবো" #: timezones.h:327 msgid "America/Phoenix" msgstr "আমেরিকা/ą¦«ą¦æą¦Øą¦æą¦•ą§ą¦ø" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø ą¦øą§ą¦Ÿą§ą¦Æą¦¾ą¦Øą§ą¦”ą¦¾ą¦°ą§ą¦” সময় - ą¦…ą§ą¦Æą¦¾ą¦°ą¦æą¦œą§‹ą¦Øą¦¾" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "আমেরিকা/ą¦Ŗą§‹ą¦°ą§ą¦Ÿ_ও_ą¦Ŗą§ą¦°ą¦æą¦Øą§ą¦ø" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "আমেরিকা/ą¦Ŗą§‹ą¦°ą§ą¦¤ą§‹_ą¦ą¦•ą¦°" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "আমেরিকা/ą¦Ŗą§‹ą¦°ą§ą¦Ÿ_অফ_ą¦øą§ą¦Ŗą§‡ą¦Ø" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "আমেরিকা/ą¦Ŗą§‹ą¦°ą§ą¦¤ą§‹_ভেলহো" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "ą¦°ą§‹ą¦Øą§ą¦”ą§‹ą¦Øą¦æą§Ÿą¦¾" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "আমেরিকা/ą¦Ŗą§ą§Ÿą§‡ą¦°ą§ą¦¤ą§‹_রিকো" #: timezones.h:337 msgid "America/Rainy_River" msgstr "আমেরিকা/রেইনি_রিভার" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "ą¦øą§‡ą¦Øą§ą¦Ÿą§ą¦°ą¦¾ą¦² সময় - রেইনি রিভার ও ą¦«ą§‹ą¦°ą§ą¦Ÿ ą¦«ą§ą¦°ą¦¾ą¦Øą§ą¦øą§‡ą¦ø, ą¦“ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦æą¦“" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "আমেরিকা/ą¦°ą§‡ą¦™ą§ą¦•ą¦æą¦Ø_ą¦‡ą¦Øą¦²ą§‡ą¦Ÿ" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "ą¦øą§‡ą¦Øą§ą¦Ÿą§ą¦°ą¦¾ą¦² সময় - ą¦®ą¦§ą§ą¦Æ নুনাভুট" #: timezones.h:343 msgid "America/Recife" msgstr "আমেরিকা/রিসাইফে" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "ą¦Ŗą¦¾ą¦°ą§ą¦Øą§‡ą¦®ą¦¬ą§ą¦•ą§‹" #: timezones.h:346 msgid "America/Regina" msgstr "আমেরিকা/ą¦°ą§‡ą¦œą¦æą¦Øą¦¾" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "ą¦øą§‡ą¦Øą§ą¦Ÿą§ą¦°ą¦¾ą¦² ą¦øą§ą¦Ÿą§ą¦Æą¦¾ą¦Øą§ą¦”ą¦¾ą¦°ą§ą¦” সময় - ą¦øą¦¾ą¦øą§ą¦•ą¦¾ą¦šą§ą§Ÿą¦¾ą¦Ø - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:349 msgid "America/Resolute" msgstr "আমেরিকা/ą¦°ą§‡ą¦øą§‹ą¦²ą¦æą¦‰ą¦Ÿ" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "ą¦Ŗą§‚ą¦°ą§ą¦¬ą§€ą§Ÿ ą¦øą§ą¦Ÿą§ą¦Æą¦¾ą¦Øą§ą¦”ą¦¾ą¦°ą§ą¦” সময় - ą¦°ą§‡ą¦øą§‹ą¦²ą¦æą¦‰ą¦Ÿ, নুনাভুট" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "আমেরিকা/রিও_ą¦¬ą§ą¦°ą¦¾ą¦™ą§ą¦•ą§‹" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "ą¦ą¦•ą¦°" #: timezones.h:355 msgid "America/Rosario" msgstr "আমেরিকা/ą¦°ą§‹ą¦œą¦¾ą¦°ą¦æą¦“" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "আমেরিকা/ą¦øą¦¾ą¦Øą§ą¦Ÿą¦¾_ইসাবেল" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "ą¦®ą§‡ą¦•ą§ą¦øą¦æą¦•ą§ą¦Æą¦¾ą¦Ø ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ ą¦®ą¦¹ą¦¾ą¦øą¦¾ą¦—ą¦°ą§€ą§Ÿ সময় - বায়া ą¦•ą§ą¦Æą¦¾ą¦²ą¦æą¦«ą§‹ą¦°ą§ą¦Øą¦æą§Ÿą¦¾ ą¦®ą¦¾ą¦°ą§ą¦•ą¦æą¦Ø ą¦øą§€ą¦®ą¦¾ą¦Øą§ą¦¤ą§‡ą¦° দূরে" #: timezones.h:359 msgid "America/Santarem" msgstr "আমেরিকা/ą¦øą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§‡ą¦®" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "পঃ পারা" #: timezones.h:362 msgid "America/Santiago" msgstr "আমেরিকা/ą¦øą¦¾ą¦Øą§ą¦Ÿą¦æą§Ÿą¦¾ą¦—ą§‹" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "আমেরিকা/ą¦øą¦¾ą¦Øą§ą¦Ÿą§‹_ą¦”ą§‹ą¦®ą¦æą¦™ą§ą¦—ą§‹" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "আমেরিকা/সাও_পাওলো" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "দঃ ও ą¦¦ą¦ƒą¦Ŗą§‚ą¦ƒ ą¦¬ą§ą¦°ą¦¾ą¦œą¦æą¦² (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "আমেরিকা/ą¦øą§ą¦•ą§‹ą¦°ą§ą¦øą¦¬ą¦æą¦øą¦¾ą¦Øą§ą¦”" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "ą¦øą§ą¦•ą§‹ą¦°ą§ą¦øą¦¬ą¦¾ą¦‡ą¦øą¦¾ą¦Øą§ą¦¦ / ą¦‡ą¦Ÿą§‹ą¦•ą§‹ą¦°ą§ą¦Ÿą§‹ą¦°ą¦®ą¦æą¦Ÿ" #: timezones.h:372 msgid "America/Shiprock" msgstr "আমেরিকা/শিপরক" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø সময় - ą¦Øą¦¾ą¦­ą¦¾ą¦œą§‹" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "আমেরিকা/ą¦øą§‡ą¦‡ą¦Øą§ą¦Ÿ_ą¦¬ą¦¾ą¦°ą§ą¦„ą§‡ą¦²ą§‡ą¦®ą¦æ" #: timezones.h:376 msgid "America/St_Johns" msgstr "আমেরিকা/ą¦øą§‡ą¦Øą§ą¦Ÿ_জনস" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "ą¦Øą¦æą¦‰ą¦«ą¦¾ą¦‰ą¦Øą§ą¦”ą¦²ą§ą¦Æą¦¾ą¦Øą§ą¦” সময়, ą¦¦ą¦ƒą¦Ŗą§‚ą¦ƒ ą¦²ą§ą¦Æą¦¾ą¦¬ą§ą¦°ą§‡ą¦”ą¦° সহ" #: timezones.h:379 msgid "America/St_Kitts" msgstr "আমেরিকা/ą¦øą§‡ą¦Øą§ą¦Ÿ_ą¦•ą¦æą¦Ÿą¦ø" #: timezones.h:380 msgid "America/St_Lucia" msgstr "আমেরিকা/ą¦øą§‡ą¦Øą§ą¦Ÿ_লুসিয়া" #: timezones.h:381 msgid "America/St_Thomas" msgstr "আমেরিকা/ą¦øą§‡ą¦Øą§ą¦Ÿ_঄োমাস" #: timezones.h:382 msgid "America/St_Vincent" msgstr "আমেরিকা/ą¦øą§‡ą¦Øą§ą¦Ÿ_ą¦­ą¦æą¦Øą¦øą§‡ą¦Øą§ą¦Ÿ" #: timezones.h:383 msgid "America/Swift_Current" msgstr "আমেরিকা/ą¦øą§ą¦‡ą¦«ą¦Ÿ_ą¦•ą¦¾ą¦°ą§‡ą¦Øą§ą¦Ÿ" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "ą¦øą§‡ą¦Øą§ą¦Ÿą§ą¦°ą¦¾ą¦² ą¦øą§ą¦Ÿą§ą¦Æą¦¾ą¦Øą§ą¦”ą¦¾ą¦°ą§ą¦” সময় - ą¦øą¦¾ą¦øą§ą¦•ą¦¾ą¦šą§ą§Ÿą¦¾ą¦Ø - ą¦®ą¦§ą§ą¦Æą¦Ŗą¦¶ą§ą¦šą¦æą¦®" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "আমেরিকা/তেগুসিগালপা" #: timezones.h:387 msgid "America/Thule" msgstr "আমেরিকা/঄ুল" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "঄ুলে / ą¦Ŗą¦æą¦Ÿą§ą¦«ą¦æą¦•" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "আমেরিকা/ą¦„ą¦¾ą¦Øą§ą¦”ą¦¾ą¦°_বে" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "ą¦Ŗą§‚ą¦°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦„ą¦¾ą¦Øą§ą¦”ą¦¾ą¦° বে, ą¦“ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦æą¦“" #: timezones.h:393 msgid "America/Tijuana" msgstr "আমেরিকা/ą¦„ą§‡ą¦“ą§Ÿą¦¾ą¦Øą¦¾" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "ą¦®ą¦¾ą¦°ą§ą¦•ą¦æą¦Ø ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ ą¦®ą¦¹ą¦¾ą¦øą¦¾ą¦—ą§€ą§Ÿ সময় - বায়া ą¦•ą§ą¦Æą¦¾ą¦²ą¦æą¦«ą§‹ą¦°ą§ą¦Øą¦æą§Ÿą¦¾ ą¦®ą¦¾ą¦°ą§ą¦•ą¦æą¦Ø ą¦øą§€ą¦®ą¦¾ą¦Øą§ą¦¤ą§‡ą¦° কাছে" #: timezones.h:396 msgid "America/Toronto" msgstr "আমেরিকা/ą¦Ÿą¦°ą§‹ą¦Øą§ą¦Ÿą§‹" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "ą¦Ŗą§‚ą¦°ą§ą¦¬ą§€ą§Ÿ সময় - ą¦“ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦æą¦“ - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:399 msgid "America/Tortola" msgstr "আমেরিকা/টরটলা" #: timezones.h:400 msgid "America/Vancouver" msgstr "আমেরিকা/ą¦­ą§ą¦Æą¦¾ą¦‚ą¦•ą§ą¦­ą¦¾ą¦°" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ ą¦®ą¦¹ą¦¾ą¦øą¦¾ą¦—ą§€ą§Ÿ সময় - ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦¬ą§ą¦°ą¦æą¦Ÿą¦æą¦¶ ą¦•ą¦²ą¦¾ą¦®ą§ą¦¬ą¦æą§Ÿą¦¾" #: timezones.h:403 msgid "America/Virgin" msgstr "আমেরিকা/ą¦­ą¦¾ą¦°ą§ą¦œą¦æą¦Ø" #: timezones.h:404 msgid "America/Whitehorse" msgstr "আমেরিকা/ą¦“ą§Ÿą¦¾ą¦‡ą¦Ÿą¦¹ą¦°ą§ą¦ø" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤ ą¦®ą¦¹ą¦¾ą¦øą¦¾ą¦—ą§€ą§Ÿ সময় - ą¦¦ą¦•ą§ą¦·ą¦æą¦£ ইউকন" #: timezones.h:407 msgid "America/Winnipeg" msgstr "আমেরিকা/উইনিপেগ" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "ą¦øą§‡ą¦Øą§ą¦Ÿą§ą¦°ą¦¾ą¦² সময় - ą¦®ą¦¾ą¦Øą¦æą¦Ÿą§‹ą¦¬ą¦¾ ও ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦“ą¦Øą§ą¦Ÿą¦¾ą¦°ą¦æą¦“" #: timezones.h:410 msgid "America/Yakutat" msgstr "আমেরিকা/ą¦‡ą§Ÿą¦¾ą¦•ą§ą¦¤ą¦¾ą¦¤" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "ą¦†ą¦²ą¦¾ą¦øą§ą¦•ą¦¾ - ą¦†ą¦²ą¦¾ą¦øą§ą¦•ą¦¾ ą¦Ŗą§ą¦Æą¦¾ą¦Øą¦¹ą§ą¦Æą¦¾ą¦Øą§ą¦”ą§‡ą¦² নেক" #: timezones.h:413 msgid "America/Yellowknife" msgstr "আমেরিকা/ą¦‡ą§Ÿą§‡ą¦²ą§‹ą¦Øą¦¾ą¦‡ą¦«" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø সময় - ą¦®ą¦§ą§ą¦Æ ą¦‰ą¦¤ą§ą¦¤ą¦°ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦Ŗą§ą¦°ą¦¦ą§‡ą¦¶" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦•ą§ą¦Æą¦¾ą¦øą¦æ" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "কেসি ą¦øą§ą¦Ÿą§‡ą¦¶ą¦Ø, বেইলি ą¦‰ą¦Ŗą¦¦ą§ą¦¬ą§€ą¦Ŗ" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦”ą§ą¦Æą¦¾ą¦­ą¦æą¦ø" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "ঔেভিস ą¦øą§ą¦Ÿą§‡ą¦¶ą¦Ø, ą¦­ą§‡ą¦øą§ą¦Ÿą¦«ą§‹ą¦²ą§ą¦” ą¦¹ą¦æą¦²ą§ą¦ø" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦¦ą§ą¦®ą§‹ą¦Øą§ą¦¤ ą¦¦ą§ą¦Æ উরভিল" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "ą¦¦ą§ą¦®ą§‹ą¦Øą§ą¦¤ ą¦¦ą§ą¦Æ উরভিল ą¦øą§ą¦Ÿą§‡ą¦¶ą¦Ø, ą¦Ÿą§‡ą¦°ą§‡ ą¦…ą§ą¦Æą¦¾ą¦”ą§‡ą¦²ą¦æ" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦®ą§ą¦Æą¦¾ą¦•ą§‹ą§Ÿą§‡ą¦°ą¦æ" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "ą¦®ą§ą¦Æą¦¾ą¦•ą§‹ą§Ÿą§‡ą¦°ą¦æ ą¦¦ą§ą¦¬ą§€ą¦Ŗą§‡ą¦° ą¦øą§ą¦Ÿą§‡ą¦¶ą¦Ø, ą¦®ą§ą¦Æą¦¾ą¦•ą§‹ą§Ÿą§‡ą¦°ą¦æ ą¦¦ą§ą¦¬ą§€ą¦Ŗ" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/মসন" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "মোসন ą¦øą§ą¦Ÿą§‡ą¦¶ą¦Ø, ą¦¹ą§‹ą¦²ą§ą¦® বে" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦®ą§ą¦Æą¦¾ą¦•ą¦®ą¦¾ą¦°ą§ą¦”ą§‹" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "ą¦®ą§ą¦Æą¦¾ą¦•ą¦®ą¦¾ą¦°ą§ą¦”ą§‹ ą¦øą§ą¦Ÿą§‡ą¦¶ą¦Ø, রোস ą¦¦ą§ą¦¬ą§€ą¦Ŗ" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦Ŗą¦¾ą¦²ą§ą¦®ą¦¾ą¦°" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "ą¦Ŗą¦¾ą¦²ą§ą¦®ą¦¾ą¦° ą¦øą§ą¦Ÿą§‡ą¦¶ą¦Ø, ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦­ą¦¾ą¦°ą§ą¦ø ą¦¦ą§ą¦¬ą§€ą¦Ŗ" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/রো঄েরা" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "রো঄েরা ą¦øą§ą¦Ÿą§‡ą¦¶ą¦Ø, ą¦…ą§ą¦Æą¦¾ą¦”ą§‡ą¦²ą§‡ą¦‡ą¦” ą¦¦ą§ą¦¬ą§€ą¦Ŗ" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦¦ą¦•ą§ą¦·ą¦æą¦£_মেরু" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "ą¦…ą§ą¦Æą¦¾ą¦®ą§ą¦Øą§ą¦”ą¦øą§‡ą¦Ø-ą¦øą§ą¦•ą¦Ÿ ą¦øą§ą¦Ÿą§‡ą¦¶ą¦Ø, ą¦¦ą¦•ą§ą¦·ą¦æą¦£ মেরু" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦øą¦æą¦“ą§Ÿą¦¾" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "ą¦øą¦æą¦“ą§Ÿą¦¾ ą¦øą§ą¦Ÿą§‡ą¦¶ą¦Ø, ই ą¦“ą¦™ą§ą¦—ą§ą¦² ą¦¦ą§ą¦¬ą§€ą¦Ŗ" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "ą¦…ą§ą¦Æą¦¾ą¦Øą§ą¦Ÿą¦¾ą¦°ą§ą¦•ą¦Ÿą¦æą¦•ą¦¾/ą¦­ą§‹ą¦øą§ą¦Ÿą¦•" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "ą¦­ą§‹ą¦øą§ą¦Ÿą¦• ą¦øą§ą¦Ÿą§‡ą¦¶ą¦Ø, দঃ ą¦®ą§ą¦Æą¦¾ą¦—ą¦Øą§‡ą¦Ÿą¦æą¦• মেরু" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "ą¦†ą¦°ą§ą¦•ą¦Ÿą¦æą¦•/ą¦²ą¦‚ą¦‡ą§Ÿą¦¾ą¦°ą¦¬ą§‡ą¦Ø" #: timezones.h:450 msgid "Asia/Aden" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦ą¦”ą§‡ą¦Ø" #: timezones.h:451 msgid "Asia/Almaty" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦†ą¦²ą¦®ą¦¾ą¦Ÿą¦æ" #: timezones.h:454 msgid "Asia/Amman" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦†ą¦®ą§ą¦®ą¦¾ą¦Ø" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/আনাদির" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০৮ - বেরিং সাগর" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/আকতু" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "অতিরাউ (অতিরাউ, ą¦—ą§ą¦°ą§Ÿą§‡ą¦­), ą¦®ą¦¾ą¦‚ą¦—ą¦æą¦øą§ą¦¤ą¦¾ą¦‰ (ą¦®ą¦¾ą¦Øą¦•ą¦æą¦øą§ą¦¤ą¦¾ą¦‰)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/আকতোবে" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "আখতোবে (আখতোবে)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦†ą¦¶ā€Œą¦—ą¦¾ą¦¬ą¦¾ą¦¤" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/আশখাবাদ" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/বাগদাদ" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/বাহরেন" #: timezones.h:468 msgid "Asia/Baku" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/বাকু" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦¬ą§ą¦Æą¦¾ą¦™ą§ą¦•ą¦•" #: timezones.h:470 msgid "Asia/Beirut" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦¬ą§‡ą¦‡ą¦°ą§ą¦Ÿ" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/বিশকেক" #: timezones.h:472 msgid "Asia/Brunei" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦¬ą§ą¦°ą§ą¦Øą§‡ą¦‡" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/কলকাতা" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦šą§ˆą¦¬ą¦¾ą¦²ą¦›ą¦¾ą¦Ø" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "ঔোরনোঔ, সুখবাতার" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦šą§‹ą¦‚ą¦•ą¦æą¦‚" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "ą¦®ą¦§ą§ą¦Æ ą¦šą§€ą¦Ø - সিচুয়ান, ইউনান, ą¦—ą§ą§Ÿą¦¾ą¦‚ą¦œą¦æ, ą¦øą¦¾ą¦‚ą¦—ą¦œą¦æ, ą¦—ą¦æą¦œą§, ą¦Ŗą§ą¦°ą¦­ą§ƒą¦¤ą¦æ" #: timezones.h:480 msgid "Asia/Chungking" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦šą§ą¦‚ą¦•ą¦æą¦‚" #: timezones.h:481 msgid "Asia/Colombo" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦•ą§‹ą¦²ą§‹ą¦®ą§ą¦¬ą§‹" #: timezones.h:482 msgid "Asia/Dacca" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ঢাকা" #: timezones.h:483 msgid "Asia/Damascus" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ঔামাসকাস" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ঢাকা" #: timezones.h:485 msgid "Asia/Dili" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ঔিলি" #: timezones.h:486 msgid "Asia/Dubai" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/দুবাই" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/দুশানবে" #: timezones.h:488 msgid "Asia/Gaza" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦—ą¦¾ą¦œą¦¾" #: timezones.h:489 msgid "Asia/Harbin" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦¹ą¦¾ą¦°ą§ą¦¬ą¦æą¦Ø" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "ą¦¹ą§‡ą¦‡ą¦²ą§‹ą¦œą¦æą§Ÿą¦¾ą¦‚ (মোহে ą¦¬ą§ą¦Æą¦¤ą§€ą¦¤), জিলিন" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/হো_চি_মিন" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/হং _কং" #: timezones.h:494 msgid "Asia/Hovd" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/হোভঔ" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "বায়ান-ওলগিই, গোভি-ą¦…ą¦²ą§ą¦Ÿą¦¾ą¦‡, হোভঔ, উভস, ą¦œą¦¾ą¦­ą¦–ą¦¾ą¦Ø" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦‡ą¦°ą¦•ą§ą¦Ÿą¦ø" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০৫ - লেক ą¦¬ą§ˆą¦•ą¦¾ą¦²" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦‡ą¦øą§ą¦¤ą¦¾ą¦Øą¦¬ą§ą¦²" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦œą¦¾ą¦•ą¦¾ą¦°ą§ą¦¤ą¦¾" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "জাভা ও ą¦øą§ą¦®ą¦¾ą¦¤ą§ą¦°ą¦¾" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/জায়াপুরা" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "ą¦‡ą¦°ą¦æą§Ÿą¦¾ą¦Ø জায়া ও ą¦®ą§‹ą¦²ą§ą¦•ą§ą¦•ą¦¾ą¦ø" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦œą§‡ą¦°ą§ą¦øą§‡ą¦²ą¦¾ą¦®" #: timezones.h:508 msgid "Asia/Kabul" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/কাবুল" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦•ą¦¾ą¦®ą¦šą¦¾ą¦Ÿą¦•ą¦¾" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০৮ - ą¦•ą¦¾ą¦®ą¦šą¦¾ą¦Ÿą¦•ą¦¾" #: timezones.h:512 msgid "Asia/Karachi" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦•ą¦°ą¦¾ą¦šą§€" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/কাশগার" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦¤ą¦æą¦¬ą§ą¦¬ą¦¤ ও ą¦œą¦æą¦‚ą¦œą¦æą§Ÿą¦¾ą¦‚" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦•ą¦¾ą¦Ÿą¦®ą¦¾ą¦Øą§ą¦”ą§" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦•ą¦¾ą¦Ÿą¦®ą¦¾ą¦Øą§ą¦”ą§" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/কোলকাতা" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦•ą§ą¦°ą¦¾ą¦øą¦Øą§‹ą§Ÿą¦¾ą¦°ą§ą¦øą§ą¦•" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০৪ - ą¦‡ą§Ÿą§‡ą¦Øą¦æą¦øą§‡ą¦‡ নদী" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦•ą§ą§Ÿą¦¾ą¦²ą¦¾_ą¦²ą¦¾ą¦®ą§ą¦Ŗą§ą¦°" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "ą¦®ą¦¾ą¦²ą¦¾ą§Ÿą§‡ą¦¶ą¦æą§Ÿą¦¾ ą¦‰ą¦Ŗą¦¦ą§ą¦¬ą§€ą¦Ŗ" #: timezones.h:525 msgid "Asia/Kuching" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦•ą§ą¦šą¦æą¦‚" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "সাবাক ও ą¦øą¦¾ą¦°ą¦¾ą¦“ą§Ÿą¦¾ą¦•" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦•ą§ą§Ÿą§‡ą¦¤" #: timezones.h:529 msgid "Asia/Macao" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/মাকাও" #: timezones.h:530 msgid "Asia/Macau" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/মাকাও" #: timezones.h:531 msgid "Asia/Magadan" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/মাগাদান" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০৮ - মাগাদান" #: timezones.h:534 msgid "Asia/Makassar" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/মাকাসসার" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "ą¦Ŗą§‚ą¦°ą§ą¦¬ ও ą¦¦ą¦•ą§ą¦·ą¦æą¦£ ą¦¬ą§‹ą¦°ą§ą¦Øą¦æą¦“, সেলেবেস, বালি, নুসা ą¦Ÿą§‡ą¦‚ą¦—ą§‡ą¦°ą¦¾, ą¦Ŗą¦¶ą§ą¦šą¦æą¦® তিমুর" #: timezones.h:537 msgid "Asia/Manila" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦®ą§ą¦Æą¦¾ą¦Øą¦æą¦²ą¦¾" #: timezones.h:538 msgid "Asia/Muscat" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦®ą¦¾ą¦øą¦•ą¦¾ą¦Ÿ" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦Øą¦æą¦•ą§‹ą¦øą¦æą§Ÿą¦¾" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦Øą§‹ą¦­ą§‹ą¦•ą§ą¦œą¦Øą§‡ą¦Ÿą¦•ą§ą¦ø" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০৩ - ą¦Øą§‹ą¦­ą§‹ą¦•ą§ą¦œą¦Øą§‡ą¦Ÿą¦•ą§ą¦ø" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦Øą§‹ą¦­ą§‹ą¦øą¦æą¦¬ą¦¾ą¦°ą§ą¦øą§ą¦•" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০৩ - ą¦Øą§‹ą¦­ą§‹ą¦øą¦æą¦¬ą¦¾ą¦°ą§ą¦øą§ą¦•" #: timezones.h:546 msgid "Asia/Omsk" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦“ą¦®ą¦øą§ą¦•" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০৩ - ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦øą¦¾ą¦‡ą¦¬ą§‡ą¦°ą¦æą§Ÿą¦¾" #: timezones.h:549 msgid "Asia/Oral" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ওরাল" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦•ą¦¾ą¦œą¦¾ą¦–ą¦øą§ą¦¤ą¦¾ą¦Ø" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/নোম_ফেন" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦Ŗą¦Øą§ą¦Ÿą¦æą§Ÿą¦¾ą¦Øą¦¾ą¦•" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ও ą¦®ą¦§ą§ą¦Æ ą¦¬ą§‹ą¦°ą§ą¦Øą¦æą¦“" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦Ŗą¦æą§Ÿą§‹ą¦‚ą¦‡ą§Ÿą¦¾ą¦‚" #: timezones.h:557 msgid "Asia/Qatar" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/কাতার" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦•ą¦æą¦œą¦æą¦²ą§‹ą¦°ą§ą¦¦ą¦¾" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "ą¦•ą¦æą¦œą¦æą¦²ą§‹ą¦°ą§ą¦¦ą¦¾ (ą¦•ą¦æą¦œą¦æą¦²ą§‹ą¦°ą§ą¦¦ą¦¾, ą¦•ą¦æą¦œą¦æą¦²-ą¦“ą¦°ą§ą¦¦ą¦¾)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦‡ą§Ÿą¦¾ą¦‚ą¦—ą¦Ø" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/রিয়াদ" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/রিয়াদ৮৭" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/রিয়াদ৮৮" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/রিয়াদ৮৯" #: timezones.h:566 msgid "Asia/Saigon" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦øą¦¾ą§Ÿą¦—ą¦Ø" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/শাকালিন" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০৭ - সাখালিন ą¦¦ą§ą¦¬ą§€ą¦Ŗ" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦øą¦¾ą¦®ą¦¾ą¦°ą¦–ą¦¾ą¦Øą§ą¦¦" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦‰ą¦œą¦¬ą§‡ą¦•ą¦æą¦øą§ą¦¤ą¦¾ą¦Ø" #: timezones.h:573 msgid "Asia/Seoul" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/সিওল" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦øą¦¾ą¦‚ą¦˜ą¦¾ą¦‡" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "ą¦Ŗą§‚ą¦°ą§ą¦¬ ą¦šą§€ą¦Ø - ą¦¬ą§‡ą¦‡ą¦œą¦æą¦‚, ą¦—ą§ą§Ÿą¦¾ą¦‚ą¦”ą¦Ø, ą¦øą¦¾ą¦‚ą¦˜ą¦¾ą¦‡ ą¦Ŗą§ą¦°ą¦­ą§ƒą¦¤ą¦æ" #: timezones.h:577 msgid "Asia/Singapore" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦øą¦æą¦™ą§ą¦—ą¦¾ą¦Ŗą§ą¦°" #: timezones.h:578 msgid "Asia/Taipei" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/তাইপে" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦¤ą¦¾ą¦øą¦•ą§‡ą¦Øą§ą¦¤" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "ą¦Ŗą§‚ą¦°ą§ą¦¬ ą¦‰ą¦œą¦¬ą§‡ą¦•ą¦æą¦øą§ą¦¤ą¦¾ą¦Ø" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/তবিলিশি" #: timezones.h:583 msgid "Asia/Tehran" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/তেহেরান" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/তেল_আভিভ" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦„ą¦æą¦®ą§ą¦¬ą§" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦„ą¦æą¦®ą§ą¦Ŗą§" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦Ÿą§‹ą¦•ą¦æą¦“" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦‰ą¦œą§ą¦‚_ą¦Ŗą¦¾ą¦Øą§ą¦¦ą¦¾ą¦‚" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/উলানবাতোর" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/উলান_বাতোর" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/উরুমকি" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "অধিকাংশ ą¦¤ą¦æą¦¬ą§ą¦¬ą¦¤ ও ą¦œą¦æą¦‚ą¦œą¦æą§Ÿą¦¾ą¦‚" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦­ą¦æą§Ÿą§‡ą¦Øą¦¤ą¦æą§Ÿą§‡ą¦Ø" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦­ą§ą¦²ą¦¾ą¦”ą¦æą¦­ą§‹ą¦øą§ą¦Ÿą¦•" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০৭ - আমুর নদী" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦‡ą§Ÿą¦¾ą¦•ą§ą¦Ÿą¦ø" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০৬ - লেনা নদী" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦‡ą§Ÿą¦¾ą¦•ą¦¾ą¦¤ą¦¾ą¦°ą¦æą¦Øą¦¬ą§ą¦°ą§ą¦—" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০২ - উরাল" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "ą¦ą¦¶ą¦æą§Ÿą¦¾/ą¦‡ą§Ÿą¦¾ą¦°ą¦­ą¦¾ą¦Ø" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/ą¦ą¦œą§‹ą¦°ą§‡" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "ą¦ą¦œą§‹ą¦°ą§‡ą¦ø" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/বারমুঔা" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/ą¦•ą§ą¦Æą¦¾ą¦Øą¦¾ą¦°ą¦æ" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "ą¦•ą§ą¦Æą¦¾ą¦Øą¦¾ą¦°ą¦æ ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/কেপ_ą¦­ą¦¾ą¦°ą§ą¦”ą¦æ" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/ফেরো" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/ফেরো" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/জান_ą¦®ą¦¾ą§Ÿą§‡ą¦Ø" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/মাদিইরা" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "মাদেইরা ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/ą¦°ą¦æą¦•ą§Ÿą¦¾ą¦­ą¦æą¦•" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/সাউ঄_ą¦œą¦°ą§ą¦œą¦æą§Ÿą¦¾" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/ą¦øą§ą¦Ÿą§‡ą¦Øą¦²ą¦æ" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•/ą¦øą§‡ą¦Øą§ą¦Ÿ_হেলেনা" #: timezones.h:625 msgid "Australia/ACT" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦…ą§ą¦Æą¦¾ą¦”ą¦æą¦²ą§‡ą¦”" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "ą¦¦ą¦•ą§ą¦·ą¦æą¦£ ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦¬ą§ą¦°ą¦æą¦øą¦¬ą§‡ą¦Ø" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "ą¦•ą§ą¦‡ą¦Øą§ą¦øą¦²ą§ą¦Æą¦¾ą¦Øą§ą¦” - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦¬ą§ą¦°ą§‹ą¦•ą§‡ą¦Ø_হিল" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "নিউ সাউ঄ ą¦“ą§Ÿą§‡ą¦²ą§ą¦ø - ą¦‡ą§Ÿą¦¾ą¦Øą¦•ą§‹ą¦‰ą¦‡ą¦Øą¦¾" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦•ą§ą¦Æą¦¾ą¦Øą¦¬ą§‡ą¦°ą¦¾" #: timezones.h:636 msgid "Australia/Currie" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/কারি" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "তাসমানিয়া - কিং ą¦¦ą§ą¦¬ą§€ą¦Ŗ" #: timezones.h:639 msgid "Australia/Darwin" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ঔারউইন" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "ą¦‰ą¦¤ą§ą¦¤ą¦° ą¦…ą¦žą§ą¦šą¦²" #: timezones.h:642 msgid "Australia/Eucla" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦‡ą¦‰ą¦•ą§ą¦²ą¦¾" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾ - ą¦‡ą¦‰ą¦•ą§ą¦²ą¦¾ ą¦…ą¦žą§ą¦šą¦²" #: timezones.h:645 msgid "Australia/Hobart" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦¹ą§‹ą¦¬ą¦¾ą¦°ą§ą¦Ÿ" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "ą¦¤ą¦¾ą¦øą¦®ą§‡ą¦Øą¦æą§Ÿą¦¾ - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:648 msgid "Australia/LHI" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦²ą¦æą¦Øą§ą¦”ą¦¾ą¦®ą§ą¦Æą¦¾ą¦Ø" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "ą¦•ą§ą¦‡ą¦Øą§ą¦øą¦²ą§ą¦Æą¦¾ą¦Øą§ą¦” - হলিঔে ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦²ą¦°ą§ą¦”_হাউই" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "ą¦²ą¦°ą§ą¦” ą¦¹ą¦¾ą¦“ą§Ÿą¦æ ą¦¦ą§ą¦¬ą§€ą¦Ŗ" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦®ą§‡ą¦²ą¦¬ą§‹ą¦°ą§ą¦Ø" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "ą¦­ą¦æą¦•ą§ą¦Ÿą§‹ą¦°ą¦æą§Ÿą¦¾" #: timezones.h:658 msgid "Australia/North" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦‰ą¦¤ą§ą¦¤ą¦°" #: timezones.h:659 msgid "Australia/NSW" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/নিউ সাই঄ ą¦“ą§Ÿą§‡ą¦²ą¦ø" #: timezones.h:660 msgid "Australia/Perth" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦Ŗą¦¾ą¦°ą§ą¦„" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "ą¦Ŗą¦¶ą§ą¦šą¦æą¦® ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾ - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:663 msgid "Australia/Queensland" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦•ą§ą¦‡ą¦Øą§ą¦øą¦²ą§ą¦Æą¦¾ą¦Øą§ą¦”" #: timezones.h:664 msgid "Australia/South" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦¦ą¦•ą§ą¦·ą¦æą¦£" #: timezones.h:665 msgid "Australia/Sydney" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/সিঔনি" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "নিউ সাউ঄ ą¦“ą§Ÿą§‡ą¦²ą¦ø - অধিকাংশ ą¦øą§ą¦„ą¦¾ą¦Ø" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/তাসমানিয়া" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦­ą¦æą¦•ą§ą¦Ÿą§‹ą¦°ą¦æą§Ÿą¦¾" #: timezones.h:670 msgid "Australia/West" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦Ŗą¦¶ą§ą¦šą¦æą¦®" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ą¦…ą¦øą§ą¦Ÿą§ą¦°ą§‡ą¦²ą¦æą§Ÿą¦¾/ą¦‡ą§Ÿą¦¾ą¦Øą¦•ą§‹ą¦‰ą¦‡ą¦Øą¦¾" #: timezones.h:672 msgid "Brazil/Acre" msgstr "ą¦¬ą§ą¦°ą¦¾ą¦œą¦æą¦²/ą¦ą¦•ą¦°" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "ą¦¬ą§ą¦°ą¦¾ą¦œą¦æą¦²/ঔিনহোনহা" #: timezones.h:674 msgid "Brazil/East" msgstr "ą¦¬ą§ą¦°ą¦¾ą¦œą¦æą¦²/ą¦Ŗą§‚ą¦°ą§ą¦¬" #: timezones.h:675 msgid "Brazil/West" msgstr "ą¦¬ą§ą¦°ą¦¾ą¦œą¦æą¦²/ą¦Ŗą¦¶ą§ą¦šą¦æą¦®" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "কানাঔা/ą¦†ą¦Ÿą¦²ą¦¾ą¦Øą§ą¦Ÿą¦æą¦•" #: timezones.h:677 msgid "Canada/Central" msgstr "কানাঔা/ą¦øą§‡ą¦Øą§ą¦Ÿą§ą¦°ą¦¾ą¦²" #: timezones.h:678 msgid "Canada/Eastern" msgstr "কানাঔা/ą¦Ŗą§‚ą¦°ą§ą¦¬" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "কানাঔা/ą¦Ŗą§‚ą¦°ą§ą¦¬-ą¦øą¦¾ą¦øą¦•ą¦¾ą¦šą§ą§Ÿą¦¾ą¦Ø" #: timezones.h:680 msgid "Canada/Mountain" msgstr "কানাঔা/ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "কানাঔা/ą¦Øą¦æą¦‰ą¦«ą¦¾ą¦‰ą¦Øą§ą¦”ą¦²ą§ą¦Æą¦¾ą¦Øą§ą¦”" #: timezones.h:682 msgid "Canada/Pacific" msgstr "কানাঔা/ą¦Ŗą§ą¦Æą¦¾ą¦øą¦æą¦«ą¦æą¦•" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "কানাঔা/ą¦øą¦¾ą¦øą¦•ą¦¾ą¦šą§ą§Ÿą¦¾ą¦Ø" #: timezones.h:684 msgid "Canada/Yukon" msgstr "কানাঔা/ইউকোন" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "চিলি/ą¦•ą¦Øą§ą¦Ÿą¦æą¦Øą§‡ą¦Øą§ą¦Ÿą¦¾ą¦²" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "চিলি/ą¦‡ą¦øą§ą¦Ÿą¦¾ą¦°ą¦†ą¦‡ą¦²ą§ą¦Æą¦¾ą¦Øą§ą¦”" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "কিউবা" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "মিশর" #: timezones.h:692 msgid "Eire" msgstr "ą¦†ą§Ÿą¦¾ą¦°" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/ą¦—ą§ą¦°ą¦æą¦Øą¦‰ą¦‡ą¦š" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/জুলু" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "ইউরোপ/ą¦†ą¦®ą¦øą§ą¦Ÿą¦¾ą¦°ą¦”ą¦¾ą¦®" #: timezones.h:731 msgid "Europe/Andorra" msgstr "ইউরোপ/ą¦ą¦Øą§ą¦”ą§‹ą¦°ą¦¾" #: timezones.h:732 msgid "Europe/Athens" msgstr "ইউরোপ/ą¦ą¦„ą§‡ą¦Øą§ą¦ø" #: timezones.h:733 msgid "Europe/Belfast" msgstr "ইউরোপ/ą¦¬ą§‡ą¦²ą¦«ą¦¾ą¦øą§ą¦Ÿ" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "ইউরোপ/ą¦¬ą§‡ą¦²ą¦—ą§ą¦°ą§‡ą¦”" #: timezones.h:735 msgid "Europe/Berlin" msgstr "ইউরোপ/ą¦¬ą¦¾ą¦°ą§ą¦²ą¦æą¦Ø" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "ইউরোপ/ą¦¬ą§ą¦°ą¦¾ą¦¤ą¦æą¦øą¦²ą¦¾ą¦­ą¦¾" #: timezones.h:737 msgid "Europe/Brussels" msgstr "ইউরোপ/ą¦¬ą§ą¦°ą¦¾ą¦øą§‡ą¦²ą¦ø" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "ইউরোপ/ą¦¬ą§ą¦–ą¦¾ą¦°ą§‡ą¦øą§ą¦Ÿ" #: timezones.h:739 msgid "Europe/Budapest" msgstr "ইউরোপ/ą¦¬ą§ą¦”ą¦¾ą¦Ŗą§‡ą¦øą§ą¦Ÿ" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "ইউরোপ/ą¦šą¦æą¦¶ą¦æą¦Øą¦¾ą¦‰" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "ইউরোপ/কোপেনহেগেন" #: timezones.h:742 msgid "Europe/Dublin" msgstr "ইউরোপ/ঔাবলিন" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "ইউরোপ/ą¦œą¦æą¦¬ą§ą¦°ą¦¾ą¦²ą¦Ÿą¦¾ą¦°" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "ইউরোপ/ą¦—ą§ą§Ÿą§‡ą¦°ą§ą¦Øą§ą¦øą§‡" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "ইউরোপ/ą¦¹ą§‡ą¦²ą¦øą¦æą¦™ą§ą¦•ą¦æ" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "ইউরোপ/আইল_অফ_ą¦®ą§ą¦Æą¦¾ą¦Ø" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "ইউরোপ/ą¦‡ą¦øą§ą¦¤ą¦¾ą¦Øą¦¬ą§ą¦²" #: timezones.h:748 msgid "Europe/Jersey" msgstr "ইউরোপ/ą¦œą¦¾ą¦°ą§ą¦øą¦æ" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "ইউরোপ/ą¦•ą¦¾ą¦²ą¦æą¦Øą¦æą¦Øą¦—ą§ą¦°ą¦¾ą¦”" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "ą¦®ą¦øą§ą¦•ą§‹-০১ - ą¦•ą¦¾ą¦²ą¦æą¦Øą¦—ą§ą¦°ą¦¾ą¦”" #: timezones.h:752 msgid "Europe/Kiev" msgstr "ইউরোপ/কিভ" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "ইউরোপ/লিসবন" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "ইউরোপ/ą¦²ą§ą¦¬ą¦²ą¦‡ą§Ÿą¦¾ą¦Øą¦¾" #: timezones.h:759 msgid "Europe/London" msgstr "ইউরোপ/ą¦²ą¦Øą§ą¦”ą¦Ø" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "ইউরোপ/ą¦²ą§ą¦•ą§ą¦øą§‡ą¦®ą¦¬ą§ą¦°ą§ą¦—" #: timezones.h:761 msgid "Europe/Madrid" msgstr "ইউরোপ/ą¦®ą¦¾ą¦¦ą§ą¦°ą¦æą¦¦" #: timezones.h:764 msgid "Europe/Malta" msgstr "ইউরোপ/ą¦®ą¦²ą§ą¦Ÿą¦¾" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "ইউরোপ/মারিহাম" #: timezones.h:766 msgid "Europe/Minsk" msgstr "ইউরোপ/ą¦®ą¦æą¦Øą¦øą§ą¦•" #: timezones.h:767 msgid "Europe/Monaco" msgstr "ইউরোপ/মোনেকো" #: timezones.h:768 msgid "Europe/Moscow" msgstr "ইউরোপ/ą¦®ą¦øą§ą¦•ą§‹" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০০ - ą¦Ŗą¦¶ą§ą¦šą¦æą¦® রাশিয়া" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "ইউরোপ/ą¦Øą¦æą¦•ą§‹ą¦øą¦æą§Ÿą¦¾" #: timezones.h:772 msgid "Europe/Oslo" msgstr "ইউরোপ/ওসলো" #: timezones.h:773 msgid "Europe/Paris" msgstr "ইউরোপ/ą¦Ŗą§ą¦Æą¦¾ą¦°ą¦æą¦ø" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "ইউরোপ/পোঔগোরিকা" #: timezones.h:775 msgid "Europe/Prague" msgstr "ইউরোপ/ą¦Ŗą§ą¦°ą¦¾ą¦—" #: timezones.h:776 msgid "Europe/Riga" msgstr "ইউরোপ/রিগা" #: timezones.h:777 msgid "Europe/Rome" msgstr "ইউরোপ/রোম" #: timezones.h:778 msgid "Europe/Samara" msgstr "ইউরোপ/সামারা" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "ą¦®ą¦øą§ą¦•ą§‹ - সামারা, ą¦‰ą¦¦ą¦®ą§ą¦°ą§ą¦¶ą¦æą§Ÿą¦¾" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "ইউরোপ/সান_মারিনো" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "ইউরোপ/ą¦øą¦¾ą¦°ą¦¾ą§Ÿą§‡ą¦­ą§‹" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "ইউরোপ/ą¦øą¦æą¦®ą§ą¦«ą¦æą¦°ą§‹ą¦Ŗą§‡ą¦²" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "ą¦®ą¦§ą§ą¦Æ ą¦•ą§ą¦°ą¦æą¦®ą¦æą§Ÿą¦¾" #: timezones.h:786 msgid "Europe/Skopje" msgstr "ইউরোপ/ą¦øą§ą¦•ą¦Ŗą§Ÿą¦¾" #: timezones.h:787 msgid "Europe/Sofia" msgstr "ইউরোপ/ą¦øą§‹ą¦«ą¦æą§Ÿą¦¾" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "ইউরোপ/ą¦øą§ą¦Ÿą¦•ą¦¹ą§‹ą¦®" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "ইউরোপ/ą¦Ÿą§ą¦Æą¦¾ą¦²ą¦æą¦Ø" #: timezones.h:790 msgid "Europe/Tirane" msgstr "ইউরোপ/তিরানা" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "ইউরোপ/তিরাসপোল" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "ইউরোপ/ą¦‰ą¦œą¦—ą§‹ą¦°ą§‹ą¦¦" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "ą¦°ą§ą¦„ą§‡ą¦Øą¦æą§Ÿą¦¾" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "ইউরোপ/ভাদুজ" #: timezones.h:796 msgid "Europe/Vatican" msgstr "ইউরোপ/ą¦­ą§ą¦Æą¦¾ą¦Ÿą¦æą¦•ą§‡ą¦Ø" #: timezones.h:797 msgid "Europe/Vienna" msgstr "ইউরোপ/ą¦­ą¦æą§Ÿą§‡ą¦Øą¦¾" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "ইউরোপ/ভিলনিয়াস" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "ইউরোপ/ą¦­ą§‹ą¦²ą§ą¦—ą§‹ą¦—ą§ą¦°ą¦¾ą¦”" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "ą¦®ą¦øą§ą¦•ą§‹+০০ - ą¦•ą§ą¦Æą¦¾ą¦øą¦Ŗą¦æą§Ÿą¦¾ą¦Ø সাগর" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "ইউরোপ/ą¦“ą§Ÿą¦¾ą¦°ą¦ø" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "ইউরোপ/ą¦œą¦¾ą¦—ą§ą¦°ą§‡ą¦¬" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "ইউরোপ/ą¦œą¦¾ą¦Ŗą§‹ą¦°ą§‹ą¦Æą§‡ą¦‡" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "ą¦œą§ą¦Æą¦¾ą¦«ą§‹ą¦°ą¦æą¦œą¦æą§Ÿą¦¾, পূ ą¦²ą§ą¦—ą¦¾ą¦Øą¦øą§ą¦• / ą¦œą§ą¦Æą¦¾ą¦«ą§‹ą¦°ą¦æą¦œą¦æą§Ÿą¦¾, পূ ą¦²ą§ą¦¹ą¦¾ą¦Øą¦øą§ą¦•" #: timezones.h:807 msgid "Europe/Zurich" msgstr "ইউরোপ/ą¦œą§ą¦°ą¦æą¦–" #: timezones.h:808 msgid "Factory" msgstr "ą¦«ą§ą¦Æą¦¾ą¦•ą§ą¦Ÿą¦°ą¦æ" #: timezones.h:809 msgid "GB" msgstr "ą¦—ą§ą¦°ą§‡ą¦Ÿ ą¦¬ą§ą¦°ą¦æą¦Ÿą§‡ą¦Ø" #: timezones.h:810 msgid "GB-Eire" msgstr "ą¦—ą§ą¦°ą§‡ą¦Ÿ ą¦¬ą§ą¦°ą¦æą¦Ÿą§‡ą¦Ø-ą¦†ą§Ÿą¦¾ą¦°" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "ą¦—ą§ą¦°ą¦æą¦Øą¦‰ą¦‡ą¦š" #: timezones.h:816 msgid "Hongkong" msgstr "হং কং" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "ą¦†ą¦‡ą¦øą¦²ą§ą¦Æą¦¾ą¦Øą§ą¦”" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "ভারত মহাসাগর/ą¦†ą¦Øą§ą¦¤ą¦¾ą¦Øą¦¾ą¦Øą¦¾ą¦°ą¦æą¦­ą§‹" #: timezones.h:820 msgid "Indian/Chagos" msgstr "ভারত মহাসাগর/ą¦šą¦¾ą¦—ą§‹ą¦ø" #: timezones.h:821 msgid "Indian/Christmas" msgstr "ভারত মহাসাগর/ą¦•ą§ą¦°ą¦æą¦øą§ą¦Ÿą¦®ą¦¾ą¦ø" #: timezones.h:822 msgid "Indian/Cocos" msgstr "ভারত মহাসাগর/কোকোস" #: timezones.h:823 msgid "Indian/Comoro" msgstr "ভারত মহাসাগর/কোমোরো" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "ভারত মহাসাগর/ą¦•ą¦¾ą¦°ą¦—ą§ą§Ÿą§‡ą¦²ą§‡ą¦Ø" #: timezones.h:825 msgid "Indian/Mahe" msgstr "ভারত মহাসাগর/মাহে" #: timezones.h:826 msgid "Indian/Maldives" msgstr "ভারত মহাসাগর/মালদিভ" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "ভারত মহাসাগর/মরিশাস" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "ভারত মহাসাগর/ą¦®ą§‡ą§Ÿą§‹ą¦¤ą§‡" #: timezones.h:829 msgid "Indian/Reunion" msgstr "ভারত মহাসাগর/ą¦°ą¦æą¦‰ą¦Øą¦æą§Ÿą¦Ø" #: timezones.h:830 msgid "Iran" msgstr "ইরান" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "ą¦‡ą¦œą¦°ą¦¾ą§Ÿą§‡ą¦²" #: timezones.h:833 msgid "Jamaica" msgstr "ą¦œą¦¾ą¦®ą¦¾ą¦‡ą¦•ą¦¾" #: timezones.h:834 msgid "Japan" msgstr "জাপান" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "ą¦•ą§Ÿą¦¾ą¦œą¦¾ą¦²ą¦æą¦‡ą¦Ø" #: timezones.h:836 msgid "Libya" msgstr "লিবিয়া" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "ą¦®ą§‡ą¦•ą§ą¦øą¦æą¦•ą§‹/ą¦¬ą¦¾ą¦¹ą¦¾ą¦Øą§‹ą¦°ą§ą¦¤ą§‡" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "ą¦®ą§‡ą¦•ą§ą¦øą¦æą¦•ą§‹/বাহাসুর" #: timezones.h:840 msgid "Mexico/General" msgstr "ą¦®ą§‡ą¦•ą§ą¦øą¦æą¦•ą§‹/সাধারণ" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "ą¦®ą¦§ą§ą¦Æą¦Ŗą§ą¦°ą¦¾ą¦šą§ą¦Æ/রিয়াদ৮৭" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "ą¦®ą¦§ą§ą¦Æą¦Ŗą§ą¦°ą¦¾ą¦šą§ą¦Æ/রিয়াদ৮৮" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "ą¦®ą¦§ą§ą¦Æą¦Ŗą§ą¦°ą¦¾ą¦šą§ą¦Æ/রিয়াদ৮৯" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "ą¦Øą¦¾ą¦­ą¦¾ą¦œą§‹" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦ą¦Ŗą¦æą§Ÿą¦¾" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦…ą¦•ą¦²ą§ą¦Æą¦¾ą¦Øą§ą¦”" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦šą§ą¦Æą¦¾ą¦Ÿą¦¹ą¦¾ą¦®" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "ą¦šą§ą¦Æą¦¾ą¦Ÿą¦¹ą§ą¦Æą¦¾ą¦® ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦šą§ą¦‰ą¦•" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "ą¦šą§ą¦‰ą¦• (ą¦Ÿą§ą¦°ą§ą¦•) ও ą¦‡ą§Ÿą¦¾ą¦Ŗ" #: timezones.h:859 msgid "Pacific/Easter" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦‡ą¦øą§ą¦Ÿą¦¾ą¦°" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "ą¦‡ą¦øą§ą¦Ÿą¦¾ą¦° ą¦¦ą§ą¦¬ą§€ą¦Ŗ ও সালা ই ą¦—ą§‹ą¦®ą§‡ą¦œ" #: timezones.h:862 msgid "Pacific/Efate" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦ą¦«ą¦¾ą¦¤ą§‡" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦ą¦Øą§ą¦”ą¦¾ą¦°ą¦¬ą§ą¦°ą¦æ" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "ą¦«ą¦æą¦Øą¦æą¦•ą§ą¦ø ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ফাকাওফো" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ফিজি" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ফুনাফুতি" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/গালাপাগোস" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "গালাপাগোস ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦—ą§ą¦Æą¦¾ą¦®ą¦¬ą¦æą§Ÿą¦¾ą¦°" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "ą¦—ą§ą¦Æą¦¾ą¦®ą§ą¦¬ą¦æą§Ÿą¦¾ą¦° ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦—ą§ą§Ÿą¦¾ą¦”ą¦¾ą¦²ą¦•ą¦¾ą¦Øą¦¾ą¦²" #: timezones.h:876 msgid "Pacific/Guam" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦—ą§ą§Ÿą¦¾ą¦®" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/হনোলুলু" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "ą¦¹ą¦¾ą¦“ą§Ÿą¦¾ą¦‡" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦œą¦Øą¦øą§ą¦Ÿą¦Ø" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "ą¦œą¦Øą¦øą§ą¦Ÿą¦Ø ą¦…ą§ą¦Æą¦¾ą¦Ÿą§‹ą¦²" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/কিরিবাস" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "লাইন ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" # is this kiribati? #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/কোসরে" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "কোসরেই" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦•ą§Ÿą¦¾ą¦œą¦¾ą¦²ą¦æą¦‡ą¦Ø" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦®ą¦¾ą¦œą§ą¦°ą§‹" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/মারকিসাস" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "ą¦®ą¦¾ą¦°ą§ą¦•ą§ą¦‡ą¦øą¦¾ą¦ø ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" # not sure #: timezones.h:898 msgid "Pacific/Midway" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦®ą¦æą¦”ą¦“ą§Ÿą§‡" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "ą¦®ą¦æą¦”ą¦“ą§Ÿą§‡ ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/নাউরু" #: timezones.h:902 msgid "Pacific/Niue" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/নিউ" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦Øą§‹ą¦°ą¦«ą§‹ą¦²ą§ą¦•" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/নুমিয়া" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/পাগো_পাগো" #: timezones.h:906 msgid "Pacific/Palau" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/পালাউ" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦Ŗą¦æą¦Ÿą¦•ą§‡ą§Ÿą¦¾ą¦°ą§ą¦Ø" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/পোনপেই" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr " পোনপেই (পোনাপে)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/পোনাপে" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦Ŗą§‹ą¦°ą§ą¦Ÿ-ą¦®ą§‹ą¦°ą§ą¦øą¦¬ą¦æ" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦°ą¦¾ą¦°ą§‹ą¦Ÿą§‹ą¦™ą§ą¦—ą¦¾" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/সাইপান" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦øą¦¾ą¦®ą§‹ą§Ÿą¦¾" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/তাহিতি" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "ą¦øą§‹ą¦øą¦¾ą¦‡ą¦Ÿą¦æ ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦¤ą¦¾ą¦°ą¦¾ą¦“ą§Ÿą¦¾" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "ą¦—ą¦æą¦²ą¦¬ą¦¾ą¦°ą§ą¦Ÿ ą¦¦ą§ą¦¬ą§€ą¦Ŗą¦Ŗą§ą¦žą§ą¦œ" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦Ÿą§‹ą¦™ą§ą¦—ą¦¾ą¦Ÿą¦¾ą¦Ŗą§" #: timezones.h:923 msgid "Pacific/Truk" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦Ÿą§ą¦°ą§ą¦•" #: timezones.h:924 msgid "Pacific/Wake" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦“ą§Ÿą§‡ą¦•" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "ą¦“ą§Ÿą§‡ą¦• ą¦¦ą§ą¦¬ą§€ą¦Ŗ" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦“ą§Ÿą¦¾ą¦²ą¦æą¦ø" #: timezones.h:928 msgid "Pacific/Yap" msgstr "ą¦Ŗą§ą¦°ą¦¶ą¦¾ą¦Øą§ą¦¤_মহাসাগর/ą¦‡ą§Ÿą¦¾ą¦Ŗ" #: timezones.h:929 msgid "Poland" msgstr "ą¦Ŗą§‹ą¦²ą§ą¦Æą¦¾ą¦Øą§ą¦”" #: timezones.h:930 msgid "Portugal" msgstr "ą¦Ŗą¦°ą§ą¦¤ą§ą¦—ą¦¾ą¦²" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "ą¦øą¦æą¦™ą§ą¦—ą¦¾ą¦Ŗą§ą¦°" #: timezones.h:937 msgid "Turkey" msgstr "ą¦¤ą§ą¦°ą¦øą§ą¦•" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦†ą¦²ą¦¾ą¦øą§ą¦•ą¦¾" #: timezones.h:941 msgid "US/Aleutian" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦†ą¦²ą¦æą¦‰ą¦¶ą¦æą§Ÿą¦¾ą¦Ø" #: timezones.h:942 msgid "US/Arizona" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦†ą¦°ą¦æą¦œą§‹ą¦Øą¦¾" #: timezones.h:943 msgid "US/Central" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦øą§‡ą¦Øą§ą¦Ÿą§ą¦°ą¦¾ą¦²" #: timezones.h:944 msgid "US/Eastern" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦‡ą¦øą§ą¦Ÿą¦¾ą¦°ą§ą¦Ø" # msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦Ŗą§‚ą¦°ą§ą¦¬ą¦¬ą¦°ą§ą¦¤ą§€" #: timezones.h:945 msgid "US/East-Indiana" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦Ŗą§‚ą¦°ą§ą¦¬-ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾" #: timezones.h:946 msgid "US/Hawaii" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦¹ą¦¾ą¦“ą§Ÿą¦¾ą¦‡" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦‡ą¦Øą§ą¦”ą¦æą§Ÿą¦¾ą¦Øą¦¾-ą¦øą§ą¦Ÿą¦¾ą¦°ą§ą¦•" #: timezones.h:948 msgid "US/Michigan" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/মিশিগান" #: timezones.h:949 msgid "US/Mountain" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦®ą¦¾ą¦‰ą¦Øą§ą¦Ÿą§‡ą¦Ø" #: timezones.h:950 msgid "US/Pacific" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦Ŗą§ą¦Æą¦¾ą¦øą¦æą¦«ą¦æą¦•" #: timezones.h:951 msgid "US/Samoa" msgstr "ą¦Æą§ą¦•ą§ą¦¤ą¦°ą¦¾ą¦·ą§ą¦Ÿą§ą¦°/ą¦øą¦¾ą¦®ą§‹ą§Ÿą¦¾" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "জুলু" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/sv.po0000664000175000017500000017717214632072346023726 0ustar fabiofabio# Swedish messages for timezones. # Copyright Ā© 2004, 2006, 2008, 2010 Free Software Foundation, Inc. # Christian Rose , 2004, 2005, 2006 # Magnus Larsson , 2007, 2009. # Gƶran Uddeborg , 2008, 2010. # # $Revision: 1.2 $ msgid "" msgstr "" "Project-Id-Version: timezones\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-20 16:04+0200\n" "PO-Revision-Date: 2010-08-23 21:07+0200\n" "Last-Translator: Gƶran Uddeborg \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Afrika/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Afrika/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Afrika/Addis_Abeba" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Afrika/Alger" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Afrika/Asmara" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Afrika/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Afrika/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Afrika/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Afrika/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Afrika/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Afrika/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Afrika/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Afrika/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Afrika/Kairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Afrika/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Afrika/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Ceuta & Melilla" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Afrika/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Afrika/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Afrika/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Afrika/Djibouti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Afrika/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Afrika/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Afrika/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Afrika/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Afrika/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Afrika/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Afrika/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Afrika/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Afrika/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Afrika/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "vƤstra Dem. Rep. Kongo" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Afrika/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Afrika/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Afrika/LomĆ©" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Afrika/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Afrika/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "ƶstra Dem. Rep. Kongo" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Afrika/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Afrika/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Afrika/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Afrika/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Afrika/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Afrika/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Afrika/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Afrika/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Afrika/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Afrika/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Afrika/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Afrika/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Afrika/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Afrika/SĆ£o_TomĆ©" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Afrika/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Afrika/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Afrika/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Afrika/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "Amerika/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "Aleutianska ƶarna" #: timezones.h:63 msgid "America/Anchorage" msgstr "Amerika/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "Alaska-tid" #: timezones.h:66 msgid "America/Anguilla" msgstr "Amerika/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "Amerika/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "Amerika/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Tocantins" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Amerika/Argentina/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Buenos Aires (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Amerika/Argentina/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "Catamarca (CT), Chubut (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "America/Argentina/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Amerika/Argentina/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "de flesta platserna (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Amerika/Argentina/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Jujuy (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Amerika/Argentina/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "La Rioja (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Amerika/Argentina/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "Mendoza (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Amerika/Argentina/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Santa Cruz (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "Amerika/Argentina/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Amerika/Argentina/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "San Juan (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "Amerika/Argentina/San_Luis" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "San Luis (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "America/Argentina/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Tucuman (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Amerika/Argentina/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Tierra del Fuego (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "Amerika/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "Amerika/Asunción" #: timezones.h:110 msgid "America/Atikokan" msgstr "Amerika/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "Ɩstlig standardtid - Atikokan, Ontario och Southampton I, Nunavut" #: timezones.h:113 msgid "America/Atka" msgstr "Amerika/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "Amerika/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "Bahia" #: timezones.h:117 msgid "America/Barbados" msgstr "Amerika/Barbados" #: timezones.h:118 msgid "America/Belem" msgstr "Amerika/BelĆ©m" #. comment for time zone America/Belem #: timezones.h:120 msgid "Amapa, E Para" msgstr "AmapĆ”, Ɩ ParĆ”" #: timezones.h:121 msgid "America/Belize" msgstr "Amerika/Belize" #: timezones.h:122 msgid "America/Blanc-Sablon" msgstr "America/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:124 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "Atlantisk standardtid - Quebec - Nedre nordkusten" #: timezones.h:125 msgid "America/Boa_Vista" msgstr "Amerika/Boa_VĆ­sta" #. comment for time zone America/Boa_Vista #: timezones.h:127 msgid "Roraima" msgstr "Roraima" #: timezones.h:128 msgid "America/Bogota" msgstr "Amerika/BogotĆ”" #: timezones.h:129 msgid "America/Boise" msgstr "Amerika/Boise" #. comment for time zone America/Boise #: timezones.h:131 msgid "Mountain Time - south Idaho & east Oregon" msgstr "Bergstid - sƶdra Idaho och ƶstra Oregon" #: timezones.h:132 msgid "America/Buenos_Aires" msgstr "Amerika/Buenos_Aires" #: timezones.h:133 msgid "America/Cambridge_Bay" msgstr "Amerika/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:135 msgid "Mountain Time - west Nunavut" msgstr "Bergstid - vƤstra Nunavut" #: timezones.h:136 msgid "America/Campo_Grande" msgstr "Amerika/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:138 msgid "Mato Grosso do Sul" msgstr "Mato Grosso do Sul" #: timezones.h:139 msgid "America/Cancun" msgstr "Amerika/CancĆŗn" #. comment for time zone America/Cancun #: timezones.h:141 msgid "Central Time - Quintana Roo" msgstr "Centraltid - Quintana Roo" #: timezones.h:142 msgid "America/Caracas" msgstr "Amerika/Caracas" #: timezones.h:143 msgid "America/Catamarca" msgstr "Amerika/Catamarca" #: timezones.h:144 msgid "America/Cayenne" msgstr "Amerika/Cayenne" #: timezones.h:145 msgid "America/Cayman" msgstr "Amerika/Cayman" #: timezones.h:146 msgid "America/Chicago" msgstr "Amerika/Chicago" #. comment for time zone America/Chicago #: timezones.h:148 msgid "Central Time" msgstr "Centraltid" #: timezones.h:149 msgid "America/Chihuahua" msgstr "Amerika/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:151 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "Mexikansk bergstid - Chihuahua pĆ„ avstĆ„nd frĆ„n USA-grƤnsen" #: timezones.h:152 msgid "America/Coral_Harbour" msgstr "Amerika/Coral_Harbour" #: timezones.h:153 msgid "America/Cordoba" msgstr "Amerika/Cordoba" #: timezones.h:154 msgid "America/Costa_Rica" msgstr "Amerika/Costa_Rica" #: timezones.h:155 msgid "America/Cuiaba" msgstr "Amerika/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:157 msgid "Mato Grosso" msgstr "Mato Grosso" #: timezones.h:158 msgid "America/Curacao" msgstr "Amerika/CuracĆ£o" #: timezones.h:159 msgid "America/Danmarkshavn" msgstr "Amerika/Danmarkshamn" #. comment for time zone America/Danmarkshavn #: timezones.h:161 msgid "east coast, north of Scoresbysund" msgstr "ƶstkusten, norr om Scoresbysund" #: timezones.h:162 msgid "America/Dawson" msgstr "Amerika/Dawson" #. comment for time zone America/Dawson #: timezones.h:164 msgid "Pacific Time - north Yukon" msgstr "Stillahavstid - norra Yukon" #: timezones.h:165 msgid "America/Dawson_Creek" msgstr "Amerika/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:167 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "Bergsstandardtid - Dawson Creek och Fort Saint John, British Columbia" #: timezones.h:168 msgid "America/Denver" msgstr "Amerika/Denver" #. comment for time zone America/Denver #: timezones.h:170 msgid "Mountain Time" msgstr "Bergstid" #: timezones.h:171 msgid "America/Detroit" msgstr "Amerika/Detroit" #. comment for time zone America/Detroit #: timezones.h:173 msgid "Eastern Time - Michigan - most locations" msgstr "Ɩsttid - Michigan - de flesta platser" #: timezones.h:174 msgid "America/Dominica" msgstr "Amerika/Dominica" #: timezones.h:175 msgid "America/Edmonton" msgstr "Amerika/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:177 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "Bergstid - Alberta, ƶstra British Columbia och vƤstra Saskatchewan" #: timezones.h:178 msgid "America/Eirunepe" msgstr "Amerika/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:180 msgid "W Amazonas" msgstr "V Amazonas" #: timezones.h:181 msgid "America/El_Salvador" msgstr "Amerika/El_Salvador" #: timezones.h:182 msgid "America/Ensenada" msgstr "Amerika/Ensenada" #: timezones.h:183 msgid "America/Fortaleza" msgstr "Amerika/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:185 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "NƖ Brasilien (MA, PI, CE, RN, PB)" #: timezones.h:186 msgid "America/Fort_Wayne" msgstr "Amerika/Fort_Wayne" #: timezones.h:187 msgid "America/Glace_Bay" msgstr "Amerika/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:189 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "Atlanttid - Nova Scotia - platser som inte hade sommartid 1966-1971" #: timezones.h:190 msgid "America/Godthab" msgstr "Amerika/GodthĆ„b" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:192 timezones.h:361 timezones.h:450 timezones.h:588 #: timezones.h:751 timezones.h:849 timezones.h:888 msgid "most locations" msgstr "de flesta platserna" #: timezones.h:193 msgid "America/Goose_Bay" msgstr "Amerika/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:195 msgid "Atlantic Time - Labrador - most locations" msgstr "Atlanttid - Labrador - de flesta platser" #: timezones.h:196 msgid "America/Grand_Turk" msgstr "Amerika/Grand_Turk" #: timezones.h:197 msgid "America/Grenada" msgstr "Amerika/Grenada" #: timezones.h:198 msgid "America/Guadeloupe" msgstr "Amerika/Guadeloupe" #: timezones.h:199 msgid "America/Guatemala" msgstr "Amerika/Guatemala" #: timezones.h:200 msgid "America/Guayaquil" msgstr "Amerika/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:202 timezones.h:754 timezones.h:760 msgid "mainland" msgstr "fastlandet" #: timezones.h:203 msgid "America/Guyana" msgstr "Amerika/Guyana" #: timezones.h:204 msgid "America/Halifax" msgstr "Amerika/Halifax" #. comment for time zone America/Halifax #: timezones.h:206 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "Atlanttid - Nova Scotia (de flesta platser), Prins Edvards ƶ" #: timezones.h:207 msgid "America/Havana" msgstr "Amerika/Havanna" #: timezones.h:208 msgid "America/Hermosillo" msgstr "Amerika/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:210 msgid "Mountain Standard Time - Sonora" msgstr "Bergsstandardtid - Sonora" #: timezones.h:211 msgid "America/Indiana/Indianapolis" msgstr "Amerika/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:213 msgid "Eastern Time - Indiana - most locations" msgstr "Ɩsttid - Indiana - de flesta platser" #: timezones.h:214 msgid "America/Indiana/Knox" msgstr "Amerika/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:216 msgid "Central Time - Indiana - Starke County" msgstr "Centraltid - Indiana - Starke County" #: timezones.h:217 msgid "America/Indiana/Marengo" msgstr "Amerika/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:219 msgid "Eastern Time - Indiana - Crawford County" msgstr "Ɩsttid - Indiana - Crawford County" #: timezones.h:220 msgid "America/Indiana/Petersburg" msgstr "America/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:222 msgid "Eastern Time - Indiana - Pike County" msgstr "Ɩsttid - Indiana - Pike County" #: timezones.h:223 msgid "America/Indianapolis" msgstr "Amerika/Indianapolis" #: timezones.h:224 msgid "America/Indiana/Tell_City" msgstr "Amerika/Indiana/Tell_City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:226 msgid "Central Time - Indiana - Perry County" msgstr "Centraltid - Indiana - Perry County" #: timezones.h:227 msgid "America/Indiana/Vevay" msgstr "Amerika/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:229 msgid "Eastern Time - Indiana - Switzerland County" msgstr "Ɩsttid - Indiana - Switzerland County" #: timezones.h:230 msgid "America/Indiana/Vincennes" msgstr "America/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:232 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "Ɩsttid - Indiana - Daviess, Dubois, Knox och Martin County" #: timezones.h:233 msgid "America/Indiana/Winamac" msgstr "America/Indiana/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:235 msgid "Eastern Time - Indiana - Pulaski County" msgstr "Ɩsttid - Indiana - Pulaski County" #: timezones.h:236 msgid "America/Inuvik" msgstr "Amerika/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:238 msgid "Mountain Time - west Northwest Territories" msgstr "Bergstid - vƤstra NordvƤstterritorierna" #: timezones.h:239 msgid "America/Iqaluit" msgstr "Amerika/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:241 msgid "Eastern Time - east Nunavut - most locations" msgstr "Ɩsttid - ƶstra Nunavut - de flesta platser" #: timezones.h:242 msgid "America/Jamaica" msgstr "Amerika/Jamaica" #: timezones.h:243 msgid "America/Jujuy" msgstr "Amerika/Jujuy" #: timezones.h:244 msgid "America/Juneau" msgstr "Amerika/Juneau" #. comment for time zone America/Juneau #: timezones.h:246 msgid "Alaska Time - Alaska panhandle" msgstr "Alaskatid - Alaskautlƶparen" #: timezones.h:247 msgid "America/Kentucky/Louisville" msgstr "Amerika/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:249 msgid "Eastern Time - Kentucky - Louisville area" msgstr "Ɩstlig tid - Kentucky - Louisville-omrĆ„det" #: timezones.h:250 msgid "America/Kentucky/Monticello" msgstr "Amerika/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:252 msgid "Eastern Time - Kentucky - Wayne County" msgstr "Ɩsttid - Kentucky - Wayne County" #: timezones.h:253 msgid "America/Knox_IN" msgstr "Amerika/Knox_Indiana" #: timezones.h:254 msgid "America/La_Paz" msgstr "Amerika/La_Paz" #: timezones.h:255 msgid "America/Lima" msgstr "Amerika/Lima" #: timezones.h:256 msgid "America/Los_Angeles" msgstr "Amerika/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:258 msgid "Pacific Time" msgstr "Stilla havet-tid" #: timezones.h:259 msgid "America/Louisville" msgstr "Amerika/Louisville" #: timezones.h:260 msgid "America/Maceio" msgstr "Amerika/Maceio" #. comment for time zone America/Maceio #: timezones.h:262 msgid "Alagoas, Sergipe" msgstr "Alagoas, Sergipe" #: timezones.h:263 msgid "America/Managua" msgstr "Amerika/Managua" #: timezones.h:264 msgid "America/Manaus" msgstr "Amerika/Manaus" #. comment for time zone America/Manaus #: timezones.h:266 msgid "E Amazonas" msgstr "Ɩ Amazonas" #: timezones.h:267 msgid "America/Marigot" msgstr "America/Marigot" #: timezones.h:268 msgid "America/Martinique" msgstr "Amerika/Martinique" #: timezones.h:269 msgid "America/Matamoros" msgstr "Amerika/Matamoros" #. comment for time zone America/Matamoros #: timezones.h:271 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "USA:s centraltid - Coahuila, Durango, Nuevo Leon, Tamaulipas nƤra USA:grƤnsen" #: timezones.h:272 msgid "America/Mazatlan" msgstr "Amerika/MazatlĆ”n" #. comment for time zone America/Mazatlan #: timezones.h:274 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "Bergstid - S Baja, Nayarit, Sinaloa" #: timezones.h:275 msgid "America/Mendoza" msgstr "Amerika/Mendoza" #: timezones.h:276 msgid "America/Menominee" msgstr "Amerika/Menominee" #. comment for time zone America/Menominee #: timezones.h:278 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "Centraltid - Michigan - Dickinson, Gogebic, Iron och Menominee County" #: timezones.h:279 msgid "America/Merida" msgstr "Amerika/Merida" #. comment for time zone America/Merida #: timezones.h:281 msgid "Central Time - Campeche, Yucatan" msgstr "Centraltid - Campeche, Yucatan" #: timezones.h:282 msgid "America/Mexico_City" msgstr "Amerika/Mexico_City" #. comment for time zone America/Mexico_City #: timezones.h:284 msgid "Central Time - most locations" msgstr "Centraltid - de flesta platser" #: timezones.h:285 msgid "America/Miquelon" msgstr "Amerika/Miquelon" #: timezones.h:286 msgid "America/Moncton" msgstr "America/Moncton" #. comment for time zone America/Moncton #: timezones.h:288 msgid "Atlantic Time - New Brunswick" msgstr "Atlanttid - New Brunswick" #: timezones.h:289 msgid "America/Monterrey" msgstr "Amerika/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:291 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "Mexicansk centraltid - Coahuila, Durango, Nuevo Leon, Tamaulipas pĆ„ avstĆ„nd frĆ„n USA-grƤnsen" #: timezones.h:292 msgid "America/Montevideo" msgstr "Amerika/Montevideo" #: timezones.h:293 msgid "America/Montreal" msgstr "Amerika/Montreal" #. comment for time zone America/Montreal #: timezones.h:295 msgid "Eastern Time - Quebec - most locations" msgstr "Ɩsttid - Quebec - de flesta platser" #: timezones.h:296 msgid "America/Montserrat" msgstr "Amerika/Montserrat" #: timezones.h:297 msgid "America/Nassau" msgstr "Amerika/Nassau" #: timezones.h:298 msgid "America/New_York" msgstr "Amerika/New_York" #. comment for time zone America/New_York #: timezones.h:300 msgid "Eastern Time" msgstr "Ɩstlig tid" #: timezones.h:301 msgid "America/Nipigon" msgstr "Amerika/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:303 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "Ɩsttid - Ontario och Quebec - platser som inte hade sommartid 1967-1973" #: timezones.h:304 msgid "America/Nome" msgstr "Amerika/Nome" #. comment for time zone America/Nome #: timezones.h:306 msgid "Alaska Time - west Alaska" msgstr "Alaskatid - vƤstra Alaska" #: timezones.h:307 msgid "America/Noronha" msgstr "Amerika/Noronha" #. comment for time zone America/Noronha #: timezones.h:309 msgid "Atlantic islands" msgstr "Atlantiska ƶarna" #: timezones.h:310 msgid "America/North_Dakota/Center" msgstr "Amerika/Norddakota/Centrala" #. comment for time zone America/North_Dakota/Center #: timezones.h:312 msgid "Central Time - North Dakota - Oliver County" msgstr "Centraltid - North Dakota - Oliver County" #: timezones.h:313 msgid "America/North_Dakota/New_Salem" msgstr "America/North_Dakota/New_Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:315 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "Centraltid - North Dakota - Morton county (utom Mandan-omrĆ„det)" #: timezones.h:316 msgid "America/Ojinaga" msgstr "Amerika/Ojinaga" #. comment for time zone America/Ojinaga #: timezones.h:318 msgid "US Mountain Time - Chihuahua near US border" msgstr "USA:s bergstid - Chihuahua nƤra USA-grƤnsen" #: timezones.h:319 msgid "America/Panama" msgstr "Amerika/PanamĆ”" #: timezones.h:320 msgid "America/Pangnirtung" msgstr "Amerika/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:322 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "Ɩsttid - Pangnirtung, Nunavut" #: timezones.h:323 msgid "America/Paramaribo" msgstr "Amerika/Paramaribo" #: timezones.h:324 msgid "America/Phoenix" msgstr "Amerika/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:326 msgid "Mountain Standard Time - Arizona" msgstr "Bergsstandardtid - Arizona" #: timezones.h:327 msgid "America/Port-au-Prince" msgstr "Amerika/Port-au-Prince" #: timezones.h:328 msgid "America/Porto_Acre" msgstr "Amerika/Porto_Acre" #: timezones.h:329 msgid "America/Port_of_Spain" msgstr "Amerika/Port_of_Spain" #: timezones.h:330 msgid "America/Porto_Velho" msgstr "Amerika/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:332 msgid "Rondonia" msgstr "RondĆ“nia" #: timezones.h:333 msgid "America/Puerto_Rico" msgstr "Amerika/Puerto_Rico" #: timezones.h:334 msgid "America/Rainy_River" msgstr "Amerika/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:336 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "Centraltid - Rainy River & Fort Frances, Ontario" #: timezones.h:337 msgid "America/Rankin_Inlet" msgstr "Amerika/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:339 msgid "Central Time - central Nunavut" msgstr "Centraltid - centrala Nunavut" #: timezones.h:340 msgid "America/Recife" msgstr "Amerika/Recife" #. comment for time zone America/Recife #: timezones.h:342 msgid "Pernambuco" msgstr "Pernambuco" #: timezones.h:343 msgid "America/Regina" msgstr "Amerika/Regina" #. comment for time zone America/Regina #: timezones.h:345 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "Centralstandardtid - Saskatchewan - de flesta platser" #: timezones.h:346 msgid "America/Resolute" msgstr "America/Resolute" #. comment for time zone America/Resolute #: timezones.h:348 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "Ɩststandardtid - Resolute, Nunavut" #: timezones.h:349 msgid "America/Rio_Branco" msgstr "Amerika/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:351 msgid "Acre" msgstr "Acre" #: timezones.h:352 msgid "America/Rosario" msgstr "Amerika/Rosario" #: timezones.h:353 msgid "America/Santa_Isabel" msgstr "Amerika/Santa_Isabel" #. comment for time zone America/Santa_Isabel #: timezones.h:355 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "Mexikansk stillahavstid - Baja California pĆ„ avstĆ„nd frĆ„n USA-grƤnsen" #: timezones.h:356 msgid "America/Santarem" msgstr "Amerika/Santarem" #. comment for time zone America/Santarem #: timezones.h:358 msgid "W Para" msgstr "V Para" #: timezones.h:359 msgid "America/Santiago" msgstr "Amerika/Santiago" #: timezones.h:362 msgid "America/Santo_Domingo" msgstr "Amerika/Santo_Domingo" #: timezones.h:363 msgid "America/Sao_Paulo" msgstr "Amerika/SĆ£o_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:365 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "S & SƖ Brasilien (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:366 msgid "America/Scoresbysund" msgstr "Amerika/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:368 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Scoresbysund / Ittoqqortoormiit" #: timezones.h:369 msgid "America/Shiprock" msgstr "Amerika/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:371 msgid "Mountain Time - Navajo" msgstr "Bergstid - Navajo" #: timezones.h:372 msgid "America/St_Barthelemy" msgstr "America/St_Barthelemy" #: timezones.h:373 msgid "America/St_Johns" msgstr "Amerika/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:375 msgid "Newfoundland Time, including SE Labrador" msgstr "Newfoundlandtid, inklusive SƖ Labrador" #: timezones.h:376 msgid "America/St_Kitts" msgstr "Amerika/St_Kitts" #: timezones.h:377 msgid "America/St_Lucia" msgstr "Amerika/St_Lucia" #: timezones.h:378 msgid "America/St_Thomas" msgstr "Amerika/St_Thomas" #: timezones.h:379 msgid "America/St_Vincent" msgstr "Amerika/St_Vincent" #: timezones.h:380 msgid "America/Swift_Current" msgstr "Amerika/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:382 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "Centralstandardtid - Saskatchewan - mellanvƤstern" #: timezones.h:383 msgid "America/Tegucigalpa" msgstr "Amerika/Tegucigalpa" #: timezones.h:384 msgid "America/Thule" msgstr "Amerika/Thule" #. comment for time zone America/Thule #: timezones.h:386 msgid "Thule / Pituffik" msgstr "Thule / Pituffik" #: timezones.h:387 msgid "America/Thunder_Bay" msgstr "Amerika/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:389 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "Ɩstlig tid - Thunder Bay, Ontario" #: timezones.h:390 msgid "America/Tijuana" msgstr "Amerika/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:392 msgid "US Pacific Time - Baja California near US border" msgstr "USA:s stillahavstid - Baja California nƤra USA-grƤnsen" #: timezones.h:393 msgid "America/Toronto" msgstr "Amerika/Toronto" #. comment for time zone America/Toronto #: timezones.h:395 msgid "Eastern Time - Ontario - most locations" msgstr "Ɩsttid - Ontario - de flesta platser" #: timezones.h:396 msgid "America/Tortola" msgstr "Amerika/Tortola" #: timezones.h:397 msgid "America/Vancouver" msgstr "Amerika/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:399 msgid "Pacific Time - west British Columbia" msgstr "Stillahavstid - vƤstra British Columbia" #: timezones.h:400 msgid "America/Virgin" msgstr "Amerika/Jungfruƶarna" #: timezones.h:401 msgid "America/Whitehorse" msgstr "Amerika/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:403 msgid "Pacific Time - south Yukon" msgstr "Stillahavstid - sƶdra Yukon" #: timezones.h:404 msgid "America/Winnipeg" msgstr "Amerika/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:406 msgid "Central Time - Manitoba & west Ontario" msgstr "Centraltid - Manitoba och vƤstra Ontario" #: timezones.h:407 msgid "America/Yakutat" msgstr "Amerika/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:409 msgid "Alaska Time - Alaska panhandle neck" msgstr "Alaskatid - Alaska panhandle neck" #: timezones.h:410 msgid "America/Yellowknife" msgstr "Amerika/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:412 msgid "Mountain Time - central Northwest Territories" msgstr "Bergstid - centrala NordvƤstterritorierna" #: timezones.h:413 msgid "Antarctica/Casey" msgstr "Antarktis/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:415 msgid "Casey Station, Bailey Peninsula" msgstr "Casey Station, Baileyhalvƶn" #: timezones.h:416 msgid "Antarctica/Davis" msgstr "Antarktis/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:418 msgid "Davis Station, Vestfold Hills" msgstr "Davis-stationen, Vestfold Hills" #: timezones.h:419 msgid "Antarctica/DumontDUrville" msgstr "Antarktis/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:421 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Dumont-d'Urville-stationen, AdĆ©lieland" #: timezones.h:422 msgid "Antarctica/Macquarie" msgstr "Antarktis/Macquarie" #. comment for time zone Antarctica/Macquarie #: timezones.h:424 msgid "Macquarie Island Station, Macquarie Island" msgstr "Macquarieƶstaionen, Macquarieƶn" #: timezones.h:425 msgid "Antarctica/Mawson" msgstr "Antarktis/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:427 msgid "Mawson Station, Holme Bay" msgstr "Mawson-stationen, Holme Bay" #: timezones.h:428 msgid "Antarctica/McMurdo" msgstr "Antarktis/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:430 msgid "McMurdo Station, Ross Island" msgstr "McMurdo-stationen, Ross Island" #: timezones.h:431 msgid "Antarctica/Palmer" msgstr "Antarktis/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:433 msgid "Palmer Station, Anvers Island" msgstr "Palmer-stationen, Anversƶn" #: timezones.h:434 msgid "Antarctica/Rothera" msgstr "Antarktis/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:436 msgid "Rothera Station, Adelaide Island" msgstr "Rothera-stationen, Adelaideƶn" #: timezones.h:437 msgid "Antarctica/South_Pole" msgstr "Antarktis/Sydpolen" #. comment for time zone Antarctica/South_Pole #: timezones.h:439 msgid "Amundsen-Scott Station, South Pole" msgstr "Amundsen-Scott-stationen, Sydpolen" #: timezones.h:440 msgid "Antarctica/Syowa" msgstr "Antarktis/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:442 msgid "Syowa Station, E Ongul I" msgstr "Syowa-stationen, Ɩ Ongulƶn" #: timezones.h:443 msgid "Antarctica/Vostok" msgstr "Antarktis/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:445 msgid "Vostok Station, S Magnetic Pole" msgstr "Vostok-stationen, S magnetiska polen" #: timezones.h:446 msgid "Arctic/Longyearbyen" msgstr "Arktis/Longyearbyen" #: timezones.h:447 msgid "Asia/Aden" msgstr "Asien/Aden" #: timezones.h:448 msgid "Asia/Almaty" msgstr "Asien/Alma-ata" #: timezones.h:451 msgid "Asia/Amman" msgstr "Asien/Amman" #: timezones.h:452 msgid "Asia/Anadyr" msgstr "Asien/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:454 msgid "Moscow+08 - Bering Sea" msgstr "Moskva+08 - Berings hav" #: timezones.h:455 msgid "Asia/Aqtau" msgstr "Asien/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:457 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" #: timezones.h:458 msgid "Asia/Aqtobe" msgstr "Asien/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:460 msgid "Aqtobe (Aktobe)" msgstr "Aqtobe (Aktobe)" #: timezones.h:461 msgid "Asia/Ashgabat" msgstr "Asien/Ashgabat" #: timezones.h:462 msgid "Asia/Ashkhabad" msgstr "Asien/Ashkhabad" #: timezones.h:463 msgid "Asia/Baghdad" msgstr "Asien/Bagdad" #: timezones.h:464 msgid "Asia/Bahrain" msgstr "Asien/Bahrain" #: timezones.h:465 msgid "Asia/Baku" msgstr "Asien/Baku" #: timezones.h:466 msgid "Asia/Bangkok" msgstr "Asien/Bangkok" #: timezones.h:467 msgid "Asia/Beirut" msgstr "Asien/Beirut" #: timezones.h:468 msgid "Asia/Bishkek" msgstr "Asien/Bisjkek" #: timezones.h:469 msgid "Asia/Brunei" msgstr "Asien/Brunei" #: timezones.h:470 msgid "Asia/Calcutta" msgstr "Asien/Calcutta" #: timezones.h:471 msgid "Asia/Choibalsan" msgstr "Asien/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:473 msgid "Dornod, Sukhbaatar" msgstr "Dornod, Sukhbaatar" #: timezones.h:474 msgid "Asia/Chongqing" msgstr "Asien/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:476 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "centrala Kina - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou etc." #: timezones.h:477 msgid "Asia/Chungking" msgstr "Asien/Chungking" #: timezones.h:478 msgid "Asia/Colombo" msgstr "Asien/Colombo" #: timezones.h:479 msgid "Asia/Dacca" msgstr "Asien/Dacca" #: timezones.h:480 msgid "Asia/Damascus" msgstr "Asien/Damaskus" #: timezones.h:481 msgid "Asia/Dhaka" msgstr "Asien/Dhaka" #: timezones.h:482 msgid "Asia/Dili" msgstr "Asien/Dili" #: timezones.h:483 msgid "Asia/Dubai" msgstr "Asien/Dubai" #: timezones.h:484 msgid "Asia/Dushanbe" msgstr "Asien/Dushanbe" #: timezones.h:485 msgid "Asia/Gaza" msgstr "Asien/Gaza" #: timezones.h:486 msgid "Asia/Harbin" msgstr "Asien/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:488 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Heilongjiang (utom Mohe), Jilin" #: timezones.h:489 msgid "Asia/Ho_Chi_Minh" msgstr "Asien/Ho_Chi_Minh" #: timezones.h:490 msgid "Asia/Hong_Kong" msgstr "Asien/Hong_Kong" #: timezones.h:491 msgid "Asia/Hovd" msgstr "Asien/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:493 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" #: timezones.h:494 msgid "Asia/Irkutsk" msgstr "Asien/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:496 msgid "Moscow+05 - Lake Baikal" msgstr "Moskva+05 - Baikal-sjƶn" #: timezones.h:497 msgid "Asia/Istanbul" msgstr "Asien/Istanbul" #: timezones.h:498 msgid "Asia/Jakarta" msgstr "Asien/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:500 msgid "Java & Sumatra" msgstr "Java & Sumatra" #: timezones.h:501 msgid "Asia/Jayapura" msgstr "Asien/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:503 msgid "Irian Jaya & the Moluccas" msgstr "Irian Jaya och Moluckerna" #: timezones.h:504 msgid "Asia/Jerusalem" msgstr "Asien/Jerusalem" #: timezones.h:505 msgid "Asia/Kabul" msgstr "Asien/Kabul" #: timezones.h:506 msgid "Asia/Kamchatka" msgstr "Asien/Kamtjatka" #. comment for time zone Asia/Kamchatka #: timezones.h:508 msgid "Moscow+08 - Kamchatka" msgstr "Moskva+08 - Kamtjatka" #: timezones.h:509 msgid "Asia/Karachi" msgstr "Asien/Karachi" #: timezones.h:510 msgid "Asia/Kashgar" msgstr "Asien/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:512 msgid "west Tibet & Xinjiang" msgstr "vƤstra Tibet & Xinjiang" #: timezones.h:513 msgid "Asia/Kathmandu" msgstr "Asien/Katmandu" #: timezones.h:514 msgid "Asia/Katmandu" msgstr "Asien/Katmandu" #: timezones.h:515 msgid "Asia/Kolkata" msgstr "Asien/Kolkata" #: timezones.h:516 msgid "Asia/Krasnoyarsk" msgstr "Asien/Krasnojarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:518 msgid "Moscow+04 - Yenisei River" msgstr "Moskva+04 - Yenisei-floden" #: timezones.h:519 msgid "Asia/Kuala_Lumpur" msgstr "Asien/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:521 msgid "peninsular Malaysia" msgstr "halvƶn av Malaysia" #: timezones.h:522 msgid "Asia/Kuching" msgstr "Asien/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:524 msgid "Sabah & Sarawak" msgstr "Sabah & Sarawak" #: timezones.h:525 msgid "Asia/Kuwait" msgstr "Asien/Kuwait" #: timezones.h:526 msgid "Asia/Macao" msgstr "Asien/Macao" #: timezones.h:527 msgid "Asia/Macau" msgstr "Asien/Macao" #: timezones.h:528 msgid "Asia/Magadan" msgstr "Asien/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:530 msgid "Moscow+08 - Magadan" msgstr "Moskva+08 - Magadan" #: timezones.h:531 msgid "Asia/Makassar" msgstr "Asien/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:533 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "ƶstra & sƶdra Borneo, Celebes, Bali, Nusa Tengarra, vƤst-Timor" #: timezones.h:534 msgid "Asia/Manila" msgstr "Asien/Manila" #: timezones.h:535 msgid "Asia/Muscat" msgstr "Asien/Muscat" #: timezones.h:536 msgid "Asia/Nicosia" msgstr "Asien/Nicosia" #: timezones.h:537 msgid "Asia/Novokuznetsk" msgstr "Asien/Novokuznetsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:539 msgid "Moscow+03 - Novokuznetsk" msgstr "Moskva+03 - Novokuznetsk" #: timezones.h:540 msgid "Asia/Novosibirsk" msgstr "Asien/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:542 msgid "Moscow+03 - Novosibirsk" msgstr "Moskva+03 - Novosibirsk" #: timezones.h:543 msgid "Asia/Omsk" msgstr "Asien/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:545 msgid "Moscow+03 - west Siberia" msgstr "Moskva+03 - vƤstra Siberien" #: timezones.h:546 msgid "Asia/Oral" msgstr "Asien/Oral" #. comment for time zone Asia/Oral #: timezones.h:548 msgid "West Kazakhstan" msgstr "VƤstra Kazakhstan" #: timezones.h:549 msgid "Asia/Phnom_Penh" msgstr "Asien/Phnom_Penh" #: timezones.h:550 msgid "Asia/Pontianak" msgstr "Asien/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:552 msgid "west & central Borneo" msgstr "vƤstra & centrala Borneo" #: timezones.h:553 msgid "Asia/Pyongyang" msgstr "Asien/Pyongyang" #: timezones.h:554 msgid "Asia/Qatar" msgstr "Asien/Qatar" #: timezones.h:555 msgid "Asia/Qyzylorda" msgstr "Asien/Kzyl-Orda" #. comment for time zone Asia/Qyzylorda #: timezones.h:557 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "Qyzylorda (Kyzylorda, Kzyl-Orda)" #: timezones.h:558 msgid "Asia/Rangoon" msgstr "Asien/Rangoon" #: timezones.h:559 msgid "Asia/Riyadh" msgstr "Asien/Riyadh" #: timezones.h:560 msgid "Asia/Riyadh87" msgstr "Asien/Riyadh87" #: timezones.h:561 msgid "Asia/Riyadh88" msgstr "Asien/Riyadh88" #: timezones.h:562 msgid "Asia/Riyadh89" msgstr "Asien/Riyadh89" #: timezones.h:563 msgid "Asia/Saigon" msgstr "Asien/Saigon" #: timezones.h:564 msgid "Asia/Sakhalin" msgstr "Asien/Sachalin" #. comment for time zone Asia/Sakhalin #: timezones.h:566 msgid "Moscow+07 - Sakhalin Island" msgstr "Moskva+07 - Sakhalin-ƶn" #: timezones.h:567 msgid "Asia/Samarkand" msgstr "Asien/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:569 msgid "west Uzbekistan" msgstr "vƤstra Uzbekistan" #: timezones.h:570 msgid "Asia/Seoul" msgstr "Asien/Sƶul" #: timezones.h:571 msgid "Asia/Shanghai" msgstr "Asien/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:573 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "ƶstra Kina - Beijing, Guangdong, Shanghai etc." #: timezones.h:574 msgid "Asia/Singapore" msgstr "Asien/Singapore" #: timezones.h:575 msgid "Asia/Taipei" msgstr "Asien/Taipei" #: timezones.h:576 msgid "Asia/Tashkent" msgstr "Asien/Tasjkent" #. comment for time zone Asia/Tashkent #: timezones.h:578 msgid "east Uzbekistan" msgstr "ƶstra Uzbekistan" #: timezones.h:579 msgid "Asia/Tbilisi" msgstr "Asien/Tbilisi" #: timezones.h:580 msgid "Asia/Tehran" msgstr "Asien/Tehran" #: timezones.h:581 msgid "Asia/Tel_Aviv" msgstr "Asien/Tel_Aviv" #: timezones.h:582 msgid "Asia/Thimbu" msgstr "Asien/Thimbu" #: timezones.h:583 msgid "Asia/Thimphu" msgstr "Asien/Thimphu" #: timezones.h:584 msgid "Asia/Tokyo" msgstr "Asien/Tokyo" #: timezones.h:585 msgid "Asia/Ujung_Pandang" msgstr "Asien/Ujung_Pandang" #: timezones.h:586 msgid "Asia/Ulaanbaatar" msgstr "Asien/Ulaanbaatar" #: timezones.h:589 msgid "Asia/Ulan_Bator" msgstr "Asien/Ulan_Bator" #: timezones.h:590 msgid "Asia/Urumqi" msgstr "Asien/Ürumqi" #. comment for time zone Asia/Urumqi #: timezones.h:592 msgid "most of Tibet & Xinjiang" msgstr "det mesta av Tibet & Xinjiang" #: timezones.h:593 msgid "Asia/Vientiane" msgstr "Asien/Vientiane" #: timezones.h:594 msgid "Asia/Vladivostok" msgstr "Asien/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:596 msgid "Moscow+07 - Amur River" msgstr "Moskva+07 - Amur-floden" #: timezones.h:597 msgid "Asia/Yakutsk" msgstr "Asien/Jakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:599 msgid "Moscow+06 - Lena River" msgstr "Moskva+06 - Lena-floden" #: timezones.h:600 msgid "Asia/Yekaterinburg" msgstr "Asien/Jekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:602 msgid "Moscow+02 - Urals" msgstr "Moskva+02 - Uralbergen" #: timezones.h:603 msgid "Asia/Yerevan" msgstr "Asien/Jerevan" #: timezones.h:604 msgid "Atlantic/Azores" msgstr "Atlanten/Azorerna" #. comment for time zone Atlantic/Azores #: timezones.h:606 msgid "Azores" msgstr "Azorerna" #: timezones.h:607 msgid "Atlantic/Bermuda" msgstr "Atlanten/Bermuda" #: timezones.h:608 msgid "Atlantic/Canary" msgstr "Atlanten/Kanarieƶarna" #. comment for time zone Atlantic/Canary #: timezones.h:610 msgid "Canary Islands" msgstr "Kanarieƶarna" #: timezones.h:611 msgid "Atlantic/Cape_Verde" msgstr "Atlanten/Kap_Verde" #: timezones.h:612 msgid "Atlantic/Faeroe" msgstr "Atlanten/FƤrƶarna" #: timezones.h:613 msgid "Atlantic/Faroe" msgstr "Atlanten/FƤrƶarna" #: timezones.h:614 msgid "Atlantic/Jan_Mayen" msgstr "Atlanten/Jan_Mayen" #: timezones.h:615 msgid "Atlantic/Madeira" msgstr "Atlanten/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:617 msgid "Madeira Islands" msgstr "Madeira-ƶarna" #: timezones.h:618 msgid "Atlantic/Reykjavik" msgstr "Atlanten/Reykjavik" #: timezones.h:619 msgid "Atlantic/South_Georgia" msgstr "Atlanten/Sydgeorgia" #: timezones.h:620 msgid "Atlantic/Stanley" msgstr "Atlanten/Stanley" #: timezones.h:621 msgid "Atlantic/St_Helena" msgstr "Atlanten/St_Helena" #: timezones.h:622 msgid "Australia/ACT" msgstr "Australien/ACT" #: timezones.h:623 msgid "Australia/Adelaide" msgstr "Australien/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:625 msgid "South Australia" msgstr "Sydaustralien" #: timezones.h:626 msgid "Australia/Brisbane" msgstr "Australien/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:628 msgid "Queensland - most locations" msgstr "Queensland - de flesta platserna" #: timezones.h:629 msgid "Australia/Broken_Hill" msgstr "Australien/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:631 msgid "New South Wales - Yancowinna" msgstr "New South Wales - Yancowinna" #: timezones.h:632 msgid "Australia/Canberra" msgstr "Australien/Canberra" #: timezones.h:633 msgid "Australia/Currie" msgstr "Australien/Currie" #. comment for time zone Australia/Currie #: timezones.h:635 msgid "Tasmania - King Island" msgstr "Tasmanien - King Island" #: timezones.h:636 msgid "Australia/Darwin" msgstr "Australien/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:638 msgid "Northern Territory" msgstr "Norra territoriet" #: timezones.h:639 msgid "Australia/Eucla" msgstr "Australia/Eucla" #. comment for time zone Australia/Eucla #: timezones.h:641 msgid "Western Australia - Eucla area" msgstr "VƤsta Australien - Eucla-omrĆ„det" #: timezones.h:642 msgid "Australia/Hobart" msgstr "Australien/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:644 msgid "Tasmania - most locations" msgstr "Tasmanien - de flesta platserna" #: timezones.h:645 msgid "Australia/LHI" msgstr "Australien/LHI" #: timezones.h:646 msgid "Australia/Lindeman" msgstr "Australien/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:648 msgid "Queensland - Holiday Islands" msgstr "Queensland - Whitsundayƶarna" #: timezones.h:649 msgid "Australia/Lord_Howe" msgstr "Australien/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:651 msgid "Lord Howe Island" msgstr "Lord Howeƶn" #: timezones.h:652 msgid "Australia/Melbourne" msgstr "Australien/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:654 msgid "Victoria" msgstr "Victoria" #: timezones.h:655 msgid "Australia/North" msgstr "Australien/North" #: timezones.h:656 msgid "Australia/NSW" msgstr "Australien/Nya Sydwales" #: timezones.h:657 msgid "Australia/Perth" msgstr "Australien/Perth" #. comment for time zone Australia/Perth #: timezones.h:659 msgid "Western Australia - most locations" msgstr "VƤstra Australien - de flesta platserna" #: timezones.h:660 msgid "Australia/Queensland" msgstr "Australien/Queensland" #: timezones.h:661 msgid "Australia/South" msgstr "Australien/Syd" #: timezones.h:662 msgid "Australia/Sydney" msgstr "Australien/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:664 msgid "New South Wales - most locations" msgstr "New South Wales - de flesta platser" #: timezones.h:665 msgid "Australia/Tasmania" msgstr "Australien/Tasmanien" #: timezones.h:666 msgid "Australia/Victoria" msgstr "Australien/Victoria" #: timezones.h:667 msgid "Australia/West" msgstr "Australien/VƤst" #: timezones.h:668 msgid "Australia/Yancowinna" msgstr "Australien/Yancowinna" #: timezones.h:669 msgid "Brazil/Acre" msgstr "Brasilien/Acre" #: timezones.h:670 msgid "Brazil/DeNoronha" msgstr "Brasilien/De_NoroƱa" #: timezones.h:671 msgid "Brazil/East" msgstr "Brasilien/Ɩst" #: timezones.h:672 msgid "Brazil/West" msgstr "Brasilien/VƤst" #: timezones.h:673 msgid "Canada/Atlantic" msgstr "Kanada/Atlanten" #: timezones.h:674 msgid "Canada/Central" msgstr "Kanada/Centrala" #: timezones.h:675 msgid "Canada/Eastern" msgstr "Kanada/Ɩstra" #: timezones.h:676 msgid "Canada/East-Saskatchewan" msgstr "Kanada/Ɩst-Saskatchewan" #: timezones.h:677 msgid "Canada/Mountain" msgstr "Kanada/Mountain" #: timezones.h:678 msgid "Canada/Newfoundland" msgstr "Kanada/Newfoundland" #: timezones.h:679 msgid "Canada/Pacific" msgstr "Kanada/Pacific" #: timezones.h:680 msgid "Canada/Saskatchewan" msgstr "Kanada/Saskatchewan" #: timezones.h:681 msgid "Canada/Yukon" msgstr "Kanada/Yukon" #: timezones.h:682 msgid "CET" msgstr "CET" #: timezones.h:683 msgid "Chile/Continental" msgstr "Chile/Kontinental" #: timezones.h:684 msgid "Chile/EasterIsland" msgstr "Chile/PĆ„skƶn" #: timezones.h:685 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:686 msgid "Cuba" msgstr "Kuba" #: timezones.h:687 msgid "EET" msgstr "EET" #: timezones.h:688 msgid "Egypt" msgstr "Egypten" #: timezones.h:689 msgid "Eire" msgstr "Eire" #: timezones.h:690 msgid "EST" msgstr "EST" #: timezones.h:691 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:692 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:693 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:694 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:695 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:696 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:697 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:698 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:699 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:700 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:701 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:702 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:703 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:704 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:705 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:706 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:707 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:708 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:709 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:710 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:711 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:712 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:713 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:714 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:715 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:716 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:717 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:718 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:719 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:720 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:721 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:722 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:723 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:724 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:725 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:726 msgid "Etc/Zulu" msgstr "Etc/Nollmeredianen" #: timezones.h:727 msgid "Europe/Amsterdam" msgstr "Europa/Amsterdam" #: timezones.h:728 msgid "Europe/Andorra" msgstr "Europa/Andorra" #: timezones.h:729 msgid "Europe/Athens" msgstr "Europa/Aten" #: timezones.h:730 msgid "Europe/Belfast" msgstr "Europa/Belfast" #: timezones.h:731 msgid "Europe/Belgrade" msgstr "Europa/Belgrad" #: timezones.h:732 msgid "Europe/Berlin" msgstr "Europa/Berlin" #: timezones.h:733 msgid "Europe/Bratislava" msgstr "Europa/Bratislava" #: timezones.h:734 msgid "Europe/Brussels" msgstr "Europa/Bryssel" #: timezones.h:735 msgid "Europe/Bucharest" msgstr "Europa/Bukarest" #: timezones.h:736 msgid "Europe/Budapest" msgstr "Europa/Budapest" #: timezones.h:737 msgid "Europe/Chisinau" msgstr "Europa/Chisinau" #: timezones.h:738 msgid "Europe/Copenhagen" msgstr "Europa/Kƶpenhamn" #: timezones.h:739 msgid "Europe/Dublin" msgstr "Europa/Dublin" #: timezones.h:740 msgid "Europe/Gibraltar" msgstr "Europa/Gibraltar" #: timezones.h:741 msgid "Europe/Guernsey" msgstr "Europe/Guernsey" #: timezones.h:742 msgid "Europe/Helsinki" msgstr "Europa/Helsingfors" #: timezones.h:743 msgid "Europe/Isle_of_Man" msgstr "Europe/Isle_of_Man" #: timezones.h:744 msgid "Europe/Istanbul" msgstr "Europa/Istanbul" #: timezones.h:745 msgid "Europe/Jersey" msgstr "Europe/Jersey" #: timezones.h:746 msgid "Europe/Kaliningrad" msgstr "Europa/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:748 msgid "Moscow-01 - Kaliningrad" msgstr "Moskva-01 - Kaliningrad" #: timezones.h:749 msgid "Europe/Kiev" msgstr "Europa/Kiev" #: timezones.h:752 msgid "Europe/Lisbon" msgstr "Europa/Lissabon" #: timezones.h:755 msgid "Europe/Ljubljana" msgstr "Europa/Ljubljana" #: timezones.h:756 msgid "Europe/London" msgstr "Europa/London" #: timezones.h:757 msgid "Europe/Luxembourg" msgstr "Europa/Luxemburg" #: timezones.h:758 msgid "Europe/Madrid" msgstr "Europa/Madrid" #: timezones.h:761 msgid "Europe/Malta" msgstr "Europa/Malta" #: timezones.h:762 msgid "Europe/Mariehamn" msgstr "Europa/Mariehamn" #: timezones.h:763 msgid "Europe/Minsk" msgstr "Europa/Minsk" #: timezones.h:764 msgid "Europe/Monaco" msgstr "Europa/Monaco" #: timezones.h:765 msgid "Europe/Moscow" msgstr "Europa/Moskva" #. comment for time zone Europe/Moscow #: timezones.h:767 msgid "Moscow+00 - west Russia" msgstr "Moskva+00 - vƤstra Ryssland" #: timezones.h:768 msgid "Europe/Nicosia" msgstr "Europa/Nicosia" #: timezones.h:769 msgid "Europe/Oslo" msgstr "Europa/Oslo" #: timezones.h:770 msgid "Europe/Paris" msgstr "Europa/Paris" #: timezones.h:771 msgid "Europe/Podgorica" msgstr "Europe/Podgorica" #: timezones.h:772 msgid "Europe/Prague" msgstr "Europa/Prag" #: timezones.h:773 msgid "Europe/Riga" msgstr "Europa/Riga" #: timezones.h:774 msgid "Europe/Rome" msgstr "Europa/Rom" #: timezones.h:775 msgid "Europe/Samara" msgstr "Europa/Samara" #. comment for time zone Europe/Samara #: timezones.h:777 msgid "Moscow - Samara, Udmurtia" msgstr "Moskva - Samarra, Udmurtien" #: timezones.h:778 msgid "Europe/San_Marino" msgstr "Europa/San_Marino" #: timezones.h:779 msgid "Europe/Sarajevo" msgstr "Europa/Sarajevo" #: timezones.h:780 msgid "Europe/Simferopol" msgstr "Europa/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:782 msgid "central Crimea" msgstr "centrala Crimea" #: timezones.h:783 msgid "Europe/Skopje" msgstr "Europa/Skopje" #: timezones.h:784 msgid "Europe/Sofia" msgstr "Europa/Sofia" #: timezones.h:785 msgid "Europe/Stockholm" msgstr "Europa/Stockholm" #: timezones.h:786 msgid "Europe/Tallinn" msgstr "Europa/Tallinn" #: timezones.h:787 msgid "Europe/Tirane" msgstr "Europa/Tirana" #: timezones.h:788 msgid "Europe/Tiraspol" msgstr "Europa/Tiraspol" #: timezones.h:789 msgid "Europe/Uzhgorod" msgstr "Europa/Uzjgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:791 msgid "Ruthenia" msgstr "Ruthenia" #: timezones.h:792 msgid "Europe/Vaduz" msgstr "Europa/Vaduz" #: timezones.h:793 msgid "Europe/Vatican" msgstr "Europa/Vatikanstaten" #: timezones.h:794 msgid "Europe/Vienna" msgstr "Europa/Wien" #: timezones.h:795 msgid "Europe/Vilnius" msgstr "Europa/Vilnius" #: timezones.h:796 msgid "Europe/Volgograd" msgstr "Europe/Volgograd" #. comment for time zone Europe/Volgograd #: timezones.h:798 msgid "Moscow+00 - Caspian Sea" msgstr "Moskva+00 - Kaspiska havet" #: timezones.h:799 msgid "Europe/Warsaw" msgstr "Europa/Warszawa" #: timezones.h:800 msgid "Europe/Zagreb" msgstr "Europa/Zagreb" #: timezones.h:801 msgid "Europe/Zaporozhye" msgstr "Europa/Zaporozje" #. comment for time zone Europe/Zaporozhye #: timezones.h:803 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Zaporozh'ye, Ɩ Lugansk / Zaporizhia, Ɩ Luhansk" #: timezones.h:804 msgid "Europe/Zurich" msgstr "Europa/Zürich" #: timezones.h:805 msgid "Factory" msgstr "Fabrik" #: timezones.h:806 msgid "GB" msgstr "Storbritannien" #: timezones.h:807 msgid "GB-Eire" msgstr "Storbritannien-Irland" #: timezones.h:808 msgid "GMT" msgstr "GMT" #: timezones.h:809 msgid "GMT0" msgstr "GMT0" #: timezones.h:810 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:811 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:812 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:813 msgid "Hongkong" msgstr "Hong Kong" #: timezones.h:814 msgid "HST" msgstr "HST" #: timezones.h:815 msgid "Iceland" msgstr "Island" #: timezones.h:816 msgid "Indian/Antananarivo" msgstr "Indiska_Oceanen/Antananarivo" #: timezones.h:817 msgid "Indian/Chagos" msgstr "Indiska_Oceanen/Chagos" #: timezones.h:818 msgid "Indian/Christmas" msgstr "Indiska_Oceanen/Julƶn" #: timezones.h:819 msgid "Indian/Cocos" msgstr "Indiska_Oceanen/Cocos" #: timezones.h:820 msgid "Indian/Comoro" msgstr "Indiska_Oceanen/Komorerna" #: timezones.h:821 msgid "Indian/Kerguelen" msgstr "Indiska_Oceanen/Kerguelen" #: timezones.h:822 msgid "Indian/Mahe" msgstr "Indiska_Oceanen/Mahe" #: timezones.h:823 msgid "Indian/Maldives" msgstr "Indiska_Oceanen/Maldiverna" #: timezones.h:824 msgid "Indian/Mauritius" msgstr "Indiska_Oceanen/Mauritius" #: timezones.h:825 msgid "Indian/Mayotte" msgstr "Indiska_Oceanen/Mayotte" #: timezones.h:826 msgid "Indian/Reunion" msgstr "Indiska_Oceanen/RĆ©union" #: timezones.h:827 msgid "Iran" msgstr "Iran" #: timezones.h:828 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:829 msgid "Israel" msgstr "Israel" #: timezones.h:830 msgid "Jamaica" msgstr "Jamaica" #: timezones.h:831 msgid "Japan" msgstr "Japan" #. comment for time zone Pacific/Kwajalein #: timezones.h:832 timezones.h:885 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:833 msgid "Libya" msgstr "Libyen" #: timezones.h:834 msgid "MET" msgstr "MET" #: timezones.h:835 msgid "Mexico/BajaNorte" msgstr "Mexiko/BajaNorte" #: timezones.h:836 msgid "Mexico/BajaSur" msgstr "Mexiko/BajaSur" #: timezones.h:837 msgid "Mexico/General" msgstr "Mexiko/General" #: timezones.h:838 msgid "Mideast/Riyadh87" msgstr "Mellanƶstern/Riyadh87" #: timezones.h:839 msgid "Mideast/Riyadh88" msgstr "Mellanƶstern/Riyadh88" #: timezones.h:840 msgid "Mideast/Riyadh89" msgstr "Mellanƶstern/Riyadh89" #: timezones.h:841 msgid "MST" msgstr "MST" #: timezones.h:842 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:843 msgid "Navajo" msgstr "Navajo" #: timezones.h:844 msgid "NZ" msgstr "NZ" #: timezones.h:845 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:846 msgid "Pacific/Apia" msgstr "Stilla_Havet/Apia" #: timezones.h:847 msgid "Pacific/Auckland" msgstr "Stilla_Havet/Auckland" #: timezones.h:850 msgid "Pacific/Chatham" msgstr "Stilla_Havet/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:852 msgid "Chatham Islands" msgstr "Chatham-ƶarna" #: timezones.h:853 msgid "Pacific/Easter" msgstr "Stilla_Havet/PĆ„skƶn" #. comment for time zone Pacific/Easter #: timezones.h:855 msgid "Easter Island & Sala y Gomez" msgstr "PĆ„skƶn & Sala y Gomez" #: timezones.h:856 msgid "Pacific/Efate" msgstr "Stilla_Havet/Efate" #: timezones.h:857 msgid "Pacific/Enderbury" msgstr "Stilla_Havet/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:859 msgid "Phoenix Islands" msgstr "Fenix-ƶarna" #: timezones.h:860 msgid "Pacific/Fakaofo" msgstr "Stilla_Havet/Fakaofo" #: timezones.h:861 msgid "Pacific/Fiji" msgstr "Stilla_Havet/Fiji" #: timezones.h:862 msgid "Pacific/Funafuti" msgstr "Stilla_Havet/Funafuti" #: timezones.h:863 msgid "Pacific/Galapagos" msgstr "Stilla_Havet/GalĆ”pagos" #. comment for time zone Pacific/Galapagos #: timezones.h:865 msgid "Galapagos Islands" msgstr "Galapagosƶarna" #: timezones.h:866 msgid "Pacific/Gambier" msgstr "Stilla_Havet/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:868 msgid "Gambier Islands" msgstr "Gambierƶarna" #: timezones.h:869 msgid "Pacific/Guadalcanal" msgstr "Stilla_Havet/Guadalcanal" #: timezones.h:870 msgid "Pacific/Guam" msgstr "Stilla_Havet/Guam" #: timezones.h:871 msgid "Pacific/Honolulu" msgstr "Stilla_Havet/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:873 msgid "Hawaii" msgstr "Hawaii" #: timezones.h:874 msgid "Pacific/Johnston" msgstr "Stilla_Havet/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:876 msgid "Johnston Atoll" msgstr "Johnston-atollen" #: timezones.h:877 msgid "Pacific/Kiritimati" msgstr "Stilla_Havet/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:879 msgid "Line Islands" msgstr "Line-ƶarna" #: timezones.h:880 msgid "Pacific/Kosrae" msgstr "Stilla_Havet/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:882 msgid "Kosrae" msgstr "Kosrae" #: timezones.h:883 msgid "Pacific/Kwajalein" msgstr "Stilla_Havet/Kwajalein" #: timezones.h:886 msgid "Pacific/Majuro" msgstr "Stilla_Havet/Majuro" #: timezones.h:889 msgid "Pacific/Marquesas" msgstr "Stilla_Havet/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:891 msgid "Marquesas Islands" msgstr "Marquesasƶarna" #: timezones.h:892 msgid "Pacific/Midway" msgstr "Stilla_Havet/Midway" #. comment for time zone Pacific/Midway #: timezones.h:894 msgid "Midway Islands" msgstr "Midwayƶarna" #: timezones.h:895 msgid "Pacific/Nauru" msgstr "Stilla_Havet/Nauru" #: timezones.h:896 msgid "Pacific/Niue" msgstr "Stilla_Havet/Niue" #: timezones.h:897 msgid "Pacific/Norfolk" msgstr "Stilla_Havet/Norfolk" #: timezones.h:898 msgid "Pacific/Noumea" msgstr "Stilla_Havet/Noumea" #: timezones.h:899 msgid "Pacific/Pago_Pago" msgstr "Stilla_Havet/Pago_Pago" #: timezones.h:900 msgid "Pacific/Palau" msgstr "Stilla_Havet/Palau" #: timezones.h:901 msgid "Pacific/Pitcairn" msgstr "Stilla_Havet/Pitcairn" #: timezones.h:902 msgid "Pacific/Ponape" msgstr "Stilla_Havet/Ponape" #. comment for time zone Pacific/Ponape #: timezones.h:904 msgid "Ponape (Pohnpei)" msgstr "Pohnpei (Ponape)" #: timezones.h:905 msgid "Pacific/Port_Moresby" msgstr "Stilla_Havet/Port_Moresby" #: timezones.h:906 msgid "Pacific/Rarotonga" msgstr "Stilla_Havet/Rarotonga" #: timezones.h:907 msgid "Pacific/Saipan" msgstr "Stilla_Havet/Saipan" #: timezones.h:908 msgid "Pacific/Samoa" msgstr "Stilla_Havet/Samoa" #: timezones.h:909 msgid "Pacific/Tahiti" msgstr "Stilla_Havet/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:911 msgid "Society Islands" msgstr "SƤllskapsƶarna" #: timezones.h:912 msgid "Pacific/Tarawa" msgstr "Stilla_Havet/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:914 msgid "Gilbert Islands" msgstr "Gilbertƶarna" #: timezones.h:915 msgid "Pacific/Tongatapu" msgstr "Stilla_Havet/Tongatapu" #: timezones.h:916 msgid "Pacific/Truk" msgstr "Stilla_Havet/Truk" #. comment for time zone Pacific/Truk #: timezones.h:918 msgid "Truk (Chuuk) and Yap" msgstr "Truk (Chuuk) och Yap" #: timezones.h:919 msgid "Pacific/Wake" msgstr "Stilla_Havet/Wake" #. comment for time zone Pacific/Wake #: timezones.h:921 msgid "Wake Island" msgstr "Wake-ƶn" #: timezones.h:922 msgid "Pacific/Wallis" msgstr "Stilla_Havet/Wallis" #: timezones.h:923 msgid "Pacific/Yap" msgstr "Stilla_Havet/Yap" #: timezones.h:924 msgid "Poland" msgstr "Polen" #: timezones.h:925 msgid "Portugal" msgstr "Portugal" #: timezones.h:926 msgid "posixrules" msgstr "posixregler" #: timezones.h:927 msgid "PRC" msgstr "PRC" #: timezones.h:928 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:929 msgid "ROC" msgstr "ROC" #: timezones.h:930 msgid "ROK" msgstr "ROK" #: timezones.h:931 msgid "Singapore" msgstr "Singapore" #: timezones.h:932 msgid "Turkey" msgstr "Turkiet" #: timezones.h:933 msgid "UCT" msgstr "UCT" #: timezones.h:934 msgid "Universal" msgstr "Universell" #: timezones.h:935 msgid "US/Alaska" msgstr "USA/Alaska" #: timezones.h:936 msgid "US/Aleutian" msgstr "USA/Aleutian" #: timezones.h:937 msgid "US/Arizona" msgstr "USA/Arizona" #: timezones.h:938 msgid "US/Central" msgstr "USA/Central" #: timezones.h:939 msgid "US/Eastern" msgstr "USA/Ɩstlig" #: timezones.h:940 msgid "US/East-Indiana" msgstr "USA/Ɩst-Indiana" #: timezones.h:941 msgid "US/Hawaii" msgstr "USA/Hawaii" #: timezones.h:942 msgid "US/Indiana-Starke" msgstr "USA/Indiana-Starke" #: timezones.h:943 msgid "US/Michigan" msgstr "USA/Michigan" #: timezones.h:944 msgid "US/Mountain" msgstr "USA/Mountain" #: timezones.h:945 msgid "US/Pacific" msgstr "USA/Pacific" #: timezones.h:946 msgid "US/Samoa" msgstr "USA/Samoa" #: timezones.h:947 msgid "UTC" msgstr "UTC" #: timezones.h:948 msgid "WET" msgstr "WET" #: timezones.h:949 msgid "W-SU" msgstr "W-SU" #: timezones.h:950 msgid "Zulu" msgstr "Z-tid" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/mk.po0000664000175000017500000017557014632072346023705 0ustar fabiofabio# Macedonian translations for PACKAGE package. # Copyright (C) 2004 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Automatically generated, 2004. # # msgid "" msgstr "" "Project-Id-Version: timezones\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2004-07-23 01:24+0200\n" "Last-Translator: Tomislav \n" "Language-Team: Macedonian \n" "Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Африка/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Африка/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Африка/Addis_Ababa" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Африка/Algiers" #: timezones.h:5 #, fuzzy msgid "Africa/Asmara" msgstr "Африка/Asmera" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Африка/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Африка/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Африка/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Африка/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Африка/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Африка/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Африка/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Африка/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Африка/Cairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Африка/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Африка/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Африка/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Африка/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Африка/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Африка/Djibouti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Африка/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Африка/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Африка/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Африка/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Африка/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Африка/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Африка/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Африка/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Африка/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Африка/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Африка/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Африка/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Африка/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Африка/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Африка/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Африка/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Африка/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Африка/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Африка/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Африка/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Африка/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Африка/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Африка/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Африка/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Африка/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Африка/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Африка/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Африка/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Африка/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Африка/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Африка/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Африка/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Африка/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "Америка/Adak" #. comment for time zone America/Adak #: timezones.h:62 #, fuzzy msgid "Aleutian Islands" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Queensland" #: timezones.h:63 msgid "America/Anchorage" msgstr "Америка/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 #, fuzzy msgid "Alaska Time" msgstr "ДАД/Alaska" #: timezones.h:66 msgid "America/Anguilla" msgstr "Америка/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "Америка/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "Америка/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 #, fuzzy msgid "America/Argentina/Buenos_Aires" msgstr "Америка/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 #, fuzzy msgid "America/Argentina/Catamarca" msgstr "Америка/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 #, fuzzy msgid "America/Argentina/ComodRivadavia" msgstr "Америка/Indiana/Indianapolis" #: timezones.h:78 #, fuzzy msgid "America/Argentina/Cordoba" msgstr "Америка/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 #, fuzzy msgid "America/Argentina/Jujuy" msgstr "Америка/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 #, fuzzy msgid "America/Argentina/La_Rioja" msgstr "Америка/Araguaina" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 #, fuzzy msgid "America/Argentina/Mendoza" msgstr "Америка/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 #, fuzzy msgid "America/Argentina/Rio_Gallegos" msgstr "Америка/Indiana/Marengo" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 #, fuzzy msgid "America/Argentina/Salta" msgstr "Америка/Antigua" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 #, fuzzy msgid "America/Argentina/San_Juan" msgstr "Америка/Antigua" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 #, fuzzy msgid "America/Argentina/San_Luis" msgstr "Америка/Antigua" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 #, fuzzy msgid "America/Argentina/Tucuman" msgstr "Америка/Antigua" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 #, fuzzy msgid "America/Argentina/Ushuaia" msgstr "Америка/Araguaina" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "Америка/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "Америка/Asuncion" #: timezones.h:110 #, fuzzy msgid "America/Atikokan" msgstr "Америка/Atka" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "Америка/Atka" #: timezones.h:114 #, fuzzy msgid "America/Bahia" msgstr "Америка/Boa_Vista" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "Америка/Boa_Vista" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "Америка/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "Америка/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "Америка/Belize" #: timezones.h:125 #, fuzzy msgid "America/Blanc-Sablon" msgstr "Америка/Cancun" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Америка/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "Америка/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "Америка/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Америка/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Америка/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 #, fuzzy msgid "America/Campo_Grande" msgstr "Америка/Cayman" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "Америка/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "Америка/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "Америка/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "Америка/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "Америка/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "Америка/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "ДАД/Central" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Америка/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 #, fuzzy msgid "America/Coral_Harbour" msgstr "Америка/Curacao" #: timezones.h:156 msgid "America/Cordoba" msgstr "Америка/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Америка/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Америка/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "Америка/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Америка/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "Америка/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Америка/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "Америка/Denver" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "ДАД/Mountain" #: timezones.h:174 msgid "America/Detroit" msgstr "Америка/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "Америка/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "Америка/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "Америка/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Америка/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "Америка/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Америка/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Америка/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Америка/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "Америка/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Америка/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Америка/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "Америка/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Америка/Guadeloupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "Америка/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Америка/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "Америка/Guyana" #: timezones.h:207 msgid "America/Halifax" msgstr "Америка/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "Америка/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Америка/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Америка/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Америка/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Америка/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 #, fuzzy msgid "America/Indiana/Petersburg" msgstr "Америка/Indiana/Marengo" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Америка/Indianapolis" #: timezones.h:227 #, fuzzy msgid "America/Indiana/Tell_City" msgstr "Америка/Indiana/Vevay" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Америка/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 #, fuzzy msgid "America/Indiana/Vincennes" msgstr "Америка/Indiana/Vevay" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 #, fuzzy msgid "America/Indiana/Winamac" msgstr "Америка/Indiana/Vevay" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "Америка/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Америка/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "Америка/Jamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "Америка/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "Америка/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Америка/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 #, fuzzy msgid "Eastern Time - Kentucky - Louisville area" msgstr "Америка/Kentucky/Louisville" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Америка/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Америка/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "Америка/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "Америка/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Америка/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 #, fuzzy msgid "Pacific Time" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Niue" #: timezones.h:262 msgid "America/Louisville" msgstr "Америка/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "Америка/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "Америка/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "Америка/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 #, fuzzy msgid "America/Marigot" msgstr "Америка/Maceio" #: timezones.h:271 msgid "America/Martinique" msgstr "Америка/Martinique" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "Америка/Manaus" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Америка/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "Америка/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "Америка/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "Америка/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Америка/Mexico_City" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "Америка/Miquelon" #: timezones.h:289 #, fuzzy msgid "America/Moncton" msgstr "Америка/Edmonton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "Америка/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "Америка/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "Америка/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "Америка/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "Америка/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "Америка/New_York" #. comment for time zone America/New_York #: timezones.h:303 #, fuzzy msgid "Eastern Time" msgstr "ДАД/Eastern" #: timezones.h:304 msgid "America/Nipigon" msgstr "Америка/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "Америка/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "Америка/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 #, fuzzy msgid "Atlantic islands" msgstr "Atlantic/Canary" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Америка/North_Dakota/Center" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 #, fuzzy msgid "America/North_Dakota/New_Salem" msgstr "Америка/North_Dakota/Center" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "Америка/Managua" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "Америка/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Америка/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Америка/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "Америка/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Америка/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Америка/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Америка/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Америка/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Америка/Puerto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Америка/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Америка/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "Америка/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "Америка/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 #, fuzzy msgid "America/Resolute" msgstr "Америка/Belem" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Америка/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "Америка/Rosario" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "Америка/Santiago" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 #, fuzzy msgid "America/Santarem" msgstr "Америка/Santiago" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "Америка/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Америка/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Америка/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Америка/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "Америка/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 #, fuzzy msgid "America/St_Barthelemy" msgstr "Америка/Belem" #: timezones.h:376 msgid "America/St_Johns" msgstr "Америка/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Америка/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Америка/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Америка/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Америка/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Америка/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Америка/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "Америка/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Америка/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "Америка/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 #, fuzzy msgid "America/Toronto" msgstr "Америка/Tortola" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "Америка/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "Америка/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "Америка/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Америка/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Америка/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "Америка/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Америка/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Антарктик/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Антарктик/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Антарктик/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "Антарктик/McMurdo" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Антарктик/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Антарктик/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Антарктик/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 #, fuzzy msgid "Antarctica/Rothera" msgstr "Антарктик/South_Pole" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Антарктик/South_Pole" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Антарктик/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Антарктик/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Arctic/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Азија/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Азија/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Азија/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Азија/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Азија/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Азија/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Азија/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Азија/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Азија/Baghdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Азија/Bahrain" #: timezones.h:468 msgid "Asia/Baku" msgstr "Азија/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Азија/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Азија/Beirut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Азија/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Азија/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Азија/Calcutta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Азија/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Азија/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "Азија/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Азија/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Азија/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Азија/Damascus" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Азија/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Азија/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Азија/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Азија/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Азија/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Азија/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 #, fuzzy msgid "Asia/Ho_Chi_Minh" msgstr "Азија/Chongqing" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Азија/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Азија/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Азија/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Азија/Istanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Азија/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Азија/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Азија/Jerusalem" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Азија/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Азија/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Азија/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Азија/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 #, fuzzy msgid "Asia/Kathmandu" msgstr "Азија/Katmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Азија/Katmandu" #: timezones.h:518 #, fuzzy msgid "Asia/Kolkata" msgstr "Азија/Jakarta" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Азија/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Азија/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Азија/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Азија/Kuwait" #: timezones.h:529 msgid "Asia/Macao" msgstr "Азија/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Азија/Macau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Азија/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Азија/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "Азија/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Азија/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Азија/Nicosia" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "Азија/Irkutsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "Азија/Novosibirsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Азија/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 #, fuzzy msgid "Moscow+03 - Novosibirsk" msgstr "Азија/Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Азија/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "Азија/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Азија/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Азија/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Азија/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Азија/Qatar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Азија/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Азија/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Азија/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Азија/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Азија/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Азија/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Азија/Saigon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Азија/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Азија/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Азија/Seoul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Азија/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "Азија/Singapore" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Азија/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Азија/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Азија/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Азија/Tehran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Азија/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Азија/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Азија/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Азија/Tokyo" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Азија/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Азија/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Азија/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Азија/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Азија/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Азија/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Азија/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Азија/Yekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Азија/Yerevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlantic/Azores" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlantic/Bermuda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlantic/Canary" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlantic/Cape_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlantic/Faeroe" #: timezones.h:616 #, fuzzy msgid "Atlantic/Faroe" msgstr "Atlantic/Faeroe" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlantic/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlantic/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlantic/Reykjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlantic/South_Georgia" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlantic/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlantic/St_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 #, fuzzy msgid "South Australia" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/ACT" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Canberra" #: timezones.h:636 #, fuzzy msgid "Australia/Currie" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Canberra" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 #, fuzzy msgid "Australia/Eucla" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Queensland" #. comment for time zone Australia/Eucla #: timezones.h:644 #, fuzzy msgid "Western Australia - Eucla area" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Queensland" #: timezones.h:645 msgid "Australia/Hobart" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 #, fuzzy msgid "Victoria" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/North" #: timezones.h:659 msgid "Australia/NSW" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/South" #: timezones.h:665 msgid "Australia/Sydney" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Tasmania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/West" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»ŠøŃ˜Š°/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brazil/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brazil/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brazil/East" #: timezones.h:675 msgid "Brazil/West" msgstr "Brazil/West" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "КанаГа/Atlantic" #: timezones.h:677 msgid "Canada/Central" msgstr "КанаГа/Central" #: timezones.h:678 msgid "Canada/Eastern" msgstr "КанаГа/Eastern" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "КанаГа/East-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "КанаГа/Mountain" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "КанаГа/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "КанаГа/Pacific" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "КанаГа/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "КанаГа/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Чиле/Continental" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Чиле/EasterIsland" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Cuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Egypt" #: timezones.h:692 msgid "Eire" msgstr "Eire" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Европа/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Европа/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Европа/Athens" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Европа/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Европа/Belgrade" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Европа/Berlin" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Европа/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Европа/Brussels" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Европа/Bucharest" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Европа/Budapest" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Европа/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Европа/Copenhagen" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Европа/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Европа/Gibraltar" #: timezones.h:744 #, fuzzy msgid "Europe/Guernsey" msgstr "Европа/Athens" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Европа/Helsinki" #: timezones.h:746 #, fuzzy msgid "Europe/Isle_of_Man" msgstr "Европа/Oslo" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Европа/Istanbul" #: timezones.h:748 #, fuzzy msgid "Europe/Jersey" msgstr "Европа/Paris" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Европа/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Европа/Kiev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Европа/Lisbon" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Европа/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Европа/London" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Европа/Luxembourg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Европа/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Европа/Malta" #: timezones.h:765 #, fuzzy msgid "Europe/Mariehamn" msgstr "Европа/Madrid" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Европа/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Европа/Monaco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Европа/Moscow" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Европа/Nicosia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Европа/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Европа/Paris" #: timezones.h:774 #, fuzzy msgid "Europe/Podgorica" msgstr "Европа/Andorra" #: timezones.h:775 msgid "Europe/Prague" msgstr "Европа/Prague" #: timezones.h:776 msgid "Europe/Riga" msgstr "Европа/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Европа/Rome" #: timezones.h:778 msgid "Europe/Samara" msgstr "Европа/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Европа/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Европа/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Европа/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Европа/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Европа/Sofia" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Европа/Stockholm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Европа/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Европа/Tirane" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Европа/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Европа/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Европа/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Европа/Vatican" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Европа/Vienna" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Европа/Vilnius" #: timezones.h:799 #, fuzzy msgid "Europe/Volgograd" msgstr "Европа/Belgrade" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Европа/Warsaw" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Европа/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Европа/Zaporozhye" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Европа/Zurich" #: timezones.h:808 msgid "Factory" msgstr "Factory" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Iceland" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Indian/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Indian/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Indian/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Indian/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Indian/Comoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Indian/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Indian/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Indian/Maldives" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Indian/Mauritius" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Indian/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Indian/Reunion" #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "Israel" #: timezones.h:833 msgid "Jamaica" msgstr "Jamaica" #: timezones.h:834 msgid "Japan" msgstr "Јапонија" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libya" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Мексико/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Мексико/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Мексико/General" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Mideast/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Mideast/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Mideast/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 #, fuzzy msgid "Chatham Islands" msgstr "Чиле/EasterIsland" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Truk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 #, fuzzy msgid "Pacific/Easter" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Easter" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 #, fuzzy msgid "Hawaii" msgstr "ДАД/Hawaii" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 #, fuzzy msgid "Kosrae" msgstr "Israel" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Pitcairn" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Ponape" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 #, fuzzy msgid "Gilbert Islands" msgstr "Чиле/EasterIsland" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "ŠŸŠ°Ń†ŠøŃ„ŠøŠŗ/Yap" #: timezones.h:929 msgid "Poland" msgstr "Poland" #: timezones.h:930 msgid "Portugal" msgstr "Portugal" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapore" #: timezones.h:937 msgid "Turkey" msgstr "Š¢ŃƒŃ€Ń†ŠøŃ˜Š°" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "ДАД/Alaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "ДАД/Aleutian" #: timezones.h:942 msgid "US/Arizona" msgstr "ДАД/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "ДАД/Central" #: timezones.h:944 msgid "US/Eastern" msgstr "ДАД/Eastern" #: timezones.h:945 msgid "US/East-Indiana" msgstr "ДАД/East-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "ДАД/Hawaii" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "ДАД/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "ДАД/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "ДАД/Mountain" #: timezones.h:950 msgid "US/Pacific" msgstr "ДАД/Pacific" #: timezones.h:951 msgid "US/Samoa" msgstr "ДАД/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Š—ŃƒŠ»Ńƒ" #, fuzzy #~ msgid "US/Pacific-New" #~ msgstr "ДАД/Pacific" #~ msgid "SystemV/AST4" #~ msgstr "SystemV/AST4" #~ msgid "SystemV/AST4ADT" #~ msgstr "SystemV/AST4ADT" #~ msgid "SystemV/CST6" #~ msgstr "SystemV/CST6" #~ msgid "SystemV/CST6CDT" #~ msgstr "SystemV/CST6CDT" #~ msgid "SystemV/EST5" #~ msgstr "SystemV/EST5" #~ msgid "SystemV/EST5EDT" #~ msgstr "SystemV/EST5EDT" #~ msgid "SystemV/HST10" #~ msgstr "SystemV/HST10" #~ msgid "SystemV/MST7" #~ msgstr "SystemV/MST7" #~ msgid "SystemV/MST7MDT" #~ msgstr "SystemV/MST7MDT" #~ msgid "SystemV/PST8" #~ msgstr "SystemV/PST8" #~ msgid "SystemV/PST8PDT" #~ msgstr "SystemV/PST8PDT" #~ msgid "SystemV/YST9" #~ msgstr "SystemV/YST9" #~ msgid "SystemV/YST9YDT" #~ msgstr "SystemV/YST9YDT" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/uk.po0000664000175000017500000022356414632072346023712 0ustar fabiofabio# Ukrainian translation to system-config-boot. # Copyright (C) Free Software Foundation # This file is distributed under the same license as the system-config-boot package. # Alex Lobas # # Maxim Dziumanenko , 2003. # Yuri Chornoivan , 2010. msgid "" msgstr "" "Project-Id-Version: 1.1\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-20 16:04+0200\n" "PO-Revision-Date: 2010-08-20 18:38+0300\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.1\n" "Plural-Forms: nplurals=1; plural=0;\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Африка/АбіГжан" #: timezones.h:2 msgid "Africa/Accra" msgstr "Африка/Аккра" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Африка/АГіс-Абеба" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Африка/Алжир" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Африка/Асмара" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Африка/Асмера" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Африка/Бомако" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Африка/Бангі" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Африка/Š‘Š°Š½Š“Š¶ŃƒŠ»" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Африка/Š‘Ń–ŃŃŠ°Ńƒ" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Африка/Блантайр" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Африка/Š‘Ń€Š°Š·Š·Š°Š²Ń–Š»ŃŒ" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Африка/Š‘ŃƒŠ¶ŃƒŠ¼Š±ŃƒŃ€Š°" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Африка/ŠšŠ°Ń—Ń€" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Африка/Касабланка" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Африка/Š”ŠµŃƒŃ‚Š°" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Š”ŠµŃƒŃ‚Š° та ŠœŠµŠ»Ń–лла" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Африка/ŠšŠ¾Š½Š°ŠŗŃ€Ń–" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Африка/Дакар" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Африка/Дар ес Далаам" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Африка/Š”Š¶ŠøŠ±ŃƒŃ‚Ń–" #: timezones.h:23 msgid "Africa/Douala" msgstr "Африка/Š”Š¾ŃƒŠ°Š»Š°" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Африка/Š•Š»ŃŒ ŠŠ°ŃŽŠ½" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Африка/Š¤Ń€Ń–Ń‚Š°ŃƒŠ½" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Африка/Габероне" #: timezones.h:27 msgid "Africa/Harare" msgstr "Африка/Єараре" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Африка/Š™Š¾Š³Š°Š½Š½ŠµŃŠ±ŃƒŃ€Š³" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Африка/Кампала" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Африка/Š„Š°Ń€Ń‚Š¾ŃƒŠ¼" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Африка/ŠšŃ–Š³Š°Š»Ń–" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Африка/ŠšŃ–Š½ŃˆŠ°ŃŠ°" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "ЗахіГ Дем. Š ŠµŃŠæŃƒŠ±Š»Ń–ŠŗŠ° Конго" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Африка/Лагос" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Африка/Š›Ń–Š±Ń€ŠµŠ²Ń–Š»ŃŒ" #: timezones.h:37 msgid "Africa/Lome" msgstr "Африка/Ломе" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Африка/Š›ŃƒŠ°Š½Š“Š°" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Африка/Š›ŃƒŠ¼ŃƒŠ¼Š±Š°ŃˆŠø" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "сіхГ Дем. Š ŠµŃŠæŃƒŠ±Š»Ń–ŠŗŠø Конго" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Африка/Š›ŃƒŃŠ°ŠŗŠ°" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Африка/Малабо" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Африка/ŠœŠ°ŠæŃƒŃ‚Š¾" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Африка/ŠœŠ°ŃŠµŃ€Ńƒ" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Африка/Мбабане" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Африка/ŠœŠ¾Š³Š°Š“Ń–ŃˆŃƒ" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Африка/ŠœŠ¾Š½Ń€Š¾Š²Ń–Ń" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Африка/ŠŠ°Š¹Ń€Š¾Š±Ń–" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Африка/ŠŠ“Š¶Š°Š¼ŠµŠ½Š°" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Африка/ŠŃ–Š°Š¼ŠµŠ¹" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Африка/ŠŃƒŠ°ŠŗŃ‡Š¾Ń‚Ń‚" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Африка/УагаГугу" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Африка/ŠŸŠ¾Ń€Ń‚Š¾-ŠŠ¾Š²Š¾" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Африка/Дао Томе" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Африка/Š¢ŠøŠ¼Š±ŃƒŠŗŃ‚Ńƒ" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Африка/Тріполі" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Африка/Š¢ŃƒŠ½Ń–Ń" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Африка/Š’Ń–Š½Š“Ń…ŃƒŠŗ" #: timezones.h:60 msgid "America/Adak" msgstr "Америка/АГак" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "ŠŠ»ŠµŃƒŃ‚ŃŃŒŠŗŃ– острови" #: timezones.h:63 msgid "America/Anchorage" msgstr "Америка/АнкоріГж" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "ŠŠ»ŃŃŠŗŠ° час" #: timezones.h:66 msgid "America/Anguilla" msgstr "Америка/Ангілла" #: timezones.h:67 msgid "America/Antigua" msgstr "Америка/ŠŠ½Ń‚Ń–Š³ŃƒŠ°" #: timezones.h:68 msgid "America/Araguaina" msgstr "Америка/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Токантінс" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Америка/Аргентина/Š‘ŃƒŠµŠ½Š¾Ń-Айрос" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Š‘ŃƒŠµŠ½Š¾Ń-Айрес (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Америка/Аргентина/ŠšŠ°Ń‚Š°Š¼Š°Ń€ŠŗŠ°" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "ŠšŠ°Ń‚Š°Š¼Š°Ń€ŠŗŠ° (CT), Š§ŃƒŠ±ŃƒŃ‚ (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Америка/Аргентина/ComodRivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Америка/Аргентина/ŠšŠ¾Ń€Š“Š¾Š±Š°" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "основна частина (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Америка/Аргентина/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Š–ŃƒŠ¶ŃƒŠ¹ (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Америка/Аргентина/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "Ла-Ріоха (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Америка/Аргентина/МенГоза" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "МенГоза (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Америка/Аргентина/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Данта-ŠšŃ€ŃƒŠ· (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "Америка/Аргентина/Š”Š°Š»ŃŒŃ‚Š°" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Америка/Аргентина/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "Дан-Єуан (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "Америка/Аргентина/Дан-Š›ŃƒŃ–Ń" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "Дан-Š›ŃƒŃ—Ń (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Америка/Аргентина/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Тукуман (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Америка/Аргентина/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Архіпелаг Вогненна Š—ŠµŠ¼Š»Ń (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "Америка/ŠŃ€ŃƒŠ±Š°" #: timezones.h:109 msgid "America/Asuncion" msgstr "Америка/Асунсьйон" #: timezones.h:110 msgid "America/Atikokan" msgstr "Америка/Атикокан" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "ДхіГний станГартний час - Атикокан, ŠžŠ½Ń‚Š°Ń€Ń–Š¾ та Š”Š°ŃƒŃ‚Š³ŠµŠ¼ŠæŃ‚Š¾Š½, ŠŃƒŠ½Š°Š²ŃƒŃ‚" #: timezones.h:113 msgid "America/Atka" msgstr "Америка/Атка" #: timezones.h:114 msgid "America/Bahia" msgstr "Америка/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "Š‘Š°Ń…Ń–Ń" #: timezones.h:117 msgid "America/Barbados" msgstr "Америка/БарбаГос" #: timezones.h:118 msgid "America/Belem" msgstr "Америка/Белен" #. comment for time zone America/Belem #: timezones.h:120 msgid "Amapa, E Para" msgstr "Амапа, схіГ ŠŸŠ°Ń€Š°" #: timezones.h:121 msgid "America/Belize" msgstr "Америка/ŠƒŠµŠ»Ń–Š·Š°" #: timezones.h:122 msgid "America/Blanc-Sablon" msgstr "Америка/Бланк-Даблон" #. comment for time zone America/Blanc-Sablon #: timezones.h:124 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "Атлантичний станГартний час - Квебек - ŠŸŃ–Š²Š½Ń–Ń‡Š½ŠøŠ¹ берег" #: timezones.h:125 msgid "America/Boa_Vista" msgstr "Америка/Боа-Віста" #. comment for time zone America/Boa_Vista #: timezones.h:127 msgid "Roraima" msgstr "Рорайма" #: timezones.h:128 msgid "America/Bogota" msgstr "Америка/Богота" #: timezones.h:129 msgid "America/Boise" msgstr "Америка/Бойсе" #. comment for time zone America/Boise #: timezones.h:131 msgid "Mountain Time - south Idaho & east Oregon" msgstr "Š“Ń–Ń€ŃŃŒŠŗŠøŠ¹ час - півГенний АйГахо та схіГний ŠžŃ€ŠµŠ³Š¾Š½" #: timezones.h:132 msgid "America/Buenos_Aires" msgstr "Америка/Š‘ŃƒŠµŠ½Š¾Ń-Айрос" #: timezones.h:133 msgid "America/Cambridge_Bay" msgstr "Америка/ŠšŠµŠ¼Š±Ń€ŠøŠ“Š¶ Бей" #. comment for time zone America/Cambridge_Bay #: timezones.h:135 msgid "Mountain Time - west Nunavut" msgstr "Š“Ń–Ń€ŃŃŒŠŗŠøŠ¹ час - захіГний ŠŃƒŠ½Š°Š²ŃƒŃ‚" #: timezones.h:136 msgid "America/Campo_Grande" msgstr "Америка/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:138 msgid "Mato Grosso do Sul" msgstr "ŠœŠ°Ń‚Š¾-Гроссо-Гу-Дул" #: timezones.h:139 msgid "America/Cancun" msgstr "Америка/Канкан" #. comment for time zone America/Cancun #: timezones.h:141 msgid "Central Time - Quintana Roo" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ час - ŠšŠ²Ń–Š½Ń‚Š°Š½Š°-Роо" #: timezones.h:142 msgid "America/Caracas" msgstr "Америка/ŠšŠ°Ń€Š°ŠŗŠ°Ń" #: timezones.h:143 msgid "America/Catamarca" msgstr "Америка/ŠšŠ°Ń‚Š°Š¼Š°Ń€ŠŗŠ°" #: timezones.h:144 msgid "America/Cayenne" msgstr "Америка/ŠšŠ°Ń”Š½Š°" #: timezones.h:145 msgid "America/Cayman" msgstr "Америка/Кайман" #: timezones.h:146 msgid "America/Chicago" msgstr "Америка/Чикаго" #. comment for time zone America/Chicago #: timezones.h:148 msgid "Central Time" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ час" #: timezones.h:149 msgid "America/Chihuahua" msgstr "Америка/Чиуауа" #. comment for time zone America/Chihuahua #: timezones.h:151 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "Мексиканський Š³Ń–Ń€ŃŃŒŠŗŠøŠ¹ час — Š§Ń–ŃƒŠ°ŃƒŠ° на віГГалі віГ ŠŗŠ¾Ń€Š“Š¾Š½Ńƒ Š· ДША" #: timezones.h:152 msgid "America/Coral_Harbour" msgstr "Америка/Coral_Harbour" #: timezones.h:153 msgid "America/Cordoba" msgstr "Америка/ŠšŠ¾Ń€Š“Š¾Š±Š°" #: timezones.h:154 msgid "America/Costa_Rica" msgstr "Америка/ŠšŠ¾ŃŃ‚Š°-Ріка" #: timezones.h:155 msgid "America/Cuiaba" msgstr "Америка/ŠšŃƒŃŠ±Š°" #. comment for time zone America/Cuiaba #: timezones.h:157 msgid "Mato Grosso" msgstr "ŠœŠ°Ń‚Š¾-Гроссо" #: timezones.h:158 msgid "America/Curacao" msgstr "Америка/ŠšŃƒŃ€Š°ŠŗŠ°Š¾" #: timezones.h:159 msgid "America/Danmarkshavn" msgstr "Америка/Данмаркхавн" #. comment for time zone America/Danmarkshavn #: timezones.h:161 msgid "east coast, north of Scoresbysund" msgstr "схіГний беріг, північ Š”ŠŗŠ¾Ń€ŃŠ±Ń–Š·ŃƒŠ½Š“" #: timezones.h:162 msgid "America/Dawson" msgstr "Америка/Š”Š¾ŃƒŃŠ¾Š½" #. comment for time zone America/Dawson #: timezones.h:164 msgid "Pacific Time - north Yukon" msgstr "Š¢ŠøŃ…Š¾Š¾ŠŗŠµŠ°Š½ŃŃŒŠŗŠøŠ¹ час - північний Юкон" #: timezones.h:165 msgid "America/Dawson_Creek" msgstr "Америка/Š‘ŃƒŃ…Ń‚Š° Š”Š¾ŃƒŃŠ¾Š½Š°" #. comment for time zone America/Dawson_Creek #: timezones.h:167 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" "Š“Ń–Ń€ŃŃŒŠŗŠøŠ¹ станГартний час - Досон крик, Форт Ден-Джон, Š‘Ń€ŠøŃ‚Š°Š½ŃŃŒŠŗŠ° ŠšŠ¾Š»ŃƒŠ¼Š±Ń–Ń" #: timezones.h:168 msgid "America/Denver" msgstr "Америка/Денвер" #. comment for time zone America/Denver #: timezones.h:170 msgid "Mountain Time" msgstr "Š“Ń–Ń€ŃŃŒŠŗŠøŠ¹ час" #: timezones.h:171 msgid "America/Detroit" msgstr "Америка/Детройт" #. comment for time zone America/Detroit #: timezones.h:173 msgid "Eastern Time - Michigan - most locations" msgstr "ДхіГний час - ŠœŃ–Ń‡Ń–Š³Š°Š½ - основна частина" #: timezones.h:174 msgid "America/Dominica" msgstr "Америка/Домініка" #: timezones.h:175 msgid "America/Edmonton" msgstr "Америка/ЕГмонтон" #. comment for time zone America/Edmonton #: timezones.h:177 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" "Š“Ń–Ń€ŃŃŒŠŗŠøŠ¹ час - ŠŠ»ŃŒŠ±ŠµŃ€Ń‚Š°, схіГ Š‘Ń€ŠøŃ‚Š°Š½ŃŃŒŠŗŠ¾Ń— ŠšŠ¾Š»ŃƒŠ¼Š±Ń–Ń— та захіГний Даскачеван" #: timezones.h:178 msgid "America/Eirunepe" msgstr "Америка/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:180 msgid "W Amazonas" msgstr "Амазонас, захіГ" #: timezones.h:181 msgid "America/El_Salvador" msgstr "Америка/Š•Š»ŃŒ-Š”Š°Š»ŃŒŠ²Š°Š“Š¾Ń€" #: timezones.h:182 msgid "America/Ensenada" msgstr "Америка/Ensenada" #: timezones.h:183 msgid "America/Fortaleza" msgstr "Америка/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:185 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "ŠŸŃ–Š²Š½Ń–Ń‡Š½ŠøŠ¹-схіГ Бразилии (MA, PI, CE, RN, PB)" #: timezones.h:186 msgid "America/Fort_Wayne" msgstr "Америка/Fort_Wayne" #: timezones.h:187 msgid "America/Glace_Bay" msgstr "Америка/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:189 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" "Атлантичний час - ŠŠ¾Š²Š° ŠØŠ¾Ń‚Š»Š°Š½Š“Ń–Ń - Ге не Š²Ń€Š°Ń…Š¾Š²ŃƒŃ”Ń‚ŃŒŃŃ Генний станГарт 1966-" "1971" #: timezones.h:190 msgid "America/Godthab" msgstr "Америка/Готхоб" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:192 timezones.h:361 timezones.h:450 timezones.h:588 #: timezones.h:751 timezones.h:849 timezones.h:888 msgid "most locations" msgstr "основна частина" #: timezones.h:193 msgid "America/Goose_Bay" msgstr "Америка/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:195 msgid "Atlantic Time - Labrador - most locations" msgstr "Атлантичний час - ЛабраГор - основна частина" #: timezones.h:196 msgid "America/Grand_Turk" msgstr "Америка/Grand_Turk" #: timezones.h:197 msgid "America/Grenada" msgstr "Америка/ГренаГа" #: timezones.h:198 msgid "America/Guadeloupe" msgstr "Америка/Š“Š²Š°Š“ŠµŠ»ŃƒŠæŠ°" #: timezones.h:199 msgid "America/Guatemala" msgstr "Америка/Гватемала" #: timezones.h:200 msgid "America/Guayaquil" msgstr "Америка/Š“ŃƒŃŠ½Š°ŠŗŃ–Š»ŃŒ" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:202 timezones.h:754 timezones.h:760 msgid "mainland" msgstr "материк" #: timezones.h:203 msgid "America/Guyana" msgstr "Америка/Š“Š°ŃŠ½Š°" #: timezones.h:204 msgid "America/Halifax" msgstr "Америка/Єаліфакс" #. comment for time zone America/Halifax #: timezones.h:206 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "Атлантичний час - ŠŠ¾Š²Š° ŠØŠ¾Ń‚Š»Š°Š½Š“Ń–Ń (основна частина)" #: timezones.h:207 msgid "America/Havana" msgstr "Америка/Гавана" #: timezones.h:208 msgid "America/Hermosillo" msgstr "Америка/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:210 msgid "Mountain Standard Time - Sonora" msgstr "Š“Ń–Ń€ŃŃŒŠŗŠøŠ¹ станГартний час - Донора" #: timezones.h:211 msgid "America/Indiana/Indianapolis" msgstr "Америка/ІнГіана/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:213 msgid "Eastern Time - Indiana - most locations" msgstr "ДхіГний час - ІнГіана - основна частина" #: timezones.h:214 msgid "America/Indiana/Knox" msgstr "Америка/ІнГіана/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:216 msgid "Central Time - Indiana - Starke County" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ час - ІнГіана - Š¾ŠŗŃ€ŃƒŠ³ Дтарк" #: timezones.h:217 msgid "America/Indiana/Marengo" msgstr "Америка/ІнГіана/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:219 msgid "Eastern Time - Indiana - Crawford County" msgstr "ДхіГний час - ІнГіана - Š¾ŠŗŃ€ŃƒŠ³ ŠšŃ€Š¾ŃƒŃ„Š¾Ń€Š“" #: timezones.h:220 msgid "America/Indiana/Petersburg" msgstr "Америка/ІнГіана/ŠŸŠµŃ‚ŠµŃ€Š±ŃƒŃ€Š³" #. comment for time zone America/Indiana/Petersburg #: timezones.h:222 msgid "Eastern Time - Indiana - Pike County" msgstr "ДхіГний час - ІнГіана - Š¾ŠŗŃ€ŃƒŠ³ Пайк" #: timezones.h:223 msgid "America/Indianapolis" msgstr "Америка/ІнГіанаполіс" #: timezones.h:224 msgid "America/Indiana/Tell_City" msgstr "Америка/ІнГіана/Tell_City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:226 msgid "Central Time - Indiana - Perry County" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ час - ІнГіана - Š¾ŠŗŃ€ŃƒŠ³ ŠŸŠµŃ€Ń€Ń–" #: timezones.h:227 msgid "America/Indiana/Vevay" msgstr "Америка/ІнГіана/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:229 msgid "Eastern Time - Indiana - Switzerland County" msgstr "ДхіГний час - ІнГіана - Š¾ŠŗŃ€ŃƒŠ³ ŠØŠ²ŠµŠ¹Ń†Š°Ń€Ń–Ń" #: timezones.h:230 msgid "America/Indiana/Vincennes" msgstr "Америка/ІнГіана/Вінсеннес" #. comment for time zone America/Indiana/Vincennes #: timezones.h:232 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "ДхіГний час - ІнГіана - Š¾ŠŗŃ€ŃƒŠ³ Дейвес, Š”ŃŽŠ±ŃƒŠ°, ŠŠ¾ŠŗŃ, ŠœŠ°Ń€Ń‚Ń–Š½" #: timezones.h:233 msgid "America/Indiana/Winamac" msgstr "Америка/ІнГіана/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:235 msgid "Eastern Time - Indiana - Pulaski County" msgstr "ДхіГний час - ІнГіана - Š¾ŠŗŃ€ŃƒŠ³ ŠŸŃƒŠ»Š°ŃŠŗŃ–" #: timezones.h:236 msgid "America/Inuvik" msgstr "Америка/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:238 msgid "Mountain Time - west Northwest Territories" msgstr "Š“Ń–Ń€ŃŃŒŠŗŠøŠ¹ час - захіГна частина ДхіГно-захіГних Територій" #: timezones.h:239 msgid "America/Iqaluit" msgstr "Америка/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:241 msgid "Eastern Time - east Nunavut - most locations" msgstr "ДхіГний час - схіГний ŠŃƒŠ½Š°Š²ŃƒŃ‚ - основна частина" #: timezones.h:242 msgid "America/Jamaica" msgstr "Америка/Ямайка" #: timezones.h:243 msgid "America/Jujuy" msgstr "Америка/Jujuy" #: timezones.h:244 msgid "America/Juneau" msgstr "Америка/Juneau" #. comment for time zone America/Juneau #: timezones.h:246 msgid "Alaska Time - Alaska panhandle" msgstr "ŠŠ»ŃŃŠŗŠ°" #: timezones.h:247 msgid "America/Kentucky/Louisville" msgstr "Америка/ŠšŠµŠ½Ń‚ŃƒŠŗŠŗŃ–/Š›ŃƒŃ—Š·Š²Ń–Š»ŃŒ" #. comment for time zone America/Kentucky/Louisville #: timezones.h:249 msgid "Eastern Time - Kentucky - Louisville area" msgstr "ДхіГний час - ŠšŠµŠ½Ń‚ŃƒŠŗŠŗŃ– - Š›ŃƒŃ—Š·Š²Ń–Š»ŃŒ" #: timezones.h:250 msgid "America/Kentucky/Monticello" msgstr "Америка/ŠšŠµŠ½Ń‚ŃƒŠŗŠŗŃ–/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:252 msgid "Eastern Time - Kentucky - Wayne County" msgstr "ДхіГний час - ŠšŠµŠ½Ń‚ŃƒŠŗŠŗŃ– - Š¾ŠŗŃ€ŃƒŠ³ Š£ŃŠ¹Š½" #: timezones.h:253 msgid "America/Knox_IN" msgstr "Америка/Knox_IN" #: timezones.h:254 msgid "America/La_Paz" msgstr "Америка/La_Paz" #: timezones.h:255 msgid "America/Lima" msgstr "Америка/Ліма" #: timezones.h:256 msgid "America/Los_Angeles" msgstr "Америка/Лос Анжелес" #. comment for time zone America/Los_Angeles #: timezones.h:258 msgid "Pacific Time" msgstr "Š¢ŠøŃ…Š¾Š¾ŠŗŠµŠ°Š½ŃŃŒŠŗŠøŠ¹ час" #: timezones.h:259 msgid "America/Louisville" msgstr "Америка/Š›ŃƒŃ—Š·Š²Ń–Š»ŃŒ" #: timezones.h:260 msgid "America/Maceio" msgstr "Америка/Maceio" #. comment for time zone America/Maceio #: timezones.h:262 msgid "Alagoas, Sergipe" msgstr "Алагоас, ДерГжпайп" #: timezones.h:263 msgid "America/Managua" msgstr "Америка/Манагуа" #: timezones.h:264 msgid "America/Manaus" msgstr "Америка/Manaus" #. comment for time zone America/Manaus #: timezones.h:266 msgid "E Amazonas" msgstr "Амазонас, схіГ" #: timezones.h:267 msgid "America/Marigot" msgstr "Америка/Marigot" #: timezones.h:268 msgid "America/Martinique" msgstr "Америка/ŠœŠ°Ń€Ń‚ŠøŠ½Ń–ŠŗŠ°" #: timezones.h:269 msgid "America/Matamoros" msgstr "Америка/ŠœŠ°Ń‚Š°Š¼Š¾Ń€Š¾Ń" #. comment for time zone America/Matamoros #: timezones.h:271 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" "Мексиканський Ń†ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ час - ŠšŠ¾Š°ŃƒŃ—Š»Š°, Š”ŃƒŃ€Š°Š½Š³Š¾, ŠŃƒŠµŠ²Š¾-Леон, Š¢Š°Š¼Š°ŃƒŠ»Ń–ŠæŠ°Ń " "поблизу віГ ŠŗŠ¾Ń€Š“Š¾Š½Ńƒ Š· ДША" #: timezones.h:272 msgid "America/Mazatlan" msgstr "Америка/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:274 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "Š“Ń–Ń€ŃŃŒŠŗŠøŠ¹ час - Š‘Š°Š¹Ń, ŠŠ°ŃŃ€Ń–Ń‚, Діналоа" #: timezones.h:275 msgid "America/Mendoza" msgstr "Америка/МенГоза" #: timezones.h:276 msgid "America/Menominee" msgstr "Америка/Menominee" #. comment for time zone America/Menominee #: timezones.h:278 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ час - ŠœŃ–Ń‡Ń–Š³Š°Š½ - Š¾ŠŗŃ€ŃƒŠ³ Дікінсон, ГоГжебик, Айрон, ŠœŠµŠ½Š¾Š¼Ń–Š½Ń–" #: timezones.h:279 msgid "America/Merida" msgstr "Америка/Merida" #. comment for time zone America/Merida #: timezones.h:281 msgid "Central Time - Campeche, Yucatan" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ час - ŠšŠ°Š¼ŠæŠµŃ‡Šµ, Юкатан" #: timezones.h:282 msgid "America/Mexico_City" msgstr "Америка/Mexico_City" #. comment for time zone America/Mexico_City #: timezones.h:284 msgid "Central Time - most locations" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ час - основна частина" #: timezones.h:285 msgid "America/Miquelon" msgstr "Америка/Miquelon" #: timezones.h:286 msgid "America/Moncton" msgstr "Америка/ŠœŠ¾Š½ŠŗŃ‚Š¾Š½" #. comment for time zone America/Moncton #: timezones.h:288 msgid "Atlantic Time - New Brunswick" msgstr "Атлантичний час - ŠŠ¾Š²ŠøŠ¹ Брансвік" #: timezones.h:289 msgid "America/Monterrey" msgstr "Америка/ŠœŠ¾Š½Ń‚ŠµŃ€Ń€ŠµŠ¹" #. comment for time zone America/Monterrey #: timezones.h:291 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" "Мексиканський Ń†ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ час - ŠšŠ¾Š°ŃƒŃ—Š»Š°, Š”ŃƒŃ€Š°Š½Š³Š¾, ŠŃƒŠµŠ²Š¾-Леон, Š¢Š°Š¼Š°ŃƒŠ»Ń–ŠæŠ°Ń на " "віГГалі віГ ŠŗŠ¾Ń€Š“Š¾Š½Ńƒ Š· ДША" #: timezones.h:292 msgid "America/Montevideo" msgstr "Америка/ŠœŠ¾Š½Ń‚ŠµŠ²Ń–Š“ŠµŠ¾" #: timezones.h:293 msgid "America/Montreal" msgstr "Америка/ŠœŠ¾Š½Ń€ŠµŠ°Š»ŃŒ" #. comment for time zone America/Montreal #: timezones.h:295 msgid "Eastern Time - Quebec - most locations" msgstr "ДхіГний час - Квебек - основна частина" #: timezones.h:296 msgid "America/Montserrat" msgstr "Америка/ŠœŠ¾Š½ŃŠµŃ€Š°Ń‚" #: timezones.h:297 msgid "America/Nassau" msgstr "Америка/ŠŠ°ŃŃŠ°Ńƒ" #: timezones.h:298 msgid "America/New_York" msgstr "Америка/ŠŃŒŃŽ-Йорк" #. comment for time zone America/New_York #: timezones.h:300 msgid "Eastern Time" msgstr "ДхіГний час" #: timezones.h:301 msgid "America/Nipigon" msgstr "Америка/ŠŃ–ŠæŃ–Š³Š¾Š½" #. comment for time zone America/Nipigon #: timezones.h:303 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" "ДхіГний час - ŠžŠ½Ń‚Š°Ń€Ń–Š¾ та Квебек - Ге не Š²Ń€Š°Ń…Š¾Š²ŃƒŃ”Ń‚ŃŒŃŃ Генний станГарт 1967-" "1973" #: timezones.h:304 msgid "America/Nome" msgstr "Америка/ŠŠ¾Š¼Šµ" #. comment for time zone America/Nome #: timezones.h:306 msgid "Alaska Time - west Alaska" msgstr "ŠŠ»ŃŃŠŗŠ° час - захіГна ŠŠ»ŃŃŠŗŠ°" #: timezones.h:307 msgid "America/Noronha" msgstr "Америка/Noronha" #. comment for time zone America/Noronha #: timezones.h:309 msgid "Atlantic islands" msgstr "ŠžŃŃ‚Ń€Š¾Š²Šø Атлантичного океану" #: timezones.h:310 msgid "America/North_Dakota/Center" msgstr "Америка/ŠŸŃ–Š²Š½Ń–Ń‡Š½Š° Дакота/Центр" #. comment for time zone America/North_Dakota/Center #: timezones.h:312 msgid "Central Time - North Dakota - Oliver County" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ час - ŠŸŃ–Š²Š½Ń–Ń‡Š½Š° Дакота - ŠžŠŗŃ€ŃƒŠ³ ŠžŠ»Ń–Š²ŠµŃ€" #: timezones.h:313 msgid "America/North_Dakota/New_Salem" msgstr "Америка/ŠŸŃ–Š²Š½Ń–Ń‡Š½Š° Дакота/ŠŃŒŃŽ_Далем" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:315 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ час - ŠŸŃ–Š²Š½Ń–Ń‡Š½Š° Дакота - ŠžŠŗŃ€ŃƒŠ³ ŠœŠ¾Ń€Ń‚Š¾Š½ (окрім ŠœŠ°Š½Š“ŃŠ½)" #: timezones.h:316 msgid "America/Ojinaga" msgstr "Америка/ŠžŃ…Ń–Š½Š°Š³Š°" #. comment for time zone America/Ojinaga #: timezones.h:318 msgid "US Mountain Time - Chihuahua near US border" msgstr "Š“Ń–Ń€ŃŃŒŠŗŠøŠ¹ час ДША — Š§Ń–ŃƒŠ°ŃƒŠ° поблизу ŠŗŠ¾Ń€Š“Š¾Š½Ńƒ Š· ДША" #: timezones.h:319 msgid "America/Panama" msgstr "Америка/Панама" #: timezones.h:320 msgid "America/Pangnirtung" msgstr "Америка/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:322 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "ДхіГний час - ŠŸŠ°Š½Ń–Ń€Ń‚Š°Š½Š³, ŠŃƒŠ½Š°Š²ŃƒŃ‚" #: timezones.h:323 msgid "America/Paramaribo" msgstr "Америка/Paramaribo" #: timezones.h:324 msgid "America/Phoenix" msgstr "Америка/Фенікс" #. comment for time zone America/Phoenix #: timezones.h:326 msgid "Mountain Standard Time - Arizona" msgstr "Š“Ń–Ń€ŃŃŒŠŗŠøŠ¹ час - Аризона" #: timezones.h:327 msgid "America/Port-au-Prince" msgstr "Америка/Port-au-Prince" #: timezones.h:328 msgid "America/Porto_Acre" msgstr "Америка/Porto_Acre" #: timezones.h:329 msgid "America/Port_of_Spain" msgstr "Америка/Port_of_Spain" #: timezones.h:330 msgid "America/Porto_Velho" msgstr "Америка/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:332 msgid "Rondonia" msgstr "Š Š¾Š½Š“Š¾Š½Ń–Ń" #: timezones.h:333 msgid "America/Puerto_Rico" msgstr "Америка/ŠŸŃƒŠµŃ€Ń‚Š¾-Ріко" #: timezones.h:334 msgid "America/Rainy_River" msgstr "Америка/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:336 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ час - Рейні Рівер та Форт Франсіс, ŠžŠ½Ń‚Š°Ń€Ń–Š¾" #: timezones.h:337 msgid "America/Rankin_Inlet" msgstr "Америка/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:339 msgid "Central Time - central Nunavut" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ час - Ń†ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ ŠŃƒŠ½Š°Š²ŃƒŃ‚" #: timezones.h:340 msgid "America/Recife" msgstr "Америка/Recife" #. comment for time zone America/Recife #: timezones.h:342 msgid "Pernambuco" msgstr "ŠŸŠµŃ€Š½Š°Š¼Š±ŃƒŠŗŃƒ" #: timezones.h:343 msgid "America/Regina" msgstr "Америка/Регіна" #. comment for time zone America/Regina #: timezones.h:345 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ станГартний час - Даскачеван - основна частина" #: timezones.h:346 msgid "America/Resolute" msgstr "Америка/Resolute" #. comment for time zone America/Resolute #: timezones.h:348 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "ДхіГний станГартний час - Š ŠµŠ·Š¾Š»ŃŽŃ‚, ŠŃƒŠ½Š°Š²ŃƒŃ‚" #: timezones.h:349 msgid "America/Rio_Branco" msgstr "Америка/Ріо Бранко" #. comment for time zone America/Rio_Branco #: timezones.h:351 msgid "Acre" msgstr "Акре" #: timezones.h:352 msgid "America/Rosario" msgstr "Америка/Розаріо" #: timezones.h:353 msgid "America/Santa_Isabel" msgstr "Америка/Данта-Š†ŃŠ°Š±ŠµŠ»ŃŒ" #. comment for time zone America/Santa_Isabel #: timezones.h:355 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" "Мексиканський Ń‚ŠøŃ…Š¾Š¾ŠŗŠµŠ°Š½ŃŃŒŠŗŠøŠ¹ час — ŠŠøŠ¶Š½Ń ŠšŠ°Š»Ń–Ń„Š¾Ń€Š½Ń–Ń на віГГалі віГ ŠŗŠ¾Ń€Š“Š¾Š½Ńƒ Š· " "ДША" #: timezones.h:356 msgid "America/Santarem" msgstr "Америка/Дантарем" #. comment for time zone America/Santarem #: timezones.h:358 msgid "W Para" msgstr "ЗахіГ ŠŸŠ°Ń€Š°" #: timezones.h:359 msgid "America/Santiago" msgstr "Америка/Дант'ŃŠ³Š¾" #: timezones.h:362 msgid "America/Santo_Domingo" msgstr "Америка/Данто-Домінго" #: timezones.h:363 msgid "America/Sao_Paulo" msgstr "Америка/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:365 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" "ŠŸŃ–Š²Š“ŠµŠ½ŃŒ та півГенний схіГ Бразилії (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:366 msgid "America/Scoresbysund" msgstr "Америка/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:368 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Š”ŠŗŠ¾Ń€ŃŠ±Ń–Š·ŃƒŠ½Š“ / Š†Ń‚Š¾ŠŗŠ¾Ń€Ń‚ŃƒŃ€Š¼Ń–Ń–Ń‚" #: timezones.h:369 msgid "America/Shiprock" msgstr "Америка/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:371 msgid "Mountain Time - Navajo" msgstr "Š“Ń–Ń€ŃŃŒŠŗŠøŠ¹ час - ŠŠ°Š²Š°Ń…Š¾" #: timezones.h:372 msgid "America/St_Barthelemy" msgstr "Америка/St_Barthelemy" #: timezones.h:373 msgid "America/St_Johns" msgstr "Америка/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:375 msgid "Newfoundland Time, including SE Labrador" msgstr "ŠŃŒŃŽŃ„Š°ŃƒŠ½Š“Š»ŠµŠ½Š“, півГенний схіГ ЛабраГора" #: timezones.h:376 msgid "America/St_Kitts" msgstr "Америка/St_Kitts" #: timezones.h:377 msgid "America/St_Lucia" msgstr "Америка/St_Lucia" #: timezones.h:378 msgid "America/St_Thomas" msgstr "Америка/St_Thomas" #: timezones.h:379 msgid "America/St_Vincent" msgstr "Америка/St_Vincent" #: timezones.h:380 msgid "America/Swift_Current" msgstr "Америка/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:382 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ станГартний час - Даскачеван - сереГній захіГ" #: timezones.h:383 msgid "America/Tegucigalpa" msgstr "Америка/Tegucigalpa" #: timezones.h:384 msgid "America/Thule" msgstr "Америка/Thule" #. comment for time zone America/Thule #: timezones.h:386 msgid "Thule / Pituffik" msgstr "Туле / ŠŸŃ–Ń‚ŃƒŃ„Ń–Šŗ" #: timezones.h:387 msgid "America/Thunder_Bay" msgstr "Америка/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:389 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "ДхіГний час - ТанГер-Бей, ŠžŠ½Ń‚Š°Ń€Ń–Š¾" #: timezones.h:390 msgid "America/Tijuana" msgstr "Америка/Š¢Ń–Š³ŃƒŠ°Š½Š°" #. comment for time zone America/Tijuana #: timezones.h:392 msgid "US Pacific Time - Baja California near US border" msgstr "Š¢ŠøŃ…Š¾Š¾ŠŗŠµŠ°Š½ŃŃŒŠŗŠøŠ¹ час ДША — ŠŠøŠ¶Š½Ń ŠšŠ°Š»Ń–Ń„Š¾Ń€Š½Ń–Ń поблизу ŠŗŠ¾Ń€Š“Š¾Š½Ńƒ Š· ДША" #: timezones.h:393 msgid "America/Toronto" msgstr "Америка/Торонто" #. comment for time zone America/Toronto #: timezones.h:395 msgid "Eastern Time - Ontario - most locations" msgstr "ДхіГний час - ŠžŠ½Ń‚Š°Ń€Ń–Š¾ - основна частина" #: timezones.h:396 msgid "America/Tortola" msgstr "Америка/Тортола" #: timezones.h:397 msgid "America/Vancouver" msgstr "Америка/Š’Š°Š½ŠŗŃƒŠ²ŠµŃ€" #. comment for time zone America/Vancouver #: timezones.h:399 msgid "Pacific Time - west British Columbia" msgstr "Š¢ŠøŃ…Š¾Š¾ŠŗŠµŠ°Š½ŃŃŒŠŗŠøŠ¹ час - захіГна частина Š‘Ń€ŠøŃ‚Š°Š½ŃŃŒŠŗŠ¾Ń— ŠšŠ¾Š»ŃƒŠ¼Š±Ń–Ń—" #: timezones.h:400 msgid "America/Virgin" msgstr "Америка/Virgin" #: timezones.h:401 msgid "America/Whitehorse" msgstr "Америка/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:403 msgid "Pacific Time - south Yukon" msgstr "Š¢ŠøŃ…Š¾Š¾ŠŗŠµŠ°Š½ŃŃŒŠŗŠøŠ¹ час - півГенний Юкон" #: timezones.h:404 msgid "America/Winnipeg" msgstr "Америка/Вінніпег" #. comment for time zone America/Winnipeg #: timezones.h:406 msgid "Central Time - Manitoba & west Ontario" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ час - ŠœŠ°Š½Ń–Ń‚Š¾Š±Š° та захіГний ŠžŠ½Ń‚аріо" #: timezones.h:407 msgid "America/Yakutat" msgstr "Америка/ŠÆŠŗŃƒŃ‚Š°Ń‚" #. comment for time zone America/Yakutat #: timezones.h:409 msgid "Alaska Time - Alaska panhandle neck" msgstr "ŠŠ»ŃŃŠŗŠ° час - ŠŠ»ŃŃŠŗŠ°, ŠæŠµŃ€ŠµŃˆŠøŠ¹Š¾Šŗ" #: timezones.h:410 msgid "America/Yellowknife" msgstr "Америка/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:412 msgid "Mountain Time - central Northwest Territories" msgstr "Š“Ń–Ń€ŃŃŒŠŗŠøŠ¹ час - Ń†ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š° частина ŠŸŃ–внічно-захіГних Територій" #: timezones.h:413 msgid "Antarctica/Casey" msgstr "АнтарктиГа/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:415 msgid "Casey Station, Bailey Peninsula" msgstr "ŠšŠµŠ¹ŃŃ–, ŃŃ‚Š°Š½Ń†Ń–Ń ŠšŠµŠ¹ŃŃ–, півострів Бейлі" #: timezones.h:416 msgid "Antarctica/Davis" msgstr "АнтарктиГа/Девіс" #. comment for time zone Antarctica/Davis #: timezones.h:418 msgid "Davis Station, Vestfold Hills" msgstr "Дейвіс, ŃŃ‚Š°Š½Ń†Ń–Ń Дейвис, ВестфолГ Єіллс" #: timezones.h:419 msgid "Antarctica/DumontDUrville" msgstr "АнтарктиГа/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:421 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Š”ŃŽŠ¼Š¾Š½-Š“-Š®Ń€Š²Ń–Š»ŃŒ, ŃŃ‚Š°Š½Ń†Ń–Ń Š”ŃŽŠ¼Š¾Š½-Š“-Š®Ń€Š²Ń–Š»ŃŒ, Терра-АГелі" #: timezones.h:422 msgid "Antarctica/Macquarie" msgstr "АнтарктиГа/ŠœŠ°ŠŗŠŗŃƒŠ¾Ń€Ń–" #. comment for time zone Antarctica/Macquarie #: timezones.h:424 msgid "Macquarie Island Station, Macquarie Island" msgstr "ŠžŃŃ‚Ń€Ń–Š²Š½Š° ŃŃ‚Š°Š½Ń†Ń–Ń ŠœŠ°ŠŗŠŗŃƒŠ¾Ń€Ń–, острів ŠœŠ°ŠŗŠŗŃƒŠ¾Ń€Ń–" #: timezones.h:425 msgid "Antarctica/Mawson" msgstr "АнтарктиГа/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:427 msgid "Mawson Station, Holme Bay" msgstr "Моусон, ŃŃ‚Š°Š½Ń†Ń–Ń Моусон, Š±ŃƒŃ…. Єолме" #: timezones.h:428 msgid "Antarctica/McMurdo" msgstr "АнтарктиГа/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:430 msgid "McMurdo Station, Ross Island" msgstr "Мак-ŠœŠµŃ€Š“Š¾, ŃŃ‚Š°Š½Ń†Ń–Ń Мак-ŠœŠµŃ€Š“Š¾, острів Росс" #: timezones.h:431 msgid "Antarctica/Palmer" msgstr "АнтарктиГа/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:433 msgid "Palmer Station, Anvers Island" msgstr "ŠŸŠ°Š»Š¼ŠµŃ€, ŃŃ‚Š°Š½Ń†Ń–Ń ŠŸŠ°Š»Š¼ŠµŃ€, острів Анверс" #: timezones.h:434 msgid "Antarctica/Rothera" msgstr "АнтарктиГа/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:436 msgid "Rothera Station, Adelaide Island" msgstr "Ротера, ŃŃ‚Š°Š½Ń†Ń–Ń Ротера, острів АГелаїГи" #: timezones.h:437 msgid "Antarctica/South_Pole" msgstr "АнтарктиГа/South_Pole" #. comment for time zone Antarctica/South_Pole #: timezones.h:439 msgid "Amundsen-Scott Station, South Pole" msgstr "АмуГсен-Дкотт, ŃŃ‚Š°Š½Ń†Ń–Ń АмуГсен-Дкотт, ŠŸŃ–Š²Š“ŠµŠ½Š½ŠøŠ¹ ŠæŠ¾Š»ŃŽŃ" #: timezones.h:440 msgid "Antarctica/Syowa" msgstr "АнтарктиГа/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:442 msgid "Syowa Station, E Ongul I" msgstr "Дева, ŃŃ‚Š°Š½Ń†Ń–Ń Дева" #: timezones.h:443 msgid "Antarctica/Vostok" msgstr "АнтарктиГа/Восток" #. comment for time zone Antarctica/Vostok #: timezones.h:445 msgid "Vostok Station, S Magnetic Pole" msgstr "Š”Ń‚Š°Š½Ń†Ń–Ń Восток, півГенний ŠæŠ¾Š»ŃŽŃ" #: timezones.h:446 msgid "Arctic/Longyearbyen" msgstr "Арктика/Longyearbyen" #: timezones.h:447 msgid "Asia/Aden" msgstr "ŠŠ·Ń–Ń/АГен" #: timezones.h:448 msgid "Asia/Almaty" msgstr "ŠŠ·Ń–Ń/Алма-Ата" #: timezones.h:451 msgid "Asia/Amman" msgstr "ŠŠ·Ń–Ń/Амман" #: timezones.h:452 msgid "Asia/Anadyr" msgstr "ŠŠ·Ń–Ń/АнаГир" #. comment for time zone Asia/Anadyr #: timezones.h:454 msgid "Moscow+08 - Bering Sea" msgstr "Москва +8 — Берингове море" #: timezones.h:455 msgid "Asia/Aqtau" msgstr "ŠŠ·Ń–Ń/ŠŠŗŃ‚Š°Ńƒ" #. comment for time zone Asia/Aqtau #: timezones.h:457 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "ŠŃ‚ŠøŃ€Š°Ńƒ (ŠŗŠ¾Š»ŠøŃˆŠ½Ń–Š¹ Š“ŃƒŃ€'єв), ŠœŠ°Š½Š³ŠøŃŃ‚Š°Ńƒ" #: timezones.h:458 msgid "Asia/Aqtobe" msgstr "ŠŠ·Ń–Ń/Актобе" #. comment for time zone Asia/Aqtobe #: timezones.h:460 msgid "Aqtobe (Aktobe)" msgstr "ŠŠŗŃ‚ŃŽŠ±Ń–Š½ŃŃŒŠŗ" #: timezones.h:461 msgid "Asia/Ashgabat" msgstr "ŠŠ·Ń–Ń/Ashgabat" #: timezones.h:462 msgid "Asia/Ashkhabad" msgstr "ŠŠ·Ń–Ń/ŠŃˆŃ…Š°Š±Š°Š“" #: timezones.h:463 msgid "Asia/Baghdad" msgstr "ŠŠ·Ń–Ń/БагГаГ" #: timezones.h:464 msgid "Asia/Bahrain" msgstr "ŠŠ·Ń–Ń/Bahrain" #: timezones.h:465 msgid "Asia/Baku" msgstr "ŠŠ·Ń–Ń/Š‘Š°ŠŗŃƒ" #: timezones.h:466 msgid "Asia/Bangkok" msgstr "ŠŠ·Ń–Ń/Бангкок" #: timezones.h:467 msgid "Asia/Beirut" msgstr "ŠŠ·Ń–Ń/Š‘ŠµŠ¹Ń€ŃƒŃ‚" #: timezones.h:468 msgid "Asia/Bishkek" msgstr "ŠŠ·Ń–Ń/Š‘Ń–ŃˆŠŗŠµŠŗ" #: timezones.h:469 msgid "Asia/Brunei" msgstr "ŠŠ·Ń–Ń/Š‘Ń€ŃƒŠ½ŠµŃ—" #: timezones.h:470 msgid "Asia/Calcutta" msgstr "ŠŠ·Ń–Ń/ŠšŠ°Š»ŃŒŠŗŃƒŃ‚Ń‚Š°" #: timezones.h:471 msgid "Asia/Choibalsan" msgstr "ŠŠ·Ń–Ń/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:473 msgid "Dornod, Sukhbaatar" msgstr "ДорноГ, Š”ŃƒŃ…Š±Š°Ń‚Š°Š°Ń€" #: timezones.h:474 msgid "Asia/Chongqing" msgstr "ŠŠ·Ń–Ń/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:476 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š° частина ŠšŠøŃ‚Š°ŃŽ - Š”ŠøŃ‡ŃƒŠ°Š½ŃŒ, Юннань, Š“ŃƒŠ°Š½ŃŃ–, ŠØŠµŠ½ŃŒŃŃ–, Š“ŃƒŠ°Š½Ń‡Š¶Š¾Ńƒ та ін." #: timezones.h:477 msgid "Asia/Chungking" msgstr "ŠŠ·Ń–Ń/Chungking" #: timezones.h:478 msgid "Asia/Colombo" msgstr "ŠŠ·Ń–Ń/Коломбо" #: timezones.h:479 msgid "Asia/Dacca" msgstr "ŠŠ·Ń–Ń/Дакка" #: timezones.h:480 msgid "Asia/Damascus" msgstr "ŠŠ·Ń–Ń/Дамаск" #: timezones.h:481 msgid "Asia/Dhaka" msgstr "ŠŠ·Ń–Ń/Dhaka" #: timezones.h:482 msgid "Asia/Dili" msgstr "ŠŠ·Ń–Ń/Dili" #: timezones.h:483 msgid "Asia/Dubai" msgstr "ŠŠ·Ń–Ń/Š”ŃƒŠ±Š°Š¹" #: timezones.h:484 msgid "Asia/Dushanbe" msgstr "ŠŠ·Ń–Ń/Š”ŃƒŃˆŠ°Š½Š±Šµ" #: timezones.h:485 msgid "Asia/Gaza" msgstr "ŠŠ·Ń–Ń/Газа" #: timezones.h:486 msgid "Asia/Harbin" msgstr "ŠŠ·Ń–Ń/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:488 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Š„ŃŠ¹Š»ŃƒŠ½Ń†Š·ŃŠ½ (окріс ŠœŠ¾Ń…Šµ), Цзилинь" #: timezones.h:489 msgid "Asia/Ho_Chi_Minh" msgstr "ŠŠ·Ń–Ń/Єо-Чі-ŠœŃ–Š½" #: timezones.h:490 msgid "Asia/Hong_Kong" msgstr "ŠŠ·Ń–Ń/Гонг-Конг" #: timezones.h:491 msgid "Asia/Hovd" msgstr "ŠŠ·Ń–Ń/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:493 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Байан-ŠžŠ»Š³Šø, Гові-Алтай, ЄовГ, Увс, Завхан" #: timezones.h:494 msgid "Asia/Irkutsk" msgstr "ŠŠ·Ń–Ń/Š†Ń€ŠŗŃƒŃ‚ŃŃŒŠŗ" #. comment for time zone Asia/Irkutsk #: timezones.h:496 msgid "Moscow+05 - Lake Baikal" msgstr "Москва+05 - Байкал" #: timezones.h:497 msgid "Asia/Istanbul" msgstr "ŠŠ·Ń–Ń/Š”Ń‚Š°Š¼Š±ŃƒŠ»" #: timezones.h:498 msgid "Asia/Jakarta" msgstr "ŠŠ·Ń–Ń/Джакарта" #. comment for time zone Asia/Jakarta #: timezones.h:500 msgid "Java & Sumatra" msgstr "Ява та Š”ŃƒŠ¼Š°Ń‚Ń€Š°" #: timezones.h:501 msgid "Asia/Jayapura" msgstr "ŠŠ·Ń–Ń/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:503 msgid "Irian Jaya & the Moluccas" msgstr "Іріан Š”Š¶Š°Š¹Ń та ŠœŠ¾Š»ŃƒŠŗŠŗŃŃŒŠŗŃ– острови" #: timezones.h:504 msgid "Asia/Jerusalem" msgstr "ŠŠ·Ń–Ń/Š„Ń€ŃƒŃŠ°Š»ŠøŠ¼" #: timezones.h:505 msgid "Asia/Kabul" msgstr "ŠŠ·Ń–Ń/Кабул" #: timezones.h:506 msgid "Asia/Kamchatka" msgstr "ŠŠ·Ń–Ń/ŠšŠ°Š¼Ń‡Š°Ń‚ŠŗŠ°" #. comment for time zone Asia/Kamchatka #: timezones.h:508 msgid "Moscow+08 - Kamchatka" msgstr "Москва +08 — ŠšŠ°Š¼Ń‡Š°Ń‚ŠŗŠ°" #: timezones.h:509 msgid "Asia/Karachi" msgstr "ŠŠ·Ń–Ń/ŠšŠ°Ń€Š°Ń‡Ń–" #: timezones.h:510 msgid "Asia/Kashgar" msgstr "ŠŠ·Ń–Ń/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:512 msgid "west Tibet & Xinjiang" msgstr "схіГний Тибет та Š”ŠøŠ½Ń†Š·ŃŠ½" #: timezones.h:513 msgid "Asia/Kathmandu" msgstr "ŠŠ·Ń–Ń/ŠšŠ°Ń‚Š¼Š°Š½Š“Ńƒ" #: timezones.h:514 msgid "Asia/Katmandu" msgstr "ŠŠ·Ń–Ń/ŠšŠ°Ń‚Š¼Š°Š½Š“Ńƒ" #: timezones.h:515 msgid "Asia/Kolkata" msgstr "ŠŠ·Ń–Ń/ŠšŠ°Š»ŃŒŠŗŃƒŃ‚Ń‚Š°" #: timezones.h:516 msgid "Asia/Krasnoyarsk" msgstr "ŠŠ·Ń–Ń/ŠšŃ€Š°ŃŠ½Š¾ŃŃ€ŃŃŒŠŗ" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:518 msgid "Moscow+04 - Yenisei River" msgstr "Москва+04 - Єнісей" #: timezones.h:519 msgid "Asia/Kuala_Lumpur" msgstr "ŠŠ·Ń–Ń/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:521 msgid "peninsular Malaysia" msgstr "ŠœŠ°Š»Š°Š¹Š·Ń–Ń, півострівна" #: timezones.h:522 msgid "Asia/Kuching" msgstr "ŠŠ·Ń–Ń/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:524 msgid "Sabah & Sarawak" msgstr "Даба та Даравак" #: timezones.h:525 msgid "Asia/Kuwait" msgstr "ŠŠ·Ń–Ń/ŠšŃƒŠ²ŠµŠ¹Ń‚" #: timezones.h:526 msgid "Asia/Macao" msgstr "ŠŠ·Ń–Ń/Макао" #: timezones.h:527 msgid "Asia/Macau" msgstr "ŠŠ·Ń–Ń/Macau" #: timezones.h:528 msgid "Asia/Magadan" msgstr "ŠŠ·Ń–Ń/МагаГан" #. comment for time zone Asia/Magadan #: timezones.h:530 msgid "Moscow+08 - Magadan" msgstr "Москва+08 - МагаГан" #: timezones.h:531 msgid "Asia/Makassar" msgstr "ŠŠ·Ń–Ń/ŠœŠ°ŠŗŠ°ŃŃŠ°Ń€" #. comment for time zone Asia/Makassar #: timezones.h:533 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" "ŠŸŃ–Š²Š“ŠµŠ½Š½ŠøŠ¹ та схіГний Борнео, Целебес, Бали, ŠŃƒŃŠ° Тенгара, захіГний Тимор" #: timezones.h:534 msgid "Asia/Manila" msgstr "ŠŠ·Ń–Ń/ŠœŠ°Š½Ń–Š»Š°" #: timezones.h:535 msgid "Asia/Muscat" msgstr "ŠŠ·Ń–Ń/Muscat" #: timezones.h:536 msgid "Asia/Nicosia" msgstr "ŠŠ·Ń–Ń/ŠŃ–ŠŗŠ¾ŃŃ–Ń" #: timezones.h:537 msgid "Asia/Novokuznetsk" msgstr "ŠŠ·Ń–Ń/ŠŠ¾Š²Š¾ŠŗŃƒŠ·Š½ŠµŃ†ŃŒŠŗ" #. comment for time zone Asia/Novokuznetsk #: timezones.h:539 msgid "Moscow+03 - Novokuznetsk" msgstr "Москва +03 — ŠŠ¾Š²Š¾ŠŗŃƒŠ·Š½ŠµŃ†ŃŒŠŗ" #: timezones.h:540 msgid "Asia/Novosibirsk" msgstr "ŠŠ·Ń–Ń/ŠŠ¾Š²Š¾ŃŠøŠ±Ń–Ń€ŃŃŒŠŗ" #. comment for time zone Asia/Novosibirsk #: timezones.h:542 msgid "Moscow+03 - Novosibirsk" msgstr "Москва+03 - ŠŠ¾Š²Š¾ŃŠøŠ±Ń–Ń€ŃŃŒŠŗ" #: timezones.h:543 msgid "Asia/Omsk" msgstr "ŠŠ·Ń–Ń/ŠžŠ¼ŃŃŒŠŗ" #. comment for time zone Asia/Omsk #: timezones.h:545 msgid "Moscow+03 - west Siberia" msgstr "Москва+03 - захіГ Š”ŠøŠ±Ń–Ń€Ńƒ" #: timezones.h:546 msgid "Asia/Oral" msgstr "ŠŠ·Ń–Ń/ŠžŃ€Š°Š»" #. comment for time zone Asia/Oral #: timezones.h:548 msgid "West Kazakhstan" msgstr "ЗахіГний ŠšŠ°Š·Š°Ń…стан" #: timezones.h:549 msgid "Asia/Phnom_Penh" msgstr "ŠŠ·Ń–Ń/Phnom_Penh" #: timezones.h:550 msgid "Asia/Pontianak" msgstr "ŠŠ·Ń–Ń/ŠŸŠ¾Š½Ń‚Ń–Š°Š½Š°Šŗ" #. comment for time zone Asia/Pontianak #: timezones.h:552 msgid "west & central Borneo" msgstr "ЗахіГний та Ń†ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ Борнео" #: timezones.h:553 msgid "Asia/Pyongyang" msgstr "ŠŠ·Ń–Ń/Pyongyang" #: timezones.h:554 msgid "Asia/Qatar" msgstr "ŠŠ·Ń–Ń/ŠšŠ°Ń‚Š°Ń€" #: timezones.h:555 msgid "Asia/Qyzylorda" msgstr "ŠŠ·Ń–Ń/ŠšŠøŠ·ŠøŠ»Š¾Ń€Š“Š°" #. comment for time zone Asia/Qyzylorda #: timezones.h:557 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "ŠšŠøŠ·ŠøŠ»Š¾Ń€Š“Š°" #: timezones.h:558 msgid "Asia/Rangoon" msgstr "ŠŠ·Ń–Ń/Rangoon" #: timezones.h:559 msgid "Asia/Riyadh" msgstr "ŠŠ·Ń–Ń/Riyadh" #: timezones.h:560 msgid "Asia/Riyadh87" msgstr "ŠŠ·Ń–Ń/Riyadh87" #: timezones.h:561 msgid "Asia/Riyadh88" msgstr "ŠŠ·Ń–Ń/Riyadh88" #: timezones.h:562 msgid "Asia/Riyadh89" msgstr "ŠŠ·Ń–Ń/Riyadh89" #: timezones.h:563 msgid "Asia/Saigon" msgstr "ŠŠ·Ń–Ń/Дайгон" #: timezones.h:564 msgid "Asia/Sakhalin" msgstr "ŠŠ·Ń–Ń/Дахалін" #. comment for time zone Asia/Sakhalin #: timezones.h:566 msgid "Moscow+07 - Sakhalin Island" msgstr "Москва+07 - Дахалін, острів" #: timezones.h:567 msgid "Asia/Samarkand" msgstr "ŠŠ·Ń–Ń/ДамарканГ" #. comment for time zone Asia/Samarkand #: timezones.h:569 msgid "west Uzbekistan" msgstr "ЗахіГний Узбекистан" #: timezones.h:570 msgid "Asia/Seoul" msgstr "ŠŠ·Ń–Ń/Деул" #: timezones.h:571 msgid "Asia/Shanghai" msgstr "ŠŠ·Ń–Ń/Шанхай" #. comment for time zone Asia/Shanghai #: timezones.h:573 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "ДхіГний ŠšŠøŃ‚ай - Пекин, Š“ŃƒŠ°Š½Š“ŃƒŠ½, Шанхай та ін." #: timezones.h:574 msgid "Asia/Singapore" msgstr "ŠŠ·Ń–Ń/Š”Ń–Š½Š³Š°ŠæŃƒŃ€" #: timezones.h:575 msgid "Asia/Taipei" msgstr "ŠŠ·Ń–Ń/Тайпей" #: timezones.h:576 msgid "Asia/Tashkent" msgstr "ŠŠ·Ń–Ń/Š¢Š°ŃˆŠŗŠµŠ½Ń‚" #. comment for time zone Asia/Tashkent #: timezones.h:578 msgid "east Uzbekistan" msgstr "схіГний Узбекистан" #: timezones.h:579 msgid "Asia/Tbilisi" msgstr "ŠŠ·Ń–Ń/Тбілісі" #: timezones.h:580 msgid "Asia/Tehran" msgstr "ŠŠ·Ń–Ń/Tehran" #: timezones.h:581 msgid "Asia/Tel_Aviv" msgstr "ŠŠ·Ń–Ń/Тель-Авів" #: timezones.h:582 msgid "Asia/Thimbu" msgstr "ŠŠ·Ń–Ń/Thimbu" #: timezones.h:583 msgid "Asia/Thimphu" msgstr "ŠŠ·Ń–Ń/Thimphu" #: timezones.h:584 msgid "Asia/Tokyo" msgstr "ŠŠ·Ń–Ń/Токіо" #: timezones.h:585 msgid "Asia/Ujung_Pandang" msgstr "ŠŠ·Ń–Ń/Ujung_Pandang" #: timezones.h:586 msgid "Asia/Ulaanbaatar" msgstr "ŠŠ·Ń–Ń/Ulaanbaatar" #: timezones.h:589 msgid "Asia/Ulan_Bator" msgstr "ŠŠ·Ń–Ń/Ulan_Bator" #: timezones.h:590 msgid "Asia/Urumqi" msgstr "ŠŠ·Ń–Ń/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:592 msgid "most of Tibet & Xinjiang" msgstr "ŠžŃŠ½Š¾Š²Š½Š° частина Š¢ŠøŠ±ŠµŃ‚Ńƒ та Š”ŠøŠ½Ń†Š·ŃŠ½" #: timezones.h:593 msgid "Asia/Vientiane" msgstr "ŠŠ·Ń–Ń/Š’'єнт'ŃŠ½" #: timezones.h:594 msgid "Asia/Vladivostok" msgstr "ŠŠ·Ń–Ń/ВлаГивосток" #. comment for time zone Asia/Vladivostok #: timezones.h:596 msgid "Moscow+07 - Amur River" msgstr "Москва+07 - ŠŠ¼ŃƒŃ€" #: timezones.h:597 msgid "Asia/Yakutsk" msgstr "ŠŠ·Ń–Ń/ŠÆŠŗŃƒŃ‚ŃŃŒŠŗ" #. comment for time zone Asia/Yakutsk #: timezones.h:599 msgid "Moscow+06 - Lena River" msgstr "Москва+06 - ріка Лена" #: timezones.h:600 msgid "Asia/Yekaterinburg" msgstr "ŠŠ·Ń–Ń/Š„ŠŗŠ°Ń‚ŠµŃ€ŠøŠ½Š±ŃƒŃ€Š³" #. comment for time zone Asia/Yekaterinburg #: timezones.h:602 msgid "Moscow+02 - Urals" msgstr "Москва+02 - Урал" #: timezones.h:603 msgid "Asia/Yerevan" msgstr "ŠŠ·Ń–Ń/Yerevan" #: timezones.h:604 msgid "Atlantic/Azores" msgstr "Атлантика/ŠŠ·Š¾Ń€ŃŃŒŠŗŃ– о-ви" #. comment for time zone Atlantic/Azores #: timezones.h:606 msgid "Azores" msgstr "ŠŠ·Š¾Ń€ŃŃŒŠŗŃ– острови" #: timezones.h:607 msgid "Atlantic/Bermuda" msgstr "Атлантика/Š‘ŠµŃ€Š¼ŃƒŠ“ŃŃŒŠŗŃ– о-ви" #: timezones.h:608 msgid "Atlantic/Canary" msgstr "Атлантика/ŠšŠ°Š½Š°Ń€ŃŃŒŠŗŃ– о-ви" #. comment for time zone Atlantic/Canary #: timezones.h:610 msgid "Canary Islands" msgstr "ŠšŠ°Š½Š°Ń€ŃŃŒŠŗŃ– острови" #: timezones.h:611 msgid "Atlantic/Cape_Verde" msgstr "Атлантика/Капе ВерГе" #: timezones.h:612 msgid "Atlantic/Faeroe" msgstr "Атлантика/Фарерскі о-ви" #: timezones.h:613 msgid "Atlantic/Faroe" msgstr "Атлантика/Фарерскі о-ви" #: timezones.h:614 msgid "Atlantic/Jan_Mayen" msgstr "Атлантика/Jan_Mayen" #: timezones.h:615 msgid "Atlantic/Madeira" msgstr "Атлантика/ŠœŠ°Š“ŠµŠ¹Ń€Š°" #. comment for time zone Atlantic/Madeira #: timezones.h:617 msgid "Madeira Islands" msgstr "ŠœŠ°Š“ŠµŠ¹Ń€Š°, острови" #: timezones.h:618 msgid "Atlantic/Reykjavik" msgstr "Атлантика/Рейк'ŃŠ²Ń–Šŗ" #: timezones.h:619 msgid "Atlantic/South_Georgia" msgstr "Атлантика/South_Georgia" #: timezones.h:620 msgid "Atlantic/Stanley" msgstr "Атлантика/Дтенлі" #: timezones.h:621 msgid "Atlantic/St_Helena" msgstr "Атлантика/о-в Дв.ŠžŠ»ŠµŠ½Šø" #: timezones.h:622 msgid "Australia/ACT" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/ACT" #: timezones.h:623 msgid "Australia/Adelaide" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:625 msgid "South Australia" msgstr "ŠŸŃ–Š²Š“ŠµŠ½Š½Š° ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń" #: timezones.h:626 msgid "Australia/Brisbane" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:628 msgid "Queensland - most locations" msgstr "ŠšŠ²Ń–Š½ŃŠ»ŠµŠ½Š“ - основна частина" #: timezones.h:629 msgid "Australia/Broken_Hill" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:631 msgid "New South Wales - Yancowinna" msgstr "ŠŠ¾Š²ŠøŠ¹ ŠŸŃ–Š²Š“ŠµŠ½Š½ŠøŠ¹ Уельс - Янковінна" #: timezones.h:632 msgid "Australia/Canberra" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/Canberra" #: timezones.h:633 msgid "Australia/Currie" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/Currie" #. comment for time zone Australia/Currie #: timezones.h:635 msgid "Tasmania - King Island" msgstr "Š¢Š°ŃŠ¼Š°Š½Ń–Ń - острів ŠšŃ–Š½Š³" #: timezones.h:636 msgid "Australia/Darwin" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:638 msgid "Northern Territory" msgstr "ŠŸŃ–Š²Š½Ń–Ń‡Š½Š° Ń‚ŠµŃ€ŠøŃ‚Š¾Ń€Ń–Ń" #: timezones.h:639 msgid "Australia/Eucla" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/Юкла" #. comment for time zone Australia/Eucla #: timezones.h:641 msgid "Western Australia - Eucla area" msgstr "ЗахіГна ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń - Юкла" #: timezones.h:642 msgid "Australia/Hobart" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:644 msgid "Tasmania - most locations" msgstr "Š¢Š°ŃŠ¼Š°Š½Ń–Ń - основна частина" #: timezones.h:645 msgid "Australia/LHI" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/LHI" #: timezones.h:646 msgid "Australia/Lindeman" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:648 msgid "Queensland - Holiday Islands" msgstr "ŠšŠ²Ń–Š½ŃŠ»ŠµŠ½Š“ - острови ЄолиГей" #: timezones.h:649 msgid "Australia/Lord_Howe" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:651 msgid "Lord Howe Island" msgstr "ЛорГ Єау, острів" #: timezones.h:652 msgid "Australia/Melbourne" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/ŠœŠµŠ»ŃŒŠ±ŃƒŃ€Š½" #. comment for time zone Australia/Melbourne #: timezones.h:654 msgid "Victoria" msgstr "Š’Ń–ŠŗŃ‚Š¾Ń€Ń–Ń" #: timezones.h:655 msgid "Australia/North" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/ŠŸŃ–Š²Š½Ń–Ń‡" #: timezones.h:656 msgid "Australia/NSW" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/NSW" #: timezones.h:657 msgid "Australia/Perth" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/Perth" #. comment for time zone Australia/Perth #: timezones.h:659 msgid "Western Australia - most locations" msgstr "ЗахіГна ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń - основна частина" #: timezones.h:660 msgid "Australia/Queensland" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/Queensland" #: timezones.h:661 msgid "Australia/South" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/ŠŸŃ–Š²Š“ŠµŠ½ŃŒ" #: timezones.h:662 msgid "Australia/Sydney" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/ДіГней" #. comment for time zone Australia/Sydney #: timezones.h:664 msgid "New South Wales - most locations" msgstr "ŠŠ¾Š²ŠøŠ¹ ŠŸŃ–Š²Š“ŠµŠ½Š½ŠøŠ¹ Уельс - основна частина" #: timezones.h:665 msgid "Australia/Tasmania" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/Š¢Š°ŃŠ¼Š°Š½Ń–Ń" #: timezones.h:666 msgid "Australia/Victoria" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/Š’Ń–ŠŗŃ‚Š¾Ń€Ń–Ń" #: timezones.h:667 msgid "Australia/West" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/ЗахіГ" #: timezones.h:668 msgid "Australia/Yancowinna" msgstr "ŠŠ²ŃŃ‚Ń€Š°Š»Ń–Ń/Yancowinna" #: timezones.h:669 msgid "Brazil/Acre" msgstr "Š‘Ń€Š°Š·ŠøŠ»Ń–Ń/Acre" #: timezones.h:670 msgid "Brazil/DeNoronha" msgstr "Š‘Ń€Š°Š·ŠøŠ»Ń–Ń/DeNoronha" #: timezones.h:671 msgid "Brazil/East" msgstr "Š‘Ń€Š°Š·ŠøŠ»Ń–Ń/ДхіГ" #: timezones.h:672 msgid "Brazil/West" msgstr "Š‘Ń€Š°Š·ŠøŠ»Ń–Ń/ЗахіГ" #: timezones.h:673 msgid "Canada/Atlantic" msgstr "КанаГа/Атлантика" #: timezones.h:674 msgid "Canada/Central" msgstr "КанаГа/Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š° частина" #: timezones.h:675 msgid "Canada/Eastern" msgstr "КанаГа/ДхіГна частина" #: timezones.h:676 msgid "Canada/East-Saskatchewan" msgstr "КанаГа/East-Saskatchewan" #: timezones.h:677 msgid "Canada/Mountain" msgstr "КанаГа/Mountain" #: timezones.h:678 msgid "Canada/Newfoundland" msgstr "КанаГа/Newfoundland" #: timezones.h:679 msgid "Canada/Pacific" msgstr "КанаГа/Pacific" #: timezones.h:680 msgid "Canada/Saskatchewan" msgstr "КанаГа/Š”Š°ŃŠŗŠ°Ń‡ŠµŠ²Š°Š½ŃŒ" #: timezones.h:681 msgid "Canada/Yukon" msgstr "КанаГа/Юкон" #: timezones.h:682 msgid "CET" msgstr "CET" #: timezones.h:683 msgid "Chile/Continental" msgstr "Chile/Continental" #: timezones.h:684 msgid "Chile/EasterIsland" msgstr "Chile/EasterIsland" #: timezones.h:685 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:686 msgid "Cuba" msgstr "Куба" #: timezones.h:687 msgid "EET" msgstr "EET" #: timezones.h:688 msgid "Egypt" msgstr "Єгипет" #: timezones.h:689 msgid "Eire" msgstr "Eire" #: timezones.h:690 msgid "EST" msgstr "EST" #: timezones.h:691 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:692 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:693 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:694 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:695 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:696 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:697 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:698 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:699 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:700 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:701 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:702 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:703 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:704 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:705 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:706 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:707 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:708 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:709 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:710 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:711 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:712 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:713 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:714 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:715 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:716 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:717 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:718 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:719 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:720 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:721 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:722 msgid "Etc/Greenwich" msgstr "Etc/Грінвич" #: timezones.h:723 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:724 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:725 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:726 msgid "Etc/Zulu" msgstr "Etc/Š—ŃƒŠ»Ńƒ" #: timezones.h:727 msgid "Europe/Amsterdam" msgstr "Європа/АмстерГам" #: timezones.h:728 msgid "Europe/Andorra" msgstr "Європа/АнГорра" #: timezones.h:729 msgid "Europe/Athens" msgstr "Європа/Афіни" #: timezones.h:730 msgid "Europe/Belfast" msgstr "Європа/Белфаст" #: timezones.h:731 msgid "Europe/Belgrade" msgstr "Європа/БелграГ" #: timezones.h:732 msgid "Europe/Berlin" msgstr "Європа/Берлін" #: timezones.h:733 msgid "Europe/Bratislava" msgstr "Європа/Братислава" #: timezones.h:734 msgid "Europe/Brussels" msgstr "Європа/Š‘Ń€ŃŽŃŃŠµŠ»ŃŒ" #: timezones.h:735 msgid "Europe/Bucharest" msgstr "Європа/Š‘ŃƒŃ…Š°Ń€ŠµŃŃ‚" #: timezones.h:736 msgid "Europe/Budapest" msgstr "Європа/Š‘ŃƒŠ“Š°ŠæŠµŃˆŃ‚" #: timezones.h:737 msgid "Europe/Chisinau" msgstr "Європа/ŠšŠøŃˆŠøŠ½Ń–Š²" #: timezones.h:738 msgid "Europe/Copenhagen" msgstr "Європа/Копенгаген" #: timezones.h:739 msgid "Europe/Dublin" msgstr "Європа/Š”ŃƒŠ±Š»Ń–Š½" #: timezones.h:740 msgid "Europe/Gibraltar" msgstr "Європа/Гібралтар" #: timezones.h:741 msgid "Europe/Guernsey" msgstr "Європа/Гернси" #: timezones.h:742 msgid "Europe/Helsinki" msgstr "Європа/Š„ŠµŠ»ŃŒŃŃ–Š½ŠŗŃ–" #: timezones.h:743 msgid "Europe/Isle_of_Man" msgstr "Європа/ŠžŃŃ‚Ń€Ń–Š²_Мен" #: timezones.h:744 msgid "Europe/Istanbul" msgstr "Європа/Š”Ń‚Š°Š¼Š±ŃƒŠ»" #: timezones.h:745 msgid "Europe/Jersey" msgstr "Європа/Джерсі" #: timezones.h:746 msgid "Europe/Kaliningrad" msgstr "Європа/ŠšŠ°Š»Ń–Š½Ń–Š½Š³Ń€Š°Š“" #. comment for time zone Europe/Kaliningrad #: timezones.h:748 msgid "Moscow-01 - Kaliningrad" msgstr "Москва-01 - ŠšŠ°Š»Ń–Š½Ń–Š½Š³Ń€Š°Š“" #: timezones.h:749 msgid "Europe/Kiev" msgstr "Європа/ŠšŠøŃ—Š²" #: timezones.h:752 msgid "Europe/Lisbon" msgstr "Європа/Лісабон" #: timezones.h:755 msgid "Europe/Ljubljana" msgstr "Європа/Š›ŃŽŠ±Š»ŃŠ½Š°" #: timezones.h:756 msgid "Europe/London" msgstr "Європа/ЛонГон" #: timezones.h:757 msgid "Europe/Luxembourg" msgstr "Європа/Š›ŃŽŠŗŃŠµŠ¼Š±ŃƒŃ€Š³" #: timezones.h:758 msgid "Europe/Madrid" msgstr "Європа/ŠœŠ°Š“Ń€ŠøŠ“" #: timezones.h:761 msgid "Europe/Malta" msgstr "Європа/ŠœŠ°Š»ŃŒŃ‚Š°" #: timezones.h:762 msgid "Europe/Mariehamn" msgstr "Європа/Mariehamn" #: timezones.h:763 msgid "Europe/Minsk" msgstr "Європа/ŠœŃ–Š½ŃŃŒŠŗ" #: timezones.h:764 msgid "Europe/Monaco" msgstr "Європа/Монако" #: timezones.h:765 msgid "Europe/Moscow" msgstr "Європа/Москва" #. comment for time zone Europe/Moscow #: timezones.h:767 msgid "Moscow+00 - west Russia" msgstr "Москва+00 - ДхіГна частина Россії" #: timezones.h:768 msgid "Europe/Nicosia" msgstr "Європа/ŠŃ–ŠŗŠ¾ŃŃ–Ń" #: timezones.h:769 msgid "Europe/Oslo" msgstr "Європа/ŠžŃŠ»Š¾" #: timezones.h:770 msgid "Europe/Paris" msgstr "Європа/ŠŸŠ°Ń€ŠøŠ¶" #: timezones.h:771 msgid "Europe/Podgorica" msgstr "Європа/ŠŸŠ¾Š“Š³Š¾Ń€ŠøŃ†Ń" #: timezones.h:772 msgid "Europe/Prague" msgstr "Європа/ŠŸŃ€Š°Š³Š°" #: timezones.h:773 msgid "Europe/Riga" msgstr "Європа/Рига" #: timezones.h:774 msgid "Europe/Rome" msgstr "Європа/Рим" #: timezones.h:775 msgid "Europe/Samara" msgstr "Європа/Дамара" #. comment for time zone Europe/Samara #: timezones.h:777 msgid "Moscow - Samara, Udmurtia" msgstr "Москва — Дамара, Š£Š“Š¼ŃƒŃ€Ń‚Ń–Ń" #: timezones.h:778 msgid "Europe/San_Marino" msgstr "Європа/Дан ŠœŠ°Ń€Ń‚іно" #: timezones.h:779 msgid "Europe/Sarajevo" msgstr "Європа/Дараєво" #: timezones.h:780 msgid "Europe/Simferopol" msgstr "Європа/Š”Ń–Š¼Ń„ŠµŃ€Š¾ŠæŠ¾Š»ŃŒ" #. comment for time zone Europe/Simferopol #: timezones.h:782 msgid "central Crimea" msgstr "Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½ŠøŠ¹ ŠšŃ€ŠøŠ¼" #: timezones.h:783 msgid "Europe/Skopje" msgstr "Європа/Š”ŠŗŠ¾ŠæŃŒŃ”" #: timezones.h:784 msgid "Europe/Sofia" msgstr "Європа/Š”Š¾Ń„Ń–Ń" #: timezones.h:785 msgid "Europe/Stockholm" msgstr "Європа/Š”Ń‚Š¾ŠŗŠ³Š¾Š»ŃŒŠ¼" #: timezones.h:786 msgid "Europe/Tallinn" msgstr "Європа/Таллін" #: timezones.h:787 msgid "Europe/Tirane" msgstr "Європа/Тирана" #: timezones.h:788 msgid "Europe/Tiraspol" msgstr "Європа/Š¢ŠøŃ€Š°ŃŠæŠ¾Š»ŃŒ" #: timezones.h:789 msgid "Europe/Uzhgorod" msgstr "Європа/УжгороГ" #. comment for time zone Europe/Uzhgorod #: timezones.h:791 msgid "Ruthenia" msgstr "Зах.Україна" #: timezones.h:792 msgid "Europe/Vaduz" msgstr "Європа/Š’Š°Š“ŃƒŃ†" #: timezones.h:793 msgid "Europe/Vatican" msgstr "Європа/Ватикан" #: timezones.h:794 msgid "Europe/Vienna" msgstr "Європа/Вєна" #: timezones.h:795 msgid "Europe/Vilnius" msgstr "Європа/Š’Ń–Š»ŃŒŠ½ŃŽŃ" #: timezones.h:796 msgid "Europe/Volgograd" msgstr "Європа/ВолгограГ" #. comment for time zone Europe/Volgograd #: timezones.h:798 msgid "Moscow+00 - Caspian Sea" msgstr "Москва+00 - ŠšŠ°ŃŠæŃ–Š¹ŃŃŒŠŗŠµ море" #: timezones.h:799 msgid "Europe/Warsaw" msgstr "Європа/Š’Š°Ń€ŃˆŠ°Š²Š°" #: timezones.h:800 msgid "Europe/Zagreb" msgstr "Європа/Загреб" #: timezones.h:801 msgid "Europe/Zaporozhye" msgstr "Європа/Š—Š°ŠæŠ¾Ń€Ń–Š¶Š¶Ń" #. comment for time zone Europe/Zaporozhye #: timezones.h:803 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Š—Š°ŠæŠ¾Ń€Ń–Š¶Š¶Ń, Š›ŃƒŠ³Š°Š½ŃŃŒŠŗ" #: timezones.h:804 msgid "Europe/Zurich" msgstr "Європа/Š¦ŃŽŃ€Ń–Ń…" #: timezones.h:805 msgid "Factory" msgstr "Factory" #: timezones.h:806 msgid "GB" msgstr "Š‘Ń€ŠøŃ‚Š°Š½Ń–Ń" #: timezones.h:807 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:808 msgid "GMT" msgstr "GMT" #: timezones.h:809 msgid "GMT0" msgstr "GMT0" #: timezones.h:810 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:811 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:812 msgid "Greenwich" msgstr "Грінвіч" #: timezones.h:813 msgid "Hongkong" msgstr "Гонг-Конг" #: timezones.h:814 msgid "HST" msgstr "HST" #: timezones.h:815 msgid "Iceland" msgstr "Š†ŃŠ»Š°Š½Š“Ń–Ń" #: timezones.h:816 msgid "Indian/Antananarivo" msgstr "Š†Š½Š“Ń–Š¹ŃŃŒŠŗŠøŠ¹ океан/Antananarivo" #: timezones.h:817 msgid "Indian/Chagos" msgstr "Š†Š½Š“Ń–Š¹ŃŃŒŠŗŠøŠ¹ океан/Chagos" #: timezones.h:818 msgid "Indian/Christmas" msgstr "Š†Š½Š“Ń–Š¹ŃŃŒŠŗŠøŠ¹ океан/Christmas" #: timezones.h:819 msgid "Indian/Cocos" msgstr "Š†Š½Š“Ń–Š¹ŃŃŒŠŗŠøŠ¹ океан/Cocos" #: timezones.h:820 msgid "Indian/Comoro" msgstr "Š†Š½Š“Ń–Š¹ŃŃŒŠŗŠøŠ¹ океан/Comoro" #: timezones.h:821 msgid "Indian/Kerguelen" msgstr "Š†Š½Š“Ń–Š¹ŃŃŒŠŗŠøŠ¹ океан/Kerguelen" #: timezones.h:822 msgid "Indian/Mahe" msgstr "Š†Š½Š“Ń–Š¹ŃŃŒŠŗŠøŠ¹ океан/Mahe" #: timezones.h:823 msgid "Indian/Maldives" msgstr "Š†Š½Š“Ń–Š¹ŃŃŒŠŗŠøŠ¹ океан/ŠœŠ°Š»ŃŒŠ“Ń–Š²ŃŃŒŠŗŃ– о-ви" #: timezones.h:824 msgid "Indian/Mauritius" msgstr "Š†Š½Š“Ń–Š¹ŃŃŒŠŗŠøŠ¹ океан/Mauritius" #: timezones.h:825 msgid "Indian/Mayotte" msgstr "Š†Š½Š“Ń–Š¹ŃŃŒŠŗŠøŠ¹ океан/Mayotte" #: timezones.h:826 msgid "Indian/Reunion" msgstr "Š†Š½Š“Ń–Š¹ŃŃŒŠŗŠøŠ¹ океан/Reunion" #: timezones.h:827 msgid "Iran" msgstr "Іран" #: timezones.h:828 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:829 msgid "Israel" msgstr "Š†Š·Ń€Š°Ń—Š»ŃŒ" #: timezones.h:830 msgid "Jamaica" msgstr "Ямайка" #: timezones.h:831 msgid "Japan" msgstr "ŠÆŠæŠ¾Š½Ń–Ń" #. comment for time zone Pacific/Kwajalein #: timezones.h:832 timezones.h:885 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:833 msgid "Libya" msgstr "Š›Ń–Š²Ń–Ń" #: timezones.h:834 msgid "MET" msgstr "MET" #: timezones.h:835 msgid "Mexico/BajaNorte" msgstr "Мексика/BajaNorte" #: timezones.h:836 msgid "Mexico/BajaSur" msgstr "Мексика/BajaSur" #: timezones.h:837 msgid "Mexico/General" msgstr "Мексика/General" #: timezones.h:838 msgid "Mideast/Riyadh87" msgstr "Mideast/Riyadh87" #: timezones.h:839 msgid "Mideast/Riyadh88" msgstr "Mideast/Riyadh88" #: timezones.h:840 msgid "Mideast/Riyadh89" msgstr "Mideast/Riyadh89" #: timezones.h:841 msgid "MST" msgstr "MST" #: timezones.h:842 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:843 msgid "Navajo" msgstr "Navajo" #: timezones.h:844 msgid "NZ" msgstr "NZ" #: timezones.h:845 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:846 msgid "Pacific/Apia" msgstr "Тихий океан/Apia" #: timezones.h:847 msgid "Pacific/Auckland" msgstr "Тихий океан/Auckland" #: timezones.h:850 msgid "Pacific/Chatham" msgstr "Тихий океан/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:852 msgid "Chatham Islands" msgstr "Чатем, острови" #: timezones.h:853 msgid "Pacific/Easter" msgstr "Тихий океан/ŠžŃŃ‚Ń€Ń–Š² ŠŸŠ°ŃŃ…Šø" #. comment for time zone Pacific/Easter #: timezones.h:855 msgid "Easter Island & Sala y Gomez" msgstr "ŠžŃŃ‚Ń€Ń–Š² ŠŸŠ°ŃŃ…Šø та Дала-і-Гомес" #: timezones.h:856 msgid "Pacific/Efate" msgstr "Тихий океан/Efate" #: timezones.h:857 msgid "Pacific/Enderbury" msgstr "Тихий океан/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:859 msgid "Phoenix Islands" msgstr "Фенікс, острови" #: timezones.h:860 msgid "Pacific/Fakaofo" msgstr "Тихий океан/Fakaofo" #: timezones.h:861 msgid "Pacific/Fiji" msgstr "Тихий океан/Fiji" #: timezones.h:862 msgid "Pacific/Funafuti" msgstr "Тихий океан/Funafuti" #: timezones.h:863 msgid "Pacific/Galapagos" msgstr "Тихий океан/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:865 msgid "Galapagos Islands" msgstr "Š“Š°Š»Š°ŠæŠ°Š³Š¾ŃŃŒŠŗŃ– острови" #: timezones.h:866 msgid "Pacific/Gambier" msgstr "Тихий океан/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:868 msgid "Gambier Islands" msgstr "ŠžŃŃ‚Ń€Š¾Š²Šø Гамб'є" #: timezones.h:869 msgid "Pacific/Guadalcanal" msgstr "Тихий океан/Guadalcanal" #: timezones.h:870 msgid "Pacific/Guam" msgstr "Тихий океан/Guam" #: timezones.h:871 msgid "Pacific/Honolulu" msgstr "Тихий океан/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:873 msgid "Hawaii" msgstr "Гаваї" #: timezones.h:874 msgid "Pacific/Johnston" msgstr "Тихий океан/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:876 msgid "Johnston Atoll" msgstr "Атол Джонстон" #: timezones.h:877 msgid "Pacific/Kiritimati" msgstr "Тихий океан/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:879 msgid "Line Islands" msgstr "Лайн, острови" #: timezones.h:880 msgid "Pacific/Kosrae" msgstr "Тихий океан/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:882 msgid "Kosrae" msgstr "ŠšŠ¾ŃŃ€Š°Šµ" #: timezones.h:883 msgid "Pacific/Kwajalein" msgstr "Тихий океан/Kwajalein" #: timezones.h:886 msgid "Pacific/Majuro" msgstr "Тихий океан/Majuro" #: timezones.h:889 msgid "Pacific/Marquesas" msgstr "Тихий океан/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:891 msgid "Marquesas Islands" msgstr "ŠœŠ°Ń€ŠŗŃ–Š·ŃŃŒŠŗŃ– острови" #: timezones.h:892 msgid "Pacific/Midway" msgstr "Тихий океан/Midway" #. comment for time zone Pacific/Midway #: timezones.h:894 msgid "Midway Islands" msgstr "ŠœŃ–Š“ŃƒŠµŠ¹, острови" #: timezones.h:895 msgid "Pacific/Nauru" msgstr "Тихий океан/Nauru" #: timezones.h:896 msgid "Pacific/Niue" msgstr "Тихий океан/Niue" #: timezones.h:897 msgid "Pacific/Norfolk" msgstr "Тихий океан/Norfolk" #: timezones.h:898 msgid "Pacific/Noumea" msgstr "Тихий океан/Noumea" #: timezones.h:899 msgid "Pacific/Pago_Pago" msgstr "Тихий океан/Pago_Pago" #: timezones.h:900 msgid "Pacific/Palau" msgstr "Тихий океан/Palau" #: timezones.h:901 msgid "Pacific/Pitcairn" msgstr "Тихий океан/Pitcairn" #: timezones.h:902 msgid "Pacific/Ponape" msgstr "Тихий океан/Ponape" #. comment for time zone Pacific/Ponape #: timezones.h:904 msgid "Ponape (Pohnpei)" msgstr "Понапе (ŠŸŠ¾Š½ŠæŠµŃ—)" #: timezones.h:905 msgid "Pacific/Port_Moresby" msgstr "Тихий океан/Port_Moresby" #: timezones.h:906 msgid "Pacific/Rarotonga" msgstr "Тихий океан/Rarotonga" #: timezones.h:907 msgid "Pacific/Saipan" msgstr "Тихий океан/Saipan" #: timezones.h:908 msgid "Pacific/Samoa" msgstr "Тихий океан/Samoa" #: timezones.h:909 msgid "Pacific/Tahiti" msgstr "Тихий океан/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:911 msgid "Society Islands" msgstr "ŠžŃŃ‚Ń€Š¾Š²Šø Š”ŠæŃ–Š»ŃŒŠ½Š¾Ń‚Šø" #: timezones.h:912 msgid "Pacific/Tarawa" msgstr "Тихий океан/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:914 msgid "Gilbert Islands" msgstr "Š“Ń–Š»ŃŒŠ±ŠµŃ€Ń‚Š°, острови" #: timezones.h:915 msgid "Pacific/Tongatapu" msgstr "Тихий океан/Tongatapu" #: timezones.h:916 msgid "Pacific/Truk" msgstr "Тихий океан/Truk" #. comment for time zone Pacific/Truk #: timezones.h:918 msgid "Truk (Chuuk) and Yap" msgstr "Š¢Ń€ŃƒŠŗ та ŠÆŠæ" #: timezones.h:919 msgid "Pacific/Wake" msgstr "Тихий океан/Wake" #. comment for time zone Pacific/Wake #: timezones.h:921 msgid "Wake Island" msgstr "Уейк, острів" #: timezones.h:922 msgid "Pacific/Wallis" msgstr "Тихий океан/Wallis" #: timezones.h:923 msgid "Pacific/Yap" msgstr "Тихий океан/Yap" #: timezones.h:924 msgid "Poland" msgstr "ŠŸŠ¾Š»ŃŒŃ‰Š°" #: timezones.h:925 msgid "Portugal" msgstr "ŠŸŠ¾Ń€Ń‚ŃƒŠ³Š°Š»Ń–Ń" #: timezones.h:926 msgid "posixrules" msgstr "posixrules" #: timezones.h:927 msgid "PRC" msgstr "PRC" #: timezones.h:928 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:929 msgid "ROC" msgstr "ROC" #: timezones.h:930 msgid "ROK" msgstr "ROK" #: timezones.h:931 msgid "Singapore" msgstr "Š”Ń–Š½Š³Š°ŠæŃƒŃ€" #: timezones.h:932 msgid "Turkey" msgstr "Š¢ŃƒŃ€ŠµŃ‡Ń‡ŠøŠ½Š°" #: timezones.h:933 msgid "UCT" msgstr "UCT" #: timezones.h:934 msgid "Universal" msgstr "Universal" #: timezones.h:935 msgid "US/Alaska" msgstr "ДША/ŠŠ»ŃŃŠŗŠ°" #: timezones.h:936 msgid "US/Aleutian" msgstr "ДША/Aleutian" #: timezones.h:937 msgid "US/Arizona" msgstr "ДША/Арізона" #: timezones.h:938 msgid "US/Central" msgstr "ДША/Š¦ŠµŠ½Ń‚Ń€Š°Š»ŃŒŠ½Š° частина" #: timezones.h:939 msgid "US/Eastern" msgstr "ДША/ДхіГна частина" #: timezones.h:940 msgid "US/East-Indiana" msgstr "ДША/ДхіГна-ІнГіана" #: timezones.h:941 msgid "US/Hawaii" msgstr "ДША/Гаваї" #: timezones.h:942 msgid "US/Indiana-Starke" msgstr "ДША/ІнГіана-Дтаркі" #: timezones.h:943 msgid "US/Michigan" msgstr "ДША/ŠœŃ–Ń‡Ń–Š³Š°Š½" #: timezones.h:944 msgid "US/Mountain" msgstr "ДША/Mountain" #: timezones.h:945 msgid "US/Pacific" msgstr "ДША/Тихий_океан" #: timezones.h:946 msgid "US/Samoa" msgstr "ДША/Дамоа" #: timezones.h:947 msgid "UTC" msgstr "UTC" #: timezones.h:948 msgid "WET" msgstr "WET" #: timezones.h:949 msgid "W-SU" msgstr "W-SU" #: timezones.h:950 msgid "Zulu" msgstr "Š—ŃƒŠ»Ńƒ" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/ar.po0000664000175000017500000022167414632072346023675 0ustar fabiofabio# translation of timezones.po to Arabic # This file is distributed under the same license as the PACKAGE package. # Copyright (C) 2009 THE PACKAGE'S COPYRIGHT HOLDER. # ahmad khalifa , 2004. # Ahmad Khalifa , 2004. # Tareq Al Jurf , 2009. # Muhammed Al-Fakhori , 2009. # Abdalrahim Fakhouri , 2010. # Khaled Hosny , 2011. msgid "" msgstr "" "Project-Id-Version: timezones\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2011-01-08 15:09+0300\n" "Last-Translator: Khaled Hosny \n" "Language-Team: Arabic \n" "Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/Ų£ŲØŁŠŲÆŲ¬Ų§Ł†" #: timezones.h:2 msgid "Africa/Accra" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/أكرا" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/أديس_Ų£ŲØŲ§ŲØŲ§" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/الجزائر" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/أسمرة" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/أسمرة" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/ŲØŲ§Ł…Ų§ŁƒŁˆ" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/ŲØŲ§Ł†ŲŗŁŠ" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/ŲØŲ§Ł†Ų¬ŁˆŁ„" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/بيساو" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Ų„ŁŲ±ŁŠŁ‚ŁŠŲ§/ŲØŁ„Ų§Ł†ŲŖŁŠŲ±ŁŠ" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/ŲØŲ±Ų§Ų²Ų§ŁŁŠŁ„" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/ŲØŁˆŲ¬Ł…ŲØŁˆŲ±Ų§" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/القاهرة" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/الدار Ų§Ł„ŲØŁŠŲ¶Ų§Ų”" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/Ų³ŲØŲŖŲ©" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Ų³ŲØŲŖŲ© ŁˆŁ…Ł„ŁŠŁ„ŁŠŲ©" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/ŁƒŁˆŁ†Ų§ŁƒŲ±ŁŠ" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/داكار" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/ŲÆŲ§Ų±_السلام" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/جيبوتي" #: timezones.h:23 msgid "Africa/Douala" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/ŲÆŁˆŲ§Ł„Ų§" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/Ų§Ł„Ų¹ŁŠŁˆŁ†" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/ŁŲ±ŁŠŲŖŲ§ŁˆŁ†" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/Ų¬Ų§ŲØŁˆŲ±ŁˆŁ†" #: timezones.h:27 msgid "Africa/Harare" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/Ł‡Ų±Ų§Ų±ŁŠ" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/Ų¬ŁˆŁ‡Ų§Ł†Ų³ŲØŲ±Ų¬" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/ŁƒŁ…ŲØŲ§Ł„Ų§" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/Ų§Ł„Ų®Ų±Ų·ŁˆŁ…" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/ŁƒŁŠŲ¬Ų§Ł„ŁŠ" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/ŁƒŁ†Ų“Ų§Ų³Ų§" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "ŲŗŲ±ŲØ Ų¬Ł…Ł‡ŁˆŲ±ŁŠŲ© Ų§Ł„ŁƒŁˆŁ†ŲŗŁˆ Ų§Ł„ŲÆŁŠŁ…Ł‚Ų±Ų§Ų·ŁŠŲ©" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/Ł„Ų§ŲŗŁˆŲ³" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/Ł„ŁŠŲØŲ±ŁŁŠŁ„" #: timezones.h:37 msgid "Africa/Lome" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/Ł„ŁˆŁ…ŁŠ" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/Ł„ŁˆŲ§Ł†ŲÆŲ§" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/Ł„ŁˆŲØŁˆŁ…ŲØŲ§Ų“ŁŠ" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "ؓرق Ų¬Ł…Ł‡ŁˆŲ±ŁŠŲ© Ų§Ł„ŁƒŁˆŁ†ŲŗŁˆ Ų§Ł„ŲÆŁŠŁ…Ł‚Ų±Ų§Ų·ŁŠŲ©" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/Ł„ŁˆŲ³Ų§ŁƒŲ§" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/Ł…Ų§Ł„Ų§ŲØŁˆ" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/Ł…Ų§ŲØŁˆŲŖŁˆ" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/Ł…Ų§Ų³ŁŠŲ±Łˆ" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/مبابان" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/Ł…Ł‚ŲÆŁŠŲ“Łˆ" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/Ł…ŁˆŁ†Ų±ŁˆŁŁŠŲ§" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/Ł†ŁŠŲ±ŁˆŲØŁŠ" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/Ł†Ų¬Ų§Ł…ŁŠŁ†Ų§" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/Ł†ŁŠŲ§Ł…ŁŠ" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/Ł†ŁˆŲ§ŁƒŲ“ŁˆŲ·" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/واجادوجو" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/بورتو_Ł†ŁˆŁŁˆ" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/ساو_ŲŖŁˆŁ…ŁŠ" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/ŲŖŁŁ…ŲØŁŽŁƒŲŖŁˆ" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/طرابلس" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/ŲŖŁˆŁ†Ų³" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Ų£ŁŲ±ŁŠŁ‚ŁŠŲ§/ŁˆŁŠŁ†ŲÆŁ‡ŁˆŁƒ" #: timezones.h:60 msgid "America/Adak" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/أداك" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "Ų¬Ų²Ų± Ų£Ł„ŁˆŲ“ŁŠŲ§Ł†" #: timezones.h:63 msgid "America/Anchorage" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų£Ł†ŁƒŁˆŲ±Ų§Ų¬" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "US/Ų£Ł„Ų§Ų³ŁƒŲ§" #: timezones.h:66 msgid "America/Anguilla" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų£Ł†Ų¬ŁˆŁŠŁ„Ų§" #: timezones.h:67 msgid "America/Antigua" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų£Ł†ŲŖŁŠŲ¬ŁˆŲ§" #: timezones.h:68 msgid "America/Araguaina" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų£Ų±Ų§Ų¬ŁˆŲ§ŁŠŁ†Ų§" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "ŲŖŁˆŁƒŲ§Ł†ŲŖŁŠŁ†Ų²" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų§Ł„Ų£Ų±Ų¬Ł†ŲŖŁŠŁ†/ŲØŁˆŁŠŁ†ŁˆŲ³_آيريس" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "ŲØŁˆŁŠŁ†Ų³ ايرس (ŲØŁƒŲ§Ł„ŁˆŲ±ŁŠŁˆŲ³ŲŒ Ł‚ŁˆŲ§ŲŖ التحالف)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų§Ł„Ų£Ų±Ų¬Ł†ŲŖŁŠŁ†/ŁƒŲ§ŲŖŲ§Ł…Ų§Ų±ŁƒŲ§" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "ŁƒŲ§ŲŖŲ§Ł…Ų§Ų±ŁƒŲ§ (CT)، وؓوبوت (CT)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų§Ł„Ų£Ų±Ų¬Ł†ŲŖŁŠŁ†/ŁƒŁˆŁ…ŁˆŲÆŲ±ŁŠŁŲ§ŲÆŲ§ŁŁŠŲ§" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų§Ł„Ų£Ų±Ų¬Ł†ŲŖŁŠŁ†/كوردوبا" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "Ł…Ų¹ŲøŁ… Ų§Ł„Ł…ŁˆŲ§Ł‚Ų¹ (CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų§Ł„Ų£Ų±Ų¬Ł†ŲŖŁŠŁ†/جوجوي" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "خوخي (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų§Ł„Ų£Ų±Ų¬Ł†ŲŖŁŠŁ†/ﻻريوجا" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "اريوخا (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų§Ł„Ų£Ų±Ų¬Ł†ŲŖŁŠŁ†/Ł…Ł†ŲÆŁˆŲ²Ų§" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "Ł…Ł†ŲÆŁˆŲ²Ų§ (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų§Ł„Ų£Ų±Ų¬Ł†ŲŖŁŠŁ†/ريو_Ų¬Ų§Ł„ŁŠŲ¬ŁˆŲ³" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "سانتا كروز (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų§Ł„Ų£Ų±Ų¬Ł†ŲŖŁŠŁ†/سالتا" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų§Ł„Ų£Ų±Ų¬Ł†ŲŖŁŠŁ†/Ų³Ų§_Ų®ŁˆŲ§Ł†" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "سان Ų®ŁˆŲ§Ł† (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų§Ł„Ų£Ų±Ų¬Ł†ŲŖŁŠŁ†/سان_Ł„ŁˆŁŠŲ³" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "سان Ł„ŁˆŁŠŲ³ (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų§Ł„Ų£Ų±Ų¬Ł†ŲŖŁŠŁ†/ŲŖŁˆŁƒŁˆŁ…Ų§Ł†" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "ŲŖŁˆŁƒŁˆŁ…Ų§Ł†" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų§Ł„Ų£Ų±Ų¬Ł†ŲŖŁŠŁ†/أوؓوايا" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "تييرا ŲÆŁŠŁ„ فويغو (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/أروبا" #: timezones.h:109 msgid "America/Asuncion" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų£Ų³ŁˆŁ†Ų³ŁŠŁˆŁ†" #: timezones.h:110 msgid "America/Atikokan" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų£ŲŖŁŠŁƒŁˆŁƒŲ§Ł†" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų“Ų±Ł‚ŁŠ - Atikokan، ŁˆŲ£ŁˆŁ†ŲŖŲ§Ų±ŁŠŁˆŲŒ ŁˆŲ³Ų§ŁˆŲ«Ł…ŲØŲŖŁˆŁ† Ų§Ł„Ų£ŁˆŁ„ŲŒ Ł†ŁˆŁ†Ų§ŁŁˆŲŖ" #: timezones.h:113 msgid "America/Atka" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/أتكا" #: timezones.h:114 msgid "America/Bahia" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŲØŲ§Ł‡ŁŠŲ§" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "ŲØŲ§Ł‡ŁŠŲ§" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŲØŲ§Ł‡ŁŠŲ§" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/باربادوس" #: timezones.h:121 msgid "America/Belem" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŲØŁŠŁ„ŁŠŁ…" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "أمابا ŁˆŲ§Ł„ŲØŲ±ŁŠŲÆ ŲØŲ§Ų±Ų§" #: timezones.h:124 msgid "America/Belize" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŲØŁŠŁ„ŁŠŲ²" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŲØŁ„Ų§Ł†Łƒ-Ų³Ų§ŲØŁ„ŁˆŁ†" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų£Ų·Ł„Ų³ŁŠ - كيبيك - انخفاض Ł†ŁˆŲ±Ų« ؓور" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/بوا_فيزتا" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "Ų±ŁˆŁ…Ų§Ł†ŁŠŲ§" #: timezones.h:131 msgid "America/Bogota" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/بوغوتا" #: timezones.h:132 msgid "America/Boise" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/بويز" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų¬ŲØŁ„ŁŠ - Ų¬Ł†ŁˆŲØ ؓرق ŁˆŁ„Ų§ŁŠŲ© Ų§ŁŠŲÆŲ§Ł‡Łˆ ŁˆŲ£ŁˆŲ±ŁŠŲŗŁˆŁ†" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŲØŁˆŁŠŁ†ŁˆŲ³_آيريس" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŁƒŲ§Ł…ŲØŲ±ŁŠŲÆŲ¬_باي" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų¬ŲØŁ„ŁŠ - ŲŗŲ±ŲØ Ł†ŁˆŁ†Ų§ŁŁˆŲŖ" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŁƒŲ§Ł…ŲØŁˆ_Ų¬Ų±Ų§Ł†ŲÆŁŠ" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "Ł…Ų§ŲŖŁˆ غروسو دو Ų³ŁˆŁ„" #: timezones.h:142 msgid "America/Cancun" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŁƒŲ§Ł†ŁƒŁˆŁ†" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ - ŁƒŁˆŁŠŁ†ŲŖŲ§Ł†Ų§ رو" #: timezones.h:145 msgid "America/Caracas" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/كاراكاس" #: timezones.h:146 msgid "America/Catamarca" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŁƒŲ§ŲŖŲ§Ł…Ų§Ų±ŁƒŲ§" #: timezones.h:147 msgid "America/Cayenne" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŁƒŲ§ŁŠŁ‘Ł†" #: timezones.h:148 msgid "America/Cayman" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŁƒŲ§ŁŠŁ…Ł†" #: timezones.h:149 msgid "America/Chicago" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ؓيكاغو" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ؓيواوا" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų¬ŲØŁ„ŁŠ Ų§Ł„Ł…ŁƒŲ³ŁŠŁƒŁŠŁ‘ - ŲŖŲ“ŁŠŁ‡ŁˆŲ§Ł‡ŁˆŲ§" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŁƒŁˆŲ±Ų§Ł„_Ł‡Ų§Ų±ŲØŁˆŲ±" #: timezones.h:156 msgid "America/Cordoba" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/كوردوبا" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/كوستا_ريكا" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/كويابا" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "Ł…Ų§ŲŖŁˆ غروسو" #: timezones.h:161 msgid "America/Curacao" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/كوراكاو" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŲÆŲ§Ł†Ł…Ų§Ų±ŁƒŲ“Ų§ŁŁ†" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "الساحل Ų§Ł„Ų“Ų±Ł‚ŁŠ الى الؓمال من Scoresbysund" #: timezones.h:165 msgid "America/Dawson" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŲÆŁˆŲ³ŁŁ†" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "ŲØŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ł…Ų­ŁŠŲ· الهادئ - الؓمال ŁŠŁˆŁƒŁˆŁ†" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŲÆŁˆŲ³ŁŁ†_كرييك" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų¬ŲØŁ„ŁŠ - ŲÆŲ§ŁˆŲ³ŁˆŁ† كريك & فورت سانت Ų¬ŁˆŁ†ŲŒ ŁƒŁˆŁ„ŁˆŁ…ŲØŁŠŲ§ Ų§Ł„ŲØŲ±ŁŠŲ·Ų§Ł†ŁŠŲ©" #: timezones.h:171 msgid "America/Denver" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/دنفر" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų¬ŲØŁ„ŁŠ" #: timezones.h:174 msgid "America/Detroit" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ديترويت" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų“Ų±Ł‚ŁŠ - Ł…ŁŠŲŖŲ“ŁŠŲŗŲ§Ł† - Ł…Ų¹ŲøŁ… Ų§Ł„Ł…ŁˆŲ§Ł‚Ų¹" #: timezones.h:177 msgid "America/Dominica" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŲÆŁˆŁ…ŁŠŁ†ŁŠŁƒŲ§" #: timezones.h:178 msgid "America/Edmonton" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų„ŲÆŁ…Ł†ŲŖŁˆŁ†" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų¬ŲØŁ„ŁŠ - Ų£Ł„ŲØŲ±ŲŖŲ§ŲŒ ŁˆŁƒŁˆŁ„ŁˆŁ…ŲØŁŠŲ§ Ų§Ł„ŲØŲ±ŁŠŲ·Ų§Ł†ŁŠŲ© ŁˆŲ“Ų±Ł‚ ŲŗŲ±ŲØ Ų³Ų§Ų³ŁƒŲ§ŲŖŲ“ŁˆŲ§Ł†" #: timezones.h:181 msgid "America/Eirunepe" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų„ŁŠŲ±ŁŠŁˆŁ†ŁŠŲØ" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "ŲÆŲØŁ„ŁŠŁˆ Ų£Ł…Ų§Ų²ŁˆŁ†Ų§Ų³" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų„Ł„Ų³ŁŽŁ„ŁŲ§ŲÆŁˆŲ±" #: timezones.h:185 msgid "America/Ensenada" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/؄نسنادا" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŁŁˆŲ±ŲŖŲ§Ł„ŁŠŲ²Ų§" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "Ų“Ł…Ų§Ł„ ؓرق Ų§Ł„ŲØŲ±Ų§Ų²ŁŠŁ„ (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/فورت_ŁˆŲ§ŁŠŁ†" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų¬Ł„ŁŠŲ³_باي" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų£Ų·Ł„Ų³ŁŠ - Ł†ŁˆŁŲ§ سكوؓيا - Ų§Ł„Ų£Ł…Ų§ŁƒŁ† Ų§Ł„ŲŖŁŠ لم ŲŖŲ±Ų§Ų¹ Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„ŲµŁŠŁŁŠ " "1966-1971" #: timezones.h:193 msgid "America/Godthab" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų¬ŁŽŲÆŲ«Ų§ŲØ" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "Ł…Ų¹ŲøŁ… Ų§Ł„Ł…ŁˆŲ§Ł‚Ų¹" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų¬ŁˆŁ‘Ų³_باي" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų£Ų·Ł„Ų³ŁŠ - Ł„Ų§ŲØŲ±Ų§ŲÆŁˆŲ± - Ł…Ų¹ŲøŁ… Ų§Ł„Ł…ŁˆŲ§Ł‚Ų¹" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/جراند_ŲŖŁŲ±Ł’Łƒ" #: timezones.h:200 msgid "America/Grenada" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų¬Ų±ŁŠŁ†Ų§ŲÆŲ§" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų¬ŁˆŲ§ŲÆŲ§Ł„ŁˆŲØŁŠ" #: timezones.h:202 msgid "America/Guatemala" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų¬ŁˆŲ§ŲŖŁŠŁ…Ų§Ł„Ų§" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų¬ŁˆŲ§ŁŠŲ§ŁƒŁˆŁŠŁ„" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "Ų§Ł„ŁŠŲ§ŲØŲ³Ų©" #: timezones.h:206 msgid "America/Guyana" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų¬ŁˆŁŠŲ§Ł†Ų§" #: timezones.h:207 msgid "America/Halifax" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł‡Ų§Ł„ŁŠŁŲ§ŁƒŲ³" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų£Ų·Ł„Ų³ŁŠ - Ł†ŁˆŁŲ§ سكوتيا (Ł…Ų¹ŲøŁ… Ų§Ł„Ų£Ł…Ų§ŁƒŁ†)، جزيرة Ų§Ł„Ų£Ł…ŁŠŲ± ؄دوارد" #: timezones.h:210 msgid "America/Havana" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/هافانا" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł‡ŁŠŲ±Ł…ŁˆŲ²ŁŠŁ„Łˆ" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų¬ŲØŁ„ŁŠ - Ų³ŁˆŁ†ŁˆŲ±Ų§" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų„Ł†ŲÆŁŠŲ§Ł†Ų§/Ų„Ł†ŲÆŁŠŲ§Ł†Ų§ŲØŁˆŁ„ŁŠŲ³" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų“Ų±Ł‚ŁŠ - Ų„Ł†ŲÆŁŠŲ§Ł†Ų§ - Ł…Ų¹ŲøŁ… Ų§Ł„Ł…ŁˆŲ§Ł‚Ų¹" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų„Ł†ŲÆŁŠŲ§Ł†Ų§/Ł†ŁˆŁƒŲ³" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ - Ų„Ł†ŲÆŁŠŲ§Ł†Ų§ - مقاطعة ستارك" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų„Ł†ŲÆŁŠŲ§Ł†Ų§/Ł…Ų§Ų±ŁŠŲ¬Ł†Łˆ" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų“Ų±Ł‚ŁŠ - Ų„Ł†ŲÆŁŠŲ§Ł†Ų§ - مقاطعة كراوفورد" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų„Ł†ŲÆŁŠŲ§Ł†Ų§/بيتيرسبورغ" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų“Ų±Ł‚ŁŠ - Ų„Ł†ŲÆŁŠŲ§Ł†Ų§ - مقاطعة بايك" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų„Ł†ŲÆŁŠŲ§Ł†Ų§ŲØŁˆŁ„ŁŠŲ³" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų„Ł†ŲÆŁŠŲ§Ł†Ų§/ŲŖŁŠŁ„_سيتي" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ - Ų„Ł†ŲÆŁŠŲ§Ł†Ų§ - مقاطعة بيري" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų„Ł†ŲÆŁŠŲ§Ł†Ų§/فيفاي" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų“Ų±Ł‚ŁŠ - Ų„Ł†ŲÆŁŠŲ§Ł†Ų§ - مقاطعة سويسرا " #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų„Ł†ŲÆŁŠŲ§Ł†Ų§/ŁŁŠŁ†Ų³ŁŠŁ†ŁŠŲ³" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų“Ų±Ł‚ŁŠ - Ų„Ł†ŲÆŁŠŲ§Ł†Ų§ - Daviess، دوبوا، Ł†ŁˆŁƒŲ³ & مارتن المقاطعات" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų„Ł†ŲÆŁŠŲ§Ł†Ų§/ŁˆŁŠŁ†Ų§Ł…Ų§Łƒ" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų“Ų±Ł‚ŁŠ - Ų„Ł†ŲÆŁŠŲ§Ł†Ų§ - مقاطعة ŲØŁˆŁ„Ų§Ų³ŁƒŁŠ" #: timezones.h:239 msgid "America/Inuvik" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų„Ł†ŁˆŁŁŠŁƒ" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų¬ŲØŁ„ŁŠ - ŲŗŲ±ŲØ Ų§Ł„Ų£Ł‚Ų§Ł„ŁŠŁ… Ų§Ł„Ų“Ł…Ų§Ł„ŁŠŲ© Ų§Ł„ŲŗŲ±ŲØŁŠŲ©" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų„ŁƒŲ§Ł„ŁˆŁŠŲŖ" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų“Ų±Ł‚ŁŠ - ؓرق Ł†ŁˆŁ†Ų§ŁŁˆŲŖ - Ł…Ų¹ŲøŁ… Ų§Ł„Ł…ŁˆŲ§Ł‚Ų¹" #: timezones.h:245 msgid "America/Jamaica" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų¬Ų§Ł…Ų§ŁŠŁƒŲ§" #: timezones.h:246 msgid "America/Jujuy" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/جوجوي" #: timezones.h:247 msgid "America/Juneau" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų¬ŁˆŁ†Łˆ" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "ŲŖŁˆŁ‚ŁŠŲŖ Ų£Ł„Ų§Ų³ŁƒŲ§ - Ų£Ł„Ų§Ų³ŁƒŲ§ استعطى" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŁƒŁŁ†Ł’ŲŖŲ§ŁƒŁŠ/Ł„ŁˆŁŠŲ³ŁŁŠŁ„Ł„" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų“Ų±Ł‚ŁŠ - ŁƒŁ†ŲŖŲ§ŁƒŁŠ - منطقة Ł„ŁˆŁŠŲ³ŁŁŠŁ„" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŁƒŁŁ†Ł’ŲŖŲ§ŁƒŁŠ/Ł…ŁˆŁ†ŲŖŁŠŲ³ŁŠŁ„Ł„Łˆ" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų“Ų±Ł‚ŁŠ - ŁƒŁ†ŲŖŲ§ŁƒŁŠ - ŁˆŁ…Ł‚Ų§Ų·Ų¹Ų© ŁˆŁŠŁ†" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł†ŁˆŁƒŲ³_؄ن" #: timezones.h:257 msgid "America/La_Paz" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ļ»»_ŲØŲ§Ų²" #: timezones.h:258 msgid "America/Lima" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł„ŁŠŁ…Ų§" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł„ŁˆŲ³_Ų£Ł†Ų¬Ł„ŁˆŲ³" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "ŲØŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ł…Ų­ŁŠŲ· الهادئ" #: timezones.h:262 msgid "America/Louisville" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł„ŁˆŁŠŲ³ŁŁŠŁ„Ł„" #: timezones.h:263 msgid "America/Maceio" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł…Ų§Ų³ŁŠŁˆ" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "Ų£Ł„Ų§ŲŗŁˆŲ§Ų³ŲŒ وسيرغيبي" #: timezones.h:266 msgid "America/Managua" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł…Ų§Ł†Ų§Ų¬ŁˆŲ§" #: timezones.h:267 msgid "America/Manaus" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł…Ų§Ł†Ų§ŁˆŲ³" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "ي Ų£Ł…Ų§Ų²ŁˆŁ†Ų§Ų³" #: timezones.h:270 msgid "America/Marigot" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł…Ų§Ų±ŁŠŲ¬ŁˆŲŖ" #: timezones.h:271 msgid "America/Martinique" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł…Ų§Ų±ŲŖŁŠŁ†ŁŠŁƒ" #: timezones.h:272 msgid "America/Matamoros" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł…Ų§ŲŖŲ§Ł…ŁˆŲ±ŁˆŲ³" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ Ł„Ų£Ł…Ų±ŁŠŁƒŲ§ - ŁƒŁˆŲ§Ł‡ŁˆŁŠŁ„Ų§ŲŒ ŲÆŁˆŲ±Ų§Ł†ŲŗŁˆŲŒ Ł†ŁˆŁŠŁŁˆ Ł„ŁŠŁˆŁ†ŲŒ ŲŖŲ§Ł…Ų§ŁˆŁ„ŁŠŲØŲ§Ų³ بالقرب " "من Ų§Ł„Ų­ŲÆŁˆŲÆ Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŁ‘Ų©" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/مازاتلان" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų¬ŲØŁ„ŁŠ - Ł‚ ŲØŲ§Ł‡Ų§ŲŒ Ł†Ų§ŁŠŲ§Ų±ŁŠŲŖŲŒ ŁˆŲ³ŁŠŁ†Ų§Ł„ŁˆŲ§" #: timezones.h:278 msgid "America/Mendoza" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł…Ł†ŲÆŁˆŲ²Ų§" #: timezones.h:279 msgid "America/Menominee" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł…ŁŠŁ†ŁˆŁ…ŁŠŁ†" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ - Ł…ŁŠŲŖŲ“ŁŠŲŗŲ§Ł† - ŲÆŁŠŁƒŁŠŁ†Ų³ŁˆŁ†ŲŒ Gogebic، حديد وMenominee المقاطعات" #: timezones.h:282 msgid "America/Merida" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł…ŁŠŲ±ŁŠŲÆŲ§" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ - ŁƒŲ§Ł…ŲØŁŠŲŖŲ“ŁŠŲŒ ŁŠŁˆŁƒŲ§ŲŖŲ§Ł†" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł…ŁƒŲ³ŁŠŁƒŁˆ_Ų³ŁŠŲŖŁ‰" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ - Ł…Ų¹ŲøŁ… Ų§Ł„Ł…ŁˆŲ§Ł‚Ų¹" #: timezones.h:288 msgid "America/Miquelon" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł…ŁŠŁƒŁˆŁŠŁ„ŁˆŁ†" #: timezones.h:289 msgid "America/Moncton" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł…ŁˆŁ†ŁƒŲŖŁˆŁ†" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų£Ų·Ł„Ų³ŁŠ - Ł†ŁŠŁˆ ŲØŲ±ŁˆŁ†Ų²ŁˆŁŠŁƒ" #: timezones.h:292 msgid "America/Monterrey" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł…ŁˆŁ†ŲŖŁŠŲ±Ł‰" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ Ų§Ł„Ł…ŁƒŲ³ŁŠŁƒŁŠŁ‘ - ŁƒŁˆŲ§Ł‡ŁˆŁŠŁ„Ų§ŲŒ ŲÆŁˆŲ±Ų§Ł†ŲŗŁˆŲŒ Ł†ŁˆŁŠŁŁˆ Ł„ŁŠŁˆŁ†ŲŒ ŲŖŲ§Ł…Ų§ŁˆŁ„ŁŠŲØŲ§Ų³" #: timezones.h:295 msgid "America/Montevideo" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł…ŁˆŁ†ŲŖŁŁŠŲÆŁŠŁˆ" #: timezones.h:296 msgid "America/Montreal" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł…ŁˆŁ†ŲŖŲ±ŁŠŲ§Ł„" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų“Ų±Ł‚ŁŠ - كيبيك - Ł…Ų¹ŲøŁ… Ų§Ł„Ł…ŁˆŲ§Ł‚Ų¹" #: timezones.h:299 msgid "America/Montserrat" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł…ŁˆŁ†ŲŖŲ³ŁŲ±Ų§ŲŖ" #: timezones.h:300 msgid "America/Nassau" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł†Ų§Ų³Ų§Łˆ" #: timezones.h:301 msgid "America/New_York" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł†ŁŠŁˆ_يورك" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų“Ų±Ł‚ŁŠ" #: timezones.h:304 msgid "America/Nipigon" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł†ŁŠŲØŁŠŲ¬ŁˆŁ†" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų“Ų±Ł‚ŁŠ - Ų£ŁˆŁ†ŲŖŲ§Ų±ŁŠŁˆ وكيبيك - Ų§Ł„Ų£Ł…Ų§ŁƒŁ† Ų§Ł„ŲŖŁŠ لم ŲŖŲ±Ų§Ų¹ Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„ŲµŁŠŁŁŠ " "1967-1973" #: timezones.h:307 msgid "America/Nome" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł†ŁˆŁ…" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "ŲØŲŖŁˆŁ‚ŁŠŲŖ Ų£Ł„Ų§Ų³ŁƒŲ§ - ŲŗŲ±ŲØ Ų£Ł„Ų§Ų³ŁƒŲ§" #: timezones.h:310 msgid "America/Noronha" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ł†ŁˆŲ±ŁˆŁ†Ł‡Ų§" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "Ų¬Ų²Ų± Ų§Ł„Ł…Ų­ŁŠŲ· Ų§Ł„Ų£Ų·Ł„Ų³ŁŠ" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų“Ł…Ų§Ł„_داكوتا/منتصف" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ - داكوتا Ų§Ł„Ų“Ł…Ų§Ł„ŁŠŲ© - مقاطعة Ų£ŁˆŁ„ŁŠŁŲ±" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų“Ł…Ų§Ł„_داكوتا/Ł†ŁŠŁˆ_سالم" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ - داكوتا Ų§Ł„Ų“Ł…Ų§Ł„ŁŠŲ© - مقاطعة Ł…ŁˆŲ±ŲŖŁˆŁ† (باستثناؔ منطقة ماندان)" #: timezones.h:319 msgid "America/Ojinaga" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų£ŁˆŲ¬ŁŠŁ†Ų§ŲŗŲ§" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "ŲŖŁˆŁ‚ŁŠŲŖ الجبال Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŁ‘Ų© - ŲŖŲ“ŁŠŁ‡ŁˆŲ§Ł‡ŁˆŲ§" #: timezones.h:322 msgid "America/Panama" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/باناما" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŲØŲ§Ł†Ų¬Ł†ŁŠŲ±ŲŖŁˆŁ†Ų¬" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų“Ų±Ł‚ŁŠ - Pangnirtung، Ł†ŁˆŁ†Ų§ŁŁˆŲŖ" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŲØŲ§Ų±Ų§Ł…Ų§Ų±ŁŠŲØŁˆ" #: timezones.h:327 msgid "America/Phoenix" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŁŁŠŁ†ŁŁƒŁ’Ų³" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų¬ŲØŁ„ŁŠ - Ų£Ų±ŁŠŲ²ŁˆŁ†Ų§" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/بورت_أو_ŲØŲ±ŁŠŁ†Ų³" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/بورتو_Ų¢ŁƒŲ±Ł‰" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/بورت_أوف_Ų³ŲØŲ§ŁŠŁ†" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/بورتو_ŁŁŠŁ„Ł‡Łˆ" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "Ų±ŁˆŁ†ŲÆŁˆŁ†ŁŠŲ§" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/بويرتو_ريكو" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų±Ł’Ų§ŁŠŁ†ŁŠ_ريفر" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ - Ų±ŁŠŁ†ŁŠ ريفر & فورت ŁŲ±Ų§Ł†Ų³ŁŠŲ³ŲŒ Ų£ŁˆŁ†ŲŖŲ§Ų±ŁŠŁˆ" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų±Ų§Ł†ŁƒŁŠŁ†_؄نلت" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ - وسط Ł†ŁˆŁ†Ų§ŁŁˆŲŖ" #: timezones.h:343 msgid "America/Recife" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ريسايف" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "ŲØŁŠŲ±Ł†Ų§Ł…ŲØŁˆŁƒŁˆ" #: timezones.h:346 msgid "America/Regina" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų±ŁŠŲ¬ŁŠŁ†Ų§" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ - Ų³Ų§Ų³ŁƒŲ§ŲŖŲ“ŁˆŲ§Ł† - Ł…Ų¹ŲøŁ… Ų§Ł„Ł…ŁˆŲ§Ł‚Ų¹" #: timezones.h:349 msgid "America/Resolute" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų±ŁŠŲ²ŁˆŁ„ŁŠŁˆŲŖ" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų“Ų±Ł‚ŁŠ - Ų­Ų§Ų²Ł…Ų©ŲŒ Ł†ŁˆŁ†Ų§ŁŁˆŲŖ" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ريو_ŲØŲ±Ų§Ł†ŁƒŁˆ" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "فدان" #: timezones.h:355 msgid "America/Rosario" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/روسااريو" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "Ų§Ł…Ų±ŁŠŁƒŲ§/سانتا Ų„ŁŠŲ²Ų§ŲØŁŠŁ„" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "ŲŖŁˆŁ‚ŁŠŲŖ \"Ų§Ł„Ł‡Ų§ŲÆŁŠ\" Ų§Ł„Ł…ŁƒŲ³ŁŠŁƒŁŠŁ‘ - ŲØŲ§Ų¬Ų§ ŁƒŲ§Ł„ŁŠŁŁˆŲ±Ł†ŁŠŲ§" #: timezones.h:359 msgid "America/Santarem" msgstr "Ų§Ł…Ų±ŁŠŁƒŲ§/Ų³Ų§Ł†ŲŖŲ§Ų±ŁŠŁ…" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "ŲÆŲØŁ„ŁŠŁˆ ŲØŲ§Ų±Ų§" #: timezones.h:362 msgid "America/Santiago" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų³Ų§Ł†ŲŖŁŠŲ§Ų¬Łˆ" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų³Ų§Ł†ŲŖŁˆ_ŲÆŁˆŁ…ŁŠŁ†Ų¬Łˆ" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ساو_ŲØŲ§ŁˆŁ„Łˆ" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "S & SE Ų§Ł„ŲØŲ±Ų§Ų²ŁŠŁ„ (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų³ŁƒŁˆŲ±Ų²ŲØŲ§ŁŠŲ³Ų§Ł†ŲÆ" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Ų¬Ų±ŁŠŁ† لاند/ Ų„ŲŖŁ‘ŁˆŁƒŁˆŲ±ŲŖŁˆŁƒŁŠŲŖ و Scoresbysund" #: timezones.h:372 msgid "America/Shiprock" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ؓيبروك" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų¬ŲØŁ„ŁŠ - Ł†Ų§ŁŲ§Ų¬Łˆ" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/سانت_ŲØŲ§Ų±Ų«ŁŠŁ„ŁŠŁ…ŁŠ" #: timezones.h:376 msgid "America/St_Johns" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/سانت_Ų¬ŁˆŁ†Ų²" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "ŲŖŁˆŁ‚ŁŠŲŖ Ł†ŁŠŁˆŁŲ§ŁˆŁ†ŲÆŁ„Ų§Ł†ŲÆŲŒ ŲØŁ…Ų§ في Ų°Ł„Łƒ Ų¬Ł†ŁˆŲØ ؓرق Ł„Ų§ŲØŲ±Ų§ŲÆŁˆŲ±" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/سانت_كيتس" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/سانت_Ł„ŁˆŲ³ŁŠŲ§" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/سانت_ŲŖŁˆŁ…Ų§Ų³" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/سانت_ŁŁŠŁ†Ų³Ł†ŲŖ" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/سويفت_ŁƒŲ§Ų±Ų§Ł†ŲŖ" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ - Ų³Ų§Ų³ŁƒŲ§ŲŖŲ“ŁˆŲ§Ł† - الغرب Ų§Ł„Ų§ŁˆŲ³Ų·" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŲŖŁŠŲ¬ŁˆŲ³ŁŠŲ¬Ų§Ł„ŲØŲ§" #: timezones.h:387 msgid "America/Thule" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/Ų«ŁˆŁ„" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "Ų«ŁˆŁ„ / ŲØŁŁŁ‘ŲŖŁƒ" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ثاندر_باي" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų“Ų±Ł‚ŁŠ - ثندر باي، Ų£ŁˆŁ†ŲŖŲ§Ų±ŁŠŁˆ" #: timezones.h:393 msgid "America/Tijuana" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŲŖŁŠŁˆŲ§Ł†Ų§" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "ŲŖŁˆŁ‚ŁŠŲŖ \"Ų§Ł„Ł‡Ų§ŲÆŁŠ\" Ų§Ł„Ų£Ł…Ų±ŁŠŁƒŁŠŁ‘ - ŲØŲ§Ų¬Ų§ ŁƒŲ§Ł„ŁŠŁŁˆŲ±Ł†ŁŠŲ§" #: timezones.h:396 msgid "America/Toronto" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŲŖŁˆŲ±ŁˆŁ†ŲŖŁˆ" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų“Ų±Ł‚ŁŠ - Ų£ŁˆŁ†ŲŖŲ§Ų±ŁŠŁˆ - أهم Ų§Ł„Ł…ŁˆŲ§Ł‚Ų¹" #: timezones.h:399 msgid "America/Tortola" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŲŖŁˆŲ±ŲŖŁˆŁ„Ų§" #: timezones.h:400 msgid "America/Vancouver" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŁŲ§Ł†ŁƒŁˆŁŲ±" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "ŲØŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ł…Ų­ŁŠŲ· Ų§Ł„Ł‡Ų§ŲÆŁŠ - ŲŗŲ±ŲØ ŁƒŁˆŁ„ŁˆŁ…ŲØŁŠŲ§ Ų§Ł„ŲØŲ±ŁŠŲ·Ų§Ł†ŁŠŲ©" #: timezones.h:403 msgid "America/Virgin" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŁŁŠŲ±Ų¬ŁŠŁ†" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŁˆŲ§ŁŠŲŖŁ‡ŁˆŲ±Ų³" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "ŲØŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ł…Ų­ŁŠŲ· الهادئ - Ų¬Ł†ŁˆŲØ ŁŠŁˆŁƒŁˆŁ†" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŁˆŁŠŁ†ŁŠŲØŁŠŲ¬" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ł…Ų±ŁƒŲ²ŁŠ - Ł…Ų§Ł†ŁŠŲŖŁˆŲØŲ§ ŁˆŲ£ŁˆŁ†ŲŖŲ§Ų±ŁŠŁˆ Ų§Ł„ŲŗŲ±ŲØŁŠŲ©" #: timezones.h:410 msgid "America/Yakutat" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ياكوتات" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "ŲØŲŖŁˆŁ‚ŁŠŲŖ Ų£Ł„Ų§Ų³ŁƒŲ§ - Ų£Ł„Ų§Ų³ŁƒŲ§ رقبة ŲØŲ§Ł†Ł‡Ų§ŲÆŁŠŁ„" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Ų£Ł…Ų±ŁŠŁƒŲ§/ŁŠŁŁ„ŁˆŁ†Ų§ŁŠŁ" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "Ų§Ł„ŲŖŁˆŁ‚ŁŠŲŖ Ų§Ł„Ų¬ŲØŁ„ŁŠ - وسط Ų§Ł„Ų£Ł‚Ų§Ł„ŁŠŁ… Ų§Ł„Ų“Ł…Ų§Ł„ŁŠŲ© Ų§Ł„ŲŗŲ±ŲØŁŠŲ©" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Ų£Ł†ŲŖŲ§Ų±ŲŖŁŠŁƒŲ§/ŁƒŲ§Ų³Ł‰" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "Ł…Ų­Ų·Ų© كيسي، ؓبه جزيرة ŲØŁŠŁ„ŁŠ " #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Ų£Ł†ŲŖŲ§Ų±ŲŖŁŠŁƒŲ§/دافيس" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "Ł…Ų­Ų·Ų© ديفيس، ŁŁŠŲ³ŲŖŁŁˆŁ„ŲÆ Ł‡ŁŠŁ„Ų²" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Ų£Ł†ŲŖŲ§Ų±ŲŖŁŠŁƒŲ§/ŲÆŁˆŁ…Ł†ŲŖŲÆŁ‰Ų£ŁˆŲ±ŁŁŠŁ„" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "ŲÆŁˆŁ…ŁˆŁ† - Ł…Ų­Ų·Ų© d'Urville، تير Ų¢ŲÆŁŠŁ„ŁŠ" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "Ų£Ł†ŲŖŲ§Ų±ŲŖŁŠŁƒŲ§ (القارة المتجمدة)/Ł…Ų§ŁƒŁˆŲ§Ų±ŁŠ" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "Ł…Ų­Ų·Ų© جزيرة Ł…Ų§ŁƒŁˆŲ§Ų±ŁŠŲŒ جزيرة Ł…Ų§ŁƒŁˆŲ§Ų±ŁŠ" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "القطب Ų§Ł„Ų¬Ł†ŁˆŲØŁŠ / Ł…Ų§ŁˆŲ³Ł†" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "Ł…Ų§ŁˆŲ³Ł† Ł…Ų­Ų·Ų© Ų®Ł„ŁŠŲ¬ Ł‡ŁˆŁ„Ł…" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Ų£Ł†ŲŖŲ§Ų±ŲŖŁŠŁƒŲ§/Ł…ŁƒŁ…ŁˆŲ±ŲÆŁˆ" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "Ł…Ų­Ų·Ų© Ł…Ų§ŁƒŁ…ŁˆŲ±ŲÆŁˆŲŒ جزيرة روس" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Ų£Ł†ŲŖŲ§Ų±ŲŖŁŠŁƒŲ§/بالمر" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "Ł…Ų­Ų·Ų© ŲØŲ§Ł„Ł…Ų±ŲŒŲ¬Ų²ŁŠŲ±Ų© Ų§Ł†ŁŁŠŲ±Ų³ " #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Ų£Ł†ŲŖŲ§Ų±ŲŖŁŠŁƒŲ§/روثيرا" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "روثيرا Ł…Ų­Ų·Ų© Ų§Ł„Ų¬Ų²ŁŠŲ±Ų© Ų§ŲÆŁŠŁ„Ų§ŁŠŲÆ" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Ų£Ł†ŲŖŲ§Ų±ŲŖŁŠŁƒŲ§/القطب_Ų§Ł„Ų¬Ł†ŁˆŲØŁŠ" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "روثيرا Ł…Ų­Ų·Ų© Ų§Ł„Ų¬Ų²ŁŠŲ±Ų© Ų§ŲÆŁŠŁ„Ų§ŁŠŲÆ" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Ų£Ł†ŲŖŲ§Ų±ŲŖŁŠŁƒŲ§/Ų³ŁŠŲ£ŁŁˆŲ§" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "Ł…Ų­Ų·Ų© سيووا، E Ongul I" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Ų£Ł†ŲŖŲ§Ų±ŲŖŁŠŁƒŲ§/فوستوك" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "Ł…Ų­Ų·Ų© فوستوك، ŲÆŲ„ القطب Ų§Ł„Ł…ŲŗŁ†Ų§Ų·ŁŠŲ³ŁŠ" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Ų£Ł†ŲŖŲ§Ų±ŲŖŁŠŁƒŲ§/Ł„ŁˆŁ†Ų¬ŁŠŲ„Ų±ŲØŁŠŁŠŁ†" #: timezones.h:450 msgid "Asia/Aden" msgstr "آسيا/عدن" #: timezones.h:451 msgid "Asia/Almaty" msgstr "آسيا/Ų£Ł„Ł…Ų§ŲŖŁŠ" #: timezones.h:454 msgid "Asia/Amman" msgstr "آسيا/عمّان" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "آسيا/Ų£Ł†Ų§ŲÆŁŠŲ±" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "Ł…ŁˆŲ³ŁƒŁˆ +08 - ŲØŲ­Ų± ŲØŲ±ŁŠŁ†Ųŗ" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "آسيا/أكتوا" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "أتيرو (أتيرو، غورييف)، Ł…Ų§Ł†ŁƒŁŠŲ³ŲŖŁˆ" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "آسيا/أكتوبي" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "أكتوبي" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "آسيا/Ų¹Ų“Ł‚ Ų¢ŲØŲ§ŲÆ" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "آسيا/Ų¹Ų“Ł‚ Ų¢ŲØŲ§ŲÆ" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "آسيا/ŲØŲŗŲÆŲ§ŲÆ" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "آسيا/Ų§Ł„ŲØŲ­Ų±ŁŠŁ†" #: timezones.h:468 msgid "Asia/Baku" msgstr "آسيا/باكو" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "آسيا/ŲØŲ§Ł†ŁƒŁˆŁƒ" #: timezones.h:470 msgid "Asia/Beirut" msgstr "آسيا/بيروت" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "آسيا/بؓكيك" #: timezones.h:472 msgid "Asia/Brunei" msgstr "آسيا/ŲØŲ±ŁˆŁ†Ų§Ł‰" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "آسيا/ŁƒŁ„ŁƒŲ§ŲŖŁ‘Ų§" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "آسيا/Ų“ŁˆŁŠŲØŲ§Ł„Ų³Ų§Ł†" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "ŲÆŁˆŲ±Ł†ŁˆŲÆŲŒ Ų³Ų®ŲØŲ§ŲŖŲ§Ų±" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "آسيا/ŲŖŲ“ŁˆŁ†ŲŗŲŖŲ“ŁŠŁ†Ųŗ" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "وسط Ų§Ł„ŲµŁŠŁ† - Ų³ŁŠŲŖŲ“ŁˆŲ§Ł† ŁˆŁŠŁˆŁ†Ų§Ł† ŁˆŁ‚ŁˆŲ§Ł†ŲŗŲ“Ł‰ŲŒ ŁˆŲ“Ł†Ų“Ł‰ŲŒ ŁˆŁ‚ŁˆŁŠŲŖŲ“ŁˆŲŒ الخ." #: timezones.h:480 msgid "Asia/Chungking" msgstr "آسيا/ŲŖŲ“ŁˆŁ†ŲŗŲŖŲ“ŁŠŁ†Ųŗ" #: timezones.h:481 msgid "Asia/Colombo" msgstr "آسيا/ŁƒŁˆŁ„ŁˆŁ…ŲØŁˆ" #: timezones.h:482 msgid "Asia/Dacca" msgstr "آسيا/ŲÆŁƒŁ‘Ų§" #: timezones.h:483 msgid "Asia/Damascus" msgstr "آسيا/ŲÆŁ…Ų“Ł‚" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "آسيا/ŲÆŁƒŁ‘Ų§" #: timezones.h:485 msgid "Asia/Dili" msgstr "آسيا/ŲÆŁŠŁ„Ł‰" #: timezones.h:486 msgid "Asia/Dubai" msgstr "آسيا/دبى" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "آسيا/ŲÆŁˆŲ“Ł†ŲØŁ‡" #: timezones.h:488 msgid "Asia/Gaza" msgstr "آسيا/ŲŗŲ²Ų©" #: timezones.h:489 msgid "Asia/Harbin" msgstr "آسيا/هاربِن" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Ł‡ŁŠŁ„ŁˆŁ†ŲŗŲ¬ŁŠŲ§Ł†Ųŗ (باستثناؔ Ł…ŁˆŲ®Ł‡) ŁˆŲ¬ŁŠŁ„ŁŠŁ†" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "آسيا/Ł‡Łˆ_تؓي_Ł…ŁŠŁ†" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "آسيا/Ł‡ŁˆŁ†Ų¬_ŁƒŁˆŁ†Ų¬" #: timezones.h:494 msgid "Asia/Hovd" msgstr "آسيا/Ł‡ŁˆŁŲÆ" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "ŲØŲ§ŁŠŲ§Ł† - Olgiy، Govi - Ų£Ł„ŲŖŲ§ŁŠŲŒ Ł‡ŁˆŁˆŲÆŲŒ Uvs، Zavkhan" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "آسيا/؄ركوتسك" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "Ł…ŁˆŲ³ŁƒŁˆ +05 - بحيرة ŲØŲ§ŁŠŁƒŲ§Ł„" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "آسيا/Ų„Ų³Ų·Ł†ŲØŁˆŁ„" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "آسيا/جاكارتا" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "جاوة ŁˆŲ³ŁˆŁ…Ų·Ų±Ų©" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "آسيا/جيابورا" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "Ų„ŁŠŲ±ŁŠŲ§Ł† جايا & Ł…ŁˆŁ„ŁˆŁƒŲ§Ų³" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "آسيا/القدس" #: timezones.h:508 msgid "Asia/Kabul" msgstr "آسيا/ŁƒŲ§ŲØŁŁ„" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "آسيا/ŁƒŲ§Ł…Ų“ŁŽŲ§ŲŖŁƒŲ§" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "Ł…ŁˆŲ³ŁƒŁˆ +08 - ŁƒŲ§Ł…Ų“ŲŖŁƒŲ§" #: timezones.h:512 msgid "Asia/Karachi" msgstr "آسيا/كراتؓي" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "آسيا/كاؓغر" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "ŲŗŲ±ŲØ التبت ŁˆŲŖŲ±ŁƒŲ³ŲŖŲ§Ł† Ų§Ł„Ų“Ų±Ł‚ŁŠŲ©" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "آسيا/ŁƒŲ§ŲŖŁ…Ų§Ł†ŲÆŁˆ" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "آسيا/ŁƒŲ§ŲŖŁ…Ų§Ł†ŲÆŁˆ" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "آسيا/ŁƒŁ„ŁƒŲŖŲ§" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "آسيا/ŁƒŲ±Ų§Ų³Ł†ŁˆŁŠŲ§Ų±Ų³Łƒ" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "Ł…ŁˆŲ³ŁƒŁˆ +04 - نهر ŁŠŁ†ŁŠŲ³ŁŠ" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "آسيا/ŁƒŁˆŲ§Ł„Ų§Ł„Ł…ŲØŁˆŲ±" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "ؓبه جزيرة Ł…Ų§Ł„ŁŠŲ²ŁŠŲ§" #: timezones.h:525 msgid "Asia/Kuching" msgstr "آسيا/ŁƒŁˆŲŖŲ“ŁŠŁ†Ų¬" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "الصباح ŁˆŲ³Ų±Ų§ŁˆŁ‚" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "آسيا/Ų§Ł„ŁƒŁˆŁŠŲŖ" #: timezones.h:529 msgid "Asia/Macao" msgstr "آسيا/Ł…Ų§ŁƒŲ§Łˆ" #: timezones.h:530 msgid "Asia/Macau" msgstr "آسيا/Ł…Ų§ŁƒŲ§Łˆ" #: timezones.h:531 msgid "Asia/Magadan" msgstr "آسيا/ماغادان" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "Ł…ŁˆŲ³ŁƒŁˆ +08 - ماغادان" #: timezones.h:534 msgid "Asia/Makassar" msgstr "آسيا/Ł…ŁƒŲ§Ų³Ł‘Ų§Ų±" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "ؓرق ŁˆŲ¬Ł†ŁˆŲØ جزيرة ŲØŁˆŲ±Ł†ŁŠŁˆŲŒ Ų³ŁŠŁ„ŁŠŲØŁŠŲ³ ŁˆŲØŲ§Ł„ŁŠ ŁˆŁ†ŁˆŲ³Ų§ ŲŖŁŠŁ†Ų¬Ų§Ų±Ų§ŲŒ في ŲŖŁŠŁ…ŁˆŲ± Ų§Ł„ŲŗŲ±ŲØŁŠŲ©" #: timezones.h:537 msgid "Asia/Manila" msgstr "آسيا/Ł…Ų§Ł†ŁŠŁ„Ų§" #: timezones.h:538 msgid "Asia/Muscat" msgstr "آسيا/مسقط" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "آسيا/Ł†ŁŠŁ‚ŁˆŲ³ŁŠŲ§" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "آسيا/Ł†ŁˆŁŁˆŁƒŁˆŲ²Ł†ŲŖŲ³Łƒ" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "Ł…ŁˆŲ³ŁƒŁˆ +03 - Ł†ŁˆŁŁˆŁƒŁˆŲ²Ł†ŲŖŲ³Łƒ" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "آسيا/Ł†ŁˆŁŁˆŲ³ŁŠŲØŁŠŲ±Ų³Łƒ" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "Ł…ŁˆŲ³ŁƒŁˆ +03 - Ł†ŁˆŁŁˆŲ³ŁŠŲØŁŠŲ±Ų³Łƒ" #: timezones.h:546 msgid "Asia/Omsk" msgstr "آسيا/Ų£ŁŁ…Ł’Ų³Łƒ" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "Ł…ŁˆŲ³ŁƒŁˆ +03 - ŲŗŲ±ŲØ سيبيريا" #: timezones.h:549 msgid "Asia/Oral" msgstr "آسيا/Ų£ŁˆŲ±Ų§Ł„" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "ŲŗŲ±ŲØ ŁƒŲ§Ų²Ų§Ų®Ų³ŲŖŲ§Ł†" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "آسيا/ŲØŁ†ŁˆŁ…_بنه" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "آسيا/ŲØŁˆŁ†ŲŖŁŠŲ§Ł†Ų§Łƒ" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "ŲŗŲ±ŲØ ووسط ŲØŁˆŲ±Ł†ŁŠŁˆ" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "آسيا/ŲØŁŠŁˆŁ†Ų¬ŁŠŲ§Ł†Ų¬" #: timezones.h:557 msgid "Asia/Qatar" msgstr "آسيا/قطر" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "آسيا/ŁƒŁŠŲ²ŁŠŁ„ŁˆŲ±ŲÆŲ§" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "ŁƒŁŠŲ²ŁŠŁ„ŁˆŲ±ŲÆŲ§" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "آسيا/Ų±Ų§Ł†Ų¬ŁˆŁ†" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "آسيا/Ų§Ł„Ų±ŁŠŲ§Ų¶" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "آسيا/Ų§Ł„Ų±ŁŠŲ§Ų¶87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "آسيا/Ų§Ł„Ų±ŁŠŲ§Ų¶88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "آسيا/Ų§Ł„Ų±ŁŠŲ§Ų¶89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "آسيا/Ų³Ų§ŁŠŲ¬ŁˆŁ†" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "آسيا/Ų³Ų®Ų§Ł„ŁŠŁ†" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "Ł…ŁˆŲ³ŁƒŁˆ +07 - جزيرة Ų³Ų®Ų§Ł„ŁŠŁ†" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "آسيا/سمرقند" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "ŲŗŲ±ŲØ Ų£ŁˆŲ²ŲØŁƒŲ³ŲŖŲ§Ł†" #: timezones.h:573 msgid "Asia/Seoul" msgstr "آسيا/Ų³ŁŠŁˆŁ„" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "آسيا/Ų“Ł†ŲŗŁ‡Ų§ŁŠ" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "ؓرق Ų§Ł„ŲµŁŠŁ† - ŲØŁƒŁŠŁ† ŁˆŁ‚ŁˆŲ§Ł†ŲŗŲÆŁˆŁ†Ųŗ ŁˆŲ“Ł†ŲŗŁ‡Ų§Ł‰ŲŒ الخ." #: timezones.h:577 msgid "Asia/Singapore" msgstr "آسيا/Ų³Ł†ŲŗŲ§ŁŁˆŲ±Ų©" #: timezones.h:578 msgid "Asia/Taipei" msgstr "آسيا/تايباي" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "آسيا/طؓقند" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "ؓرق Ų£ŁˆŲ²ŲØŁƒŲ³ŲŖŲ§Ł†" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "آسيا/ŲŖŲØŁ„ŁŠŲ³ŁŠ" #: timezones.h:583 msgid "Asia/Tehran" msgstr "آسيا/طهران" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "آسيا/ŲŖŁ„_أبيب" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "آسيا/ŲŖŁŠŁ…ŁŁˆ" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "آسيا/ŲŖŁŠŁ…ŁŁˆ" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "آسيا/طوكيو" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "آسيا/Ų£ŁˆŲ¬ŁˆŁ†Ų¬_باندانج" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "آسيا/Ų£ŁˆŁ„Ų§Ł†_باتور" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "آسيا/Ų£ŁˆŁ„Ų§Ł†_باتور" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "آسيا/Ų£ŁˆŲ±ŁˆŁ…ŲŖŲ“ŁŠ" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "أغلب التبت ŁˆŲŖŲ±ŁƒŲ³ŲŖŲ§Ł† Ų§Ł„Ų“Ų±Ł‚ŁŠŲ©" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "آسيا/ŁŁŠŁŠŁ†ŲŖŁŠŲ§Ł†" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "آسيا/ŁŁ„Ų§ŲÆŁŠŁŲ³ŲŖŁƒ" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "Ł…ŁˆŲ³ŁƒŁˆ +07 - نهر Ų¢Ł…ŁˆŲ±" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "آسيا/ياكوتسك" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "Ł…ŁˆŲ³ŁƒŁˆ +06 - نهر Ł„ŁŠŁ†Ų§" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "آسيا/ŁŠŁƒŲ§ŲŖŲ±ŁŠŁ†ŲØŁˆŲ±Ų¬" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "Ł…ŁˆŲ³ŁƒŁˆ +02 - Ų§Ł„Ų£ŁˆŲ±Ų§Ł„" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "آسيا/ŁŠŲ±ŁŠŁŲ§Ł†" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Ų§Ł„Ų£Ų·Ł„Ł†Ų·ŁŠ/Ų§Ł„Ų£Ų²ŁˆŲ±" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "Ų§Ł„Ų£Ų²ŁˆŲ±" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Ų§Ł„Ų£Ų·Ł„Ł†Ų·ŁŠ/ŲØŲ±Ł…ŁˆŲÆŲ§" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Ų§Ł„Ų£Ų·Ł„Ł†Ų·ŁŠ/الخالدات" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "Ų¬Ų²Ų± الخالدات" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Ų§Ł„Ų£Ų·Ł„Ł†Ų·ŁŠ/كيب_فيرد" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Ų§Ł„Ų£Ų·Ł„Ł†Ų·ŁŠ/فيرو" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "Ų§Ł„Ų£Ų·Ł„Ł†Ų·ŁŠ/فارو" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Ų§Ł„Ų£Ų·Ł„Ł†Ų·ŁŠ/جان_Ł…Ų§ŁŠŁ†" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Ų§Ł„Ų£Ų·Ł„Ł†Ų·ŁŠ/Ł…Ų§ŲÆŁŠŲ±Ų§" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "Ų¬Ų²Ų± Ł…Ų§ŲÆŁŠŲ±Ų§" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Ų§Ł„Ų£Ų·Ł„Ł†Ų·ŁŠ/ريتؓافك" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Ų§Ł„Ų£Ų·Ł„Ł†Ų·ŁŠ/Ų¬Ł†ŁˆŲØ_جورجيا" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Ų§Ł„Ų£Ų·Ł„Ł†Ų·ŁŠ/Ų³ŲŖŲ§Ł†Ł„ŁŠ" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Ų§Ł„Ų£Ų·Ł„Ł†Ų·ŁŠ/سانت_Ł‡ŁŠŁ„ŁŠŁ†Ų§" #: timezones.h:625 msgid "Australia/ACT" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/Ų£ŲÆŁŠŁ„Ų§ŁŠŲÆ" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "Ų¬Ł†ŁˆŲØ Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/ŲØŲ±ŁŠŲ³ŲØŲ§ŁŠŁ†" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "Queensland - most locations" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/ŲØŲ±ŁˆŁƒŁ†_Ł‡ŁŠŁ„" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "Ł†ŁŠŁˆ ساوث ŁˆŁŠŁ„Ų² - Yancowinna" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/ŁƒŲ§Ł†ŲØŁŲ±Ų§" #: timezones.h:636 msgid "Australia/Currie" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/كوري" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "ŲŖŲ³Ł…Ų§Ł†ŁŠŲ§ - جزيرة Ų§Ł„Ł…Ł„Łƒ" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/ŲÆŲ§Ų±ŁˆŁŠŁ†" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "Ų§Ł„Ų„Ł‚Ł„ŁŠŁ… Ų§Ł„Ų“Ł…Ų§Ł„ŁŠ" #: timezones.h:642 msgid "Australia/Eucla" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/Ų§ŁŠŁˆŁƒŁ„Ų§" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "ŲŗŲ±ŲØ Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§ - منطقة Ų§ŁŠŁƒŁˆŁ„Ų§" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/Ł‡ŁˆŲØŲ§Ų±ŲŖ" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "ŲŖŲ³Ł…Ų§Ł†ŁŠŲ§ - Ł…Ų¹ŲøŁ… Ų§Ł„Ł…ŁˆŲ§Ł‚Ų¹" #: timezones.h:648 msgid "Australia/LHI" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/Ł„ŁŠŁ†ŲÆŁ…Ų§Ł†" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "ŁƒŁˆŁŠŁ†Ų²Ł„Ų§Ł†ŲÆ - Ł‡ŁˆŁ„ŁŠŲÆŲ§ŁŠ Ų¬Ų²Ų±" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/Ł„ŁˆŲ±ŲÆ_Ł‡Ų§Łˆ" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "جزيرة Ł„ŁˆŲ±ŲÆ Ł‡Ų§Łˆ" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/Ł…Ł„ŲØŁˆŲ±Ł†" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "فيكتوريا" #: timezones.h:658 msgid "Australia/North" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/Ų“Ł…Ų§Ł„" #: timezones.h:659 msgid "Australia/NSW" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/بيرث" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "ŲŗŲ±ŲØ Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§ - Ł…Ų¹ŲøŁ… Ų§Ł„Ł…ŁˆŲ§Ł‚Ų¹" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/ŁƒŁˆŁŠŁ†Ų²Ł„Ų§Ł†ŲÆ" #: timezones.h:664 msgid "Australia/South" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/Ų¬Ł†ŁˆŲØ" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/Ų³ŁŠŲÆŁ†ŁŠ" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "Ł†ŁŠŁˆ ساوث ŁˆŁŠŁ„Ų² - Ł…Ų¹ŲøŁ… Ų§Ł„Ł…ŁˆŲ§Ł‚Ų¹" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/ŲŖŲ§Ų²Ł…Ų§Ł†ŁŠŲ§" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/فيكتوريا" #: timezones.h:670 msgid "Australia/West" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/ŲŗŲ±ŲØ" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Ų£Ų³ŲŖŲ±Ų§Ł„ŁŠŲ§/ŁŠŲ§Ł†ŁƒŁˆŁŠŁ†Ų§" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Ų§Ł„ŲØŲ±Ų§Ų²ŁŠŁ„/أكري" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Ų§Ł„ŲØŲ±Ų§Ų²ŁŠŁ„/ŲÆŁŠŁ†ŁˆŲ±ŁˆŁ†Ł‡Ų§" #: timezones.h:674 msgid "Brazil/East" msgstr "Ų§Ł„ŲØŲ±Ų§Ų²ŁŠŁ„/ؓرق" #: timezones.h:675 msgid "Brazil/West" msgstr "Ų§Ł„ŲØŲ±Ų§Ų²ŁŠŁ„/ŲŗŲ±ŲØ" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "ŁƒŁ†ŲÆŲ§/Ų§Ł„Ų£Ų·Ł„Ł†Ų·ŁŠ" #: timezones.h:677 msgid "Canada/Central" msgstr "ŁƒŁ†ŲÆŲ§/وسط" #: timezones.h:678 msgid "Canada/Eastern" msgstr "ŁƒŁ†ŲÆŲ§/Ų“Ų±Ł‚ŁŠ" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "ŁƒŁ†ŲÆŲ§/ؓرق-Ų³Ų§Ų³ŁƒŲ§ŲŖŲ“ŁˆŁ†" #: timezones.h:680 msgid "Canada/Mountain" msgstr "ŁƒŁ†ŲÆŲ§/Ų¬ŲØŁ„" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "ŁƒŁ†ŲÆŲ§/Ų£Ų±Ų¶_جديدة" #: timezones.h:682 msgid "Canada/Pacific" msgstr "ŁƒŁ†ŲÆŲ§/هادئ" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "ŁƒŁ†ŲÆŲ§/Ų³Ų§Ų³ŁƒŲ§ŲŖŲ“ŁˆŁ†" #: timezones.h:684 msgid "Canada/Yukon" msgstr "ŁƒŁ†ŲÆŲ§/ŁŠŁˆŁƒŁˆŁ†" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Ų“ŁŠŁ„ŁŠ/ŁƒŁˆŁ†ŲŖŁŠŁ†Ł†ŲŖŲ§Ł„" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Ų“ŁŠŁ„ŁŠ/Ų„ŁŠŲ³ŲŖŲ±Ų£ŁŠŁ„Ų§Ł†ŲÆ" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "كوبا" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Ł…ŲµŲ±" #: timezones.h:692 msgid "Eire" msgstr "آير" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/ŲŗŲ±ŁŠŁ†ŲŖŲ“" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "أوروبا/أمستردام" #: timezones.h:731 msgid "Europe/Andorra" msgstr "أوروبا/Ų£Ł†ŲÆŁˆŲ±Ų§" #: timezones.h:732 msgid "Europe/Athens" msgstr "أوروبا/Ų£Ų«ŁŠŁ†Ų§" #: timezones.h:733 msgid "Europe/Belfast" msgstr "أوروبا/بلفاست" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "أوروبا/بلجراد" #: timezones.h:735 msgid "Europe/Berlin" msgstr "أوروبا/ŲØŲ±Ł„ŁŠŁ†" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "أوروبا/ŲØŲ±Ų§ŲŖŁŠŲ³Ł„Ų§ŁŲ§" #: timezones.h:737 msgid "Europe/Brussels" msgstr "أوروبا/ŲØŲ±ŁˆŁƒŲ³Ł„" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "أوروبا/بوخارست" #: timezones.h:739 msgid "Europe/Budapest" msgstr "أوروبا/بودابست" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "أوروبا/Ų“ŁŠŲ²ŁŠŁ†Ų§Łˆ" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "أوروبا/ŁƒŁˆŲØŁ†Ł‡Ų§Ų¬Ł†" #: timezones.h:742 msgid "Europe/Dublin" msgstr "أوروبا/ŲÆŁˆŲØŁ„Ł†" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "أوروبا/Ų¬ŲØŁ„_طارق" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "أوروبا/Ų¬ŁˆŁŠŲ±Ł†Ų³ŁŠ" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "أوروبا/Ł‡Ł„Ų³ŁŠŁ†ŁƒŁŠ" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "أوروبا/Ų£ŁŠŲ³Ł„_أوف_مان" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "أوروبا/Ų„Ų³Ų·Ł†ŲØŁˆŁ„" #: timezones.h:748 msgid "Europe/Jersey" msgstr "أوروبا/جيرزي" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "أوروبا/ŁƒŲ§Ł„ŁŠŁ†ŁŠŁ†Ų¬Ų±Ų§ŲÆ" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "Ł…ŁˆŲ³ŁƒŁˆŲŒ 01 - ŁƒŲ§Ł„ŁŠŁ†ŁŠŁ†Ų¬Ų±Ų§ŲÆ" #: timezones.h:752 msgid "Europe/Kiev" msgstr "أوروبا/كييف" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "أوروبا/Ł„ŁŠŲ³ŲØŁˆŁ†" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "أوروبا/Ł„ŁŠŁˆŲØŁ„ŁŠŲ§Ł†Ų§" #: timezones.h:759 msgid "Europe/London" msgstr "أوروبا/لندن" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "أوروبا/Ł„ŁˆŁƒŲ³Ł…ŲØŲ±Ų¬" #: timezones.h:761 msgid "Europe/Madrid" msgstr "أوروبا/Ł…ŲÆŲ±ŁŠŲÆ" #: timezones.h:764 msgid "Europe/Malta" msgstr "أوروبا/مالطا" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "أوروبا/Ł…Ų§Ų±ŁŠŁ‡Ų§Ł…Ł†" #: timezones.h:766 msgid "Europe/Minsk" msgstr "أوروبا/Ł…ŁŠŁ†Ų³Łƒ" #: timezones.h:767 msgid "Europe/Monaco" msgstr "أوروبا/Ł…ŁˆŁ†Ų§ŁƒŁˆ" #: timezones.h:768 msgid "Europe/Moscow" msgstr "أوروبا/Ł…ŁˆŲ³ŁƒŁˆ" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "Ł…ŁˆŲ³ŁƒŁˆ +00 - ŲŗŲ±ŲØ روسيا" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "أوروبا/Ł†ŁŠŁ‚ŁˆŲ³ŁŠŲ§" #: timezones.h:772 msgid "Europe/Oslo" msgstr "أوروبا/Ų£ŁˆŲ³Ł„Łˆ" #: timezones.h:773 msgid "Europe/Paris" msgstr "أوروبا/باريس" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "أوروبا/بودجوريكا" #: timezones.h:775 msgid "Europe/Prague" msgstr "أوروبا/ŲØŲ±Ų§Ų¬" #: timezones.h:776 msgid "Europe/Riga" msgstr "أوروبا/ريجا" #: timezones.h:777 msgid "Europe/Rome" msgstr "أوروبا/Ų±ŁˆŁ…Ų§" #: timezones.h:778 msgid "Europe/Samara" msgstr "أوروبا/سمارا" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "Ł…ŁˆŲ³ŁƒŁˆ - Ų³Ł…Ų§Ų±Ų§ŲŒ Ų£ŁˆŲÆŁ…ŁˆŲ±ŲŖŁŠŲ§" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "أوروبا/سان_Ł…Ų§Ų±ŁŠŁ†Łˆ" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "أوروبا/سراييفو" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "أوروبا/Ų³Ł…ŁŲ±ŁˆŲØŁˆŁ„" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "وسط القرم" #: timezones.h:786 msgid "Europe/Skopje" msgstr "أوروبا/Ų³ŁƒŁˆŲØŁŠŁ‡" #: timezones.h:787 msgid "Europe/Sofia" msgstr "أوروبا/صوفيا" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "أوروبا/Ų³ŲŖŁˆŁƒŁ‡ŁˆŁ„Ł…" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "أوروبا/ŲŖŲ§Ł„ŁŠŁ†" #: timezones.h:790 msgid "Europe/Tirane" msgstr "أوروبا/ŲŖŁŠŲ±Ų§Ł†Ų§" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "أوروبا/ŲŖŁŠŲ±Ų§Ų³ŲØŁˆŁ„" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "أوروبا/أوزجورود" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "Ų±ŲŖŁ‡ŁŠŁ†ŁŲ§" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "أوروبا/فادوز" #: timezones.h:796 msgid "Europe/Vatican" msgstr "أوروبا/Ų§Ł„ŁŲ§ŲŖŁŠŁƒŲ§Ł†" #: timezones.h:797 msgid "Europe/Vienna" msgstr "أوروبا/ŁŁŠŁŠŁ†Ų§" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "أوروبا/ŁŁŠŁ„Ł†ŁŠŁˆŲ³" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "أوروبا/بلجراد" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "Ł…ŁˆŲ³ŁƒŁˆ +00 - ŲØŲ­Ų± Ł‚Ų²ŁˆŁŠŁ†" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "أوروبا/وارسو" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "أوروبا/Ų²ŲŗŲ±ŲØ" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "أوروبا/Ų²Ų§ŲØŁˆŲ±ŁˆŲ¬ŁŠŁŠŁ‡" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Ų²Ų§ŲØŁˆŲ±ŁˆŲ¬ŁŠŁŠŁ‡ŲŒ Ų„ŁŠŁ„ŁˆŲŗŲ§Ł†Ų³Łƒ / Ų„ŁŠŁ„ŁˆŁ‡Ų§Ł†Ų³Łƒ" #: timezones.h:807 msgid "Europe/Zurich" msgstr "أوروبا/زيورخ" #: timezones.h:808 msgid "Factory" msgstr "مصنع" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-آير" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Ų¬Ų±ŁŠŁ†ŲŖŲ“" #: timezones.h:816 msgid "Hongkong" msgstr "Ł‡ŁˆŁ†Ų¬ ŁƒŁˆŁ†Ų¬" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Ų£ŁŠŲ³Ł„Ų§Ł†ŲÆ" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Ł‡Ł†ŲÆŁŠ/Ų£Ł†ŲŖŲ§Ł†Ų§Ł†Ų§Ų±ŁŠŁŁˆ" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Ł‡Ł†ŲÆŁŠ/ؓاجوس" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Ł‡Ł†ŲÆŁŠ/ŁƒŲ±ŁŠŲ³ŲŖŁ…Ų§Ų³" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Ł‡Ł†ŲÆŁŠ/كوكوس" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Ł‡Ł†ŲÆŁŠ/ŁƒŁˆŁ…ŁˆŲ±Łˆ" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Ł‡Ł†ŲÆŁŠ/ŁƒŁŠŲ±Ų¬ŁŠŁˆŁ„Ł†" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Ł‡Ł†ŲÆŁŠ/Ł…Ų§Ł‡ŁŠ" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Ł‡Ł†ŲÆŁŠ/Ł…Ų§Ł„ŲÆŁŠŁ" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Ł‡Ł†ŲÆŁŠ/Ł…ŁˆŲ±ŁŠŲ“ŁŠŁˆŲ³" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Ł‡Ł†ŲÆŁŠ/Ł…Ų§ŁŠŁˆŲŖŁŠ" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Ł‡Ł†ŲÆŁŠ/Ų±ŁŠŁŠŁˆŁ†ŁŠŁˆŁ†" #: timezones.h:830 msgid "Iran" msgstr "Ų„ŁŠŲ±Ų§Ł†" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "ŁŁ„Ų³Ų·ŁŠŁ†" #: timezones.h:833 msgid "Jamaica" msgstr "Ų¬Ų§Ł…Ų§ŁŠŁƒŲ§" #: timezones.h:834 msgid "Japan" msgstr "ŁŠŲ§ŲØŲ§Ł†" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "ŁƒŁˆŲ¬Ų§Ł„ŁŠŁ†" #: timezones.h:836 msgid "Libya" msgstr "Ł„ŁŠŲØŁŠŲ§" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Ł…ŁƒŲ³ŁŠŁƒ/ŲØŲ§ŁŠŲ§Ł†ŁˆŲ±ŲŖŁŠ" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Ł…ŁƒŲ³ŁŠŁƒ/باياسور" #: timezones.h:840 msgid "Mexico/General" msgstr "Ł…ŁƒŲ³ŁŠŁƒ/Ų¹Ų§Ł…" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "ؓرق_أوسط/Ų§Ł„Ų±ŁŠŲ§Ų¶87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "ؓرق_أوسط/Ų§Ł„Ų±ŁŠŲ§Ų¶88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "ؓرق_أوسط/Ų§Ł„Ų±ŁŠŲ§Ų¶89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Ł†Ų§ŁŲ§ŁŠŁˆ" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "هادئ/أبيا" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "هادئ/Ų£ŁˆŁƒŁ„Ų§Ł†ŲÆ" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "هادئ/Ų“Ų§Ų«Ų§Ł…" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "Ų¬Ų²Ų± ŲŖŲ“Ų§ŲŖŲ§Ł…" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "هادئ/تروك" #. comment for time zone Pacific/Chuuk #: timezones.h:858 #, fuzzy msgid "Chuuk (Truk) and Yap" msgstr "تراك (ؓوك) وياب" #: timezones.h:859 msgid "Pacific/Easter" msgstr "هادئ/؄يستر" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "جزيرة الفصح ŁˆŲ³Ų§Ł„Ų§ ŲŗŁˆŁ…ŁŠŲ² Ų°" #: timezones.h:862 msgid "Pacific/Efate" msgstr "هادئ/؄فاتي" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "هادئ/Ų„Ł†ŲÆŲ±ŲØŁˆŲ±ŁŠ" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "Ų¬Ų²Ų± Ų·Ų§Ų¦Ų± Ų§Ł„ŁŁŠŁ†ŁŠŁ‚" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "هادئ/فاكاوفو" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "هادئ/فيجي" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "هادئ/ŁŁˆŁ†Ų§ŁŁˆŲŖŁŠ" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "هادئ/Ų¬Ų§Ł„Ų§ŲØŲ§Ų¬ŁˆŲ³" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "Ų¬Ų²Ų± ŲŗŲ§Ł„Ų§ŲØŲ§ŲŗŁˆŲ³" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "هادئ/Ų¬Ų§Ł…ŲØŁŠŁŠŲ±" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "Ų¬Ų²Ų± ŲŗŲ§Ł…ŲØŁŠŲ±" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "هادئ/Ų¬ŁˆŲ§ŲÆŲ§Ł„ŁƒŲ§Ł†Ų§Ł„" #: timezones.h:876 msgid "Pacific/Guam" msgstr "هادئ/Ų¬ŁˆŲ§Ł…" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "هادئ/Ł‡ŁˆŁ†ŁˆŁ„ŁˆŁ„Łˆ" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "Ł‡Ų§ŁˆŲ§ŁŠ" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "هادئ/Ų¬ŁˆŁ†Ų³ŲŖŁˆŁ†" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "جزيرة Ų¬ŁˆŁ†Ų³ŲŖŁˆŁ†" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "هادئ/ŁƒŁŠŲ±ŁŠŲŖŁŠŁ…Ų§ŲŖŁŠ" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "Ų¬Ų²Ų± الخط" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "هادئ/كوسراي" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "كوسراي" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "هادئ/ŁƒŁˆŲ§Ų¬Ų§Ł„ŁŠŁ†" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "هادئ/Ł…Ų§Ų¬ŁˆŲ±Łˆ" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "هادئ/Ł…Ų§Ų±ŁƒŁˆŁŠŲ³Ų§Ų³" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "Ų¬Ų²Ų± Ų§Ł„Ł…Ų§Ų±ŁƒŁŠŲ²" #: timezones.h:898 msgid "Pacific/Midway" msgstr "هادئ/Ł…ŁŠŲÆŁˆŲ§ŁŠ" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "Ų¬Ų²Ų± Ł…ŁŠŲÆŁˆŲ§ŁŠ" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "هادئ/Ł†Ų§ŁˆŲ±Łˆ" #: timezones.h:902 msgid "Pacific/Niue" msgstr "هادئ/Ł†ŁŠŁˆ" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "هادئ/Ł†ŁˆŲ±ŁŁˆŁ„Łƒ" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "هادئ/Ł†ŁˆŁ…ŁŠŲ§" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "هادئ/باجو_باجو" #: timezones.h:906 msgid "Pacific/Palau" msgstr "هادئ/ŲØŲ§Ł„Ų§Łˆ" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "هادئ/ŲØŁŠŲŖŁƒŲ§ŁŠŲ±Ł†" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "هادئ/ŲØŁˆŁ†Ų§ŲØŁŠ" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 #, fuzzy msgid "Pohnpei (Ponape)" msgstr "ŲØŁˆŁ‡Ł†ŲØŲ§ŁŠ" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "هادئ/ŲØŁˆŁ†Ų§ŲØŁŠ" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "هادئ/بورت_Ł…ŁˆŲ±Ų³ŲØŁŠ" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "هادئ/Ų±Ų§Ų±ŁˆŲŖŁˆŁ†Ų¬Ų§" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "هادئ/Ų³Ų§ŁŠŲØŲ§Ł†" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "هادئ/Ų³Ų§Ł…ŁˆŲ§" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "هادئ/ŲŖŲ§Ł‡ŁŠŲŖŁŠ" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "Ų¬Ų²Ų± المجتمع" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "هادئ/تاراوا" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "Ų¬Ų²Ų± Ų¬ŁŠŁ„ŲØŲ±ŲŖ" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "هادئ/ŲŖŁˆŁ†Ų¬Ų§ŲŖŲ§ŲØŁˆ" #: timezones.h:923 msgid "Pacific/Truk" msgstr "هادئ/تروك" #: timezones.h:924 msgid "Pacific/Wake" msgstr "هادئ/وايك" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "جزيرة وايك" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "هادئ/ŁˆŲ§Ł„ŁŠŲ³" #: timezones.h:928 msgid "Pacific/Yap" msgstr "هادئ/ياب" #: timezones.h:929 msgid "Poland" msgstr "ŲØŁˆŁ„Ł†ŲÆŲ§" #: timezones.h:930 msgid "Portugal" msgstr "البرتغال" #: timezones.h:931 msgid "posixrules" msgstr "ŲØŲ³ŁƒŁŠŲ±ŁˆŁ„Ų²" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Ų³Ł†ŲŗŲ§ŁŁˆŲ±Ų©" #: timezones.h:937 msgid "Turkey" msgstr "تركيا" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "US/Ų£Ł„Ų§Ų³ŁƒŲ§" #: timezones.h:941 msgid "US/Aleutian" msgstr "US/Ų£Ł„ŁŠŁˆŲŖŁŠŲ§Ł†" #: timezones.h:942 msgid "US/Arizona" msgstr "US/Ų£Ų±ŁŠŲ²ŁˆŁ†Ų§" #: timezones.h:943 msgid "US/Central" msgstr "US/وسط" #: timezones.h:944 msgid "US/Eastern" msgstr "US/Ų“Ų±Ł‚ŁŠ" #: timezones.h:945 msgid "US/East-Indiana" msgstr "US/ؓرق-Ų„Ł†ŲÆŁŠŲ§Ł†Ų§" #: timezones.h:946 msgid "US/Hawaii" msgstr "US/Ł‡Ų§ŁˆŲ§ŁŠ" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "US/Ų„Ł†ŲÆŁŠŲ§Ł†Ų§-ستاركي" #: timezones.h:948 msgid "US/Michigan" msgstr "US/Ł…ŁŠŲŖŲ“ŁŠŲ¬Ų§Ł†" #: timezones.h:949 msgid "US/Mountain" msgstr "US/Ų¬ŲØŁ„" #: timezones.h:950 msgid "US/Pacific" msgstr "US/هادئ" #: timezones.h:951 msgid "US/Samoa" msgstr "US/Ų³Ų§Ł…ŁˆŲ§" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/vi.po0000664000175000017500000017304514632072346023707 0ustar fabiofabio# SOME DESCRIPTIVE TITLE. # Copyright (C) 2002 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # pclouds , 2002. # msgid "" msgstr "" "Project-Id-Version: timezones VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2003-07-27 00:05+0700\n" "Last-Translator: pclouds \n" "Language-Team: GnomeVI \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "ChĆ¢u Phi/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "ChĆ¢u Phi/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "ChĆ¢u Phi/Addis_Ababa" #: timezones.h:4 msgid "Africa/Algiers" msgstr "ChĆ¢u Phi/Algiers" #: timezones.h:5 #, fuzzy msgid "Africa/Asmara" msgstr "ChĆ¢u Phi/Asmera" #: timezones.h:6 msgid "Africa/Asmera" msgstr "ChĆ¢u Phi/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "ChĆ¢u Phi/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "ChĆ¢u Phi/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "ChĆ¢u Phi/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "ChĆ¢u Phi/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "ChĆ¢u Phi/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "ChĆ¢u Phi/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "ChĆ¢u Phi/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "ChĆ¢u Phi/Cairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "ChĆ¢u Phi/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "ChĆ¢u Phi/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "ChĆ¢u Phi/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "ChĆ¢u Phi/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "ChĆ¢u Phi/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "ChĆ¢u Phi/Djibouti" #: timezones.h:23 msgid "Africa/Douala" msgstr "ChĆ¢u Phi/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "ChĆ¢u Phi/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "ChĆ¢u Phi/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "ChĆ¢u Phi/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "ChĆ¢u Phi/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "ChĆ¢u Phi/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "ChĆ¢u Phi/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "ChĆ¢u Phi/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "ChĆ¢u Phi/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "ChĆ¢u Phi/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "ChĆ¢u Phi/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "ChĆ¢u Phi/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "ChĆ¢u Phi/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "ChĆ¢u Phi/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "ChĆ¢u Phi/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "ChĆ¢u Phi/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "ChĆ¢u Phi/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "ChĆ¢u Phi/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "ChĆ¢u Phi/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "ChĆ¢u Phi/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "ChĆ¢u Phi/Mogadishu" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "ChĆ¢u Phi/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "ChĆ¢u Phi/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "ChĆ¢u Phi/Ndjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "ChĆ¢u Phi/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "ChĆ¢u Phi/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "ChĆ¢u Phi/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "ChĆ¢u Phi/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "ChĆ¢u Phi/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "ChĆ¢u Phi/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "ChĆ¢u Phi/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "ChĆ¢u Phi/Tunis" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "ChĆ¢u Phi/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "ChĆ¢u Mỹ/Adak" #. comment for time zone America/Adak #: timezones.h:62 #, fuzzy msgid "Aleutian Islands" msgstr "ChĆ¢u Úc/Queensland" #: timezones.h:63 msgid "America/Anchorage" msgstr "ChĆ¢u Mỹ/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 #, fuzzy msgid "Alaska Time" msgstr "Mỹ/Alaska" #: timezones.h:66 msgid "America/Anguilla" msgstr "ChĆ¢u Mỹ/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "ChĆ¢u Mỹ/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "ChĆ¢u Mỹ/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 #, fuzzy msgid "America/Argentina/Buenos_Aires" msgstr "ChĆ¢u Mỹ/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 #, fuzzy msgid "America/Argentina/Catamarca" msgstr "ChĆ¢u Mỹ/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 #, fuzzy msgid "America/Argentina/ComodRivadavia" msgstr "ChĆ¢u Mỹ/Indiana/Indianapolis" #: timezones.h:78 #, fuzzy msgid "America/Argentina/Cordoba" msgstr "ChĆ¢u Mỹ/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 #, fuzzy msgid "America/Argentina/Jujuy" msgstr "ChĆ¢u Mỹ/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 #, fuzzy msgid "America/Argentina/La_Rioja" msgstr "ChĆ¢u Mỹ/Araguaina" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 #, fuzzy msgid "America/Argentina/Mendoza" msgstr "ChĆ¢u Mỹ/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 #, fuzzy msgid "America/Argentina/Rio_Gallegos" msgstr "ChĆ¢u Mỹ/Indiana/Marengo" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 #, fuzzy msgid "America/Argentina/Salta" msgstr "ChĆ¢u Mỹ/Antigua" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 #, fuzzy msgid "America/Argentina/San_Juan" msgstr "ChĆ¢u Mỹ/Antigua" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 #, fuzzy msgid "America/Argentina/San_Luis" msgstr "ChĆ¢u Mỹ/Antigua" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 #, fuzzy msgid "America/Argentina/Tucuman" msgstr "ChĆ¢u Mỹ/Antigua" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 #, fuzzy msgid "America/Argentina/Ushuaia" msgstr "ChĆ¢u Mỹ/Araguaina" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "ChĆ¢u Mỹ/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "ChĆ¢u Mỹ/Asuncion" #: timezones.h:110 #, fuzzy msgid "America/Atikokan" msgstr "ChĆ¢u Mỹ/Atka" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "ChĆ¢u Mỹ/Atka" #: timezones.h:114 #, fuzzy msgid "America/Bahia" msgstr "ChĆ¢u Mỹ/Boa_Vista" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "ChĆ¢u Mỹ/Boa_Vista" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "ChĆ¢u Mỹ/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "ChĆ¢u Mỹ/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "ChĆ¢u Mỹ/Belize" #: timezones.h:125 #, fuzzy msgid "America/Blanc-Sablon" msgstr "ChĆ¢u Mỹ/Cancun" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "ChĆ¢u Mỹ/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "ChĆ¢u Mỹ/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "ChĆ¢u Mỹ/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "ChĆ¢u Mỹ/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "ChĆ¢u Mỹ/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 #, fuzzy msgid "America/Campo_Grande" msgstr "ChĆ¢u Mỹ/Cayman" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "ChĆ¢u Mỹ/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "ChĆ¢u Mỹ/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "ChĆ¢u Mỹ/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "ChĆ¢u Mỹ/Cayenne" #: timezones.h:148 msgid "America/Cayman" msgstr "ChĆ¢u Mỹ/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "ChĆ¢u Mỹ/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "Mỹ/Central" #: timezones.h:152 msgid "America/Chihuahua" msgstr "ChĆ¢u Mỹ/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 #, fuzzy msgid "America/Coral_Harbour" msgstr "ChĆ¢u Mỹ/Curacao" #: timezones.h:156 msgid "America/Cordoba" msgstr "ChĆ¢u Mỹ/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "ChĆ¢u Mỹ/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "ChĆ¢u Mỹ/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "ChĆ¢u Mỹ/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "ChĆ¢u Mỹ/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "ChĆ¢u Mỹ/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "ChĆ¢u Mỹ/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "ChĆ¢u Mỹ/Denver" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "Mỹ/Mountain" #: timezones.h:174 msgid "America/Detroit" msgstr "ChĆ¢u Mỹ/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "ChĆ¢u Mỹ/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "ChĆ¢u Mỹ/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "ChĆ¢u Mỹ/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "ChĆ¢u Mỹ/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "ChĆ¢u Mỹ/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "ChĆ¢u Mỹ/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "ChĆ¢u Mỹ/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "ChĆ¢u Mỹ/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "ChĆ¢u Mỹ/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "ChĆ¢u Mỹ/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "ChĆ¢u Mỹ/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "ChĆ¢u Mỹ/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "ChĆ¢u Mỹ/Guadeloupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "ChĆ¢u Mỹ/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "ChĆ¢u Mỹ/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "ChĆ¢u Mỹ/Guyana" #: timezones.h:207 msgid "America/Halifax" msgstr "ChĆ¢u Mỹ/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "ChĆ¢u Mỹ/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "ChĆ¢u Mỹ/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "ChĆ¢u Mỹ/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "ChĆ¢u Mỹ/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "ChĆ¢u Mỹ/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 #, fuzzy msgid "America/Indiana/Petersburg" msgstr "ChĆ¢u Mỹ/Indiana/Marengo" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "ChĆ¢u Mỹ/Indianapolis" #: timezones.h:227 #, fuzzy msgid "America/Indiana/Tell_City" msgstr "ChĆ¢u Mỹ/Indiana/Vevay" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "ChĆ¢u Mỹ/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 #, fuzzy msgid "America/Indiana/Vincennes" msgstr "ChĆ¢u Mỹ/Indiana/Vevay" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 #, fuzzy msgid "America/Indiana/Winamac" msgstr "ChĆ¢u Mỹ/Indiana/Vevay" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "ChĆ¢u Mỹ/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "ChĆ¢u Mỹ/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "ChĆ¢u Mỹ/Jamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "ChĆ¢u Mỹ/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "ChĆ¢u Mỹ/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "ChĆ¢u Mỹ/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 #, fuzzy msgid "Eastern Time - Kentucky - Louisville area" msgstr "ChĆ¢u Mỹ/Kentucky/Louisville" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "ChĆ¢u Mỹ/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "ChĆ¢u Mỹ/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "ChĆ¢u Mỹ/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "ChĆ¢u Mỹ/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "ChĆ¢u Mỹ/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 #, fuzzy msgid "Pacific Time" msgstr "ThĆ”i BƬnh Dʰʔng/Niue" #: timezones.h:262 msgid "America/Louisville" msgstr "ChĆ¢u Mỹ/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "ChĆ¢u Mỹ/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "ChĆ¢u Mỹ/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "ChĆ¢u Mỹ/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 #, fuzzy msgid "America/Marigot" msgstr "ChĆ¢u Mỹ/Maceio" #: timezones.h:271 msgid "America/Martinique" msgstr "ChĆ¢u Mỹ/Martinique" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "ChĆ¢u Mỹ/Manaus" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "ChĆ¢u Mỹ/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "ChĆ¢u Mỹ/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "ChĆ¢u Mỹ/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "ChĆ¢u Mỹ/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "ChĆ¢u Mỹ/Mexico_City" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "ChĆ¢u Mỹ/Miquelon" #: timezones.h:289 #, fuzzy msgid "America/Moncton" msgstr "ChĆ¢u Mỹ/Edmonton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "ChĆ¢u Mỹ/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "ChĆ¢u Mỹ/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "ChĆ¢u Mỹ/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "ChĆ¢u Mỹ/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "ChĆ¢u Mỹ/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "ChĆ¢u Mỹ/New_York" #. comment for time zone America/New_York #: timezones.h:303 #, fuzzy msgid "Eastern Time" msgstr "Mỹ/Eastern" #: timezones.h:304 msgid "America/Nipigon" msgstr "ChĆ¢u Mỹ/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "ChĆ¢u Mỹ/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "ChĆ¢u Mỹ/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 #, fuzzy msgid "Atlantic islands" msgstr "ĐẔi TĆ¢y Dʰʔng/Canary" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "ChĆ¢u Mỹ/North_Dakota/Center" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 #, fuzzy msgid "America/North_Dakota/New_Salem" msgstr "ChĆ¢u Mỹ/North_Dakota/Center" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "ChĆ¢u Mỹ/Managua" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "ChĆ¢u Mỹ/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "ChĆ¢u Mỹ/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "ChĆ¢u Mỹ/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "ChĆ¢u Mỹ/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "ChĆ¢u Mỹ/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "ChĆ¢u Mỹ/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "ChĆ¢u Mỹ/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "ChĆ¢u Mỹ/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "ChĆ¢u Mỹ/Puerto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "ChĆ¢u Mỹ/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "ChĆ¢u Mỹ/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "ChĆ¢u Mỹ/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "ChĆ¢u Mỹ/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 #, fuzzy msgid "America/Resolute" msgstr "ChĆ¢u Mỹ/Belem" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "ChĆ¢u Mỹ/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "ChĆ¢u Mỹ/Rosario" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "ChĆ¢u Mỹ/Santiago" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 #, fuzzy msgid "America/Santarem" msgstr "ChĆ¢u Mỹ/Santiago" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "ChĆ¢u Mỹ/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "ChĆ¢u Mỹ/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "ChĆ¢u Mỹ/Sao_Paulo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "ChĆ¢u Mỹ/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "ChĆ¢u Mỹ/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 #, fuzzy msgid "America/St_Barthelemy" msgstr "ChĆ¢u Mỹ/Belem" #: timezones.h:376 msgid "America/St_Johns" msgstr "ChĆ¢u Mỹ/St_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "ChĆ¢u Mỹ/St_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "ChĆ¢u Mỹ/St_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "ChĆ¢u Mỹ/St_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "ChĆ¢u Mỹ/St_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "ChĆ¢u Mỹ/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "ChĆ¢u Mỹ/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "ChĆ¢u Mỹ/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "ChĆ¢u Mỹ/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "ChĆ¢u Mỹ/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 #, fuzzy msgid "America/Toronto" msgstr "ChĆ¢u Mỹ/Tortola" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "ChĆ¢u Mỹ/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "ChĆ¢u Mỹ/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "ChĆ¢u Mỹ/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "ChĆ¢u Mỹ/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "ChĆ¢u Mỹ/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "ChĆ¢u Mỹ/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "ChĆ¢u Mỹ/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "ĐẔi TĆ¢y Dʰʔng/South_Georgia" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 #, fuzzy msgid "Antarctica/Rothera" msgstr "ĐẔi TĆ¢y Dʰʔng/South_Georgia" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "" #: timezones.h:450 msgid "Asia/Aden" msgstr "ChĆ¢u Ɓ/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "ChĆ¢u Ɓ/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "ChĆ¢u Ɓ/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "ChĆ¢u Ɓ/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "ChĆ¢u Ɓ/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "ChĆ¢u Ɓ/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "ChĆ¢u Ɓ/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "ChĆ¢u Ɓ/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "ChĆ¢u Ɓ/Baghdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "ChĆ¢u Ɓ/Bahrain" #: timezones.h:468 msgid "Asia/Baku" msgstr "ChĆ¢u Ɓ/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "ChĆ¢u Ɓ/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "ChĆ¢u Ɓ/Beirut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "ChĆ¢u Ɓ/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "ChĆ¢u Ɓ/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "ChĆ¢u Ɓ/Calcutta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "ChĆ¢u Ɓ/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "ChĆ¢u Ɓ/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "ChĆ¢u Ɓ/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "ChĆ¢u Ɓ/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "ChĆ¢u Ɓ/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "ChĆ¢u Ɓ/Damascus" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "ChĆ¢u Ɓ/Dhaka" #: timezones.h:485 msgid "Asia/Dili" msgstr "ChĆ¢u Ɓ/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "ChĆ¢u Ɓ/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "ChĆ¢u Ɓ/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "ChĆ¢u Ɓ/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "ChĆ¢u Ɓ/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 #, fuzzy msgid "Asia/Ho_Chi_Minh" msgstr "ChĆ¢u Ɓ/Chongqing" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "ChĆ¢u Ɓ/Hồng KĆ“ng" #: timezones.h:494 msgid "Asia/Hovd" msgstr "ChĆ¢u Ɓ/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "ChĆ¢u Ɓ/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "ChĆ¢u Ɓ/Istanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "ChĆ¢u Ɓ/Jakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "ChĆ¢u Ɓ/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "ChĆ¢u Ɓ/Jerusalem" #: timezones.h:508 msgid "Asia/Kabul" msgstr "ChĆ¢u Ɓ/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "ChĆ¢u Ɓ/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "ChĆ¢u Ɓ/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "ChĆ¢u Ɓ/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 #, fuzzy msgid "Asia/Kathmandu" msgstr "ChĆ¢u Ɓ/Katmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "ChĆ¢u Ɓ/Katmandu" #: timezones.h:518 #, fuzzy msgid "Asia/Kolkata" msgstr "ChĆ¢u Ɓ/Jakarta" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "ChĆ¢u Ɓ/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "ChĆ¢u Ɓ/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "ChĆ¢u Ɓ/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "ChĆ¢u Ɓ/Kuwait" #: timezones.h:529 msgid "Asia/Macao" msgstr "ChĆ¢u Ɓ/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "ChĆ¢u Ɓ/Macau" #: timezones.h:531 msgid "Asia/Magadan" msgstr "ChĆ¢u Ɓ/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "ChĆ¢u Ɓ/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "ChĆ¢u Ɓ/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "ChĆ¢u Ɓ/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "ChĆ¢u Ɓ/Nicosia" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "ChĆ¢u Ɓ/Irkutsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "ChĆ¢u Ɓ/Novosibirsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "ChĆ¢u Ɓ/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 #, fuzzy msgid "Moscow+03 - Novosibirsk" msgstr "ChĆ¢u Ɓ/Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "ChĆ¢u Ɓ/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "ChĆ¢u Ɓ/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "ChĆ¢u Ɓ/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "ChĆ¢u Ɓ/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "ChĆ¢u Ɓ/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "ChĆ¢u Ɓ/Qatar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "ChĆ¢u Ɓ/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "ChĆ¢u Ɓ/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "ChĆ¢u Ɓ/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "ChĆ¢u Ɓ/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "ChĆ¢u Ɓ/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "ChĆ¢u Ɓ/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "ChĆ¢u Ɓ/SĆ i Gòn" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "ChĆ¢u Ɓ/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "ChĆ¢u Ɓ/Samarkand" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "ChĆ¢u Ɓ/Seoul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "ChĆ¢u Ɓ/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "ChĆ¢u Ɓ/Singapore" #: timezones.h:578 msgid "Asia/Taipei" msgstr "ChĆ¢u Ɓ/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "ChĆ¢u Ɓ/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "ChĆ¢u Ɓ/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "ChĆ¢u Ɓ/Tehran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "ChĆ¢u Ɓ/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "ChĆ¢u Ɓ/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "ChĆ¢u Ɓ/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "ChĆ¢u Ɓ/Tokyo" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "ChĆ¢u Ɓ/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "ChĆ¢u Ɓ/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "ChĆ¢u Ɓ/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "ChĆ¢u Ɓ/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "ChĆ¢u Ɓ/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "ChĆ¢u Ɓ/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "ChĆ¢u Ɓ/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "ChĆ¢u Ɓ/Yekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "ChĆ¢u Ɓ/Yerevan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "ĐẔi TĆ¢y Dʰʔng/Azores" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "ĐẔi TĆ¢y Dʰʔng/Bermuda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "ĐẔi TĆ¢y Dʰʔng/Canary" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "ĐẔi TĆ¢y Dʰʔng/Cape_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "ĐẔi TĆ¢y Dʰʔng/Faeroe" #: timezones.h:616 #, fuzzy msgid "Atlantic/Faroe" msgstr "ĐẔi TĆ¢y Dʰʔng/Faeroe" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "ĐẔi TĆ¢y Dʰʔng/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "ĐẔi TĆ¢y Dʰʔng/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "ĐẔi TĆ¢y Dʰʔng/Reykjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "ĐẔi TĆ¢y Dʰʔng/South_Georgia" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "ĐẔi TĆ¢y Dʰʔng/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "ĐẔi TĆ¢y Dʰʔng/St_Helena" #: timezones.h:625 msgid "Australia/ACT" msgstr "ChĆ¢u Úc/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ChĆ¢u Úc/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 #, fuzzy msgid "South Australia" msgstr "ChĆ¢u Úc/ACT" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "ChĆ¢u Úc/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ChĆ¢u Úc/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ChĆ¢u Úc/Canberra" #: timezones.h:636 #, fuzzy msgid "Australia/Currie" msgstr "ChĆ¢u Úc/Canberra" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "ChĆ¢u Úc/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 #, fuzzy msgid "Australia/Eucla" msgstr "ChĆ¢u Úc/Queensland" #. comment for time zone Australia/Eucla #: timezones.h:644 #, fuzzy msgid "Western Australia - Eucla area" msgstr "ChĆ¢u Úc/Queensland" #: timezones.h:645 msgid "Australia/Hobart" msgstr "ChĆ¢u Úc/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "ChĆ¢u Úc/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "ChĆ¢u Úc/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "ChĆ¢u Úc/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "ChĆ¢u Úc/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 #, fuzzy msgid "Victoria" msgstr "ChĆ¢u Úc/Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "ChĆ¢u Úc/North" #: timezones.h:659 msgid "Australia/NSW" msgstr "ChĆ¢u Úc/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "ChĆ¢u Úc/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "ChĆ¢u Úc/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "ChĆ¢u Úc/South" #: timezones.h:665 msgid "Australia/Sydney" msgstr "ChĆ¢u Úc/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ChĆ¢u Úc/Tasmania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ChĆ¢u Úc/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "ChĆ¢u Úc/West" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ChĆ¢u Úc/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brazil/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brazil/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brazil/East" #: timezones.h:675 msgid "Brazil/West" msgstr "Brazil/West" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Canada/Atlantic" #: timezones.h:677 msgid "Canada/Central" msgstr "Canada/Central" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Canada/Eastern" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Canada/East-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Canada/Mountain" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Canada/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Canada/Pacific" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Canada/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Canada/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Chi LĆŖ/Continental" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chi LĆŖ/EasterIsland" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Cuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Ai Cįŗ­p" #: timezones.h:692 msgid "Eire" msgstr "" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "ChĆ¢u Ƃu/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "ChĆ¢u Ƃu/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "ChĆ¢u Ƃu/Athens" #: timezones.h:733 msgid "Europe/Belfast" msgstr "ChĆ¢u Ƃu/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "ChĆ¢u Ƃu/Belgrade" #: timezones.h:735 msgid "Europe/Berlin" msgstr "ChĆ¢u Ƃu/Berlin" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "ChĆ¢u Ƃu/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "ChĆ¢u Ƃu/Brussels" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "ChĆ¢u Ƃu/Bucharest" #: timezones.h:739 msgid "Europe/Budapest" msgstr "ChĆ¢u Ƃu/Budapest" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "ChĆ¢u Ƃu/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "ChĆ¢u Ƃu/Copenhagen" #: timezones.h:742 msgid "Europe/Dublin" msgstr "ChĆ¢u Ƃu/Dublin" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "ChĆ¢u Ƃu/Gibraltar" #: timezones.h:744 #, fuzzy msgid "Europe/Guernsey" msgstr "ChĆ¢u Ƃu/Athens" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "ChĆ¢u Ƃu/Helsinki" #: timezones.h:746 #, fuzzy msgid "Europe/Isle_of_Man" msgstr "ChĆ¢u Ƃu/Oslo" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "ChĆ¢u Ƃu/Istanbul" #: timezones.h:748 #, fuzzy msgid "Europe/Jersey" msgstr "ChĆ¢u Ƃu/Paris" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "ChĆ¢u Ƃu/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "ChĆ¢u Ƃu/Kiev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "ChĆ¢u Ƃu/Lisbon" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "ChĆ¢u Ƃu/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "ChĆ¢u Ƃu/London" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "ChĆ¢u Ƃu/Luxembourg" #: timezones.h:761 msgid "Europe/Madrid" msgstr "ChĆ¢u Ƃu/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "ChĆ¢u Ƃu/Malta" #: timezones.h:765 #, fuzzy msgid "Europe/Mariehamn" msgstr "ChĆ¢u Ƃu/Madrid" #: timezones.h:766 msgid "Europe/Minsk" msgstr "ChĆ¢u Ƃu/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "ChĆ¢u Ƃu/Monaco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "ChĆ¢u Ƃu/Moscow" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "ChĆ¢u Ƃu/Nicosia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "ChĆ¢u Ƃu/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "ChĆ¢u Ƃu/Paris" #: timezones.h:774 #, fuzzy msgid "Europe/Podgorica" msgstr "ChĆ¢u Ƃu/Andorra" #: timezones.h:775 msgid "Europe/Prague" msgstr "ChĆ¢u Ƃu/Prague" #: timezones.h:776 msgid "Europe/Riga" msgstr "ChĆ¢u Ƃu/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "ChĆ¢u Ƃu/Rome" #: timezones.h:778 msgid "Europe/Samara" msgstr "ChĆ¢u Ƃu/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "ChĆ¢u Ƃu/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "ChĆ¢u Ƃu/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "ChĆ¢u Ƃu/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "ChĆ¢u Ƃu/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "ChĆ¢u Ƃu/Sofia" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "ChĆ¢u Ƃu/Stockholm" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "ChĆ¢u Ƃu/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "ChĆ¢u Ƃu/Tirane" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "ChĆ¢u Ƃu/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "ChĆ¢u Ƃu/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "ChĆ¢u Ƃu/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "ChĆ¢u Ƃu/Vatican" #: timezones.h:797 msgid "Europe/Vienna" msgstr "ChĆ¢u Ƃu/Vienna" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "ChĆ¢u Ƃu/Vilnius" #: timezones.h:799 #, fuzzy msgid "Europe/Volgograd" msgstr "ChĆ¢u Ƃu/Belgrade" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "ChĆ¢u Ƃu/Warsaw" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "ChĆ¢u Ƃu/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "ChĆ¢u Ƃu/Zaporozhye" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "ChĆ¢u Ƃu/Zurich" #: timezones.h:808 msgid "Factory" msgstr "" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hồng KĆ“ng" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "įŗ¤n Độ Dʰʔng/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "įŗ¤n Độ Dʰʔng/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "įŗ¤n Độ Dʰʔng/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "įŗ¤n Độ Dʰʔng/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "įŗ¤n Độ Dʰʔng/Comoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "įŗ¤n Độ Dʰʔng/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "įŗ¤n Độ Dʰʔng/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "įŗ¤n Độ Dʰʔng/Maldives" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "įŗ¤n Độ Dʰʔng/Mauritius" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "įŗ¤n Độ Dʰʔng/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "įŗ¤n Độ Dʰʔng/Reunion" #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "Israel" #: timezones.h:833 msgid "Jamaica" msgstr "Jamaica" #: timezones.h:834 msgid "Japan" msgstr "Nhįŗ­t Bįŗ£n" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Li Bi" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "MĆŖ Hi CĆ“/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "MĆŖ Hi CĆ“/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "MĆŖ Hi CĆ“/General" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Trung ĐƓng/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Trung ĐƓng/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Trung ĐƓng/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "ThĆ”i BƬnh Dʰʔng/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "ThĆ”i BƬnh Dʰʔng/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "ThĆ”i BƬnh Dʰʔng/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 #, fuzzy msgid "Chatham Islands" msgstr "Chi LĆŖ/EasterIsland" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "ThĆ”i BƬnh Dʰʔng/Truk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 #, fuzzy msgid "Pacific/Easter" msgstr "ThĆ”i BƬnh Dʰʔng/Easter" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "ThĆ”i BƬnh Dʰʔng/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "ThĆ”i BƬnh Dʰʔng/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "ThĆ”i BƬnh Dʰʔng/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "ThĆ”i BƬnh Dʰʔng/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "ThĆ”i BƬnh Dʰʔng/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "ThĆ”i BƬnh Dʰʔng/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "ThĆ”i BƬnh Dʰʔng/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "ThĆ”i BƬnh Dʰʔng/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "ThĆ”i BƬnh Dʰʔng/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "ThĆ”i BƬnh Dʰʔng/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 #, fuzzy msgid "Hawaii" msgstr "Mỹ/Hawaii" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "ThĆ”i BƬnh Dʰʔng/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "ThĆ”i BƬnh Dʰʔng/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "ThĆ”i BƬnh Dʰʔng/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 #, fuzzy msgid "Kosrae" msgstr "Israel" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "ThĆ”i BƬnh Dʰʔng/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "ThĆ”i BƬnh Dʰʔng/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "ThĆ”i BƬnh Dʰʔng/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "ThĆ”i BƬnh Dʰʔng/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "ThĆ”i BƬnh Dʰʔng/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "ThĆ”i BƬnh Dʰʔng/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "ThĆ”i BƬnh Dʰʔng/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "ThĆ”i BƬnh Dʰʔng/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "ThĆ”i BƬnh Dʰʔng/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "ThĆ”i BƬnh Dʰʔng/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "ThĆ”i BƬnh Dʰʔng/Pitcairn" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "ThĆ”i BƬnh Dʰʔng/Ponape" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "ThĆ”i BƬnh Dʰʔng/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "ThĆ”i BƬnh Dʰʔng/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "ThĆ”i BƬnh Dʰʔng/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "ThĆ”i BƬnh Dʰʔng/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "ThĆ”i BƬnh Dʰʔng/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "ThĆ”i BƬnh Dʰʔng/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "ThĆ”i BƬnh Dʰʔng/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 #, fuzzy msgid "Gilbert Islands" msgstr "Chi LĆŖ/EasterIsland" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "ThĆ”i BƬnh Dʰʔng/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "ThĆ”i BƬnh Dʰʔng/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "ThĆ”i BƬnh Dʰʔng/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "ThĆ”i BƬnh Dʰʔng/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "ThĆ”i BƬnh Dʰʔng/Yap" #: timezones.h:929 msgid "Poland" msgstr "" #: timezones.h:930 msgid "Portugal" msgstr "" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapore" #: timezones.h:937 msgid "Turkey" msgstr "" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "ToĆ n Cįŗ§u" #: timezones.h:940 msgid "US/Alaska" msgstr "Mỹ/Alaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "Mỹ/Aleutian" #: timezones.h:942 msgid "US/Arizona" msgstr "Mỹ/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "Mỹ/Central" #: timezones.h:944 msgid "US/Eastern" msgstr "Mỹ/Eastern" #: timezones.h:945 msgid "US/East-Indiana" msgstr "Mỹ/East-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "Mỹ/Hawaii" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "Mỹ/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "Mỹ/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "Mỹ/Mountain" #: timezones.h:950 msgid "US/Pacific" msgstr "Mỹ/Pacific" #: timezones.h:951 msgid "US/Samoa" msgstr "Mỹ/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" #, fuzzy #~ msgid "US/Pacific-New" #~ msgstr "Mỹ/Pacific" #~ msgid "SystemV/AST4" #~ msgstr "SystemV/AST4" #~ msgid "SystemV/AST4ADT" #~ msgstr "SystemV/AST4ADT" #~ msgid "SystemV/CST6" #~ msgstr "SystemV/CST6" #~ msgid "SystemV/CST6CDT" #~ msgstr "SystemV/CST6CDT" #~ msgid "SystemV/EST5" #~ msgstr "SystemV/EST5" #~ msgid "SystemV/EST5EDT" #~ msgstr "SystemV/EST5EDT" #~ msgid "SystemV/HST10" #~ msgstr "SystemV/HST10" #~ msgid "SystemV/MST7" #~ msgstr "SystemV/MST7" #~ msgid "SystemV/MST7MDT" #~ msgstr "SystemV/MST7MDT" #~ msgid "SystemV/PST8" #~ msgstr "SystemV/PST8" #~ msgid "SystemV/PST8PDT" #~ msgstr "SystemV/PST8PDT" #~ msgid "SystemV/YST9" #~ msgstr "SystemV/YST9" #~ msgid "SystemV/YST9YDT" #~ msgstr "SystemV/YST9YDT" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/lv.po0000664000175000017500000017035014632072346023706 0ustar fabiofabio# translation of lv.po to Latvian # Andrew Martynov , 2004. # Yuliya Poyarkova , 2006. # Yulia Poyarkova , 2006. # Gatis Kalnins , 2006. # translation of ru.po to # translation of ru.po to # translation of ru.po to # translation of ru.po to # translation of ru.po to msgid "" msgstr "" "Project-Id-Version: lv\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2006-11-21 19:44+0200\n" "Last-Translator: Gatis Kalnins \n" "Language-Team: Latvian \n" "Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.1\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Āfrika/Abidžana" #: timezones.h:2 msgid "Africa/Accra" msgstr "Āfrika/Akkra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Āfrika/Adis-Abeba" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Āfrika/Alžīra" #: timezones.h:5 #, fuzzy msgid "Africa/Asmara" msgstr "Āfrika/Asmera" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Āfrika/Asmera" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Āfrika/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Āfrika/Bangi" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Āfrika/Banžula" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Āfrika/Bisau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Āfrika/Blantaira" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Āfrika/Brazzavila" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Āfrika/Bužumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Āfrika/Kaira" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Āfrika/Kasablanka" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Āfrika/Seuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Āfrika/Konkari" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Āfrika/Dakāra" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Āfrika/Dar-es-Salama" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Āfrika/Džibuti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Āfrika/Duala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Āfrika/El Ajuna" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Āfrika/FrÄ«tauna" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Āfrika/Gaborona" #: timezones.h:27 msgid "Africa/Harare" msgstr "Āfrika/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Āfrika/Johanesburga" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Āfrika/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Āfrika/Hartuma" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Āfrika/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Āfrika/KinÅ”asa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Āfrika/Lagosa" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Āfrika/Livervila" #: timezones.h:37 msgid "Africa/Lome" msgstr "Āfrika/Loma" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Āfrika/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Āfrika/LubumbaÅ”i" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Āfrika/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Āfrika/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Āfrika/Maputu" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Āfrika/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Āfrika/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Āfrika/MogadiÅ”a" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Āfrika/Monrovija" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Āfrika/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Āfrika/Ndžamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Āfrika/Niameja" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Āfrika/NuakÅ”ota" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Āfrika/Uagadugu" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Āfrika/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Āfrika/Sao Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Āfrika/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Āfrika/Tripole" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Āfrika/Tunisa" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Āfrika/Vindhuka" #: timezones.h:60 msgid "America/Adak" msgstr "Amerika/Adaka" #. comment for time zone America/Adak #: timezones.h:62 #, fuzzy msgid "Aleutian Islands" msgstr "Austrālija/Kvinslenda" #: timezones.h:63 msgid "America/Anchorage" msgstr "Amerika/Ankoridža" #. comment for time zone America/Anchorage #: timezones.h:65 #, fuzzy msgid "Alaska Time" msgstr "ASV/Aļaska" #: timezones.h:66 msgid "America/Anguilla" msgstr "Amerika/Angila" #: timezones.h:67 msgid "America/Antigua" msgstr "Amerika/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "Amerika/Araguana" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "Amerika/ArgentÄ«na/Buenosairesa" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "Amerika/ArgentÄ«na/Katamarka" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "Amerika/ArgentÄ«na/Komod-Rivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "Amerika/ArgentÄ«na/Kordova" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "Amerika/ArgentÄ«na/Žužuja" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "Amerika/ArgentÄ«na/La Rioha" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "Amerika/ArgentÄ«na/Mendosa" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "Amerika/ArgentÄ«na/Rio Galegosa" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 #, fuzzy msgid "America/Argentina/Salta" msgstr "Amerika/ArgentÄ«na/San Huana" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "Amerika/ArgentÄ«na/San Huana" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 #, fuzzy msgid "America/Argentina/San_Luis" msgstr "Amerika/ArgentÄ«na/San Huana" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "Amerika/ArgentÄ«na/Tukumana" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "Amerika/ArgentÄ«na/UÅ”uaja" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "Amerika/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "Amerika/Asunsjona" #: timezones.h:110 msgid "America/Atikokan" msgstr "Amerika/Atikokana" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "Amerika/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "Amerika/Baija" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "Amerika/Baija" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "Amerika/Barbadosa" #: timezones.h:121 msgid "America/Belem" msgstr "Amerika/Belema" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "Amerika/Beliza" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "Amerika/Blank-Sablona" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "Amerika/Boa Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "Amerika/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "Amerika/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "Amerika/Buenosairesa" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "Amerika/Kembridž-Beja" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "Amerika/Kampo-Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "Amerika/Kankuna" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "Amerika/Karakasa" #: timezones.h:146 msgid "America/Catamarca" msgstr "Amerika/Katamarka" #: timezones.h:147 msgid "America/Cayenne" msgstr "Amerika/Kaijena" #: timezones.h:148 msgid "America/Cayman" msgstr "Amerika/Kaimanas" #: timezones.h:149 msgid "America/Chicago" msgstr "Amerika/Čikāga" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "ASV/Centrs" #: timezones.h:152 msgid "America/Chihuahua" msgstr "Amerika/Čihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "Amerika/Koralharbora" #: timezones.h:156 msgid "America/Cordoba" msgstr "Amerika/Kordova" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "Amerika/Kostarika" #: timezones.h:158 msgid "America/Cuiaba" msgstr "Amerika/Kujaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "Amerika/Kjurasao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "Amerika/DenmarkÅ”avn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "Amerika/Dousona" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "Amerika/DausonkrÄ«ka" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "Amerika/Denvera" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "ASV/Kalni" #: timezones.h:174 msgid "America/Detroit" msgstr "Amerika/Detroita" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "Amerika/Dominika" #: timezones.h:178 msgid "America/Edmonton" msgstr "Amerika/Edmontona" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "Amerika/Eirunepe" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "Amerika/Salvadora" #: timezones.h:185 msgid "America/Ensenada" msgstr "Amerika/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "Amerika/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "Amerika/Fortveina" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "Amerika/Gleisbeja" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "Amerika/Gothaba" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "Amerika/Gusbeja" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "Amerika/Grandturka" #: timezones.h:200 msgid "America/Grenada" msgstr "Amerika/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "Amerika/Gvadelupe" #: timezones.h:202 msgid "America/Guatemala" msgstr "Amerika/Gvatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "Amerika/Gvajakila" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "Amerika/Gvajana" #: timezones.h:207 msgid "America/Halifax" msgstr "Amerika/Halifaksa" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "Amerika/Havanna" #: timezones.h:211 msgid "America/Hermosillo" msgstr "Amerika/Hermosilo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "Amerika/Indiāna/Inianapolisa" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "Amerika/Indiāna/Knoksa" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "Amerika/Indiāna/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "Amerika/Indiāna/Sankt-Pēterburga" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "Amerika/Indiānapolisa" #: timezones.h:227 #, fuzzy msgid "America/Indiana/Tell_City" msgstr "Amerika/Indiāna/Vevaja" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "Amerika/Indiāna/Vevaja" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "Amerika/Indiāna/Vinsenesa" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 #, fuzzy msgid "America/Indiana/Winamac" msgstr "Amerika/Indiāna/Vinsenesa" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "Amerika/InuvÄ«ka" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "Amerika/Ikaluita" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "Amerika/Jamaika" #: timezones.h:246 msgid "America/Jujuy" msgstr "Amerika/Žužuja" #: timezones.h:247 msgid "America/Juneau" msgstr "Amerika/Džuno" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "Amerika/Kentuki/LÅ«isvilla" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 #, fuzzy msgid "Eastern Time - Kentucky - Louisville area" msgstr "Amerika/Kentuki/LÅ«isvilla" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "Amerika/Kentuki/Montičello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "Amerika/Knoks IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "Amerika/La Pasa" #: timezones.h:258 msgid "America/Lima" msgstr "Amerika/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "Amerika/Losandželosa" #. comment for time zone America/Los_Angeles #: timezones.h:261 #, fuzzy msgid "Pacific Time" msgstr "Klusais okeāns/Niue" #: timezones.h:262 msgid "America/Louisville" msgstr "Amerika/LÅ«isvilla" #: timezones.h:263 msgid "America/Maceio" msgstr "Amerika/Maseijo" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "Amerika/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "Amerika/Manausa" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 #, fuzzy msgid "America/Marigot" msgstr "Amerika/Maseijo" #: timezones.h:271 msgid "America/Martinique" msgstr "Amerika/Martinika" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "Amerika/Manausa" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "Amerika/Masatlana" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "Amerika/Mendosa" #: timezones.h:279 msgid "America/Menominee" msgstr "Amerika/Menomini" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "Amerika/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "Amerika/Mehiko" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "Amerika/Mikelona" #: timezones.h:289 msgid "America/Moncton" msgstr "Amerika/Monktona" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "Amerika/Montereja" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "Amerika/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "Amerika/Monreāla" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "Amerika/Montserrata" #: timezones.h:300 msgid "America/Nassau" msgstr "Amerika/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "Amerika/Ņujorka" #. comment for time zone America/New_York #: timezones.h:303 #, fuzzy msgid "Eastern Time" msgstr "ASV/Austrumi" #: timezones.h:304 msgid "America/Nipigon" msgstr "Amerika/Nipigona" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "Amerika/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "Amerika/Noronja" #. comment for time zone America/Noronha #: timezones.h:312 #, fuzzy msgid "Atlantic islands" msgstr "Atlantika/Kanāriju salas" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "Amerika/Ziemeļdakota/Centrs" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "Amerika/Ziemeļdakota/Ņusalema" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "Amerika/Managua" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "Amerika/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "Amerika/Pangnirtunga" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "Amerika/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "Amerika/FÄ«niksa" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "Amerika/Portoprensa" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "Amerika/Portakra" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "Amerika/Portofspeina" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "Amerika/Portoveļju" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "Amerika/Puertoriko" #: timezones.h:337 msgid "America/Rainy_River" msgstr "Amerika/Reinirivera" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "Amerika/Rankininleta" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "Amerika/Resifi" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "Amerika/Redžaina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 #, fuzzy msgid "America/Resolute" msgstr "Amerika/Belema" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "Amerika/Riubranku" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "Amerika/Rosario" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "Amerika/Santjago" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 #, fuzzy msgid "America/Santarem" msgstr "Amerika/Santjago" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "Amerika/Santjago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "Amerika/Santo-Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "Amerika/Sanpaulu" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "Amerika/Skorsbisunna" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "Amerika/Å iproka" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 #, fuzzy msgid "America/St_Barthelemy" msgstr "Amerika/Belema" #: timezones.h:376 msgid "America/St_Johns" msgstr "Amerika/Sentdžonsa" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "Amerika/Sentkitsa" #: timezones.h:380 msgid "America/St_Lucia" msgstr "Amerika/Sentlusija" #: timezones.h:381 msgid "America/St_Thomas" msgstr "Amerika/Senttomasa" #: timezones.h:382 msgid "America/St_Vincent" msgstr "Amerika/Sentvincenta" #: timezones.h:383 msgid "America/Swift_Current" msgstr "Amerika/Sviftkarenta" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "Amerika/Tegusigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "Amerika/Tule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "Amerika/Tanderbeja" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "Amerika/Tihuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "Amerika/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "Amerika/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "Amerika/Vankuvera" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "Amerika/Virdžīna" #: timezones.h:404 msgid "America/Whitehorse" msgstr "Amerika/Vaithorsa" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "Amerika/Vinnipega" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "Amerika/Jakutata" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "Amerika/Jellounaifa" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Antarktika/Keisija" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Antarktika/Deivisa" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Antarktika/Djumondurvilla" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "Antarktika/Makmerdo" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Antarktika/Mousona" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Antarktika/Makmerdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Antarktika/Palmera" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Antarktika/Rotera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antarktika/Dienvidpols" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Antarktika/Sjova" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Antarktika/Vostoka" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Arktika/Longjerbjena" #: timezones.h:450 msgid "Asia/Aden" msgstr "Āzija/Adena" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Āzija/Almati" #: timezones.h:454 msgid "Asia/Amman" msgstr "Āzija/Ammana" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Āzija/Anadira" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Āzija/Aktava" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Āzija/Aktjubinska" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Āzija/AÅ”gabata" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Āzija/AÅ”habada" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Āzija/Bagdāde" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Āzija/Bahreina" #: timezones.h:468 msgid "Asia/Baku" msgstr "Āzija/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Āzija/Bankoka" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Āzija/Beiruta" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Āzija/BiÅ”keka" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Āzija/Bruneja" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Āzija/Kalkuta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Āzija/Čoibalsana" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Āzija/Čuncina" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "Āzija/Čunkinga" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Āzija/Kolombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Āzija/Daka" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Āzija/Damaska" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Āzija/Dakka" #: timezones.h:485 msgid "Asia/Dili" msgstr "Āzija/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Āzija/Dubaja" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Āzija/DuÅ”anbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Āzija/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Āzija/Harbina" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 #, fuzzy msgid "Asia/Ho_Chi_Minh" msgstr "Āzija/Čuncina" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Āzija/Honkonga" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Āzija/Hovda" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Āzija/Irkutska" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Āzija/Stambula" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Āzija/Džakarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Āzija/Džajapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Āzija/Jeruzaleme" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Āzija/Kabula" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Āzija/Kamčatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Āzija/Karači" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Āzija/KaÅ”gara" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 #, fuzzy msgid "Asia/Kathmandu" msgstr "Āzija/Katmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Āzija/Katmandu" #: timezones.h:518 #, fuzzy msgid "Asia/Kolkata" msgstr "Āzija/Džakarta" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Āzija/Krasnojarska" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Āzija/Kuala Lumpura" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Āzija/Kučinga" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Āzija/Kuveita" #: timezones.h:529 msgid "Asia/Macao" msgstr "Āzija/Makao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Āzija/Makao" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Āzija/Magadāna" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Āzija/Makassara" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "Āzija/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Āzija/Maskata" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Āzija/Nikozija" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "Āzija/Irkutska" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "Āzija/Novosibirska" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Āzija/Novosibirska" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 #, fuzzy msgid "Moscow+03 - Novosibirsk" msgstr "Āzija/Novosibirska" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Āzija/Omska" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "Āzija/Uraļska" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Āzija/Pnompeņa" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Āzija/Pontianaka" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Āzija/Phenjana" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Āzija/Katara" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Āzija/Kizil-Orda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Āzija/Ranguna" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Āzija/Rijadha" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Āzija/Rijadha87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Āzija/Rijadha88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Āzija/Rijadha89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Āzija/Saigona" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Āzija/Sahalina" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Āzija/Samarkanda" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Āzija/Seula" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Āzija/Å anhaja" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "Āzija/SingapÅ«ra" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Āzija/Taipeja" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Āzija/TaÅ”kenta" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Āzija/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Āzija/Teherana" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Āzija/Telaviva" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Āzija/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Āzija/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Āzija/Tokija" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Āzija/Jung Pandanga" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Āzija/Ulan Batora" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Āzija/Ulan Batora" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Āzija/Urumči" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Āzija/Vjentjana" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Āzija/Vladivostoka" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Āzija/Jakutska" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Āzija/Jekaterinburga" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Āzija/Erevāna" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Atlantika/Azoru salas" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Atlantika/Bermudas" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Atlantika/Kanāriju salas" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Atlantika/Kape Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Atlantika/Fareru salas" #: timezones.h:616 #, fuzzy msgid "Atlantic/Faroe" msgstr "Atlantika/Fareru salas" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlantika/Janmaijena" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Atlantika/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Atlantika/Reikjavika" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Atlantika/Dienviddžordžija" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Atlantika/Folklendu salas" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Atlantika/Sv.Helēnas sala" #: timezones.h:625 msgid "Australia/ACT" msgstr "Austrālija/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Austrālija/Adelaida" #. comment for time zone Australia/Adelaide #: timezones.h:628 #, fuzzy msgid "South Australia" msgstr "Austrālija/ACT" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Austrālija/Brisbena" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Austrālija/Broken Hilla" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Austrālija/Kanberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "Austrālija/Kernsa" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Austrālija/Darvina" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 #, fuzzy msgid "Australia/Eucla" msgstr "Austrālija/Kvinslenda" #. comment for time zone Australia/Eucla #: timezones.h:644 #, fuzzy msgid "Western Australia - Eucla area" msgstr "Austrālija/Kvinslenda" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Austrālija/Hobarta" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "Austrālija/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Austrālija/Lindemana" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Austrālija/Lordhaua" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Austrālija/Melburna" #. comment for time zone Australia/Melbourne #: timezones.h:657 #, fuzzy msgid "Victoria" msgstr "Austrālija/Viktorija" #: timezones.h:658 msgid "Australia/North" msgstr "Austrālija/Ziemeļi" #: timezones.h:659 msgid "Australia/NSW" msgstr "Austrālija/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "Austrālija/Pērta" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Austrālija/Kvinslenda" #: timezones.h:664 msgid "Australia/South" msgstr "Austrālija/Dienvidi" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Austrālija/Sidneja" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Austrālija/Tasmānija" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Austrālija/Viktorija" #: timezones.h:670 msgid "Australia/West" msgstr "Austrālija/Rietumi" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Austrālija/Jankovina" #: timezones.h:672 msgid "Brazil/Acre" msgstr "BrazÄ«lija/Akri" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "BrazÄ«lija/Denoronja" #: timezones.h:674 msgid "Brazil/East" msgstr "BrazÄ«lija/Rietumi" #: timezones.h:675 msgid "Brazil/West" msgstr "BrazÄ«lija/Rietumi" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Kanāda/Atlantika" #: timezones.h:677 msgid "Canada/Central" msgstr "Kanāda/Centrs" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Kanāda/Austrumi" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Kanāda/Austrumu Saskačevana" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Kanāda/Kalni" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Kanāda/Ņufaundlenda" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Kanāda/Klusais okeāns" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Kanāda/Saskačevana" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Kanāda/Jukona" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Čīle/Kontinents" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Čīle/Lieldienu salas" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Kuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Ēģipte" #: timezones.h:692 msgid "Eire" msgstr "Eire" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Grinviča" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Eiropa/Amsterdama" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Eiropa/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Eiropa/Atēnas" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Eiropa/Belfāsta" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Eiropa/Belgrada" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Eiropa/BerlÄ«ne" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Eiropa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Eiropa/Brisele" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Eiropa/Buhareste" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Eiropa/BudapeÅ”ta" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Eiropa/KiÅ”iņeva" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Eiropa/Kopenhāgena" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Eiropa/Dublina" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Eiropa/Gibraltārs" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Eiropa/Gernsija" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Eiropa/Helsinki" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Eiropa/Menas sala" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Eiropa/Stambula" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Eiropa/Džersija" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Eiropa/Kaļiņingrada" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Eiropa/Kijeva" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Eiropa/Lisabona" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Eiropa/Ä»ubļana" #: timezones.h:759 msgid "Europe/London" msgstr "Eiropa/Londona" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Eiropa/Luksemburga" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Eiropa/Madride" #: timezones.h:764 msgid "Europe/Malta" msgstr "Eiropa/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Eiropa/Mariehamna" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Eiropa/Minska" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Eiropa/Monako" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Eiropa/Maskava" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Eiropa/Nikozija" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Eiropa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Eiropa/ParÄ«ze" #: timezones.h:774 #, fuzzy msgid "Europe/Podgorica" msgstr "Eiropa/Volgograda" #: timezones.h:775 msgid "Europe/Prague" msgstr "Eiropa/Prāga" #: timezones.h:776 msgid "Europe/Riga" msgstr "Eiropa/RÄ«ga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Eiropa/Roma" #: timezones.h:778 msgid "Europe/Samara" msgstr "Eiropa/Samāra" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Eiropa/San Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Eiropa/Sarajeva" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Eiropa/Simferopole" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Eiropa/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Eiropa/Sofija" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Eiropa/Stokholma" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Eiropa/Tallina" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Eiropa/Tarana" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Eiropa/Tiraspole" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Eiropa/Užgoroda" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Eiropa/Vaduca" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Eiropa/Vatikāns" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Eiropa/VÄ«ne" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Eiropa/Viļņa" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Eiropa/Volgograda" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Eiropa/VarÅ”ava" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Eiropa/Zagreba" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Eiropa/Zaporožje" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Eiropa/CÄ«rihe" #: timezones.h:808 msgid "Factory" msgstr "Factory" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Grinviča" #: timezones.h:816 msgid "Hongkong" msgstr "Honkonga" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Islande" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Indija/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Indija/Čagosa" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Indija/Ziemassvētku salas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Indija/Kokosu salas" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Indija/Komoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Indija/Kergelena" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Indija/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Indija/Maldivas" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Indija/MaurÄ«cija" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Indija/Maijotta" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Indija/Rejunjona" #: timezones.h:830 msgid "Iran" msgstr "Irāna" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "Izraēla" #: timezones.h:833 msgid "Jamaica" msgstr "Jamaika" #: timezones.h:834 msgid "Japan" msgstr "Japāna" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kvadžaleina" #: timezones.h:836 msgid "Libya" msgstr "LÄ«bija" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Meksika/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Meksika/BajaSura" #: timezones.h:840 msgid "Mexico/General" msgstr "Meksika/General" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Vidusāzija/Rijada87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Vidusāzija/Rijada88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Vidusāzija/Rijada89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Klusais okeāns/Apija" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Klusais okeāns/Oklenda" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Klusais okeāns/Čatema" #. comment for time zone Pacific/Chatham #: timezones.h:855 #, fuzzy msgid "Chatham Islands" msgstr "Čīle/Lieldienu salas" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "Klusais okeāns/Truka" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 #, fuzzy msgid "Pacific/Easter" msgstr "Klusais okeāns/Lieldienu salas" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Klusais okeāns/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Klusais okeāns/Enderberija" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Klusais okeāns/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Klusais okeāns/Fudži" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Klusais okeāns/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Klusais okeāns/Galapagu salas" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Klusais okeāns/Gambje" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Klusais okeāns/Guadalkanala" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Klusais okeāns/Guama" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Klusais okeāns/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 #, fuzzy msgid "Hawaii" msgstr "ASV/Havaja" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Klusais okeāns/Džonstona" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Klusais okeāns/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Klusais okeāns/Kusaie" #. comment for time zone Pacific/Kosrae #: timezones.h:888 #, fuzzy msgid "Kosrae" msgstr "Izraēla" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Klusais okeāns/Kvadžaleina" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Klusais okeāns/Madžuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Klusais okeāns/MarÄ·Ä«zu salas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Klusais okeāns/Midueja" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Klusais okeāns/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Klusais okeāns/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Klusais okeāns/Norfolka" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Klusais okeāns/Numea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Klusais okeāns/Pago Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Klusais okeāns/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Klusais okeāns/Pitkerna salas" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "Klusais okeāns/Ponpejas" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Klusais okeāns/Ponpejas" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Klusais okeāns/Port Morsbija" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Klusais okeāns/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Klusais okeāns/Saipana" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Klusais okeāns/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Klusais okeāns/Taiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Klusais okeāns/Tarava" #. comment for time zone Pacific/Tarawa #: timezones.h:921 #, fuzzy msgid "Gilbert Islands" msgstr "Čīle/Lieldienu salas" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Klusais okeāns/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Klusais okeāns/Truka" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Klusais okeāns/Veika" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Klusais okeāns/Vollisa" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Klusais okeāns/Japa" #: timezones.h:929 msgid "Poland" msgstr "Polija" #: timezones.h:930 msgid "Portugal" msgstr "Portugāle" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "SingapÅ«ra" #: timezones.h:937 msgid "Turkey" msgstr "Turcija" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "ASV/Aļaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "ASV/Aleutu salas" #: timezones.h:942 msgid "US/Arizona" msgstr "ASV/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "ASV/Centrs" #: timezones.h:944 msgid "US/Eastern" msgstr "ASV/Austrumi" #: timezones.h:945 msgid "US/East-Indiana" msgstr "ASV/Austrumindiāna" #: timezones.h:946 msgid "US/Hawaii" msgstr "ASV/Havaja" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "ASV/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "ASV/Mičigana" #: timezones.h:949 msgid "US/Mountain" msgstr "ASV/Kalni" #: timezones.h:950 msgid "US/Pacific" msgstr "ASV/Klusais okeāns" #: timezones.h:951 msgid "US/Samoa" msgstr "ASV/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" #~ msgid "US/Pacific-New" #~ msgstr "ASV/Klusais okeāns jaun." cinnamon-control-center-6.2.0/panels/datetime/po-timezones/mai.po0000664000175000017500000022202714632072346024032 0ustar fabiofabio# translation of timezones.master.po to Maithili # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Sangeeta Kumari , 2009. msgid "" msgstr "" "Project-Id-Version: timezones.master\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2009-02-24 21:51+0530\n" "Last-Translator: Sangeeta Kumari \n" "Language-Team: Maithili \n" "Language: mai\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n!=1);\n" "\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤…ą¤¬ą„€ą¤”ą„ą¤œą¤Ø" #: timezones.h:2 msgid "Africa/Accra" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤…ą¤•ą„ą¤°ą¤¾" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤ą¤¦ą¤æą¤ø_अबाबा" #: timezones.h:4 msgid "Africa/Algiers" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤…ą¤²ą¤œą¤æą¤Æą¤°ą„ą¤ø" #: timezones.h:5 msgid "Africa/Asmara" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/असमारा" #: timezones.h:6 msgid "Africa/Asmera" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤…ą¤øą¤®ą„‡ą¤°ą¤¾" #: timezones.h:7 msgid "Africa/Bamako" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤¬ą¤¾ą¤®ą¤¾ą¤•ą„‹" #: timezones.h:8 msgid "Africa/Bangui" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤¬ą¤‚ą¤—ą„ą¤ˆ" #: timezones.h:9 msgid "Africa/Banjul" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤¬ą¤‚ą¤œą¤²" #: timezones.h:10 msgid "Africa/Bissau" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤¬ą¤æą¤øą„‚" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤¬ą„ą¤²ą„‡ą¤Øą¤¤ą¤°ą„€" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤¬ą„ą¤°ą¤¾ą¤œą¤¾ą¤µą¤æą¤²" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤¬ą„ą¤œą¤®ą¤¬ą„ą¤°ą¤¾" #: timezones.h:14 msgid "Africa/Cairo" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤•ą„ˆą¤°ą„‹" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤•ą¤¾ą¤øą¤¾ą¤¬ą„ą¤²ą¤¾ą¤‚ą¤•ą¤¾" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤øą¤æą¤Æą„‚ą¤Ÿą¤¾" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤•ą„‹ą¤Øą¤¾ą¤•ą„ą¤°ą„€" #: timezones.h:20 msgid "Africa/Dakar" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/औकर" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/दार_ą¤ą¤ø_ą¤øą„ą¤²ą„‡ą¤®" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤”ą„ą¤œą¤æą¤¬ą„‹ą¤Ÿą„€" #: timezones.h:23 msgid "Africa/Douala" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤”ą„‚ą¤…ą¤²ą¤¾" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤ą¤²_ऐन" #: timezones.h:25 msgid "Africa/Freetown" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤«ą„ą¤°ą„€ą¤Ÿą¤¾ą¤‰ą¤Ø" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤—ą„ˆą¤¬ą„ą¤°ą„‹ą¤Ø" #: timezones.h:27 msgid "Africa/Harare" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤¹ą¤°ą¤æą¤…ą¤°ą¤°ą„‡" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤œą„‹ą¤¹ą¤¾ą¤‚ą¤Øą„ą¤øą¤¬ą¤°ą„ą¤—" #: timezones.h:29 msgid "Africa/Kampala" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤•ą¤®ą„ą¤Ŗą¤¾ą¤²ą¤¾" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤–ą¤¾ą¤°ą„ą¤¤ą„ą¤®" #: timezones.h:31 msgid "Africa/Kigali" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤•ą¤æą¤—ą¤¾ą¤²ą„€" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/किंसासा" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤²ą¤¾ą¤—ą„‹ą¤ø" #: timezones.h:36 msgid "Africa/Libreville" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/लिबरविल" #: timezones.h:37 msgid "Africa/Lome" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤²ą„‹ą¤®" #: timezones.h:38 msgid "Africa/Luanda" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤²ą„ą¤†ą¤‚ą¤”ą¤¾" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤²ą„ą¤¬ą„‚ą¤‚ą¤¬ą¤¶ą„€" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤²ą„ą¤øą¤¾ą¤•ą¤¾" #: timezones.h:43 msgid "Africa/Malabo" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤®ą¤²ą¤¾ą¤¬ą„‹" #: timezones.h:44 msgid "Africa/Maputo" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤®ą¤Ŗą„ą¤¤ą„‹" #: timezones.h:45 msgid "Africa/Maseru" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤®ą„ˆą¤øą„‡ą¤°ą„" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤®ą„‡ą¤¬ą¤¾ą¤¬ą¤¾ą¤Øą„‡" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤®ą„‹ą¤—ą¤¾ą¤”ą„€ą¤¶ą„‚" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤®ą„‹ą¤Øą¤°ą„‹ą¤µą¤æą¤Æą¤¾" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤Øą„ˆą¤°ą„‹ą¤¬ą„€" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤Øą¤œą„‡ą¤®ą„‡ą¤Øą¤¾" #: timezones.h:51 msgid "Africa/Niamey" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤Øą„‡ą¤®ą„ˆ" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤Øą¤¾ą¤•ą¤šą¤¾ą¤Ÿ" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤Šą¤—ą„‹ą¤¦ą„‚ą¤—ą„‹" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤Ŗą„‹ą¤°ą„ą¤Ÿą„‹_ą¤Øą„‹ą¤µą„‹" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤øą¤¾ą¤µą„‹ ą¤Ÿą„‹ą¤® " #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤¤ą¤æą¤‚ą¤¬ą¤•ą¤Ÿą„‚" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤¤ą„ą¤°ą¤æą¤Ŗą„‹ą¤²ą„€" #: timezones.h:58 msgid "Africa/Tunis" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/ą¤Ÿą„ą¤Æą„‚ą¤Øą¤æą¤ø" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "ą¤…ą¤«ą„ą¤°ą„€ą¤•ą¤¾/विंऔहाक" #: timezones.h:60 msgid "America/Adak" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/अदक" #. comment for time zone America/Adak #: timezones.h:62 #, fuzzy msgid "Aleutian Islands" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤•ą„ą¤µą„€ą¤‚ą¤øą¤²ą„ˆą¤‚ą¤”" #: timezones.h:63 msgid "America/Anchorage" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤ą¤‚ą¤•ą¤°ą„‡ą¤œ" #. comment for time zone America/Anchorage #: timezones.h:65 #, fuzzy msgid "Alaska Time" msgstr "US/ą¤…ą¤²ą¤¾ą¤øą„ą¤•ą¤¾" #: timezones.h:66 msgid "America/Anguilla" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤‚ą¤—ą„ą¤Æą„‚ą¤²ą¤¾" #: timezones.h:67 msgid "America/Antigua" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤ą¤‚ą¤Ÿą„€ą¤—ą„ą¤†" #: timezones.h:68 msgid "America/Araguaina" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą¤¾ą¤—ą„ą¤µą„‡ą¤Øą¤¾" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤¬ą„ą¤Æą„ą¤Øą¤øą¤†ą¤Æą¤°ą„ą¤ø" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤•ą„ˆą¤Ÿą¤¾ą¤®ą¤¾ą¤°ą¤•ą¤¾" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤•ą„‹ą¤®ą„‹ą¤”ą¤°ą¤æą¤µą¤¾ą¤”ą¤¾ą¤µą¤æą¤Æą¤¾" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤•ą¤¾ą¤°ą¤”ą„‹ą¤¬ą¤¾" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤œą„ą¤œą„ˆ" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤²ą¤¾ą¤°ą¤æą¤Æą„‹ą¤œą¤¾" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤®ą„‡ą¤Øą¤”ą„‹ą¤œą¤¾" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤°ą¤æą¤Æą„‹ ą¤—ą„ˆą¤²ą¤æą¤Æą¤ø" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 #, fuzzy msgid "America/Argentina/Salta" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/सान ą¤œą„ą¤†ą¤Ø" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/सान ą¤œą„ą¤†ą¤Ø" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 #, fuzzy msgid "America/Argentina/San_Luis" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/सान ą¤œą„ą¤†ą¤Ø" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤Ÿą¤•ą¤®ą„ˆą¤Ø" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤œą„‡ą¤‚ą¤Ÿą„€ą¤Øą¤¾/ą¤‰ą¤¶ą„ą¤†ą¤¹ą¤æą¤Æą¤¾" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤°ą„ą¤¬ą¤¾" #: timezones.h:109 msgid "America/Asuncion" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/असनशियन" #: timezones.h:110 msgid "America/Atikokan" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤ą¤Ÿą¤æą¤•ą„‹ą¤•ą¤¾ą¤Ø" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤…ą¤Ÿą¤•ą¤¾" #: timezones.h:114 msgid "America/Bahia" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤µą¤æą¤øą„ą¤¤ą¤¾" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤µą¤æą¤øą„ą¤¤ą¤¾" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą¤¾ą¤°ą¤¬ą¤¾ą¤”ą„‹ą¤ø" #: timezones.h:121 msgid "America/Belem" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„‡ą¤²ą„‡ą¤®" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„‡ą¤²ą¤æą¤œą¤¼" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„ą¤²ą¤¾ą¤‚ą¤•-ą¤øą„ˆą¤¬ą„ą¤²ą¤¾ą¤Ø" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„‹ą¤†_ą¤µą¤æą¤øą„ą¤¤ą¤¾" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„‹ą¤—ą„‹ą¤Ÿą¤¾" #: timezones.h:132 msgid "America/Boise" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„‹ą¤‡ą¤ø" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¬ą„ą¤Æą„ą¤Øą¤øą¤†ą¤Æą¤°ą„ą¤ø" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ˆą¤®ą„ą¤¬ą¤°ą„€ą¤œą¤¼_ą¤¬ą„‡" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą¤‚ą¤Ŗą„‹ ą¤—ą„ą¤°ą„ˆą¤‚ą¤”" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą¤¾ą¤Øą¤•ą„ą¤Ø" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ˆą¤°ą¤¾ą¤•ą¤ø" #: timezones.h:146 msgid "America/Catamarca" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ˆą¤Ÿą¤¾ą¤®ą¤¾ą¤°ą¤•ą¤¾" #: timezones.h:147 msgid "America/Cayenne" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ˆą¤Æą„‡ą¤Ø" #: timezones.h:148 msgid "America/Cayman" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ˆą¤®ą„‡ą¤Ø" #: timezones.h:149 msgid "America/Chicago" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¶ą¤æą¤•ą¤¾ą¤—ą„‹" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "US/ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ" #: timezones.h:152 msgid "America/Chihuahua" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤šą¤æą¤¹ą„‚ą¤†ą¤¹ą„ą¤†" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„‹ą¤°ą¤² ą¤¹ą¤¾ą¤°ą„ą¤¬ą¤°" #: timezones.h:156 msgid "America/Cordoba" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą¤¾ą¤°ą¤”ą„‹ą¤¬ą¤¾" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„‹ą¤øą„ą¤Ÿą¤¾_रिका" #: timezones.h:158 msgid "America/Cuiaba" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ą¤Æą„‚ą¤¬ą¤¾" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ą¤°ą¤¾ą¤•ą¤¾ą¤“" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤”ą„‡ą¤Øą¤®ą¤¾ą¤°ą„ą¤•ą¤¶ą¤¾ą¤Ø" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/औाशन" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/औाशन_ą¤•ą„ą¤°ą„€ą¤•" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤”ą„‡ą¤Øą¤µą¤°" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "US/ą¤®ą¤¾ą¤‰ą¤Øą„ą¤Ÿą„‡ą¤Ø" #: timezones.h:174 msgid "America/Detroit" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤”ą„‡ą¤Ÿą„ą¤°ą„‹ą¤‡ą¤Ÿ" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤”ą„‹ą¤®ą¤æą¤Øą¤æą¤•ą¤¾" #: timezones.h:178 msgid "America/Edmonton" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤ą¤”ą„ą¤®ą¤Øą¤Ÿą¤Ø" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Æą„ą¤°ą„€ą¤Øą¤ą¤Ŗ" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤ą¤²_ą¤øą„‡ą¤²ą„ą¤µą¤¾ą¤”ą„‹ą¤°" #: timezones.h:185 msgid "America/Ensenada" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤ą¤Øą¤øą„‡ą¤Øą„‡ą¤”ą¤¾" #: timezones.h:186 msgid "America/Fortaleza" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤«ą„‹ą¤°ą„ą¤Ÿą¤²ą„‡ą¤œą¤¾" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤«ą„‹ą¤°ą„ą¤Ÿ_ą¤µą„‡ą¤Ø" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„ą¤²ą„‡ą¤ø_ą¤¬ą„‡" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/गाऔऄब" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„‚ą¤ø_ą¤¬ą„‡" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„ą¤°ą„ˆą¤‚ą¤”_ą¤Ÿą¤°ą„ą¤•" #: timezones.h:200 msgid "America/Grenada" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„ą¤°ą„ˆą¤‚ą¤Øą„‡ą¤”ą¤¾" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„ą¤µą¤¾ą¤”ą„‡ą¤²ą„‹ą¤Ŗą„‡" #: timezones.h:202 msgid "America/Guatemala" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„ą¤µą¤¾ą¤Ÿą„‡ą¤®ą¤¾ą¤²ą¤¾" #: timezones.h:203 msgid "America/Guayaquil" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„ą¤†ą¤Æą¤¾ą¤•ą¤æą¤²" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤—ą„‡ą¤²ą¤Øą¤¾" #: timezones.h:207 msgid "America/Halifax" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¹ą„ˆą¤²ą„€ą¤«ą„‡ą¤•ą„ą¤ø" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/हवाना" #: timezones.h:211 msgid "America/Hermosillo" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¹ą¤°ą¤®ą„‹ą¤øą¤æą¤²ą„‹" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤‡ą¤‚ą¤”ą¤æą¤Æą¤¾ą¤Øą¤¾ą¤Ŗą„‹ą¤²ą¤æą¤ø" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤Øą¤¾ą¤•ą„ą¤ø" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤®ą„‡ą¤°ą„‡ą¤‚ą¤—ą„‹" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤Ŗą„€ą¤Ÿą¤°ą„ą¤øą¤µą¤°ą„ą¤—" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤‡ą¤‚ą¤”ą¤æą¤Æą¤¾ą¤Øą¤¾ą¤Ŗą„‹ą¤²ą¤æą¤ø" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤Ÿą„‡ą¤²_ą¤øą¤æą¤Ÿą„€" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤µą„‡ą¤µą„‡" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤µą¤æą¤‚ą¤øą¤æą¤Øą„‡ą¤ø" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/इंऔियाना/ą¤µą¤æą¤Øą¤¾ą¤®ą„‡ą¤•" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤‡ą¤Øą„ą¤µą¤æą¤•" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤‡ą¤•ą¤¾ą¤²ą„‚ą¤‡ą¤¤" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤œą¤®ą„ˆą¤•ą¤¾" #: timezones.h:246 msgid "America/Jujuy" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤œą„ą¤œą„ˆ" #: timezones.h:247 msgid "America/Juneau" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤œą„‚ą¤Øą„‹" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ˆą¤‚ą¤Ÿą¤•ą„€/ą¤²ą„ą¤ˆą¤µą¤æą¤²" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 #, fuzzy msgid "Eastern Time - Kentucky - Louisville area" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ˆą¤‚ą¤Ÿą¤•ą„€/ą¤²ą„ą¤ˆą¤µą¤æą¤²" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤•ą„ˆą¤‚ą¤Ÿą¤•ą„€/ą¤®ą„‹ą¤Øą¤Ÿą¤æą¤•ą¤²ą„‹" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Øą„‹ą¤•ą„ą¤øą¤‡ą¤Ø" #: timezones.h:257 msgid "America/La_Paz" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ला_पाज" #: timezones.h:258 msgid "America/Lima" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/लिमा" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/लास_ą¤ą¤‚ą¤œą¤æą¤²ą„ą¤ø" #. comment for time zone America/Los_Angeles #: timezones.h:261 #, fuzzy msgid "Pacific Time" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤Øą„€ą¤Æą„‚" #: timezones.h:262 msgid "America/Louisville" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤²ą„ą¤ˆą¤µą¤æą¤²" #: timezones.h:263 msgid "America/Maceio" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„ˆą¤øą¤æą¤Æą„‹" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‡ą¤Øą„‡ą¤—ą„ą¤†" #: timezones.h:267 msgid "America/Manaus" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„ˆą¤Øą¤¾ą¤ø" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 msgid "America/Marigot" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„ˆą¤°ą¤æą¤—ą„‹ą¤Ÿ" #: timezones.h:271 msgid "America/Martinique" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą¤¾ą¤°ą¤Ÿą¤æą¤Øą¤æą¤•" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„ˆą¤Øą¤¾ą¤ø" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‡ą¤œą„‡ą¤Ÿą¤²ą„‡ą¤Ø" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‡ą¤Øą¤”ą„‹ą¤œą¤¾" #: timezones.h:279 msgid "America/Menominee" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‡ą¤Øą„‹ą¤®ą¤æą¤Øą„€" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‡ą¤°ą„€ą¤”ą¤¾" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„ˆą¤•ą„ą¤øą¤æą¤•ą„‹_ą¤øą¤æą¤Ÿą„€" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą¤æą¤•ą„ą¤²ą¤¾ą¤Ø" #: timezones.h:289 msgid "America/Moncton" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‹ą¤‚ą¤•ą¤Ÿą¤Ø" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą¤¾ą¤‚ą¤Ÿą„‡ą¤°ą„€" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą¤¾ą¤‚ą¤Ÿą„‡ą¤µą¤æą¤”ą„€ą¤Æą„‹" #: timezones.h:296 msgid "America/Montreal" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą¤¾ą¤‚ą¤Ÿą„ą¤°ą¤æą¤Æą¤²" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą¤¾ą¤‚ą¤Ÿą„‡ą¤øą„‡ą¤°ą¤¾ą¤Ÿ" #: timezones.h:300 msgid "America/Nassau" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Øą¤øą„‹" #: timezones.h:301 msgid "America/New_York" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Øą„ą¤Æą„‚_ą¤Æą¤¾ą¤°ą„ą¤•" #. comment for time zone America/New_York #: timezones.h:303 #, fuzzy msgid "Eastern Time" msgstr "US/ą¤Ŗą„‚ą¤°ą„ą¤µą„€" #: timezones.h:304 msgid "America/Nipigon" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Øą¤æą¤Ŗą„€ą¤—ą¤Ø" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Øą„‹ą¤®" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Øą„‹ą¤°ą„‹ą¤‚ą¤¹ą¤¾" #. comment for time zone America/Noronha #: timezones.h:312 #, fuzzy msgid "Atlantic islands" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤•ą„ˆą¤Øą„‡ą¤°ą„€" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤‰ą¤¤ą„ą¤¤ą¤°_ą¤”ą¤•ą„‹ą¤Ÿą¤¾/ą¤®ą¤§ą„ą¤Æ" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤‰ą¤¤ą„ą¤¤ą¤°_ą¤”ą¤•ą„‹ą¤Ÿą¤¾/नव_ą¤øą¤²ą„‡ą¤®" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤®ą„‡ą¤Øą„‡ą¤—ą„ą¤†" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/पनामा" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ŗą„ˆą¤‚ą¤—ą¤Øą„€ą¤°ą¤Ÿą¤‚ą¤—" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ŗą¤¾ą¤°ą¤¾ą¤®ą¤¾ą¤°ą„€ą¤¬ą„‹" #: timezones.h:327 msgid "America/Phoenix" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤«ą¤æą¤Øą¤æą¤•ą„ą¤ø" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ŗą„‹ą¤°ą„ą¤Ÿ_ओ_ą¤Ŗą„ą¤°ą¤æą¤‚ą¤ø" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ŗą„‹ą¤°ą„ą¤Ÿ_ą¤ą¤•ą¤°" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ŗą„‹ą¤°ą„ą¤Ÿ_आफ_ą¤øą„ą¤Ŗą„‡ą¤Ø" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ŗą„‹ą¤°ą„ą¤Ÿą„‹_ą¤µą„‡ą¤²ą„‹" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ŗą„ą¤Æą„‚ą¤°ą¤æą¤Ÿą„‹_ą¤°ą¤æą¤•ą„‹" #: timezones.h:337 msgid "America/Rainy_River" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤°ą„ˆą¤Øą„€_रिवर" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤°ą„‡ą¤Øą¤•ą„€ą¤Ø_ą¤‡ą¤Øą¤²ą„‡ą¤Ÿ" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤°ą¤æą¤øą„€ą¤«" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤°ą„‡ą¤œą„€ą¤Øą¤¾" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 msgid "America/Resolute" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤°ą¤æą¤œą¤¾ą¤²ą„ą¤Æą„‚ą¤Ÿ" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤°ą¤¾ą¤Æą„‡_ą¤¬ą„ą¤°ą¤¾ą¤Øą¤•ą„‹" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤°ą„‹ą¤øą¤¾ą¤°ą¤æą¤Æą„‹" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿą„€ą¤Æą¤—ą„‹" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 #, fuzzy msgid "America/Santarem" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿą„€ą¤Æą¤—ą„‹" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿą„€ą¤Æą¤—ą„‹" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿą„‹_ą¤”ą„‹ą¤®ą¤æą¤‚ą¤—ą„‹" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą¤¾ą¤µą„‹_ą¤Ŗą„‹ą¤²ą„‹" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„ą¤•ą„‹ą¤°ą„ą¤øą¤¬ą¤¾ą¤Æą¤øą¤‚ą¤”" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/शिपराक" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿ_ą¤¬ą¤¾ą¤°ą„ą¤„ą„‡ą¤²ą„‡ą¤®ą„‡" #: timezones.h:376 msgid "America/St_Johns" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿ_जाँस" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿ_ą¤•ą¤æą¤Ÿą„ą¤ø" #: timezones.h:380 msgid "America/St_Lucia" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿ_ą¤²ą„ą¤øą¤æą¤Æą¤¾" #: timezones.h:381 msgid "America/St_Thomas" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿ_ऄामस" #: timezones.h:382 msgid "America/St_Vincent" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„‡ą¤‚ą¤Ÿ_ą¤µą¤æą¤‚ą¤øą„‡ą¤‚ą¤Ÿ" #: timezones.h:383 msgid "America/Swift_Current" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤øą„ą¤µą¤æą¤«ą„ą¤Ÿ_ą¤•ą¤°ą¤‚ą¤Ÿ" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¤ą„‡ą¤—ą„ą¤øą„€ą¤—ą¤¾ą¤²ą¤Ŗą¤¾" #: timezones.h:387 msgid "America/Thule" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤„ą„ą¤²ą„‡" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ऄंऔर_ą¤¬ą„‡" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤¤ą„€ą¤œą„ą¤Øą¤¾" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 msgid "America/Toronto" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ÿą„‹ą¤°ą„‹ą¤‚ą¤Ÿą„‹" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Ÿą„‹ą¤°ą„ą¤Ÿą„‹ą¤²ą¤¾" #: timezones.h:400 msgid "America/Vancouver" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤µą„‡ą¤‚ą¤•ą„‹ą¤µą„‡ą¤°" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤µą¤°ą„ą¤œą¤æą¤Ø" #: timezones.h:404 msgid "America/Whitehorse" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤µą„ą¤¹ą¤¾ą¤‡ą¤Ÿą¤¹ą¤¾ą¤°ą„ą¤ø" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤µą¤æą¤Øą„€ą¤Ŗą„‡ą¤—" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Æą¤•ą„ą¤Ÿą„‡ą¤Ÿ" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "ą¤…ą¤®ą„‡ą¤°ą¤æą¤•ą¤¾/ą¤Æą¤²ą„‹ą¤Øą¤¾ą¤‡ą¤«" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "ą¤…ą¤‚ą¤°ą„ą¤Ÿą¤¾ą¤Ÿą¤æą¤•ą¤¾/ą¤•ą„‡ą¤øą„‡" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "ą¤…ą¤‚ą¤°ą„ą¤Ÿą¤¾ą¤Ÿą¤æą¤•ą¤¾/ą¤”ą„‡ą¤µą¤æą¤ø" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "ą¤…ą¤‚ą¤°ą„ą¤Ÿą¤¾ą¤Ÿą¤æą¤•ą¤¾/ą¤”ą„‚ą¤®ą¤¾ą¤‚ą¤Ÿą¤”ą¤°ą¤µą¤æą¤²" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "ą¤…ą¤‚ą¤°ą„ą¤Ÿą¤¾ą¤Ÿą¤æą¤•ą¤¾/ą¤®ą„‡ą¤•ą¤®ą„ą¤°ą¤”ą„‹" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "ą¤…ą¤‚ą¤°ą„ą¤Ÿą¤¾ą¤Ÿą¤æą¤•ą¤¾/ą¤®ą„‹ą¤øą¤Ø" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "ą¤…ą¤‚ą¤°ą„ą¤Ÿą¤¾ą¤Ÿą¤æą¤•ą¤¾/ą¤®ą„‡ą¤•ą¤®ą„ą¤°ą¤”ą„‹" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "ą¤…ą¤‚ą¤°ą„ą¤Ÿą¤¾ą¤Ÿą¤æą¤•ą¤¾/पामर " #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "ą¤…ą¤‚ą¤°ą„ą¤Ÿą¤¾ą¤Ÿą¤æą¤•ą¤¾/ą¤°ą„‹ą¤„ą„‡ą¤°ą¤æą¤Æą¤¾" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "ą¤…ą¤‚ą¤°ą„ą¤Ÿą¤¾ą¤Ÿą¤æą¤•ą¤¾/साउऄ_ą¤Ŗą„‹ą¤²" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "ą¤…ą¤‚ą¤°ą„ą¤Ÿą¤¾ą¤Ÿą¤æą¤•ą¤¾/ą¤øą¤Æą„ą¤µą¤¾" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "ą¤…ą¤‚ą¤°ą„ą¤Ÿą¤¾ą¤Ÿą¤æą¤•ą¤¾/ą¤µą„‹ą¤øą„ą¤¤ą„‹ą¤•" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "ą¤†ą¤°ą„ą¤Ÿą¤æą¤•/ą¤²ą¤¾ą¤‚ą¤—ą¤ˆą¤Æą¤°ą¤¬ą¤¾ą¤Æą„‡ą¤Ø" #: timezones.h:450 msgid "Asia/Aden" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/अदन" #: timezones.h:451 msgid "Asia/Almaty" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤…ą¤²ą¤®ą¤Ÿą„€" #: timezones.h:454 msgid "Asia/Amman" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤…ą¤®ą„ą¤®ą¤¾ą¤Ø" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/अनाऔिर" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤ą¤•ą¤¤ą„‹" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤…ą¤•ą¤¤ą„‚ą¤¬" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤…ą¤¶ą¤—ą¤¾ą¤¬ą¤Ÿ" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤…ą¤¶ą„ą¤–ą¤¾ą¤¬ą¤¾ą¤¦" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/बगदाद" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¬ą¤¹ą¤°ą„€ą¤Ø" #: timezones.h:468 msgid "Asia/Baku" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¬ą¤¾ą¤•ą„‚" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¬ą„ˆą¤‚ą¤•ą¤¾ą¤•" #: timezones.h:470 msgid "Asia/Beirut" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¬ą„‡ą¤°ą„ą¤Ÿ" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¬ą¤æą¤¶ą¤•ą„‡ą¤•" #: timezones.h:472 msgid "Asia/Brunei" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¬ą„ą¤°ą„ą¤Øą„‡ą¤ˆ" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą„‹ą¤²ą¤•ą¤¾ą¤¤ą¤¾" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤›ą„‹ą¤ˆą¤¬ą¤²ą¤øą¤Ø" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤šą¤¾ą¤‚ą¤—ą¤•ą¤æą¤‚ą¤—" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤šą„ą¤‚ą¤—ą¤•ą¤æą¤‚ą¤—" #: timezones.h:481 msgid "Asia/Colombo" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą„‹ą¤²ą„‹ą¤‚ą¤¬ą„‹" #: timezones.h:482 msgid "Asia/Dacca" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤”ą¤•ą„ą¤•ą¤¾" #: timezones.h:483 msgid "Asia/Damascus" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤”ą¤®ą¤øą„ą¤•ą¤ø" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ढाका " #: timezones.h:485 msgid "Asia/Dili" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¦ą¤æą¤²ą„€" #: timezones.h:486 msgid "Asia/Dubai" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¦ą„ą¤¬ą¤ˆ" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¦ą„ą¤øą¤¾ą¤Øą¤¬ą„‡" #: timezones.h:488 msgid "Asia/Gaza" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤—ą¤¾ą¤œą¤¾" #: timezones.h:489 msgid "Asia/Harbin" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¹ą¤°ą¤¬ą„€ą¤Ø " #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 #, fuzzy msgid "Asia/Ho_Chi_Minh" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤šą¤¾ą¤‚ą¤—ą¤•ą¤æą¤‚ą¤—" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/हांग_कांग" #: timezones.h:494 msgid "Asia/Hovd" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/हावऔ" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤‡ą¤°ą¤•ą„ą¤Ÿą„ą¤øą„ą¤•" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤‡ą¤øą„ą¤¤ą¤¾ą¤‚ą¤¬ą„ą¤²" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤œą¤•ą¤¾ą¤°ą„ą¤¤ą¤¾" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤œą¤Æą¤Ŗą„ą¤°" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤œą„‡ą¤°ą„ą¤¶ą¤²ą¤®" #: timezones.h:508 msgid "Asia/Kabul" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą¤¾ą¤¬ą„‚ą¤²" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą¤®ą¤šą¤Ÿą¤•ą¤¾" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą¤°ą¤¾ą¤šą„€" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą„‡ą¤¶ą¤—ą¤°" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 #, fuzzy msgid "Asia/Kathmandu" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą¤¾ą¤ ą¤®ą¤¾ą¤‚ą¤”ą„‚" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą¤¾ą¤ ą¤®ą¤¾ą¤‚ą¤”ą„‚" #: timezones.h:518 #, fuzzy msgid "Asia/Kolkata" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤œą¤•ą¤¾ą¤°ą„ą¤¤ą¤¾" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą„ą¤°ą¤øą„ą¤Øą„‹ą¤Æą¤¾ą¤øą„ą¤•" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą„ą¤µą¤¾ą¤²ą¤¾ą¤®ą¤Ŗą„ą¤°" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą„ą¤šą¤æą¤‚ą¤—" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą„ą¤µą„ˆą¤¤" #: timezones.h:529 msgid "Asia/Macao" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/मकाओ" #: timezones.h:530 msgid "Asia/Macau" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/मकाउ" #: timezones.h:531 msgid "Asia/Magadan" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/मगाऔन" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤®ą¤•ą¤øą„ą¤øą¤°" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤®ą¤Øą„€ą¤²ą¤¾" #: timezones.h:538 msgid "Asia/Muscat" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤®ą¤øą„ą¤•ą¤Ÿ" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤Øą¤æą¤•ą„‹ą¤øą¤æą¤Æą¤¾" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤‡ą¤°ą¤•ą„ą¤Ÿą„ą¤øą„ą¤•" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤Øą„‹ą¤µą„‹ą¤øą¤æą¤¬ą„ą¤°ą¤æą¤øą„ą¤•" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤Øą„‹ą¤µą„‹ą¤øą¤æą¤¬ą„ą¤°ą¤æą¤øą„ą¤•" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 #, fuzzy msgid "Moscow+03 - Novosibirsk" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤Øą„‹ą¤µą„‹ą¤øą¤æą¤¬ą„ą¤°ą¤æą¤øą„ą¤•" #: timezones.h:546 msgid "Asia/Omsk" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤“ą¤®ą¤øą„ą¤•" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ओरल" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/नाम_ą¤Ŗą„‡ą¤Øą„ą¤¹" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤Ŗą„‹ą¤Øą¤Ÿą„ą¤Æą¤¾ą¤Øą¤•" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤Ŗą„ą¤Æą„‹ą¤‚ą¤—ą„‡ą¤²ą¤‚ą¤—" #: timezones.h:557 msgid "Asia/Qatar" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/कतर" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤•ą„ˆą¤œą„€ą¤²ą„‹ą¤°ą¤”ą¤¾" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤°ą¤‚ą¤—ą„‚ą¤Ø" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/रियाद" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/रियाद87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/रियाद88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/रियाद89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¶ą„ˆą¤—ą¤¾ą¤‚ą¤µ" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤øą¤¾ą¤–ą¤¾ą¤²ą„€ą¤Ø" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/समरकंऔ" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤øą¤æą¤Æą„‹ą¤²" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¶ą¤‚ą¤˜ą¤¾ą¤ˆ" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤øą¤æą¤‚ą¤—ą¤¾ą¤Ŗą„ą¤°" #: timezones.h:578 msgid "Asia/Taipei" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¤ą¤¾ą¤ˆą¤Ŗą„‡" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ताशकंद" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¤ą¤¬ą„€ą¤²ą¤æą¤øą„€" #: timezones.h:583 msgid "Asia/Tehran" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¤ą„‡ą¤¹ą¤°ą¤æą¤…ą¤°ą¤Ø" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¤ą„‡ą¤²_ą¤…ą¤µą„€ą¤µ" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤¤ą¤æą¤®ą¤¬ą„‚" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤„ą¤æą¤‚ą¤«ą„‚" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤Ÿą„‹ą¤•ą„ą¤Æą„‹" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤Šą¤œą„‚ą¤‚ą¤—_ą¤Ŗą¤Øą„ą¤¦ą¤¾ą¤‚ą¤—" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/उलानबतर" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/उलन_ą¤¬ą¤¤ą„‹ą¤°" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤‰ą¤°ą„ą¤®ą¤•ą„€" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤µą„‡ą¤Ÿą„€ą¤Æą„‡ą¤Ø" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤µą„ą¤²ą¤¾ą¤”ą„€ą¤µą¤¾ą¤øą„ą¤Ÿą¤•" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤Æą¤•ą„ą¤Ÿą„ą¤øą„ą¤•" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤Æą„‡ą¤•ą¤¾ą¤¤ą¤°ą„€ą¤Øą¤¬ą¤°ą„ą¤—" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "ą¤ą¤¶ą¤æą¤Æą¤¾/ą¤Æą„‡ą¤°ą¤¾ą¤µą¤æą¤Ø" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤…ą¤œą„‹ą¤°ą„ą¤ø" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤¬ą¤°ą¤®ą„ą¤”ą¤¾" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤•ą„ˆą¤Øą„‡ą¤°ą„€" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤•ą„ˆą¤Ŗ_ą¤µą¤°ą„ą¤¦" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤«ą„ˆą¤°ą„‹" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/फराओ" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/जन_मयन" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤®ą„‡ą¤”ą¤æą¤°ą¤¾" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤°ą¤æą¤•ą„€ą¤œą„ą¤µą¤æą¤•" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤¦ą¤•ą„ą¤·ą¤æą¤£_ą¤œą¤¾ą¤°ą„ą¤œą¤æą¤Æą¤¾" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤øą„ą¤Ÿą„‡ą¤Øą¤²ą„€" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•/ą¤øą„‡ą¤‚ą¤Ÿ_ą¤¹ą„‡ą¤²ą„‡ą¤Øą¤¾" #: timezones.h:625 msgid "Australia/ACT" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤ą¤øą„€ą¤Ÿą„€" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤ą¤”ą„€ą¤²ą„‡ą¤”" #. comment for time zone Australia/Adelaide #: timezones.h:628 #, fuzzy msgid "South Australia" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤ą¤øą„€ą¤Ÿą„€" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤¬ą„ą¤°ą¤æą¤øą¤¬ą„‡ą¤Ø" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤¬ą„ą¤°ą„‹ą¤•ą¤Ø_हिल" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤•ą„‡ą¤Øą¤¬ą„‡ą¤°ą¤¾" #: timezones.h:636 msgid "Australia/Currie" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤•ą„ą¤Æą„‚ą¤°ą„€" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/औारविन" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 msgid "Australia/Eucla" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤Æą„‚ą¤•ą„ą¤²ą¤¾" #. comment for time zone Australia/Eucla #: timezones.h:644 #, fuzzy msgid "Western Australia - Eucla area" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤Æą„‚ą¤•ą„ą¤²ą¤¾" #: timezones.h:645 msgid "Australia/Hobart" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤¹ą„‹ą¤¬ą¤°ą„ą¤Ÿ" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤ą¤²ą¤ą¤šą¤†ą¤ˆ" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤²ą¤æą¤‚ą¤”ą„‡ą¤®ą„‡ą¤Ø" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤²ą¤¾ą¤°ą„ą¤”_ą¤¹ą„‹ą¤µ" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤®ą„‡ą¤²ą¤¬ą¤¾ą¤°ą„ą¤Ø" #. comment for time zone Australia/Melbourne #: timezones.h:657 #, fuzzy msgid "Victoria" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤µą¤æą¤•ą„ą¤Ÿą„‹ą¤°ą¤æą¤Æą¤¾" #: timezones.h:658 msgid "Australia/North" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤‰ą¤¤ą„ą¤¤ą¤°" #: timezones.h:659 msgid "Australia/NSW" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤Ŗą¤°ą„ą¤„" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤•ą„ą¤µą„€ą¤‚ą¤øą¤²ą„ˆą¤‚ą¤”" #: timezones.h:664 msgid "Australia/South" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤¦ą¤•ą„ą¤·ą¤æą¤£" #: timezones.h:665 msgid "Australia/Sydney" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤øą¤æą¤”ą¤Øą„€" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤Ÿą¤øą„ą¤®ą„‡ą¤Øą¤æą¤Æą¤¾" #: timezones.h:669 msgid "Australia/Victoria" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤µą¤æą¤•ą„ą¤Ÿą„‹ą¤°ą¤æą¤Æą¤¾" #: timezones.h:670 msgid "Australia/West" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤Ŗą¤¶ą„ą¤šą¤æą¤®" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "ą¤†ą¤øą„ą¤Ÿą„ą¤°ą„‡ą¤²ą¤æą¤Æą¤¾/ą¤Æą¤¾ą¤Øą¤•ą„‹ą¤µą¤æą¤Øą¤¾" #: timezones.h:672 msgid "Brazil/Acre" msgstr "ą¤¬ą„ą¤°ą¤¾ą¤œą¤æą¤²/ą¤ą¤•ą„ą¤°ą„‡" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "ą¤¬ą„ą¤°ą¤¾ą¤œą¤æą¤²/ą¤”ą„‡ą¤Øą„‹ą¤°ą„‹ą¤Øą¤¾" #: timezones.h:674 msgid "Brazil/East" msgstr "ą¤¬ą„ą¤°ą¤¾ą¤œą¤æą¤²/ą¤Ŗą„‚ą¤°ą¤¬" #: timezones.h:675 msgid "Brazil/West" msgstr "ą¤¬ą„ą¤°ą¤¾ą¤œą¤æą¤²/ą¤Ŗą¤¶ą„ą¤šą¤æą¤®" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "ą¤•ą„‹ą¤Øą„‡ą¤”ą¤¾/ą¤…ą¤Ÿą¤²ą¤¾ą¤‚ą¤Ÿą¤æą¤•" #: timezones.h:677 msgid "Canada/Central" msgstr "ą¤•ą„‹ą¤Øą„‡ą¤”ą¤¾/ą¤®ą¤§ą„ą¤Æ" #: timezones.h:678 msgid "Canada/Eastern" msgstr "ą¤•ą„‹ą¤Øą„‡ą¤”ą¤¾/ą¤Ŗą„‚ą¤°ą„ą¤µą„€" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "ą¤•ą„‹ą¤Øą„‡ą¤”ą¤¾/ą¤Ŗą„‚ą¤°ą„ą¤µ-ą¤øą¤øą„ą¤•ą¤šą¤µą¤Ø" #: timezones.h:680 msgid "Canada/Mountain" msgstr "ą¤•ą„‹ą¤Øą„‡ą¤”ą¤¾/ą¤®ą¤¾ą¤‰ą¤Øą„ą¤Ÿą„‡ą¤Ø" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "ą¤•ą„‹ą¤Øą„‡ą¤”ą¤¾/ą¤Øą„ą¤Æą„‚ą¤«ą„‹ą¤Øą„ą¤”ą¤²ą„ˆą¤‚ą¤”" #: timezones.h:682 msgid "Canada/Pacific" msgstr "ą¤•ą„‹ą¤Øą„‡ą¤”ą¤¾/ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "ą¤•ą„‹ą¤Øą„‡ą¤”ą¤¾/ą¤øą¤øą„ą¤•ą¤šą¤µą¤Ø" #: timezones.h:684 msgid "Canada/Yukon" msgstr "ą¤•ą„‹ą¤Øą„‡ą¤”ą¤¾/ą¤Æą„‚ą¤•ą¤Ø" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "ą¤šą¤æą¤²ą„€/ą¤•ą¤¾ą¤Øą„ą¤Ÿą„€ą¤Øą„‡ą¤Øą„ą¤Ÿą¤²" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "ą¤šą¤æą¤²ą„€/ą¤•ą„‹ą¤Øą„ą¤Ÿą„€ą¤Øą„‡ą¤Øą„ą¤Ÿą¤²" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "ą¤•ą„ą¤Æą„‚ą¤¬ą¤¾" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "ą¤®ą¤æą¤¶ą„ą¤°" #: timezones.h:692 msgid "Eire" msgstr "आयर" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/ą¤—ą„ą¤°ą„€ą¤Øą¤µą¤æą¤š" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤²" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/ą¤œą¤¼ą„ą¤²ą„‚" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤ą¤®ą„ą¤øą„ą¤Ÿą¤°ą¤”ą„‡ą¤®" #: timezones.h:731 msgid "Europe/Andorra" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤ą¤‚ą¤”ą„‹ą¤°ą¤¾" #: timezones.h:732 msgid "Europe/Athens" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤ą¤„ą„‡ą¤‚ą¤ø" #: timezones.h:733 msgid "Europe/Belfast" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¬ą„‡ą¤²ą¤«ą¤¾ą¤øą„ą¤Ÿ" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¬ą„‡ą¤²ą¤—ą„ą¤°ą„‡ą¤”" #: timezones.h:735 msgid "Europe/Berlin" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¬ą¤°ą„ą¤²ą¤æą¤Ø" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¬ą„ą¤°ą¤Ÿą¤æą¤øą¤²ą„‡ą¤µą¤¾" #: timezones.h:737 msgid "Europe/Brussels" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¬ą„ą¤°ą¤øą„ą¤øą„‡ą¤²ą„ą¤ø" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¬ą„ą¤–ą¤¾ą¤°ą„‡ą¤øą„ą¤Ÿ" #: timezones.h:739 msgid "Europe/Budapest" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¬ą„ą¤”ą¤¾ą¤Ŗą„‡ą¤øą„ą¤Ÿ" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤šą„€ą¤øą„€ą¤Øą„‹" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤•ą„‹ą¤Ŗą¤Øą¤¹ą„‡ą¤—ą¤Ø" #: timezones.h:742 msgid "Europe/Dublin" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤”ą¤¬ą„ą¤²ą¤æą¤Ø" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤œą¤æą¤¬ą„ą¤°ą¤¾ą¤²ą„ą¤Ÿą¤°" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤—ą„ą¤Æą„‡ą¤°ą„ą¤Øą„ą¤øą„‡" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¹ą„‡ą¤²ą¤øą¤æą¤‚ą¤•ą„€" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/आइल_आफ_ą¤®ą„ˆą¤Ø" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤‡ą¤øą„ą¤¤ą¤¾ą¤‚ą¤¬ą„ą¤²" #: timezones.h:748 msgid "Europe/Jersey" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤œą¤°ą„ą¤øą„€" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤•ą¤¾ą¤²ą¤æą¤Øą„€ą¤—ą„ą¤°ą¤¾ą¤”" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤•ą„€ą¤µ" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/लिसबन" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤²ą¤œą„ą¤¬ą¤²ą¤œą¤ą¤Øą¤¾ą¤‡" #: timezones.h:759 msgid "Europe/London" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/लंदन" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤²ą„‡ą¤•ą„ą¤øą¤‚ą¤¬ą¤°ą„ą¤—" #: timezones.h:761 msgid "Europe/Madrid" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤®ą„‡ą¤”ą„ą¤°ą¤æą¤”" #: timezones.h:764 msgid "Europe/Malta" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤®ą¤¾ą¤²ą„ą¤Ÿą¤¾" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤®ą„‡ą¤°ą„€ą¤¹ą„ˆą¤®" #: timezones.h:766 msgid "Europe/Minsk" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/मिंसक" #: timezones.h:767 msgid "Europe/Monaco" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤®ą„‹ą¤Øą¤¾ą¤•ą„‹" #: timezones.h:768 msgid "Europe/Moscow" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤®ą¤¾ą¤øą„ą¤•ą„‹" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤Øą¤æą¤•ą„‹ą¤øą¤æą¤Æą¤¾" #: timezones.h:772 msgid "Europe/Oslo" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤“ą¤øą¤²ą„‹" #: timezones.h:773 msgid "Europe/Paris" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤Ŗą„‡ą¤°ą¤æą¤ø" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤Ŗą¤¾ą¤”ą¤—ą„‹ą¤°ą¤æą¤•ą¤¾" #: timezones.h:775 msgid "Europe/Prague" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤Ŗą„ą¤°ą¤¾ą¤—" #: timezones.h:776 msgid "Europe/Riga" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/रिगा" #: timezones.h:777 msgid "Europe/Rome" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤°ą„‹ą¤®" #: timezones.h:778 msgid "Europe/Samara" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/समारा" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤øą„‡ą¤Ø_ą¤®ą¤°ą„€ą¤Øą„‹" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤øą¤°ą¤¾ą¤œą„‡ą¤µą„‹" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤øą¤æą¤®ą¤«ą„‡ą¤°ą„‹ą¤Ŗą„‹ą¤²" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤øą„ą¤•ą¤Ŗą¤œą„‡" #: timezones.h:787 msgid "Europe/Sofia" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤øą„‹ą¤«ą¤æą¤Æą¤¾" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤øą„ą¤Ÿą¤¾ą¤•ą¤¹ą„‹ą¤®" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¤ą¤¾ą¤²ą„€ą¤Ø" #: timezones.h:790 msgid "Europe/Tirane" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¤ą¤æą¤°ą„‡ą¤Ø" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤¤ą¤æą¤°ą¤øą¤Ŗą„‹ą¤²" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤‰ą¤°ą„ą¤—ą„‹ą¤°ą¤¾ą¤”" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤µą¤¾ą¤”ą„‚ą¤œ" #: timezones.h:796 msgid "Europe/Vatican" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤µą„‡ą¤Ÿą„€ą¤•ą„‡ą¤Ø" #: timezones.h:797 msgid "Europe/Vienna" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤µą¤æą¤Æą„‡ą¤Øą¤¾" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/विलनियस" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤µą„‹ą¤²ą„ą¤—ą„‹ą¤—ą„ą¤°ą„ˆą¤”" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤µą¤¾ą¤°ą¤øą„‹" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤œą„‡ą¤—ą¤°ą„€ą¤¬" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤œą¤Ŗą„‹ą¤°ą„‹ą¤œą¤¾ą¤ˆ" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "ą¤Æą„‚ą¤°ą„‹ą¤Ŗ/ą¤œą„ą¤Æą„‚ą¤°ą¤æą¤–" #: timezones.h:808 msgid "Factory" msgstr "ą¤«ą„ˆą¤•ą„ą¤Ÿą¤°ą„€" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-आइर" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "ą¤—ą„ą¤°ą„€ą¤Øą¤µą¤æą¤š" #: timezones.h:816 msgid "Hongkong" msgstr "हांगकाग" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "ą¤†ą¤‡ą¤øą¤²ą„ˆą¤‚ą¤”" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "इंऔियन/ą¤…ą¤‚ą¤¤ą¤¾ą¤Øą¤¾ą¤Øą¤°ą¤æą¤µą„‹" #: timezones.h:820 msgid "Indian/Chagos" msgstr "इंऔियन/ą¤šą¤¾ą¤—ą„‹ą¤ø" #: timezones.h:821 msgid "Indian/Christmas" msgstr "इंऔियन/ą¤•ą„ą¤°ą¤æą¤øą¤®ą¤ø" #: timezones.h:822 msgid "Indian/Cocos" msgstr "इंऔियन/ą¤•ą„‹ą¤•ą„‹ą¤ø" #: timezones.h:823 msgid "Indian/Comoro" msgstr "इंऔियन/ą¤•ą„‹ą¤®ą„‹ą¤°ą„‹" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "इंऔियन/करगलन" #: timezones.h:825 msgid "Indian/Mahe" msgstr "इंऔियन/ą¤®ą¤¾ą¤¹ą„‡" #: timezones.h:826 msgid "Indian/Maldives" msgstr "इंऔियन/ą¤®ą¤¾ą¤²ą¤¦ą„€ą¤µ" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "इंऔियन/ą¤®ą¤¾ą¤°ą„€ą¤øą¤ø" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "इंऔियन/ą¤®ą¤¾ą¤Æą„‹ą¤Ÿ" #: timezones.h:829 msgid "Indian/Reunion" msgstr "इंऔियन/ą¤°ą¤æą¤Æą„‚ą¤Øą¤æą¤Æą¤Ø" #: timezones.h:830 msgid "Iran" msgstr "इरान" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "ą¤‡ą¤œą¤¼ą¤°ą¤¾ą¤‡ą¤²" #: timezones.h:833 msgid "Jamaica" msgstr "ą¤œą¤®ą¤¾ą¤ˆą¤•ą¤¾" #: timezones.h:834 msgid "Japan" msgstr "जापान" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "ą¤–ą„ą¤µą¤¾ą¤œą¤¾ą¤²ą„‡ą¤Ø" #: timezones.h:836 msgid "Libya" msgstr "ą¤²ą„€ą¤¬ą¤æą¤Æą¤¾" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "ą¤®ą„ˆą¤•ą„ą¤øą¤æą¤•ą„‹/ą¤¬ą¤œą¤Øą„‹ą¤°ą„ą¤Ÿ" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "ą¤®ą„ˆą¤•ą„ą¤øą¤æą¤•ą„‹/ą¤¬ą¤œą¤¾ą¤øą„ą¤°" #: timezones.h:840 msgid "Mexico/General" msgstr "ą¤®ą„ˆą¤•ą„ą¤øą¤æą¤•ą„‹/जनरल" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "ą¤–ą¤¾ą¤”ą¤¼ą„€/रियाद87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "ą¤–ą¤¾ą¤”ą¤¼ą„€/रियाद88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "ą¤–ą¤¾ą¤”ą¤¼ą„€/रियाद89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "ą¤Øą¤µą¤œą„‹" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤ą¤Ŗą¤æą¤Æą¤¾" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤†ą¤•ą¤²ą„ˆą¤‚ą¤”" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/चाऄम" #. comment for time zone Pacific/Chatham #: timezones.h:855 #, fuzzy msgid "Chatham Islands" msgstr "ą¤šą¤æą¤²ą„€/ą¤•ą„‹ą¤Øą„ą¤Ÿą„€ą¤Øą„‡ą¤Øą„ą¤Ÿą¤²" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤¤ą„ą¤°ą„ą¤•" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 msgid "Pacific/Easter" msgstr "ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤/ą¤‡ą¤øą„ą¤Ÿą¤°" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤‡ą¤«ą„‡ą¤Ÿ" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤‡ą¤Øą¤”ą¤°ą¤¬ą¤°ą„€" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤«ą¤•ą¤¾ą¤“ą¤«ą„‹" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤«ą¤æą¤œą„€" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤«ą„ą¤Øą¤¾ą¤«ą„ą¤Ÿą„€" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤—ą¤²ą¤Ŗą¤—ą„‹ą¤ø" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤—ą„‡ą¤®ą„ą¤¬ą¤æą¤Æą¤°" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤—ą„ą¤µą¤¾ą¤¦ą¤²ą¤•ą¤Øą¤²" #: timezones.h:876 msgid "Pacific/Guam" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤—ą„ą¤†ą¤®" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤¹ą„‹ą¤Øą„‹ą¤²ą„‚ą¤²ą„‚" #. comment for time zone Pacific/Honolulu #: timezones.h:879 #, fuzzy msgid "Hawaii" msgstr "US/हवाई" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤œą¤¾ą¤‚ą¤øą„ą¤Ÿą¤Ø" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤•ą¤æą¤°ą„ą¤¤ą„€ą¤®ą¤¤ą¤æ" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤•ą¤øą¤°ą„‡" #. comment for time zone Pacific/Kosrae #: timezones.h:888 #, fuzzy msgid "Kosrae" msgstr "ą¤‡ą¤œą¤¼ą¤°ą¤¾ą¤‡ą¤²" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤•ą„ą¤µą¤¾ą¤œą¤¾ą¤²ą„‡ą¤Ø" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤®ą¤œą„‚ą¤°ą„‹" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤®ą¤¾ą¤°ą„ą¤•ą¤øą¤¾ą¤ø" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤®ą¤æą¤”ą¤µą„‡" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤Øą„‹ą¤°ą„" #: timezones.h:902 msgid "Pacific/Niue" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤Øą„€ą¤Æą„‚" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤Øą¤¾ą¤°ą¤«ą„‹ą¤•" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/नामिया" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤Ŗą„ˆą¤—ą„‹_ą¤Ŗą„ˆą¤—ą„‹" #: timezones.h:906 msgid "Pacific/Palau" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/पलाउ" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤Ŗą¤æą¤Ÿą¤•ą„‡ą¤°ą„€ą¤Ø" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤Ŗą„‹ą¤Øą¤¾ą¤Ŗą„‡" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤Ŗą„‹ą¤Øą¤¾ą¤Ŗą„‡" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤Ŗą„‹ą¤°ą„ą¤Ÿ_ą¤®ą„‹ą¤°ą„ą¤øą¤¬ą„€" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤°ą¤°ą„‹ą¤¤ą¤‚ą¤—ą¤¾" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤øą„ˆą¤Ŗą„‡ą¤Ø" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤øą¤®ą„‹ą¤†" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤¤ą¤¾ą¤¹ą¤æą¤Ÿą„€" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/तारावा" #. comment for time zone Pacific/Tarawa #: timezones.h:921 #, fuzzy msgid "Gilbert Islands" msgstr "ą¤šą¤æą¤²ą„€/ą¤•ą„‹ą¤Øą„ą¤Ÿą„€ą¤Øą„‡ą¤Øą„ą¤Ÿą¤²" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤Ÿą¤‚ą¤—ą¤Ÿą¤Ŗą„‚" #: timezones.h:923 msgid "Pacific/Truk" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤¤ą„ą¤°ą„ą¤•" #: timezones.h:924 msgid "Pacific/Wake" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/ą¤µą„‡ą¤•" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/वालिस" #: timezones.h:928 msgid "Pacific/Yap" msgstr "ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•/याप" #: timezones.h:929 msgid "Poland" msgstr "ą¤Ŗą„‹ą¤²ą¤‚ą¤”" #: timezones.h:930 msgid "Portugal" msgstr "ą¤Ŗą„ą¤°ą„ą¤¤ą¤—ą¤¾ą¤²" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "ą¤øą¤æą¤‚ą¤—ą¤¾ą¤Ŗą„ą¤°" #: timezones.h:937 msgid "Turkey" msgstr "ą¤¤ą„ą¤°ą„ą¤•ą„€" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "ą¤Æą„‚ą¤Øą¤æą¤µą¤°ą„ą¤øą¤²" #: timezones.h:940 msgid "US/Alaska" msgstr "US/ą¤…ą¤²ą¤¾ą¤øą„ą¤•ą¤¾" #: timezones.h:941 msgid "US/Aleutian" msgstr "US/ą¤ą¤²ą„ą¤Æą„‚ą¤¶ą¤Ø" #: timezones.h:942 msgid "US/Arizona" msgstr "US/ą¤ą¤°ą„€ą¤œą„‹ą¤Øą¤¾" #: timezones.h:943 msgid "US/Central" msgstr "US/ą¤•ą„‡ą¤Øą„ą¤¦ą„ą¤°ą„€ą¤Æ" #: timezones.h:944 msgid "US/Eastern" msgstr "US/ą¤Ŗą„‚ą¤°ą„ą¤µą„€" #: timezones.h:945 msgid "US/East-Indiana" msgstr "US/ą¤Ŗą„‚ą¤°ą„ą¤µ-इंऔियाना" #: timezones.h:946 msgid "US/Hawaii" msgstr "US/हवाई" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "US/इंऔियाना-ą¤øą„ą¤Ÿą¤¾ą¤°ą„ą¤•" #: timezones.h:948 msgid "US/Michigan" msgstr "US/मिसिगन" #: timezones.h:949 msgid "US/Mountain" msgstr "US/ą¤®ą¤¾ą¤‰ą¤Øą„ą¤Ÿą„‡ą¤Ø" #: timezones.h:950 msgid "US/Pacific" msgstr "US/ą¤Ŗą„ˆą¤øą„€ą¤«ą¤æą¤•" #: timezones.h:951 msgid "US/Samoa" msgstr "US/ą¤øą¤®ą„‹ą¤µą¤¾" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "ą¤œą„ą¤²ą„" #~ msgid "US/Pacific-New" #~ msgstr "US/ą¤Ŗą„ą¤°ą¤¶ą¤¾ą¤‚ą¤¤-नव" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/it.po0000664000175000017500000020076114632072346023701 0ustar fabiofabio# translation of timezones.po to italian # Copyright (C) 2001 Red Hat, Inc. # # Bettina De Monti , 2000, 2004. # Francesco Tombolini , 2006, 2007, 2008, 2010. # Luigi Votta , 2010 # Silvio Pierro , 2010 msgid "" msgstr "" "MIME-Version: 1.0\n" "Project-Id-Version: 0\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2010-11-15 14:35+0100\n" "Last-Translator: luigi votta \n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "Africa/Abidjan" #: timezones.h:2 msgid "Africa/Accra" msgstr "Africa/Accra" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "Africa/Addis_Abeba" #: timezones.h:4 msgid "Africa/Algiers" msgstr "Africa/Algeri" #: timezones.h:5 msgid "Africa/Asmara" msgstr "Africa/Asmara" #: timezones.h:6 msgid "Africa/Asmera" msgstr "Africa/Asmara" #: timezones.h:7 msgid "Africa/Bamako" msgstr "Africa/Bamako" #: timezones.h:8 msgid "Africa/Bangui" msgstr "Africa/Bangui" #: timezones.h:9 msgid "Africa/Banjul" msgstr "Africa/Banjul" #: timezones.h:10 msgid "Africa/Bissau" msgstr "Africa/Bissau" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "Africa/Blantyre" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "Africa/Brazzaville" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "Africa/Bujumbura" #: timezones.h:14 msgid "Africa/Cairo" msgstr "Africa/Il_Cairo" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "Africa/Casablanca" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "Africa/Ceuta" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "Ceuta e Melilla" #: timezones.h:19 msgid "Africa/Conakry" msgstr "Africa/Conakry" #: timezones.h:20 msgid "Africa/Dakar" msgstr "Africa/Dakar" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "Africa/Dar_es_Salaam" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "Africa/Gibuti" #: timezones.h:23 msgid "Africa/Douala" msgstr "Africa/Douala" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "Africa/El_Aaiun" #: timezones.h:25 msgid "Africa/Freetown" msgstr "Africa/Freetown" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "Africa/Gaborone" #: timezones.h:27 msgid "Africa/Harare" msgstr "Africa/Harare" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "Africa/Johannesburg" #: timezones.h:29 msgid "Africa/Kampala" msgstr "Africa/Kampala" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "Africa/Khartoum" #: timezones.h:31 msgid "Africa/Kigali" msgstr "Africa/Kigali" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "Africa/Kinshasa" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "Area Occidentale della Rep. Dem. del Congo" #: timezones.h:35 msgid "Africa/Lagos" msgstr "Africa/Lagos" #: timezones.h:36 msgid "Africa/Libreville" msgstr "Africa/Libreville" #: timezones.h:37 msgid "Africa/Lome" msgstr "Africa/Lome" #: timezones.h:38 msgid "Africa/Luanda" msgstr "Africa/Luanda" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "Africa/Lubumbashi" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "Area Orientale della Rep. Dem. del Congo" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "Africa/Lusaka" #: timezones.h:43 msgid "Africa/Malabo" msgstr "Africa/Malabo" #: timezones.h:44 msgid "Africa/Maputo" msgstr "Africa/Maputo" #: timezones.h:45 msgid "Africa/Maseru" msgstr "Africa/Maseru" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "Africa/Mbabane" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "Africa/Mogadiscio" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "Africa/Monrovia" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "Africa/Nairobi" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "Africa/NDjamena" #: timezones.h:51 msgid "Africa/Niamey" msgstr "Africa/Niamey" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "Africa/Nouakchott" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "Africa/Ouagadougou" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "Africa/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "Africa/Sao_Tome" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "Africa/Timbuktu" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "Africa/Tripoli" #: timezones.h:58 msgid "Africa/Tunis" msgstr "Africa/Tunisi" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "Africa/Windhoek" #: timezones.h:60 msgid "America/Adak" msgstr "America/Adak" #. comment for time zone America/Adak #: timezones.h:62 msgid "Aleutian Islands" msgstr "Isole Aleutine" #: timezones.h:63 msgid "America/Anchorage" msgstr "America/Anchorage" #. comment for time zone America/Anchorage #: timezones.h:65 msgid "Alaska Time" msgstr "Alaska Time" #: timezones.h:66 msgid "America/Anguilla" msgstr "America/Anguilla" #: timezones.h:67 msgid "America/Antigua" msgstr "America/Antigua" #: timezones.h:68 msgid "America/Araguaina" msgstr "America/Araguaina" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "Tocantins" #: timezones.h:71 msgid "America/Argentina/Buenos_Aires" msgstr "America/Argentina/Buenos_Aires" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "Buenos Aires (BA, CF)" #: timezones.h:74 msgid "America/Argentina/Catamarca" msgstr "America/Argentina/Catamarca" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "Catamarca (CT), Chubut (CH)" #: timezones.h:77 msgid "America/Argentina/ComodRivadavia" msgstr "America/Argentina/Comodoro_Rivadavia" #: timezones.h:78 msgid "America/Argentina/Cordoba" msgstr "America/Argentina/Cordoba" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "(CB, CC, CN, ER, FM, MN, SE, SF)" #: timezones.h:81 msgid "America/Argentina/Jujuy" msgstr "America/Argentina/Jujuy" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "Jujuy (JY)" #: timezones.h:84 msgid "America/Argentina/La_Rioja" msgstr "America/Argentina/La_Rioja" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "La Rioja (LR)" #: timezones.h:87 msgid "America/Argentina/Mendoza" msgstr "America/Argentina/Mendoza" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "Mendoza (MZ)" #: timezones.h:90 msgid "America/Argentina/Rio_Gallegos" msgstr "America/Argentina/Rio_Gallegos" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "Santa Cruz (SC)" #: timezones.h:93 msgid "America/Argentina/Salta" msgstr "America/Argentina/Salta" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "(SA, LP, NQ, RN)" #: timezones.h:96 msgid "America/Argentina/San_Juan" msgstr "America/Argentina/San_Juan" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "San Juan (SJ)" #: timezones.h:99 msgid "America/Argentina/San_Luis" msgstr "America/Argentina/San_Luis" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "San Luis (SL)" #: timezones.h:102 msgid "America/Argentina/Tucuman" msgstr "America/Argentina/Tucuman" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "Tucuman (TM)" #: timezones.h:105 msgid "America/Argentina/Ushuaia" msgstr "America/Argentina/Ushuaia" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "Terra del Fuoco (TF)" #: timezones.h:108 msgid "America/Aruba" msgstr "America/Aruba" #: timezones.h:109 msgid "America/Asuncion" msgstr "America/Asuncion" #: timezones.h:110 msgid "America/Atikokan" msgstr "America/Atikokan" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "Eastern Time - Atikokan, Ontario e Southampton I, Nunavut" #: timezones.h:113 msgid "America/Atka" msgstr "America/Atka" #: timezones.h:114 msgid "America/Bahia" msgstr "America/Bahia" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "Bahia" #: timezones.h:117 msgid "America/Bahia_Banderas" msgstr "America/Bahia_Banderas" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "Mexican Central Time - Bahia de Banderas" #: timezones.h:120 msgid "America/Barbados" msgstr "America/Barbados" #: timezones.h:121 msgid "America/Belem" msgstr "America/Belem" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "Amapa, ParĆ  Orientale" #: timezones.h:124 msgid "America/Belize" msgstr "America/Belize" #: timezones.h:125 msgid "America/Blanc-Sablon" msgstr "America/Blanc-Sablon" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "Atlantic Time - Quebec - Lower North Shore" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "America/Boa_Vista" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "Roraima" #: timezones.h:131 msgid "America/Bogota" msgstr "America/Bogota" #: timezones.h:132 msgid "America/Boise" msgstr "America/Boise" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "Mountain Time - Area Meridionale dell'Idaho ed area Orientale dell'Oregon" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "America/Buenos_Aires" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "America/Cambridge_Bay" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "Mountain Time - Area Occidentale del Nunavut" #: timezones.h:139 msgid "America/Campo_Grande" msgstr "America/Campo_Grande" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "Mato Grosso do Sul" #: timezones.h:142 msgid "America/Cancun" msgstr "America/Cancun" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "Central Time - Quintana Roo" #: timezones.h:145 msgid "America/Caracas" msgstr "America/Caracas" #: timezones.h:146 msgid "America/Catamarca" msgstr "America/Catamarca" #: timezones.h:147 msgid "America/Cayenne" msgstr "America/Caienna" #: timezones.h:148 msgid "America/Cayman" msgstr "America/Cayman" #: timezones.h:149 msgid "America/Chicago" msgstr "America/Chicago" #. comment for time zone America/Chicago #: timezones.h:151 msgid "Central Time" msgstr "Central Time" #: timezones.h:152 msgid "America/Chihuahua" msgstr "America/Chihuahua" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "Mexican Mountain Time - Chihuahua lontano dalla frontiera del Nord America" #: timezones.h:155 msgid "America/Coral_Harbour" msgstr "America/Coral_Harbour" #: timezones.h:156 msgid "America/Cordoba" msgstr "America/Cordoba" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "America/Costa_Rica" #: timezones.h:158 msgid "America/Cuiaba" msgstr "America/Cuiaba" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "Mato Grosso" #: timezones.h:161 msgid "America/Curacao" msgstr "America/Curacao" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "America/Danmarkshavn" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "Costa orientale e settentrionale di Scoresbysund" #: timezones.h:165 msgid "America/Dawson" msgstr "America/Dawson" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "Pacific Time - Yukon settentrionale" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "America/Dawson_Creek" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "Mountain Time - Dawson Creek e Fort Saint John, British Columbia" #: timezones.h:171 msgid "America/Denver" msgstr "America/Denver" #. comment for time zone America/Denver #: timezones.h:173 msgid "Mountain Time" msgstr "Mountain Time" #: timezones.h:174 msgid "America/Detroit" msgstr "America/Detroit" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "Eastern Time - Michigan" #: timezones.h:177 msgid "America/Dominica" msgstr "America/Dominica" #: timezones.h:178 msgid "America/Edmonton" msgstr "America/Edmonton" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "Mountain Time - Alberta, British Columbia orientale e Saskatchewan occidentale" #: timezones.h:181 msgid "America/Eirunepe" msgstr "America/EirunepĆ©" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "Area Occidentale delle Amazonas" #: timezones.h:184 msgid "America/El_Salvador" msgstr "America/El_Salvador" #: timezones.h:185 msgid "America/Ensenada" msgstr "America/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "America/Fortaleza" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "Area Nord-Orientale del Brasile (MA, PI, CE, RN, PB)" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "America/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "America/Glace_Bay" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "Atlantic Time - Nuova Scozia - luoghi che non osservano il DST 1966-1971" #: timezones.h:193 msgid "America/Godthab" msgstr "America/Godthab" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 #: timezones.h:364 #: timezones.h:453 #: timezones.h:591 #: timezones.h:754 #: timezones.h:852 #: timezones.h:894 msgid "most locations" msgstr "principali localitĆ " #: timezones.h:196 msgid "America/Goose_Bay" msgstr "America/Goose_Bay" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "Atlantic Time - Labrador" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "America/Grand_Turk" #: timezones.h:200 msgid "America/Grenada" msgstr "America/Grenada" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "America/Guadalupa" #: timezones.h:202 msgid "America/Guatemala" msgstr "America/Guatemala" #: timezones.h:203 msgid "America/Guayaquil" msgstr "America/Guayaquil" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 #: timezones.h:757 #: timezones.h:763 msgid "mainland" msgstr "continentale" #: timezones.h:206 msgid "America/Guyana" msgstr "America/Guyana" #: timezones.h:207 msgid "America/Halifax" msgstr "America/Halifax" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "Atlantic Time - Nuova Scozia, PEI" #: timezones.h:210 msgid "America/Havana" msgstr "America/Havana" #: timezones.h:211 msgid "America/Hermosillo" msgstr "America/Hermosillo" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "Mountain Time - Sonora" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "America/Indiana/Indianapolis" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "Eastern Time - Indiana" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "America/Indiana/Knox" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "Central Time - Indiana - Contea di Starke" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "America/Indiana/Marengo" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "Eastern Time - Indiana - Contea di Crawford" #: timezones.h:223 msgid "America/Indiana/Petersburg" msgstr "America/Indiana/Petersburg" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "Eastern Time - Indiana - Contea di Pike" #: timezones.h:226 msgid "America/Indianapolis" msgstr "America/Indianapolis" #: timezones.h:227 msgid "America/Indiana/Tell_City" msgstr "America/Indiana/Tell_City" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "Central Time - Indiana - Contea di Perry" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "America/Indiana/Vevay" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "Eastern Time - Indiana - Contea di Switzerland" #: timezones.h:233 msgid "America/Indiana/Vincennes" msgstr "America/Indiana/Vincennes" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "Eastern Time - Indiana - Contee di Daviess, Dubois, Knox e Martin" #: timezones.h:236 msgid "America/Indiana/Winamac" msgstr "America/Indiana/Winamac" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "Eastern Time - Indiana - Contea di Pulaski" #: timezones.h:239 msgid "America/Inuvik" msgstr "America/Inuvik" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "Mountain Time - Territori Ovest Nord-Ovest" #: timezones.h:242 msgid "America/Iqaluit" msgstr "America/Iqaluit" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "Eastern Time - Area Orientale del Nunavut" #: timezones.h:245 msgid "America/Jamaica" msgstr "America/Giamaica" #: timezones.h:246 msgid "America/Jujuy" msgstr "America/Jujuy" #: timezones.h:247 msgid "America/Juneau" msgstr "America/Juneau" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "Alaska Time - Alaska Panhandle" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "America/Kentucky/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 msgid "Eastern Time - Kentucky - Louisville area" msgstr "Eastern Time - Kentucky - Zona di Louisville" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "America/Kentucky/Monticello" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "Eastern Time - Kentucky - Contea di Wayne" #: timezones.h:256 msgid "America/Knox_IN" msgstr "America/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "America/La_Paz" #: timezones.h:258 msgid "America/Lima" msgstr "America/Lima" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "America/Los_Angeles" #. comment for time zone America/Los_Angeles #: timezones.h:261 msgid "Pacific Time" msgstr "Pacific Time" #: timezones.h:262 msgid "America/Louisville" msgstr "America/Louisville" #: timezones.h:263 msgid "America/Maceio" msgstr "America/Maceio" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "Alagoas, Sergipe" #: timezones.h:266 msgid "America/Managua" msgstr "America/Managua" #: timezones.h:267 msgid "America/Manaus" msgstr "America/Manaus" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "Area Orientale delle Amazonas" #: timezones.h:270 msgid "America/Marigot" msgstr "America/Marigot" #: timezones.h:271 msgid "America/Martinique" msgstr "America/Martinica" #: timezones.h:272 msgid "America/Matamoros" msgstr "America/Matamoros" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas vicino il confine con gli USA" #: timezones.h:275 msgid "America/Mazatlan" msgstr "America/Mazatlan" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "Mountain Time - Bassa California del Sud, Nayarit, Sinaloa" #: timezones.h:278 msgid "America/Mendoza" msgstr "America/Mendoza" #: timezones.h:279 msgid "America/Menominee" msgstr "America/Menominee" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "Central Time - Michigan - Contee di Dickinson, Gogebic, Iron e Menominee" #: timezones.h:282 msgid "America/Merida" msgstr "America/Merida" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "Central Time - Campeche, Yucatan" #: timezones.h:285 msgid "America/Mexico_City" msgstr "America/Mexico_City" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "Central Time" #: timezones.h:288 msgid "America/Miquelon" msgstr "America/Miquelon" #: timezones.h:289 msgid "America/Moncton" msgstr "America/Moncton" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "Atlantic Time - Nuovo Brunswick" #: timezones.h:292 msgid "America/Monterrey" msgstr "America/Monterrey" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from US border" msgstr "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas lontano dalla frontiera del Nord America" #: timezones.h:295 msgid "America/Montevideo" msgstr "America/Montevideo" #: timezones.h:296 msgid "America/Montreal" msgstr "America/Montreal" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "Eastern Time - Quebec" #: timezones.h:299 msgid "America/Montserrat" msgstr "America/Montserrat" #: timezones.h:300 msgid "America/Nassau" msgstr "America/Nassau" #: timezones.h:301 msgid "America/New_York" msgstr "America/New_York" #. comment for time zone America/New_York #: timezones.h:303 msgid "Eastern Time" msgstr "Eastern Time" #: timezones.h:304 msgid "America/Nipigon" msgstr "America/Nipigon" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "Eastern Time - Ontario e Quebec - luoghi che non osservano DST 1967-1973" #: timezones.h:307 msgid "America/Nome" msgstr "America/Nome" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "Alaska Time - Area Occidentale dell'Alaska" #: timezones.h:310 msgid "America/Noronha" msgstr "America/Noronha" #. comment for time zone America/Noronha #: timezones.h:312 msgid "Atlantic islands" msgstr "Isole dell'Atlantico" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "America/Dakota_del_Nord/Centro" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "Central Time - Dakota del Nord - Contea di Oliver" #: timezones.h:316 msgid "America/North_Dakota/New_Salem" msgstr "America/Dakota_del_Nord/New_Salem" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "Central Time - Dakota del Nord - Contea di Morton" #: timezones.h:319 msgid "America/Ojinaga" msgstr "America/Ojinaga" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "US Mountain Time - Chihuahua vicino la frontiera Nord Americana" #: timezones.h:322 msgid "America/Panama" msgstr "America/Panama" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "America/Pangnirtung" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "Eastern Time - Pangnirtung, Nunavut" #: timezones.h:326 msgid "America/Paramaribo" msgstr "America/Paramaribo" #: timezones.h:327 msgid "America/Phoenix" msgstr "America/Phoenix" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "Mountain Time - Arizona" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "America/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "America/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "America/Port_of_Spain" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "America/Porto_Velho" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "Rondonia" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "America/Porto_Rico" #: timezones.h:337 msgid "America/Rainy_River" msgstr "America/Rainy_River" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "Central Time - Rainy River e Fort Frances, Ontario" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "America/Rankin_Inlet" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "Central Time - Nunavut Centrale" #: timezones.h:343 msgid "America/Recife" msgstr "America/Recife" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "Pernambuco" #: timezones.h:346 msgid "America/Regina" msgstr "America/Regina" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "Central Time - Saskatchewan" #: timezones.h:349 msgid "America/Resolute" msgstr "America/Resolute" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "Eastern Time - Resolute, Nunavut" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "America/Rio_Branco" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "Acre" #: timezones.h:355 msgid "America/Rosario" msgstr "America/Rosario" #: timezones.h:356 msgid "America/Santa_Isabel" msgstr "America/Santa_Isabel" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "Mexican Pacific Time - Baja California lontano dalla frontiera Nord Americana" #: timezones.h:359 msgid "America/Santarem" msgstr "America/Santarem" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "ParĆ  Occidentale" #: timezones.h:362 msgid "America/Santiago" msgstr "America/Santiago" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "America/Santo_Domingo" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "America/San_Paolo" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "Area Meridionale e Sud-Orientale del Brasile (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "America/Scoresbysund" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "Scoresbysund / Ittoqqortoormiit" #: timezones.h:372 msgid "America/Shiprock" msgstr "America/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "Mountain Time - Navajo" #: timezones.h:375 msgid "America/St_Barthelemy" msgstr "America/Saint_BarthĆ©lemy" #: timezones.h:376 msgid "America/St_Johns" msgstr "America/Saint_Johns" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "Ora di Terranova, comprendente l'area Sud-Orientale del Labrador" #: timezones.h:379 msgid "America/St_Kitts" msgstr "America/Saint_Kitts" #: timezones.h:380 msgid "America/St_Lucia" msgstr "America/Saint_Lucia" #: timezones.h:381 msgid "America/St_Thomas" msgstr "America/Saint_Thomas" #: timezones.h:382 msgid "America/St_Vincent" msgstr "America/Saint_Vincent" #: timezones.h:383 msgid "America/Swift_Current" msgstr "America/Swift_Current" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "Central Time - Saskatchewan - Area medio-occidentale" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "America/Tegucigalpa" #: timezones.h:387 msgid "America/Thule" msgstr "America/Thule" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "Thule / Pituffik" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "America/Thunder_Bay" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "Eastern Time - Thunder Bay, Ontario" #: timezones.h:393 msgid "America/Tijuana" msgstr "America/Tijuana" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "US Pacific Time - Baja California vicino la frontiera Nord Americana" #: timezones.h:396 msgid "America/Toronto" msgstr "America/Toronto" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "Eastern Time - Ontario" #: timezones.h:399 msgid "America/Tortola" msgstr "America/Tortola" #: timezones.h:400 msgid "America/Vancouver" msgstr "America/Vancouver" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "Pacific Time - Area Occidentale della Columbia Britannica" #: timezones.h:403 msgid "America/Virgin" msgstr "America/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "America/Whitehorse" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "Pacific Time - Area Meridionale dello Yukon" #: timezones.h:407 msgid "America/Winnipeg" msgstr "America/Winnipeg" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "Central Time - Manitoba e Ontario Occidentale" #: timezones.h:410 msgid "America/Yakutat" msgstr "America/Yakutat" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "Alaska Time - Sull'Alexander Arcipelago" #: timezones.h:413 msgid "America/Yellowknife" msgstr "America/Yellowknife" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "Mountain Time - Territori centrali del Nord-Ovest" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "Antartide/Casey" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "Stazione Casey, Penisola di Bailey" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "Antartide/Davis" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "Stazione Davis, Vestfold Hills" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "Antartide/DumontDUrville" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "Stazione Dumont-d'Urville, Terra Adelia" #: timezones.h:425 msgid "Antarctica/Macquarie" msgstr "Antarctica/Macquarie" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "Stazione isola di Macquarie, Isola di Macquarie" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "Antartide/Mawson" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "Stazione Mawson, Baia di Holme" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "Antartide/McMurdo" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "Stazione McMurdo, Isola Ross" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "Antartide/Palmer" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "Stazione Palmer, Isola Anvers" #: timezones.h:437 msgid "Antarctica/Rothera" msgstr "Antartide/Rothera" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "Stazione Rothera, Isola Adelaide" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antartide/Polo_Sud" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "Stazione Amundsen-Scott, Polo Sud" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "Antartide/Syowa" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "Stazione Syowa, Area Orientale dell'isola di Ongul" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "Antartide/Vostok" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "Stazione Vostok, Polo Sud Magnetico" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Artico/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "Asia/Aden" #: timezones.h:451 msgid "Asia/Almaty" msgstr "Asia/Almaty" #: timezones.h:454 msgid "Asia/Amman" msgstr "Asia/Amman" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "Asia/Anadyr" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "Mosca+8 - Mare di Bering" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "Asia/Aqtau" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "Asia/Aqtobe" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "Aqtobe (Aktobe)" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "Asia/Ashgabat" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "Asia/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "Asia/Baghdad" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "Asia/Bahrain" #: timezones.h:468 msgid "Asia/Baku" msgstr "Asia/Baku" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "Asia/Bangkok" #: timezones.h:470 msgid "Asia/Beirut" msgstr "Asia/Beirut" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "Asia/Bishkek" #: timezones.h:472 msgid "Asia/Brunei" msgstr "Asia/Brunei" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "Asia/Calcutta" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "Asia/Choibalsan" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "Dornod, Sukhbaatar" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "Asia/Chongqing" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "Cina centrale - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." #: timezones.h:480 msgid "Asia/Chungking" msgstr "Asia/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "Asia/Colombo" #: timezones.h:482 msgid "Asia/Dacca" msgstr "Asia/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "Asia/Damasco" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "Asia/Dacca" #: timezones.h:485 msgid "Asia/Dili" msgstr "Asia/Dili" #: timezones.h:486 msgid "Asia/Dubai" msgstr "Asia/Dubai" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "Asia/Dushanbe" #: timezones.h:488 msgid "Asia/Gaza" msgstr "Asia/Gaza" #: timezones.h:489 msgid "Asia/Harbin" msgstr "Asia/Harbin" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "Heilongjiang (tranne Mohe), Jilin" #: timezones.h:492 msgid "Asia/Ho_Chi_Minh" msgstr "Asia/Ho_Chi_Minh" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "Asia/Hong_Kong" #: timezones.h:494 msgid "Asia/Hovd" msgstr "Asia/Hovd" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "Asia/Irkutsk" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "Mosca+05 - Lago Baikal" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Asia/Istanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "Asia/Giacarta" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "Giava e Sumatra" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "Asia/Jayapura" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "Irian Jaya e Le Molucche" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "Asia/Gerusalemme" #: timezones.h:508 msgid "Asia/Kabul" msgstr "Asia/Kabul" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "Asia/Kamchatka" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "Mosca+08 - Kamchatka" #: timezones.h:512 msgid "Asia/Karachi" msgstr "Asia/Karachi" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "Asia/Kashgar" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "Tibet Occidentale e lo Xinjiang" #: timezones.h:516 msgid "Asia/Kathmandu" msgstr "Asia/Kathmandu" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "Asia/Katmandu" #: timezones.h:518 msgid "Asia/Kolkata" msgstr "Asia/Kolkata" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "Asia/Krasnoyarsk" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "Mosca+04 - Fiume Enisej" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "Asia/Kuala_Lumpur" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "Penisola della Malesia" #: timezones.h:525 msgid "Asia/Kuching" msgstr "Asia/Kuching" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "Sabah e Sarawak" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "Asia/Kuwait" #: timezones.h:529 msgid "Asia/Macao" msgstr "Asia/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "Asia/Macao" #: timezones.h:531 msgid "Asia/Magadan" msgstr "Asia/Magadan" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "Mosca+08 - Magadan" #: timezones.h:534 msgid "Asia/Makassar" msgstr "Asia/Makassar" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "Area Orientale e Meridionale del Borneo, Area Occidentale di Timor" #: timezones.h:537 msgid "Asia/Manila" msgstr "Asia/Manila" #: timezones.h:538 msgid "Asia/Muscat" msgstr "Asia/Muscat" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "Asia/Nicosia" #: timezones.h:540 msgid "Asia/Novokuznetsk" msgstr "Asia/Novokuznetsk" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 msgid "Moscow+03 - Novokuznetsk" msgstr "Mosca+03 - Novokuznetsk" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "Asia/Novosibirsk" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 msgid "Moscow+03 - Novosibirsk" msgstr "Mosca+03 - Novosibirsk" #: timezones.h:546 msgid "Asia/Omsk" msgstr "Asia/Omsk" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "Mosca+03 - Area Occidentale della Siberia" #: timezones.h:549 msgid "Asia/Oral" msgstr "Asia/Oral" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "Area Occidentale del Kazakistan" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "Asia/Phnom_Penh" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "Asia/Pontianak" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "Area del Borneo Centrale ed Occidentale" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "Asia/Pyongyang" #: timezones.h:557 msgid "Asia/Qatar" msgstr "Asia/Qatar" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "Asia/Qyzylorda" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "Qyzylorda (Kyzylorda, Kzyl-Orda)" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "Asia/Rangoon" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "Asia/Riyadh" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "Asia/Riyadh87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "Asia/Riyadh88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "Asia/Riyadh89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "Asia/Saigon" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "Asia/Sakhalin" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "Mosca +07 - Ostrov Sahalin" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "Asia/Samarcanda" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "Area Occidentale dell'Uzbekistan" #: timezones.h:573 msgid "Asia/Seoul" msgstr "Asia/Seoul" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "Asia/Shanghai" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "Area dell Cina Orientale - Beijing, Guangdong, Shanghai, ecc." #: timezones.h:577 msgid "Asia/Singapore" msgstr "Asia/Singapore" #: timezones.h:578 msgid "Asia/Taipei" msgstr "Asia/Taipei" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "Asia/Tashkent" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "Area Orientale dell'Uzbekistan" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "Asia/Tbilisi" #: timezones.h:583 msgid "Asia/Tehran" msgstr "Asia/Tehran" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "Asia/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "Asia/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "Asia/Thimphu" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "Asia/Tokyo" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "Asia/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "Asia/Ulaanbaatar" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "Asia/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "Asia/Urumqi" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "Gran parte del Tibet e dello Xinjiang" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "Asia/Vientiane" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "Asia/Vladivostok" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "Mosca+07 - Fiume Amur" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "Asia/Yakutsk" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "Mosca+06 - Fiume Lena" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "Asia/Ekaterinburg" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "Mosca+02 - Urali" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "Asia/Erewan" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "Oceano Atlantico/Azzorre" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "Azzore" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "Oceano Atlantico/Bermuda" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "Oceano Atlantico/Canarie" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "Isole Canarie" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "Oceano Atlantico/Capo_Verde" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "Oceano Atlantico/Faer_Oer" #: timezones.h:616 msgid "Atlantic/Faroe" msgstr "Atlantic/Faer_Oer" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Oceano Atlantico/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "Oceano Atlantico/Madeira" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "Isole Madeira" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "Oceano Atlantico/Reykjavik" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "Oceano Atlantico/Georgia_del_Sud " #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "Oceano Atlantico/Stanley" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "Oceano Atlantico/Sant_Elena" #: timezones.h:625 msgid "Australia/ACT" msgstr "Australia/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "Australia/Adelaide" #. comment for time zone Australia/Adelaide #: timezones.h:628 msgid "South Australia" msgstr "Sud Australia" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "Australia/Brisbane" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "Queensland" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "Australia/Broken_Hill" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "Nuovo Galles del Sud - Yancowinna" #: timezones.h:635 msgid "Australia/Canberra" msgstr "Australia/Canberra" #: timezones.h:636 msgid "Australia/Currie" msgstr "Australia/Currie" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "Tasmania - Isola del Re" #: timezones.h:639 msgid "Australia/Darwin" msgstr "Australia/Darwin" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "Territori del nord" #: timezones.h:642 msgid "Australia/Eucla" msgstr "Australia/Eucla" #. comment for time zone Australia/Eucla #: timezones.h:644 msgid "Western Australia - Eucla area" msgstr "Area dell'Australia Occidentale - Zona di Eucla" #: timezones.h:645 msgid "Australia/Hobart" msgstr "Australia/Hobart" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "Tasmania" #: timezones.h:648 msgid "Australia/LHI" msgstr "Australia/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "Australia/Lindeman" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "Queensland - Isole Holiday" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "Australia/Lord_Howe" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "Isola di Lord Howe" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "Australia/Melbourne" #. comment for time zone Australia/Melbourne #: timezones.h:657 msgid "Victoria" msgstr "Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "Australia/Nord" #: timezones.h:659 msgid "Australia/NSW" msgstr "Australia/NSO" #: timezones.h:660 msgid "Australia/Perth" msgstr "Australia/Perth" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "Area dell'Australia Occidentale" #: timezones.h:663 msgid "Australia/Queensland" msgstr "Australia/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "Australia/Sud" #: timezones.h:665 msgid "Australia/Sydney" msgstr "Australia/Sydney" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "Nuovo Galles del Sud" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "Australia/Tasmania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "Australia/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "Australia/Ovest" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "Australia/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "Brasile/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "Brasile/De_Noronha" #: timezones.h:674 msgid "Brazil/East" msgstr "Brasile/Est" #: timezones.h:675 msgid "Brazil/West" msgstr "Brasile/Ovest" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "Canada/Atlantico" #: timezones.h:677 msgid "Canada/Central" msgstr "Canada/Centrale" #: timezones.h:678 msgid "Canada/Eastern" msgstr "Canada/Orientale" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "Canada/Saskatchewan-Orientale" #: timezones.h:680 msgid "Canada/Mountain" msgstr "Canada/Montagne-Rocciose" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "Canada/Terranova" #: timezones.h:682 msgid "Canada/Pacific" msgstr "Canada/Pacifico" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "Canada/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "Canada/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Cile/Continentale" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Cile/Isola_di_Pasqua" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "Cuba" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "Egitto" #: timezones.h:692 msgid "Eire" msgstr "Eire" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "Etc/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "Etc/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "Etc/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "Etc/GMT+0" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "Etc/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "Etc/GMT+1" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "Etc/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "Etc/GMT+10" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "Etc/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "Etc/GMT+11" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "Etc/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "Etc/GMT+12" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "Etc/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "Etc/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "Etc/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "Etc/GMT+2" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "Etc/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "Etc/GMT+3" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "Etc/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "Etc/GMT+4" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "Etc/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "Etc/GMT+5" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "Etc/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "Etc/GMT+6" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "Etc/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "Etc/GMT+7" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "Etc/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "Etc/GMT+8" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "Etc/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "Etc/GMT+9" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "Etc/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "Etc/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universale" #: timezones.h:728 msgid "Etc/UTC" msgstr "Etc/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "Etc/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "Europa/Amsterdam" #: timezones.h:731 msgid "Europe/Andorra" msgstr "Europa/Andorra" #: timezones.h:732 msgid "Europe/Athens" msgstr "Europa/Atene" #: timezones.h:733 msgid "Europe/Belfast" msgstr "Europa/Belfast" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "Europa/Belgrado" #: timezones.h:735 msgid "Europe/Berlin" msgstr "Europa/Berlino" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "Europa/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "Europa/Bruxelles" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "Europa/Bucarest" #: timezones.h:739 msgid "Europe/Budapest" msgstr "Europa/Budapest" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "Europa/Chisinau" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "Europa/Copenaghen" #: timezones.h:742 msgid "Europe/Dublin" msgstr "Europa/Dublino" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "Europa/Gibilterra" #: timezones.h:744 msgid "Europe/Guernsey" msgstr "Europa/Guernsey" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "Europa/Helsinki" #: timezones.h:746 msgid "Europe/Isle_of_Man" msgstr "Europa/Isola_di_Man" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "Europa/Istanbul" #: timezones.h:748 msgid "Europe/Jersey" msgstr "Europa/Jersey" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "Europa/Kaliningrad" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "Mosca-01 - Kalingrado" #: timezones.h:752 msgid "Europe/Kiev" msgstr "Europa/Kiev" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "Europa/Lisbona" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "Europa/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "Europa/Londra" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "Europa/Lussemburgo" #: timezones.h:761 msgid "Europe/Madrid" msgstr "Europa/Madrid" #: timezones.h:764 msgid "Europe/Malta" msgstr "Europa/Malta" #: timezones.h:765 msgid "Europe/Mariehamn" msgstr "Europa/Mariehamn" #: timezones.h:766 msgid "Europe/Minsk" msgstr "Europa/Minsk" #: timezones.h:767 msgid "Europe/Monaco" msgstr "Europa/Monaco" #: timezones.h:768 msgid "Europe/Moscow" msgstr "Europa/Mosca" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "Mosca+00 - Area della Russia Occidentale" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "Europa/Nicosia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "Europa/Oslo" #: timezones.h:773 msgid "Europe/Paris" msgstr "Europa/Parigi" #: timezones.h:774 msgid "Europe/Podgorica" msgstr "Europa/Podgorica" #: timezones.h:775 msgid "Europe/Prague" msgstr "Europa/Praga" #: timezones.h:776 msgid "Europe/Riga" msgstr "Europa/Riga" #: timezones.h:777 msgid "Europe/Rome" msgstr "Europa/Roma" #: timezones.h:778 msgid "Europe/Samara" msgstr "Europa/Samara" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "Mosca - Samara, Udmurtia" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "Europa/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "Europa/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "Europa/Simferopol" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "Crimea centrale" #: timezones.h:786 msgid "Europe/Skopje" msgstr "Europa/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "Europa/Sofia" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "Europa/Stoccolma" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "Europa/Tallinn" #: timezones.h:790 msgid "Europe/Tirane" msgstr "Europa/Tirana" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "Europa/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "Europa/Uzhgorod" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "Ruthenia" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "Europa/Vaduz" #: timezones.h:796 msgid "Europe/Vatican" msgstr "Europa/Vaticano" #: timezones.h:797 msgid "Europe/Vienna" msgstr "Europa/Vienna" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "Europa/Vilnius" #: timezones.h:799 msgid "Europe/Volgograd" msgstr "Europa/Volgograd" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "Mosca+00 - Mar Caspio" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "Europa/Varsavia" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "Europa/Zagabria" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "Europa/Zaporozhye" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "Zaporozh'ye, Lugansk orientale / Zaporizhia, Luhansk orientale" #: timezones.h:807 msgid "Europe/Zurich" msgstr "Europa/Zurigo" #: timezones.h:808 msgid "Factory" msgstr "Factory" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "Hongkong" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "Islanda" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "Oceano Indiano/Antananarivo" #: timezones.h:820 msgid "Indian/Chagos" msgstr "Oceano Indiano/Chagos" #: timezones.h:821 msgid "Indian/Christmas" msgstr "Oceano Indiano/Christmas" #: timezones.h:822 msgid "Indian/Cocos" msgstr "Oceano Indiano/Cocos" #: timezones.h:823 msgid "Indian/Comoro" msgstr "Oceano Indiano/Comoro" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "Oceano Indiano/Kerguelen" #: timezones.h:825 msgid "Indian/Mahe" msgstr "Oceano Indiano/Mahe" #: timezones.h:826 msgid "Indian/Maldives" msgstr "Oceano Indiano/Maldive" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "Oceano Indiano/Mauritius" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "Oceano Indiano/Mayotte" #: timezones.h:829 msgid "Indian/Reunion" msgstr "Oceano Indiano/Reunion" #: timezones.h:830 msgid "Iran" msgstr "Iran" #: timezones.h:831 msgid "iso3166.tab" msgstr "iso3166.tab" #: timezones.h:832 msgid "Israel" msgstr "Israele" #: timezones.h:833 msgid "Jamaica" msgstr "Giamaica" #: timezones.h:834 msgid "Japan" msgstr "Giappone" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 #: timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "Libia" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Messico/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Messico/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Messico/General" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Mideast/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Mideast/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Mideast/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "Oceano Pacifico/Apia" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "Oceano Pacifico/Auckland" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "Oceano Pacifico/Chatham" #. comment for time zone Pacific/Chatham #: timezones.h:855 msgid "Chatham Islands" msgstr "Isole Chatham" #: timezones.h:856 msgid "Pacific/Chuuk" msgstr "Oceano Pacifico/Chuuk" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "Chuuk (Truk) e Yap" #: timezones.h:859 msgid "Pacific/Easter" msgstr "Pacifico/Orientale" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "Isola di Pasqua e Sala y Gomez" #: timezones.h:862 msgid "Pacific/Efate" msgstr "Oceano Pacifico/Efate" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "Oceano Pacifico/Enderbury" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "Isole Phoenix" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "Oceano Pacifico/Fakaofo" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "Oceano Pacifico/Fiji" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "Oceano Pacifico/Funafuti" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "Oceano Pacifico/Galapagos" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "Isole Galapagos" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "Oceano Pacifico/Gambier" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "Isole Gambier" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "Oceano Pacifico/Guadalcanal" #: timezones.h:876 msgid "Pacific/Guam" msgstr "Oceano Pacifico/Guam" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "Oceano Pacifico/Honolulu" #. comment for time zone Pacific/Honolulu #: timezones.h:879 msgid "Hawaii" msgstr "Hawaii" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "Oceano Pacifico/Johnston" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "Atollo di Johnston" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "Oceano Pacifico/Kiritimati" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "Sporadi equatoriali" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "Oceano Pacifico/Kosrae" #. comment for time zone Pacific/Kosrae #: timezones.h:888 msgid "Kosrae" msgstr "Kosrae" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "Oceano Pacifico/Kwajalein" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "Oceano Pacifico/Majuro" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "Oceano Pacifico/Marquesas" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "Isole Marquesas" #: timezones.h:898 msgid "Pacific/Midway" msgstr "Oceano Pacifico/Midway" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "Isole Midway" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "Oceano Pacifico/Nauru" #: timezones.h:902 msgid "Pacific/Niue" msgstr "Oceano Pacifico/Niue" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "Oceano Pacifico/Norfolk" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "Oceano Pacifico/Noumea" #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "Oceano Pacifico/Pago_Pago" #: timezones.h:906 msgid "Pacific/Palau" msgstr "Oceano Pacifico/Palau" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "Oceano Pacifico/Pitcairn" #: timezones.h:908 msgid "Pacific/Pohnpei" msgstr "Oceano Pacifico/Pohnpei" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "Pohnpei (Ponape)" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "Oceano Pacifico/Ponape" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "Oceano Pacifico/Port_Moresby" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "Oceano Pacifico/Rarotonga" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "Oceano Pacifico/Saipan" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "Oceano Pacifico/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "Oceano Pacifico/Tahiti" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "Isole della SocietĆ " #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "Oceano Pacifico/Tarawa" #. comment for time zone Pacific/Tarawa #: timezones.h:921 msgid "Gilbert Islands" msgstr "Isole Gilert" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "Oceano Pacifico/Tongatapu" #: timezones.h:923 msgid "Pacific/Truk" msgstr "Oceano Pacifico/Truk" #: timezones.h:924 msgid "Pacific/Wake" msgstr "Oceano Pacifico/Wake" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "Wake Island" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "Oceano Pacifico/Wallis" #: timezones.h:928 msgid "Pacific/Yap" msgstr "Oceano Pacifico/Yap" #: timezones.h:929 msgid "Poland" msgstr "Polonia" #: timezones.h:930 msgid "Portugal" msgstr "Portogallo" #: timezones.h:931 msgid "posixrules" msgstr "posixrules" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "Singapore" #: timezones.h:937 msgid "Turkey" msgstr "Turchia" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universale" #: timezones.h:940 msgid "US/Alaska" msgstr "US/Alaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "US/Aleutine" #: timezones.h:942 msgid "US/Arizona" msgstr "US/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "US/Centrale" #: timezones.h:944 msgid "US/Eastern" msgstr "US/Orientale" #: timezones.h:945 msgid "US/East-Indiana" msgstr "US/Indiana-Orientale" #: timezones.h:946 msgid "US/Hawaii" msgstr "US/Hawaii" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "US/Indiana-Contea_di_Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "US/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "US/Montagne_Rocciose" #: timezones.h:950 msgid "US/Pacific" msgstr "US/Pacifico" #: timezones.h:951 msgid "US/Samoa" msgstr "US/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" cinnamon-control-center-6.2.0/panels/datetime/po-timezones/am.po0000664000175000017500000020211414632072346023654 0ustar fabiofabio# Translations into the Amharic Language. # Copyright (C) 2004 Free Software Foundation, Inc. # This file is distributed under the same license as the timezones package. # Ge'ez Frontier Foundation , 2005. # # msgid "" msgstr "" "Project-Id-Version: timezones VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-08-16 14:02+0200\n" "PO-Revision-Date: 2005-01-24 10:03+EDT\n" "Last-Translator: Ge'ez Frontier Foundation \n" "Language-Team: Amharic \n" "Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #: timezones.h:1 msgid "Africa/Abidjan" msgstr "įŠ įįˆŖįŠ«/įŠ į‰¢įŒƒįŠ•" #: timezones.h:2 msgid "Africa/Accra" msgstr "įŠ įįˆŖįŠ«/አክራ" #: timezones.h:3 msgid "Africa/Addis_Ababa" msgstr "įŠ įįˆŖįŠ«/įŠ į‹²įˆµ įŠ į‰ į‰£" #: timezones.h:4 msgid "Africa/Algiers" msgstr "įŠ įįˆŖįŠ«/įŠ įˆįŒ€įˆ­įˆµ" #: timezones.h:5 #, fuzzy msgid "Africa/Asmara" msgstr "įŠ įįˆŖįŠ«/አሄመራ" #: timezones.h:6 msgid "Africa/Asmera" msgstr "įŠ įįˆŖįŠ«/አሄመራ" #: timezones.h:7 msgid "Africa/Bamako" msgstr "įŠ įįˆŖįŠ«/į‰£įˆ›įŠ®" #: timezones.h:8 msgid "Africa/Bangui" msgstr "įŠ įįˆŖįŠ«/į‰£įŠ•įŒ‰į‹Š" #: timezones.h:9 msgid "Africa/Banjul" msgstr "įŠ įįˆŖįŠ«/į‰£įŠ•įŒįˆ" #: timezones.h:10 msgid "Africa/Bissau" msgstr "įŠ įįˆŖįŠ«/į‰¢įˆ³į‹Ž" #: timezones.h:11 msgid "Africa/Blantyre" msgstr "įŠ įįˆŖįŠ«/į‰„įˆ‹įŠ•į‰²įˆØ" #: timezones.h:12 msgid "Africa/Brazzaville" msgstr "įŠ įįˆŖįŠ«/į‰„įˆ«į‹›į‰Ŗįˆ" #: timezones.h:13 msgid "Africa/Bujumbura" msgstr "įŠ įįˆŖįŠ«/į‰”įŒįˆį‰”įˆ«" #: timezones.h:14 msgid "Africa/Cairo" msgstr "įŠ įįˆŖįŠ«/įŠ«į‹­įˆ®" #: timezones.h:15 msgid "Africa/Casablanca" msgstr "įŠ įįˆŖįŠ«/įŠ«į‹›į‰„įˆ‹įŠ•įŠ«" #: timezones.h:16 msgid "Africa/Ceuta" msgstr "įŠ įįˆŖįŠ«/įŠ¬į‹į‰³" #. comment for time zone Africa/Ceuta #: timezones.h:18 msgid "Ceuta & Melilla" msgstr "" #: timezones.h:19 msgid "Africa/Conakry" msgstr "įŠ įįˆŖįŠ«/įŠ®įŠ“įŠ­įˆŖ" #: timezones.h:20 msgid "Africa/Dakar" msgstr "įŠ įįˆŖįŠ«/į‹³įŠ«įˆ­" #: timezones.h:21 msgid "Africa/Dar_es_Salaam" msgstr "įŠ įįˆŖįŠ«/į‹³įˆ¬įˆ°įˆ‹įˆ" #: timezones.h:22 msgid "Africa/Djibouti" msgstr "įŠ įįˆŖįŠ«/įŒ…į‰”į‰²" #: timezones.h:23 msgid "Africa/Douala" msgstr "įŠ įįˆŖįŠ«/į‹±į‹‹įˆ‹" #: timezones.h:24 msgid "Africa/El_Aaiun" msgstr "įŠ įįˆŖįŠ«/įŠ¤įˆ įŠ įŠ¢į‹įŠ•" #: timezones.h:25 msgid "Africa/Freetown" msgstr "įŠ įįˆŖįŠ«/įįˆŖį‰³į‹įŠ•" #: timezones.h:26 msgid "Africa/Gaborone" msgstr "įŠ įįˆŖįŠ«/įŒ‹į‰¦įˆ®įŠ•" #: timezones.h:27 msgid "Africa/Harare" msgstr "įŠ įįˆŖįŠ«/įˆ€įˆ«įˆ¬" #: timezones.h:28 msgid "Africa/Johannesburg" msgstr "įŠ įįˆŖįŠ«/įŒ†įˆ€įŠ•įˆµį‰ įˆ­įŒ" #: timezones.h:29 msgid "Africa/Kampala" msgstr "įŠ įįˆŖįŠ«/įŠ«įˆį“įˆ‹" #: timezones.h:30 msgid "Africa/Khartoum" msgstr "įŠ įįˆŖįŠ«/įŠ«įˆ­į‰±įˆ" #: timezones.h:31 msgid "Africa/Kigali" msgstr "įŠ įįˆŖįŠ«/įŠŖįŒ‹įˆŠ" #: timezones.h:32 msgid "Africa/Kinshasa" msgstr "įŠ įįˆŖįŠ«/įŠŖįŠ•įˆ»įˆ³" #. comment for time zone Africa/Kinshasa #: timezones.h:34 msgid "west Dem. Rep. of Congo" msgstr "" #: timezones.h:35 msgid "Africa/Lagos" msgstr "įŠ įįˆŖįŠ«/įˆŒįŒŽįˆµ" #: timezones.h:36 msgid "Africa/Libreville" msgstr "įŠ įįˆŖįŠ«/įˆŠį‰„įˆ¬į‰Ŗįˆ" #: timezones.h:37 msgid "Africa/Lome" msgstr "įŠ įįˆŖįŠ«/įˆŽįˆœ" #: timezones.h:38 msgid "Africa/Luanda" msgstr "įŠ įįˆŖįŠ«/įˆ‰į‹‹įŠ•į‹³" #: timezones.h:39 msgid "Africa/Lubumbashi" msgstr "įŠ įįˆŖįŠ«/įˆ‰į‰”įˆį‰£įˆŗ" #. comment for time zone Africa/Lubumbashi #: timezones.h:41 msgid "east Dem. Rep. of Congo" msgstr "" #: timezones.h:42 msgid "Africa/Lusaka" msgstr "įŠ įįˆŖįŠ«/įˆ‰įˆ³įŠ«" #: timezones.h:43 msgid "Africa/Malabo" msgstr "įŠ įįˆŖįŠ«/įˆ›įˆ‹į‰”" #: timezones.h:44 msgid "Africa/Maputo" msgstr "įŠ įįˆŖįŠ«/įˆ›į‘į‰¶" #: timezones.h:45 msgid "Africa/Maseru" msgstr "įŠ įįˆŖįŠ«/įˆ›įˆ“įˆ©" #: timezones.h:46 msgid "Africa/Mbabane" msgstr "įŠ įįˆŖįŠ«/įˆį‰£į‰£įŠ”" #: timezones.h:47 msgid "Africa/Mogadishu" msgstr "įŠ įįˆŖįŠ«/įˆžį‰ƒį‹²įˆ¹" #: timezones.h:48 msgid "Africa/Monrovia" msgstr "įŠ įįˆŖįŠ«/įˆžįŠ•įˆ®į‰Ŗį‹«" #: timezones.h:49 msgid "Africa/Nairobi" msgstr "įŠ įįˆŖįŠ«/įŠ“į‹­įˆ®į‰¢" #: timezones.h:50 msgid "Africa/Ndjamena" msgstr "įŠ įįˆŖįŠ«/įŠ’įŒƒįˆœįŠ“" #: timezones.h:51 msgid "Africa/Niamey" msgstr "įŠ įįˆŖįŠ«/įŠ’į‹«įˆœį‹­" #: timezones.h:52 msgid "Africa/Nouakchott" msgstr "įŠ įįˆŖįŠ«/įŠ‘į‹‹įŠ­į‰¾į‰µ" #: timezones.h:53 msgid "Africa/Ouagadougou" msgstr "įŠ įįˆŖįŠ«/įŠ”įŒ‹į‹±įŒ‰" #: timezones.h:54 msgid "Africa/Porto-Novo" msgstr "įŠ įįˆŖįŠ«/Porto-Novo" #: timezones.h:55 msgid "Africa/Sao_Tome" msgstr "įŠ įįˆŖįŠ«/ሳኦ-į‰¶įˆœ" #: timezones.h:56 msgid "Africa/Timbuktu" msgstr "įŠ įįˆŖįŠ«/į‰²įˆį‰”įŠ­į‰±" #: timezones.h:57 msgid "Africa/Tripoli" msgstr "įŠ įįˆŖįŠ«/į‰µįˆŖį–įˆŠ" #: timezones.h:58 msgid "Africa/Tunis" msgstr "įŠ įįˆŖįŠ«/į‰±įŠ’į‹" #: timezones.h:59 msgid "Africa/Windhoek" msgstr "įŠ įįˆŖįŠ«/į‹ŠįŠ•į‹µįˆ†į‹ŒįŠ­" #: timezones.h:60 msgid "America/Adak" msgstr "አሜሪካ/įŠ į‹³įŠ­" #. comment for time zone America/Adak #: timezones.h:62 #, fuzzy msgid "Aleutian Islands" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/Queensland" #: timezones.h:63 msgid "America/Anchorage" msgstr "አሜሪካ/įŠ įŠ•įŠ®įˆ«įŒ…" #. comment for time zone America/Anchorage #: timezones.h:65 #, fuzzy msgid "Alaska Time" msgstr "US/Alaska" #: timezones.h:66 msgid "America/Anguilla" msgstr "አሜሪካ/įŠ įŠ•įŒ‰įŠ¢įˆ‹" #: timezones.h:67 msgid "America/Antigua" msgstr "አሜሪካ/įŠ įŠ•į‰²įŒ‰į‹‹" #: timezones.h:68 msgid "America/Araguaina" msgstr "አሜሪካ/įŠ įˆ«įŒ‰įŠ įŠ¢įŠ“" #. comment for time zone America/Araguaina #: timezones.h:70 msgid "Tocantins" msgstr "" #: timezones.h:71 #, fuzzy msgid "America/Argentina/Buenos_Aires" msgstr "አሜሪካ/į‰”įŠ¤įŠ–įˆµ_įŠ¤į‹­įˆŖįˆµ" #. comment for time zone America/Argentina/Buenos_Aires #: timezones.h:73 msgid "Buenos Aires (BA, CF)" msgstr "" #: timezones.h:74 #, fuzzy msgid "America/Argentina/Catamarca" msgstr "አሜሪካ/įŠ«į‰³įˆ›įˆ­įŠ«" #. comment for time zone America/Argentina/Catamarca #: timezones.h:76 msgid "Catamarca (CT), Chubut (CH)" msgstr "" #: timezones.h:77 #, fuzzy msgid "America/Argentina/ComodRivadavia" msgstr "አሜሪካ/አሜሪካ" #: timezones.h:78 #, fuzzy msgid "America/Argentina/Cordoba" msgstr "አሜሪካ/įŠ®įˆ­į‹¶į‰£" #. comment for time zone America/Argentina/Cordoba #: timezones.h:80 msgid "most locations (CB, CC, CN, ER, FM, MN, SE, SF)" msgstr "" #: timezones.h:81 #, fuzzy msgid "America/Argentina/Jujuy" msgstr "አሜሪካ/įŒįŒį‹­" #. comment for time zone America/Argentina/Jujuy #: timezones.h:83 msgid "Jujuy (JY)" msgstr "" #: timezones.h:84 #, fuzzy msgid "America/Argentina/La_Rioja" msgstr "አሜሪካ/įŠ įˆ«įŒ‰įŠ įŠ¢įŠ“" #. comment for time zone America/Argentina/La_Rioja #: timezones.h:86 msgid "La Rioja (LR)" msgstr "" #: timezones.h:87 #, fuzzy msgid "America/Argentina/Mendoza" msgstr "አሜሪካ/įˆœįŠ•į‹¶į‹›" #. comment for time zone America/Argentina/Mendoza #: timezones.h:89 msgid "Mendoza (MZ)" msgstr "" #: timezones.h:90 #, fuzzy msgid "America/Argentina/Rio_Gallegos" msgstr "አሜሪካ/አሜሪካ/įˆ›įˆ¬įŠ•įŒŽ" #. comment for time zone America/Argentina/Rio_Gallegos #: timezones.h:92 msgid "Santa Cruz (SC)" msgstr "" #: timezones.h:93 #, fuzzy msgid "America/Argentina/Salta" msgstr "አሜሪካ/įŠ įŠ•į‰²įŒ‰į‹‹" #. comment for time zone America/Argentina/Salta #: timezones.h:95 msgid "(SA, LP, NQ, RN)" msgstr "" #: timezones.h:96 #, fuzzy msgid "America/Argentina/San_Juan" msgstr "አሜሪካ/įŠ įŠ•į‰²įŒ‰į‹‹" #. comment for time zone America/Argentina/San_Juan #: timezones.h:98 msgid "San Juan (SJ)" msgstr "" #: timezones.h:99 #, fuzzy msgid "America/Argentina/San_Luis" msgstr "አሜሪካ/įŠ įŠ•į‰²įŒ‰į‹‹" #. comment for time zone America/Argentina/San_Luis #: timezones.h:101 msgid "San Luis (SL)" msgstr "" #: timezones.h:102 #, fuzzy msgid "America/Argentina/Tucuman" msgstr "አሜሪካ/įŠ įŠ•į‰²įŒ‰į‹‹" #. comment for time zone America/Argentina/Tucuman #: timezones.h:104 msgid "Tucuman (TM)" msgstr "" #: timezones.h:105 #, fuzzy msgid "America/Argentina/Ushuaia" msgstr "አሜሪካ/įŠ įˆ«įŒ‰įŠ įŠ¢įŠ“" #. comment for time zone America/Argentina/Ushuaia #: timezones.h:107 msgid "Tierra del Fuego (TF)" msgstr "" #: timezones.h:108 msgid "America/Aruba" msgstr "አሜሪካ/įŠ įˆ©į‰£" #: timezones.h:109 msgid "America/Asuncion" msgstr "አሜሪካ/įŠ įˆ±įŠ•įŠ®įŠ•" #: timezones.h:110 #, fuzzy msgid "America/Atikokan" msgstr "America/Atka" #. comment for time zone America/Atikokan #: timezones.h:112 msgid "Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut" msgstr "" #: timezones.h:113 msgid "America/Atka" msgstr "America/Atka" #: timezones.h:114 #, fuzzy msgid "America/Bahia" msgstr "አሜሪካ/į‰¦įŠ -į‰Ŗįˆµį‰³" #. comment for time zone America/Bahia #: timezones.h:116 msgid "Bahia" msgstr "" #: timezones.h:117 #, fuzzy msgid "America/Bahia_Banderas" msgstr "አሜሪካ/į‰¦įŠ -į‰Ŗįˆµį‰³" #. comment for time zone America/Bahia_Banderas #: timezones.h:119 msgid "Mexican Central Time - Bahia de Banderas" msgstr "" #: timezones.h:120 msgid "America/Barbados" msgstr "አሜሪካ/į‰£įˆ­į‰¤į‹¶įˆµ" #: timezones.h:121 msgid "America/Belem" msgstr "አሜሪካ/į‰ įˆˆįˆ" #. comment for time zone America/Belem #: timezones.h:123 msgid "Amapa, E Para" msgstr "" #: timezones.h:124 msgid "America/Belize" msgstr "አሜሪካ/į‰¤įˆŠį‹" #: timezones.h:125 #, fuzzy msgid "America/Blanc-Sablon" msgstr "አሜሪካ/įŠ«įŠ•įŠ©įŠ•" #. comment for time zone America/Blanc-Sablon #: timezones.h:127 msgid "Atlantic Standard Time - Quebec - Lower North Shore" msgstr "" #: timezones.h:128 msgid "America/Boa_Vista" msgstr "አሜሪካ/į‰¦įŠ -į‰Ŗįˆµį‰³" #. comment for time zone America/Boa_Vista #: timezones.h:130 msgid "Roraima" msgstr "" #: timezones.h:131 msgid "America/Bogota" msgstr "አሜሪካ/į‰¦įŒŽį‰³" #: timezones.h:132 msgid "America/Boise" msgstr "አሜሪካ/į‰¦į‹­įˆµ" #. comment for time zone America/Boise #: timezones.h:134 msgid "Mountain Time - south Idaho & east Oregon" msgstr "" #: timezones.h:135 msgid "America/Buenos_Aires" msgstr "አሜሪካ/į‰”įŠ¤įŠ–įˆµ_įŠ¤į‹­įˆŖįˆµ" #: timezones.h:136 msgid "America/Cambridge_Bay" msgstr "አሜሪካ/įŠ«įˆį‰„įˆŖįŒ…_ቤይ" #. comment for time zone America/Cambridge_Bay #: timezones.h:138 msgid "Mountain Time - west Nunavut" msgstr "" #: timezones.h:139 #, fuzzy msgid "America/Campo_Grande" msgstr "አሜሪካ/įŠ¬į‹­įˆ›įŠ•" #. comment for time zone America/Campo_Grande #: timezones.h:141 msgid "Mato Grosso do Sul" msgstr "" #: timezones.h:142 msgid "America/Cancun" msgstr "አሜሪካ/įŠ«įŠ•įŠ©įŠ•" #. comment for time zone America/Cancun #: timezones.h:144 msgid "Central Time - Quintana Roo" msgstr "" #: timezones.h:145 msgid "America/Caracas" msgstr "አሜሪካ/ካራካስ" #: timezones.h:146 msgid "America/Catamarca" msgstr "አሜሪካ/įŠ«į‰³įˆ›įˆ­įŠ«" #: timezones.h:147 msgid "America/Cayenne" msgstr "አሜሪካ/įŠ«įŠ¤įŠ•" #: timezones.h:148 msgid "America/Cayman" msgstr "አሜሪካ/įŠ¬į‹­įˆ›įŠ•" #: timezones.h:149 msgid "America/Chicago" msgstr "አሜሪካ/į‰ŗįŠ«įŒ" #. comment for time zone America/Chicago #: timezones.h:151 #, fuzzy msgid "Central Time" msgstr "US/Central" #: timezones.h:152 msgid "America/Chihuahua" msgstr "አሜሪካ/į‰ŗįŠ½į‹‹įŠ½į‹‹" #. comment for time zone America/Chihuahua #: timezones.h:154 msgid "Mexican Mountain Time - Chihuahua away from US border" msgstr "" #: timezones.h:155 #, fuzzy msgid "America/Coral_Harbour" msgstr "አሜሪካ/ኩራካኦ" #: timezones.h:156 msgid "America/Cordoba" msgstr "አሜሪካ/įŠ®įˆ­į‹¶į‰£" #: timezones.h:157 msgid "America/Costa_Rica" msgstr "አሜሪካ/įŠ®įˆµį‰³įˆŖįŠ«" #: timezones.h:158 msgid "America/Cuiaba" msgstr "አሜሪካ/įŠ©į‰£" #. comment for time zone America/Cuiaba #: timezones.h:160 msgid "Mato Grosso" msgstr "" #: timezones.h:161 msgid "America/Curacao" msgstr "አሜሪካ/ኩራካኦ" #: timezones.h:162 msgid "America/Danmarkshavn" msgstr "አሜሪካ/į‹“įŠ•įˆ›įˆ­įŠ­" #. comment for time zone America/Danmarkshavn #: timezones.h:164 msgid "east coast, north of Scoresbysund" msgstr "" #: timezones.h:165 msgid "America/Dawson" msgstr "አሜሪካ/į‹³į‹įˆ°įŠ•" #. comment for time zone America/Dawson #: timezones.h:167 msgid "Pacific Time - north Yukon" msgstr "" #: timezones.h:168 msgid "America/Dawson_Creek" msgstr "አሜሪካ/į‹³į‹įˆ°įŠ•_ክሪክ" #. comment for time zone America/Dawson_Creek #: timezones.h:170 msgid "" "Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia" msgstr "" #: timezones.h:171 msgid "America/Denver" msgstr "አሜሪካ/į‹“įŠ•į‰Øįˆ­" #. comment for time zone America/Denver #: timezones.h:173 #, fuzzy msgid "Mountain Time" msgstr "US/Mountain" #: timezones.h:174 msgid "America/Detroit" msgstr "አሜሪካ/į‹²į‰µįˆ®į‹­į‰µ" #. comment for time zone America/Detroit #: timezones.h:176 msgid "Eastern Time - Michigan - most locations" msgstr "" #: timezones.h:177 msgid "America/Dominica" msgstr "አሜሪካ/į‹¶įˆšįŠ’įŠ«" #: timezones.h:178 msgid "America/Edmonton" msgstr "አሜሪካ/įŠ¤į‹µįˆ˜įŠ•į‰°įŠ•" #. comment for time zone America/Edmonton #: timezones.h:180 msgid "Mountain Time - Alberta, east British Columbia & west Saskatchewan" msgstr "" #: timezones.h:181 msgid "America/Eirunepe" msgstr "አሜሪካ/įŠ¢įˆ©įŠ”į•" #. comment for time zone America/Eirunepe #: timezones.h:183 msgid "W Amazonas" msgstr "" #: timezones.h:184 msgid "America/El_Salvador" msgstr "አሜሪካ/įŠ¤įˆįˆ³įˆį‰«į‹¶įˆ­" #: timezones.h:185 msgid "America/Ensenada" msgstr "አሜሪካ/Ensenada" #: timezones.h:186 msgid "America/Fortaleza" msgstr "አሜሪካ/įŽįˆ­į‰³įˆˆį‹›" #. comment for time zone America/Fortaleza #: timezones.h:188 msgid "NE Brazil (MA, PI, CE, RN, PB)" msgstr "" #: timezones.h:189 msgid "America/Fort_Wayne" msgstr "አሜሪካ/Fort_Wayne" #: timezones.h:190 msgid "America/Glace_Bay" msgstr "አሜሪካ/įŒįˆŒįˆµ_ቤይ" #. comment for time zone America/Glace_Bay #: timezones.h:192 msgid "Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971" msgstr "" #: timezones.h:193 msgid "America/Godthab" msgstr "አሜሪካ/įŒį‹µį‰³įŠ½į‰„" #. comment for time zone America/Godthab #. comment for time zone America/Santiago #. comment for time zone Asia/Almaty #. comment for time zone Asia/Ulaanbaatar #. comment for time zone Europe/Kiev #. comment for time zone Pacific/Auckland #. comment for time zone Pacific/Majuro #: timezones.h:195 timezones.h:364 timezones.h:453 timezones.h:591 #: timezones.h:754 timezones.h:852 timezones.h:894 msgid "most locations" msgstr "" #: timezones.h:196 msgid "America/Goose_Bay" msgstr "አሜሪካ/įŒ‰į‹_ቤይ" #. comment for time zone America/Goose_Bay #: timezones.h:198 msgid "Atlantic Time - Labrador - most locations" msgstr "" #: timezones.h:199 msgid "America/Grand_Turk" msgstr "አሜሪካ/įŒįˆ«įŠ•į‹µ_į‰±įˆ­įŠ­" #: timezones.h:200 msgid "America/Grenada" msgstr "አሜሪካ/įŒįˆØįŠ“į‹³" #: timezones.h:201 msgid "America/Guadeloupe" msgstr "አሜሪካ/įŒ‰įŠ į‹°įˆ‰į”" #: timezones.h:202 msgid "America/Guatemala" msgstr "አሜሪካ/įŒ“į‰²įˆ›įˆ‹" #: timezones.h:203 msgid "America/Guayaquil" msgstr "አሜሪካ/įŒ“į‹«įŠŖįˆ" #. comment for time zone America/Guayaquil #. comment for time zone Europe/Lisbon #. comment for time zone Europe/Madrid #: timezones.h:205 timezones.h:757 timezones.h:763 msgid "mainland" msgstr "" #: timezones.h:206 msgid "America/Guyana" msgstr "አሜሪካ/įŒ‰į‹«įŠ“" #: timezones.h:207 msgid "America/Halifax" msgstr "አሜሪካ/įˆ€įˆŠį‹įŠ­įˆµ" #. comment for time zone America/Halifax #: timezones.h:209 msgid "Atlantic Time - Nova Scotia (most places), PEI" msgstr "" #: timezones.h:210 msgid "America/Havana" msgstr "አሜሪካ/įˆ€į‰«įŠ“" #: timezones.h:211 msgid "America/Hermosillo" msgstr "አሜሪካ/įˆ„įˆ­įˆžįˆ²įˆŽ" #. comment for time zone America/Hermosillo #: timezones.h:213 msgid "Mountain Standard Time - Sonora" msgstr "" #: timezones.h:214 msgid "America/Indiana/Indianapolis" msgstr "አሜሪካ/አሜሪካ" #. comment for time zone America/Indiana/Indianapolis #: timezones.h:216 msgid "Eastern Time - Indiana - most locations" msgstr "" #: timezones.h:217 msgid "America/Indiana/Knox" msgstr "አሜሪካ/አሜሪካ/įŠ­įŠ–įŠ­įˆµ" #. comment for time zone America/Indiana/Knox #: timezones.h:219 msgid "Central Time - Indiana - Starke County" msgstr "" #: timezones.h:220 msgid "America/Indiana/Marengo" msgstr "አሜሪካ/አሜሪካ/įˆ›įˆ¬įŠ•įŒŽ" #. comment for time zone America/Indiana/Marengo #: timezones.h:222 msgid "Eastern Time - Indiana - Crawford County" msgstr "" #: timezones.h:223 #, fuzzy msgid "America/Indiana/Petersburg" msgstr "አሜሪካ/አሜሪካ/įˆ›įˆ¬įŠ•įŒŽ" #. comment for time zone America/Indiana/Petersburg #: timezones.h:225 msgid "Eastern Time - Indiana - Pike County" msgstr "" #: timezones.h:226 msgid "America/Indianapolis" msgstr "አሜሪካ/įŠ¢įŠ•į‹²į‹«įŠ“į–įˆŠįˆµ" #: timezones.h:227 #, fuzzy msgid "America/Indiana/Tell_City" msgstr "አሜሪካ/አሜሪካ/ቬቫይ" #. comment for time zone America/Indiana/Tell_City #: timezones.h:229 msgid "Central Time - Indiana - Perry County" msgstr "" #: timezones.h:230 msgid "America/Indiana/Vevay" msgstr "አሜሪካ/አሜሪካ/ቬቫይ" #. comment for time zone America/Indiana/Vevay #: timezones.h:232 msgid "Eastern Time - Indiana - Switzerland County" msgstr "" #: timezones.h:233 #, fuzzy msgid "America/Indiana/Vincennes" msgstr "አሜሪካ/አሜሪካ/ቬቫይ" #. comment for time zone America/Indiana/Vincennes #: timezones.h:235 msgid "Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties" msgstr "" #: timezones.h:236 #, fuzzy msgid "America/Indiana/Winamac" msgstr "አሜሪካ/አሜሪካ/ቬቫይ" #. comment for time zone America/Indiana/Winamac #: timezones.h:238 msgid "Eastern Time - Indiana - Pulaski County" msgstr "" #: timezones.h:239 msgid "America/Inuvik" msgstr "አሜሪካ/įŠ¢įŠ‘į‰ŖįŠ­" #. comment for time zone America/Inuvik #: timezones.h:241 msgid "Mountain Time - west Northwest Territories" msgstr "" #: timezones.h:242 msgid "America/Iqaluit" msgstr "አሜሪካ/įŠ¢įŠ«įˆŠįŠ”į‰µ" #. comment for time zone America/Iqaluit #: timezones.h:244 msgid "Eastern Time - east Nunavut - most locations" msgstr "" #: timezones.h:245 msgid "America/Jamaica" msgstr "አሜሪካ/įŒƒįˆ›į‹­įŠ«" #: timezones.h:246 msgid "America/Jujuy" msgstr "አሜሪካ/įŒįŒį‹­" #: timezones.h:247 msgid "America/Juneau" msgstr "አሜሪካ/ጁነአኔ" #. comment for time zone America/Juneau #: timezones.h:249 msgid "Alaska Time - Alaska panhandle" msgstr "" #: timezones.h:250 msgid "America/Kentucky/Louisville" msgstr "አሜሪካ/አሜሪካ/Louisville" #. comment for time zone America/Kentucky/Louisville #: timezones.h:252 #, fuzzy msgid "Eastern Time - Kentucky - Louisville area" msgstr "አሜሪካ/አሜሪካ/Louisville" #: timezones.h:253 msgid "America/Kentucky/Monticello" msgstr "አሜሪካ/አሜሪካ/įˆžįŠ•į‰²įˆ“įˆŽ" #. comment for time zone America/Kentucky/Monticello #: timezones.h:255 msgid "Eastern Time - Kentucky - Wayne County" msgstr "" #: timezones.h:256 msgid "America/Knox_IN" msgstr "አሜሪካ/Knox_IN" #: timezones.h:257 msgid "America/La_Paz" msgstr "አሜሪካ/įˆ‹_į“į‹" #: timezones.h:258 msgid "America/Lima" msgstr "አሜሪካ/įˆŠįˆ›" #: timezones.h:259 msgid "America/Los_Angeles" msgstr "አሜሪካ/įˆŽįˆµ_įŠ įŠ•įŒ€įˆˆįˆµ" #. comment for time zone America/Los_Angeles #: timezones.h:261 #, fuzzy msgid "Pacific Time" msgstr "į“įˆ²įŠįŠ­/įŠ’į‹Œ" #: timezones.h:262 msgid "America/Louisville" msgstr "አሜሪካ/įˆ‰į‹Šįˆµį‰Ŗįˆˆ" #: timezones.h:263 msgid "America/Maceio" msgstr "አሜሪካ/įˆ›į‰ŗį‹Ž" #. comment for time zone America/Maceio #: timezones.h:265 msgid "Alagoas, Sergipe" msgstr "" #: timezones.h:266 msgid "America/Managua" msgstr "አሜሪካ/įˆ›įŠ“įŒ‰į‹‹" #: timezones.h:267 msgid "America/Manaus" msgstr "አሜሪካ/įˆ›įŠ“įŠ”įˆµ" #. comment for time zone America/Manaus #: timezones.h:269 msgid "E Amazonas" msgstr "" #: timezones.h:270 #, fuzzy msgid "America/Marigot" msgstr "አሜሪካ/įˆ›į‰ŗį‹Ž" #: timezones.h:271 msgid "America/Martinique" msgstr "አሜሪካ/įˆ›įˆ­į‰²įŠ’įŠ­" #: timezones.h:272 #, fuzzy msgid "America/Matamoros" msgstr "አሜሪካ/įˆ›įŠ“įŠ”įˆµ" #. comment for time zone America/Matamoros #: timezones.h:274 msgid "" "US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border" msgstr "" #: timezones.h:275 msgid "America/Mazatlan" msgstr "አሜሪካ/įˆ›į‹›į‰²įŠ įŠ•" #. comment for time zone America/Mazatlan #: timezones.h:277 msgid "Mountain Time - S Baja, Nayarit, Sinaloa" msgstr "" #: timezones.h:278 msgid "America/Mendoza" msgstr "አሜሪካ/įˆœįŠ•į‹¶į‹›" #: timezones.h:279 msgid "America/Menominee" msgstr "አሜሪካ/įˆ˜įŠ–įˆšįŠ”" #. comment for time zone America/Menominee #: timezones.h:281 msgid "Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties" msgstr "" #: timezones.h:282 msgid "America/Merida" msgstr "አሜሪካ/įˆœįˆŖį‹³" #. comment for time zone America/Merida #: timezones.h:284 msgid "Central Time - Campeche, Yucatan" msgstr "" #: timezones.h:285 msgid "America/Mexico_City" msgstr "አሜሪካ/ሜክሲኮ_įˆ²į‰²" #. comment for time zone America/Mexico_City #: timezones.h:287 msgid "Central Time - most locations" msgstr "" #: timezones.h:288 msgid "America/Miquelon" msgstr "አሜሪካ/įˆšįŠ©įŠ„įˆŽįŠ•" #: timezones.h:289 #, fuzzy msgid "America/Moncton" msgstr "አሜሪካ/įŠ¤į‹µįˆ˜įŠ•į‰°įŠ•" #. comment for time zone America/Moncton #: timezones.h:291 msgid "Atlantic Time - New Brunswick" msgstr "" #: timezones.h:292 msgid "America/Monterrey" msgstr "አሜሪካ/įˆžįŠ•į‰°įˆŖ" #. comment for time zone America/Monterrey #: timezones.h:294 msgid "" "Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from " "US border" msgstr "" #: timezones.h:295 msgid "America/Montevideo" msgstr "አሜሪካ/įˆžįŠ•į‰°į‰Ŗį‹“į‹®" #: timezones.h:296 msgid "America/Montreal" msgstr "አሜሪካ/įˆžįŠ•į‰µįˆŖį‹«įˆ" #. comment for time zone America/Montreal #: timezones.h:298 msgid "Eastern Time - Quebec - most locations" msgstr "" #: timezones.h:299 msgid "America/Montserrat" msgstr "አሜሪካ/įˆžįŠ•į‰µįˆ°įˆ«į‰µ" #: timezones.h:300 msgid "America/Nassau" msgstr "አሜሪካ/įŠ“įˆ³į‹" #: timezones.h:301 msgid "America/New_York" msgstr "አሜሪካ/įŠ’į‹į‹®įˆ­įŠ­" #. comment for time zone America/New_York #: timezones.h:303 #, fuzzy msgid "Eastern Time" msgstr "US/Eastern" #: timezones.h:304 msgid "America/Nipigon" msgstr "አሜሪካ/įŠ’į’įŒŽįŠ•" #. comment for time zone America/Nipigon #: timezones.h:306 msgid "" "Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973" msgstr "" #: timezones.h:307 msgid "America/Nome" msgstr "አሜሪካ/įŠ–įˆœ" #. comment for time zone America/Nome #: timezones.h:309 msgid "Alaska Time - west Alaska" msgstr "" #: timezones.h:310 msgid "America/Noronha" msgstr "አሜሪካ/įŠ–įˆ®įˆƒ" #. comment for time zone America/Noronha #: timezones.h:312 #, fuzzy msgid "Atlantic islands" msgstr "įŠ į‰µįˆ‹įŠ•į‰²įŠ­/įŠ«įŠ“įˆŖ" #: timezones.h:313 msgid "America/North_Dakota/Center" msgstr "አሜሪካ/አሜሪካ" #. comment for time zone America/North_Dakota/Center #: timezones.h:315 msgid "Central Time - North Dakota - Oliver County" msgstr "" #: timezones.h:316 #, fuzzy msgid "America/North_Dakota/New_Salem" msgstr "አሜሪካ/አሜሪካ" #. comment for time zone America/North_Dakota/New_Salem #: timezones.h:318 msgid "Central Time - North Dakota - Morton County (except Mandan area)" msgstr "" #: timezones.h:319 #, fuzzy msgid "America/Ojinaga" msgstr "አሜሪካ/įˆ›įŠ“įŒ‰į‹‹" #. comment for time zone America/Ojinaga #: timezones.h:321 msgid "US Mountain Time - Chihuahua near US border" msgstr "" #: timezones.h:322 msgid "America/Panama" msgstr "አሜሪካ/į“įŠ“įˆ›" #: timezones.h:323 msgid "America/Pangnirtung" msgstr "አሜሪካ/į“įŠ•įŒįŠ’įˆ­į‰±įŠ•įŒ" #. comment for time zone America/Pangnirtung #: timezones.h:325 msgid "Eastern Time - Pangnirtung, Nunavut" msgstr "" #: timezones.h:326 msgid "America/Paramaribo" msgstr "አሜሪካ/į“įˆ«įˆ›įˆŖį‰¦" #: timezones.h:327 msgid "America/Phoenix" msgstr "አሜሪካ/įŽįŠ”įŠ­įˆµ" #. comment for time zone America/Phoenix #: timezones.h:329 msgid "Mountain Standard Time - Arizona" msgstr "" #: timezones.h:330 msgid "America/Port-au-Prince" msgstr "አሜሪካ/Port-au-Prince" #: timezones.h:331 msgid "America/Porto_Acre" msgstr "አሜሪካ/Porto_Acre" #: timezones.h:332 msgid "America/Port_of_Spain" msgstr "አሜሪካ/į–įˆ­į‰µ įŠ¦į įˆµį”įŠ•" #: timezones.h:333 msgid "America/Porto_Velho" msgstr "አሜሪካ/į–įˆ­į‰¶ į‰Øįˆįˆ†" #. comment for time zone America/Porto_Velho #: timezones.h:335 msgid "Rondonia" msgstr "" #: timezones.h:336 msgid "America/Puerto_Rico" msgstr "አሜሪካ/į–įˆ­į‰¶įˆŖįŠ®" #: timezones.h:337 msgid "America/Rainy_River" msgstr "አሜሪካ/įˆ¬įŠ’ įˆŖį‰Øįˆ­" #. comment for time zone America/Rainy_River #: timezones.h:339 msgid "Central Time - Rainy River & Fort Frances, Ontario" msgstr "" #: timezones.h:340 msgid "America/Rankin_Inlet" msgstr "አሜሪካ/įˆ«įŠ•įŠŖįŠ• įŠ¢įŠ•įˆŒį‰µ" #. comment for time zone America/Rankin_Inlet #: timezones.h:342 msgid "Central Time - central Nunavut" msgstr "" #: timezones.h:343 msgid "America/Recife" msgstr "አሜሪካ/įˆŖįˆ²į‹į‹­" #. comment for time zone America/Recife #: timezones.h:345 msgid "Pernambuco" msgstr "" #: timezones.h:346 msgid "America/Regina" msgstr "አሜሪካ/įˆ¬įŒ‚įŠ“" #. comment for time zone America/Regina #: timezones.h:348 msgid "Central Standard Time - Saskatchewan - most locations" msgstr "" #: timezones.h:349 #, fuzzy msgid "America/Resolute" msgstr "አሜሪካ/į‰ įˆˆįˆ" #. comment for time zone America/Resolute #: timezones.h:351 msgid "Eastern Standard Time - Resolute, Nunavut" msgstr "" #: timezones.h:352 msgid "America/Rio_Branco" msgstr "አሜሪካ/ሪኦ į‰„įˆ«įŠ•įŠ®" #. comment for time zone America/Rio_Branco #: timezones.h:354 msgid "Acre" msgstr "" #: timezones.h:355 msgid "America/Rosario" msgstr "America/Rosario" #: timezones.h:356 #, fuzzy msgid "America/Santa_Isabel" msgstr "አሜሪካ/įˆ³įŠ•į‰²į‹«įŒŽ" #. comment for time zone America/Santa_Isabel #: timezones.h:358 msgid "Mexican Pacific Time - Baja California away from US border" msgstr "" #: timezones.h:359 #, fuzzy msgid "America/Santarem" msgstr "አሜሪካ/įˆ³įŠ•į‰²į‹«įŒŽ" #. comment for time zone America/Santarem #: timezones.h:361 msgid "W Para" msgstr "" #: timezones.h:362 msgid "America/Santiago" msgstr "አሜሪካ/įˆ³įŠ•į‰²į‹«įŒŽ" #: timezones.h:365 msgid "America/Santo_Domingo" msgstr "አሜሪካ/įˆ³įŠ•į‰¶ į‹¶įˆšįŠ•įŒŽ" #: timezones.h:366 msgid "America/Sao_Paulo" msgstr "አሜሪካ/ሳኦ į“į‹įˆŽ" #. comment for time zone America/Sao_Paulo #: timezones.h:368 msgid "S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)" msgstr "" #: timezones.h:369 msgid "America/Scoresbysund" msgstr "አሜሪካ/įˆµįŠ®įˆØįˆµį‰¢įˆ±įŠ•į‹µ" #. comment for time zone America/Scoresbysund #: timezones.h:371 msgid "Scoresbysund / Ittoqqortoormiit" msgstr "" #: timezones.h:372 msgid "America/Shiprock" msgstr "አሜሪካ/Shiprock" #. comment for time zone America/Shiprock #: timezones.h:374 msgid "Mountain Time - Navajo" msgstr "" #: timezones.h:375 #, fuzzy msgid "America/St_Barthelemy" msgstr "አሜሪካ/į‰ įˆˆįˆ" #: timezones.h:376 msgid "America/St_Johns" msgstr "አሜሪካ/įˆ“įŠ•į‰µ įŒ†įŠ•įˆµ" #. comment for time zone America/St_Johns #: timezones.h:378 msgid "Newfoundland Time, including SE Labrador" msgstr "" #: timezones.h:379 msgid "America/St_Kitts" msgstr "አሜሪካ/įˆ“įŠ•į‰µ įŠŖį‰µįˆµ" #: timezones.h:380 msgid "America/St_Lucia" msgstr "አሜሪካ/įˆ“įŠ•į‰µ įˆ‰į‰ŗį‹«" #: timezones.h:381 msgid "America/St_Thomas" msgstr "አሜሪካ/įˆ“įŠ•į‰µ į‰¶įˆ›įˆµ" #: timezones.h:382 msgid "America/St_Vincent" msgstr "አሜሪካ/įˆ“įŠ•į‰µ į‰ŖįŠ•įˆ°įŠ•į‰µ" #: timezones.h:383 msgid "America/Swift_Current" msgstr "አሜሪካ/įˆµį‹Šįį‰µ įŠØįˆØįŠ•į‰µ" #. comment for time zone America/Swift_Current #: timezones.h:385 msgid "Central Standard Time - Saskatchewan - midwest" msgstr "" #: timezones.h:386 msgid "America/Tegucigalpa" msgstr "አሜሪካ/į‰°įŒ‰į‰ŗįŒ‹įˆį“" #: timezones.h:387 msgid "America/Thule" msgstr "አሜሪካ/į‰±įˆˆ" #. comment for time zone America/Thule #: timezones.h:389 msgid "Thule / Pituffik" msgstr "" #: timezones.h:390 msgid "America/Thunder_Bay" msgstr "አሜሪካ/į‰°įŠ•į‹°įˆ­ ቤይ" #. comment for time zone America/Thunder_Bay #: timezones.h:392 msgid "Eastern Time - Thunder Bay, Ontario" msgstr "" #: timezones.h:393 msgid "America/Tijuana" msgstr "አሜሪካ/į‰²įŒįŠ įŠ“" #. comment for time zone America/Tijuana #: timezones.h:395 msgid "US Pacific Time - Baja California near US border" msgstr "" #: timezones.h:396 #, fuzzy msgid "America/Toronto" msgstr "አሜሪካ/į‰¶įˆ­į‰¶įˆ‹" #. comment for time zone America/Toronto #: timezones.h:398 msgid "Eastern Time - Ontario - most locations" msgstr "" #: timezones.h:399 msgid "America/Tortola" msgstr "አሜሪካ/į‰¶įˆ­į‰¶įˆ‹" #: timezones.h:400 msgid "America/Vancouver" msgstr "አሜሪካ/į‰«įŠ•įŠ©į‰Øįˆ­" #. comment for time zone America/Vancouver #: timezones.h:402 msgid "Pacific Time - west British Columbia" msgstr "" #: timezones.h:403 msgid "America/Virgin" msgstr "America/Virgin" #: timezones.h:404 msgid "America/Whitehorse" msgstr "አሜሪካ/įˆį‹‹į‹­į‰µįˆ†įˆ­įˆµ" #. comment for time zone America/Whitehorse #: timezones.h:406 msgid "Pacific Time - south Yukon" msgstr "" #: timezones.h:407 msgid "America/Winnipeg" msgstr "አሜሪካ/į‹ŠįŠ’į”įŒ" #. comment for time zone America/Winnipeg #: timezones.h:409 msgid "Central Time - Manitoba & west Ontario" msgstr "" #: timezones.h:410 msgid "America/Yakutat" msgstr "አሜሪካ/į‹«įŠ©į‰³į‰µ" #. comment for time zone America/Yakutat #: timezones.h:412 msgid "Alaska Time - Alaska panhandle neck" msgstr "" #: timezones.h:413 msgid "America/Yellowknife" msgstr "አሜሪካ/į‹ØįˆŽį‹įŠ“į‹­į" #. comment for time zone America/Yellowknife #: timezones.h:415 msgid "Mountain Time - central Northwest Territories" msgstr "" #: timezones.h:416 msgid "Antarctica/Casey" msgstr "įŠ įŠ•į‰³įˆ­įŠ­į‰²įŠ«/į‰¼įˆ²" #. comment for time zone Antarctica/Casey #: timezones.h:418 msgid "Casey Station, Bailey Peninsula" msgstr "" #: timezones.h:419 msgid "Antarctica/Davis" msgstr "įŠ įŠ•į‰³įˆ­įŠ­į‰²įŠ«/į‹“į‰Ŗįˆµ" #. comment for time zone Antarctica/Davis #: timezones.h:421 msgid "Davis Station, Vestfold Hills" msgstr "" #: timezones.h:422 msgid "Antarctica/DumontDUrville" msgstr "įŠ įŠ•į‰³įˆ­įŠ­į‰²įŠ«/į‹±įˆžįŠ•į‰µį‹±įˆ­į‰Ŗįˆ" #. comment for time zone Antarctica/DumontDUrville #: timezones.h:424 msgid "Dumont-d'Urville Station, Terre Adelie" msgstr "" #: timezones.h:425 #, fuzzy msgid "Antarctica/Macquarie" msgstr "įŠ įŠ•į‰³įˆ­įŠ­į‰²įŠ«/įˆ›įŠ­įˆ™įˆ­į‹¶" #. comment for time zone Antarctica/Macquarie #: timezones.h:427 msgid "Macquarie Island Station, Macquarie Island" msgstr "" #: timezones.h:428 msgid "Antarctica/Mawson" msgstr "įŠ įŠ•į‰³įˆ­įŠ­į‰²įŠ«/įˆ›į‹įˆ°įŠ•" #. comment for time zone Antarctica/Mawson #: timezones.h:430 msgid "Mawson Station, Holme Bay" msgstr "" #: timezones.h:431 msgid "Antarctica/McMurdo" msgstr "įŠ įŠ•į‰³įˆ­įŠ­į‰²įŠ«/įˆ›įŠ­įˆ™įˆ­į‹¶" #. comment for time zone Antarctica/McMurdo #: timezones.h:433 msgid "McMurdo Station, Ross Island" msgstr "" #: timezones.h:434 msgid "Antarctica/Palmer" msgstr "įŠ įŠ•į‰³įˆ­įŠ­į‰²įŠ«/į“įˆįˆ˜įˆ­" #. comment for time zone Antarctica/Palmer #: timezones.h:436 msgid "Palmer Station, Anvers Island" msgstr "" #: timezones.h:437 #, fuzzy msgid "Antarctica/Rothera" msgstr "Antarctica/South_Pole" #. comment for time zone Antarctica/Rothera #: timezones.h:439 msgid "Rothera Station, Adelaide Island" msgstr "" #: timezones.h:440 msgid "Antarctica/South_Pole" msgstr "Antarctica/South_Pole" #. comment for time zone Antarctica/South_Pole #: timezones.h:442 msgid "Amundsen-Scott Station, South Pole" msgstr "" #: timezones.h:443 msgid "Antarctica/Syowa" msgstr "įŠ įŠ•į‰³įˆ­įŠ­į‰²įŠ«/įˆµį‹®į‹‹" #. comment for time zone Antarctica/Syowa #: timezones.h:445 msgid "Syowa Station, E Ongul I" msgstr "" #: timezones.h:446 msgid "Antarctica/Vostok" msgstr "įŠ įŠ•į‰³įˆ­įŠ­į‰²įŠ«/į‰®įˆµį‰±įŠ­" #. comment for time zone Antarctica/Vostok #: timezones.h:448 msgid "Vostok Station, S Magnetic Pole" msgstr "" #: timezones.h:449 msgid "Arctic/Longyearbyen" msgstr "Arctic/Longyearbyen" #: timezones.h:450 msgid "Asia/Aden" msgstr "įŠ„įˆµį‹«/įŠ¤į‹°įŠ•" #: timezones.h:451 msgid "Asia/Almaty" msgstr "įŠ„įˆµį‹«/įŠ įˆįˆ›į‰²" #: timezones.h:454 msgid "Asia/Amman" msgstr "įŠ„įˆµį‹«/įŠ įˆ›įŠ•" #: timezones.h:455 msgid "Asia/Anadyr" msgstr "įŠ„įˆµį‹«/įŠ įŠ“į‹²įˆ­" #. comment for time zone Asia/Anadyr #: timezones.h:457 msgid "Moscow+08 - Bering Sea" msgstr "" #: timezones.h:458 msgid "Asia/Aqtau" msgstr "įŠ„įˆµį‹«/įŠ įŠ­į‰³į‹" #. comment for time zone Asia/Aqtau #: timezones.h:460 msgid "Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)" msgstr "" #: timezones.h:461 msgid "Asia/Aqtobe" msgstr "įŠ„įˆµį‹«/įŠ įŠ­į‰¶į‰¤" #. comment for time zone Asia/Aqtobe #: timezones.h:463 msgid "Aqtobe (Aktobe)" msgstr "" #: timezones.h:464 msgid "Asia/Ashgabat" msgstr "įŠ„įˆµį‹«/įŠ įˆ½įŒ‹į‰£į‰µ" #: timezones.h:465 msgid "Asia/Ashkhabad" msgstr "įŠ„įˆµį‹«/Ashkhabad" #: timezones.h:466 msgid "Asia/Baghdad" msgstr "įŠ„įˆµį‹«/į‰£įŒį‹³į‹µ" #: timezones.h:467 msgid "Asia/Bahrain" msgstr "įŠ„įˆµį‹«/į‰£įˆ…įˆ¬įŠ•" #: timezones.h:468 msgid "Asia/Baku" msgstr "įŠ„įˆµį‹«/į‰£įŠ©" #: timezones.h:469 msgid "Asia/Bangkok" msgstr "įŠ„įˆµį‹«/į‰£įŠ•įŠ®įŠ­" #: timezones.h:470 msgid "Asia/Beirut" msgstr "įŠ„įˆµį‹«/į‰¤į‹­įˆ©į‰µ" #: timezones.h:471 msgid "Asia/Bishkek" msgstr "įŠ„įˆµį‹«/į‰¢įˆ½įŠ¬įŠ­" #: timezones.h:472 msgid "Asia/Brunei" msgstr "įŠ„įˆµį‹«/į‰„įˆ©įŠ’" #: timezones.h:473 msgid "Asia/Calcutta" msgstr "įŠ„įˆµį‹«/įŠ«įˆįŠ©į‰³" #: timezones.h:474 msgid "Asia/Choibalsan" msgstr "įŠ„įˆµį‹«/į‰¾į‹­į‰£įˆįˆ³įŠ•" #. comment for time zone Asia/Choibalsan #: timezones.h:476 msgid "Dornod, Sukhbaatar" msgstr "" #: timezones.h:477 msgid "Asia/Chongqing" msgstr "įŠ„įˆµį‹«/į‰¾įŠ•įŒįŠŖįŠ•įŒ" #. comment for time zone Asia/Chongqing #: timezones.h:479 msgid "central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc." msgstr "" #: timezones.h:480 msgid "Asia/Chungking" msgstr "Asia/Chungking" #: timezones.h:481 msgid "Asia/Colombo" msgstr "įŠ„įˆµį‹«/įŠ®įˆŽįˆį‰¦" #: timezones.h:482 msgid "Asia/Dacca" msgstr "įŠ„įˆµį‹«/Dacca" #: timezones.h:483 msgid "Asia/Damascus" msgstr "įŠ„įˆµį‹«/į‹³įˆ›įˆµįŠØįˆµ" #: timezones.h:484 msgid "Asia/Dhaka" msgstr "įŠ„įˆµį‹«/į‹³įŠ«" #: timezones.h:485 msgid "Asia/Dili" msgstr "įŠ„įˆµį‹«/į‹²įˆŠ" #: timezones.h:486 msgid "Asia/Dubai" msgstr "įŠ„įˆµį‹«/ዱባይ" #: timezones.h:487 msgid "Asia/Dushanbe" msgstr "įŠ„įˆµį‹«/į‹±įˆµįˆƒįŠ•į‰¤" #: timezones.h:488 msgid "Asia/Gaza" msgstr "įŠ„įˆµį‹«/įŒ‹į‹›" #: timezones.h:489 msgid "Asia/Harbin" msgstr "įŠ„įˆµį‹«/į‰£įˆ­į‰¢įŠ•" #. comment for time zone Asia/Harbin #: timezones.h:491 msgid "Heilongjiang (except Mohe), Jilin" msgstr "" #: timezones.h:492 #, fuzzy msgid "Asia/Ho_Chi_Minh" msgstr "įŠ„įˆµį‹«/į‰¾įŠ•įŒįŠŖįŠ•įŒ" #: timezones.h:493 msgid "Asia/Hong_Kong" msgstr "įŠ„įˆµį‹«/įˆ†įŠ•įŒ įŠ®įŠ•įŒ" #: timezones.h:494 msgid "Asia/Hovd" msgstr "įŠ„įˆµį‹«/įˆ†į‰­į‹µ" #. comment for time zone Asia/Hovd #: timezones.h:496 msgid "Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan" msgstr "" #: timezones.h:497 msgid "Asia/Irkutsk" msgstr "įŠ„įˆµį‹«/įŠ¢įˆ­įŠ©į‰µįˆµįŠ­" #. comment for time zone Asia/Irkutsk #: timezones.h:499 msgid "Moscow+05 - Lake Baikal" msgstr "" #: timezones.h:500 msgid "Asia/Istanbul" msgstr "Asia/Istanbul" #: timezones.h:501 msgid "Asia/Jakarta" msgstr "įŠ„įˆµį‹«/įŒƒįŠ«įˆ­į‰³" #. comment for time zone Asia/Jakarta #: timezones.h:503 msgid "Java & Sumatra" msgstr "" #: timezones.h:504 msgid "Asia/Jayapura" msgstr "įŠ„įˆµį‹«/įŒƒį‹«į‘įˆ«" #. comment for time zone Asia/Jayapura #: timezones.h:506 msgid "Irian Jaya & the Moluccas" msgstr "" #: timezones.h:507 msgid "Asia/Jerusalem" msgstr "įŠ„įˆµį‹«/įŠ„į‹Øįˆ©įˆ³įˆŒįˆ" #: timezones.h:508 msgid "Asia/Kabul" msgstr "įŠ„įˆµį‹«/įŠ«į‰”įˆ" #: timezones.h:509 msgid "Asia/Kamchatka" msgstr "įŠ„įˆµį‹«/įŠ«įˆį‰»į‰µįŠ«" #. comment for time zone Asia/Kamchatka #: timezones.h:511 msgid "Moscow+08 - Kamchatka" msgstr "" #: timezones.h:512 msgid "Asia/Karachi" msgstr "įŠ„įˆµį‹«/įŠ«įˆ«į‰ŗ" #: timezones.h:513 msgid "Asia/Kashgar" msgstr "įŠ„įˆµį‹«/įŠ«įˆ½įŒ‹įˆ­" #. comment for time zone Asia/Kashgar #: timezones.h:515 msgid "west Tibet & Xinjiang" msgstr "" #: timezones.h:516 #, fuzzy msgid "Asia/Kathmandu" msgstr "įŠ„įˆµį‹«/įŠ«į‰µįˆ›įŠ•į‹±" #: timezones.h:517 msgid "Asia/Katmandu" msgstr "įŠ„įˆµį‹«/įŠ«į‰µįˆ›įŠ•į‹±" #: timezones.h:518 #, fuzzy msgid "Asia/Kolkata" msgstr "įŠ„įˆµį‹«/įŒƒįŠ«įˆ­į‰³" #: timezones.h:519 msgid "Asia/Krasnoyarsk" msgstr "įŠ„įˆµį‹«/įŠ­įˆ«įˆµįŠ–į‹«įˆ½įŠ­" #. comment for time zone Asia/Krasnoyarsk #: timezones.h:521 msgid "Moscow+04 - Yenisei River" msgstr "" #: timezones.h:522 msgid "Asia/Kuala_Lumpur" msgstr "įŠ„įˆµį‹«/įŠ³įˆ‹įˆįˆį‘įˆ­" #. comment for time zone Asia/Kuala_Lumpur #: timezones.h:524 msgid "peninsular Malaysia" msgstr "" #: timezones.h:525 msgid "Asia/Kuching" msgstr "įŠ„įˆµį‹«/įŠ©į‰ŗįŠ•įŒ" #. comment for time zone Asia/Kuching #: timezones.h:527 msgid "Sabah & Sarawak" msgstr "" #: timezones.h:528 msgid "Asia/Kuwait" msgstr "įŠ„įˆµį‹«/įŠ©į‹Œį‰µ" #: timezones.h:529 msgid "Asia/Macao" msgstr "įŠ„įˆµį‹«/Macao" #: timezones.h:530 msgid "Asia/Macau" msgstr "įŠ„įˆµį‹«/įˆ›įŠ«į‹" #: timezones.h:531 msgid "Asia/Magadan" msgstr "įŠ„įˆµį‹«/įˆ›įŒ‹į‹³įŠ•" #. comment for time zone Asia/Magadan #: timezones.h:533 msgid "Moscow+08 - Magadan" msgstr "" #: timezones.h:534 msgid "Asia/Makassar" msgstr "įŠ„įˆµį‹«/įˆ›įŠ«įˆ³įˆ­" #. comment for time zone Asia/Makassar #: timezones.h:536 msgid "east & south Borneo, Celebes, Bali, Nusa Tengarra, west Timor" msgstr "" #: timezones.h:537 msgid "Asia/Manila" msgstr "įŠ„įˆµį‹«/įˆ›įŠ’įˆ‹" #: timezones.h:538 msgid "Asia/Muscat" msgstr "įŠ„įˆµį‹«/įˆ™įˆµįŠ«į‰µ" #: timezones.h:539 msgid "Asia/Nicosia" msgstr "įŠ„įˆµį‹«/įŠ’įŠ®įˆ²į‹«" #: timezones.h:540 #, fuzzy msgid "Asia/Novokuznetsk" msgstr "įŠ„įˆµį‹«/įŠ¢įˆ­įŠ©į‰µįˆµįŠ­" #. comment for time zone Asia/Novokuznetsk #: timezones.h:542 #, fuzzy msgid "Moscow+03 - Novokuznetsk" msgstr "įŠ„įˆµį‹«/įŠ–į‰®įˆ²į‰¢įˆ­įˆµįŠ­" #: timezones.h:543 msgid "Asia/Novosibirsk" msgstr "įŠ„įˆµį‹«/įŠ–į‰®įˆ²į‰¢įˆ­įˆµįŠ­" #. comment for time zone Asia/Novosibirsk #: timezones.h:545 #, fuzzy msgid "Moscow+03 - Novosibirsk" msgstr "įŠ„įˆµį‹«/įŠ–į‰®įˆ²į‰¢įˆ­įˆµįŠ­" #: timezones.h:546 msgid "Asia/Omsk" msgstr "įŠ„įˆµį‹«/įŠ¦įˆįˆµįŠ­" #. comment for time zone Asia/Omsk #: timezones.h:548 msgid "Moscow+03 - west Siberia" msgstr "" #: timezones.h:549 msgid "Asia/Oral" msgstr "įŠ„įˆµį‹«/įŠ¦įˆ«įˆ" #. comment for time zone Asia/Oral #: timezones.h:551 msgid "West Kazakhstan" msgstr "" #: timezones.h:552 msgid "Asia/Phnom_Penh" msgstr "įŠ„įˆµį‹«/į•įŠ–įˆ_į”įŠ•įŠ½" #: timezones.h:553 msgid "Asia/Pontianak" msgstr "įŠ„įˆµį‹«/į–įŠ•į‰²įŠ įŠ•įŠ«" #. comment for time zone Asia/Pontianak #: timezones.h:555 msgid "west & central Borneo" msgstr "" #: timezones.h:556 msgid "Asia/Pyongyang" msgstr "įŠ„įˆµį‹«/į’į‹®įŠ•įŒį‹«įŠ•įŒ" #: timezones.h:557 msgid "Asia/Qatar" msgstr "įŠ„įˆµį‹«/įŠ³į‰³įˆ­" #: timezones.h:558 msgid "Asia/Qyzylorda" msgstr "įŠ„įˆµį‹«/įŠŖį‹į‹«įˆŽįˆ­į‹³" #. comment for time zone Asia/Qyzylorda #: timezones.h:560 msgid "Qyzylorda (Kyzylorda, Kzyl-Orda)" msgstr "" #: timezones.h:561 msgid "Asia/Rangoon" msgstr "įŠ„įˆµį‹«/įˆ«įŠ•įŒŽįŠ•" #: timezones.h:562 msgid "Asia/Riyadh" msgstr "įŠ„įˆµį‹«/įˆŖį‹«į‹µįŠ½" #: timezones.h:563 msgid "Asia/Riyadh87" msgstr "įŠ„įˆµį‹«/įˆŖį‹«į‹µ87" #: timezones.h:564 msgid "Asia/Riyadh88" msgstr "įŠ„įˆµį‹«/įˆŖį‹«į‹µ88" #: timezones.h:565 msgid "Asia/Riyadh89" msgstr "įŠ„įˆµį‹«/įˆŖį‹«į‹µ89" #: timezones.h:566 msgid "Asia/Saigon" msgstr "įŠ„įˆµį‹«/įˆ³į‹­įŒŽįŠ•" #: timezones.h:567 msgid "Asia/Sakhalin" msgstr "įŠ„įˆµį‹«/įˆ³įŠ­įˆƒįˆŠįŠ•" #. comment for time zone Asia/Sakhalin #: timezones.h:569 msgid "Moscow+07 - Sakhalin Island" msgstr "" #: timezones.h:570 msgid "Asia/Samarkand" msgstr "įŠ„įˆµį‹«/įˆ³įˆ›įˆ­įŠ«įŠ•į‹µ" #. comment for time zone Asia/Samarkand #: timezones.h:572 msgid "west Uzbekistan" msgstr "" #: timezones.h:573 msgid "Asia/Seoul" msgstr "įŠ„įˆµį‹«/įˆ“į‹įˆ" #: timezones.h:574 msgid "Asia/Shanghai" msgstr "įŠ„įˆµį‹«/įˆ»įŠ•įŒ‹į‹­" #. comment for time zone Asia/Shanghai #: timezones.h:576 msgid "east China - Beijing, Guangdong, Shanghai, etc." msgstr "" #: timezones.h:577 msgid "Asia/Singapore" msgstr "įŠ„įˆµį‹«/įˆ²įŠ•įŒ‹į–įˆ­" #: timezones.h:578 msgid "Asia/Taipei" msgstr "įŠ„įˆµį‹«/į‰³įŠ¢į“į‹­" #: timezones.h:579 msgid "Asia/Tashkent" msgstr "įŠ„įˆµį‹«/į‰³įˆ½įŠ¬įŠ•į‰µ" #. comment for time zone Asia/Tashkent #: timezones.h:581 msgid "east Uzbekistan" msgstr "" #: timezones.h:582 msgid "Asia/Tbilisi" msgstr "įŠ„įˆµį‹«/į‰²į‰„įˆŠįˆ²" #: timezones.h:583 msgid "Asia/Tehran" msgstr "įŠ„įˆµį‹«/į‰“įˆ‚įˆ«įŠ•" #: timezones.h:584 msgid "Asia/Tel_Aviv" msgstr "įŠ„įˆµį‹«/Tel_Aviv" #: timezones.h:585 msgid "Asia/Thimbu" msgstr "įŠ„įˆµį‹«/Thimbu" #: timezones.h:586 msgid "Asia/Thimphu" msgstr "įŠ„įˆµį‹«/į‰²įˆį•įˆ" #: timezones.h:587 msgid "Asia/Tokyo" msgstr "įŠ„įˆµį‹«/į‰¶įŠŖį‹®" #: timezones.h:588 msgid "Asia/Ujung_Pandang" msgstr "įŠ„įˆµį‹«/Ujung_Pandang" #: timezones.h:589 msgid "Asia/Ulaanbaatar" msgstr "įŠ„įˆµį‹«/įŠ”įˆ‹įŠ•į‰£į‰³įˆ­" #: timezones.h:592 msgid "Asia/Ulan_Bator" msgstr "įŠ„įˆµį‹«/Ulan_Bator" #: timezones.h:593 msgid "Asia/Urumqi" msgstr "įŠ„įˆµį‹«/įŠ”įˆ©įˆįŠŖ" #. comment for time zone Asia/Urumqi #: timezones.h:595 msgid "most of Tibet & Xinjiang" msgstr "" #: timezones.h:596 msgid "Asia/Vientiane" msgstr "įŠ„įˆµį‹«/į‰«į‹­įŠ•į‰²įŠ įŠ•" #: timezones.h:597 msgid "Asia/Vladivostok" msgstr "įŠ„įˆµį‹«/į‰­įˆ‹į‹²į‰®įˆµį‰±įŠ­" #. comment for time zone Asia/Vladivostok #: timezones.h:599 msgid "Moscow+07 - Amur River" msgstr "" #: timezones.h:600 msgid "Asia/Yakutsk" msgstr "įŠ„įˆµį‹«/į‹«įŠ©į‰µįˆµįŠ­" #. comment for time zone Asia/Yakutsk #: timezones.h:602 msgid "Moscow+06 - Lena River" msgstr "" #: timezones.h:603 msgid "Asia/Yekaterinburg" msgstr "įŠ„įˆµį‹«/į‹ØįŠ«į‰°įˆŖįŠ•į‰ įˆ­įŒ" #. comment for time zone Asia/Yekaterinburg #: timezones.h:605 msgid "Moscow+02 - Urals" msgstr "" #: timezones.h:606 msgid "Asia/Yerevan" msgstr "įŠ„įˆµį‹«/į‹ØįˆØį‰«įŠ•" #: timezones.h:607 msgid "Atlantic/Azores" msgstr "įŠ į‰µįˆ‹įŠ•į‰²įŠ­/įŠ į‹žįˆØįˆµ" #. comment for time zone Atlantic/Azores #: timezones.h:609 msgid "Azores" msgstr "" #: timezones.h:610 msgid "Atlantic/Bermuda" msgstr "įŠ į‰µįˆ‹įŠ•į‰²įŠ­/į‰¤įˆ­įˆ™į‹³" #: timezones.h:611 msgid "Atlantic/Canary" msgstr "įŠ į‰µįˆ‹įŠ•į‰²įŠ­/įŠ«įŠ“įˆŖ" #. comment for time zone Atlantic/Canary #: timezones.h:613 msgid "Canary Islands" msgstr "" #: timezones.h:614 msgid "Atlantic/Cape_Verde" msgstr "įŠ į‰µįˆ‹įŠ•į‰²įŠ­/įŠ¬į•_į‰«įˆ­į‹“" #: timezones.h:615 msgid "Atlantic/Faeroe" msgstr "įŠ į‰µįˆ‹įŠ•į‰²įŠ­/į‹įŠ„įˆ®į‹­" #: timezones.h:616 #, fuzzy msgid "Atlantic/Faroe" msgstr "įŠ į‰µįˆ‹įŠ•į‰²įŠ­/į‹įŠ„įˆ®į‹­" #: timezones.h:617 msgid "Atlantic/Jan_Mayen" msgstr "Atlantic/Jan_Mayen" #: timezones.h:618 msgid "Atlantic/Madeira" msgstr "įŠ į‰µįˆ‹įŠ•į‰²įŠ­/įˆ›į‹“įŠ¢įˆ«" #. comment for time zone Atlantic/Madeira #: timezones.h:620 msgid "Madeira Islands" msgstr "" #: timezones.h:621 msgid "Atlantic/Reykjavik" msgstr "įŠ į‰µįˆ‹įŠ•į‰²įŠ­/įˆ¬į‹­įŠ­įŒƒį‰ŖįŠ­" #: timezones.h:622 msgid "Atlantic/South_Georgia" msgstr "įŠ į‰µįˆ‹įŠ•į‰²įŠ­/ደቔቄ įŒ‚į‹Žįˆ­įŒ‚į‹«" #: timezones.h:623 msgid "Atlantic/Stanley" msgstr "įŠ į‰µįˆ‹įŠ•į‰²įŠ­/įˆµį‰³įŠ•įˆŠ" #: timezones.h:624 msgid "Atlantic/St_Helena" msgstr "įŠ į‰µįˆ‹įŠ•į‰²įŠ­/įˆ“įŠ•į‰µ įˆ„įˆŒįŠ“" #: timezones.h:625 msgid "Australia/ACT" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/ACT" #: timezones.h:626 msgid "Australia/Adelaide" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/įŠ į‹“įˆ‹įŠ¢į‹°" #. comment for time zone Australia/Adelaide #: timezones.h:628 #, fuzzy msgid "South Australia" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/ACT" #: timezones.h:629 msgid "Australia/Brisbane" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/į‰¢įˆŖįˆµį‰£įŠ•" #. comment for time zone Australia/Brisbane #: timezones.h:631 msgid "Queensland - most locations" msgstr "" #: timezones.h:632 msgid "Australia/Broken_Hill" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/į‰„įˆ®įŠØįŠ• įˆ‚įˆ" #. comment for time zone Australia/Broken_Hill #: timezones.h:634 msgid "New South Wales - Yancowinna" msgstr "" #: timezones.h:635 msgid "Australia/Canberra" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/Canberra" #: timezones.h:636 #, fuzzy msgid "Australia/Currie" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/Canberra" #. comment for time zone Australia/Currie #: timezones.h:638 msgid "Tasmania - King Island" msgstr "" #: timezones.h:639 msgid "Australia/Darwin" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/į‹³įˆ­į‹ŠįŠ•" #. comment for time zone Australia/Darwin #: timezones.h:641 msgid "Northern Territory" msgstr "" #: timezones.h:642 #, fuzzy msgid "Australia/Eucla" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/Queensland" #. comment for time zone Australia/Eucla #: timezones.h:644 #, fuzzy msgid "Western Australia - Eucla area" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/Queensland" #: timezones.h:645 msgid "Australia/Hobart" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/įˆ†į‰£įˆ­į‰µ" #. comment for time zone Australia/Hobart #: timezones.h:647 msgid "Tasmania - most locations" msgstr "" #: timezones.h:648 msgid "Australia/LHI" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/LHI" #: timezones.h:649 msgid "Australia/Lindeman" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/įˆŠįŠ•į‹°įˆ›įŠ•" #. comment for time zone Australia/Lindeman #: timezones.h:651 msgid "Queensland - Holiday Islands" msgstr "" #: timezones.h:652 msgid "Australia/Lord_Howe" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/įˆŽįˆ­į‹µ įˆ†į‹Œ" #. comment for time zone Australia/Lord_Howe #: timezones.h:654 msgid "Lord Howe Island" msgstr "" #: timezones.h:655 msgid "Australia/Melbourne" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/įˆœįˆį‰¦įŠ”įˆ˜" #. comment for time zone Australia/Melbourne #: timezones.h:657 #, fuzzy msgid "Victoria" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/Victoria" #: timezones.h:658 msgid "Australia/North" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/North" #: timezones.h:659 msgid "Australia/NSW" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/NSW" #: timezones.h:660 msgid "Australia/Perth" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/į•įˆ­į‹" #. comment for time zone Australia/Perth #: timezones.h:662 msgid "Western Australia - most locations" msgstr "" #: timezones.h:663 msgid "Australia/Queensland" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/Queensland" #: timezones.h:664 msgid "Australia/South" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/South" #: timezones.h:665 msgid "Australia/Sydney" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/įˆ²į‹µįŠ’" #. comment for time zone Australia/Sydney #: timezones.h:667 msgid "New South Wales - most locations" msgstr "" #: timezones.h:668 msgid "Australia/Tasmania" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/Tasmania" #: timezones.h:669 msgid "Australia/Victoria" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/Victoria" #: timezones.h:670 msgid "Australia/West" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/West" #: timezones.h:671 msgid "Australia/Yancowinna" msgstr "įŠ į‹įˆµį‰µįˆ¬įˆŠį‹«/Yancowinna" #: timezones.h:672 msgid "Brazil/Acre" msgstr "į‰„įˆ«į‹šįˆ/Acre" #: timezones.h:673 msgid "Brazil/DeNoronha" msgstr "į‰„įˆ«į‹šįˆ/DeNoronha" #: timezones.h:674 msgid "Brazil/East" msgstr "į‰„įˆ«į‹šįˆ/East" #: timezones.h:675 msgid "Brazil/West" msgstr "į‰„įˆ«į‹šįˆ/West" #: timezones.h:676 msgid "Canada/Atlantic" msgstr "įŠ«įŠ“į‹³Canada/Atlantic" #: timezones.h:677 msgid "Canada/Central" msgstr "įŠ«įŠ“į‹³Canada/Central" #: timezones.h:678 msgid "Canada/Eastern" msgstr "įŠ«įŠ“į‹³/Eastern" #: timezones.h:679 msgid "Canada/East-Saskatchewan" msgstr "įŠ«įŠ“į‹³/East-Saskatchewan" #: timezones.h:680 msgid "Canada/Mountain" msgstr "įŠ«įŠ“į‹³/Mountain" #: timezones.h:681 msgid "Canada/Newfoundland" msgstr "įŠ«įŠ“į‹³/Newfoundland" #: timezones.h:682 msgid "Canada/Pacific" msgstr "įŠ«įŠ“į‹³/Pacific" #: timezones.h:683 msgid "Canada/Saskatchewan" msgstr "įŠ«įŠ“į‹³/Saskatchewan" #: timezones.h:684 msgid "Canada/Yukon" msgstr "įŠ«įŠ“į‹³/Yukon" #: timezones.h:685 msgid "CET" msgstr "CET" #: timezones.h:686 msgid "Chile/Continental" msgstr "Chile/Continental" #: timezones.h:687 msgid "Chile/EasterIsland" msgstr "Chile/EasterIsland" #: timezones.h:688 msgid "CST6CDT" msgstr "CST6CDT" #: timezones.h:689 msgid "Cuba" msgstr "įŠ©į‰£" #: timezones.h:690 msgid "EET" msgstr "EET" #: timezones.h:691 msgid "Egypt" msgstr "įŒį‰„įŒ½" #: timezones.h:692 msgid "Eire" msgstr "Eire" #: timezones.h:693 msgid "EST" msgstr "EST" #: timezones.h:694 msgid "EST5EDT" msgstr "EST5EDT" #: timezones.h:695 msgid "Etc/GMT" msgstr "į‹ˆį‹˜į‰°/GMT" #: timezones.h:696 msgid "Etc/GMT0" msgstr "į‹ˆį‹˜į‰°/GMT0" #: timezones.h:697 msgid "Etc/GMT-0" msgstr "į‹ˆį‹˜į‰°/GMT-0" #: timezones.h:698 msgid "Etc/GMT+0" msgstr "į‹ˆį‹˜į‰°/GMT" #: timezones.h:699 msgid "Etc/GMT-1" msgstr "į‹ˆį‹˜į‰°/GMT-1" #: timezones.h:700 msgid "Etc/GMT+1" msgstr "į‹ˆį‹˜į‰°/GMT" #: timezones.h:701 msgid "Etc/GMT-10" msgstr "į‹ˆį‹˜į‰°/GMT-10" #: timezones.h:702 msgid "Etc/GMT+10" msgstr "į‹ˆį‹˜į‰°/GMT" #: timezones.h:703 msgid "Etc/GMT-11" msgstr "į‹ˆį‹˜į‰°/GMT-11" #: timezones.h:704 msgid "Etc/GMT+11" msgstr "į‹ˆį‹˜į‰°/GMT" #: timezones.h:705 msgid "Etc/GMT-12" msgstr "į‹ˆį‹˜į‰°/GMT-12" #: timezones.h:706 msgid "Etc/GMT+12" msgstr "į‹ˆį‹˜į‰°/GMT" #: timezones.h:707 msgid "Etc/GMT-13" msgstr "į‹ˆį‹˜į‰°/GMT-13" #: timezones.h:708 msgid "Etc/GMT-14" msgstr "į‹ˆį‹˜į‰°/GMT-14" #: timezones.h:709 msgid "Etc/GMT-2" msgstr "į‹ˆį‹˜į‰°/GMT-2" #: timezones.h:710 msgid "Etc/GMT+2" msgstr "į‹ˆį‹˜į‰°/GMT" #: timezones.h:711 msgid "Etc/GMT-3" msgstr "į‹ˆį‹˜į‰°/GMT-3" #: timezones.h:712 msgid "Etc/GMT+3" msgstr "į‹ˆį‹˜į‰°/GMT" #: timezones.h:713 msgid "Etc/GMT-4" msgstr "į‹ˆį‹˜į‰°/GMT-4" #: timezones.h:714 msgid "Etc/GMT+4" msgstr "į‹ˆį‹˜į‰°/GMT" #: timezones.h:715 msgid "Etc/GMT-5" msgstr "į‹ˆį‹˜į‰°/GMT-5" #: timezones.h:716 msgid "Etc/GMT+5" msgstr "į‹ˆį‹˜į‰°/GMT" #: timezones.h:717 msgid "Etc/GMT-6" msgstr "į‹ˆį‹˜į‰°/GMT-6" #: timezones.h:718 msgid "Etc/GMT+6" msgstr "į‹ˆį‹˜į‰°/GMT" #: timezones.h:719 msgid "Etc/GMT-7" msgstr "į‹ˆį‹˜į‰°/GMT-7" #: timezones.h:720 msgid "Etc/GMT+7" msgstr "į‹ˆį‹˜į‰°/GMT" #: timezones.h:721 msgid "Etc/GMT-8" msgstr "į‹ˆį‹˜į‰°/GMT-8" #: timezones.h:722 msgid "Etc/GMT+8" msgstr "į‹ˆį‹˜į‰°/GMT" #: timezones.h:723 msgid "Etc/GMT-9" msgstr "į‹ˆį‹˜į‰°/GMT-9" #: timezones.h:724 msgid "Etc/GMT+9" msgstr "į‹ˆį‹˜į‰°/GMT" #: timezones.h:725 msgid "Etc/Greenwich" msgstr "į‹ˆį‹˜į‰°/Greenwich" #: timezones.h:726 msgid "Etc/UCT" msgstr "į‹ˆį‹˜į‰°/UCT" #: timezones.h:727 msgid "Etc/Universal" msgstr "Etc/Universal" #: timezones.h:728 msgid "Etc/UTC" msgstr "į‹ˆį‹˜į‰°/UTC" #: timezones.h:729 msgid "Etc/Zulu" msgstr "į‹ˆį‹˜į‰°/Zulu" #: timezones.h:730 msgid "Europe/Amsterdam" msgstr "įŠ į‹įˆ®į“/įŠ įˆįˆµį‰°įˆ­į‹³įˆ" #: timezones.h:731 msgid "Europe/Andorra" msgstr "įŠ į‹įˆ®į“/įŠ įŠ•į‹¶įˆ«" #: timezones.h:732 msgid "Europe/Athens" msgstr "įŠ į‹įˆ®į“/įŠ į‰“įŠ•įˆµ" #: timezones.h:733 msgid "Europe/Belfast" msgstr "įŠ į‹įˆ®į“/į‰¤įˆį‹įˆµį‰µ" #: timezones.h:734 msgid "Europe/Belgrade" msgstr "įŠ į‹įˆ®į“/į‰ įˆįŒįˆ¬į‹µ" #: timezones.h:735 msgid "Europe/Berlin" msgstr "įŠ į‹įˆ®į“/į‰ įˆ­įˆŠįŠ•" #: timezones.h:736 msgid "Europe/Bratislava" msgstr "įŠ į‹įˆ®į“/Bratislava" #: timezones.h:737 msgid "Europe/Brussels" msgstr "įŠ į‹įˆ®į“/į‰„įˆ«įˆµįˆįˆµ" #: timezones.h:738 msgid "Europe/Bucharest" msgstr "įŠ į‹įˆ®į“/į‰”į‰»įˆØįˆµį‰µ" #: timezones.h:739 msgid "Europe/Budapest" msgstr "įŠ į‹įˆ®į“/į‰”į‹³į’įˆµį‰µ" #: timezones.h:740 msgid "Europe/Chisinau" msgstr "įŠ į‹įˆ®į“/į‰ŗįˆ²įŠ“į‹" #: timezones.h:741 msgid "Europe/Copenhagen" msgstr "įŠ į‹įˆ®į“/įŠ®įįŠ•įˆ€įŒˆįŠ•" #: timezones.h:742 msgid "Europe/Dublin" msgstr "įŠ į‹įˆ®į“/į‹±į‰„įˆŠįŠ•" #: timezones.h:743 msgid "Europe/Gibraltar" msgstr "įŠ į‹įˆ®į“/įŒŠį‰„įˆ«įˆį‰³įˆ­" #: timezones.h:744 #, fuzzy msgid "Europe/Guernsey" msgstr "įŠ į‹įˆ®į“/įŠ į‰“įŠ•įˆµ" #: timezones.h:745 msgid "Europe/Helsinki" msgstr "įŠ į‹įˆ®į“/įˆ€įˆįˆ²įŠ•įŠŖ" #: timezones.h:746 #, fuzzy msgid "Europe/Isle_of_Man" msgstr "įŠ į‹įˆ®į“/įŠ¦įˆµįˆŽ" #: timezones.h:747 msgid "Europe/Istanbul" msgstr "įŠ į‹įˆ®į“/įŠ¢įˆµį‰³įŠ•į‰”įˆ" #: timezones.h:748 #, fuzzy msgid "Europe/Jersey" msgstr "įŠ į‹įˆ®į“/į“įˆ­įˆµ" #: timezones.h:749 msgid "Europe/Kaliningrad" msgstr "įŠ į‹įˆ®į“/įŠ«įˆŠįŠ’įŠ•įŒ‹įˆ­į‹µ" #. comment for time zone Europe/Kaliningrad #: timezones.h:751 msgid "Moscow-01 - Kaliningrad" msgstr "" #: timezones.h:752 msgid "Europe/Kiev" msgstr "įŠ į‹įˆ®į“/įŠ«į‹­į‰­" #: timezones.h:755 msgid "Europe/Lisbon" msgstr "įŠ į‹įˆ®į“/įˆŠįˆµį‰¦įŠ•" #: timezones.h:758 msgid "Europe/Ljubljana" msgstr "įŠ į‹įˆ®į“/Ljubljana" #: timezones.h:759 msgid "Europe/London" msgstr "įŠ į‹įˆ®į“/įˆŽįŠ•į‹¶įŠ•" #: timezones.h:760 msgid "Europe/Luxembourg" msgstr "įŠ į‹įˆ®į“/įˆ‰įŠ­į‹˜įˆį‰ įˆ­įŒ" #: timezones.h:761 msgid "Europe/Madrid" msgstr "įŠ į‹įˆ®į“/įˆ›įˆ­į‹µįˆŖį‹µ" #: timezones.h:764 msgid "Europe/Malta" msgstr "įŠ į‹įˆ®į“/įˆ›įˆį‰³" #: timezones.h:765 #, fuzzy msgid "Europe/Mariehamn" msgstr "įŠ į‹įˆ®į“/įˆ›įˆ­į‹µįˆŖį‹µ" #: timezones.h:766 msgid "Europe/Minsk" msgstr "įŠ į‹įˆ®į“/įˆšįŠ•įˆµįŠ­" #: timezones.h:767 msgid "Europe/Monaco" msgstr "įŠ į‹įˆ®į“/įˆžįŠ“įŠ®" #: timezones.h:768 msgid "Europe/Moscow" msgstr "įŠ į‹įˆ®į“/įˆ›įˆµįŠ®" #. comment for time zone Europe/Moscow #: timezones.h:770 msgid "Moscow+00 - west Russia" msgstr "" #: timezones.h:771 msgid "Europe/Nicosia" msgstr "įŠ į‹įˆ®į“/Nicosia" #: timezones.h:772 msgid "Europe/Oslo" msgstr "įŠ į‹įˆ®į“/įŠ¦įˆµįˆŽ" #: timezones.h:773 msgid "Europe/Paris" msgstr "įŠ į‹įˆ®į“/į“įˆ­įˆµ" #: timezones.h:774 #, fuzzy msgid "Europe/Podgorica" msgstr "įŠ į‹įˆ®į“/įŠ įŠ•į‹¶įˆ«" #: timezones.h:775 msgid "Europe/Prague" msgstr "įŠ į‹įˆ®į“/į“įˆ«įŒ“į‹­" #: timezones.h:776 msgid "Europe/Riga" msgstr "įŠ į‹įˆ®į“/įˆŖįŒ‹" #: timezones.h:777 msgid "Europe/Rome" msgstr "įŠ į‹įˆ®į“/įˆ®įˆ" #: timezones.h:778 msgid "Europe/Samara" msgstr "įŠ į‹įˆ®į“/įˆ³įˆ›įˆ«" #. comment for time zone Europe/Samara #: timezones.h:780 msgid "Moscow - Samara, Udmurtia" msgstr "" #: timezones.h:781 msgid "Europe/San_Marino" msgstr "įŠ į‹įˆ®į“/San_Marino" #: timezones.h:782 msgid "Europe/Sarajevo" msgstr "įŠ į‹įˆ®į“/Sarajevo" #: timezones.h:783 msgid "Europe/Simferopol" msgstr "įŠ į‹įˆ®į“/įˆ²įˆįˆįˆ®į–įˆ" #. comment for time zone Europe/Simferopol #: timezones.h:785 msgid "central Crimea" msgstr "" #: timezones.h:786 msgid "Europe/Skopje" msgstr "įŠ į‹įˆ®į“/Skopje" #: timezones.h:787 msgid "Europe/Sofia" msgstr "įŠ į‹įˆ®į“/įˆ¶įŠį‹«" #: timezones.h:788 msgid "Europe/Stockholm" msgstr "įŠ į‹įˆ®į“/įˆµį‰¶įŠ®įˆįˆ" #: timezones.h:789 msgid "Europe/Tallinn" msgstr "įŠ į‹įˆ®į“/į‰³įˆŠįŠ•" #: timezones.h:790 msgid "Europe/Tirane" msgstr "įŠ į‹įˆ®į“/į‰²įˆ«įŠ•" #: timezones.h:791 msgid "Europe/Tiraspol" msgstr "įŠ į‹įˆ®į“/Tiraspol" #: timezones.h:792 msgid "Europe/Uzhgorod" msgstr "įŠ į‹įˆ®į“/įŠ”į‹įŒŽįˆ©į‹µ" #. comment for time zone Europe/Uzhgorod #: timezones.h:794 msgid "Ruthenia" msgstr "" #: timezones.h:795 msgid "Europe/Vaduz" msgstr "įŠ į‹įˆ®į“/į‰«į‹±į‹" #: timezones.h:796 msgid "Europe/Vatican" msgstr "įŠ į‹įˆ®į“/Vatican" #: timezones.h:797 msgid "Europe/Vienna" msgstr "įŠ į‹įˆ®į“/į‰«į‹­įŠ“" #: timezones.h:798 msgid "Europe/Vilnius" msgstr "įŠ į‹įˆ®į“/į‰ŖįˆįŠ’įŠ”įˆµ" #: timezones.h:799 #, fuzzy msgid "Europe/Volgograd" msgstr "įŠ į‹įˆ®į“/į‰ įˆįŒįˆ¬į‹µ" #. comment for time zone Europe/Volgograd #: timezones.h:801 msgid "Moscow+00 - Caspian Sea" msgstr "" #: timezones.h:802 msgid "Europe/Warsaw" msgstr "įŠ į‹įˆ®į“/į‹‹įˆ­įˆ¶" #: timezones.h:803 msgid "Europe/Zagreb" msgstr "įŠ į‹įˆ®į“/Zagreb" #: timezones.h:804 msgid "Europe/Zaporozhye" msgstr "įŠ į‹įˆ®į“/į‹›į–įˆ®į‹įˆ‚į‹­" #. comment for time zone Europe/Zaporozhye #: timezones.h:806 msgid "Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk" msgstr "" #: timezones.h:807 msgid "Europe/Zurich" msgstr "įŠ į‹įˆ®į“/į‹™įˆŖįŠ­" #: timezones.h:808 msgid "Factory" msgstr "Factory" #: timezones.h:809 msgid "GB" msgstr "GB" #: timezones.h:810 msgid "GB-Eire" msgstr "GB-Eire" #: timezones.h:811 msgid "GMT" msgstr "GMT" #: timezones.h:812 msgid "GMT0" msgstr "GMT0" #: timezones.h:813 msgid "GMT-0" msgstr "GMT-0" #: timezones.h:814 msgid "GMT+0" msgstr "GMT+0" #: timezones.h:815 msgid "Greenwich" msgstr "Greenwich" #: timezones.h:816 msgid "Hongkong" msgstr "įˆ†įŠ•įŒįŠ®įŠ•įŒ" #: timezones.h:817 msgid "HST" msgstr "HST" #: timezones.h:818 msgid "Iceland" msgstr "įŠ į‹­įˆµįˆ‹įŠ•į‹µ" #: timezones.h:819 msgid "Indian/Antananarivo" msgstr "įˆ•įŠ•į‹µ/įŠ įŠ•į‰³įŠ“įŠ įˆŖį‰®" #: timezones.h:820 msgid "Indian/Chagos" msgstr "įˆ•įŠ•į‹µ/į‰»įŒŽįˆµ" #: timezones.h:821 msgid "Indian/Christmas" msgstr "įˆ•įŠ•į‹µ/įŒˆįŠ“" #: timezones.h:822 msgid "Indian/Cocos" msgstr "įˆ•įŠ•į‹µ/ኮኮስ" #: timezones.h:823 msgid "Indian/Comoro" msgstr "įˆ•įŠ•į‹µ/įŠ®įˆžįˆ®" #: timezones.h:824 msgid "Indian/Kerguelen" msgstr "įˆ•įŠ•į‹µ/įŠØįˆ­įŒ‰įŠ¤įˆˆįŠ•" #: timezones.h:825 msgid "Indian/Mahe" msgstr "įˆ•įŠ•į‹µ/įˆ›įˆ‚" #: timezones.h:826 msgid "Indian/Maldives" msgstr "įˆ•įŠ•į‹µ/įˆ›įˆį‹²į‰Ŗįˆµ" #: timezones.h:827 msgid "Indian/Mauritius" msgstr "įˆ•įŠ•į‹µ/įˆžįˆŖįˆ½į‹Øįˆµ" #: timezones.h:828 msgid "Indian/Mayotte" msgstr "įˆ•įŠ•į‹µ/įˆ›į‹®į‰“" #: timezones.h:829 msgid "Indian/Reunion" msgstr "įˆ•įŠ•į‹µ/įˆŖį‹©įŠ’į‹ØįŠ•" #: timezones.h:830 msgid "Iran" msgstr "įŠ¢įˆ«įŠ•" #: timezones.h:831 msgid "iso3166.tab" msgstr "" #: timezones.h:832 msgid "Israel" msgstr "įŠ„įˆµįˆ«įŠ¤įˆ" #: timezones.h:833 msgid "Jamaica" msgstr "įŒƒįˆ›į‹­įŠ«" #: timezones.h:834 msgid "Japan" msgstr "įŒƒį“įŠ•" #. comment for time zone Pacific/Kwajalein #: timezones.h:835 timezones.h:891 msgid "Kwajalein" msgstr "Kwajalein" #: timezones.h:836 msgid "Libya" msgstr "įˆŠį‰¢į‹«" #: timezones.h:837 msgid "MET" msgstr "MET" #: timezones.h:838 msgid "Mexico/BajaNorte" msgstr "Mexico/BajaNorte" #: timezones.h:839 msgid "Mexico/BajaSur" msgstr "Mexico/BajaSur" #: timezones.h:840 msgid "Mexico/General" msgstr "Mexico/General" #: timezones.h:841 msgid "Mideast/Riyadh87" msgstr "Mideast/Riyadh87" #: timezones.h:842 msgid "Mideast/Riyadh88" msgstr "Mideast/Riyadh88" #: timezones.h:843 msgid "Mideast/Riyadh89" msgstr "Mideast/Riyadh89" #: timezones.h:844 msgid "MST" msgstr "MST" #: timezones.h:845 msgid "MST7MDT" msgstr "MST7MDT" #: timezones.h:846 msgid "Navajo" msgstr "Navajo" #: timezones.h:847 msgid "NZ" msgstr "NZ" #: timezones.h:848 msgid "NZ-CHAT" msgstr "NZ-CHAT" #: timezones.h:849 msgid "Pacific/Apia" msgstr "į“įˆ²įŠįŠ­/įŠ į’į‹«" #: timezones.h:850 msgid "Pacific/Auckland" msgstr "į“įˆ²įŠįŠ­/įŠ¦įŠ­įˆ‹įŠ•į‹µ" #: timezones.h:853 msgid "Pacific/Chatham" msgstr "į“įˆ²įŠįŠ­/į‰»į‰µįˆƒįˆ" #. comment for time zone Pacific/Chatham #: timezones.h:855 #, fuzzy msgid "Chatham Islands" msgstr "Chile/EasterIsland" #: timezones.h:856 #, fuzzy msgid "Pacific/Chuuk" msgstr "į“įˆ²įŠįŠ­/į‰µįˆ©įŠ­" #. comment for time zone Pacific/Chuuk #: timezones.h:858 msgid "Chuuk (Truk) and Yap" msgstr "" #: timezones.h:859 #, fuzzy msgid "Pacific/Easter" msgstr "į“įˆ²įŠįŠ­/įŠ¢įˆµį‰°įˆ­" #. comment for time zone Pacific/Easter #: timezones.h:861 msgid "Easter Island & Sala y Gomez" msgstr "" #: timezones.h:862 msgid "Pacific/Efate" msgstr "į“įˆ²įŠįŠ­/įŠ¤į‹į‰°" #: timezones.h:863 msgid "Pacific/Enderbury" msgstr "į“įˆ²įŠįŠ­/įŠ„įŠ•į‹°įˆ­į‰”įˆ­į‹­" #. comment for time zone Pacific/Enderbury #: timezones.h:865 msgid "Phoenix Islands" msgstr "" #: timezones.h:866 msgid "Pacific/Fakaofo" msgstr "į“įˆ²įŠįŠ­/į‹įŠ«įŠ¦įŽ" #: timezones.h:867 msgid "Pacific/Fiji" msgstr "į“įˆ²įŠįŠ­/įŠįŒ‚" #: timezones.h:868 msgid "Pacific/Funafuti" msgstr "į“įˆ²įŠįŠ­/į‰įŠ“į‰į‰²" #: timezones.h:869 msgid "Pacific/Galapagos" msgstr "į“įˆ²įŠįŠ­/įŒ‹įˆ‹į“įŒŽįˆµ" #. comment for time zone Pacific/Galapagos #: timezones.h:871 msgid "Galapagos Islands" msgstr "" #: timezones.h:872 msgid "Pacific/Gambier" msgstr "į“įˆ²įŠįŠ­/įŒ‹įˆį‰£į‹Øįˆ­" #. comment for time zone Pacific/Gambier #: timezones.h:874 msgid "Gambier Islands" msgstr "" #: timezones.h:875 msgid "Pacific/Guadalcanal" msgstr "į“įˆ²įŠįŠ­/įŒ‰į‹‹į‹³įˆįŠ«įŠ“įˆ" #: timezones.h:876 msgid "Pacific/Guam" msgstr "į“įˆ²įŠįŠ­/įŒ‰į‹‹įˆ" #: timezones.h:877 msgid "Pacific/Honolulu" msgstr "į“įˆ²įŠįŠ­/įˆ†įŠ–įˆ‰įˆ‰" #. comment for time zone Pacific/Honolulu #: timezones.h:879 #, fuzzy msgid "Hawaii" msgstr "US/Hawaii" #: timezones.h:880 msgid "Pacific/Johnston" msgstr "į“įˆ²įŠįŠ­/įŒ†įŠ•įˆµį‰¶įŠ•" #. comment for time zone Pacific/Johnston #: timezones.h:882 msgid "Johnston Atoll" msgstr "" #: timezones.h:883 msgid "Pacific/Kiritimati" msgstr "į“įˆ²įŠįŠ­/įŠŖįˆŖį‰²įˆ›į‰²" #. comment for time zone Pacific/Kiritimati #: timezones.h:885 msgid "Line Islands" msgstr "" #: timezones.h:886 msgid "Pacific/Kosrae" msgstr "į“įˆ²įŠįŠ­/įŠ®įˆµįˆ«į‹­" #. comment for time zone Pacific/Kosrae #: timezones.h:888 #, fuzzy msgid "Kosrae" msgstr "įŠ„įˆµįˆ«įŠ¤įˆ" #: timezones.h:889 msgid "Pacific/Kwajalein" msgstr "į“įˆ²įŠįŠ­/įŠ­į‹‹įŒƒįˆ‹į‹­įŠ•" #: timezones.h:892 msgid "Pacific/Majuro" msgstr "į“įˆ²įŠįŠ­/įˆ›įŒįˆ®" #: timezones.h:895 msgid "Pacific/Marquesas" msgstr "į“įˆ²įŠįŠ­/įˆ›įˆ©įŠ©įˆ³įˆµ" #. comment for time zone Pacific/Marquesas #: timezones.h:897 msgid "Marquesas Islands" msgstr "" #: timezones.h:898 msgid "Pacific/Midway" msgstr "į“įˆ²įŠįŠ­/įˆšį‹µį‹Œ" #. comment for time zone Pacific/Midway #: timezones.h:900 msgid "Midway Islands" msgstr "" #: timezones.h:901 msgid "Pacific/Nauru" msgstr "į“įˆ²įŠįŠ­/įŠ“į‹įˆ©" #: timezones.h:902 msgid "Pacific/Niue" msgstr "į“įˆ²įŠįŠ­/įŠ’į‹Œ" #: timezones.h:903 msgid "Pacific/Norfolk" msgstr "į“įˆ²įŠįŠ­/įŠ‘įˆ­įŽįˆįŠ­" #: timezones.h:904 msgid "Pacific/Noumea" msgstr "į“įˆ²įŠįŠ­/įŠ–įŠ”įˆœįŠ " #: timezones.h:905 msgid "Pacific/Pago_Pago" msgstr "į“įˆ²įŠįŠ­/į“įŒŽ_į“įŒŽ" #: timezones.h:906 msgid "Pacific/Palau" msgstr "į“įˆ²įŠįŠ­/į“įˆ‹į‹" #: timezones.h:907 msgid "Pacific/Pitcairn" msgstr "į“įˆ²įŠįŠ­/į’į‰µįŠ¬įˆ" #: timezones.h:908 #, fuzzy msgid "Pacific/Pohnpei" msgstr "į“įˆ²įŠįŠ­/į–įŠ”į•" #. comment for time zone Pacific/Pohnpei #: timezones.h:910 msgid "Pohnpei (Ponape)" msgstr "" #: timezones.h:911 msgid "Pacific/Ponape" msgstr "į“įˆ²įŠįŠ­/į–įŠ”į•" #: timezones.h:912 msgid "Pacific/Port_Moresby" msgstr "į“įˆ²įŠįŠ­/į–įˆ­į‰µ_įˆžįˆØįˆµį‰¢" #: timezones.h:913 msgid "Pacific/Rarotonga" msgstr "į“įˆ²įŠįŠ­/įˆ«įˆ®į‰¶įŠ•įŒ‹" #: timezones.h:914 msgid "Pacific/Saipan" msgstr "į“įˆ²įŠįŠ­/įˆ³į‹­į“įŠ•" #: timezones.h:915 msgid "Pacific/Samoa" msgstr "į“įˆ²įŠįŠ­/Samoa" #: timezones.h:916 msgid "Pacific/Tahiti" msgstr "į“įˆ²įŠįŠ­/į‰³įˆ‚į‰²" #. comment for time zone Pacific/Tahiti #: timezones.h:918 msgid "Society Islands" msgstr "" #: timezones.h:919 msgid "Pacific/Tarawa" msgstr "į“įˆ²įŠįŠ­/į‰³įˆ«į‹‹" #. comment for time zone Pacific/Tarawa #: timezones.h:921 #, fuzzy msgid "Gilbert Islands" msgstr "Chile/EasterIsland" #: timezones.h:922 msgid "Pacific/Tongatapu" msgstr "į“įˆ²įŠįŠ­/į‰¶įŠ•įŒ‹į‰³į‘" #: timezones.h:923 msgid "Pacific/Truk" msgstr "į“įˆ²įŠįŠ­/į‰µįˆ©įŠ­" #: timezones.h:924 msgid "Pacific/Wake" msgstr "į“įˆ²įŠįŠ­/į‹ŒįŠ­" #. comment for time zone Pacific/Wake #: timezones.h:926 msgid "Wake Island" msgstr "" #: timezones.h:927 msgid "Pacific/Wallis" msgstr "į“įˆ²įŠįŠ­/į‹‹įˆŠįˆµ" #: timezones.h:928 msgid "Pacific/Yap" msgstr "į“įˆ²įŠįŠ­/į‹«į•" #: timezones.h:929 msgid "Poland" msgstr "į–įˆ‹įŠ•į‹µ" #: timezones.h:930 msgid "Portugal" msgstr "į–įˆ­į‰±įŒ‹įˆ" #: timezones.h:931 msgid "posixrules" msgstr "" #: timezones.h:932 msgid "PRC" msgstr "PRC" #: timezones.h:933 msgid "PST8PDT" msgstr "PST8PDT" #: timezones.h:934 msgid "ROC" msgstr "ROC" #: timezones.h:935 msgid "ROK" msgstr "ROK" #: timezones.h:936 msgid "Singapore" msgstr "įˆ²įŠ•įŒ‹į–įˆ­" #: timezones.h:937 msgid "Turkey" msgstr "į‰±įˆ­įŠ­" #: timezones.h:938 msgid "UCT" msgstr "UCT" #: timezones.h:939 msgid "Universal" msgstr "Universal" #: timezones.h:940 msgid "US/Alaska" msgstr "US/Alaska" #: timezones.h:941 msgid "US/Aleutian" msgstr "US/Aleutian" #: timezones.h:942 msgid "US/Arizona" msgstr "US/Arizona" #: timezones.h:943 msgid "US/Central" msgstr "US/Central" #: timezones.h:944 msgid "US/Eastern" msgstr "US/Eastern" #: timezones.h:945 msgid "US/East-Indiana" msgstr "US/East-Indiana" #: timezones.h:946 msgid "US/Hawaii" msgstr "US/Hawaii" #: timezones.h:947 msgid "US/Indiana-Starke" msgstr "US/Indiana-Starke" #: timezones.h:948 msgid "US/Michigan" msgstr "US/Michigan" #: timezones.h:949 msgid "US/Mountain" msgstr "US/Mountain" #: timezones.h:950 msgid "US/Pacific" msgstr "US/Pacific" #: timezones.h:951 msgid "US/Samoa" msgstr "US/Samoa" #: timezones.h:952 msgid "UTC" msgstr "UTC" #: timezones.h:953 msgid "WET" msgstr "WET" #: timezones.h:954 msgid "W-SU" msgstr "W-SU" #: timezones.h:955 msgid "Zulu" msgstr "Zulu" #, fuzzy #~ msgid "US/Pacific-New" #~ msgstr "US/Pacific" #~ msgid "SystemV/AST4" #~ msgstr "SystemV/AST4" #~ msgid "SystemV/AST4ADT" #~ msgstr "SystemV/AST4ADT" #~ msgid "SystemV/CST6" #~ msgstr "SystemV/CST6" #~ msgid "SystemV/CST6CDT" #~ msgstr "SystemV/CST6CDT" #~ msgid "SystemV/EST5" #~ msgstr "SystemV/EST5" #~ msgid "SystemV/EST5EDT" #~ msgstr "SystemV/EST5EDT" #~ msgid "SystemV/HST10" #~ msgstr "SystemV/HST10" #~ msgid "SystemV/MST7" #~ msgstr "SystemV/MST7" #~ msgid "SystemV/MST7MDT" #~ msgstr "SystemV/MST7MDT" #~ msgid "SystemV/PST8" #~ msgstr "SystemV/PST8" #~ msgid "SystemV/PST8PDT" #~ msgstr "SystemV/PST8PDT" #~ msgid "SystemV/YST9" #~ msgstr "SystemV/YST9" #~ msgid "SystemV/YST9YDT" #~ msgstr "SystemV/YST9YDT" cinnamon-control-center-6.2.0/panels/datetime/date-endian.c0000664000175000017500000000742114632072346022607 0ustar fabiofabio/* * Copyright (C) 2011 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA 02110-1335, USA. * * Author: Bastien Nocera * */ #include #include #include #include #include "date-endian.h" /* We default to returning DATE_ENDIANESS_MIDDLE because that's * what 3.2 billion people use */ #define DEFAULT_ENDIANESS DATE_ENDIANESS_LITTLE typedef enum { ITEM_NONE = 0, ITEM_DAY, ITEM_MONTH, ITEM_YEAR } Item; static gboolean has_item (Item *items, Item item) { guint i; for (i = 0; i < 3; i++) { if (items[i] == ITEM_NONE) return FALSE; if (items[i] == item) return TRUE; } return FALSE; } DateEndianess date_endian_get_default (gboolean verbose) { const char *fmt; const char *p; Item items[3]; guint i; fmt = nl_langinfo (D_FMT); g_return_val_if_fail (fmt != NULL, DEFAULT_ENDIANESS); if (verbose) g_print ("%s", fmt); if (g_str_equal (fmt, "%F")) return DATE_ENDIANESS_BIG; i = 0; memset (&items, 0, sizeof(items)); /* Assume ASCII only */ for (p = fmt; *p != '\0'; p++) { char c; /* Look for '%' */ if (*p != '%') continue; /* Only assert when we're sure we don't have another '%' */ if (i >= 4) { g_warning ("Could not parse format '%s', too many formats", fmt); return DEFAULT_ENDIANESS; } c = *(p + 1); /* Ignore alternative formats */ if (c == 'O' || c == '-' || c == 'E') c = *(p + 2); if (c == '\0') { g_warning ("Count not parse format '%s', unterminated '%%'", fmt); return DEFAULT_ENDIANESS; } switch (c) { case 'A': case 'd': case 'e': if (has_item (items, ITEM_DAY) == FALSE) { items[i] = ITEM_DAY; i++; } break; case 'm': case 'b': case 'B': if (has_item (items, ITEM_MONTH) == FALSE) { items[i] = ITEM_MONTH; i++; } break; case 'y': case 'Y': if (has_item (items, ITEM_YEAR) == FALSE) { items[i] = ITEM_YEAR; i++; } break; case 'a': /* Ignore */ ; } } if (items[0] == ITEM_DAY && items[1] == ITEM_MONTH && items[2] == ITEM_YEAR) return DATE_ENDIANESS_LITTLE; if (items[0] == ITEM_YEAR && items[1] == ITEM_MONTH && items[2] == ITEM_DAY) return DATE_ENDIANESS_BIG; if (items[0] == ITEM_MONTH && items[1] == ITEM_DAY && items[2] == ITEM_YEAR) return DATE_ENDIANESS_MIDDLE; if (items[0] == ITEM_YEAR && items[1] == ITEM_DAY && items[2] == ITEM_MONTH) return DATE_ENDIANESS_YDM; g_warning ("Could not parse format '%s'", fmt); return DEFAULT_ENDIANESS; } DateEndianess date_endian_get_for_lang (const char *lang, gboolean verbose) { const char *old_lang; DateEndianess endian; old_lang = setlocale (LC_TIME, lang); endian = date_endian_get_default (verbose); setlocale (LC_TIME, old_lang); return endian; } const char * date_endian_to_string (DateEndianess endianess) { switch (endianess) { case DATE_ENDIANESS_LITTLE: return "Little (DD-MM-YYYY)"; case DATE_ENDIANESS_BIG: return "Big (YYYY-MM-DD)"; case DATE_ENDIANESS_MIDDLE: return "Middle (MM-DD-YYYY)"; case DATE_ENDIANESS_YDM: return "YDM (YYYY-DD-MM)"; default: g_assert_not_reached (); } } cinnamon-control-center-6.2.0/panels/datetime/test-timezone-gfx.c0000664000175000017500000000240714632072346024026 0ustar fabiofabio#include #include #include "tz.h" int main (int argc, char **argv) { TzDB *db; GPtrArray *locs; guint i; char *pixmap_dir; int retval = 0; setlocale (LC_ALL, ""); if (argc == 2) { pixmap_dir = g_strdup (argv[1]); } else if (argc == 1) { pixmap_dir = g_strdup ("data/"); } else { g_message ("Usage: %s [PIXMAP DIRECTORY]", argv[0]); return 1; } db = tz_load_db (); locs = tz_get_locations (db); for (i = 0; i < locs->len ; i++) { TzLocation *loc = locs->pdata[i]; TzInfo *info; char *filename, *path; gdouble selected_offset; char buf[16]; info = tz_info_from_location (loc); selected_offset = tz_location_get_utc_offset (loc) / (60.0*60.0) + ((info->daylight) ? -1.0 : 0.0); filename = g_strdup_printf ("timezone_%s.png", g_ascii_formatd (buf, sizeof (buf), "%g", selected_offset)); path = g_build_filename (pixmap_dir, filename, NULL); if (g_file_test (path, G_FILE_TEST_IS_REGULAR) == FALSE) { g_message ("File '%s' missing for zone '%s'", filename, loc->zone); retval = 1; } g_free (filename); g_free (path); } tz_db_free (db); g_free (pixmap_dir); return retval; } cinnamon-control-center-6.2.0/panels/datetime/org.cinnamon.controlcenter.datetime.policy.in0000664000175000017500000000165414632072346031165 0ustar fabiofabio Cinnamon https://github.com/linuxmint/cinnamon-control-center <_description>Change system time and date settings <_message>To change time or date settings, you need to authenticate. no no auth_admin_keep org.freedesktop.timedate1.set-time org.freedesktop.timedate1.set-timezone org.freedesktop.timedate1.set-local-rtc org.freedesktop.timedate1.set-ntp cinnamon-control-center-6.2.0/panels/datetime/test-endianess.c0000664000175000017500000000211014632072346023352 0ustar fabiofabio#include #include #include #include "date-endian.h" static int verbose = 0; static void print_endianess (const char *lang) { DateEndianess endianess; if (lang != NULL) { setlocale (LC_TIME, lang); endianess = date_endian_get_for_lang (lang, verbose); } else { endianess = date_endian_get_default (verbose); } if (verbose) g_print ("\t\t%s\n", date_endian_to_string (endianess)); } int main (int argc, char **argv) { GDir *dir; const char *name; setlocale (LC_ALL, ""); bind_textdomain_codeset ("libc", "UTF-8"); if (argv[1] != NULL) { verbose = 1; if (g_str_equal (argv[1], "-c")) print_endianess (NULL); else print_endianess (argv[1]); return 0; } dir = g_dir_open ("/usr/share/i18n/locales/", 0, NULL); if (dir == NULL) { /* Try with /usr/share/locale/ * https://bugzilla.gnome.org/show_bug.cgi?id=646780 */ dir = g_dir_open ("/usr/share/locale/", 0, NULL); if (dir == NULL) { return 1; } } while ((name = g_dir_read_name (dir)) != NULL) print_endianess (name); g_dir_close (dir); return 0; } cinnamon-control-center-6.2.0/panels/datetime/cc-timezone-map.h0000664000175000017500000000420714632072346023432 0ustar fabiofabio/* * Copyright (C) 2010 Intel, Inc * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA 02110-1335, USA. * * Author: Thomas Wood * */ #ifndef _CC_TIMEZONE_MAP_H #define _CC_TIMEZONE_MAP_H #include #include "tz.h" G_BEGIN_DECLS #define CC_TYPE_TIMEZONE_MAP cc_timezone_map_get_type() #define CC_TIMEZONE_MAP(obj) \ (G_TYPE_CHECK_INSTANCE_CAST ((obj), \ CC_TYPE_TIMEZONE_MAP, CcTimezoneMap)) #define CC_TIMEZONE_MAP_CLASS(klass) \ (G_TYPE_CHECK_CLASS_CAST ((klass), \ CC_TYPE_TIMEZONE_MAP, CcTimezoneMapClass)) #define CC_IS_TIMEZONE_MAP(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \ CC_TYPE_TIMEZONE_MAP)) #define CC_IS_TIMEZONE_MAP_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE ((klass), \ CC_TYPE_TIMEZONE_MAP)) #define CC_TIMEZONE_MAP_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), \ CC_TYPE_TIMEZONE_MAP, CcTimezoneMapClass)) typedef struct _CcTimezoneMap CcTimezoneMap; typedef struct _CcTimezoneMapClass CcTimezoneMapClass; typedef struct _CcTimezoneMapPrivate CcTimezoneMapPrivate; struct _CcTimezoneMap { GtkWidget parent; CcTimezoneMapPrivate *priv; }; struct _CcTimezoneMapClass { GtkWidgetClass parent_class; }; GType cc_timezone_map_get_type (void) G_GNUC_CONST; CcTimezoneMap *cc_timezone_map_new (void); gboolean cc_timezone_map_set_timezone (CcTimezoneMap *map, const gchar *timezone); TzLocation * cc_timezone_map_get_location (CcTimezoneMap *map); G_END_DECLS #endif /* _CC_TIMEZONE_MAP_H */ cinnamon-control-center-6.2.0/panels/datetime/cc-timezone-map.c0000664000175000017500000004153614632072346023433 0ustar fabiofabio/* * Copyright (C) 2010 Intel, Inc * * Portions from Ubiquity, Copyright (C) 2009 Canonical Ltd. * Written by Evan Dandrea * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA 02110-1335, USA. * * Author: Thomas Wood * */ #include "config.h" #include "cc-timezone-map.h" #include #include #include "tz.h" G_DEFINE_TYPE (CcTimezoneMap, cc_timezone_map, GTK_TYPE_WIDGET) #define TIMEZONE_MAP_PRIVATE(o) \ (G_TYPE_INSTANCE_GET_PRIVATE ((o), CC_TYPE_TIMEZONE_MAP, CcTimezoneMapPrivate)) typedef struct { gdouble offset; guchar red; guchar green; guchar blue; guchar alpha; } CcTimezoneMapOffset; struct _CcTimezoneMapPrivate { GdkPixbuf *orig_background; GdkPixbuf *orig_background_dim; GdkPixbuf *orig_color_map; GdkPixbuf *background; GdkPixbuf *color_map; guchar *visible_map_pixels; gint visible_map_rowstride; gdouble selected_offset; TzDB *tzdb; TzLocation *location; }; enum { LOCATION_CHANGED, LAST_SIGNAL }; static guint signals[LAST_SIGNAL] = { 0 }; static CcTimezoneMapOffset color_codes[] = { {-11.0, 43, 0, 0, 255 }, {-10.0, 85, 0, 0, 255 }, {-9.5, 102, 255, 0, 255 }, {-9.0, 128, 0, 0, 255 }, {-8.0, 170, 0, 0, 255 }, {-7.0, 212, 0, 0, 255 }, {-6.0, 255, 0, 1, 255 }, /* north */ {-6.0, 255, 0, 0, 255 }, /* south */ {-5.0, 255, 42, 42, 255 }, {-4.5, 192, 255, 0, 255 }, {-4.0, 255, 85, 85, 255 }, {-3.5, 0, 255, 0, 255 }, {-3.0, 255, 128, 128, 255 }, {-2.0, 255, 170, 170, 255 }, {-1.0, 255, 213, 213, 255 }, {0.0, 43, 17, 0, 255 }, {1.0, 85, 34, 0, 255 }, {2.0, 128, 51, 0, 255 }, {3.0, 170, 68, 0, 255 }, {3.5, 0, 255, 102, 255 }, {4.0, 212, 85, 0, 255 }, {4.5, 0, 204, 255, 255 }, {5.0, 255, 102, 0, 255 }, {5.5, 0, 102, 255, 255 }, {5.75, 0, 238, 207, 247 }, {6.0, 255, 127, 42, 255 }, {6.5, 204, 0, 254, 254 }, {7.0, 255, 153, 85, 255 }, {8.0, 255, 179, 128, 255 }, {9.0, 255, 204, 170, 255 }, {9.5, 170, 0, 68, 250 }, {10.0, 255, 230, 213, 255 }, {10.5, 212, 124, 21, 250 }, {11.0, 212, 170, 0, 255 }, {11.5, 249, 25, 87, 253 }, {12.0, 255, 204, 0, 255 }, {12.75, 254, 74, 100, 248 }, {13.0, 255, 85, 153, 250 }, {-100, 0, 0, 0, 0 } }; static void cc_timezone_map_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) { switch (property_id) { default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } } static void cc_timezone_map_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) { switch (property_id) { default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } } static void cc_timezone_map_dispose (GObject *object) { CcTimezoneMapPrivate *priv = CC_TIMEZONE_MAP (object)->priv; g_clear_object (&priv->orig_background); g_clear_object (&priv->orig_background_dim); if (priv->orig_color_map) { g_object_unref (priv->orig_color_map); priv->orig_color_map = NULL; } if (priv->background) { g_object_unref (priv->background); priv->background = NULL; } if (priv->color_map) { g_object_unref (priv->color_map); priv->color_map = NULL; priv->visible_map_pixels = NULL; priv->visible_map_rowstride = 0; } G_OBJECT_CLASS (cc_timezone_map_parent_class)->dispose (object); } static void cc_timezone_map_finalize (GObject *object) { CcTimezoneMapPrivate *priv = CC_TIMEZONE_MAP (object)->priv; if (priv->tzdb) { tz_db_free (priv->tzdb); priv->tzdb = NULL; } G_OBJECT_CLASS (cc_timezone_map_parent_class)->finalize (object); } /* GtkWidget functions */ static void cc_timezone_map_get_preferred_width (GtkWidget *widget, gint *minimum, gint *natural) { /* choose a minimum size small enough to prevent the window * from growing horizontally */ if (minimum != NULL) *minimum = 300; if (natural != NULL) *natural = 300; } static void cc_timezone_map_get_preferred_height (GtkWidget *widget, gint *minimum, gint *natural) { CcTimezoneMapPrivate *priv = CC_TIMEZONE_MAP (widget)->priv; gint size; /* The + 20 here is a slight tweak to make the map fill the * panel better without causing horizontal growing */ size = 300 * gdk_pixbuf_get_height (priv->orig_background) / gdk_pixbuf_get_width (priv->orig_background) + 20; if (minimum != NULL) *minimum = size; if (natural != NULL) *natural = size; } static void cc_timezone_map_size_allocate (GtkWidget *widget, GtkAllocation *allocation) { CcTimezoneMapPrivate *priv = CC_TIMEZONE_MAP (widget)->priv; GdkPixbuf *pixbuf; if (priv->background) g_object_unref (priv->background); if (!gtk_widget_is_sensitive (widget)) pixbuf = priv->orig_background_dim; else pixbuf = priv->orig_background; priv->background = gdk_pixbuf_scale_simple (pixbuf, allocation->width, allocation->height, GDK_INTERP_BILINEAR); if (priv->color_map) g_object_unref (priv->color_map); priv->color_map = gdk_pixbuf_scale_simple (priv->orig_color_map, allocation->width, allocation->height, GDK_INTERP_BILINEAR); priv->visible_map_pixels = gdk_pixbuf_get_pixels (priv->color_map); priv->visible_map_rowstride = gdk_pixbuf_get_rowstride (priv->color_map); GTK_WIDGET_CLASS (cc_timezone_map_parent_class)->size_allocate (widget, allocation); } static void cc_timezone_map_realize (GtkWidget *widget) { GdkWindowAttr attr = { 0, }; GtkAllocation allocation; GdkWindow *window; gtk_widget_get_allocation (widget, &allocation); gtk_widget_set_realized (widget, TRUE); attr.window_type = GDK_WINDOW_CHILD; attr.wclass = GDK_INPUT_OUTPUT; attr.width = allocation.width; attr.height = allocation.height; attr.x = allocation.x; attr.y = allocation.y; attr.event_mask = gtk_widget_get_events (widget) | GDK_EXPOSURE_MASK | GDK_BUTTON_PRESS_MASK; window = gdk_window_new (gtk_widget_get_parent_window (widget), &attr, GDK_WA_X | GDK_WA_Y); gdk_window_set_user_data (window, widget); gtk_widget_set_window (widget, window); } static gdouble convert_longtitude_to_x (gdouble longitude, gint map_width) { const gdouble xdeg_offset = -6; gdouble x; x = (map_width * (180.0 + longitude) / 360.0) + (map_width * xdeg_offset / 180.0); return x; } static gdouble radians (gdouble degrees) { return (degrees / 360.0) * G_PI * 2; } static gdouble convert_latitude_to_y (gdouble latitude, gdouble map_height) { gdouble bottom_lat = -59; gdouble top_lat = 81; gdouble top_per, y, full_range, top_offset, map_range; top_per = top_lat / 180.0; y = 1.25 * log (tan (G_PI_4 + 0.4 * radians (latitude))); full_range = 4.6068250867599998; top_offset = full_range * top_per; map_range = fabs (1.25 * log (tan (G_PI_4 + 0.4 * radians (bottom_lat))) - top_offset); y = fabs (y - top_offset); y = y / map_range; y = y * map_height; return y; } static gboolean cc_timezone_map_draw (GtkWidget *widget, cairo_t *cr) { CcTimezoneMapPrivate *priv = CC_TIMEZONE_MAP (widget)->priv; GdkPixbuf *hilight, *orig_hilight, *pin; GtkAllocation alloc; gchar *file; GError *err = NULL; gdouble pointx, pointy; char buf[16]; const char *fmt; gtk_widget_get_allocation (widget, &alloc); /* paint background */ gdk_cairo_set_source_pixbuf (cr, priv->background, 0, 0); cairo_paint (cr); /* paint hilight */ if (gtk_widget_is_sensitive (widget)) fmt = DATADIR "/timezone_%s.png"; else fmt = DATADIR "/timezone_%s_dim.png"; file = g_strdup_printf (fmt, g_ascii_formatd (buf, sizeof (buf), "%g", priv->selected_offset)); orig_hilight = gdk_pixbuf_new_from_file (file, &err); g_free (file); file = NULL; if (!orig_hilight) { g_warning ("Could not load hilight: %s", (err) ? err->message : "Unknown Error"); if (err) g_clear_error (&err); } else { hilight = gdk_pixbuf_scale_simple (orig_hilight, alloc.width, alloc.height, GDK_INTERP_BILINEAR); gdk_cairo_set_source_pixbuf (cr, hilight, 0, 0); cairo_paint (cr); g_object_unref (hilight); g_object_unref (orig_hilight); } /* load pin icon */ pin = gdk_pixbuf_new_from_file (DATADIR "/pin.png", &err); if (err) { g_warning ("Could not load pin icon: %s", err->message); g_clear_error (&err); } if (priv->location) { pointx = convert_longtitude_to_x (priv->location->longitude, alloc.width); pointy = convert_latitude_to_y (priv->location->latitude, alloc.height); if (pointy > alloc.height) pointy = alloc.height; if (pin) { gdk_cairo_set_source_pixbuf (cr, pin, pointx - 8, pointy - 14); cairo_paint (cr); } } if (pin) { g_object_unref (pin); } return TRUE; } static void update_cursor (GtkWidget *widget) { GdkWindow *window; GdkCursor *cursor = NULL; if (!gtk_widget_get_realized (widget)) return; if (gtk_widget_is_sensitive (widget)) { GdkDisplay *display; display = gtk_widget_get_display (widget); cursor = gdk_cursor_new_for_display (display, GDK_HAND2); } window = gtk_widget_get_window (widget); gdk_window_set_cursor (window, cursor); if (cursor) g_object_unref (cursor); } static void cc_timezone_map_state_flags_changed (GtkWidget *widget, GtkStateFlags prev_state) { update_cursor (widget); if (GTK_WIDGET_CLASS (cc_timezone_map_parent_class)->state_flags_changed) GTK_WIDGET_CLASS (cc_timezone_map_parent_class)->state_flags_changed (widget, prev_state); } static void cc_timezone_map_class_init (CcTimezoneMapClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass); g_type_class_add_private (klass, sizeof (CcTimezoneMapPrivate)); object_class->get_property = cc_timezone_map_get_property; object_class->set_property = cc_timezone_map_set_property; object_class->dispose = cc_timezone_map_dispose; object_class->finalize = cc_timezone_map_finalize; widget_class->get_preferred_width = cc_timezone_map_get_preferred_width; widget_class->get_preferred_height = cc_timezone_map_get_preferred_height; widget_class->size_allocate = cc_timezone_map_size_allocate; widget_class->realize = cc_timezone_map_realize; widget_class->draw = cc_timezone_map_draw; widget_class->state_flags_changed = cc_timezone_map_state_flags_changed; signals[LOCATION_CHANGED] = g_signal_new ("location-changed", CC_TYPE_TIMEZONE_MAP, G_SIGNAL_RUN_FIRST, 0, NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1, G_TYPE_POINTER); } static gint sort_locations (TzLocation *a, TzLocation *b) { if (a->dist > b->dist) return 1; if (a->dist < b->dist) return -1; return 0; } static void set_location (CcTimezoneMap *map, TzLocation *location) { CcTimezoneMapPrivate *priv = map->priv; TzInfo *info; priv->location = location; info = tz_info_from_location (priv->location); priv->selected_offset = tz_location_get_utc_offset (priv->location) / (60.0*60.0) + ((info->daylight) ? -1.0 : 0.0); g_signal_emit (map, signals[LOCATION_CHANGED], 0, priv->location); tz_info_free (info); } static gboolean button_press_event (GtkWidget *widget, GdkEventButton *event) { CcTimezoneMapPrivate *priv = CC_TIMEZONE_MAP (widget)->priv; gint x, y; guchar r, g, b, a; guchar *pixels; gint rowstride; gint i; const GPtrArray *array; gint width, height; GList *distances = NULL; GtkAllocation alloc; x = event->x; y = event->y; rowstride = priv->visible_map_rowstride; pixels = priv->visible_map_pixels; r = pixels[(rowstride * y + x * 4)]; g = pixels[(rowstride * y + x * 4) + 1]; b = pixels[(rowstride * y + x * 4) + 2]; a = pixels[(rowstride * y + x * 4) + 3]; for (i = 0; color_codes[i].offset != -100; i++) { if (color_codes[i].red == r && color_codes[i].green == g && color_codes[i].blue == b && color_codes[i].alpha == a) { priv->selected_offset = color_codes[i].offset; } } gtk_widget_queue_draw (widget); /* work out the co-ordinates */ array = tz_get_locations (priv->tzdb); gtk_widget_get_allocation (widget, &alloc); width = alloc.width; height = alloc.height; for (i = 0; i < array->len; i++) { gdouble pointx, pointy, dx, dy; TzLocation *loc = array->pdata[i]; pointx = convert_longtitude_to_x (loc->longitude, width); pointy = convert_latitude_to_y (loc->latitude, height); dx = pointx - x; dy = pointy - y; loc->dist = dx * dx + dy * dy; distances = g_list_prepend (distances, loc); } distances = g_list_sort (distances, (GCompareFunc) sort_locations); set_location (CC_TIMEZONE_MAP (widget), (TzLocation*) distances->data); g_list_free (distances); return TRUE; } static void cc_timezone_map_init (CcTimezoneMap *self) { CcTimezoneMapPrivate *priv; GError *err = NULL; priv = self->priv = TIMEZONE_MAP_PRIVATE (self); priv->orig_background = gdk_pixbuf_new_from_file (DATADIR "/bg.png", &err); if (!priv->orig_background) { g_warning ("Could not load background image: %s", (err) ? err->message : "Unknown error"); g_clear_error (&err); } priv->orig_background_dim = gdk_pixbuf_new_from_file (DATADIR "/bg_dim.png", &err); if (!priv->orig_background_dim) { g_warning ("Could not load background image: %s", (err) ? err->message : "Unknown error"); g_clear_error (&err); } priv->orig_color_map = gdk_pixbuf_new_from_file (DATADIR "/cc.png", &err); if (!priv->orig_color_map) { g_warning ("Could not load background image: %s", (err) ? err->message : "Unknown error"); g_clear_error (&err); } priv->tzdb = tz_load_db (); g_signal_connect (self, "button-press-event", G_CALLBACK (button_press_event), NULL); } CcTimezoneMap * cc_timezone_map_new (void) { return g_object_new (CC_TYPE_TIMEZONE_MAP, NULL); } gboolean cc_timezone_map_set_timezone (CcTimezoneMap *map, const gchar *timezone) { GPtrArray *locations; guint i; char *real_tz; gboolean ret; real_tz = tz_info_get_clean_name (map->priv->tzdb, timezone); locations = tz_get_locations (map->priv->tzdb); ret = FALSE; for (i = 0; i < locations->len; i++) { TzLocation *loc = locations->pdata[i]; if (!g_strcmp0 (loc->zone, real_tz ? real_tz : timezone)) { set_location (map, loc); ret = TRUE; break; } } if (ret) gtk_widget_queue_draw (GTK_WIDGET (map)); g_free (real_tz); return ret; } TzLocation * cc_timezone_map_get_location (CcTimezoneMap *map) { return map->priv->location; } cinnamon-control-center-6.2.0/panels/common/0000775000175000017500000000000014632072346017762 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/common/gdm-languages.c0000664000175000017500000012001714632072346022642 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright 2008 Red Hat, Inc, * 2007 William Jon McCann * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA 02110-1335, USA. * * Written by : William Jon McCann * Ray Strode */ #include "config.h" #include #include #include #include #include #include #include #include #include #include #include #include #include "gdm-languages.h" #include #ifndef __LC_LAST #define __LC_LAST 13 #endif #include "locarchive.h" #define ALIASES_FILE DATADIR "/gdm/locale.alias" #define ARCHIVE_FILE LIBLOCALEDIR "/locale-archive" #define SYSTEM_ARCHIVE_FILE "/usr/lib/locale/locale-archive" #define ISO_CODES_DATADIR ISO_CODES_PREFIX "/share/xml/iso-codes" #define ISO_CODES_LOCALESDIR ISO_CODES_PREFIX "/share/locale" typedef struct _GdmLocale { char *id; char *name; char *language_code; char *territory_code; char *codeset; char *modifier; } GdmLocale; static GHashTable *gdm_languages_map; static GHashTable *gdm_territories_map; static GHashTable *gdm_available_locales_map; static GHashTable *gdm_language_count_map; static GHashTable *gdm_territory_count_map; static char * construct_language_name (const char *language, const char *territory, const char *codeset, const char *modifier); static gboolean language_name_is_valid (const char *language_name); static void gdm_locale_free (GdmLocale *locale) { if (locale == NULL) { return; } g_free (locale->id); g_free (locale->name); g_free (locale->codeset); g_free (locale->modifier); g_free (locale); } static char * normalize_codeset (const char *codeset) { char *normalized_codeset; const char *p; char *q; normalized_codeset = g_strdup (codeset); if (codeset != NULL) { for (p = codeset, q = normalized_codeset; *p != '\0'; p++) { if (*p == '-' || *p == '_') { continue; } *q = g_ascii_tolower (*p); q++; } *q = '\0'; } return normalized_codeset; } /* * According to http://en.wikipedia.org/wiki/Locale * locale names are of the form: * [language[_territory][.codeset][@modifier]] */ gboolean gdm_parse_language_name (const char *name, char **language_codep, char **territory_codep, char **codesetp, char **modifierp) { GRegex *re; GMatchInfo *match_info; gboolean res; GError *error; gchar *normalized_codeset = NULL; gchar *normalized_name = NULL; gboolean retval; match_info = NULL; retval = FALSE; error = NULL; re = g_regex_new ("^(?P[^_.@[:space:]]+)" "(_(?P[[:upper:]]+))?" "(\\.(?P[-_0-9a-zA-Z]+))?" "(@(?P[[:ascii:]]+))?$", 0, 0, &error); if (re == NULL) { g_warning ("%s", error->message); goto out; } if (!g_regex_match (re, name, 0, &match_info) || g_match_info_is_partial_match (match_info)) { g_warning ("locale '%s' isn't valid\n", name); goto out; } res = g_match_info_matches (match_info); if (! res) { g_warning ("Unable to parse locale: %s", name); goto out; } retval = TRUE; if (language_codep != NULL) { *language_codep = g_match_info_fetch_named (match_info, "language"); } if (territory_codep != NULL) { *territory_codep = g_match_info_fetch_named (match_info, "territory"); if (*territory_codep != NULL && *territory_codep[0] == '\0') { g_free (*territory_codep); *territory_codep = NULL; } } if (codesetp != NULL) { *codesetp = g_match_info_fetch_named (match_info, "codeset"); if (*codesetp != NULL && *codesetp[0] == '\0') { g_free (*codesetp); *codesetp = NULL; } } if (modifierp != NULL) { *modifierp = g_match_info_fetch_named (match_info, "modifier"); if (*modifierp != NULL && *modifierp[0] == '\0') { g_free (*modifierp); *modifierp = NULL; } } if (codesetp != NULL && *codesetp != NULL) { normalized_codeset = normalize_codeset (*codesetp); normalized_name = construct_language_name (language_codep ? *language_codep : NULL, territory_codep ? *territory_codep : NULL, normalized_codeset, modifierp ? *modifierp : NULL); if (language_name_is_valid (normalized_name)) { g_free (*codesetp); *codesetp = normalized_codeset; } else { g_free (normalized_codeset); } g_free (normalized_name); } out: g_match_info_free (match_info); g_regex_unref (re); return retval; } static char * construct_language_name (const char *language, const char *territory, const char *codeset, const char *modifier) { char *name; g_assert (language[0] != 0); g_assert (territory == NULL || territory[0] != 0); g_assert (codeset == NULL || codeset[0] != 0); g_assert (modifier == NULL || modifier[0] != 0); name = g_strdup_printf ("%s%s%s%s%s%s%s", language, territory != NULL? "_" : "", territory != NULL? territory : "", codeset != NULL? "." : "", codeset != NULL? codeset : "", modifier != NULL? "@" : "", modifier != NULL? modifier : ""); return name; } char * gdm_normalize_language_name (const char *name) { char *normalized_name; char *language_code; char *territory_code; char *codeset; char *modifier; if (name[0] == '\0') { return NULL; } gdm_parse_language_name (name, &language_code, &territory_code, &codeset, &modifier); normalized_name = construct_language_name (language_code, territory_code, codeset, modifier); g_free (language_code); g_free (territory_code); g_free (codeset); g_free (modifier); return normalized_name; } static gboolean language_name_is_valid (const char *language_name) { char *old_locale; gboolean is_valid; #ifdef WITH_INCOMPLETE_LOCALES int lc_type_id = LC_CTYPE; #else int lc_type_id = LC_MESSAGES; #endif old_locale = g_strdup (setlocale (lc_type_id, NULL)); is_valid = setlocale (lc_type_id, language_name) != NULL; setlocale (lc_type_id, old_locale); g_free (old_locale); return is_valid; } static void language_name_get_codeset_details (const char *language_name, char **pcodeset, gboolean *is_utf8) { char *old_locale; char *codeset; old_locale = g_strdup (setlocale (LC_CTYPE, NULL)); if (setlocale (LC_CTYPE, language_name) == NULL) { g_free (old_locale); return; } codeset = nl_langinfo (CODESET); if (pcodeset != NULL) { *pcodeset = g_strdup (codeset); } if (is_utf8 != NULL) { codeset = normalize_codeset (codeset); *is_utf8 = strcmp (codeset, "utf8") == 0; g_free (codeset); } setlocale (LC_CTYPE, old_locale); g_free (old_locale); } gboolean gdm_language_has_translations (const char *language_name) { GDir *dir; char *path; const char *name; gboolean has_translations; path = g_build_filename ("/usr/share/locale", language_name, "LC_MESSAGES", NULL); has_translations = FALSE; dir = g_dir_open (path, 0, NULL); g_free (path); if (dir == NULL) { goto out; } do { name = g_dir_read_name (dir); if (name == NULL) { break; } if (g_str_has_suffix (name, ".mo")) { has_translations = TRUE; break; } } while (name != NULL); g_dir_close (dir); out: return has_translations; } static gboolean add_locale (const char *language_name, gboolean utf8_only) { GdmLocale *locale; GdmLocale *old_locale; char *name; gboolean is_utf8 = FALSE; g_return_val_if_fail (language_name != NULL, FALSE); g_return_val_if_fail (*language_name != '\0', FALSE); language_name_get_codeset_details (language_name, NULL, &is_utf8); if (is_utf8) { name = g_strdup (language_name); } else if (utf8_only) { name = g_strdup_printf ("%s.utf8", language_name); language_name_get_codeset_details (name, NULL, &is_utf8); if (!is_utf8) { g_free (name); return FALSE; } } else { name = g_strdup (language_name); } if (!language_name_is_valid (name)) { g_debug ("Ignoring '%s' as a locale, since it's invalid", name); g_free (name); return FALSE; } locale = g_new0 (GdmLocale, 1); gdm_parse_language_name (name, &locale->language_code, &locale->territory_code, &locale->codeset, &locale->modifier); g_free (name); name = NULL; #ifdef WITH_INCOMPLETE_LOCALES if (utf8_only) { if (locale->territory_code == NULL || locale->modifier) { g_debug ("Ignoring '%s' as a locale, since it lacks territory code or modifier", name); gdm_locale_free (locale); return FALSE; } } #endif locale->id = construct_language_name (locale->language_code, locale->territory_code, NULL, locale->modifier); locale->name = construct_language_name (locale->language_code, locale->territory_code, locale->codeset, locale->modifier); #ifndef WITH_INCOMPLETE_LOCALES if (!gdm_language_has_translations (locale->name) && !gdm_language_has_translations (locale->id) && !gdm_language_has_translations (locale->language_code) && utf8_only) { g_debug ("Ignoring '%s' as a locale, since it lacks translations", locale->name); gdm_locale_free (locale); return FALSE; } #endif if (!utf8_only) { g_free (locale->id); locale->id = g_strdup (locale->name); } old_locale = g_hash_table_lookup (gdm_available_locales_map, locale->id); if (old_locale != NULL) { if (strlen (old_locale->name) > strlen (locale->name)) { gdm_locale_free (locale); return FALSE; } } g_hash_table_insert (gdm_available_locales_map, g_strdup (locale->id), locale); return TRUE; } struct nameent { char *name; uint32_t locrec_offset; }; static gboolean collect_locales_from_archive (void) { GMappedFile *mapped; GError *error; char *addr; struct locarhead *head; struct namehashent *namehashtab; struct nameent *names; uint32_t used; uint32_t cnt; gsize len; gboolean locales_collected; error = NULL; mapped = g_mapped_file_new (ARCHIVE_FILE, FALSE, &error); if (mapped == NULL) { mapped = g_mapped_file_new (SYSTEM_ARCHIVE_FILE, FALSE, NULL); if (mapped == NULL) { g_warning ("Mapping failed for %s: %s", ARCHIVE_FILE, error->message); g_error_free (error); return FALSE; } g_error_free (error); } locales_collected = FALSE; addr = g_mapped_file_get_contents (mapped); len = g_mapped_file_get_length (mapped); head = (struct locarhead *) addr; if (head->namehash_offset + head->namehash_size > len || head->string_offset + head->string_size > len || head->locrectab_offset + head->locrectab_size > len || head->sumhash_offset + head->sumhash_size > len) { goto out; } namehashtab = (struct namehashent *) (addr + head->namehash_offset); names = (struct nameent *) g_new0 (struct nameent, head->namehash_used); for (cnt = used = 0; cnt < head->namehash_size; ++cnt) { if (namehashtab[cnt].locrec_offset != 0) { names[used].name = addr + namehashtab[cnt].name_offset; names[used++].locrec_offset = namehashtab[cnt].locrec_offset; } } for (cnt = 0; cnt < used; ++cnt) { add_locale (names[cnt].name, TRUE); } g_free (names); locales_collected = TRUE; out: g_mapped_file_unref (mapped); return locales_collected; } static int select_dirs (const struct dirent *dirent) { int result = 0; if (strcmp (dirent->d_name, ".") != 0 && strcmp (dirent->d_name, "..") != 0) { mode_t mode = 0; #ifdef _DIRENT_HAVE_D_TYPE if (dirent->d_type != DT_UNKNOWN && dirent->d_type != DT_LNK) { mode = DTTOIF (dirent->d_type); } else #endif { struct stat st; char *path; path = g_build_filename (LIBLOCALEDIR, dirent->d_name, NULL); if (g_stat (path, &st) == 0) { mode = st.st_mode; } g_free (path); } result = S_ISDIR (mode); } return result; } static void collect_locales_from_directory (void) { struct dirent **dirents; int ndirents; int cnt; ndirents = scandir (LIBLOCALEDIR, &dirents, select_dirs, alphasort); for (cnt = 0; cnt < ndirents; ++cnt) { add_locale (dirents[cnt]->d_name, TRUE); } if (ndirents > 0) { free (dirents); } } static void collect_locales_from_locale_file (const char *locale_file) { FILE *langlist; char curline[256]; char *getsret; if (locale_file == NULL) return; langlist = fopen (locale_file, "r"); if (langlist == NULL) return; for (;;) { char *name; char *lang; char **lang_list; int i; getsret = fgets (curline, sizeof (curline), langlist); if (getsret == NULL) break; if (curline[0] <= ' ' || curline[0] == '#') continue; name = strtok (curline, " \t\r\n"); if (name == NULL) continue; lang = strtok (NULL, " \t\r\n"); if (lang == NULL) continue; lang_list = g_strsplit (lang, ",", -1); if (lang_list == NULL) continue; lang = NULL; for (i = 0; lang_list[i] != NULL; i++) { if (add_locale (lang_list[i], FALSE)) { break; } } g_strfreev (lang_list); } fclose (langlist); } static void count_languages_and_territories (void) { gpointer value; GHashTableIter iter; gdm_language_count_map = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL); gdm_territory_count_map = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL); g_hash_table_iter_init (&iter, gdm_available_locales_map); while (g_hash_table_iter_next (&iter, NULL, &value)) { GdmLocale *locale; locale = (GdmLocale *) value; if (locale->language_code != NULL) { int count; count = GPOINTER_TO_INT (g_hash_table_lookup (gdm_language_count_map, locale->language_code)); count++; g_hash_table_insert (gdm_language_count_map, g_strdup (locale->language_code), GINT_TO_POINTER (count)); } if (locale->territory_code != NULL) { int count; count = GPOINTER_TO_INT (g_hash_table_lookup (gdm_territory_count_map, locale->territory_code)); count++; g_hash_table_insert (gdm_territory_count_map, g_strdup (locale->territory_code), GINT_TO_POINTER (count)); } } } static void collect_locales (void) { if (gdm_available_locales_map == NULL) { gdm_available_locales_map = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, (GDestroyNotify) gdm_locale_free); } if (!collect_locales_from_archive ()) { #ifndef WITH_INCOMPLETE_LOCALES g_warning ("Could not read list of available locales from libc, " "guessing possible locales from available translations, " "but list may be incomplete!"); #endif } collect_locales_from_directory (); collect_locales_from_locale_file (ALIASES_FILE); count_languages_and_territories (); } static gint get_language_count (const char *language) { if (gdm_language_count_map == NULL) { collect_locales (); } return GPOINTER_TO_INT (g_hash_table_lookup (gdm_language_count_map, language)); } static gboolean is_unique_language (const char *language) { return get_language_count (language) == 1; } static gint get_territory_count (const char *territory) { if (gdm_territory_count_map == NULL) { collect_locales (); } return GPOINTER_TO_INT (g_hash_table_lookup (gdm_territory_count_map, territory)); } static gboolean is_unique_territory (const char *territory) { return get_territory_count (territory) == 1; } static gboolean is_fallback_language (const char *code) { const char *fallback_language_names[] = { "C", "POSIX", NULL }; int i; for (i = 0; fallback_language_names[i] != NULL; i++) { if (strcmp (code, fallback_language_names[i]) == 0) { return TRUE; } } return FALSE; } static const char * get_language (const char *code) { const char *name; int len; g_assert (code != NULL); if (is_fallback_language (code)) { return "Unspecified"; } len = strlen (code); if (len != 2 && len != 3) { return NULL; } name = (const char *) g_hash_table_lookup (gdm_languages_map, code); return name; } static char * get_first_item_in_semicolon_list (const char *list) { char **items; char *item; /* Some entries in iso codes have multiple values, separated * by semicolons. Not really sure which one to pick, so * we just arbitrarily pick the first one. */ items = g_strsplit (list, "; ", 2); item = g_strdup (items[0]); g_strfreev (items); return item; } static char * get_translated_language (const char *code, const char *locale) { const char *language; char *name; language = get_language (code); name = NULL; if (language != NULL) { const char *translated_name; char *old_locale; if (locale != NULL) { old_locale = g_strdup (setlocale (LC_MESSAGES, NULL)); setlocale (LC_MESSAGES, locale); } if (is_fallback_language (code)) { name = g_strdup (_("Unspecified")); } else { translated_name = dgettext ("iso_639", language); name = get_first_item_in_semicolon_list (translated_name); } if (locale != NULL) { setlocale (LC_MESSAGES, old_locale); g_free (old_locale); } } return name; } static const char * get_territory (const char *code) { const char *name; int len; g_assert (code != NULL); len = strlen (code); if (len != 2 && len != 3) { return NULL; } name = (const char *) g_hash_table_lookup (gdm_territories_map, code); return name; } static char * get_translated_territory (const char *code, const char *locale) { const char *territory; char *name; territory = get_territory (code); name = NULL; if (territory != NULL) { const char *translated_territory; char *old_locale; if (locale != NULL) { old_locale = g_strdup (setlocale (LC_MESSAGES, NULL)); setlocale (LC_MESSAGES, locale); } translated_territory = dgettext ("iso_3166", territory); name = get_first_item_in_semicolon_list (translated_territory); if (locale != NULL) { setlocale (LC_MESSAGES, old_locale); g_free (old_locale); } } return name; } static void languages_parse_start_tag (GMarkupParseContext *ctx, const char *element_name, const char **attr_names, const char **attr_values, gpointer user_data, GError **error) { const char *ccode_longB; const char *ccode_longT; const char *ccode; const char *ccode_id; const char *lang_name; if (! (g_str_equal (element_name, "iso_639_entry") || g_str_equal (element_name, "iso_639_3_entry")) || attr_names == NULL || attr_values == NULL) { return; } ccode = NULL; ccode_longB = NULL; ccode_longT = NULL; ccode_id = NULL; lang_name = NULL; while (*attr_names && *attr_values) { if (g_str_equal (*attr_names, "iso_639_1_code")) { /* skip if empty */ if (**attr_values) { if (strlen (*attr_values) != 2) { return; } ccode = *attr_values; } } else if (g_str_equal (*attr_names, "iso_639_2B_code")) { /* skip if empty */ if (**attr_values) { if (strlen (*attr_values) != 3) { return; } ccode_longB = *attr_values; } } else if (g_str_equal (*attr_names, "iso_639_2T_code")) { /* skip if empty */ if (**attr_values) { if (strlen (*attr_values) != 3) { return; } ccode_longT = *attr_values; } } else if (g_str_equal (*attr_names, "id")) { /* skip if empty */ if (**attr_values) { if (strlen (*attr_values) != 2 && strlen (*attr_values) != 3) { return; } ccode_id = *attr_values; } } else if (g_str_equal (*attr_names, "name")) { lang_name = *attr_values; } ++attr_names; ++attr_values; } if (lang_name == NULL) { return; } if (ccode != NULL) { g_hash_table_insert (gdm_languages_map, g_strdup (ccode), g_strdup (lang_name)); } if (ccode_longB != NULL) { g_hash_table_insert (gdm_languages_map, g_strdup (ccode_longB), g_strdup (lang_name)); } if (ccode_longT != NULL) { g_hash_table_insert (gdm_languages_map, g_strdup (ccode_longT), g_strdup (lang_name)); } if (ccode_id != NULL) { g_hash_table_insert (gdm_languages_map, g_strdup (ccode_id), g_strdup (lang_name)); } } static void territories_parse_start_tag (GMarkupParseContext *ctx, const char *element_name, const char **attr_names, const char **attr_values, gpointer user_data, GError **error) { const char *acode_2; const char *acode_3; const char *ncode; const char *territory_common_name; const char *territory_name; if (! g_str_equal (element_name, "iso_3166_entry") || attr_names == NULL || attr_values == NULL) { return; } acode_2 = NULL; acode_3 = NULL; ncode = NULL; territory_common_name = NULL; territory_name = NULL; while (*attr_names && *attr_values) { if (g_str_equal (*attr_names, "alpha_2_code")) { /* skip if empty */ if (**attr_values) { if (strlen (*attr_values) != 2) { return; } acode_2 = *attr_values; } } else if (g_str_equal (*attr_names, "alpha_3_code")) { /* skip if empty */ if (**attr_values) { if (strlen (*attr_values) != 3) { return; } acode_3 = *attr_values; } } else if (g_str_equal (*attr_names, "numeric_code")) { /* skip if empty */ if (**attr_values) { if (strlen (*attr_values) != 3) { return; } ncode = *attr_values; } } else if (g_str_equal (*attr_names, "common_name")) { /* skip if empty */ if (**attr_values) { territory_common_name = *attr_values; } } else if (g_str_equal (*attr_names, "name")) { territory_name = *attr_values; } ++attr_names; ++attr_values; } if (territory_common_name != NULL) { territory_name = territory_common_name; } if (territory_name == NULL) { return; } if (acode_2 != NULL) { g_hash_table_insert (gdm_territories_map, g_strdup (acode_2), g_strdup (territory_name)); } if (acode_3 != NULL) { g_hash_table_insert (gdm_territories_map, g_strdup (acode_3), g_strdup (territory_name)); } if (ncode != NULL) { g_hash_table_insert (gdm_territories_map, g_strdup (ncode), g_strdup (territory_name)); } } static void languages_variant_init (const char *variant) { GError *error; gboolean res; char *buf; gsize buf_len; char *filename; bindtextdomain (variant, ISO_CODES_LOCALESDIR); bind_textdomain_codeset (variant, "UTF-8"); error = NULL; filename = g_strdup_printf (ISO_CODES_DATADIR "/%s.xml", variant); res = g_file_get_contents (filename, &buf, &buf_len, &error); if (res) { GMarkupParseContext *ctx; GMarkupParser parser = { languages_parse_start_tag, NULL, NULL, NULL, NULL }; ctx = g_markup_parse_context_new (&parser, 0, NULL, NULL); error = NULL; res = g_markup_parse_context_parse (ctx, buf, buf_len, &error); if (! res) { g_warning ("Failed to parse '%s': %s\n", filename, error->message); g_error_free (error); g_free (filename); } g_markup_parse_context_free (ctx); g_free (buf); } else { g_warning ("Failed to load '%s': %s\n", filename, error->message); g_error_free (error); } } static void languages_init (void) { gdm_languages_map = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free); languages_variant_init ("iso_639"); languages_variant_init ("iso_639_3"); } static void territories_init (void) { GError *error; gboolean res; char *buf; gsize buf_len; bindtextdomain ("iso_3166", ISO_CODES_LOCALESDIR); bind_textdomain_codeset ("iso_3166", "UTF-8"); gdm_territories_map = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free); error = NULL; res = g_file_get_contents (ISO_CODES_DATADIR "/iso_3166.xml", &buf, &buf_len, &error); if (res) { GMarkupParseContext *ctx; GMarkupParser parser = { territories_parse_start_tag, NULL, NULL, NULL, NULL }; ctx = g_markup_parse_context_new (&parser, 0, NULL, NULL); error = NULL; res = g_markup_parse_context_parse (ctx, buf, buf_len, &error); if (! res) { g_warning ("Failed to parse '%s': %s\n", ISO_CODES_DATADIR "/iso_3166.xml", error->message); g_error_free (error); } g_markup_parse_context_free (ctx); g_free (buf); } else { g_warning ("Failed to load '%s': %s\n", ISO_CODES_DATADIR "/iso_3166.xml", error->message); g_error_free (error); } } char * gdm_get_language_from_name (const char *name, const char *locale) { GString *full_language; char *language_code; char *territory_code; char *codeset_code; char *langinfo_codeset; char *translated_language; char *translated_territory; char *modifier; gboolean is_utf8 = TRUE; g_return_val_if_fail (name != NULL, NULL); g_return_val_if_fail (*name != '\0', NULL); translated_territory = NULL; translated_language = NULL; langinfo_codeset = NULL; full_language = g_string_new (NULL); if (gdm_languages_map == NULL) { languages_init (); } if (gdm_territories_map == NULL) { territories_init (); } language_code = NULL; territory_code = NULL; codeset_code = NULL; modifier = NULL; gdm_parse_language_name (name, &language_code, &territory_code, &codeset_code, &modifier); if (language_code == NULL) { goto out; } translated_language = get_translated_language (language_code, locale); if (translated_language == NULL) { goto out; } full_language = g_string_append (full_language, translated_language); if (is_unique_language (language_code)) { goto out; } if (territory_code != NULL) { translated_territory = get_translated_territory (territory_code, locale); } if (translated_territory != NULL) { g_string_append_printf (full_language, " (%s)", translated_territory); } // language_name_get_codeset_details (name, &langinfo_codeset, &is_utf8); if (codeset_code == NULL && langinfo_codeset != NULL) { codeset_code = g_strdup (langinfo_codeset); } if (!is_utf8 && codeset_code) { g_string_append_printf (full_language, " [%s]", codeset_code); } if (modifier != NULL) { g_string_append_printf (full_language, " - %s", modifier); } out: g_free (language_code); g_free (territory_code); g_free (codeset_code); g_free (langinfo_codeset); g_free (translated_language); g_free (translated_territory); g_free (modifier); if (full_language->len == 0) { g_string_free (full_language, TRUE); return NULL; } return g_string_free (full_language, FALSE); } char * gdm_get_region_from_name (const char *name, const char *locale) { GString *full_name; char *language_code; char *territory_code; char *codeset_code; char *langinfo_codeset; char *translated_language; char *translated_territory; gboolean is_utf8 = TRUE; g_return_val_if_fail (name != NULL, NULL); g_return_val_if_fail (*name != '\0', NULL); translated_territory = NULL; translated_language = NULL; langinfo_codeset = NULL; full_name = g_string_new (NULL); if (gdm_languages_map == NULL) { languages_init (); } if (gdm_territories_map == NULL) { territories_init (); } language_code = NULL; territory_code = NULL; codeset_code = NULL; gdm_parse_language_name (name, &language_code, &territory_code, &codeset_code, NULL); if (territory_code == NULL) { goto out; } translated_territory = get_translated_territory (territory_code, locale); g_string_append (full_name, translated_territory); if (is_unique_territory (territory_code)) { goto out; } if (language_code != NULL) { translated_language = get_translated_language (language_code, locale); } if (translated_language != NULL) { g_string_append_printf (full_name, " (%s)", translated_language); } language_name_get_codeset_details (name, &langinfo_codeset, &is_utf8); if (codeset_code == NULL && langinfo_codeset != NULL) { codeset_code = g_strdup (langinfo_codeset); } if (!is_utf8 && codeset_code) { g_string_append_printf (full_name, " [%s]", codeset_code); } out: g_free (language_code); g_free (territory_code); g_free (codeset_code); g_free (langinfo_codeset); g_free (translated_language); g_free (translated_territory); if (full_name->len == 0) { g_string_free (full_name, TRUE); return NULL; } return g_string_free (full_name, FALSE); } char ** gdm_get_all_language_names (void) { GHashTableIter iter; gpointer key, value; GPtrArray *array; if (gdm_available_locales_map == NULL) { collect_locales (); } array = g_ptr_array_new (); g_hash_table_iter_init (&iter, gdm_available_locales_map); while (g_hash_table_iter_next (&iter, &key, &value)) { GdmLocale *locale; locale = (GdmLocale *) value; g_ptr_array_add (array, g_strdup (locale->name)); } g_ptr_array_add (array, NULL); return (char **) g_ptr_array_free (array, FALSE); } cinnamon-control-center-6.2.0/panels/common/meson.build0000664000175000017500000000356414632072346022134 0ustar fabiofabio panel_languages = static_library('language', 'cc-common-language.c', 'cc-language-chooser.c', 'gdm-languages.c', include_directories: rootInclude, dependencies: [ glib, gtk, ], ) list_languages = executable('list-languages', 'list-languages.c', include_directories: rootInclude, link_with: panel_languages, dependencies: [ glib, ], ) install_data('language-chooser.ui', install_dir: ui_dir, ) common_inc = include_directories('.') common_sources = [] enums = 'csd-common-enums' enums_header = files('csd-device-manager.h') common_sources += gnome.mkenums( enums + '.h', sources: enums_header, fhead: '#pragma once\n\n#include \n\nG_BEGIN_DECLS\n', fprod: '/* enumerations from "@filename@" */\n', vhead: 'GType @enum_name@_get_type (void) G_GNUC_CONST;\n#define CSD_TYPE_@ENUMSHORT@ (@enum_name@_get_type())\n', ftail: 'G_END_DECLS\n' ) common_sources += gnome.mkenums( enums + '.c', sources: enums_header, fhead: '#include "csd-device-manager.h"\n#include "csd-common-enums.h"\n', fprod: '\n/* enumerations from "@filename@" */', vhead: 'GType\n@enum_name@_get_type (void)\n{\n static GType etype = 0;\n if (etype == 0) {\n static const G@Type@Value values[] = {', vprod: ' { @VALUENAME@, "@VALUENAME@", "@valuenick@" },', vtail: ' { 0, NULL, NULL }\n };\n etype = g_@type@_register_static ("@EnumName@", values);\n }\n return etype;\n}\n' ) csd_headers = [ 'csd-device-manager.h', 'csd-input-helper.h', ] csd_sources = [ 'csd-device-manager.c', 'csd-input-helper.c' ] sources = common_sources + files(csd_sources) deps = [ gudev_dep, glib, gio_unix, gtk, cinn_desktop ] libdevice = static_library( 'device', sources: sources, include_directories: rootInclude, dependencies: deps ) libdevice_dep = declare_dependency( include_directories: common_inc, link_with: libdevice ) cinnamon-control-center-6.2.0/panels/common/cc-common-language.c0000664000175000017500000004562514632072346023576 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright 2009-2010 Red Hat, Inc, * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA 02110-1335, USA. * * Written by: Matthias Clasen */ #include "config.h" #include #include #include #include #include #include #include "cc-common-language.h" #include "gdm-languages.h" static gint cc_common_language_sort_languages (GtkTreeModel *model, GtkTreeIter *a, GtkTreeIter *b, gpointer data) { char *ca, *cb; char *la, *lb; gboolean sa, ula; gboolean sb, ulb; gint result; gtk_tree_model_get (model, a, LOCALE_COL, &ca, DISPLAY_LOCALE_COL, &la, SEPARATOR_COL, &sa, USER_LANGUAGE, &ula, -1); gtk_tree_model_get (model, b, LOCALE_COL, &cb, DISPLAY_LOCALE_COL, &lb, SEPARATOR_COL, &sb, USER_LANGUAGE, &ulb, -1); /* Sort before and after separator first */ if (sa && sb) result = 0; else if (sa) result = ulb ? 1 : -1; else if (sb) result = ula ? -1 : 1; /* Sort user-languages first */ else if (ula != ulb) { if (ula) result = -1; else result = 1; } else if (!ca) result = 1; else if (!cb) result = -1; else result = strcmp (la, lb); g_free (ca); g_free (cb); g_free (la); g_free (lb); return result; } static gboolean iter_for_language (GtkTreeModel *model, const gchar *lang, GtkTreeIter *iter, gboolean region) { char *l; char *name; char *language; gtk_tree_model_get_iter_first (model, iter); do { gtk_tree_model_get (model, iter, LOCALE_COL, &l, -1); if (g_strcmp0 (l, lang) == 0) { g_free (l); return TRUE; } g_free (l); } while (gtk_tree_model_iter_next (model, iter)); name = gdm_normalize_language_name (lang); if (name != NULL) { if (region) { language = gdm_get_region_from_name (name, NULL); } else { language = gdm_get_language_from_name (name, NULL); } gtk_list_store_insert_with_values (GTK_LIST_STORE (model), iter, -1, LOCALE_COL, name, DISPLAY_LOCALE_COL, language, -1); g_free (name); g_free (language); return TRUE; } return FALSE; } gboolean cc_common_language_get_iter_for_language (GtkTreeModel *model, const gchar *lang, GtkTreeIter *iter) { return iter_for_language (model, lang, iter, FALSE); } gboolean cc_common_language_get_iter_for_region (GtkTreeModel *model, const gchar *lang, GtkTreeIter *iter) { return iter_for_language (model, lang, iter, TRUE); } gboolean cc_common_language_has_font (const gchar *locale) { const FcCharSet *charset; FcPattern *pattern; FcObjectSet *object_set; FcFontSet *font_set; gchar *language_code; gboolean is_displayable; is_displayable = FALSE; pattern = NULL; object_set = NULL; font_set = NULL; if (!gdm_parse_language_name (locale, &language_code, NULL, NULL, NULL)) return FALSE; charset = FcLangGetCharSet ((FcChar8 *) language_code); if (!charset) { /* fontconfig does not know about this language */ is_displayable = TRUE; } else { /* see if any fonts support rendering it */ pattern = FcPatternBuild (NULL, FC_LANG, FcTypeString, language_code, NULL); if (pattern == NULL) goto done; object_set = FcObjectSetCreate (); if (object_set == NULL) goto done; font_set = FcFontList (NULL, pattern, object_set); if (font_set == NULL) goto done; is_displayable = (font_set->nfont > 0); } done: if (font_set != NULL) FcFontSetDestroy (font_set); if (object_set != NULL) FcObjectSetDestroy (object_set); if (pattern != NULL) FcPatternDestroy (pattern); g_free (language_code); return is_displayable; } typedef struct { GtkListStore *store; GHashTable *user_langs; gchar **languages; gboolean regions; gint position; } AsyncLangData; static void async_lang_data_free (AsyncLangData *data) { g_object_unref (data->store); g_hash_table_unref (data->user_langs); g_strfreev (data->languages); g_free (data); } static gboolean add_one_language (gpointer d) { AsyncLangData *data = d; char *name; char *language; GtkTreeIter iter; if (data->languages[data->position] == NULL) { /* we are done */ async_lang_data_free (data); return FALSE; } name = gdm_normalize_language_name (data->languages[data->position]); if (g_hash_table_lookup (data->user_langs, name) != NULL) { g_free (name); goto next; } if (!cc_common_language_has_font (data->languages[data->position])) { g_free (name); goto next; } if (data->regions) { language = gdm_get_region_from_name (name, NULL); } else { language = gdm_get_language_from_name (name, NULL); } if (!language) { g_debug ("Ignoring '%s' as a locale, because we couldn't figure the language name", name); g_free (name); goto next; } /* Add separator between initial languages and new additions */ if (g_object_get_data (G_OBJECT (data->store), "needs-separator")) { GtkTreeIter iter; gtk_list_store_insert_with_values (GTK_LIST_STORE (data->store), &iter, -1, LOCALE_COL, NULL, DISPLAY_LOCALE_COL, "Don't show", SEPARATOR_COL, TRUE, USER_LANGUAGE, FALSE, -1); g_object_set_data (G_OBJECT (data->store), "needs-separator", NULL); } gtk_list_store_insert_with_values (data->store, &iter, -1, LOCALE_COL, name, DISPLAY_LOCALE_COL, language, -1); g_free (name); g_free (language); next: data->position++; return TRUE; } guint cc_common_language_add_available_languages (GtkListStore *store, gboolean regions, GHashTable *user_langs) { AsyncLangData *data; data = g_new0 (AsyncLangData, 1); data->store = g_object_ref (store); data->user_langs = g_hash_table_ref (user_langs); data->languages = gdm_get_all_language_names (); data->regions = regions; data->position = 0; return gdk_threads_add_idle (add_one_language, data); } gchar * cc_common_language_get_current_language (void) { gchar *language; const gchar *locale; locale = (const gchar *) setlocale (LC_MESSAGES, NULL); if (locale) language = gdm_normalize_language_name (locale); else language = NULL; return language; } static void languages_foreach_cb (gpointer key, gpointer value, gpointer user_data) { GtkListStore *store = (GtkListStore *) user_data; const char *locale = (const char *) key; const char *display_locale = (const char *) value; GtkTreeIter iter; gtk_list_store_insert_with_values (store, &iter, -1, LOCALE_COL, locale, DISPLAY_LOCALE_COL, display_locale, SEPARATOR_COL, FALSE, USER_LANGUAGE, TRUE, -1); } static gboolean separator_func (GtkTreeModel *model, GtkTreeIter *iter, gpointer data) { gboolean is_sep; gtk_tree_model_get (model, iter, SEPARATOR_COL, &is_sep, -1); return is_sep; } void cc_common_language_setup_list (GtkWidget *treeview, GHashTable *initial) { GtkCellRenderer *cell; GtkTreeViewColumn *column; GtkListStore *store; cell = gtk_cell_renderer_text_new (); g_object_set (cell, "width-chars", 40, "ellipsize", PANGO_ELLIPSIZE_END, NULL); column = gtk_tree_view_column_new_with_attributes (NULL, cell, "text", DISPLAY_LOCALE_COL, NULL); gtk_tree_view_append_column (GTK_TREE_VIEW (treeview), column); store = gtk_list_store_new (NUM_COLS, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_BOOLEAN, G_TYPE_BOOLEAN); gtk_tree_sortable_set_default_sort_func (GTK_TREE_SORTABLE (store), cc_common_language_sort_languages, NULL, NULL); gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (store), GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID, GTK_SORT_ASCENDING); gtk_tree_view_set_row_separator_func (GTK_TREE_VIEW (treeview), separator_func, NULL, NULL); gtk_tree_view_set_model (GTK_TREE_VIEW (treeview), GTK_TREE_MODEL (store)); /* Add languages from the initial hashtable */ g_hash_table_foreach (initial, (GHFunc) languages_foreach_cb, store); /* Mark the need for a separator if we had any languages added */ if (initial != NULL && g_hash_table_size (initial) > 0) { g_object_set_data (G_OBJECT (store), "needs-separator", GINT_TO_POINTER (TRUE)); } } void cc_common_language_select_current_language (GtkTreeView *treeview) { GtkTreeModel *model; GtkTreeIter iter; gboolean cont; char *lang; gboolean found; lang = cc_common_language_get_current_language (); g_debug ("Trying to select lang '%s' in treeview", lang); model = gtk_tree_view_get_model (treeview); found = FALSE; cont = gtk_tree_model_get_iter_first (model, &iter); while (cont) { char *locale; gtk_tree_model_get (model, &iter, LOCALE_COL, &locale, -1); if (locale != NULL && g_str_equal (locale, lang)) { GtkTreeSelection *selection; g_debug ("Found '%s' in treeview", locale); found = TRUE; selection = gtk_tree_view_get_selection (treeview); gtk_tree_selection_select_iter (selection, &iter); g_free (locale); break; } g_free (locale); cont = gtk_tree_model_iter_next (model, &iter); } g_free (lang); if (found == FALSE) g_warning ("Could not find current language '%s' in the treeview", lang); } static void add_other_users_language (GHashTable *ht) { GVariant *variant; GVariantIter *vi; GError *error = NULL; const char *str; GDBusProxy *proxy; proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SYSTEM, G_DBUS_PROXY_FLAGS_NONE, NULL, "org.freedesktop.Accounts", "/org/freedesktop/Accounts", "org.freedesktop.Accounts", NULL, NULL); if (proxy == NULL) return; variant = g_dbus_proxy_call_sync (proxy, "ListCachedUsers", NULL, G_DBUS_CALL_FLAGS_NONE, -1, NULL, &error); if (variant == NULL) { g_warning ("Failed to list existing users: %s", error->message); g_error_free (error); g_object_unref (proxy); return; } g_variant_get (variant, "(ao)", &vi); while (g_variant_iter_loop (vi, "o", &str)) { GDBusProxy *user; GVariant *props; const char *lang; char *name; char *language; user = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SYSTEM, G_DBUS_PROXY_FLAGS_NONE, NULL, "org.freedesktop.Accounts", str, "org.freedesktop.Accounts.User", NULL, &error); if (user == NULL) { g_warning ("Failed to get proxy for user '%s': %s", str, error->message); g_error_free (error); error = NULL; continue; } props = g_dbus_proxy_get_cached_property (user, "Language"); lang = g_variant_get_string (props, NULL); if (lang != NULL && *lang != '\0' && cc_common_language_has_font (lang) && gdm_language_has_translations (lang)) { name = gdm_normalize_language_name (lang); if (!g_hash_table_lookup (ht, name)) { language = gdm_get_language_from_name (name, NULL); g_hash_table_insert (ht, name, language); } else { g_free (name); } } g_variant_unref (props); g_object_unref (user); } g_variant_iter_free (vi); g_variant_unref (variant); g_object_unref (proxy); } GHashTable * cc_common_language_get_initial_languages (void) { GHashTable *ht; char *name; char *language; ht = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free); /* Add some common languages first */ g_hash_table_insert (ht, g_strdup ("en_US.utf8"), g_strdup (_("English"))); if (gdm_language_has_translations ("en_GB")) g_hash_table_insert (ht, g_strdup ("en_GB.utf8"), g_strdup (_("British English"))); if (gdm_language_has_translations ("de") || gdm_language_has_translations ("de_DE")) g_hash_table_insert (ht, g_strdup ("de_DE.utf8"), g_strdup (_("German"))); if (gdm_language_has_translations ("fr") || gdm_language_has_translations ("fr_FR")) g_hash_table_insert (ht, g_strdup ("fr_FR.utf8"), g_strdup (_("French"))); if (gdm_language_has_translations ("es") || gdm_language_has_translations ("es_ES")) g_hash_table_insert (ht, g_strdup ("es_ES.utf8"), g_strdup (_("Spanish"))); if (gdm_language_has_translations ("zh_CN")) g_hash_table_insert (ht, g_strdup ("zh_CN.utf8"), g_strdup (_("Chinese (simplified)"))); if (gdm_language_has_translations ("ru") || gdm_language_has_translations ("ru_RU")) g_hash_table_insert (ht, g_strdup ("ru_RU.utf8"), g_strdup (_("Russian"))); if (gdm_language_has_translations ("ar") || gdm_language_has_translations ("ar_EG")) g_hash_table_insert (ht, g_strdup ("ar_EG.utf8"), g_strdup (_("Arabic"))); /* Add the languages used by other users on the system */ add_other_users_language (ht); /* Add current locale */ name = cc_common_language_get_current_language (); if (g_hash_table_lookup (ht, name) == NULL) { language = gdm_get_language_from_name (name, NULL); g_hash_table_insert (ht, name, language); } else { g_free (name); } return ht; } GHashTable * cc_common_language_get_initial_regions (const gchar *lang) { GHashTable *ht; char *language; gchar **langs; gint i; ht = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free); /* Add some common regions */ g_hash_table_insert (ht, g_strdup ("en_US.utf8"), g_strdup (_("United States"))); g_hash_table_insert (ht, g_strdup ("de_DE.utf8"), g_strdup (_("Germany"))); g_hash_table_insert (ht, g_strdup ("fr_FR.utf8"), g_strdup (_("France"))); g_hash_table_insert (ht, g_strdup ("es_ES.utf8"), g_strdup (_("Spain"))); g_hash_table_insert (ht, g_strdup ("zh_CN.utf8"), g_strdup (_("China"))); gdm_parse_language_name (lang, &language, NULL, NULL, NULL); langs = gdm_get_all_language_names (); for (i = 0; langs[i]; i++) { gchar *l, *s; gdm_parse_language_name (langs[i], &l, NULL, NULL, NULL); if (g_strcmp0 (language, l) == 0) { if (!g_hash_table_lookup (ht, langs[i])) { s = gdm_get_region_from_name (langs[i], NULL); g_hash_table_insert (ht, g_strdup (langs[i]), s); } } g_free (l); } g_strfreev (langs); g_free (language); return ht; } cinnamon-control-center-6.2.0/panels/common/cc-language-chooser.h0000664000175000017500000000255414632072346023747 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright 2009-2010 Red Hat, Inc, * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA 02110-1335, USA. * * Written by: Matthias Clasen */ #ifndef __CC_LANGUAGE_CHOOSER_H__ #define __CC_LANGUAGE_CHOOSER_H__ #include G_BEGIN_DECLS void cc_add_user_languages (GtkTreeModel *model); GtkWidget *cc_language_chooser_new (GtkWidget *parent, gboolean regions); void cc_language_chooser_clear_filter (GtkWidget *chooser); gchar *cc_language_chooser_get_language (GtkWidget *chooser); G_END_DECLS #endif cinnamon-control-center-6.2.0/panels/common/language-chooser.ui0000664000175000017500000001151214632072346023544 0ustar fabiofabio 400 5 True center-on-parent dialog system-users True vertical 6 10 10 True start Select a language 1 False False True True never automatic in True True False False False 2 True True True True edit-find-symbolic False False 3 False False True end _Cancel True True True True False False 0 _Select True True True True True False False 1 False end 0 cancel-button ok-button cinnamon-control-center-6.2.0/panels/common/csd-device-manager.h0000664000175000017500000000544214632072346023556 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2014 Carlos Garnacho * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #pragma once #include #include #include G_BEGIN_DECLS #define CSD_TYPE_DEVICE (csd_device_get_type ()) G_DECLARE_DERIVABLE_TYPE (CsdDevice, csd_device, CSD, DEVICE, GObject) #define CSD_TYPE_DEVICE_MANAGER (csd_device_manager_get_type ()) G_DECLARE_DERIVABLE_TYPE (CsdDeviceManager, csd_device_manager, CSD, DEVICE_MANAGER, GObject) typedef enum { CSD_DEVICE_TYPE_MOUSE = 1 << 0, CSD_DEVICE_TYPE_KEYBOARD = 1 << 1, CSD_DEVICE_TYPE_TOUCHPAD = 1 << 2, CSD_DEVICE_TYPE_TABLET = 1 << 3, CSD_DEVICE_TYPE_TOUCHSCREEN = 1 << 4, CSD_DEVICE_TYPE_PAD = 1 << 5 } CsdDeviceType; struct _CsdDeviceClass { GObjectClass parent_class; }; struct _CsdDeviceManagerClass { GObjectClass parent_class; GList * (* list_devices) (CsdDeviceManager *manager, CsdDeviceType type); void (* device_added) (CsdDeviceManager *manager, CsdDevice *device); void (* device_removed) (CsdDeviceManager *manager, CsdDevice *device); void (* device_changed) (CsdDeviceManager *manager, CsdDevice *device); CsdDevice * (* lookup_device) (CsdDeviceManager *manager, GdkDevice *gdk_device); }; CsdDeviceManager * csd_device_manager_get (void); GList * csd_device_manager_list_devices (CsdDeviceManager *manager, CsdDeviceType type); const gchar * csd_device_get_name (CsdDevice *device); CsdDeviceType csd_device_get_device_type (CsdDevice *device); void csd_device_get_device_ids (CsdDevice *device, const gchar **vendor, const gchar **product); GSettings * csd_device_get_settings (CsdDevice *device); const gchar * csd_device_get_device_file (CsdDevice *device); gboolean csd_device_get_dimensions (CsdDevice *device, guint *width, guint *height); CsdDevice * csd_device_manager_lookup_gdk_device (CsdDeviceManager *manager, GdkDevice *gdk_device); G_END_DECLS cinnamon-control-center-6.2.0/panels/common/locarchive.h0000664000175000017500000000434314632072346022256 0ustar fabiofabio/* Definitions for locale archive handling. Copyright (C) 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA. */ #ifndef _LOCARCHIVE_H #define _LOCARCHIVE_H 1 #include #define AR_MAGIC 0xde020109 struct locarhead { uint32_t magic; /* Serial number. */ uint32_t serial; /* Name hash table. */ uint32_t namehash_offset; uint32_t namehash_used; uint32_t namehash_size; /* String table. */ uint32_t string_offset; uint32_t string_used; uint32_t string_size; /* Table with locale records. */ uint32_t locrectab_offset; uint32_t locrectab_used; uint32_t locrectab_size; /* MD5 sum hash table. */ uint32_t sumhash_offset; uint32_t sumhash_used; uint32_t sumhash_size; }; struct namehashent { /* Hash value of the name. */ uint32_t hashval; /* Offset of the name in the string table. */ uint32_t name_offset; /* Offset of the locale record. */ uint32_t locrec_offset; }; struct sumhashent { /* MD5 sum. */ char sum[16]; /* Offset of the file in the archive. */ uint32_t file_offset; }; struct locrecent { uint32_t refs; /* # of namehashent records that point here */ struct { uint32_t offset; uint32_t len; } record[__LC_LAST]; }; struct locarhandle { int fd; void *addr; size_t len; }; /* In memory data for the locales with their checksums. */ typedef struct locale_category_data { off_t size; void *addr; char sum[16]; } locale_data_t[__LC_LAST]; #endif /* locarchive.h */ cinnamon-control-center-6.2.0/panels/common/gdm-languages.h0000664000175000017500000000347214632072346022654 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright 2008 Red Hat, Inc. * Copyright 2007 William Jon McCann * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA 02110-1335, USA. * * Written by: Ray Strode * William Jon McCann */ #ifndef __GDM_LANGUAGES_H #define __GDM_LANGUAGES_H G_BEGIN_DECLS char * gdm_get_language_from_name (const char *name, const char *locale); char * gdm_get_region_from_name (const char *name, const char *locale); char ** gdm_get_all_language_names (void); gboolean gdm_parse_language_name (const char *name, char **language_codep, char **territory_codep, char **codesetp, char **modifierp); char * gdm_normalize_language_name (const char *name); gboolean gdm_language_has_translations (const char *language_name); G_END_DECLS #endif /* __GDM_LANGUAGE_CHOOSER_WIDGET_H */ cinnamon-control-center-6.2.0/panels/common/csd-input-helper.c0000664000175000017500000000555614632072346023324 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2010 Bastien Nocera * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * */ #include "config.h" #include #include #include #include #include #include #include "csd-input-helper.h" #include "csd-device-manager.h" static gboolean device_type_is_present (CsdDeviceType type) { g_autoptr(GList) l = csd_device_manager_list_devices (csd_device_manager_get (), type); return l != NULL; } gboolean touchscreen_is_present (void) { return device_type_is_present (CSD_DEVICE_TYPE_TOUCHSCREEN); } gboolean touchpad_is_present (void) { return device_type_is_present (CSD_DEVICE_TYPE_TOUCHPAD); } gboolean mouse_is_present (void) { return device_type_is_present (CSD_DEVICE_TYPE_MOUSE); } char * xdevice_get_device_node (int deviceid) { GdkDisplay *display; Atom prop; Atom act_type; int act_format; unsigned long nitems, bytes_after; unsigned char *data; char *ret; display = gdk_display_get_default (); gdk_display_sync (display); prop = XInternAtom (GDK_DISPLAY_XDISPLAY (display), "Device Node", False); if (!prop) return NULL; gdk_x11_display_error_trap_push (display); if (!XIGetProperty (GDK_DISPLAY_XDISPLAY (display), deviceid, prop, 0, 1000, False, AnyPropertyType, &act_type, &act_format, &nitems, &bytes_after, &data) == Success) { gdk_x11_display_error_trap_pop_ignored (display); return NULL; } if (gdk_x11_display_error_trap_pop (display)) goto out; if (nitems == 0) goto out; if (act_type != XA_STRING) goto out; /* Unknown string format */ if (act_format != 8) goto out; ret = g_strdup ((char *) data); XFree (data); return ret; out: XFree (data); return NULL; } cinnamon-control-center-6.2.0/panels/common/list-languages.c0000664000175000017500000000165214632072346023051 0ustar fabiofabio#include "config.h" #include #include #include #include #include "gdm-languages.h" int main (int argc, char **argv) { char **langs; guint i; setlocale (LC_ALL, NULL); textdomain (GETTEXT_PACKAGE); bindtextdomain (GETTEXT_PACKAGE, LOCALE_DIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); g_type_init (); if (argc > 1) { guint i; for (i = 1; i < argc; i++) { char *lang, *norm; norm = gdm_normalize_language_name (argv[i]); lang = gdm_get_language_from_name (norm, NULL); g_print ("%s (norm: %s) == %s\n", argv[i], norm, lang); g_free (norm); g_free (lang); } return 0; } langs = gdm_get_all_language_names (); if (langs == NULL) { g_warning ("No languages found"); return 1; } for (i = 0; langs[i] != NULL; i++) g_print ("%s == %s\n", langs[i], gdm_get_language_from_name (langs[i], NULL)); g_strfreev (langs); return 0; } cinnamon-control-center-6.2.0/panels/common/csd-device-manager.c0000664000175000017500000004063414632072346023553 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2014 Red Hat * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * Author: Carlos Garnacho */ #include "config.h" #include #include #include "csd-device-manager.h" #include "csd-common-enums.h" #include "csd-input-helper.h" #ifdef GDK_WINDOWING_X11 #include #endif #ifdef GDK_WINDOWING_WAYLAND #include #endif typedef struct { gchar *name; gchar *device_file; gchar *vendor_id; gchar *product_id; CsdDeviceType type; guint width; guint height; } CsdDevicePrivate; G_DEFINE_TYPE_WITH_PRIVATE (CsdDevice, csd_device, G_TYPE_OBJECT) typedef struct { GObject parent_instance; GHashTable *devices; GUdevClient *udev_client; } CsdDeviceManagerPrivate; enum { PROP_NAME = 1, PROP_DEVICE_FILE, PROP_VENDOR_ID, PROP_PRODUCT_ID, PROP_TYPE, PROP_WIDTH, PROP_HEIGHT }; enum { DEVICE_ADDED, DEVICE_REMOVED, DEVICE_CHANGED, N_SIGNALS }; /* Index matches CsdDeviceType */ const gchar *udev_ids[] = { "ID_INPUT_MOUSE", "ID_INPUT_KEYBOARD", "ID_INPUT_TOUCHPAD", "ID_INPUT_TABLET", "ID_INPUT_TOUCHSCREEN", "ID_INPUT_TABLET_PAD", }; static guint signals[N_SIGNALS] = { 0 }; G_DEFINE_TYPE_WITH_PRIVATE (CsdDeviceManager, csd_device_manager, G_TYPE_OBJECT) static void csd_device_init (CsdDevice *device) { } static void csd_device_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec) { CsdDevicePrivate *priv; priv = csd_device_get_instance_private (CSD_DEVICE (object)); switch (prop_id) { case PROP_NAME: priv->name = g_value_dup_string (value); break; case PROP_DEVICE_FILE: priv->device_file = g_value_dup_string (value); break; case PROP_VENDOR_ID: priv->vendor_id = g_value_dup_string (value); break; case PROP_PRODUCT_ID: priv->product_id = g_value_dup_string (value); break; case PROP_TYPE: priv->type = g_value_get_flags (value); break; case PROP_WIDTH: priv->width = g_value_get_uint (value); break; case PROP_HEIGHT: priv->height = g_value_get_uint (value); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; } } static void csd_device_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec) { CsdDevicePrivate *priv; priv = csd_device_get_instance_private (CSD_DEVICE (object)); switch (prop_id) { case PROP_NAME: g_value_set_string (value, priv->name); break; case PROP_DEVICE_FILE: g_value_set_string (value, priv->device_file); break; case PROP_VENDOR_ID: g_value_set_string (value, priv->vendor_id); break; case PROP_PRODUCT_ID: g_value_set_string (value, priv->product_id); break; case PROP_TYPE: g_value_set_flags (value, priv->type); break; case PROP_WIDTH: g_value_set_uint (value, priv->width); break; case PROP_HEIGHT: g_value_set_uint (value, priv->height); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; } } static void csd_device_finalize (GObject *object) { CsdDevicePrivate *priv; priv = csd_device_get_instance_private (CSD_DEVICE (object)); g_free (priv->name); g_free (priv->vendor_id); g_free (priv->product_id); g_free (priv->device_file); G_OBJECT_CLASS (csd_device_parent_class)->finalize (object); } static void csd_device_class_init (CsdDeviceClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); object_class->set_property = csd_device_set_property; object_class->get_property = csd_device_get_property; object_class->finalize = csd_device_finalize; g_object_class_install_property (object_class, PROP_NAME, g_param_spec_string ("name", "Name", "Name", NULL, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)); g_object_class_install_property (object_class, PROP_DEVICE_FILE, g_param_spec_string ("device-file", "Device file", "Device file", NULL, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)); g_object_class_install_property (object_class, PROP_VENDOR_ID, g_param_spec_string ("vendor-id", "Vendor ID", "Vendor ID", NULL, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)); g_object_class_install_property (object_class, PROP_PRODUCT_ID, g_param_spec_string ("product-id", "Product ID", "Product ID", NULL, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)); g_object_class_install_property (object_class, PROP_TYPE, g_param_spec_flags ("type", "Device type", "Device type", CSD_TYPE_DEVICE_TYPE, 0, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)); g_object_class_install_property (object_class, PROP_WIDTH, g_param_spec_uint ("width", "Width", "Width", 0, G_MAXUINT, 0, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)); g_object_class_install_property (object_class, PROP_HEIGHT, g_param_spec_uint ("height", "Height", "Height", 0, G_MAXUINT, 0, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY)); } static void csd_device_manager_finalize (GObject *object) { CsdDeviceManager *manager = CSD_DEVICE_MANAGER (object); CsdDeviceManagerPrivate *priv = csd_device_manager_get_instance_private (manager); g_hash_table_destroy (priv->devices); g_object_unref (priv->udev_client); G_OBJECT_CLASS (csd_device_manager_parent_class)->finalize (object); } static GList * csd_device_manager_real_list_devices (CsdDeviceManager *manager, CsdDeviceType type) { CsdDeviceManagerPrivate *priv = csd_device_manager_get_instance_private (manager); CsdDeviceType device_type; GList *devices = NULL; GHashTableIter iter; CsdDevice *device; g_hash_table_iter_init (&iter, priv->devices); while (g_hash_table_iter_next (&iter, NULL, (gpointer *) &device)) { device_type = csd_device_get_device_type (device); if ((device_type & type) == type) devices = g_list_prepend (devices, device); } return devices; } static CsdDevice * csd_device_manager_real_lookup_device (CsdDeviceManager *manager, GdkDevice *gdk_device) { CsdDeviceManagerPrivate *priv = csd_device_manager_get_instance_private (manager); GdkDisplay *display = gdk_device_get_display (gdk_device); const gchar *node_path = NULL; GHashTableIter iter; CsdDevice *device; #ifdef GDK_WINDOWING_X11 if (GDK_IS_X11_DISPLAY (display)) node_path = xdevice_get_device_node (gdk_x11_device_get_id (gdk_device)); #endif #ifdef GDK_WINDOWING_WAYLAND if (GDK_IS_WAYLAND_DISPLAY (display)) node_path = g_strdup (gdk_wayland_device_get_node_path (gdk_device)); #endif if (!node_path) return NULL; g_hash_table_iter_init (&iter, priv->devices); while (g_hash_table_iter_next (&iter, NULL, (gpointer *) &device)) { if (g_strcmp0 (node_path, csd_device_get_device_file (device)) == 0) { return device; } } return NULL; } static void csd_device_manager_class_init (CsdDeviceManagerClass *klass) { CsdDeviceManagerClass *manager_class = CSD_DEVICE_MANAGER_CLASS (klass); GObjectClass *object_class = G_OBJECT_CLASS (klass); object_class->finalize = csd_device_manager_finalize; manager_class->list_devices = csd_device_manager_real_list_devices; manager_class->lookup_device = csd_device_manager_real_lookup_device; signals[DEVICE_ADDED] = g_signal_new ("device-added", CSD_TYPE_DEVICE_MANAGER, G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (CsdDeviceManagerClass, device_added), NULL, NULL, NULL, G_TYPE_NONE, 1, CSD_TYPE_DEVICE | G_SIGNAL_TYPE_STATIC_SCOPE); signals[DEVICE_REMOVED] = g_signal_new ("device-removed", CSD_TYPE_DEVICE_MANAGER, G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (CsdDeviceManagerClass, device_removed), NULL, NULL, NULL, G_TYPE_NONE, 1, CSD_TYPE_DEVICE | G_SIGNAL_TYPE_STATIC_SCOPE); signals[DEVICE_CHANGED] = g_signal_new ("device-changed", CSD_TYPE_DEVICE_MANAGER, G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (CsdDeviceManagerClass, device_changed), NULL, NULL, NULL, G_TYPE_NONE, 1, CSD_TYPE_DEVICE | G_SIGNAL_TYPE_STATIC_SCOPE); } static CsdDeviceType udev_device_get_device_type (GUdevDevice *device) { CsdDeviceType type = 0; gint i; for (i = 0; i < G_N_ELEMENTS (udev_ids); i++) { if (g_udev_device_get_property_as_boolean (device, udev_ids[i])) type |= (1 << i); } return type; } static gboolean device_is_evdev (GUdevDevice *device) { const gchar *device_file; device_file = g_udev_device_get_device_file (device); if (!device_file || strstr (device_file, "/event") == NULL) return FALSE; return g_udev_device_get_property_as_boolean (device, "ID_INPUT"); } static CsdDevice * create_device (GUdevDevice *udev_device) { const gchar *vendor, *product, *name; guint width, height; g_autoptr(GUdevDevice) parent = NULL; parent = g_udev_device_get_parent (udev_device); g_assert (parent != NULL); name = g_udev_device_get_sysfs_attr (parent, "name"); vendor = g_udev_device_get_property (udev_device, "ID_VENDOR_ID"); product = g_udev_device_get_property (udev_device, "ID_MODEL_ID"); if (!vendor || !product) { vendor = g_udev_device_get_sysfs_attr (udev_device, "device/id/vendor"); product = g_udev_device_get_sysfs_attr (udev_device, "device/id/product"); } width = g_udev_device_get_property_as_int (udev_device, "ID_INPUT_WIDTH_MM"); height = g_udev_device_get_property_as_int (udev_device, "ID_INPUT_HEIGHT_MM"); return g_object_new (CSD_TYPE_DEVICE, "name", name, "device-file", g_udev_device_get_device_file (udev_device), "type", udev_device_get_device_type (udev_device), "vendor-id", vendor, "product-id", product, "width", width, "height", height, NULL); } static void add_device (CsdDeviceManager *manager, GUdevDevice *udev_device) { CsdDeviceManagerPrivate *priv = csd_device_manager_get_instance_private (manager); GUdevDevice *parent; CsdDevice *device; const gchar *syspath; parent = g_udev_device_get_parent (udev_device); if (!parent) return; device = create_device (udev_device); syspath = g_udev_device_get_sysfs_path (udev_device); g_hash_table_insert (priv->devices, g_strdup (syspath), device); g_signal_emit_by_name (manager, "device-added", device); } static void remove_device (CsdDeviceManager *manager, GUdevDevice *udev_device) { CsdDeviceManagerPrivate *priv = csd_device_manager_get_instance_private (manager); CsdDevice *device; const gchar *syspath; syspath = g_udev_device_get_sysfs_path (udev_device); device = g_hash_table_lookup (priv->devices, syspath); if (!device) return; g_hash_table_steal (priv->devices, syspath); g_signal_emit_by_name (manager, "device-removed", device); g_object_unref (device); } static void udev_event_cb (GUdevClient *client, gchar *action, GUdevDevice *device, CsdDeviceManager *manager) { if (!device_is_evdev (device)) return; if (g_strcmp0 (action, "add") == 0) { add_device (manager, device); } else if (g_strcmp0 (action, "remove") == 0) { remove_device (manager, device); } } static void csd_device_manager_init (CsdDeviceManager *manager) { CsdDeviceManagerPrivate *priv = csd_device_manager_get_instance_private (manager); const gchar *subsystems[] = { "input", NULL }; g_autoptr(GList) devices = NULL; GList *l; priv->devices = g_hash_table_new_full (g_str_hash, g_str_equal, (GDestroyNotify) g_free, (GDestroyNotify) g_object_unref); priv->udev_client = g_udev_client_new (subsystems); g_signal_connect (priv->udev_client, "uevent", G_CALLBACK (udev_event_cb), manager); devices = g_udev_client_query_by_subsystem (priv->udev_client, subsystems[0]); for (l = devices; l; l = l->next) { g_autoptr(GUdevDevice) device = l->data; if (device_is_evdev (device)) add_device (manager, device); } } CsdDeviceManager * csd_device_manager_get (void) { CsdDeviceManager *manager; GdkScreen *screen; screen = gdk_screen_get_default (); g_return_val_if_fail (screen != NULL, NULL); manager = g_object_get_data (G_OBJECT (screen), "csd-device-manager-data"); if (!manager) { manager = g_object_new (CSD_TYPE_DEVICE_MANAGER, NULL); g_object_set_data_full (G_OBJECT (screen), "csd-device-manager-data", manager, (GDestroyNotify) g_object_unref); } return manager; } GList * csd_device_manager_list_devices (CsdDeviceManager *manager, CsdDeviceType type) { g_return_val_if_fail (CSD_IS_DEVICE_MANAGER (manager), NULL); return CSD_DEVICE_MANAGER_GET_CLASS (manager)->list_devices (manager, type); } CsdDeviceType csd_device_get_device_type (CsdDevice *device) { CsdDevicePrivate *priv; g_return_val_if_fail (CSD_IS_DEVICE (device), 0); priv = csd_device_get_instance_private (device); return priv->type; } void csd_device_get_device_ids (CsdDevice *device, const gchar **vendor, const gchar **product) { CsdDevicePrivate *priv; g_return_if_fail (CSD_IS_DEVICE (device)); priv = csd_device_get_instance_private (device); if (vendor) *vendor = priv->vendor_id; if (product) *product = priv->product_id; } GSettings * csd_device_get_settings (CsdDevice *device) { const gchar *schema = NULL, *vendor, *product; CsdDeviceType type; g_autofree gchar *path = NULL; g_return_val_if_fail (CSD_IS_DEVICE (device), NULL); type = csd_device_get_device_type (device); if (type & (CSD_DEVICE_TYPE_TOUCHSCREEN | CSD_DEVICE_TYPE_TABLET)) { csd_device_get_device_ids (device, &vendor, &product); if (type & CSD_DEVICE_TYPE_TOUCHSCREEN) { schema = "org.cinnamon.desktop.peripherals.touchscreen"; path = g_strdup_printf ("/org/cinnamon/desktop/peripherals/touchscreens/%s:%s/", vendor, product); } else if (type & CSD_DEVICE_TYPE_TABLET) { schema = "org.cinnamon.desktop.peripherals.tablet"; path = g_strdup_printf ("/org/cinnamon/desktop/peripherals/tablets/%s:%s/", vendor, product); } } else if (type & (CSD_DEVICE_TYPE_MOUSE | CSD_DEVICE_TYPE_TOUCHPAD)) { schema = "org.cinnamon.desktop.peripherals.mouse"; } else if (type & CSD_DEVICE_TYPE_KEYBOARD) { schema = "org.cinnamon.desktop.peripherals.keyboard"; } else { return NULL; } if (path) { return g_settings_new_with_path (schema, path); } else { return g_settings_new (schema); } } const gchar * csd_device_get_name (CsdDevice *device) { CsdDevicePrivate *priv; g_return_val_if_fail (CSD_IS_DEVICE (device), NULL); priv = csd_device_get_instance_private (device); return priv->name; } const gchar * csd_device_get_device_file (CsdDevice *device) { CsdDevicePrivate *priv; g_return_val_if_fail (CSD_IS_DEVICE (device), NULL); priv = csd_device_get_instance_private (device); return priv->device_file; } gboolean csd_device_get_dimensions (CsdDevice *device, guint *width, guint *height) { CsdDevicePrivate *priv; g_return_val_if_fail (CSD_IS_DEVICE (device), FALSE); priv = csd_device_get_instance_private (device); if (width) *width = priv->width; if (height) *height = priv->height; return priv->width > 0 && priv->height > 0; } CsdDevice * csd_device_manager_lookup_gdk_device (CsdDeviceManager *manager, GdkDevice *gdk_device) { CsdDeviceManagerClass *klass; g_return_val_if_fail (CSD_IS_DEVICE_MANAGER (manager), NULL); g_return_val_if_fail (GDK_IS_DEVICE (gdk_device), NULL); klass = CSD_DEVICE_MANAGER_GET_CLASS (manager); if (!klass->lookup_device) return NULL; return klass->lookup_device (manager, gdk_device); } cinnamon-control-center-6.2.0/panels/common/cc-language-chooser.c0000664000175000017500000002567614632072346023754 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright 2009-2010 Red Hat, Inc, * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA 02110-1335, USA. * * Written by: Matthias Clasen */ #include "config.h" #include #include #include #include #include #include #include #include "cc-language-chooser.h" #include "cc-common-language.h" #include "gdm-languages.h" gchar * cc_language_chooser_get_language (GtkWidget *chooser) { GtkTreeView *tv; GtkTreeSelection *selection; GtkTreeModel *model; GtkTreeIter iter; gchar *lang; tv = (GtkTreeView *) g_object_get_data (G_OBJECT (chooser), "list"); selection = gtk_tree_view_get_selection (tv); gdk_threads_enter (); if (gtk_tree_selection_get_selected (selection, &model, &iter)) gtk_tree_model_get (model, &iter, LOCALE_COL, &lang, -1); else lang = NULL; gdk_threads_leave (); return lang; } void cc_language_chooser_clear_filter (GtkWidget *chooser) { GtkEntry *entry; entry = (GtkEntry *) g_object_get_data (G_OBJECT (chooser), "filter-entry"); gtk_entry_set_text (entry, ""); } static void row_activated (GtkTreeView *tree_view, GtkTreePath *path, GtkTreeViewColumn *column, GtkWidget *chooser) { gtk_dialog_response (GTK_DIALOG (chooser), GTK_RESPONSE_OK); } static void languages_foreach_cb (gpointer key, gpointer value, gpointer user_data) { GtkListStore *store = (GtkListStore *) user_data; const char *locale = (const char *) key; const char *display_locale = (const char *) value; GtkTreeIter iter; gtk_list_store_append (store, &iter); gtk_list_store_set (store, &iter, LOCALE_COL, locale, DISPLAY_LOCALE_COL, display_locale, -1); } void cc_add_user_languages (GtkTreeModel *model) { char *name; GtkTreeIter iter; GtkListStore *store = GTK_LIST_STORE (model); GHashTable *user_langs; const char *display; gtk_list_store_clear (store); user_langs = cc_common_language_get_initial_languages (); /* Add the current locale first */ // name = cc_common_language_get_current_language (); // display = g_hash_table_lookup (user_langs, name); name = g_strdup ("en"); display = gdm_get_language_from_name (name, NULL); gtk_list_store_append (store, &iter); gtk_list_store_set (store, &iter, LOCALE_COL, name, DISPLAY_LOCALE_COL, display, -1); if (g_hash_table_lookup (user_langs, name) != NULL) g_hash_table_remove (user_langs, name); g_free (name); /* The rest of the languages */ g_hash_table_foreach (user_langs, (GHFunc) languages_foreach_cb, store); /* And now the "Other..." selection */ // gtk_list_store_append (store, &iter); // gtk_list_store_set (store, &iter, LOCALE_COL, NULL, DISPLAY_LOCALE_COL, _("Other..."), -1); g_hash_table_destroy (user_langs); } static void remove_timeout (gpointer data, GObject *where_the_object_was) { guint timeout = GPOINTER_TO_UINT (data); if (timeout){ g_source_remove (timeout); } } static void remove_async (gpointer data) { guint async_id = GPOINTER_TO_UINT (data); if (async_id) { g_source_remove (async_id); } } static void selection_changed (GtkTreeSelection *selection, GtkWidget *chooser) { gtk_dialog_set_response_sensitive (GTK_DIALOG (chooser), GTK_RESPONSE_OK, gtk_tree_selection_get_selected (selection, NULL, NULL)); } static gboolean finish_language_chooser (gpointer user_data) { GtkWidget *chooser = (GtkWidget *) user_data; GtkWidget *list; GtkTreeModel *model; GtkWindow *parent; GHashTable *user_langs; guint timeout; guint async_id; GtkTreeSelection *selection; gboolean regions; /* Did we get called after the widget was destroyed? */ if (chooser == NULL) return FALSE; regions = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (chooser), "regions")); list = g_object_get_data (G_OBJECT (chooser), "list"); model = gtk_tree_view_get_model (GTK_TREE_VIEW (list)); model = gtk_tree_model_filter_get_model (GTK_TREE_MODEL_FILTER (model)); user_langs = g_object_get_data (G_OBJECT (chooser), "user-langs"); async_id = cc_common_language_add_available_languages (GTK_LIST_STORE (model), regions, user_langs); g_object_set_data_full (G_OBJECT (chooser), "language-async", GUINT_TO_POINTER (async_id), remove_async); parent = gtk_window_get_transient_for (GTK_WINDOW (chooser)); gdk_window_set_cursor (gtk_widget_get_window (GTK_WIDGET (parent)), NULL); g_object_set_data (G_OBJECT (chooser), "user-langs", NULL); timeout = GPOINTER_TO_UINT (g_object_get_data (G_OBJECT (chooser), "timeout")); g_object_weak_unref (G_OBJECT (chooser), (GWeakNotify) remove_timeout, GUINT_TO_POINTER (timeout)); /* And now listen for changes */ selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (list)); g_signal_connect (G_OBJECT (selection), "changed", G_CALLBACK (selection_changed), chooser); return FALSE; } static void filter_clear (GtkEntry *entry, GtkEntryIconPosition icon_pos, GdkEvent *event, gpointer user_data) { gtk_entry_set_text (entry, ""); } static void filter_changed (GtkWidget *entry, GParamSpec *pspec, GtkWidget *list) { const gchar *pattern; GtkTreeModel *filter_model; GtkTreeModel *model; pattern = gtk_entry_get_text (GTK_ENTRY (entry)); filter_model = gtk_tree_view_get_model (GTK_TREE_VIEW (list)); model = gtk_tree_model_filter_get_model (GTK_TREE_MODEL_FILTER (filter_model)); if (g_strcmp0 (pattern, "") == 0) { g_object_set (G_OBJECT (entry), "secondary-icon-name", "edit-find-symbolic", "secondary-icon-activatable", FALSE, "secondary-icon-sensitive", FALSE, NULL); g_object_set_data_full (G_OBJECT (model), "filter-string", g_strdup (""), g_free); } else { g_object_set (G_OBJECT (entry), "secondary-icon-name", "edit-clear-symbolic", "secondary-icon-activatable", TRUE, "secondary-icon-sensitive", TRUE, NULL); g_object_set_data_full (G_OBJECT (model), "filter-string", g_utf8_casefold (pattern, -1), g_free); } gtk_tree_model_filter_refilter (GTK_TREE_MODEL_FILTER (filter_model)); } static gboolean filter_languages (GtkTreeModel *model, GtkTreeIter *iter, gpointer data) { const gchar *filter_string; gchar *locale, *l; gboolean visible; filter_string = g_object_get_data (G_OBJECT (model), "filter-string"); if (filter_string == NULL) { return TRUE; } gdk_threads_enter (); gtk_tree_model_get (model, iter, DISPLAY_LOCALE_COL, &locale, -1); gdk_threads_leave (); l = g_utf8_casefold (locale, -1); visible = strstr (l, filter_string) != NULL; g_free (locale); g_free (l); return visible; } GtkWidget * cc_language_chooser_new (GtkWidget *parent, gboolean regions) { GtkBuilder *builder; const char *filename; GError *error = NULL; GtkWidget *chooser; GtkWidget *list; GtkWidget *button; GtkWidget *entry; GtkWidget *widget; GHashTable *user_langs; GdkCursor *cursor; guint timeout; GtkTreeModel *model; GtkTreeModel *filter_model; builder = gtk_builder_new (); filename = UIDIR "/language-chooser.ui"; if (!g_file_test (filename, G_FILE_TEST_EXISTS)) filename = "data/language-chooser.ui"; if (!gtk_builder_add_from_file (builder, filename, &error)) { g_warning ("failed to load language chooser: %s", error->message); g_error_free (error); return NULL; } chooser = (GtkWidget *) gtk_builder_get_object (builder, "dialog"); if (regions) { widget = (GtkWidget *) gtk_builder_get_object (builder, "title"); gtk_label_set_text (GTK_LABEL (widget), _("Select a region")); /* communicate the preference to finish_language_chooser() */ g_object_set_data (G_OBJECT (chooser), "regions", GINT_TO_POINTER (TRUE)); } list = (GtkWidget *) gtk_builder_get_object (builder, "language-list"); g_object_set_data (G_OBJECT (chooser), "list", list); g_signal_connect (list, "row-activated", G_CALLBACK (row_activated), chooser); button = (GtkWidget *) gtk_builder_get_object (builder, "ok-button"); gtk_widget_grab_default (button); entry = (GtkWidget *) gtk_builder_get_object (builder, "filter-entry"); g_object_set_data (G_OBJECT (chooser), "filter-entry", entry); g_signal_connect (entry, "notify::text", G_CALLBACK (filter_changed), list); g_signal_connect (entry, "icon-release", G_CALLBACK (filter_clear), NULL); gtk_widget_grab_focus (entry); user_langs = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free); cc_common_language_setup_list (list, user_langs); model = gtk_tree_view_get_model (GTK_TREE_VIEW (list)); filter_model = gtk_tree_model_filter_new (model, NULL); gtk_tree_model_filter_set_visible_func (GTK_TREE_MODEL_FILTER (filter_model), filter_languages, NULL, NULL); gtk_tree_view_set_model (GTK_TREE_VIEW (list), filter_model); /* Setup so that the list is added after the dialogue is shown */ cursor = gdk_cursor_new (GDK_WATCH); gdk_window_set_cursor (gtk_widget_get_window (parent), cursor); g_object_unref (cursor); gtk_window_set_transient_for (GTK_WINDOW (chooser), GTK_WINDOW (parent)); g_object_set_data_full (G_OBJECT (chooser), "user-langs", user_langs, (GDestroyNotify) g_hash_table_destroy); timeout = g_idle_add ((GSourceFunc) finish_language_chooser, chooser); g_object_set_data (G_OBJECT (chooser), "timeout", GUINT_TO_POINTER (timeout)); g_object_weak_ref (G_OBJECT (chooser), (GWeakNotify) remove_timeout, GUINT_TO_POINTER (timeout)); g_object_unref (builder); return chooser; } cinnamon-control-center-6.2.0/panels/common/cc-common-language.h0000664000175000017500000000414614632072346023574 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright 2009-2010 Red Hat, Inc, * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA 02110-1335, USA. * * Written by: Matthias Clasen */ #ifndef __CC_COMMON_LANGUAGE_H__ #define __CC_COMMON_LANGUAGE_H__ #include G_BEGIN_DECLS enum { LOCALE_COL, DISPLAY_LOCALE_COL, SEPARATOR_COL, USER_LANGUAGE, NUM_COLS }; gboolean cc_common_language_get_iter_for_language (GtkTreeModel *model, const gchar *lang, GtkTreeIter *iter); gboolean cc_common_language_get_iter_for_region (GtkTreeModel *model, const gchar *lang, GtkTreeIter *iter); guint cc_common_language_add_available_languages (GtkListStore *store, gboolean regions, GHashTable *user_langs); gboolean cc_common_language_has_font (const gchar *locale); gchar *cc_common_language_get_current_language (void); GHashTable *cc_common_language_get_initial_languages (void); GHashTable *cc_common_language_get_initial_regions (const gchar *lang); void cc_common_language_setup_list (GtkWidget *treeview, GHashTable *initial); void cc_common_language_select_current_language (GtkTreeView *treeview); G_END_DECLS #endif cinnamon-control-center-6.2.0/panels/common/csd-input-helper.h0000664000175000017500000000202714632072346023317 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2010 Bastien Nocera * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ #pragma once G_BEGIN_DECLS #include gboolean touchpad_is_present (void); gboolean touchscreen_is_present (void); gboolean mouse_is_present (void); char * xdevice_get_device_node (int deviceid); G_END_DECLS cinnamon-control-center-6.2.0/panels/region/0000775000175000017500000000000014632072346017755 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/region/meson.build0000664000175000017500000000160714632072346022123 0ustar fabiofabio panel_region_sources = [ 'cc-region-panel.c', 'cinnamon-region-panel-xkb.c', 'cinnamon-region-panel-xkblt.c', 'cinnamon-region-panel-xkbltadd.c', 'cinnamon-region-panel-xkbot.c', 'cinnamon-region-panel-xkbpv.c', 'region-module.c', ] panel_region = shared_library('region', panel_region_sources, include_directories: rootInclude, link_with: [ libcinnamon_control_center, ], dependencies: [ glib, gtk, cinn_desktop, libgnomekbd, libgnomekbdui, libxklavier ], install: true, install_dir: panels_dir ) install_data([ 'cinnamon-region-panel-layout-chooser.ui', 'cinnamon-region-panel-options-dialog.ui', 'cinnamon-region-panel.ui', ], install_dir: ui_dir, ) # Region panel is imported as a page of cs_keyboard so no share/applications entry needed. install_data( 'cinnamon-region-panel.desktop', install_dir: panel_def_dir )cinnamon-control-center-6.2.0/panels/region/cinnamon-region-panel-layout-chooser.ui0000664000175000017500000002022114632072346027444 0ustar fabiofabio layout_list_model False False 5 Choose a Layout True center-on-parent dialog True False vertical 2 True False end Preview True True True False False False 0 True gtk-cancel True True True False False True False False end 1 gtk-add True True True False False True False False end 2 True False 5 6 True False 6 True False 0 Select an input source to add False False 0 True True never etched-in 450 250 True True filtered_layout_list_model False 0 True True 1 True True 0 True True • edit-find-symbolic False False False False end 1 True True 1 btnPreview btnOk btnCancel cinnamon-control-center-6.2.0/panels/region/region-module.c0000664000175000017500000000202514632072346022666 0ustar fabiofabio/* * Copyright (C) 2010 Intel, Inc * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA 02110-1335, USA. * * Author: Sergey Udaltsov * */ #include #include "cc-region-panel.h" #include void g_io_module_load (GIOModule * module) { /* register the panel */ cc_region_panel_register (module); } void g_io_module_unload (GIOModule * module) { } cinnamon-control-center-6.2.0/panels/region/cinnamon-region-panel-xkblt.c0000664000175000017500000003106014632072346025423 0ustar fabiofabio/* cinnamon-region-panel-xkblt.c * Copyright (C) 2003-2007 Sergey V. Udaltsov * * Written by: Sergey V. Udaltsov * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA * 02110-1335, USA. */ #include #include #include #include #include #include "cinnamon-region-panel-xkb.h" enum { SEL_LAYOUT_TREE_COL_DESCRIPTION, SEL_LAYOUT_TREE_COL_ID, SEL_LAYOUT_TREE_COL_ENABLED, SEL_LAYOUT_N_COLS }; static int idx2select = -1; static int max_selected_layouts = -1; static GtkCellRenderer *text_renderer; static gboolean disable_buttons_sensibility_update = FALSE; static gboolean get_selected_iter (GtkBuilder *dialog, GtkTreeModel **model, GtkTreeIter *iter) { GtkTreeSelection *selection; selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (WID ("xkb_layouts_selected"))); return gtk_tree_selection_get_selected (selection, model, iter); } static void set_selected_path (GtkBuilder *dialog, GtkTreePath *path) { GtkTreeSelection *selection; selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (WID ("xkb_layouts_selected"))); gtk_tree_selection_select_path (selection, path); } static gint find_selected_layout_idx (GtkBuilder *dialog) { GtkTreeIter selected_iter; GtkTreeModel *model; GtkTreePath *path; gint *indices; gint rv; if (!get_selected_iter (dialog, &model, &selected_iter)) return -1; path = gtk_tree_model_get_path (model, &selected_iter); if (path == NULL) return -1; indices = gtk_tree_path_get_indices (path); rv = indices[0]; gtk_tree_path_free (path); return rv; } gchar ** xkb_layouts_get_selected_list (void) { gchar **retval; retval = g_settings_get_strv (xkb_keyboard_settings, GKBD_KEYBOARD_CONFIG_KEY_LAYOUTS); if (retval == NULL || retval[0] == NULL) { g_strfreev (retval); retval = g_strdupv (initial_config.layouts_variants); } return retval; } gint xkb_get_default_group () { return g_settings_get_int (xkb_desktop_settings, GKBD_DESKTOP_CONFIG_KEY_DEFAULT_GROUP); } void xkb_save_default_group (gint default_group) { g_settings_set_int (xkb_desktop_settings, GKBD_DESKTOP_CONFIG_KEY_DEFAULT_GROUP, default_group); } static void xkb_layouts_enable_disable_buttons (GtkBuilder * dialog) { GtkWidget *add_layout_btn = WID ("xkb_layouts_add"); GtkWidget *show_layout_btn = WID ("xkb_layouts_show"); GtkWidget *del_layout_btn = WID ("xkb_layouts_remove"); GtkWidget *selected_layouts_tree = WID ("xkb_layouts_selected"); GtkWidget *move_up_layout_btn = WID ("xkb_layouts_move_up"); GtkWidget *move_down_layout_btn = WID ("xkb_layouts_move_down"); GtkTreeSelection *s_selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (selected_layouts_tree)); const int n_selected_selected_layouts = gtk_tree_selection_count_selected_rows (s_selection); GtkTreeModel *selected_layouts_model = gtk_tree_view_get_model (GTK_TREE_VIEW (selected_layouts_tree)); const int n_selected_layouts = gtk_tree_model_iter_n_children (selected_layouts_model, NULL); gint sidx = find_selected_layout_idx (dialog); if (disable_buttons_sensibility_update) return; gtk_widget_set_sensitive (add_layout_btn, (n_selected_layouts < max_selected_layouts || max_selected_layouts == 0)); gtk_widget_set_sensitive (del_layout_btn, (n_selected_layouts > 1) && (n_selected_selected_layouts > 0)); gtk_widget_set_sensitive (show_layout_btn, (n_selected_selected_layouts > 0)); gtk_widget_set_sensitive (move_up_layout_btn, sidx > 0); gtk_widget_set_sensitive (move_down_layout_btn, sidx >= 0 && sidx < (n_selected_layouts - 1)); } static void update_layouts_list (GtkTreeModel *model, GtkBuilder *dialog) { gboolean cont; GtkTreeIter iter; GPtrArray *array; array = g_ptr_array_new_with_free_func ((GDestroyNotify) g_free); cont = gtk_tree_model_get_iter_first (model, &iter); while (cont) { char *id; gtk_tree_model_get (model, &iter, SEL_LAYOUT_TREE_COL_ID, &id, -1); g_ptr_array_add (array, id); cont = gtk_tree_model_iter_next (model, &iter); } g_ptr_array_add (array, NULL); xkb_layouts_set_selected_list (array->pdata); g_ptr_array_free (array, TRUE); xkb_layouts_enable_disable_buttons (dialog); } static void xkb_layouts_drag_end (GtkWidget *widget, GdkDragContext *drag_context, gpointer user_data) { update_layouts_list (gtk_tree_view_get_model (GTK_TREE_VIEW (widget)), GTK_BUILDER (user_data)); } void xkb_layouts_prepare_selected_tree (GtkBuilder * dialog) { GtkListStore *list_store; GtkWidget *tree_view = WID ("xkb_layouts_selected"); GtkTreeSelection *selection; GtkTreeViewColumn *desc_column; list_store = gtk_list_store_new (SEL_LAYOUT_N_COLS, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_BOOLEAN); text_renderer = GTK_CELL_RENDERER (gtk_cell_renderer_text_new ()); desc_column = gtk_tree_view_column_new_with_attributes (_("Layout"), text_renderer, "text", SEL_LAYOUT_TREE_COL_DESCRIPTION, "sensitive", SEL_LAYOUT_TREE_COL_ENABLED, NULL); selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (tree_view)); gtk_tree_view_set_model (GTK_TREE_VIEW (tree_view), GTK_TREE_MODEL (list_store)); gtk_tree_view_column_set_sizing (desc_column, GTK_TREE_VIEW_COLUMN_AUTOSIZE); gtk_tree_view_column_set_resizable (desc_column, TRUE); gtk_tree_view_column_set_expand (desc_column, TRUE); gtk_tree_view_append_column (GTK_TREE_VIEW (tree_view), desc_column); g_signal_connect_swapped (G_OBJECT (selection), "changed", G_CALLBACK (xkb_layouts_enable_disable_buttons), dialog); max_selected_layouts = xkl_engine_get_max_num_groups (engine); /* Setting up DnD */ gtk_tree_view_set_reorderable (GTK_TREE_VIEW (tree_view), TRUE); g_signal_connect (G_OBJECT (tree_view), "drag-end", G_CALLBACK (xkb_layouts_drag_end), dialog); } gchar * xkb_layout_description_utf8 (const gchar * visible) { char *l, *sl, *v, *sv; if (gkbd_keyboard_config_get_descriptions (config_registry, visible, &sl, &l, &sv, &v)) visible = gkbd_keyboard_config_format_full_description (l, v); return g_strstrip (g_strdup (visible)); } void xkb_layouts_fill_selected_tree (GtkBuilder * dialog) { gchar **layouts = xkb_layouts_get_selected_list (); guint i; GtkListStore *list_store = GTK_LIST_STORE (gtk_tree_view_get_model (GTK_TREE_VIEW (WID ("xkb_layouts_selected")))); /* temporarily disable the buttons' status update */ disable_buttons_sensibility_update = TRUE; gtk_list_store_clear (list_store); for (i = 0; layouts != NULL && layouts[i] != NULL; i++) { char *cur_layout = layouts[i]; gchar *utf_visible = xkb_layout_description_utf8 (cur_layout); gtk_list_store_insert_with_values (list_store, NULL, G_MAXINT, SEL_LAYOUT_TREE_COL_DESCRIPTION, utf_visible, SEL_LAYOUT_TREE_COL_ID, cur_layout, SEL_LAYOUT_TREE_COL_ENABLED, i < max_selected_layouts, -1); g_free (utf_visible); } g_strfreev (layouts); /* enable the buttons' status update */ disable_buttons_sensibility_update = FALSE; if (idx2select != -1) { GtkTreeSelection *selection = gtk_tree_view_get_selection ((GTK_TREE_VIEW (WID ("xkb_layouts_selected")))); GtkTreePath *path = gtk_tree_path_new_from_indices (idx2select, -1); gtk_tree_selection_select_path (selection, path); gtk_tree_path_free (path); idx2select = -1; } else { /* if there is nothing to select - just enable/disable the buttons, otherwise it would be done by the selection change */ xkb_layouts_enable_disable_buttons (dialog); } } static void add_default_switcher_if_necessary () { gchar **layouts_list = xkb_layouts_get_selected_list(); gchar **options_list = xkb_options_get_selected_list (); gboolean was_appended; options_list = gkbd_keyboard_config_add_default_switch_option_if_necessary (layouts_list, options_list, &was_appended); if (was_appended) xkb_options_set_selected_list (options_list); g_strfreev (options_list); } static void chooser_response (GtkDialog *chooser, int response_id, GtkBuilder *dialog) { if (response_id == GTK_RESPONSE_OK) { char *id, *name; GtkListStore *list_store; list_store = GTK_LIST_STORE (gtk_tree_view_get_model (GTK_TREE_VIEW (WID ("xkb_layouts_selected")))); id = xkb_layout_chooser_get_selected_id (chooser); name = xkb_layout_description_utf8 (id); gtk_list_store_insert_with_values (list_store, NULL, G_MAXINT, SEL_LAYOUT_TREE_COL_DESCRIPTION, name, SEL_LAYOUT_TREE_COL_ID, id, SEL_LAYOUT_TREE_COL_ENABLED, TRUE, -1); g_free (name); add_default_switcher_if_necessary (); update_layouts_list (GTK_TREE_MODEL (list_store), dialog); } xkb_layout_chooser_response (chooser, response_id); } static void add_selected_layout (GtkWidget * button, GtkBuilder * dialog) { GtkWidget *chooser; chooser = xkb_layout_choose (dialog); g_signal_connect (G_OBJECT (chooser), "response", G_CALLBACK (chooser_response), dialog); } static void show_selected_layout (GtkWidget * button, GtkBuilder * dialog) { gint idx = find_selected_layout_idx (dialog); if (idx != -1) { GtkWidget *parent = WID ("region_notebook"); GtkWidget *popup = gkbd_keyboard_drawing_dialog_new (); gkbd_keyboard_drawing_dialog_set_group (popup, config_registry, idx); gtk_window_set_transient_for (GTK_WINDOW (popup), GTK_WINDOW (gtk_widget_get_toplevel (parent))); gtk_widget_show_all (popup); } } static void remove_selected_layout (GtkWidget * button, GtkBuilder * dialog) { GtkTreeModel *model; GtkTreeIter iter; if (get_selected_iter (dialog, &model, &iter) == FALSE) return; gtk_list_store_remove (GTK_LIST_STORE (model), &iter); update_layouts_list (model, dialog); } static void move_up_selected_layout (GtkWidget * button, GtkBuilder * dialog) { GtkTreeModel *model; GtkTreeIter iter, prev; GtkTreePath *path; if (get_selected_iter (dialog, &model, &iter) == FALSE) return; prev = iter; if (!gtk_tree_model_iter_previous (model, &prev)) return; path = gtk_tree_model_get_path (model, &prev); gtk_list_store_swap (GTK_LIST_STORE (model), &iter, &prev); update_layouts_list (model, dialog); set_selected_path (dialog, path); gtk_tree_path_free (path); } static void move_down_selected_layout (GtkWidget * button, GtkBuilder * dialog) { GtkTreeModel *model; GtkTreeIter iter, next; GtkTreePath *path; if (get_selected_iter (dialog, &model, &iter) == FALSE) return; next = iter; if (!gtk_tree_model_iter_next (model, &next)) return; path = gtk_tree_model_get_path (model, &next); gtk_list_store_swap (GTK_LIST_STORE (model), &iter, &next); update_layouts_list (model, dialog); set_selected_path (dialog, path); gtk_tree_path_free (path); } void xkb_layouts_register_buttons_handlers (GtkBuilder * dialog) { g_signal_connect (G_OBJECT (WID ("xkb_layouts_add")), "clicked", G_CALLBACK (add_selected_layout), dialog); g_signal_connect (G_OBJECT (WID ("xkb_layouts_show")), "clicked", G_CALLBACK (show_selected_layout), dialog); g_signal_connect (G_OBJECT (WID ("xkb_layouts_remove")), "clicked", G_CALLBACK (remove_selected_layout), dialog); g_signal_connect (G_OBJECT (WID ("xkb_layouts_move_up")), "clicked", G_CALLBACK (move_up_selected_layout), dialog); g_signal_connect (G_OBJECT (WID ("xkb_layouts_move_down")), "clicked", G_CALLBACK (move_down_selected_layout), dialog); } static void xkb_layouts_update_list (GSettings * settings, gchar * key, GtkBuilder * dialog) { if (strcmp (key, GKBD_KEYBOARD_CONFIG_KEY_LAYOUTS) == 0) { xkb_layouts_fill_selected_tree (dialog); enable_disable_restoring (dialog); } } void xkb_layouts_register_conf_listener (GtkBuilder * dialog) { g_signal_connect (xkb_keyboard_settings, "changed", G_CALLBACK (xkb_layouts_update_list), dialog); } cinnamon-control-center-6.2.0/panels/region/cinnamon-region-panel-options-dialog.ui0000664000175000017500000000726314632072346027432 0ustar fabiofabio False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 5 Keyboard Layout Options center-on-parent 550 400 dialog True False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK vertical 2 True True 5 out True False none True False False True 1 True False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK end gtk-close True True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK False True False False 1 button2 cinnamon-control-center-6.2.0/panels/region/cinnamon-region-panel.ui0000664000175000017500000007622614632072346024511 0ustar fabiofabio 100 2000 500 10 10 1 100000 1 1 10 10 110 30 10 10 100 2500 1000 200 200 500 0.5 10 10 900 0.5 10 10 3000 1800 10 10 10 1000 300 10 10 10 2000 300 10 10 1 100000 1 1 10 False 5 Region and Language 600 430 dialog True False vertical 2 False False True end 0 True False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 5 12 True False 10 12 True False 12 True False True True in True True False True True 0 True False icons False 1 True False Add Layout True list-add-symbolic False True True False Remove Layout True list-remove-symbolic False True True False Move Up True go-up-symbolic False True True False Move Down True go-down-symbolic False True True False Preview Layout True input-keyboard-symbolic False True False True 1 True True 0 True False 12 True False 6 Include less-common layouts in the selection list True True False True True True 0 True False True True 1 Use the same layout for all windows True True False 0 True True True True 2 Allow different layouts for individual windows True True False 0 True True chk_same_group True True 3 True False 12 True False New windows use the default layout True True False 0 True True True True 0 New windows use the previous window's layout True True False 0 True True chk_new_windows_default_layout True True 1 True True 4 True False True True 5 True False Display options 0 True True 6 True False 12 True False Use a country flag, if available, to represent keyboard layouts True True False 0 True True True 0 Show the layout name instead of the group name when using text to represent a layout True True False 0 True True True 1 Prefer upper-case when using text to represent a layout True True False 0 True True True 2 True True 8 False False 0 True False True False 1 True False 6 end _Options... True True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK True View and edit keyboard layout options View and edit keyboard layout options True False False 0 Reset to De_faults True True True True Replace the current keyboard layout settings with the default settings Replace the current keyboard layout settings with the default settings True False False end 1 True False False 2 True True 1 True True 1 False False 0 False True 1 cinnamon-control-center-6.2.0/panels/region/cinnamon-region-panel-xkbpv.c0000664000175000017500000000637714632072346025446 0ustar fabiofabio/* cinnamon-region-panel-xkbpv.c * Copyright (C) 2003-2007 Sergey V. Udaltsov * * Written by: Sergey V. Udaltsov * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA * 02110-1335, USA. */ #include #include #include "cinnamon-region-panel-xkb.h" #ifdef HAVE_X11_EXTENSIONS_XKB_H #include "X11/XKBlib.h" /** * BAD STYLE: Taken from xklavier_private_xkb.h * Any ideas on architectural improvements are WELCOME */ extern gboolean xkl_xkb_config_native_prepare (XklEngine * engine, const XklConfigRec * data, XkbComponentNamesPtr component_names); extern void xkl_xkb_config_native_cleanup (XklEngine * engine, XkbComponentNamesPtr component_names); /* */ #endif static GkbdKeyboardDrawingGroupLevel groupsLevels[] = { {0, 1}, {0, 3}, {0, 0}, {0, 2} }; static GkbdKeyboardDrawingGroupLevel *pGroupsLevels[] = { groupsLevels, groupsLevels + 1, groupsLevels + 2, groupsLevels + 3 }; GtkWidget * xkb_layout_preview_create_widget (GtkBuilder * chooserDialog) { GtkWidget *kbdraw = gkbd_keyboard_drawing_new (); gkbd_keyboard_drawing_set_groups_levels (GKBD_KEYBOARD_DRAWING (kbdraw), pGroupsLevels); return kbdraw; } void xkb_layout_preview_set_drawing_layout (GtkWidget * kbdraw, const gchar * id) { #ifdef HAVE_X11_EXTENSIONS_XKB_H if (kbdraw != NULL) { if (id != NULL) { XklConfigRec *data; char **p, *layout, *variant; XkbComponentNamesRec component_names; data = xkl_config_rec_new (); if (xkl_config_rec_get_from_server (data, engine)) { if ((p = data->layouts) != NULL) g_strfreev (data->layouts); if ((p = data->variants) != NULL) g_strfreev (data->variants); data->layouts = g_new0 (char *, 2); data->variants = g_new0 (char *, 2); if (gkbd_keyboard_config_split_items (id, &layout, &variant) && variant != NULL) { data->layouts[0] = (layout == NULL) ? NULL : g_strdup (layout); data->variants[0] = (variant == NULL) ? NULL : g_strdup (variant); } else { data->layouts[0] = (id == NULL) ? NULL : g_strdup (id); data->variants[0] = NULL; } if (xkl_xkb_config_native_prepare (engine, data, &component_names)) { gkbd_keyboard_drawing_set_keyboard (GKBD_KEYBOARD_DRAWING (kbdraw), &component_names); xkl_xkb_config_native_cleanup (engine, &component_names); } } g_object_unref (G_OBJECT (data)); } else gkbd_keyboard_drawing_set_keyboard (GKBD_KEYBOARD_DRAWING (kbdraw), NULL); } #endif } cinnamon-control-center-6.2.0/panels/region/cc-region-panel.h0000664000175000017500000000370214632072346023073 0ustar fabiofabio/* * Copyright (C) 2010 Intel, Inc * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA 02110-1335, USA. * * Author: Sergey Udaltsov * */ #ifndef _CC_REGION_PANEL_H #define _CC_REGION_PANEL_H #include G_BEGIN_DECLS #define CC_TYPE_REGION_PANEL cc_region_panel_get_type() #define CC_REGION_PANEL(obj) \ (G_TYPE_CHECK_INSTANCE_CAST ((obj), \ CC_TYPE_REGION_PANEL, CcRegionPanel)) #define CC_REGION_PANEL_CLASS(klass) \ (G_TYPE_CHECK_CLASS_CAST ((klass), \ CC_TYPE_REGION_PANEL, CcRegionPanelClass)) #define CC_IS_REGION_PANEL(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \ CC_TYPE_REGION_PANEL)) #define CC_IS_REGION_PANEL_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE ((klass), \ CC_TYPE_REGION_PANEL)) #define CC_REGION_PANEL_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), \ CC_TYPE_REGION_PANEL, CcRegionPanelClass)) typedef struct _CcRegionPanel CcRegionPanel; typedef struct _CcRegionPanelClass CcRegionPanelClass; typedef struct _CcRegionPanelPrivate CcRegionPanelPrivate; struct _CcRegionPanel { CcPanel parent; CcRegionPanelPrivate *priv; }; struct _CcRegionPanelClass { CcPanelClass parent_class; }; GType cc_region_panel_get_type (void) G_GNUC_CONST; void cc_region_panel_register (GIOModule *module); G_END_DECLS #endif /* _CC_REGION_PANEL_H */ cinnamon-control-center-6.2.0/panels/region/cc-region-panel.c0000664000175000017500000000554414632072346023074 0ustar fabiofabio/* * Copyright (C) 2010 Intel, Inc * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA 02110-1335, USA. * * Author: Sergey Udaltsov * */ #include "config.h" #include "cc-region-panel.h" #include #include #include "cinnamon-region-panel-xkb.h" G_DEFINE_DYNAMIC_TYPE (CcRegionPanel, cc_region_panel, CC_TYPE_PANEL) #define REGION_PANEL_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), CC_TYPE_REGION_PANEL, CcRegionPanelPrivate)) struct _CcRegionPanelPrivate { GtkBuilder *builder; }; static void cc_region_panel_finalize (GObject * object) { CcRegionPanel *panel; panel = CC_REGION_PANEL (object); if (panel->priv && panel->priv->builder) g_object_unref (panel->priv->builder); G_OBJECT_CLASS (cc_region_panel_parent_class)->finalize (object); } static void cc_region_panel_class_init (CcRegionPanelClass * klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); g_type_class_add_private (klass, sizeof (CcRegionPanelPrivate)); object_class->finalize = cc_region_panel_finalize; } static void cc_region_panel_class_finalize (CcRegionPanelClass * klass) { } static void cc_region_panel_init (CcRegionPanel * self) { CcRegionPanelPrivate *priv; GtkWidget *prefs_widget; const char *desktop; GError *error = NULL; priv = self->priv = REGION_PANEL_PRIVATE (self); desktop = g_getenv ("XDG_CURRENT_DESKTOP"); priv->builder = gtk_builder_new (); gtk_builder_add_from_file (priv->builder, CINNAMONCC_UI_DIR "/cinnamon-region-panel.ui", &error); if (error != NULL) { g_warning ("Error loading UI file: %s", error->message); g_error_free (error); return; } prefs_widget = (GtkWidget *) gtk_builder_get_object (priv->builder, "vbox1"); gtk_widget_set_size_request (GTK_WIDGET (prefs_widget), -1, 400); gtk_widget_reparent (prefs_widget, GTK_WIDGET (self)); setup_xkb_tabs (priv->builder); } void cc_region_panel_register (GIOModule * module) { textdomain (GETTEXT_PACKAGE); bindtextdomain (GETTEXT_PACKAGE, LOCALE_DIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); cc_region_panel_register_type (G_TYPE_MODULE (module)); g_io_extension_point_implement (CC_SHELL_PANEL_EXTENSION_POINT, CC_TYPE_REGION_PANEL, "region", 0); } cinnamon-control-center-6.2.0/panels/region/cinnamon-region-panel-xkb.c0000664000175000017500000001653014632072346025070 0ustar fabiofabio/* cinnamon-region-panel-xkb.c * Copyright (C) 2003-2007 Sergey V. Udaltsov * * Written by: Sergey V. Udaltsov * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA * 02110-1335, USA. */ #include #include #include #include #include "cinnamon-region-panel-xkb.h" #include #define CINNAMON_DESKTOP_INTERFACE_SCHEMA "org.cinnamon.desktop.interface" #define CINNAMON_DESKTOP_FLAG_KEY "keyboard-layout-show-flags" #define CINNAMON_DESKTOP_VARIANT_KEY "keyboard-layout-prefer-variant-names" #define CINNAMON_DESKTOP_UPPER_CASE_KEY "keyboard-layout-use-upper" #define GKBD_CONFIG_KEY_LOAD_EXTRA_ITEMS "load-extra-items" // These were removed from the API of libgnomekbd in version 3.28 const gchar GKBD_DESKTOP_CONFIG_KEY_DEFAULT_GROUP[] = "default-group"; const gchar GKBD_DESKTOP_CONFIG_KEY_GROUP_PER_WINDOW[] = "group-per-window"; const gchar GKBD_KEYBOARD_CONFIG_KEY_LAYOUTS[] = "layouts"; const gchar GKBD_KEYBOARD_CONFIG_KEY_OPTIONS[] = "options"; XklEngine *engine; XklConfigRegistry *config_registry; GkbdKeyboardConfig initial_config; GkbdDesktopConfig desktop_config; GSettings *xkb_keyboard_settings; GSettings *xkb_desktop_settings; GSettings *cinnamon_desktop_settings; char * xci_desc_to_utf8 (const XklConfigItem * ci) { gchar *dd = g_strdup (ci->description); gchar *sd = g_strstrip (dd); gchar *rv = g_strdup (sd[0] == 0 ? ci->name : sd); g_free (dd); return rv; } static void reset_to_defaults (GtkWidget * button, GtkBuilder * dialog) { GkbdKeyboardConfig empty_kbd_config; gkbd_keyboard_config_init (&empty_kbd_config, engine); gkbd_keyboard_config_save (&empty_kbd_config); gkbd_keyboard_config_term (&empty_kbd_config); g_settings_reset (xkb_desktop_settings, GKBD_DESKTOP_CONFIG_KEY_DEFAULT_GROUP); /* all the rest is g-s-d's business */ } static void chk_new_windows_inherit_layout_toggled (GtkWidget * chk_new_windows_inherit_layout, GtkBuilder * dialog) { xkb_save_default_group (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (chk_new_windows_inherit_layout)) ? -1 : 0); } static void on_load_extra_items_toggled (GtkWidget *widget, gpointer user_data) { g_settings_set_boolean (xkb_desktop_settings, GKBD_CONFIG_KEY_LOAD_EXTRA_ITEMS, gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget))); gkbd_desktop_config_load (&desktop_config); xkl_config_registry_load (config_registry, desktop_config.load_extra_items); } void setup_xkb_tabs (GtkBuilder * dialog) { GtkWidget *widget; GtkStyleContext *context; GtkWidget *chk_new_windows_inherit_layout; chk_new_windows_inherit_layout = WID ("chk_new_windows_inherit_layout"); xkb_desktop_settings = g_settings_new (GKBD_DESKTOP_SCHEMA); xkb_keyboard_settings = g_settings_new (GKBD_KEYBOARD_SCHEMA); cinnamon_desktop_settings = g_settings_new (CINNAMON_DESKTOP_INTERFACE_SCHEMA); engine = xkl_engine_get_instance (GDK_DISPLAY_XDISPLAY (gdk_display_get_default ())); config_registry = xkl_config_registry_get_instance (engine); gkbd_desktop_config_init (&desktop_config, engine); gkbd_desktop_config_load (&desktop_config); xkl_config_registry_load (config_registry, desktop_config.load_extra_items); gkbd_keyboard_config_init (&initial_config, engine); gkbd_keyboard_config_load_from_x_initial (&initial_config, NULL); /* Set initial state */ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (WID ("chk_separate_group_per_window")), g_settings_get_boolean (xkb_desktop_settings, GKBD_DESKTOP_CONFIG_KEY_GROUP_PER_WINDOW)); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (chk_new_windows_inherit_layout), xkb_get_default_group () < 0); g_settings_bind (xkb_desktop_settings, GKBD_DESKTOP_CONFIG_KEY_GROUP_PER_WINDOW, WID ("chk_separate_group_per_window"), "active", G_SETTINGS_BIND_DEFAULT); g_settings_bind (xkb_desktop_settings, GKBD_DESKTOP_CONFIG_KEY_GROUP_PER_WINDOW, WID ("chk_new_windows_inherit_layout"), "sensitive", G_SETTINGS_BIND_DEFAULT); g_settings_bind (xkb_desktop_settings, GKBD_DESKTOP_CONFIG_KEY_GROUP_PER_WINDOW, WID ("chk_new_windows_default_layout"), "sensitive", G_SETTINGS_BIND_DEFAULT); g_settings_bind (cinnamon_desktop_settings, CINNAMON_DESKTOP_FLAG_KEY, WID ("country-flag-check"), "active", G_SETTINGS_BIND_DEFAULT); g_settings_bind (cinnamon_desktop_settings, CINNAMON_DESKTOP_VARIANT_KEY, WID ("prefer-variant-check"), "active", G_SETTINGS_BIND_DEFAULT); g_settings_bind (cinnamon_desktop_settings, CINNAMON_DESKTOP_UPPER_CASE_KEY, WID ("use-caps-check"), "active", G_SETTINGS_BIND_DEFAULT); xkb_layouts_prepare_selected_tree (dialog); xkb_layouts_fill_selected_tree (dialog); xkb_layouts_register_buttons_handlers (dialog); g_signal_connect (G_OBJECT (WID ("xkb_reset_to_defaults")), "clicked", G_CALLBACK (reset_to_defaults), dialog); g_signal_connect (G_OBJECT (chk_new_windows_inherit_layout), "toggled", G_CALLBACK (chk_new_windows_inherit_layout_toggled), dialog); g_signal_connect_swapped (G_OBJECT (WID ("xkb_layout_options")), "clicked", G_CALLBACK (xkb_options_popup_dialog), dialog); widget = WID ("load_extras_checkbox"); g_settings_bind (xkb_desktop_settings, GKBD_CONFIG_KEY_LOAD_EXTRA_ITEMS, widget, "active", G_SETTINGS_BIND_GET); g_signal_connect (widget, "toggled", G_CALLBACK (on_load_extra_items_toggled), dialog); xkb_layouts_register_conf_listener (dialog); xkb_options_register_conf_listener (dialog); enable_disable_restoring (dialog); /* Setup junction between toolbar and treeview */ widget = WID ("xkb_layouts_swindow"); context = gtk_widget_get_style_context (widget); gtk_style_context_set_junction_sides (context, GTK_JUNCTION_BOTTOM); widget = WID ("layouts-toolbar"); context = gtk_widget_get_style_context (widget); gtk_style_context_set_junction_sides (context, GTK_JUNCTION_TOP); } void enable_disable_restoring (GtkBuilder * dialog) { GkbdKeyboardConfig gswic; gboolean enable; gkbd_keyboard_config_init (&gswic, engine); gkbd_keyboard_config_load (&gswic, NULL); enable = !gkbd_keyboard_config_equals (&gswic, &initial_config); gkbd_keyboard_config_term (&gswic); gtk_widget_set_sensitive (WID ("xkb_reset_to_defaults"), enable); } cinnamon-control-center-6.2.0/panels/region/cinnamon-region-panel.desktop0000664000175000017500000001600414632072346025531 0ustar fabiofabio[Desktop Entry] Exec=cinnamon-settings region Icon=cs-language Terminal=false Type=Application StartupNotify=true Categories=GTK;Settings;DesktopSettings;X-Cinnamon-Settings-Panel;X-Cinnamon-PersonalSettings OnlyShowIn=X-Cinnamon; X-Cinnamon-Settings-Panel=region NoDisplay=true Name=Region & Language Name[am]=įŠ įŠ«į‰£į‰¢ & į‰‹įŠ•į‰‹ Name[ar]=اللغة & المنطقة Name[ast]=Rexón y llingua Name[ay]=Suyumpi arumpi Name[az]=Bƶlgə ilə Dil Name[be]=Š ŃŠ³Ń–Ń‘Š½ і мова Name[be@latin]=Š ŃŠ³Ń–Ń‘Š½ і мова Name[bg]=Регион Šø език Name[bs]=Regija i jezik Name[ca]=Regió i idioma Name[ca@valencia]=Regió i idioma Name[cs]=Region a jazyk Name[cy]=Ardal ac Iaith Name[da]=Region og sprog Name[de]=Region und Sprache Name[el]=Περιοχή & Ī³Ī»ĻŽĻƒĻƒĪ± Name[eo]=Regio & lingvo Name[es]=Región e idioma Name[et]=Piirkond ja keel Name[eu]=Eskualdea eta hizkuntza Name[fa]=Ł†Ų§Ų­ŪŒŁ‡ و زبان Name[fi]=Alue ja kielet Name[fr]=Pays et langue Name[fr_CA]=RĆ©gion & langue Name[gd]=Dùthaich ⁊ cĆ nan Name[gl]=Rexión e idioma Name[he]=אזור ושפה Name[hi]=ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤° व भाषा Name[hr]=Regija i Jezik Name[hu]=Területi Ć©s nyelvi beĆ”llĆ­tĆ”sok Name[ia]=Region & Lingua Name[id]=Wilayah & Bahasa Name[ie]=Region e lingue Name[is]=Land & tungumĆ”l Name[it]=Regione e lingua Name[ja]=åœ°åŸŸćØčØ€čŖž Name[ka]=įƒ įƒ”įƒ’įƒ˜įƒįƒœįƒ˜ įƒ“įƒ įƒ”įƒœįƒ Name[kab]=Tamennaį¹­ & Tutlayt Name[kk]=Аймақ және тіл Name[ko]=지역 & ģ–øģ–“ Name[la]=Regio atque Lingua Name[lt]=Regionas ir kalba Name[lv]=ReÄ£ions un valoda Name[ms]=Wilayah & Bahasa Name[nb]=Region og sprĆ„k Name[nds]=Region & Sprache Name[nl]=Regio en taal Name[nn]=Region & SprĆ„k Name[oc]=PaĆ­s & lenga Name[pl]=Region i język Name[pt]=RegiĆ£o e Idioma Name[pt_BR]=RegiĆ£o & Idioma Name[ro]=Regiune și limbă Name[ru]=Регион Šø ŃŠ·Ń‹Šŗ Name[rue]=Реґіон тай бисіГа Name[sc]=Limba e regione Name[sk]=OblasÅ„ a jazyk Name[sl]=Področje in jezik Name[sq]=Krahina dhe Gjuha Name[sr]=ŠžŠ±Š»Š°ŃŃ‚ Šø језик Name[sr@latin]=Region i jezik Name[sv]=OmrĆ„de och sprĆ„k Name[ta]=ą®µą®ŸąÆą®Ÿą®¾ą®°ą®®ąÆ & மொஓி Name[tg]=Забон ва минтақа Name[th]=ภูดณภาคแคะภาษา Name[tr]=Bƶlge & Dil Name[uk]=Регіон і мова Name[ur]=علاقہ اور زبان Name[uz]=Regeon & Til Name[uz@cyrillic]=Regeon & Til Name[vi]=Khu vį»±c & NgĆ“n ngữ Name[zh_CN]=åŒŗåŸŸå’ŒčÆ­čØ€ Name[zh_HK]=åœ°å€å’ŒčŖžčØ€ Name[zh_TW]=åœ°å€čˆ‡čŖžčØ€ Comment=Change your region and language settings Comment[am]=የ įŠ įŠ«į‰£į‰¢ įŠ„įŠ“ į‰‹įŠ•į‰‹ įˆ›įˆ°įŠ“įŒƒ įˆ˜į‰€į‹ØįˆŖį‹« Comment[ar]=تغيير Ų„Ų¹ŲÆŲ§ŲÆŲ§ŲŖ اللغة ŁˆŲ§Ł„Ł…Ł†Ų·Ł‚Ų© Comment[ast]=Camuda los tos axustes de rexón y llingua Comment[ay]=Suyumpi arumpi mayjachaƱa Comment[az]=Ɩz bƶlgə, dil quruluşlarınızı dəyişin Comment[be]=Š—Š¼ŃŠ½Ń–Ń†ŃŒ Ń€ŃŠ³Ń–ŃŠ½Š°Š»ŃŒŠ½Ń‹Ń і Š¼Š¾ŃžŠ½Ń‹Ń налаГы Comment[be@latin]=Š—Š¼ŃŠ½Ń–Ń†ŃŒ Ń€ŃŠ³Ń–ŃŠ½Š°Š»ŃŒŠ½Ń‹Ń і Š¼Š¾ŃžŠ½Ń‹Ń налаГы Comment[bg]=ŠŸŃ€Š¾Š¼ŠµŠ½ŠµŃ‚Šµ своите регионални Šø езикови настройки Comment[bs]=Promijeni regionalne postavke i postavke jezika Comment[ca]=Canvieu els ajusts de la regió i de l'idioma Comment[ca@valencia]=Canvieu els parĆ metres de regió i idioma Comment[cs]=Změňte svÅÆj region a nastavenĆ­ jazyka Comment[cy]=Newid eich gosodiadau ardal ac iaith Comment[da]=Ɔndr indstillinger for sprog og region Comment[de]=Einstellungen für Region und Sprache Ƥndern Comment[el]=Αλλαγή ĻĻ…ĪøĪ¼ĪÆĻƒĪµĻ‰Ī½ της περιοχής και Ī³Ī»ĻŽĻƒĻƒĪ±Ļ‚ Comment[eo]=Ŝanĝi vian regionon kaj lingvajn agordojn Comment[es]=Cambiar la configuración de la región y el idioma Comment[et]=Sinu asukoha- ja keelesƤtete muutmine Comment[eu]=Aldatu zure eskualde eta hizkuntzaren ezarpenak Comment[fa]=تغییر ŲŖŁ†ŲøŪŒŁ…Ų§ŲŖ Ł†Ų§Ų­ŪŒŁ‡ و زبان Ų“Ł…Ų§ Comment[fi]=Muuta alue- ja kieliasetuksia Comment[fr]=Modifier les paramĆØtres de pays et de langue Comment[fr_CA]=Modifier vos paramĆØtres rĆ©gionaux et linguistiques Comment[gd]=Atharraich roghainnean do dhùthcha 's do chĆ nain Comment[gl]=Cambiar os axustes de rexión e idioma Comment[he]=שינוי הגדרות אזור ושפה Comment[hi]=ą¤•ą„ą¤·ą„‡ą¤¤ą„ą¤° व ą¤­ą¤¾ą¤·ą„€ą¤Æ ą¤øą„‡ą¤Ÿą¤æą¤‚ą¤—ą„ą¤ø ą¤¬ą¤¦ą¤²ą„‡ą¤‚ Comment[hr]=Promijenite vaÅ”u regiju i jezične postavke Comment[hu]=Területi Ć©s nyelvi beĆ”llĆ­tĆ”sok módosĆ­tĆ”sa Comment[ia]=Cambiar tu configurationes de region e lingua Comment[id]=Ubah pengaturan wilayah dan bahasa Anda Comment[ie]=Cambiar vor parametres de lingue e region Comment[is]=Stilltu landsvƦưiư þitt og tungumĆ”lastillingar Comment[it]=Cambia le impostazioni della tua regione e della lingua Comment[ja]=åœ°åŸŸćØčØ€čŖžć®čØ­å®šć‚’å¤‰ę›“ć—ć¾ć™ Comment[kab]=Beddel iÉ£ewwaren n tmennaį¹­-ik(m) d tutlayt-ik(m) Comment[kk]=Аймақ және тіл Š±Š°ŠæŃ‚Š°ŃƒŠ»Š°Ń€Ń‹Š½ Ó©Š·Š³ŠµŃ€Ń‚Ńƒ Comment[ko]=지역 ė° ģ–øģ–“ ģ„¤ģ •ģ„ ė°”źæ‰ė‹ˆė‹¤ Comment[la]=Configurationem regionis et linguae muta Comment[lt]=Keiskite savo regiono ir kalbos nustatymus Comment[lv]=MainÄ«t reÄ£iona un valodas iestatÄ«jums Comment[ms]=Ubah tetapan wilayah dan bahasa anda Comment[nb]=Endre region og sprĆ„kinnstillinger Comment[nds]=Region und Sprache Ƥndern Comment[nl]=Instellingen wijzigen voor regio en taal Comment[oc]=Modificar los paramĆØtres de paĆ­s e de lenga Comment[pl]=Zmiana ustawień regionu i języka Comment[pt]=Alterar definiƧƵes de regiĆ£o e de idioma Comment[pt_BR]=Alterar suas configuraƧƵes de regiĆ£o e idioma Comment[ro]=Schimbați setările de regiune și limbă Comment[ru]=Š˜Š·Š¼ŠµŠ½ŠøŃ‚ŃŒ Ń€ŠµŠ³ŠøŠ¾Š½Š°Š»ŃŒŠ½Ń‹Šµ Šø ŃŠ·Ń‹ŠŗŠ¾Š²Ń‹Šµ настройки Comment[rue]=ŠŸŠµŃ€ŠµŠ¼Ń–Š½ŠøŃ‚Šø свуй реґіон тай Š±ŠøŃŃ–Š“Ńƒ Comment[sk]=ZmeniÅ„ regionĆ”lne a jazykovĆ© nastavenia Comment[sl]=Spremeni svoje področne in jezikovne nastavitve Comment[sq]=NdĆ«rro parametrat e krahinĆ«s dhe tĆ« gjuhĆ«s Comment[sr]=Š˜Š·Š¼ŠµŠ½ŠøŃ‚Šµ ваша поГешавања региона Šø језика Comment[sr@latin]=Izmenite VaÅ”a podeÅ”avanja regiona i jezika Comment[sv]=Ƅndra instƤllningar fƶr din region och ditt sprĆ„k Comment[ta]=ą®‰ą®™ąÆą®•ą®³ąÆ ą®µą®ŸąÆą®Ÿą®¾ą®° ą®®ą®±ąÆą®±ąÆą®®ąÆ மொஓி ą®…ą®®ąÆˆą®ŖąÆą®ŖąÆą®•ą®³ąÆˆ ą®®ą®¾ą®±ąÆą®±ą®æ ą®…ą®®ąÆˆą®•ąÆą®•ą®µąÆą®®ąÆ Comment[tg]=Тағйир ГоГани танзимоти минтақа ва забони система Comment[th]=ą¹€ąø›ąø„ąøµą¹ˆąø¢ąø™ąø„ą¹ˆąø²ąø•ąø±ą¹‰ąø‡ą¹€ąøąøµą¹ˆąø¢ąø§ąøąø±ąøšąø ąø¹ąø”ąø“ąø ąø²ąø„ą¹ąø„ąø°ąø ąø²ąø©ąø²ąø‚ąø­ąø‡ąø„ąøøąø“ Comment[tr]=Bƶlge ve dil ayarlarını değiştirin Comment[uk]=Зміна Š½Š°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½ŃŒ Š’Š°ŃˆŠ¾Š³Š¾ Ń€ŠµŠ³Ń–Š¾Š½Ńƒ та мови Comment[ur]=اپنا علاقہ اور زبان کی ترتیبات ŲŖŲØŲÆŪŒŁ„ کریں Comment[uz]=Region va til moslamalarini oā€˜zgartirish Comment[uz@cyrillic]=Region va til moslamalarini oā€˜zgartirish Comment[vi]=Thay đổi thiįŗæt đặt khu vį»±c vĆ  ngĆ“n ngữ Comment[zh_CN]=ę›“ę”¹ę‚Øēš„åŒŗåŸŸå’ŒčÆ­čØ€č®¾ē½® Comment[zh_HK]=č®Šę›“ä½ ēš„åœ°å€å’ŒčŖžčØ€čØ­å®š Comment[zh_TW]=č®Šę›“ę‚Øēš„åœ°å€čˆ‡čŖžčØ€čØ­å®š cinnamon-control-center-6.2.0/panels/region/cinnamon-region-panel-xkb.h0000664000175000017500000000677614632072346025110 0ustar fabiofabio/* cinnamon-region-panel-xkb.h * Copyright (C) 2003-2007 Sergey V Udaltsov * * Written by Sergey V. Udaltsov * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA * 02110-1335, USA. */ #ifndef __GNOME_KEYBOARD_PROPERTY_XKB_H #define __GNOME_KEYBOARD_PROPERTY_XKB_H #include #include "libgnomekbd/gkbd-keyboard-config.h" #include "libgnomekbd/gkbd-util.h" G_BEGIN_DECLS #define CWID(s) GTK_WIDGET (gtk_builder_get_object (chooser_dialog, s)) #define WID(s) GTK_WIDGET (gtk_builder_get_object (dialog, s)) extern XklEngine *engine; extern XklConfigRegistry *config_registry; extern GSettings *xkb_keyboard_settings; extern GSettings *xkb_desktop_settings; extern GkbdKeyboardConfig initial_config; extern const gchar GKBD_DESKTOP_CONFIG_KEY_DEFAULT_GROUP[]; extern const gchar GKBD_DESKTOP_CONFIG_KEY_GROUP_PER_WINDOW[]; extern const gchar GKBD_KEYBOARD_CONFIG_KEY_LAYOUTS[]; extern const gchar GKBD_KEYBOARD_CONFIG_KEY_OPTIONS[]; extern void setup_xkb_tabs (GtkBuilder * dialog); extern void xkb_layouts_fill_selected_tree (GtkBuilder * dialog); extern void xkb_layouts_register_buttons_handlers (GtkBuilder * dialog); extern void xkb_layouts_register_conf_listener (GtkBuilder * dialog); extern void xkb_options_register_conf_listener (GtkBuilder * dialog); extern void xkb_layouts_prepare_selected_tree (GtkBuilder * dialog); extern void xkb_options_load_options (GtkBuilder * dialog); extern void xkb_options_popup_dialog (GtkBuilder * dialog); extern char *xci_desc_to_utf8 (const XklConfigItem * ci); extern gchar *xkb_layout_description_utf8 (const gchar * visible); extern void enable_disable_restoring (GtkBuilder * dialog); extern void preview_toggled (GtkBuilder * dialog, GtkWidget * button); extern GtkWidget *xkb_layout_choose (GtkBuilder * dialog); extern void xkb_layout_chooser_response (GtkDialog *dialog, gint response_id); extern gchar **xkb_layouts_get_selected_list (void); extern gchar **xkb_options_get_selected_list (void); #define xkb_layouts_set_selected_list(list) \ g_settings_set_strv (xkb_keyboard_settings, \ GKBD_KEYBOARD_CONFIG_KEY_LAYOUTS, \ (const gchar *const*)(list)) #define xkb_options_set_selected_list(list) \ g_settings_set_strv (xkb_keyboard_settings, \ GKBD_KEYBOARD_CONFIG_KEY_OPTIONS, \ (const gchar *const*)(list)) extern GtkWidget *xkb_layout_preview_create_widget (GtkBuilder * chooser_dialog); extern void xkb_layout_preview_update (GtkBuilder * chooser_dialog); extern void xkb_layout_preview_set_drawing_layout (GtkWidget * kbdraw, const gchar * id); extern gchar *xkb_layout_chooser_get_selected_id (GtkDialog *dialog); extern void xkb_save_default_group (gint group_no); extern gint xkb_get_default_group (void); G_END_DECLS #endif /* __GNOME_KEYBOARD_PROPERTY_XKB_H */ cinnamon-control-center-6.2.0/panels/region/cinnamon-region-panel-xkbltadd.c0000664000175000017500000003174114632072346026102 0ustar fabiofabio/* cinnamon-region-panel-xkbltadd.c * Copyright (C) 2007 Sergey V. Udaltsov * * Written by: Sergey V. Udaltsov * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA * 02110-1335, USA. */ #include #include #include #include #include "cinnamon-region-panel-xkb.h" enum { COMBO_BOX_MODEL_COL_SORT, COMBO_BOX_MODEL_COL_VISIBLE, COMBO_BOX_MODEL_COL_XKB_ID, COMBO_BOX_MODEL_COL_COUNTRY_DESC, COMBO_BOX_MODEL_COL_LANGUAGE_DESC }; static gchar **search_pattern_list = NULL; static GtkWidget *preview_dialog = NULL; static GRegex *left_bracket_regex = NULL; #define RESPONSE_PREVIEW 1 static void xkb_preview_destroy_callback (GtkWidget * widget) { preview_dialog = NULL; } static gboolean xkb_layout_chooser_selection_dupe (GtkDialog * dialog) { gchar *selected_id = (gchar *) xkb_layout_chooser_get_selected_id (dialog); gchar **layouts_list, **pl; gboolean rv = FALSE; if (selected_id == NULL) return rv; layouts_list = pl = xkb_layouts_get_selected_list (); while (pl && *pl) { if (!g_ascii_strcasecmp (*pl++, selected_id)) { rv = TRUE; break; } } g_strfreev (layouts_list); return rv; } void xkb_layout_chooser_response (GtkDialog * dialog, gint response) { switch (response) case GTK_RESPONSE_OK:{ /* Handled by the main code */ break; case RESPONSE_PREVIEW:{ gchar *selected_id = (gchar *) xkb_layout_chooser_get_selected_id (dialog); if (selected_id != NULL) { if (preview_dialog == NULL) { preview_dialog = gkbd_keyboard_drawing_dialog_new (); g_signal_connect (G_OBJECT (preview_dialog), "destroy", G_CALLBACK (xkb_preview_destroy_callback), NULL); /* Put into the separate group to avoid conflict with modal parent */ gtk_window_group_add_window (gtk_window_group_new (), GTK_WINDOW (preview_dialog)); }; gkbd_keyboard_drawing_dialog_set_layout (preview_dialog, config_registry, selected_id); gtk_widget_show_all (preview_dialog); } } return; } if (preview_dialog != NULL) { gtk_widget_destroy (preview_dialog); } if (search_pattern_list != NULL) { g_strfreev (search_pattern_list); search_pattern_list = NULL; } gtk_widget_destroy (GTK_WIDGET (dialog)); } static gchar * xkl_create_description_from_list (const XklConfigItem * item, const XklConfigItem * subitem, const gchar * prop_name, const gchar * (*desc_getter) (const gchar * code)) { gchar *rv = NULL, *code = NULL; gchar **list = NULL; const gchar *desc; if (subitem != NULL) list = (gchar **) (g_object_get_data (G_OBJECT (subitem), prop_name)); if (list == NULL || *list == 0) list = (gchar **) (g_object_get_data (G_OBJECT (item), prop_name)); /* First try the parent id as such */ desc = desc_getter (item->name); if (desc != NULL) { rv = g_utf8_strup (desc, -1); } else { code = g_utf8_strup (item->name, -1); desc = desc_getter (code); if (desc != NULL) { rv = g_utf8_strup (desc, -1); } g_free (code); } if (list == NULL || *list == 0) return rv; while (*list != 0) { code = *list++; desc = desc_getter (code); if (desc != NULL) { gchar *udesc = g_utf8_strup (desc, -1); if (rv == NULL) { rv = udesc; } else { gchar *orv = rv; rv = g_strdup_printf ("%s %s", rv, udesc); g_free (orv); g_free (udesc); } } } return rv; } static void xkl_layout_add_to_list (XklConfigRegistry * config, const XklConfigItem * item, const XklConfigItem * subitem, GtkBuilder * chooser_dialog) { GtkListStore *list_store = GTK_LIST_STORE (gtk_builder_get_object (chooser_dialog, "layout_list_model")); GtkTreeIter iter; gchar *utf_variant_name = subitem ? xkb_layout_description_utf8 (gkbd_keyboard_config_merge_items (item->name, subitem->name)) : xci_desc_to_utf8 (item); const gchar *xkb_id = subitem ? gkbd_keyboard_config_merge_items (item->name, subitem->name) : item->name; gchar *country_desc = xkl_create_description_from_list (item, subitem, XCI_PROP_COUNTRY_LIST, xkl_get_country_name); gchar *language_desc = xkl_create_description_from_list (item, subitem, XCI_PROP_LANGUAGE_LIST, xkl_get_language_name); gchar *tmp = utf_variant_name; utf_variant_name = g_regex_replace_literal (left_bracket_regex, tmp, -1, 0, "<", 0, NULL); g_free (tmp); if (subitem && g_object_get_data (G_OBJECT (subitem), XCI_PROP_EXTRA_ITEM)) { gchar *buf = g_strdup_printf ("%s", utf_variant_name); gtk_list_store_insert_with_values (list_store, &iter, -1, COMBO_BOX_MODEL_COL_SORT, utf_variant_name, COMBO_BOX_MODEL_COL_VISIBLE, buf, COMBO_BOX_MODEL_COL_XKB_ID, xkb_id, COMBO_BOX_MODEL_COL_COUNTRY_DESC, country_desc, COMBO_BOX_MODEL_COL_LANGUAGE_DESC, language_desc, -1); g_free (buf); } else gtk_list_store_insert_with_values (list_store, &iter, -1, COMBO_BOX_MODEL_COL_SORT, utf_variant_name, COMBO_BOX_MODEL_COL_VISIBLE, utf_variant_name, COMBO_BOX_MODEL_COL_XKB_ID, xkb_id, COMBO_BOX_MODEL_COL_COUNTRY_DESC, country_desc, COMBO_BOX_MODEL_COL_LANGUAGE_DESC, language_desc, -1); g_free (utf_variant_name); g_free (country_desc); g_free (language_desc); } static void xkb_layout_filter_clear (GtkEntry * entry, GtkEntryIconPosition icon_pos, GdkEvent * event, gpointer user_data) { gtk_entry_set_text (entry, ""); } static void xkb_layout_filter_changed (GtkBuilder * chooser_dialog) { GtkTreeModelFilter *filtered_model = GTK_TREE_MODEL_FILTER (gtk_builder_get_object (chooser_dialog, "filtered_layout_list_model")); GtkWidget *xkb_layout_filter = CWID ("xkb_layout_filter"); const gchar *pattern = gtk_entry_get_text (GTK_ENTRY (xkb_layout_filter)); gchar *upattern = g_utf8_strup (pattern, -1); if (!g_strcmp0 (pattern, "")) { g_object_set (G_OBJECT (xkb_layout_filter), "secondary-icon-name", "edit-find-symbolic", "secondary-icon-activatable", FALSE, "secondary-icon-sensitive", FALSE, NULL); } else { g_object_set (G_OBJECT (xkb_layout_filter), "secondary-icon-name", "edit-clear-symbolic", "secondary-icon-activatable", TRUE, "secondary-icon-sensitive", TRUE, NULL); } if (search_pattern_list != NULL) g_strfreev (search_pattern_list); search_pattern_list = g_strsplit (upattern, " ", -1); g_free (upattern); gtk_tree_model_filter_refilter (filtered_model); } static void xkb_layout_chooser_selection_changed (GtkTreeSelection * selection, GtkBuilder * chooser_dialog) { GList *selected_layouts = gtk_tree_selection_get_selected_rows (selection, NULL); GtkWidget *add_button = CWID ("btnOk"); GtkWidget *preview_button = CWID ("btnPreview"); gboolean anything_selected = g_list_length (selected_layouts) == 1; gboolean dupe = xkb_layout_chooser_selection_dupe (GTK_DIALOG (CWID ("xkb_layout_chooser"))); gtk_widget_set_sensitive (add_button, anything_selected && !dupe); gtk_widget_set_sensitive (preview_button, anything_selected); } static void xkb_layout_chooser_row_activated (GtkTreeView * tree_view, GtkTreePath * path, GtkTreeViewColumn * column, GtkBuilder * chooser_dialog) { GtkWidget *add_button = CWID ("btnOk"); GtkWidget *dialog = CWID ("xkb_layout_chooser"); if (gtk_widget_is_sensitive (add_button)) gtk_dialog_response (GTK_DIALOG (dialog), GTK_RESPONSE_OK); } static gboolean xkb_filter_layouts (GtkTreeModel * model, GtkTreeIter * iter, gpointer data) { gchar *desc = NULL, *country_desc = NULL, *language_desc = NULL, **pattern; gboolean rv = TRUE; if (search_pattern_list == NULL || search_pattern_list[0] == NULL) return TRUE; gtk_tree_model_get (model, iter, COMBO_BOX_MODEL_COL_SORT, &desc, COMBO_BOX_MODEL_COL_COUNTRY_DESC, &country_desc, COMBO_BOX_MODEL_COL_LANGUAGE_DESC, &language_desc, -1); pattern = search_pattern_list; do { gboolean is_pattern_found = FALSE; gchar *udesc = g_utf8_strup (desc, -1); if (udesc != NULL && g_strstr_len (udesc, -1, *pattern)) { is_pattern_found = TRUE; } else if (country_desc != NULL && g_strstr_len (country_desc, -1, *pattern)) { is_pattern_found = TRUE; } else if (language_desc != NULL && g_strstr_len (language_desc, -1, *pattern)) { is_pattern_found = TRUE; } g_free (udesc); if (!is_pattern_found) { rv = FALSE; break; } } while (*++pattern != NULL); g_free (desc); g_free (country_desc); g_free (language_desc); return rv; } GtkWidget * xkb_layout_choose (GtkBuilder * dialog) { GtkBuilder *chooser_dialog = gtk_builder_new (); GtkWidget *chooser, *xkb_filtered_layouts_list, *xkb_layout_filter; GtkTreeViewColumn *visible_column; GtkTreeSelection *selection; GtkListStore *model; GtkTreeModelFilter *filtered_model; gtk_builder_add_from_file (chooser_dialog, CINNAMONCC_UI_DIR "/cinnamon-region-panel-layout-chooser.ui", NULL); chooser = CWID ("xkb_layout_chooser"); xkb_filtered_layouts_list = CWID ("xkb_filtered_layouts_list"); xkb_layout_filter = CWID ("xkb_layout_filter"); g_object_set_data (G_OBJECT (chooser), "xkb_filtered_layouts_list", xkb_filtered_layouts_list); visible_column = gtk_tree_view_column_new_with_attributes ("Layout", gtk_cell_renderer_text_new (), "markup", COMBO_BOX_MODEL_COL_VISIBLE, NULL); gtk_window_set_transient_for (GTK_WINDOW (chooser), GTK_WINDOW (gtk_widget_get_toplevel (WID ("region_notebook")))); gtk_tree_view_append_column (GTK_TREE_VIEW (xkb_filtered_layouts_list), visible_column); g_signal_connect_swapped (G_OBJECT (xkb_layout_filter), "notify::text", G_CALLBACK (xkb_layout_filter_changed), chooser_dialog); g_signal_connect (G_OBJECT (xkb_layout_filter), "icon-release", G_CALLBACK (xkb_layout_filter_clear), NULL); selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (xkb_filtered_layouts_list)); g_signal_connect (G_OBJECT (selection), "changed", G_CALLBACK (xkb_layout_chooser_selection_changed), chooser_dialog); xkb_layout_chooser_selection_changed (selection, chooser_dialog); g_signal_connect (G_OBJECT (xkb_filtered_layouts_list), "row-activated", G_CALLBACK (xkb_layout_chooser_row_activated), chooser_dialog); filtered_model = GTK_TREE_MODEL_FILTER (gtk_builder_get_object (chooser_dialog, "filtered_layout_list_model")); model = GTK_LIST_STORE (gtk_builder_get_object (chooser_dialog, "layout_list_model")); left_bracket_regex = g_regex_new ("<", 0, 0, NULL); xkl_config_registry_search_by_pattern (config_registry, NULL, (TwoConfigItemsProcessFunc) (xkl_layout_add_to_list), chooser_dialog); g_regex_unref (left_bracket_regex); gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (model), COMBO_BOX_MODEL_COL_SORT, GTK_SORT_ASCENDING); gtk_tree_model_filter_set_visible_func (filtered_model, xkb_filter_layouts, NULL, NULL); gtk_widget_grab_focus (xkb_layout_filter); gtk_widget_show (chooser); return chooser; } gchar * xkb_layout_chooser_get_selected_id (GtkDialog * dialog) { GtkTreeModel *filtered_list_model; GtkWidget *xkb_filtered_layouts_list = g_object_get_data (G_OBJECT (dialog), "xkb_filtered_layouts_list"); GtkTreeIter viter; gchar *v_id; GtkTreeSelection *selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (xkb_filtered_layouts_list)); GList *selected_layouts = gtk_tree_selection_get_selected_rows (selection, &filtered_list_model); if (g_list_length (selected_layouts) != 1) return NULL; gtk_tree_model_get_iter (filtered_list_model, &viter, (GtkTreePath *) (selected_layouts->data)); g_list_foreach (selected_layouts, (GFunc) gtk_tree_path_free, NULL); g_list_free (selected_layouts); gtk_tree_model_get (filtered_list_model, &viter, COMBO_BOX_MODEL_COL_XKB_ID, &v_id, -1); return v_id; } cinnamon-control-center-6.2.0/panels/region/cinnamon-region-panel-xkbot.c0000664000175000017500000003622314632072346025434 0ustar fabiofabio/* cinnamon-region-panel-xkbot.c * Copyright (C) 2003-2007 Sergey V. Udaltsov * * Written by: Sergey V. Udaltsov * John Spray * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA * 02110-1335, USA. */ #include #include #include #include "cinnamon-region-panel-xkb.h" static GtkBuilder *chooser_dialog = NULL; static const char *current1st_level_id = NULL; static GSList *option_checks_list = NULL; static GtkWidget *current_none_radio = NULL; static GtkWidget *current_expander = NULL; static gboolean current_multi_select = FALSE; static GSList *current_radio_group = NULL; #define OPTION_ID_PROP "optionID" #define SELCOUNTER_PROP "selectionCounter" #define GCONFSTATE_PROP "gconfState" #define EXPANDERS_PROP "expandersList" gchar ** xkb_options_get_selected_list (void) { gchar **retval; retval = g_settings_get_strv (xkb_keyboard_settings, GKBD_KEYBOARD_CONFIG_KEY_OPTIONS); if (retval == NULL) { retval = g_strdupv (initial_config.options); } return retval; } /* Returns the selection counter of the expander (static current_expander) */ static int xkb_options_expander_selcounter_get (void) { return GPOINTER_TO_INT (g_object_get_data (G_OBJECT (current_expander), SELCOUNTER_PROP)); } /* Increments the selection counter in the expander (static current_expander) using the value (can be 0)*/ static void xkb_options_expander_selcounter_add (int value) { g_object_set_data (G_OBJECT (current_expander), SELCOUNTER_PROP, GINT_TO_POINTER (xkb_options_expander_selcounter_get () + value)); } /* Resets the seletion counter in the expander (static current_expander) */ static void xkb_options_expander_selcounter_reset (void) { g_object_set_data (G_OBJECT (current_expander), SELCOUNTER_PROP, GINT_TO_POINTER (0)); } /* Formats the expander (static current_expander), based on the selection counter */ static void xkb_options_expander_highlight (void) { char *utf_group_name = g_object_get_data (G_OBJECT (current_expander), "utfGroupName"); int counter = xkb_options_expander_selcounter_get (); if (utf_group_name != NULL) { gchar *titlemarkup = g_strconcat (counter > 0 ? "" : "", utf_group_name, "", NULL); gtk_expander_set_label (GTK_EXPANDER (current_expander), titlemarkup); g_free (titlemarkup); } } /* Add optionname from the backend's selection list if it's not already in there. */ static void xkb_options_select (gchar * optionname) { gboolean already_selected = FALSE; gchar **options_list; guint i; options_list = xkb_options_get_selected_list (); for (i = 0; options_list != NULL && options_list[i] != NULL; i++) { gchar *option = options_list[i]; if (!strcmp (option, optionname)) { already_selected = TRUE; break; } } if (!already_selected) { options_list = gkbd_strv_append (options_list, g_strdup (optionname)); xkb_options_set_selected_list (options_list); } g_strfreev (options_list); } /* Remove all occurrences of optionname from the backend's selection list */ static void xkb_options_deselect (gchar * optionname) { gchar **options_list = xkb_options_get_selected_list (); if (options_list != NULL) { gchar **option = options_list; while (*option != NULL) { gchar *id = *option; if (!strcmp (id, optionname)) { gkbd_strv_behead (option); } else option++; } xkb_options_set_selected_list (options_list); } g_strfreev (options_list); } /* Return true if optionname describes a string already in the backend's list of selected options */ static gboolean xkb_options_is_selected (gchar * optionname) { gboolean retval = FALSE; gchar **options_list = xkb_options_get_selected_list (); if (options_list != NULL) { gchar **option = options_list; while (*option != NULL) { if (!strcmp (*option, optionname)) { retval = TRUE; break; } option++; } } g_strfreev (options_list); return retval; } /* Make sure selected options stay visible when navigating with the keyboard */ static gboolean option_focused_cb (GtkWidget * widget, GdkEventFocus * event, gpointer data) { GtkScrolledWindow *win = GTK_SCROLLED_WINDOW (data); GtkAllocation alloc; GtkAdjustment *adj; gtk_widget_get_allocation (widget, &alloc); adj = gtk_scrolled_window_get_vadjustment (win); gtk_adjustment_clamp_page (adj, alloc.y, alloc.y + alloc.height); return FALSE; } /* Update xkb backend to reflect the new UI state */ static void option_toggled_cb (GtkWidget * checkbutton, gpointer data) { gpointer optionID = g_object_get_data (G_OBJECT (checkbutton), OPTION_ID_PROP); if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (checkbutton))) xkb_options_select (optionID); else xkb_options_deselect (optionID); } /* Add a check_button or radio_button to control a particular option This function makes particular use of the current... variables at the top of this file. */ static void xkb_options_add_option (XklConfigRegistry * config_registry, XklConfigItem * config_item, GtkBuilder * dialog) { GtkWidget *option_check; gchar *utf_option_name = xci_desc_to_utf8 (config_item); /* Copy this out because we'll load it into the widget with set_data */ gchar *full_option_name = g_strdup (gkbd_keyboard_config_merge_items (current1st_level_id, config_item->name)); gboolean initial_state; if (current_multi_select) option_check = gtk_check_button_new_with_label (utf_option_name); else { if (current_radio_group == NULL) { /* The first radio in a group is to be "Default", meaning none of the below options are to be included in the selected list. This is a HIG-compliant alternative to allowing no selection in the group. */ option_check = gtk_radio_button_new_with_label (current_radio_group, _("Default")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (option_check), TRUE); /* Make option name underscore - to enforce its first position in the list */ g_object_set_data_full (G_OBJECT (option_check), "utfOptionName", g_strdup (" "), g_free); option_checks_list = g_slist_append (option_checks_list, option_check); current_radio_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (option_check)); current_none_radio = option_check; g_signal_connect (option_check, "focus-in-event", G_CALLBACK (option_focused_cb), WID ("options_scroll")); } option_check = gtk_radio_button_new_with_label (current_radio_group, utf_option_name); current_radio_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (option_check)); g_object_set_data (G_OBJECT (option_check), "NoneRadio", current_none_radio); } initial_state = xkb_options_is_selected (full_option_name); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (option_check), initial_state); g_object_set_data_full (G_OBJECT (option_check), OPTION_ID_PROP, full_option_name, g_free); g_object_set_data_full (G_OBJECT (option_check), "utfOptionName", utf_option_name, g_free); g_signal_connect (option_check, "toggled", G_CALLBACK (option_toggled_cb), NULL); option_checks_list = g_slist_append (option_checks_list, option_check); g_signal_connect (option_check, "focus-in-event", G_CALLBACK (option_focused_cb), WID ("options_scroll")); xkb_options_expander_selcounter_add (initial_state); g_object_set_data (G_OBJECT (option_check), GCONFSTATE_PROP, GINT_TO_POINTER (initial_state)); } static gint xkb_option_checks_compare (GtkWidget * chk1, GtkWidget * chk2) { const gchar *t1 = g_object_get_data (G_OBJECT (chk1), "utfOptionName"); const gchar *t2 = g_object_get_data (G_OBJECT (chk2), "utfOptionName"); return g_utf8_collate (t1, t2); } /* Add a group of options: create title and layout widgets and then add widgets for all the options in the group. */ static void xkb_options_add_group (XklConfigRegistry * config_registry, XklConfigItem * config_item, GtkBuilder * dialog) { GtkWidget *align, *vbox, *option_check; gboolean allow_multiple_selection = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (config_item), XCI_PROP_ALLOW_MULTIPLE_SELECTION)); GSList *expanders_list = g_object_get_data (G_OBJECT (dialog), EXPANDERS_PROP); gchar *utf_group_name = xci_desc_to_utf8 (config_item); gchar *titlemarkup = g_strconcat ("", utf_group_name, "", NULL); current_expander = gtk_expander_new (titlemarkup); gtk_expander_set_use_markup (GTK_EXPANDER (current_expander), TRUE); g_object_set_data_full (G_OBJECT (current_expander), "utfGroupName", utf_group_name, g_free); g_object_set_data_full (G_OBJECT (current_expander), "groupId", g_strdup (config_item->name), g_free); g_free (titlemarkup); align = gtk_alignment_new (0, 0, 1, 1); gtk_alignment_set_padding (GTK_ALIGNMENT (align), 6, 12, 12, 0); vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); gtk_box_set_homogeneous (GTK_BOX (vbox), TRUE); gtk_container_add (GTK_CONTAINER (align), vbox); gtk_container_add (GTK_CONTAINER (current_expander), align); current_multi_select = (gboolean) allow_multiple_selection; current_radio_group = NULL; current1st_level_id = config_item->name; option_checks_list = NULL; xkl_config_registry_foreach_option (config_registry, config_item->name, (ConfigItemProcessFunc) xkb_options_add_option, dialog); /* sort it */ option_checks_list = g_slist_sort (option_checks_list, (GCompareFunc) xkb_option_checks_compare); while (option_checks_list) { option_check = GTK_WIDGET (option_checks_list->data); gtk_box_pack_start (GTK_BOX (vbox), option_check, TRUE, TRUE, 0); option_checks_list = option_checks_list->next; } /* free it */ g_slist_free (option_checks_list); option_checks_list = NULL; xkb_options_expander_highlight (); expanders_list = g_slist_append (expanders_list, current_expander); g_object_set_data (G_OBJECT (dialog), EXPANDERS_PROP, expanders_list); g_signal_connect (current_expander, "focus-in-event", G_CALLBACK (option_focused_cb), WID ("options_scroll")); } static gint xkb_options_expanders_compare (GtkWidget * expander1, GtkWidget * expander2) { const gchar *t1 = g_object_get_data (G_OBJECT (expander1), "utfGroupName"); const gchar *t2 = g_object_get_data (G_OBJECT (expander2), "utfGroupName"); return g_utf8_collate (t1, t2); } /* Create widgets to represent the options made available by the backend */ void xkb_options_load_options (GtkBuilder * dialog) { GtkWidget *opts_vbox = WID ("options_vbox"); GtkWidget *dialog_vbox = WID ("dialog_vbox"); GtkWidget *options_scroll = WID ("options_scroll"); GtkWidget *expander; GSList *expanders_list; current1st_level_id = NULL; current_none_radio = NULL; current_multi_select = FALSE; current_radio_group = NULL; /* fill the list */ xkl_config_registry_foreach_option_group (config_registry, (ConfigItemProcessFunc) xkb_options_add_group, dialog); /* sort it */ expanders_list = g_object_get_data (G_OBJECT (dialog), EXPANDERS_PROP); expanders_list = g_slist_sort (expanders_list, (GCompareFunc) xkb_options_expanders_compare); g_object_set_data (G_OBJECT (dialog), EXPANDERS_PROP, expanders_list); while (expanders_list) { expander = GTK_WIDGET (expanders_list->data); gtk_box_pack_start (GTK_BOX (opts_vbox), expander, FALSE, FALSE, 0); expanders_list = expanders_list->next; } /* Somewhere in gtk3 the top vbox in dialog is made non-expandable */ gtk_box_set_child_packing (GTK_BOX (dialog_vbox), options_scroll, TRUE, TRUE, 0, GTK_PACK_START); gtk_widget_show_all (dialog_vbox); } static void chooser_response_cb (GtkDialog * dialog, gint response, gpointer data) { switch (response) { case GTK_RESPONSE_DELETE_EVENT: case GTK_RESPONSE_CLOSE: { /* just cleanup */ GSList *expanders_list = g_object_get_data (G_OBJECT (dialog), EXPANDERS_PROP); g_object_set_data (G_OBJECT (dialog), EXPANDERS_PROP, NULL); g_slist_free (expanders_list); gtk_widget_destroy (GTK_WIDGET (dialog)); chooser_dialog = NULL; } break; } } /* Create popup dialog */ void xkb_options_popup_dialog (GtkBuilder * dialog) { GtkWidget *chooser; chooser_dialog = gtk_builder_new (); gtk_builder_add_from_file (chooser_dialog, CINNAMONCC_UI_DIR "/cinnamon-region-panel-options-dialog.ui", NULL); chooser = CWID ("xkb_options_dialog"); gtk_window_set_transient_for (GTK_WINDOW (chooser), GTK_WINDOW (gtk_widget_get_toplevel (WID ("region_notebook")))); gtk_window_set_modal (GTK_WINDOW (chooser), TRUE); xkb_options_load_options (chooser_dialog); g_signal_connect (chooser, "response", G_CALLBACK (chooser_response_cb), dialog); gtk_widget_show (chooser); } /* Update selected option counters for a group-bound expander */ static void xkb_options_update_option_counters (XklConfigRegistry * config_registry, XklConfigItem * config_item) { gchar *full_option_name = g_strdup (gkbd_keyboard_config_merge_items (current1st_level_id, config_item->name)); gboolean current_state = xkb_options_is_selected (full_option_name); g_free (full_option_name); xkb_options_expander_selcounter_add (current_state); } /* Respond to a change in the xkb gconf settings */ static void xkb_options_update (GSettings * settings, gchar * key, GtkBuilder * dialog) { if (!strcmp (key, GKBD_KEYBOARD_CONFIG_KEY_OPTIONS)) { /* Updating options is handled by gconf notifies for each widget This is here to avoid calling it N_OPTIONS times for each gconf change. */ enable_disable_restoring (dialog); if (chooser_dialog != NULL) { GSList *expanders_list = g_object_get_data (G_OBJECT (chooser_dialog), EXPANDERS_PROP); while (expanders_list) { current_expander = GTK_WIDGET (expanders_list->data); gchar *group_id = g_object_get_data (G_OBJECT (current_expander), "groupId"); current1st_level_id = group_id; xkb_options_expander_selcounter_reset (); xkl_config_registry_foreach_option (config_registry, group_id, (ConfigItemProcessFunc) xkb_options_update_option_counters, current_expander); xkb_options_expander_highlight (); expanders_list = expanders_list->next; } } } } void xkb_options_register_conf_listener (GtkBuilder * dialog) { g_signal_connect (xkb_keyboard_settings, "changed", G_CALLBACK (xkb_options_update), dialog); } cinnamon-control-center-6.2.0/panels/network/0000775000175000017500000000000014632072346020163 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/network/network-wifi.ui0000664000175000017500000033243014632072346023154 0ustar fabiofabio False 5 False True 600 300 dialog False vertical 2 False end end _Cancel True True True True False True 2 _Apply True True True True False True 3 False True end 0 True False True True never in True True details_store False False 0 10 0 20 True True 0 True True False False True False vertical True False end center 6 True False Automatic _Connect True automatic_connect_switch False True 0 True True False True 1 False True 0 True False start 50 50 12 12 True True 10 6 True False True 1 Signal Strength 0 0 1 1 True True True 0 Weak True 1 0 1 1 True False 1 Link speed 0 1 1 1 True True 0 1Mb/sec True 1 1 1 1 True False 1 Security 0 2 1 1 True False 1 IPv4 Address 0 3 1 1 True False 1 0 IPv6 Address 0 4 1 1 True False 1 Hardware Address 0 5 1 1 True False 1 Default Route 0 6 1 1 True False 1 0 DNS4 0 7 1 1 True False 1 0 DNS6 0 8 1 1 True False 1 Last used 0 9 1 1 True True 0 WPA True 1 2 1 1 True True 0 127.0.0.1 True 1 3 1 1 True True 0 ::1 True 1 4 1 1 True True 0 AA:BB:CC:DD:55:66:77:88 True 1 5 1 1 True True 0 127.0.0.1 True 1 6 1 1 True True 0 0 127.0.0.1 True True 1 7 1 1 True True 0 0 ::1 True True 1 8 1 1 True True 0 today True 1 9 1 1 True True 1 True False details False True False 50 50 12 12 True True 10 6 True False 1 _SSID True entry_ssid 0 0 1 1 True False 1 _BSSID True entry_bssid 0 1 1 1 True False 1 S_ecurity True combo_sec 0 2 1 1 True False 1 _Password True entry_password 0 3 1 1 True True True ā— My Home Network 1 0 1 1 True True True ā— 1 1 1 1 True False True 0 1 WPA None 1 2 1 1 True True True False ā— blablabla 1 3 1 1 Show P_assword True True False center True 0 True 1 4 1 1 True False 0 4 1 1 Make available to other users True True False end True 0 True 1 5 1 1 1 True False identity 1 False True True never True False True False 20 20 10 10 vertical 10 True False True False IPv_4 True switch_ipv4_ipv4 False True 0 True True end True False True 1 False True 0 True False True False _Addresses True combo_ipv4_addresses False True 0 True False end True 0 1 Manual Automatic (DHCP) Automatic (DHCP) addresses only Link-local only Shared with other computers Disabled False True 1 False True 1 True False vertical True False Address section goes here False True 0 False True 2 True False 24 6 0 DNS4 False True 3 True False vertical True False DNS section goes here False True 0 False True 4 True False 24 6 0 Routes False True 5 True False vertical True False Routes section goes here False True 0 False True 6 _Ignore automatically obtained routes True True False True 0 True False True 7 Use this connection _only for resources on its network True True False True 0 True False True 8 2 True False ipv4 2 False True True never in True False True False vertical 10 True False True False IPv_6 True switch_ipv6_ipv6 False True 0 True True end True False True 1 False True 0 True False True False _Addresses True combo_ipv6_addresses False True 0 True False end True 0 1 Manual Automatic (DHCP) Automatic (DHCP) addresses only Link-local only Shared with other computers Disabled False True 1 False True 1 True False vertical True False Address section goes here False True 0 False True 2 True False 24 6 0 DNS6 False True 3 True False vertical True False DNS section goes here False True 0 False True 4 True False 24 6 0 Routes False True 5 True False vertical True False Routes section goes here False True 0 False True 6 _Ignore automatically obtained routes True True False True 0 True False True 7 Use this connection _only for resources on its network True True False True 0 True False True 8 3 True False ipv6 3 False True False 50 50 12 12 True True 10 6 True False 1 _MAC Address True label_hw_mac 0 0 1 1 True False 1 _Cloned MAC Address True entry_hw_cloned_mac 0 1 1 1 True False True 0 00:24:16:31:8G:7A True 1 0 1 1 True True True ā— 1 1 1 1 4 True False hardware 4 False True False 50 50 12 12 10 10 _Reset True True True start True 0 0 1 1 _Forget True True True start True 0 1 1 1 True False True 0 Reset the settings for this connection to their defaults, but remember as a preferred connection. True 40 1 0 1 1 True False True 0 Remove all details relating to this network and do not try to automatically connect to it. True 30 1 1 1 1 5 True False reset 5 False True True 1 True True 1 details_cancel_button details_apply_button Details 0 Identity 1 IPv4 2 IPv6 3 Hardware 4 Reset 5 False 5 False True True dialog False vertical 14 True False 5 12 True False network-wireless 6 False True 0 True False Wi-Fi Hotspot False True 1 False True 0 True False True 60 60 False True 1 False end _Cancel True True True True False True 0 _Turn On True True True True True True False True 1 False True end 2 hotspot-cancel-button hotspot-turn-on-button True True False False True False vertical True False 18 vertical True False 12 12 12 12 6 True False network-wireless 6 False True 0 True False True vertical True False 0 Wi-Fi False True 0 True False 0 Connected False True 1 False True 1 True True end center True Turn Wi-Fi off True True 2 True False 0 300 True True 12 12 True True never in True True 1 True True 0 True False 12 12 12 True 6 _Use as Hotspot… True True True start True False False 0 _Connect to Hidden Network… True True True center True True False 1 _History True True True end True False False 2 False True 1 True False list False True False 12 9 True False True False start center True vertical 3 True False 0 Wi-Fi Hotspot False True 0 True False 0 Switch off to connect to a Wi-Fi network False True 1 False True 0 True True end center False True 1 False True 0 True False center start 10 6 True True False 1 Network Name label_hotspot_network_name 0 0 1 1 True False 1 Connected Devices label_hotspot_connected 0 1 1 1 True False 1 Security type label_hotspot_security 0 2 1 1 True False 0 True 1 0 1 1 True False 0 True 1 1 1 1 True False 0 True 1 2 1 1 True False 1 Password label_hotspot_security_key 0 3 1 1 True False 0 True 1 3 1 1 True True 1 1 True False hotspot 1 False cinnamon-control-center-6.2.0/panels/network/cc-network-panel.c0000664000175000017500000014277214632072346023515 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2010-2012 Richard Hughes * Copyright (C) 2012 Thomas Bechtold * Copyright (C) 2013 Aleksander Morgado * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * */ #include #include #include #include "cc-network-panel.h" #include "cc-network-resources.h" #include #include "net-device.h" #ifdef BUILD_MODEM #include "net-device-mobile.h" #endif #include "net-device-wifi.h" #include "net-device-ethernet.h" #include "net-object.h" #include "net-proxy.h" #include "net-vpn.h" #include "panel-common.h" #include "network-dialogs.h" #include "connection-editor/net-connection-editor.h" #ifdef BUILD_MODEM #include #endif CC_PANEL_REGISTER (CcNetworkPanel, cc_network_panel) #define NETWORK_PANEL_PRIVATE(o) \ (G_TYPE_INSTANCE_GET_PRIVATE ((o), CC_TYPE_NETWORK_PANEL, CcNetworkPanelPrivate)) typedef enum { OPERATION_NULL, OPERATION_SHOW_DEVICE, OPERATION_CREATE_WIFI, OPERATION_CONNECT_HIDDEN, OPERATION_CONNECT_8021X, OPERATION_CONNECT_MOBILE } CmdlineOperation; struct _CcNetworkPanelPrivate { GCancellable *cancellable; GtkBuilder *builder; GtkWidget *treeview; NMClient *client; #ifdef BUILD_MODEM MMManager *modem_manager; #else void *modem_manager; #endif gboolean updating_device; /* wireless dialog stuff */ CmdlineOperation arg_operation; gchar *arg_device; gchar *arg_access_point; gboolean operation_done; }; enum { PANEL_DEVICES_COLUMN_ICON, PANEL_DEVICES_COLUMN_OBJECT, PANEL_DEVICES_COLUMN_LAST }; enum { PROP_0, PROP_PARAMETERS }; static NetObject *find_in_model_by_id (CcNetworkPanel *panel, const gchar *id, GtkTreeIter *iter_out); static void handle_argv (CcNetworkPanel *panel); static void cc_network_panel_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) { switch (property_id) { default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } } static CmdlineOperation cmdline_operation_from_string (const gchar *string) { if (g_strcmp0 (string, "create-wifi") == 0) return OPERATION_CREATE_WIFI; if (g_strcmp0 (string, "connect-hidden-wifi") == 0) return OPERATION_CONNECT_HIDDEN; if (g_strcmp0 (string, "connect-8021x-wifi") == 0) return OPERATION_CONNECT_8021X; if (g_strcmp0 (string, "connect-3g") == 0) return OPERATION_CONNECT_MOBILE; if (g_strcmp0 (string, "show-device") == 0) return OPERATION_SHOW_DEVICE; g_warning ("Invalid additional argument %s", string); return OPERATION_NULL; } static void reset_command_line_args (CcNetworkPanel *self) { self->priv->arg_operation = OPERATION_NULL; g_clear_pointer (&self->priv->arg_device, g_free); g_clear_pointer (&self->priv->arg_access_point, g_free); } static gboolean verify_argv (CcNetworkPanel *self, const char **args) { switch (self->priv->arg_operation) { case OPERATION_CONNECT_MOBILE: case OPERATION_CONNECT_8021X: case OPERATION_SHOW_DEVICE: if (self->priv->arg_device == NULL) { g_warning ("Operation %s requires an object path", args[0]); return FALSE; } default: return TRUE; } } static GPtrArray * variant_av_to_string_array (GVariant *array) { GVariantIter iter; GVariant *v; GPtrArray *strv; gsize count; count = g_variant_iter_init (&iter, array); strv = g_ptr_array_sized_new (count + 1); while (g_variant_iter_next (&iter, "v", &v)) { if (g_variant_is_of_type (v, G_VARIANT_TYPE_STRING)) g_ptr_array_add (strv, (gpointer *)g_variant_get_string (v, NULL)); g_variant_unref (v); } g_ptr_array_add (strv, NULL); /* NULL-terminate the strv data array */ return strv; } static void cc_network_panel_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) { CcNetworkPanel *self = CC_NETWORK_PANEL (object); CcNetworkPanelPrivate *priv = self->priv; switch (property_id) { case PROP_PARAMETERS: { GVariant *parameters; reset_command_line_args (self); parameters = g_value_get_variant (value); if (parameters) { GPtrArray *array; const gchar **args; array = variant_av_to_string_array (parameters); args = (const gchar **) array->pdata; g_debug ("Invoked with operation %s", args[0]); if (args[0]) priv->arg_operation = cmdline_operation_from_string (args[0]); if (args[0] && args[1]) priv->arg_device = g_strdup (args[1]); if (args[0] && args[1] && args[2]) priv->arg_access_point = g_strdup (args[2]); if (verify_argv (self, (const char **) args) == FALSE) { reset_command_line_args (self); g_ptr_array_unref (array); return; } g_ptr_array_unref (array); g_debug ("Calling handle_argv() after setting property"); handle_argv (self); } break; } default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } } static void cc_network_panel_dispose (GObject *object) { CcNetworkPanelPrivate *priv = CC_NETWORK_PANEL (object)->priv; if (priv->cancellable != NULL) g_cancellable_cancel (priv->cancellable); g_clear_object (&priv->cancellable); g_clear_object (&priv->client); g_clear_object (&priv->modem_manager); g_clear_object (&priv->builder); G_OBJECT_CLASS (cc_network_panel_parent_class)->dispose (object); } static void cc_network_panel_finalize (GObject *object) { CcNetworkPanel *panel = CC_NETWORK_PANEL (object); reset_command_line_args (panel); G_OBJECT_CLASS (cc_network_panel_parent_class)->finalize (object); } static const char * cc_network_panel_get_help_uri (CcPanel *panel) { return "help:gnome-help/net"; } static void cc_network_panel_class_init (CcNetworkPanelClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); CcPanelClass *panel_class = CC_PANEL_CLASS (klass); g_type_class_add_private (klass, sizeof (CcNetworkPanelPrivate)); panel_class->get_help_uri = cc_network_panel_get_help_uri; object_class->get_property = cc_network_panel_get_property; object_class->set_property = cc_network_panel_set_property; object_class->dispose = cc_network_panel_dispose; object_class->finalize = cc_network_panel_finalize; g_object_class_override_property (object_class, PROP_PARAMETERS, "parameters"); } static NetObject * get_selected_object (CcNetworkPanel *panel) { GtkTreeSelection *selection; GtkTreeModel *model; GtkTreeIter iter; NetObject *object = NULL; selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (panel->priv->treeview)); if (!gtk_tree_selection_get_selected (selection, &model, &iter)) { return NULL; } gtk_tree_model_get (model, &iter, PANEL_DEVICES_COLUMN_OBJECT, &object, -1); return object; } static void select_first_device (CcNetworkPanel *panel) { GtkTreePath *path; GtkTreeSelection *selection; selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (panel->priv->treeview)); /* select the first device */ path = gtk_tree_path_new_from_string ("0"); gtk_tree_selection_select_path (selection, path); gtk_tree_path_free (path); } static void select_tree_iter (CcNetworkPanel *panel, GtkTreeIter *iter) { GtkTreeSelection *selection; selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (panel->priv->treeview)); gtk_tree_selection_select_iter (selection, iter); } static void object_removed_cb (NetObject *object, CcNetworkPanel *panel) { gboolean ret; NetObject *object_tmp; GtkTreeIter iter; GtkTreeModel *model; GtkTreeSelection *selection; selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (panel->priv->treeview)); /* remove device from model */ model = GTK_TREE_MODEL (gtk_builder_get_object (panel->priv->builder, "liststore_devices")); ret = gtk_tree_model_get_iter_first (model, &iter); if (!ret) return; /* get the other elements */ do { gtk_tree_model_get (model, &iter, PANEL_DEVICES_COLUMN_OBJECT, &object_tmp, -1); if (g_strcmp0 (net_object_get_id (object), net_object_get_id (object_tmp)) == 0) { g_object_unref (object_tmp); if (gtk_list_store_remove (GTK_LIST_STORE (model), &iter)) { if (gtk_tree_model_get_iter_first (model, &iter)) gtk_tree_selection_select_iter (selection, &iter); } break; } g_object_unref (object_tmp); } while (gtk_tree_model_iter_next (model, &iter)); } GPtrArray * cc_network_panel_get_devices (CcNetworkPanel *panel) { GPtrArray *devices; GtkTreeModel *model; GtkTreeIter iter; NetObject *object; devices = g_ptr_array_new_with_free_func (g_object_unref); model = GTK_TREE_MODEL (gtk_builder_get_object (panel->priv->builder, "liststore_devices")); if (!gtk_tree_model_get_iter_first (model, &iter)) return devices; do { gtk_tree_model_get (model, &iter, PANEL_DEVICES_COLUMN_OBJECT, &object, -1); if (NET_IS_DEVICE (object)) g_ptr_array_add (devices, object); else g_object_unref (object); } while (gtk_tree_model_iter_next (model, &iter)); return devices; } static gint panel_net_object_get_sort_category (NetObject *net_object) { if (NET_IS_DEVICE (net_object)) { return panel_device_get_sort_category (net_device_get_nm_device (NET_DEVICE (net_object))); } else if (NET_IS_PROXY (net_object)) { return 9; } else if (NET_IS_VPN (net_object)) { return 5; } g_assert_not_reached (); } static gint panel_net_object_sort_func (GtkTreeModel *model, GtkTreeIter *a, GtkTreeIter *b, void *data) { g_autoptr(NetObject) obj_a = NULL; g_autoptr(NetObject) obj_b = NULL; gint cat_a, cat_b; const char *title_a, *title_b; gtk_tree_model_get (model, a, PANEL_DEVICES_COLUMN_OBJECT, &obj_a, -1); gtk_tree_model_get (model, b, PANEL_DEVICES_COLUMN_OBJECT, &obj_b, -1); cat_a = panel_net_object_get_sort_category (obj_a); cat_b = panel_net_object_get_sort_category (obj_b); if (cat_a != cat_b) return cat_a - cat_b; title_a = net_object_get_title (obj_a); title_b = net_object_get_title (obj_b); if (title_a == title_b) return 0; if (title_a == NULL) return -1; if (title_b == NULL) return 1; return g_utf8_collate (title_a, title_b); } static void panel_net_object_notify_title_cb (NetObject *net_object, GParamSpec *pspec, CcNetworkPanel *panel) { GtkTreeIter iter; GtkListStore *liststore; if (!find_in_model_by_id (panel, net_object_get_id (net_object), &iter)) return; liststore = GTK_LIST_STORE (gtk_builder_get_object (panel->priv->builder, "liststore_devices")); /* gtk_tree_model_row_changed would not cause the list store to resort. * Instead set the object column to the current value. * See https://bugzilla.gnome.org/show_bug.cgi?id=782737 */ gtk_list_store_set (liststore, &iter, PANEL_DEVICES_COLUMN_OBJECT, net_object, -1); } static void panel_refresh_device_titles (CcNetworkPanel *panel) { GPtrArray *ndarray, *nmdarray; NetDevice **devices; NMDevice **nm_devices, *nm_device; gchar **titles; gint i, num_devices; ndarray = cc_network_panel_get_devices (panel); if (!ndarray->len) { g_ptr_array_free (ndarray, TRUE); return; } nmdarray = g_ptr_array_new (); for (i = 0; i < ndarray->len; i++) { nm_device = net_device_get_nm_device (ndarray->pdata[i]); if (nm_device) g_ptr_array_add (nmdarray, nm_device); else g_ptr_array_remove_index (ndarray, i--); } devices = (NetDevice **)ndarray->pdata; nm_devices = (NMDevice **)nmdarray->pdata; num_devices = ndarray->len; titles = nm_device_disambiguate_names (nm_devices, num_devices); for (i = 0; i < num_devices; i++) { net_object_set_title (NET_OBJECT (devices[i]), titles[i]); g_free (titles[i]); } g_free (titles); g_ptr_array_free (ndarray, TRUE); g_ptr_array_free (nmdarray, TRUE); } static gboolean handle_argv_for_device (CcNetworkPanel *panel, NMDevice *device, GtkTreeIter *iter) { CcNetworkPanelPrivate *priv = panel->priv; NMDeviceType type; //GtkWidget *toplevel = cc_shell_get_toplevel (cc_panel_get_shell (CC_PANEL (panel))); GtkWidget *toplevel = GTK_WIDGET(panel); if (priv->arg_operation == OPERATION_NULL) return TRUE; type = nm_device_get_device_type (device); if (type == NM_DEVICE_TYPE_WIFI && (priv->arg_operation == OPERATION_CREATE_WIFI || priv->arg_operation == OPERATION_CONNECT_HIDDEN)) { g_debug ("Selecting wifi device"); select_tree_iter (panel, iter); if (priv->arg_operation == OPERATION_CREATE_WIFI) cc_network_panel_create_wifi_network (toplevel, priv->client); else cc_network_panel_connect_to_hidden_network (toplevel, priv->client); reset_command_line_args (panel); /* done */ return TRUE; } else if (g_strcmp0 (nm_object_get_path (NM_OBJECT (device)), priv->arg_device) == 0) { if (priv->arg_operation == OPERATION_CONNECT_MOBILE) { cc_network_panel_connect_to_3g_network (toplevel, priv->client, device); reset_command_line_args (panel); /* done */ select_tree_iter (panel, iter); return TRUE; } else if (priv->arg_operation == OPERATION_CONNECT_8021X) { cc_network_panel_connect_to_8021x_network (toplevel, priv->client, device, priv->arg_access_point); reset_command_line_args (panel); /* done */ select_tree_iter (panel, iter); return TRUE; } else if (priv->arg_operation == OPERATION_SHOW_DEVICE) { select_tree_iter (panel, iter); reset_command_line_args (panel); /* done */ return TRUE; } } return FALSE; } static gboolean handle_argv_for_connection (CcNetworkPanel *panel, NMConnection *connection, GtkTreeIter *iter) { CcNetworkPanelPrivate *priv = panel->priv; if (priv->arg_operation == OPERATION_NULL) return TRUE; if (priv->arg_operation != OPERATION_SHOW_DEVICE) return FALSE; if (g_strcmp0 (nm_connection_get_path (connection), priv->arg_device) == 0) { reset_command_line_args (panel); select_tree_iter (panel, iter); return TRUE; } return FALSE; } static void handle_argv (CcNetworkPanel *panel) { GtkTreeModel *model; GtkTreeIter iter; gboolean ret; if (panel->priv->arg_operation == OPERATION_NULL) return; model = GTK_TREE_MODEL (gtk_builder_get_object (panel->priv->builder, "liststore_devices")); ret = gtk_tree_model_get_iter_first (model, &iter); while (ret) { GObject *object_tmp; NMDevice *device; NMConnection *connection; gboolean done = FALSE; gtk_tree_model_get (model, &iter, PANEL_DEVICES_COLUMN_OBJECT, &object_tmp, -1); if (NET_IS_DEVICE (object_tmp)) { g_object_get (object_tmp, "nm-device", &device, NULL); done = handle_argv_for_device (panel, device, &iter); g_object_unref (device); } else if (NET_IS_VPN (object_tmp)) { g_object_get (object_tmp, "connection", &connection, NULL); done = handle_argv_for_connection (panel, connection, &iter); g_object_unref (connection); } g_object_unref (object_tmp); if (done) return; ret = gtk_tree_model_iter_next (model, &iter); } g_debug ("Could not handle argv operation, no matching device yet?"); } static void state_changed_cb (NMDevice *device, NMDeviceState new_state, NMDeviceState old_state, NMDeviceStateReason reason, CcNetworkPanel *panel) { GtkListStore *store; GtkTreeIter iter; if (!find_in_model_by_id (panel, nm_device_get_udi (device), &iter)) { return; } store = GTK_LIST_STORE (gtk_builder_get_object (panel->priv->builder, "liststore_devices")); gtk_list_store_set (store, &iter, PANEL_DEVICES_COLUMN_ICON, panel_device_to_icon_name (device, TRUE), -1); } static gboolean panel_add_device (CcNetworkPanel *panel, NMDevice *device) { GtkListStore *liststore_devices; GtkTreeIter iter; NMDeviceType type; NetDevice *net_device; CcNetworkPanelPrivate *priv = panel->priv; GtkNotebook *notebook; GtkSizeGroup *size_group; GType device_g_type; const char *udi; if (!nm_device_get_managed (device)) goto out; /* do we have an existing object with this id? */ udi = nm_device_get_udi (device); if (find_in_model_by_id (panel, udi, NULL) != NULL) goto out; type = nm_device_get_device_type (device); g_debug ("device %s type %i path %s", udi, type, nm_object_get_path (NM_OBJECT (device))); /* map the NMDeviceType to the GType, or ignore */ switch (type) { case NM_DEVICE_TYPE_ETHERNET: device_g_type = NET_TYPE_DEVICE_ETHERNET; break; #ifdef BUILD_MODEM case NM_DEVICE_TYPE_MODEM: device_g_type = NET_TYPE_DEVICE_MOBILE; break; #endif case NM_DEVICE_TYPE_WIFI: device_g_type = NET_TYPE_DEVICE_WIFI; break; /* not going to set up a cluster in GNOME */ case NM_DEVICE_TYPE_VETH: /* enterprise features */ case NM_DEVICE_TYPE_BOND: case NM_DEVICE_TYPE_TEAM: /* Don't need the libvirtd bridge */ case NM_DEVICE_TYPE_BRIDGE: /* Don't add VPN devices */ case NM_DEVICE_TYPE_TUN: goto out; default: device_g_type = NET_TYPE_DEVICE_SIMPLE; break; } /* create device */ net_device = g_object_new (device_g_type, "panel", panel, "removable", FALSE, "cancellable", panel->priv->cancellable, "client", panel->priv->client, "nm-device", device, "id", nm_device_get_udi (device), NULL); if (type == NM_DEVICE_TYPE_MODEM && g_str_has_prefix (nm_device_get_udi (device), "/org/freedesktop/ModemManager1/Modem/")) { GDBusObject *modem_object; if (priv->modem_manager == NULL) { g_warning ("Cannot grab information for modem at %s: No ModemManager support", nm_device_get_udi (device)); goto out; } modem_object = g_dbus_object_manager_get_object (G_DBUS_OBJECT_MANAGER (priv->modem_manager), nm_device_get_udi (device)); if (modem_object == NULL) { g_warning ("Cannot grab information for modem at %s: Not found", nm_device_get_udi (device)); goto out; } /* Set the modem object in the NetDeviceMobile */ g_object_set (net_device, "mm-object", modem_object, NULL); g_object_unref (modem_object); } /* add as a panel */ if (device_g_type != NET_TYPE_DEVICE) { notebook = GTK_NOTEBOOK (gtk_builder_get_object (panel->priv->builder, "notebook_types")); size_group = GTK_SIZE_GROUP (gtk_builder_get_object (panel->priv->builder, "sizegroup1")); net_object_add_to_notebook (NET_OBJECT (net_device), notebook, size_group); } liststore_devices = GTK_LIST_STORE (gtk_builder_get_object (priv->builder, "liststore_devices")); g_signal_connect_object (net_device, "removed", G_CALLBACK (object_removed_cb), panel, 0); gtk_list_store_append (liststore_devices, &iter); gtk_list_store_set (liststore_devices, &iter, PANEL_DEVICES_COLUMN_ICON, panel_device_to_icon_name (device, TRUE), PANEL_DEVICES_COLUMN_OBJECT, net_device, -1); g_signal_connect (net_device, "notify::title", G_CALLBACK (panel_net_object_notify_title_cb), panel); g_object_unref (net_device); g_signal_connect (device, "state-changed", G_CALLBACK (state_changed_cb), panel); out: return FALSE; } static void panel_remove_device (CcNetworkPanel *panel, NMDevice *device) { gboolean ret; NetObject *object_tmp; GtkTreeIter iter; GtkTreeModel *model; /* remove device from model */ model = GTK_TREE_MODEL (gtk_builder_get_object (panel->priv->builder, "liststore_devices")); ret = gtk_tree_model_get_iter_first (model, &iter); if (!ret) return; /* get the other elements */ do { gtk_tree_model_get (model, &iter, PANEL_DEVICES_COLUMN_OBJECT, &object_tmp, -1); if (g_strcmp0 (net_object_get_id (object_tmp), nm_device_get_udi (device)) == 0) { gtk_list_store_remove (GTK_LIST_STORE (model), &iter); g_object_unref (object_tmp); break; } g_object_unref (object_tmp); } while (gtk_tree_model_iter_next (model, &iter)); } static void get_object_title (GtkTreeViewColumn *column, GtkCellRenderer *cell, GtkTreeModel *model, GtkTreeIter *iter, gpointer data) { NetObject *object; gtk_tree_model_get (model, iter, PANEL_DEVICES_COLUMN_OBJECT, &object, -1); if (!object) return; g_object_set (cell, "text", net_object_get_title (object), NULL); g_object_unref (object); } static void panel_add_devices_columns (CcNetworkPanel *panel, GtkTreeView *treeview) { CcNetworkPanelPrivate *priv = panel->priv; GtkCellRenderer *renderer; GtkListStore *liststore_devices; GtkTreeViewColumn *column; /* image */ renderer = gtk_cell_renderer_pixbuf_new (); g_object_set (renderer, "width", 32, "xalign", 1.0, "stock-size", GTK_ICON_SIZE_MENU, "follow-state", TRUE, NULL); gtk_cell_renderer_set_padding (renderer, 4, 10); column = gtk_tree_view_column_new_with_attributes ("icon", renderer, "icon-name", PANEL_DEVICES_COLUMN_ICON, NULL); gtk_tree_view_append_column (treeview, column); /* column for text */ renderer = gtk_cell_renderer_text_new (); g_object_set (renderer, "wrap-mode", PANGO_WRAP_WORD, "ellipsize", PANGO_ELLIPSIZE_END, NULL); column = gtk_tree_view_column_new_with_attributes ("title", renderer, NULL); gtk_tree_view_column_set_cell_data_func (GTK_TREE_VIEW_COLUMN (column), renderer, get_object_title, NULL, NULL); gtk_tree_view_column_set_sort_column_id (column, PANEL_DEVICES_COLUMN_OBJECT); liststore_devices = GTK_LIST_STORE (gtk_builder_get_object (priv->builder, "liststore_devices")); gtk_tree_sortable_set_sort_func (GTK_TREE_SORTABLE (liststore_devices), PANEL_DEVICES_COLUMN_OBJECT, panel_net_object_sort_func, NULL, NULL); gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (liststore_devices), PANEL_DEVICES_COLUMN_OBJECT, GTK_SORT_ASCENDING); gtk_tree_view_append_column (treeview, column); gtk_tree_view_column_set_expand (column, TRUE); } static void nm_devices_treeview_clicked_cb (GtkTreeSelection *selection, CcNetworkPanel *panel) { CcNetworkPanelPrivate *priv = panel->priv; const gchar *id_tmp; const gchar *needle; GList *l; GList *panels = NULL; GtkNotebook *notebook; GtkTreeIter iter; GtkTreeModel *model; GtkWidget *widget; guint i = 0; NetObject *object = NULL; if (!gtk_tree_selection_get_selected (selection, &model, &iter)) { g_debug ("no row selected"); goto out; } /* find the widget in the notebook that matches the object ID */ object = get_selected_object (panel); needle = net_object_get_id (object); notebook = GTK_NOTEBOOK (gtk_builder_get_object (priv->builder, "notebook_types")); panels = gtk_container_get_children (GTK_CONTAINER (notebook)); for (l = panels; l != NULL; l = l->next) { widget = GTK_WIDGET (l->data); id_tmp = g_object_get_data (G_OBJECT (widget), "NetObject::id"); if (g_strcmp0 (needle, id_tmp) == 0) { gtk_notebook_set_current_page (notebook, i); /* object is deletable? */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "remove_toolbutton")); gtk_widget_set_sensitive (widget, net_object_get_removable (object)); break; } i++; } g_object_unref (object); out: g_list_free (panels); } static void panel_add_proxy_device (CcNetworkPanel *panel) { GtkListStore *liststore_devices; GtkTreeIter iter; NetProxy *proxy; GtkNotebook *notebook; GtkSizeGroup *size_group; /* add proxy to notebook */ proxy = net_proxy_new (); notebook = GTK_NOTEBOOK (gtk_builder_get_object (panel->priv->builder, "notebook_types")); size_group = GTK_SIZE_GROUP (gtk_builder_get_object (panel->priv->builder, "sizegroup1")); net_object_add_to_notebook (NET_OBJECT (proxy), notebook, size_group); /* add proxy to device list */ liststore_devices = GTK_LIST_STORE (gtk_builder_get_object (panel->priv->builder, "liststore_devices")); net_object_set_title (NET_OBJECT (proxy), _("Network proxy")); gtk_list_store_append (liststore_devices, &iter); gtk_list_store_set (liststore_devices, &iter, PANEL_DEVICES_COLUMN_ICON, "preferences-system-network-symbolic", PANEL_DEVICES_COLUMN_OBJECT, proxy, -1); /* NOTE: No connect to notify::title here as it is guaranteed to not * be changed by anyone.*/ g_object_unref (proxy); } static void connection_state_changed (NMActiveConnection *c, GParamSpec *pspec, CcNetworkPanel *panel) { } static void active_connections_changed (NMClient *client, GParamSpec *pspec, gpointer user_data) { CcNetworkPanel *panel = user_data; const GPtrArray *connections; int i, j; g_debug ("Active connections changed:"); connections = nm_client_get_active_connections (client); for (i = 0; connections && (i < connections->len); i++) { NMActiveConnection *connection; const GPtrArray *devices; connection = g_ptr_array_index (connections, i); g_debug (" %s", nm_object_get_path (NM_OBJECT (connection))); devices = nm_active_connection_get_devices (connection); for (j = 0; devices && j < devices->len; j++) g_debug (" %s", nm_device_get_udi (g_ptr_array_index (devices, j))); if (NM_IS_VPN_CONNECTION (connection)) g_debug (" VPN base connection: %s", nm_active_connection_get_specific_object_path (connection)); if (g_object_get_data (G_OBJECT (connection), "has-state-changed-handler") == NULL) { g_signal_connect_object (connection, "notify::state", G_CALLBACK (connection_state_changed), panel, 0); g_object_set_data (G_OBJECT (connection), "has-state-changed-handler", GINT_TO_POINTER (TRUE)); } } } static void device_added_cb (NMClient *client, NMDevice *device, CcNetworkPanel *panel) { g_debug ("New device added"); panel_add_device (panel, device); panel_refresh_device_titles (panel); } static void device_removed_cb (NMClient *client, NMDevice *device, CcNetworkPanel *panel) { g_debug ("Device removed"); panel_remove_device (panel, device); panel_refresh_device_titles (panel); } static void manager_running (NMClient *client, GParamSpec *pspec, gpointer user_data) { const GPtrArray *devices; int i; NMDevice *device_tmp; GtkListStore *liststore_devices; gboolean selected = FALSE; CcNetworkPanel *panel = CC_NETWORK_PANEL (user_data); /* clear all devices we added */ if (!nm_client_get_nm_running (client)) { g_debug ("NM disappeared"); liststore_devices = GTK_LIST_STORE (gtk_builder_get_object (panel->priv->builder, "liststore_devices")); gtk_list_store_clear (liststore_devices); panel_add_proxy_device (panel); goto out; } g_debug ("coldplugging devices"); devices = nm_client_get_devices (client); if (devices == NULL) { g_debug ("No devices to add"); return; } for (i = 0; i < devices->len; i++) { device_tmp = g_ptr_array_index (devices, i); selected = panel_add_device (panel, device_tmp) || selected; } out: if (!selected) { /* select the first device */ select_first_device (panel); } panel_refresh_device_titles (panel); g_debug ("Calling handle_argv() after cold-plugging devices"); handle_argv (panel); } static NetObject * find_in_model_by_id (CcNetworkPanel *panel, const gchar *id, GtkTreeIter *iter_out) { gboolean ret; NetObject *object_tmp; GtkTreeIter iter; GtkTreeModel *model; NetObject *object = NULL; /* find in model */ model = GTK_TREE_MODEL (gtk_builder_get_object (panel->priv->builder, "liststore_devices")); ret = gtk_tree_model_get_iter_first (model, &iter); if (!ret) goto out; /* get the other elements */ ret = FALSE; do { gtk_tree_model_get (model, &iter, PANEL_DEVICES_COLUMN_OBJECT, &object_tmp, -1); if (object_tmp != NULL) { g_debug ("got %s", net_object_get_id (object_tmp)); if (g_strcmp0 (net_object_get_id (object_tmp), id) == 0) object = object_tmp; g_object_unref (object_tmp); } } while (object == NULL && gtk_tree_model_iter_next (model, &iter)); out: if (iter_out) *iter_out = iter; return object; } static void panel_add_vpn_device (CcNetworkPanel *panel, NMConnection *connection) { gchar *title; GtkListStore *liststore_devices; GtkTreeIter iter; NetVpn *net_vpn; const gchar *id; GtkNotebook *notebook; GtkSizeGroup *size_group; /* does already exist */ id = nm_connection_get_path (connection); if (find_in_model_by_id (panel, id, NULL) != NULL) return; /* add as a VPN object */ net_vpn = g_object_new (NET_TYPE_VPN, "panel", panel, "removable", TRUE, "id", id, "connection", connection, "client", panel->priv->client, NULL); g_signal_connect_object (net_vpn, "removed", G_CALLBACK (object_removed_cb), panel, 0); /* add as a panel */ notebook = GTK_NOTEBOOK (gtk_builder_get_object (panel->priv->builder, "notebook_types")); size_group = GTK_SIZE_GROUP (gtk_builder_get_object (panel->priv->builder, "sizegroup1")); net_object_add_to_notebook (NET_OBJECT (net_vpn), notebook, size_group); liststore_devices = GTK_LIST_STORE (gtk_builder_get_object (panel->priv->builder, "liststore_devices")); title = g_strdup_printf (_("%s VPN"), nm_connection_get_id (connection)); net_object_set_title (NET_OBJECT (net_vpn), title); gtk_list_store_append (liststore_devices, &iter); gtk_list_store_set (liststore_devices, &iter, PANEL_DEVICES_COLUMN_ICON, "network-vpn-symbolic", PANEL_DEVICES_COLUMN_OBJECT, net_vpn, -1); g_signal_connect (net_vpn, "notify::title", G_CALLBACK (panel_net_object_notify_title_cb), panel); g_free (title); g_object_unref (net_vpn); } static void add_connection (CcNetworkPanel *panel, NMConnection *connection) { NMSettingConnection *s_con; const gchar *type, *iface; s_con = NM_SETTING_CONNECTION (nm_connection_get_setting (connection, NM_TYPE_SETTING_CONNECTION)); type = nm_setting_connection_get_connection_type (s_con); iface = nm_connection_get_interface_name (connection); if (g_strcmp0 (type, "vpn") != 0 && iface == NULL) return; /* Don't add the libvirtd bridge to the UI */ if (g_strcmp0 (nm_setting_connection_get_interface_name (s_con), "virbr0") == 0) return; g_debug ("add %s/%s remote connection: %s", type, g_type_name_from_instance ((GTypeInstance*)connection), nm_connection_get_path (connection)); if (!iface) panel_add_vpn_device (panel, connection); } static void notify_connection_added_cb (NMClient *client, NMRemoteConnection *connection, CcNetworkPanel *panel) { add_connection (panel, NM_CONNECTION (connection)); } static void panel_check_network_manager_version (CcNetworkPanel *panel) { GtkWidget *box; GtkWidget *label; gchar *markup; const gchar *version; /* parse running version */ version = nm_client_get_version (panel->priv->client); if (version == NULL) { gtk_container_remove (GTK_CONTAINER (panel), gtk_bin_get_child (GTK_BIN (panel))); box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 20); gtk_box_set_homogeneous (GTK_BOX (box), TRUE); gtk_widget_set_vexpand (box, TRUE); gtk_container_add (GTK_CONTAINER (panel), box); label = gtk_label_new (_("Oops, something has gone wrong. Please contact your software vendor.")); gtk_label_set_line_wrap (GTK_LABEL (label), TRUE); gtk_widget_set_valign (label, GTK_ALIGN_END); gtk_box_pack_start (GTK_BOX (box), label, TRUE, TRUE, 0); markup = g_strdup_printf ("%s", _("NetworkManager needs to be running.")); label = gtk_label_new (NULL); gtk_label_set_markup (GTK_LABEL (label), markup); gtk_label_set_line_wrap (GTK_LABEL (label), TRUE); gtk_widget_set_valign (label, GTK_ALIGN_START); gtk_box_pack_start (GTK_BOX (box), label, TRUE, TRUE, 0); gtk_widget_show_all (box); g_free (markup); } else { manager_running (panel->priv->client, NULL, panel); } } static void editor_done (NetConnectionEditor *editor, gboolean success, gpointer user_data) { g_object_unref (editor); } static void add_connection_cb (GtkToolButton *button, CcNetworkPanel *panel) { NetConnectionEditor *editor; GtkWindow *toplevel; toplevel = GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (panel))); editor = net_connection_editor_new (toplevel, NULL, NULL, NULL, panel->priv->client); g_signal_connect (editor, "done", G_CALLBACK (editor_done), panel); net_connection_editor_run (editor); } static void remove_connection (GtkToolButton *button, CcNetworkPanel *panel) { NetObject *object; /* get current device */ object = get_selected_object (panel); if (object == NULL) return; /* delete the object */ net_object_delete (object); g_object_unref (object); } static void on_toplevel_map (GtkWidget *widget, CcNetworkPanel *panel) { /* is the user compiling against a new version, but not running * the daemon? */ panel_check_network_manager_version (panel); } static void cc_network_panel_init (CcNetworkPanel *panel) { GError *error = NULL; GtkStyleContext *context; GtkTreeSelection *selection; GtkWidget *widget; GtkWidget *toplevel; GDBusConnection *system_bus; GtkCssProvider *provider; const GPtrArray *connections; guint i; panel->priv = NETWORK_PANEL_PRIVATE (panel); g_resources_register (cc_network_get_resource ()); panel->priv->builder = gtk_builder_new (); gtk_builder_add_from_resource (panel->priv->builder, "/org/cinnamon/control-center/network/network.ui", &error); if (error != NULL) { g_warning ("Could not load interface file: %s", error->message); g_error_free (error); return; } panel->priv->cancellable = g_cancellable_new (); panel->priv->treeview = GTK_WIDGET (gtk_builder_get_object (panel->priv->builder, "treeview_devices")); panel_add_devices_columns (panel, GTK_TREE_VIEW (panel->priv->treeview)); selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (panel->priv->treeview)); gtk_tree_selection_set_mode (selection, GTK_SELECTION_BROWSE); g_signal_connect (selection, "changed", G_CALLBACK (nm_devices_treeview_clicked_cb), panel); widget = GTK_WIDGET (gtk_builder_get_object (panel->priv->builder, "devices_scrolledwindow")); gtk_widget_set_size_request (widget, 200, -1); context = gtk_widget_get_style_context (widget); gtk_style_context_set_junction_sides (context, GTK_JUNCTION_BOTTOM); widget = GTK_WIDGET (gtk_builder_get_object (panel->priv->builder, "devices_toolbar")); context = gtk_widget_get_style_context (widget); gtk_style_context_set_junction_sides (context, GTK_JUNCTION_TOP); /* add the virtual proxy device */ panel_add_proxy_device (panel); /* use NetworkManager client */ panel->priv->client = nm_client_new (NULL, NULL); g_signal_connect (panel->priv->client, "notify::nm-running" , G_CALLBACK (manager_running), panel); g_signal_connect (panel->priv->client, "notify::active-connections", G_CALLBACK (active_connections_changed), panel); g_signal_connect (panel->priv->client, "device-added", G_CALLBACK (device_added_cb), panel); g_signal_connect (panel->priv->client, "device-removed", G_CALLBACK (device_removed_cb), panel); #ifdef BUILD_MODEM /* Setup ModemManager client */ system_bus = g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, &error); if (system_bus == NULL) { g_warning ("Error connecting to system D-Bus: %s", error->message); g_clear_error (&error); } else { panel->priv->modem_manager = mm_manager_new_sync (system_bus, G_DBUS_OBJECT_MANAGER_CLIENT_FLAGS_NONE, NULL, &error); if (panel->priv->modem_manager == NULL) { g_warning ("Error connecting to ModemManager: %s", error->message); g_clear_error (&error); } g_object_unref (system_bus); } #else panel->priv->modem_manager = NULL; #endif widget = GTK_WIDGET (gtk_builder_get_object (panel->priv->builder, "add_toolbutton")); g_signal_connect (widget, "clicked", G_CALLBACK (add_connection_cb), panel); /* disable for now, until we actually show removable connections */ widget = GTK_WIDGET (gtk_builder_get_object (panel->priv->builder, "remove_toolbutton")); g_signal_connect (widget, "clicked", G_CALLBACK (remove_connection), panel); /* add remote settings such as VPN settings as virtual devices */ g_signal_connect (panel->priv->client, NM_CLIENT_CONNECTION_ADDED, G_CALLBACK (notify_connection_added_cb), panel); toplevel = gtk_widget_get_toplevel (GTK_WIDGET (panel)); g_signal_connect_after (toplevel, "map", G_CALLBACK (on_toplevel_map), panel); /* hide implementation details */ widget = GTK_WIDGET (gtk_builder_get_object (panel->priv->builder, "notebook_types")); gtk_notebook_set_show_tabs (GTK_NOTEBOOK (widget), FALSE); widget = GTK_WIDGET (gtk_builder_get_object (panel->priv->builder, "vbox1")); gtk_container_add (GTK_CONTAINER (panel), widget); provider = gtk_css_provider_new (); gtk_css_provider_load_from_data (provider, ".circular-button { border-radius: 20px; -gtk-outline-radius: 20px; }", -1, NULL); gtk_style_context_add_provider_for_screen (gdk_screen_get_default (), GTK_STYLE_PROVIDER (provider), GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); g_object_unref (provider); /* Cold-plug existing connections */ connections = nm_client_get_connections (panel->priv->client); if (connections) { for (i = 0; i < connections->len; i++) add_connection (panel, connections->pdata[i]); } g_debug ("Calling handle_argv() after cold-plugging connections"); handle_argv (panel); } void cc_network_panel_register (GIOModule *module) { textdomain (GETTEXT_PACKAGE); bindtextdomain (GETTEXT_PACKAGE, LOCALE_DIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); cc_network_panel_register_type (G_TYPE_MODULE (module)); g_io_extension_point_implement (CC_SHELL_PANEL_EXTENSION_POINT, CC_TYPE_NETWORK_PANEL, "network", 0); } cinnamon-control-center-6.2.0/panels/network/panel-common.h0000664000175000017500000000557714632072346022737 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2010 Richard Hughes * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef PANEL_COMMON_H #define PANEL_COMMON_H #include #include #include G_BEGIN_DECLS const gchar *panel_device_to_icon_name (NMDevice *device, gboolean symbolic); gint panel_device_get_sort_category (NMDevice *device); const gchar *panel_ap_mode_to_localized_string (NM80211Mode mode); const gchar *panel_vpn_state_to_localized_string (NMVpnConnectionState type); void panel_set_device_status (GtkBuilder *builder, const gchar *label_name, NMDevice *nm_device, const gchar *speed); gboolean panel_set_device_widget_details (GtkBuilder *builder, const gchar *widget_suffix, const gchar *value); gboolean panel_set_device_widget_header (GtkBuilder *builder, const gchar *widget_suffix, const gchar *value); void panel_set_device_widgets (GtkBuilder *builder, NMDevice *device); void panel_unset_device_widgets (GtkBuilder *builder); gchar *panel_get_ip4_address_as_string (NMIPConfig *config, const gchar *what); gchar *panel_get_dns_as_string (NMIPConfig *config); gchar *panel_get_ip6_address_as_string (NMIPConfig *config, const gchar *what); G_END_DECLS #endif /* PANEL_COMMON_H */ cinnamon-control-center-6.2.0/panels/network/meson.build0000664000175000017500000000201214632072346022320 0ustar fabiofabiosubdir('wireless-security') subdir('connection-editor') panel_network_sources = [ 'cc-network-panel.c', 'net-device-ethernet.c', 'net-device-simple.c', 'net-device-wifi.c', 'net-device.c', 'net-object.c', 'net-proxy.c', 'net-vpn.c', 'network-dialogs.c', 'network-module.c', 'panel-common.c', gnome.compile_resources('cc-network-resources', 'network.gresource.xml', c_name: 'cc_network', source_dir: meson.current_source_dir(), ), ] if modemmanager.found() panel_network_sources += 'net-device-mobile.c' endif panel_network = shared_library('network', panel_network_sources, include_directories: rootInclude, link_whole: [ libconnection_editor, ], link_with: [ libcinnamon_control_center, ], dependencies: [ glib, gtk, libnm, libnma, modemmanager, polkit_gobj, ], install: true, install_dir: panels_dir ) install_data('network.ui', install_dir: ui_dir, ) install_data( 'cinnamon-network-panel.desktop', install_dir: desktop_dir )cinnamon-control-center-6.2.0/panels/network/cc-network-panel.h0000664000175000017500000000412114632072346023503 0ustar fabiofabio/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- * * Copyright (C) 2010 Richard Hughes * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * */ #ifndef _CC_NETWORK_PANEL_H #define _CC_NETWORK_PANEL_H #include G_BEGIN_DECLS #define CC_TYPE_NETWORK_PANEL cc_network_panel_get_type() #define CC_NETWORK_PANEL(obj) \ (G_TYPE_CHECK_INSTANCE_CAST ((obj), \ CC_TYPE_NETWORK_PANEL, CcNetworkPanel)) #define CC_NETWORK_PANEL_CLASS(klass) \ (G_TYPE_CHECK_CLASS_CAST ((klass), \ CC_TYPE_NETWORK_PANEL, CcNetworkPanelClass)) #define CC_IS_NETWORK_PANEL(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \ CC_TYPE_NETWORK_PANEL)) #define CC_IS_NETWORK_PANEL_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE ((klass), \ CC_TYPE_NETWORK_PANEL)) #define CC_NETWORK_PANEL_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), \ CC_TYPE_NETWORK_PANEL, CcNetworkPanelClass)) typedef struct _CcNetworkPanel CcNetworkPanel; typedef struct _CcNetworkPanelClass CcNetworkPanelClass; typedef struct _CcNetworkPanelPrivate CcNetworkPanelPrivate; struct _CcNetworkPanel { CcPanel parent; CcNetworkPanelPrivate *priv; }; struct _CcNetworkPanelClass { CcPanelClass parent_class; }; GType cc_network_panel_get_type (void) G_GNUC_CONST; GPtrArray *cc_network_panel_get_devices (CcNetworkPanel *panel); void cc_network_panel_register (GIOModule *module); G_END_DECLS #endif /* _CC_NETWORK_PANEL_H */ cinnamon-control-center-6.2.0/panels/network/network.gresource.xml0000664000175000017500000000110214632072346024365 0ustar fabiofabio network.ui network-proxy.ui network-vpn.ui network-wifi.ui network-simple.ui network-mobile.ui network-ethernet.ui cinnamon-control-center-6.2.0/panels/network/net-vpn.c0000664000175000017500000005132514632072346021724 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2011-2012 Richard Hughes * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "config.h" #include #include #include #include "panel-common.h" #include "net-vpn.h" #include "connection-editor/net-connection-editor.h" #define NET_VPN_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), NET_TYPE_VPN, NetVpnPrivate)) struct _NetVpnPrivate { GtkBuilder *builder; NMConnection *connection; NMActiveConnection *active_connection; gchar *service_type; gboolean valid; gboolean updating_device; }; enum { PROP_0, PROP_CONNECTION, PROP_LAST }; G_DEFINE_TYPE (NetVpn, net_vpn, NET_TYPE_OBJECT) static void connection_vpn_state_changed_cb (NMVpnConnection *connection, NMVpnConnectionState state, #if NM_CHECK_VERSION(1,8,0) NMActiveConnectionStateReason reason, #else NMVpnConnectionStateReason reason, #endif NetVpn *vpn) { net_object_emit_changed (NET_OBJECT (vpn)); } static void connection_changed_cb (NMConnection *connection, NetVpn *vpn) { net_object_emit_changed (NET_OBJECT (vpn)); } static void connection_removed_cb (NMClient *client, NMConnection *connection, NetVpn *vpn) { NetVpnPrivate *priv = vpn->priv; if (priv->connection == connection) net_object_emit_removed (NET_OBJECT (vpn)); } static char * net_vpn_connection_to_type (NMConnection *connection) { const gchar *type, *p; type = nm_setting_vpn_get_service_type (nm_connection_get_setting_vpn (connection)); /* Go from "org.freedesktop.NetworkManager.vpnc" to "vpnc" for example */ p = strrchr (type, '.'); return g_strdup (p ? p + 1 : type); } static void net_vpn_set_connection (NetVpn *vpn, NMConnection *connection) { NetVpnPrivate *priv = vpn->priv; NMClient *client; /* * vpnc config example: * key=IKE DH Group, value=dh2 * key=xauth-password-type, value=ask * key=ipsec-secret-type, value=save * key=IPSec gateway, value=66.187.233.252 * key=NAT Traversal Mode, value=natt * key=IPSec ID, value=rh-vpn * key=Xauth username, value=rhughes */ priv->connection = g_object_ref (connection); client = net_object_get_client (NET_OBJECT (vpn)); g_signal_connect (client, NM_CLIENT_CONNECTION_REMOVED, G_CALLBACK (connection_removed_cb), vpn); g_signal_connect (connection, NM_CONNECTION_CHANGED, G_CALLBACK (connection_changed_cb), vpn); if (NM_IS_VPN_CONNECTION (priv->connection)) { g_signal_connect (priv->connection, NM_VPN_CONNECTION_VPN_STATE, G_CALLBACK (connection_vpn_state_changed_cb), vpn); } priv->service_type = net_vpn_connection_to_type (priv->connection); } static NMVpnConnectionState net_vpn_get_state (NetVpn *vpn) { NetVpnPrivate *priv = vpn->priv; if (!NM_IS_VPN_CONNECTION (priv->connection)) return NM_VPN_CONNECTION_STATE_DISCONNECTED; return nm_vpn_connection_get_vpn_state (NM_VPN_CONNECTION (priv->connection)); } /* VPN parameters can be found at: * http://git.gnome.org/browse/network-manager-openvpn/tree/src/nm-openvpn-service.h * http://git.gnome.org/browse/network-manager-vpnc/tree/src/nm-vpnc-service.h * http://git.gnome.org/browse/network-manager-pptp/tree/src/nm-pptp-service.h * http://git.gnome.org/browse/network-manager-openconnect/tree/src/nm-openconnect-service.h * http://git.gnome.org/browse/network-manager-openswan/tree/src/nm-openswan-service.h * See also 'properties' directory in these plugins. */ static const gchar * get_vpn_key_gateway (const char *vpn_type) { if (g_strcmp0 (vpn_type, "openvpn") == 0) return "remote"; if (g_strcmp0 (vpn_type, "vpnc") == 0) return "IPSec gateway"; if (g_strcmp0 (vpn_type, "pptp") == 0) return "gateway"; if (g_strcmp0 (vpn_type, "openconnect") == 0) return "gateway"; if (g_strcmp0 (vpn_type, "openswan") == 0) return "right"; return ""; } static const gchar * get_vpn_key_group (const char *vpn_type) { if (g_strcmp0 (vpn_type, "openvpn") == 0) return ""; if (g_strcmp0 (vpn_type, "vpnc") == 0) return "IPSec ID"; if (g_strcmp0 (vpn_type, "pptp") == 0) return ""; if (g_strcmp0 (vpn_type, "openconnect") == 0) return ""; if (g_strcmp0 (vpn_type, "openswan") == 0) return ""; return ""; } static const gchar * get_vpn_key_username (const char *vpn_type) { if (g_strcmp0 (vpn_type, "openvpn") == 0) return "username"; if (g_strcmp0 (vpn_type, "vpnc") == 0) return "Xauth username"; if (g_strcmp0 (vpn_type, "pptp") == 0) return "user"; if (g_strcmp0 (vpn_type, "openconnect") == 0) return "username"; if (g_strcmp0 (vpn_type, "openswan") == 0) return "leftxauthusername"; return ""; } static const gchar * get_vpn_key_group_password (const char *vpn_type) { if (g_strcmp0 (vpn_type, "openvpn") == 0) return ""; if (g_strcmp0 (vpn_type, "vpnc") == 0) return "Xauth password"; if (g_strcmp0 (vpn_type, "pptp") == 0) return ""; if (g_strcmp0 (vpn_type, "openconnect") == 0) return ""; if (g_strcmp0 (vpn_type, "openswan") == 0) return ""; return ""; } static const gchar * net_vpn_get_gateway (NetVpn *vpn) { NetVpnPrivate *priv = vpn->priv; const gchar *key; key = get_vpn_key_gateway (priv->service_type); return nm_setting_vpn_get_data_item (nm_connection_get_setting_vpn (priv->connection), key); } static const gchar * net_vpn_get_id (NetVpn *vpn) { NetVpnPrivate *priv = vpn->priv; const gchar *key; key = get_vpn_key_group (priv->service_type); return nm_setting_vpn_get_data_item (nm_connection_get_setting_vpn (priv->connection), key); } static const gchar * net_vpn_get_username (NetVpn *vpn) { NetVpnPrivate *priv = vpn->priv; const gchar *key; key = get_vpn_key_username (priv->service_type); return nm_setting_vpn_get_data_item (nm_connection_get_setting_vpn (priv->connection), key); } static const gchar * net_vpn_get_password (NetVpn *vpn) { NetVpnPrivate *priv = vpn->priv; const gchar *key; key = get_vpn_key_group_password (priv->service_type); return nm_setting_vpn_get_data_item (nm_connection_get_setting_vpn (priv->connection), key); } static void vpn_proxy_delete (NetObject *object) { NetVpn *vpn = NET_VPN (object); nm_remote_connection_delete_async (NM_REMOTE_CONNECTION (vpn->priv->connection), NULL, NULL, vpn); } static GtkWidget * vpn_proxy_add_to_notebook (NetObject *object, GtkNotebook *notebook, GtkSizeGroup *heading_size_group) { GtkWidget *widget; NetVpn *vpn = NET_VPN (object); /* add widgets to size group */ widget = GTK_WIDGET (gtk_builder_get_object (vpn->priv->builder, "heading_group_password")); gtk_size_group_add_widget (heading_size_group, widget); widget = GTK_WIDGET (gtk_builder_get_object (vpn->priv->builder, "vbox9")); gtk_notebook_append_page (notebook, widget, NULL); return widget; } static void nm_device_refresh_vpn_ui (NetVpn *vpn) { GtkWidget *widget; GtkWidget *sw; const gchar *status; NetVpnPrivate *priv = vpn->priv; const GPtrArray *acs; NMActiveConnection *a; gint i; NMVpnConnectionState state; gchar *title; NMClient *client; sw = GTK_WIDGET (gtk_builder_get_object (priv->builder, "device_off_switch")); gtk_widget_set_visible (sw, TRUE); /* update title */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "label_device")); /* Translators: this is the title of the connection details * window for vpn connections, it is also used to display * vpn connections in the device list. */ title = g_strdup_printf (_("%s VPN"), nm_connection_get_id (vpn->priv->connection)); net_object_set_title (NET_OBJECT (vpn), title); gtk_label_set_label (GTK_LABEL (widget), title); g_free (title); if (priv->active_connection) { g_signal_handlers_disconnect_by_func (vpn->priv->active_connection, nm_device_refresh_vpn_ui, vpn); g_clear_object (&priv->active_connection); } /* use status */ state = net_vpn_get_state (vpn); client = net_object_get_client (NET_OBJECT (vpn)); acs = nm_client_get_active_connections (client); if (acs != NULL) { const gchar *uuid; uuid = nm_connection_get_uuid (vpn->priv->connection); for (i = 0; i < acs->len; i++) { const gchar *auuid; a = (NMActiveConnection*)acs->pdata[i]; auuid = nm_active_connection_get_uuid (a); if (NM_IS_VPN_CONNECTION (a) && strcmp (auuid, uuid) == 0) { priv->active_connection = g_object_ref (a); g_signal_connect_swapped (a, "notify::vpn-state", G_CALLBACK (nm_device_refresh_vpn_ui), vpn); state = nm_vpn_connection_get_vpn_state (NM_VPN_CONNECTION (a)); break; } } } widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "label_status")); status = panel_vpn_state_to_localized_string (state); gtk_label_set_label (GTK_LABEL (widget), status); priv->updating_device = TRUE; gtk_switch_set_active (GTK_SWITCH (sw), state != NM_VPN_CONNECTION_STATE_FAILED && state != NM_VPN_CONNECTION_STATE_DISCONNECTED); priv->updating_device = FALSE; /* service type */ panel_set_device_widget_details (vpn->priv->builder, "service_type", vpn->priv->service_type); /* gateway */ panel_set_device_widget_details (vpn->priv->builder, "gateway", net_vpn_get_gateway (vpn)); /* groupname */ panel_set_device_widget_details (vpn->priv->builder, "group_name", net_vpn_get_id (vpn)); /* username */ panel_set_device_widget_details (vpn->priv->builder, "username", net_vpn_get_username (vpn)); /* password */ panel_set_device_widget_details (vpn->priv->builder, "group_password", net_vpn_get_password (vpn)); } static void nm_active_connections_changed (NetVpn *vpn) { nm_device_refresh_vpn_ui (vpn); } static void vpn_proxy_refresh (NetObject *object) { NetVpn *vpn = NET_VPN (object); nm_device_refresh_vpn_ui (vpn); } static void device_off_toggled (GtkSwitch *sw, GParamSpec *pspec, NetVpn *vpn) { const GPtrArray *acs; gboolean active; gint i; NMActiveConnection *a; NMClient *client; if (vpn->priv->updating_device) return; active = gtk_switch_get_active (sw); if (active) { client = net_object_get_client (NET_OBJECT (vpn)); nm_client_activate_connection_async (client, vpn->priv->connection, NULL, NULL, NULL, NULL, NULL); } else { const gchar *uuid; uuid = nm_connection_get_uuid (vpn->priv->connection); client = net_object_get_client (NET_OBJECT (vpn)); acs = nm_client_get_active_connections (client); for (i = 0; acs && i < acs->len; i++) { a = (NMActiveConnection*)acs->pdata[i]; if (strcmp (nm_active_connection_get_uuid (a), uuid) == 0) { nm_client_deactivate_connection (client, a, NULL, NULL); break; } } } } static void edit_connection (GtkButton *button, NetVpn *vpn) { net_object_edit (NET_OBJECT (vpn)); } static void editor_done (NetConnectionEditor *editor, gboolean success, NetVpn *vpn) { g_object_unref (editor); net_object_refresh (NET_OBJECT (vpn)); g_object_unref (vpn); } static void vpn_proxy_edit (NetObject *object) { NetVpn *vpn = NET_VPN (object); GtkWidget *button, *window; NetConnectionEditor *editor; NMClient *client; gchar *title; button = GTK_WIDGET (gtk_builder_get_object (vpn->priv->builder, "button_options")); window = gtk_widget_get_toplevel (button); client = net_object_get_client (object); editor = net_connection_editor_new (GTK_WINDOW (window), vpn->priv->connection, NULL, NULL, client); title = g_strdup_printf (_("%s VPN"), nm_connection_get_id (vpn->priv->connection)); net_connection_editor_set_title (editor, title); g_free (title); g_signal_connect (editor, "done", G_CALLBACK (editor_done), g_object_ref (vpn)); net_connection_editor_run (editor); } /** * net_vpn_get_property: **/ static void net_vpn_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec) { NetVpn *vpn = NET_VPN (object); NetVpnPrivate *priv = vpn->priv; switch (prop_id) { case PROP_CONNECTION: g_value_set_object (value, priv->connection); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (vpn, prop_id, pspec); break; } } /** * net_vpn_set_property: **/ static void net_vpn_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec) { NetVpn *vpn = NET_VPN (object); switch (prop_id) { case PROP_CONNECTION: net_vpn_set_connection (vpn, g_value_get_object (value)); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (vpn, prop_id, pspec); break; } } static void net_vpn_constructed (GObject *object) { NetVpn *vpn = NET_VPN (object); NMClient *client = net_object_get_client (NET_OBJECT (object)); G_OBJECT_CLASS (net_vpn_parent_class)->constructed (object); nm_device_refresh_vpn_ui (vpn); g_signal_connect_swapped (client, "notify::active-connections", G_CALLBACK (nm_active_connections_changed), vpn); } static void net_vpn_finalize (GObject *object) { NetVpn *vpn = NET_VPN (object); NetVpnPrivate *priv = vpn->priv; NMClient *client = net_object_get_client (NET_OBJECT (object)); if (client) { g_signal_handlers_disconnect_by_func (client, nm_active_connections_changed, vpn); } if (priv->active_connection) { g_signal_handlers_disconnect_by_func (priv->active_connection, nm_device_refresh_vpn_ui, vpn); g_object_unref (priv->active_connection); } g_signal_handlers_disconnect_by_func (priv->connection, connection_vpn_state_changed_cb, vpn); g_signal_handlers_disconnect_by_func (priv->connection, connection_removed_cb, vpn); g_signal_handlers_disconnect_by_func (priv->connection, connection_changed_cb, vpn); g_object_unref (priv->connection); g_free (priv->service_type); g_clear_object (&priv->builder); G_OBJECT_CLASS (net_vpn_parent_class)->finalize (object); } static void net_vpn_class_init (NetVpnClass *klass) { GParamSpec *pspec; GObjectClass *object_class = G_OBJECT_CLASS (klass); NetObjectClass *parent_class = NET_OBJECT_CLASS (klass); object_class->get_property = net_vpn_get_property; object_class->set_property = net_vpn_set_property; object_class->constructed = net_vpn_constructed; object_class->finalize = net_vpn_finalize; parent_class->add_to_notebook = vpn_proxy_add_to_notebook; parent_class->delete = vpn_proxy_delete; parent_class->refresh = vpn_proxy_refresh; parent_class->edit = vpn_proxy_edit; pspec = g_param_spec_object ("connection", NULL, NULL, NM_TYPE_CONNECTION, G_PARAM_READWRITE | G_PARAM_CONSTRUCT); g_object_class_install_property (object_class, PROP_CONNECTION, pspec); g_type_class_add_private (klass, sizeof (NetVpnPrivate)); } static void net_vpn_init (NetVpn *vpn) { GError *error = NULL; GtkWidget *widget; vpn->priv = NET_VPN_GET_PRIVATE (vpn); vpn->priv->builder = gtk_builder_new (); gtk_builder_add_from_resource (vpn->priv->builder, "/org/cinnamon/control-center/network/network-vpn.ui", &error); if (error != NULL) { g_warning ("Could not load interface file: %s", error->message); g_error_free (error); return; } widget = GTK_WIDGET (gtk_builder_get_object (vpn->priv->builder, "device_off_switch")); g_signal_connect (widget, "notify::active", G_CALLBACK (device_off_toggled), vpn); widget = GTK_WIDGET (gtk_builder_get_object (vpn->priv->builder, "button_options")); g_signal_connect (widget, "clicked", G_CALLBACK (edit_connection), vpn); } cinnamon-control-center-6.2.0/panels/network/net-device-mobile.c0000664000175000017500000011116414632072346023623 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2011-2012 Richard Hughes * Copyright (C) 2013 Aleksander Morgado * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "config.h" #include #include #include #include #include #include "panel-common.h" #include "network-dialogs.h" #include "net-device-mobile.h" #define NET_DEVICE_MOBILE_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), NET_TYPE_DEVICE_MOBILE, NetDeviceMobilePrivate)) static void nm_device_mobile_refresh_ui (NetDeviceMobile *device_mobile); struct _NetDeviceMobilePrivate { GtkBuilder *builder; gboolean updating_device; /* Old MM < 0.7 support */ GDBusProxy *gsm_proxy; GDBusProxy *cdma_proxy; /* New MM >= 0.7 support */ MMObject *mm_object; guint operator_name_updated; NMAMobileProvidersDatabase *mpd; }; enum { COLUMN_ID, COLUMN_TITLE, COLUMN_LAST }; enum { PROP_0, PROP_MODEM_OBJECT, PROP_LAST }; G_DEFINE_TYPE (NetDeviceMobile, net_device_mobile, NET_TYPE_DEVICE) static GtkWidget * device_mobile_proxy_add_to_notebook (NetObject *object, GtkNotebook *notebook, GtkSizeGroup *heading_size_group) { GtkWidget *widget; NetDeviceMobile *device_mobile = NET_DEVICE_MOBILE (object); /* add widgets to size group */ widget = GTK_WIDGET (gtk_builder_get_object (device_mobile->priv->builder, "heading_imei")); gtk_size_group_add_widget (heading_size_group, widget); widget = GTK_WIDGET (gtk_builder_get_object (device_mobile->priv->builder, "heading_network")); gtk_size_group_add_widget (heading_size_group, widget); widget = GTK_WIDGET (gtk_builder_get_object (device_mobile->priv->builder, "vbox7")); gtk_notebook_append_page (notebook, widget, NULL); return widget; } static void connection_activate_cb (GObject *source_object, GAsyncResult *res, gpointer user_data) { GError *error = NULL; if (!nm_client_activate_connection_finish (NM_CLIENT (source_object), res, &error)) { /* failed to activate */ nm_device_mobile_refresh_ui (user_data); g_error_free (error); } } static void mobile_connection_changed_cb (GtkComboBox *combo_box, NetDeviceMobile *device_mobile) { gboolean ret; gchar *object_path = NULL; GtkTreeIter iter; GtkTreeModel *model; NMConnection *connection; NMDevice *device; NMClient *client; CcNetworkPanel *panel; GtkWidget *toplevel; if (device_mobile->priv->updating_device) goto out; ret = gtk_combo_box_get_active_iter (combo_box, &iter); if (!ret) goto out; device = net_device_get_nm_device (NET_DEVICE (device_mobile)); if (device == NULL) goto out; client = net_object_get_client (NET_OBJECT (device_mobile)); /* get entry */ model = gtk_combo_box_get_model (GTK_COMBO_BOX (combo_box)); gtk_tree_model_get (model, &iter, COLUMN_ID, &object_path, -1); if (g_strcmp0 (object_path, NULL) == 0) { panel = net_object_get_panel (NET_OBJECT (device_mobile)); toplevel = cc_shell_get_toplevel (cc_panel_get_shell (CC_PANEL (panel))); cc_network_panel_connect_to_3g_network (toplevel, client, device); goto out; } /* activate the connection */ g_debug ("try to switch to connection %s", object_path); connection = (NMConnection*) nm_client_get_connection_by_path (client, object_path); if (connection != NULL) { nm_device_disconnect (device, NULL, NULL); nm_client_activate_connection_async (client, connection, device, NULL, NULL, connection_activate_cb, device_mobile); goto out; } out: g_free (object_path); } static void mobilebb_enabled_toggled (NMClient *client, GParamSpec *pspec, NetDeviceMobile *device_mobile) { gboolean enabled = FALSE; GtkSwitch *sw; NMDevice *device; device = net_device_get_nm_device (NET_DEVICE (device_mobile)); if (nm_device_get_device_type (device) != NM_DEVICE_TYPE_MODEM) return; if (nm_client_wwan_get_enabled (client)) { NMDeviceState state; state = nm_device_get_state (device); if (state == NM_DEVICE_STATE_UNKNOWN || state == NM_DEVICE_STATE_UNMANAGED || state == NM_DEVICE_STATE_UNAVAILABLE || state == NM_DEVICE_STATE_DISCONNECTED || state == NM_DEVICE_STATE_DEACTIVATING || state == NM_DEVICE_STATE_FAILED) { enabled = FALSE; } else { enabled = TRUE; } } sw = GTK_SWITCH (gtk_builder_get_object (device_mobile->priv->builder, "device_off_switch")); device_mobile->priv->updating_device = TRUE; gtk_switch_set_active (sw, enabled); device_mobile->priv->updating_device = FALSE; } static void device_add_device_connections (NetDeviceMobile *device_mobile, NMDevice *nm_device, GtkListStore *liststore, GtkComboBox *combobox) { NetDeviceMobilePrivate *priv = device_mobile->priv; GSList *list, *l; GtkTreeIter treeiter; NMActiveConnection *active_connection; NMConnection *connection; /* get the list of available connections for this device */ list = net_device_get_valid_connections (NET_DEVICE (device_mobile)); gtk_list_store_clear (liststore); active_connection = nm_device_get_active_connection (nm_device); for (l = list; l; l = g_slist_next (l)) { connection = NM_CONNECTION (l->data); gtk_list_store_append (liststore, &treeiter); gtk_list_store_set (liststore, &treeiter, COLUMN_ID, nm_connection_get_uuid (connection), COLUMN_TITLE, nm_connection_get_id (connection), -1); /* is this already activated? */ if (active_connection != NULL && g_strcmp0 (nm_connection_get_uuid (connection), nm_active_connection_get_uuid (active_connection)) == 0) { priv->updating_device = TRUE; gtk_combo_box_set_active_iter (combobox, &treeiter); priv->updating_device = FALSE; } } /* add new connection entry */ gtk_list_store_append (liststore, &treeiter); gtk_list_store_set (liststore, &treeiter, COLUMN_ID, NULL, COLUMN_TITLE, _("Add new connection"), -1); g_slist_free (list); } static void device_mobile_refresh_equipment_id (NetDeviceMobile *device_mobile) { const gchar *equipment_id = NULL; if (device_mobile->priv->mm_object != NULL) { MMModem *modem; /* Modem interface should always be present */ modem = mm_object_peek_modem (device_mobile->priv->mm_object); equipment_id = mm_modem_get_equipment_identifier (modem); /* Set equipment ID */ if (equipment_id != NULL) { g_debug ("[%s] Equipment ID set to '%s'", mm_object_get_path (device_mobile->priv->mm_object), equipment_id); } } else { /* Assume old MM handling */ equipment_id = g_object_get_data (G_OBJECT (device_mobile), "ControlCenter::EquipmentIdentifier"); } panel_set_device_widget_details (device_mobile->priv->builder, "imei", equipment_id); } static gchar * device_mobile_find_provider (NetDeviceMobile *device_mobile, const gchar *mccmnc, guint32 sid) { NMAMobileProvider *provider; GString *name = NULL; if (device_mobile->priv->mpd == NULL) { GError *error = NULL; /* Use defaults */ device_mobile->priv->mpd = nma_mobile_providers_database_new_sync (NULL, NULL, NULL, &error); if (device_mobile->priv->mpd == NULL) { g_debug ("Couldn't load mobile providers database: %s", error ? error->message : ""); g_clear_error (&error); return NULL; } } if (mccmnc != NULL) { provider = nma_mobile_providers_database_lookup_3gpp_mcc_mnc (device_mobile->priv->mpd, mccmnc); if (provider != NULL) name = g_string_new (nma_mobile_provider_get_name (provider)); } if (sid != 0) { provider = nma_mobile_providers_database_lookup_cdma_sid (device_mobile->priv->mpd, sid); if (provider != NULL) { if (name == NULL) name = g_string_new (nma_mobile_provider_get_name (provider)); else g_string_append_printf (name, ", %s", nma_mobile_provider_get_name (provider)); } } return (name != NULL ? g_string_free (name, FALSE) : NULL); } static void device_mobile_refresh_operator_name (NetDeviceMobile *device_mobile) { if (device_mobile->priv->mm_object != NULL) { gchar *operator_name = NULL; MMModem3gpp *modem_3gpp; MMModemCdma *modem_cdma; modem_3gpp = mm_object_peek_modem_3gpp (device_mobile->priv->mm_object); modem_cdma = mm_object_peek_modem_cdma (device_mobile->priv->mm_object); if (modem_3gpp != NULL) { const gchar *operator_name_unsafe; operator_name_unsafe = mm_modem_3gpp_get_operator_name (modem_3gpp); if (operator_name_unsafe != NULL && operator_name_unsafe[0] != '\0') operator_name = g_strescape (operator_name_unsafe, NULL); } /* If not directly given in the 3GPP interface, try to guess from * MCCMNC/SID */ if (operator_name == NULL) { const gchar *mccmnc = NULL; guint32 sid = 0; if (modem_3gpp != NULL) mccmnc = mm_modem_3gpp_get_operator_code (modem_3gpp); if (modem_cdma != NULL) sid = mm_modem_cdma_get_sid (modem_cdma); operator_name = device_mobile_find_provider (device_mobile, mccmnc, sid); } /* Set operator name */ if (operator_name != NULL) { g_debug ("[%s] Operator name set to '%s'", mm_object_get_path (device_mobile->priv->mm_object), operator_name); } panel_set_device_widget_details (device_mobile->priv->builder, "provider", operator_name); g_free (operator_name); } else { const gchar *gsm; const gchar *cdma; /* Assume old MM handling */ gsm = g_object_get_data (G_OBJECT (device_mobile), "ControlCenter::OperatorNameGsm"); cdma = g_object_get_data (G_OBJECT (device_mobile), "ControlCenter::OperatorNameCdma"); if (gsm != NULL && cdma != NULL) { gchar *both; both = g_strdup_printf ("%s, %s", gsm, cdma); panel_set_device_widget_details (device_mobile->priv->builder, "provider", both); g_free (both); } else if (gsm != NULL) { panel_set_device_widget_details (device_mobile->priv->builder, "provider", gsm); } else if (cdma != NULL) { panel_set_device_widget_details (device_mobile->priv->builder, "provider", cdma); } else { panel_set_device_widget_details (device_mobile->priv->builder, "provider", NULL); } } } static void nm_device_mobile_refresh_ui (NetDeviceMobile *device_mobile) { gboolean is_connected; GtkListStore *liststore; GtkWidget *widget; NetDeviceMobilePrivate *priv = device_mobile->priv; NMClient *client; NMDeviceModemCapabilities caps; NMDevice *nm_device; nm_device = net_device_get_nm_device (NET_DEVICE (device_mobile)); /* set device kind */ widget = GTK_WIDGET (gtk_builder_get_object (device_mobile->priv->builder, "label_device")); g_object_bind_property (device_mobile, "title", widget, "label", 0); /* set up the device on/off switch */ widget = GTK_WIDGET (gtk_builder_get_object (device_mobile->priv->builder, "device_off_switch")); gtk_widget_show (widget); client = net_object_get_client (NET_OBJECT (device_mobile)); mobilebb_enabled_toggled (client, NULL, device_mobile); /* set device state, with status */ panel_set_device_status (device_mobile->priv->builder, "label_status", nm_device, NULL); /* sensitive for other connection types if the device is currently connected */ widget = GTK_WIDGET (gtk_builder_get_object (device_mobile->priv->builder, "button_options")); is_connected = net_device_get_find_connection (NET_DEVICE (device_mobile)) != NULL; gtk_widget_set_sensitive (widget, is_connected); caps = nm_device_modem_get_current_capabilities (NM_DEVICE_MODEM (nm_device)); if ((caps & NM_DEVICE_MODEM_CAPABILITY_GSM_UMTS) || (caps & NM_DEVICE_MODEM_CAPABILITY_CDMA_EVDO) || (caps & NM_DEVICE_MODEM_CAPABILITY_LTE)) { device_mobile_refresh_operator_name (device_mobile); device_mobile_refresh_equipment_id (device_mobile); } /* add possible connections to device */ liststore = GTK_LIST_STORE (gtk_builder_get_object (priv->builder, "liststore_mobile_connections")); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "combobox_network")); device_add_device_connections (device_mobile, nm_device, liststore, GTK_COMBO_BOX (widget)); /* set IP entries */ panel_set_device_widgets (priv->builder, nm_device); } static void device_mobile_refresh (NetObject *object) { NetDeviceMobile *device_mobile = NET_DEVICE_MOBILE (object); nm_device_mobile_refresh_ui (device_mobile); } static void device_off_toggled (GtkSwitch *sw, GParamSpec *pspec, NetDeviceMobile *device_mobile) { const GPtrArray *acs; gboolean active; gint i; NMActiveConnection *a; NMConnection *connection; NMClient *client; if (device_mobile->priv->updating_device) return; active = gtk_switch_get_active (sw); if (active) { client = net_object_get_client (NET_OBJECT (device_mobile)); connection = net_device_get_find_connection (NET_DEVICE (device_mobile)); if (connection == NULL) return; nm_client_activate_connection_async (client, connection, net_device_get_nm_device (NET_DEVICE (device_mobile)), NULL, NULL, NULL, NULL); } else { const gchar *uuid; connection = net_device_get_find_connection (NET_DEVICE (device_mobile)); if (connection == NULL) return; uuid = nm_connection_get_uuid (connection); client = net_object_get_client (NET_OBJECT (device_mobile)); acs = nm_client_get_active_connections (client); for (i = 0; acs && i < acs->len; i++) { a = (NMActiveConnection*)acs->pdata[i]; if (strcmp (nm_active_connection_get_uuid (a), uuid) == 0) { nm_client_deactivate_connection (client, a, NULL, NULL); break; } } } } static void edit_connection (GtkButton *button, NetDeviceMobile *device_mobile) { net_object_edit (NET_OBJECT (device_mobile)); } static void device_mobile_device_got_modem_manager_cb (GObject *source_object, GAsyncResult *res, gpointer user_data) { GError *error = NULL; GVariant *result = NULL; GDBusProxy *proxy; NetDeviceMobile *device_mobile = (NetDeviceMobile *)user_data; proxy = g_dbus_proxy_new_for_bus_finish (res, &error); if (!proxy) { g_warning ("Error creating ModemManager proxy: %s", error->message); g_error_free (error); return; } /* get the IMEI */ result = g_dbus_proxy_get_cached_property (proxy, "EquipmentIdentifier"); /* save */ if (result) { g_object_set_data_full (G_OBJECT (device_mobile), "ControlCenter::EquipmentIdentifier", g_variant_dup_string (result, NULL), g_free); g_variant_unref (result); } device_mobile_refresh_equipment_id (device_mobile); g_object_unref (proxy); } static void device_mobile_save_operator_name (NetDeviceMobile *device_mobile, const gchar *field, const gchar *operator_name) { gchar *operator_name_safe = NULL; if (operator_name != NULL && operator_name[0] != '\0') operator_name_safe = g_strescape (operator_name, NULL); /* save */ g_object_set_data_full (G_OBJECT (device_mobile), field, operator_name_safe, g_free); /* refresh */ device_mobile_refresh_operator_name (device_mobile); } static void device_mobile_get_registration_info_cb (GObject *source_object, GAsyncResult *res, gpointer user_data) { gchar *operator_code = NULL; GError *error = NULL; guint registration_status; GVariant *result = NULL; gchar *operator_name = NULL; NetDeviceMobile *device_mobile = (NetDeviceMobile *)user_data; result = g_dbus_proxy_call_finish (G_DBUS_PROXY (source_object), res, &error); if (result == NULL) { g_warning ("Error getting registration info: %s\n", error->message); g_error_free (error); return; } /* get values */ g_variant_get (result, "((uss))", ®istration_status, &operator_code, &operator_name); /* If none give, try to guess it */ if (operator_name == NULL || operator_name[0] == '\0') { g_free (operator_name); operator_name = device_mobile_find_provider (device_mobile, operator_code, 0); } /* save and refresh */ device_mobile_save_operator_name (device_mobile, "ControlCenter::OperatorNameGsm", operator_name); g_free (operator_name); g_free (operator_code); g_variant_unref (result); } static void device_mobile_gsm_signal_cb (GDBusProxy *proxy, gchar *sender_name, gchar *signal_name, GVariant *parameters, gpointer user_data) { guint registration_status = 0; gchar *operator_code = NULL; gchar *operator_name = NULL; NetDeviceMobile *device_mobile = (NetDeviceMobile *)user_data; if (!g_str_equal (signal_name, "RegistrationInfo")) return; g_variant_get (parameters, "(uss)", ®istration_status, &operator_code, &operator_name); /* If none given, try to guess it */ if (operator_name == NULL || operator_name[0] == '\0') { g_free (operator_name); operator_name = device_mobile_find_provider (device_mobile, operator_code, 0); } /* save and refresh */ device_mobile_save_operator_name (device_mobile, "ControlCenter::OperatorNameGsm", operator_name); g_free (operator_code); g_free (operator_name); } static void device_mobile_device_got_modem_manager_gsm_cb (GObject *source_object, GAsyncResult *res, gpointer user_data) { GError *error = NULL; NetDeviceMobile *device_mobile = (NetDeviceMobile *)user_data; device_mobile->priv->gsm_proxy = g_dbus_proxy_new_for_bus_finish (res, &error); if (device_mobile->priv->gsm_proxy == NULL) { g_warning ("Error creating ModemManager GSM proxy: %s\n", error->message); g_error_free (error); return; } /* Setup value updates */ g_signal_connect (device_mobile->priv->gsm_proxy, "g-signal", G_CALLBACK (device_mobile_gsm_signal_cb), device_mobile); /* Load initial value */ g_dbus_proxy_call (device_mobile->priv->gsm_proxy, "GetRegistrationInfo", NULL, G_DBUS_CALL_FLAGS_NONE, -1, NULL, device_mobile_get_registration_info_cb, device_mobile); } static void device_mobile_get_serving_system_cb (GObject *source_object, GAsyncResult *res, gpointer user_data) { NetDeviceMobile *device_mobile = (NetDeviceMobile *)user_data; GVariant *result = NULL; GError *error = NULL; guint32 band_class; gchar *band; guint32 sid; gchar *operator_name; result = g_dbus_proxy_call_finish (G_DBUS_PROXY (source_object), res, &error); if (result == NULL) { g_warning ("Error getting serving system: %s\n", error->message); g_error_free (error); return; } /* get values */ g_variant_get (result, "((usu))", &band_class, &band, &sid); operator_name = device_mobile_find_provider (device_mobile, NULL, sid); /* save and refresh */ device_mobile_save_operator_name (device_mobile, "ControlCenter::OperatorNameCdma", operator_name); g_free (band); g_variant_unref (result); } static void device_mobile_device_got_modem_manager_cdma_cb (GObject *source_object, GAsyncResult *res, gpointer user_data) { GError *error = NULL; NetDeviceMobile *device_mobile = (NetDeviceMobile *)user_data; device_mobile->priv->cdma_proxy = g_dbus_proxy_new_for_bus_finish (res, &error); if (device_mobile->priv->cdma_proxy == NULL) { g_warning ("Error creating ModemManager CDMA proxy: %s\n", error->message); g_error_free (error); return; } /* Load initial value */ g_dbus_proxy_call (device_mobile->priv->cdma_proxy, "GetServingSystem", NULL, G_DBUS_CALL_FLAGS_NONE, -1, NULL, device_mobile_get_serving_system_cb, device_mobile); } static void net_device_mobile_constructed (GObject *object) { GCancellable *cancellable; NetDeviceMobile *device_mobile = NET_DEVICE_MOBILE (object); NMClient *client; NMDevice *device; NMDeviceModemCapabilities caps; G_OBJECT_CLASS (net_device_mobile_parent_class)->constructed (object); device = net_device_get_nm_device (NET_DEVICE (device_mobile)); cancellable = net_object_get_cancellable (NET_OBJECT (device_mobile)); caps = nm_device_modem_get_current_capabilities (NM_DEVICE_MODEM (device)); /* Only load proxies if we have broadband modems of the OLD ModemManager interface */ if (g_str_has_prefix (nm_device_get_udi (device), "/org/freedesktop/ModemManager/") && ((caps & NM_DEVICE_MODEM_CAPABILITY_GSM_UMTS) || (caps & NM_DEVICE_MODEM_CAPABILITY_CDMA_EVDO) || (caps & NM_DEVICE_MODEM_CAPABILITY_LTE))) { g_dbus_proxy_new_for_bus (G_BUS_TYPE_SYSTEM, G_DBUS_PROXY_FLAGS_NONE, NULL, "org.freedesktop.ModemManager", nm_device_get_udi (device), "org.freedesktop.ModemManager.Modem", cancellable, device_mobile_device_got_modem_manager_cb, device_mobile); if ((caps & NM_DEVICE_MODEM_CAPABILITY_GSM_UMTS) || (caps & NM_DEVICE_MODEM_CAPABILITY_LTE)) { g_dbus_proxy_new_for_bus (G_BUS_TYPE_SYSTEM, G_DBUS_PROXY_FLAGS_NONE, NULL, "org.freedesktop.ModemManager", nm_device_get_udi (device), "org.freedesktop.ModemManager.Modem.Gsm.Network", cancellable, device_mobile_device_got_modem_manager_gsm_cb, device_mobile); } if (caps & NM_DEVICE_MODEM_CAPABILITY_CDMA_EVDO) { g_dbus_proxy_new_for_bus (G_BUS_TYPE_SYSTEM, G_DBUS_PROXY_FLAGS_NONE, NULL, "org.freedesktop.ModemManager", nm_device_get_udi (device), "org.freedesktop.ModemManager.Modem.Cdma", cancellable, device_mobile_device_got_modem_manager_cdma_cb, device_mobile); } } client = net_object_get_client (NET_OBJECT (device_mobile)); g_signal_connect_object (client, "notify::wwan-enabled", G_CALLBACK (mobilebb_enabled_toggled), device_mobile, 0); nm_device_mobile_refresh_ui (device_mobile); } static void operator_name_updated (MMModem3gpp *modem_3gpp_iface, GParamSpec *pspec, NetDeviceMobile *self) { device_mobile_refresh_operator_name (self); } static void net_device_mobile_setup_modem_object (NetDeviceMobile *self) { MMModem3gpp *modem_3gpp; if (self->priv->mm_object == NULL) return; /* Load equipment ID initially */ device_mobile_refresh_equipment_id (self); /* Follow changes in operator name and load initial values */ modem_3gpp = mm_object_peek_modem_3gpp (self->priv->mm_object); if (modem_3gpp != NULL) { g_assert (self->priv->operator_name_updated == 0); self->priv->operator_name_updated = g_signal_connect (modem_3gpp, "notify::operator-name", G_CALLBACK (operator_name_updated), self); device_mobile_refresh_operator_name (self); } } static void net_device_mobile_get_property (GObject *device_, guint prop_id, GValue *value, GParamSpec *pspec) { NetDeviceMobile *self = NET_DEVICE_MOBILE (device_); switch (prop_id) { case PROP_MODEM_OBJECT: g_value_set_object (value, self->priv->mm_object); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (self, prop_id, pspec); break; } } static void net_device_mobile_set_property (GObject *device_, guint prop_id, const GValue *value, GParamSpec *pspec) { NetDeviceMobile *self = NET_DEVICE_MOBILE (device_); switch (prop_id) { case PROP_MODEM_OBJECT: self->priv->mm_object = g_value_dup_object (value); net_device_mobile_setup_modem_object (self); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (self, prop_id, pspec); break; } } static void net_device_mobile_dispose (GObject *object) { NetDeviceMobile *device_mobile = NET_DEVICE_MOBILE (object); NetDeviceMobilePrivate *priv = device_mobile->priv; g_clear_object (&priv->builder); g_clear_object (&priv->gsm_proxy); g_clear_object (&priv->cdma_proxy); if (priv->operator_name_updated) { g_assert (priv->mm_object != NULL); g_signal_handler_disconnect (mm_object_peek_modem_3gpp (priv->mm_object), priv->operator_name_updated); priv->operator_name_updated = 0; } g_clear_object (&priv->mm_object); g_clear_object (&priv->mpd); G_OBJECT_CLASS (net_device_mobile_parent_class)->dispose (object); } static void net_device_mobile_class_init (NetDeviceMobileClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); NetObjectClass *parent_class = NET_OBJECT_CLASS (klass); object_class->dispose = net_device_mobile_dispose; object_class->constructed = net_device_mobile_constructed; object_class->get_property = net_device_mobile_get_property; object_class->set_property = net_device_mobile_set_property; parent_class->add_to_notebook = device_mobile_proxy_add_to_notebook; parent_class->refresh = device_mobile_refresh; g_type_class_add_private (klass, sizeof (NetDeviceMobilePrivate)); g_object_class_install_property (object_class, PROP_MODEM_OBJECT, g_param_spec_object ("mm-object", NULL, NULL, MM_TYPE_OBJECT, G_PARAM_READWRITE)); } static void net_device_mobile_init (NetDeviceMobile *device_mobile) { GError *error = NULL; GtkWidget *widget; GtkCellRenderer *renderer; GtkComboBox *combobox; device_mobile->priv = NET_DEVICE_MOBILE_GET_PRIVATE (device_mobile); device_mobile->priv->builder = gtk_builder_new (); gtk_builder_add_from_resource (device_mobile->priv->builder, "/org/cinnamon/control-center/network/network-mobile.ui", &error); if (error != NULL) { g_warning ("Could not load interface file: %s", error->message); g_error_free (error); return; } /* setup mobile combobox model */ combobox = GTK_COMBO_BOX (gtk_builder_get_object (device_mobile->priv->builder, "combobox_network")); g_signal_connect (combobox, "changed", G_CALLBACK (mobile_connection_changed_cb), device_mobile); renderer = gtk_cell_renderer_text_new (); gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combobox), renderer, FALSE); gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combobox), renderer, "text", COLUMN_TITLE, NULL); widget = GTK_WIDGET (gtk_builder_get_object (device_mobile->priv->builder, "device_off_switch")); g_signal_connect (widget, "notify::active", G_CALLBACK (device_off_toggled), device_mobile); widget = GTK_WIDGET (gtk_builder_get_object (device_mobile->priv->builder, "button_options")); g_signal_connect (widget, "clicked", G_CALLBACK (edit_connection), device_mobile); } cinnamon-control-center-6.2.0/panels/network/net-device-mobile.h0000664000175000017500000000430014632072346023621 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2011-2012 Richard Hughes * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __NET_DEVICE_MOBILE_H #define __NET_DEVICE_MOBILE_H #include #include #include "net-device.h" G_BEGIN_DECLS #define NET_TYPE_DEVICE_MOBILE (net_device_mobile_get_type ()) #define NET_DEVICE_MOBILE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), NET_TYPE_DEVICE_MOBILE, NetDeviceMobile)) #define NET_DEVICE_MOBILE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), NET_TYPE_DEVICE_MOBILE, NetDeviceMobileClass)) #define NET_IS_DEVICE_MOBILE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), NET_TYPE_DEVICE_MOBILE)) #define NET_IS_DEVICE_MOBILE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), NET_TYPE_DEVICE_MOBILE)) #define NET_DEVICE_MOBILE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), NET_TYPE_DEVICE_MOBILE, NetDeviceMobileClass)) typedef struct _NetDeviceMobilePrivate NetDeviceMobilePrivate; typedef struct _NetDeviceMobile NetDeviceMobile; typedef struct _NetDeviceMobileClass NetDeviceMobileClass; struct _NetDeviceMobile { NetDevice parent; NetDeviceMobilePrivate *priv; }; struct _NetDeviceMobileClass { NetDeviceClass parent_class; }; GType net_device_mobile_get_type (void); G_END_DECLS #endif /* __NET_DEVICE_MOBILE_H */ cinnamon-control-center-6.2.0/panels/network/network-simple.ui0000664000175000017500000004312314632072346023505 0ustar fabiofabio True False 12 6 True False start vertical 10 6 True False end start 1 48 network-wired 6 0 0 1 1 True False start True 3 True False 0 Wired end False False 0 True False 0 Cable unplugged False False 1 1 0 1 1 True False 20 vertical 10 6 True True False 1 Hardware Address label_mac 0 0 1 1 True False 1 IPv4 Address label_ipv4 0 1 1 1 True False 1 0 IPv6 Address label_ipv6 0 2 1 1 True False 1 Default Route label_route 0 3 1 1 True False 1 0 DNS4 label_dns4 0 4 1 1 True False 1 0 DNS6 label_dns6 0 5 1 1 True True 0 AA:BB:CC:DD:55:66:77:88 True 1 0 1 1 True True 0 127.0.0.1 True 1 1 1 1 True True 0 ::1 True 1 2 1 1 True True 0 127.0.0.1 True 1 3 1 1 True True 0 0 127.0.0.1 True True 1 4 1 1 True True 0 0 ::1 True True 1 5 1 1 0 1 3 1 True True end center Turn device off 2 0 1 1 True True 0 True False 12 vertical True True True end end True True True True False emblem-system-symbolic 1 Options… False True 0 True True 1 cinnamon-control-center-6.2.0/panels/network/network-dialogs.c0000664000175000017500000004255014632072346023446 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2011 Giovanni Campagna * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Portions of this code were taken from network-manager-applet. * Copyright 2008 - 2011 Red Hat, Inc. */ #include #include #include #include #include "network-dialogs.h" typedef struct { NMClient *client; } WirelessDialogClosure; typedef struct { NMClient *client; NMDevice *device; } MobileDialogClosure; static void wireless_dialog_closure_closure_notify (gpointer data, GClosure *gclosure) { WirelessDialogClosure *closure = data; g_object_unref (closure->client); g_slice_free (WirelessDialogClosure, data); } static void mobile_dialog_closure_free (gpointer data) { MobileDialogClosure *closure = data; g_object_unref (closure->client); g_object_unref (closure->device); g_slice_free (MobileDialogClosure, data); } static gboolean wifi_can_create_wifi_network (NMClient *client) { NMClientPermissionResult perm; /* FIXME: check WIFI_SHARE_PROTECTED too, and make the wireless dialog * handle the permissions as well so that admins can restrict open network * creation separately from protected network creation. */ perm = nm_client_get_permission_result (client, NM_CLIENT_PERMISSION_WIFI_SHARE_OPEN); if (perm == NM_CLIENT_PERMISSION_RESULT_YES || perm == NM_CLIENT_PERMISSION_RESULT_AUTH) return TRUE; return FALSE; } static void activate_existing_cb (GObject *source_object, GAsyncResult *res, gpointer user_data) { GError *error = NULL; if (!nm_client_activate_connection_finish (NM_CLIENT (source_object), res, &error)) { g_warning ("Failed to activate connection: (%d) %s", error->code, error->message); g_error_free (error); } } static void activate_new_cb (GObject *source_object, GAsyncResult *res, gpointer user_data) { GError *error = NULL; if (!nm_client_add_and_activate_connection_finish (NM_CLIENT (source_object), res, &error)) { g_warning ("Failed to add new connection: (%d) %s", error->code, error->message); g_error_free (error); } } static void wireless_dialog_response_cb (GtkDialog *foo, gint response, gpointer user_data) { NMAWifiDialog *dialog = NMA_WIFI_DIALOG (foo); WirelessDialogClosure *closure = user_data; NMConnection *connection, *fuzzy_match = NULL; NMDevice *device; NMAccessPoint *ap; const GPtrArray *all; guint i; if (response != GTK_RESPONSE_OK) goto done; /* nma_wifi_dialog_get_connection() returns a connection with the * refcount incremented, so the caller must remember to unref it. */ connection = nma_wifi_dialog_get_connection (dialog, &device, &ap); g_assert (connection); g_assert (device); /* Find a similar connection and use that instead */ all = nm_client_get_connections (closure->client); for (i = 0; i < all->len; i++) { if (nm_connection_compare (connection, NM_CONNECTION (g_ptr_array_index (all, i)), (NM_SETTING_COMPARE_FLAG_FUZZY | NM_SETTING_COMPARE_FLAG_IGNORE_ID))) { fuzzy_match = NM_CONNECTION (g_ptr_array_index (all, i)); break; } } if (fuzzy_match) { nm_client_activate_connection_async (closure->client, fuzzy_match, device, ap ? nm_object_get_path (NM_OBJECT (ap)) : NULL, NULL, activate_existing_cb, NULL); } else { NMSetting *s_con; NMSettingWireless *s_wifi; const char *mode = NULL; /* Entirely new connection */ /* Don't autoconnect adhoc networks by default for now */ s_wifi = (NMSettingWireless *) nm_connection_get_setting (connection, NM_TYPE_SETTING_WIRELESS); if (s_wifi) mode = nm_setting_wireless_get_mode (s_wifi); if (g_strcmp0 (mode, "adhoc") == 0) { s_con = nm_connection_get_setting (connection, NM_TYPE_SETTING_CONNECTION); if (!s_con) { s_con = nm_setting_connection_new (); nm_connection_add_setting (connection, s_con); } g_object_set (G_OBJECT (s_con), NM_SETTING_CONNECTION_AUTOCONNECT, FALSE, NULL); } nm_client_add_and_activate_connection_async (closure->client, connection, device, ap ? nm_object_get_path (NM_OBJECT (ap)) : NULL, NULL, activate_new_cb, NULL); } /* Balance nma_wifi_dialog_get_connection() */ g_object_unref (connection); done: gtk_widget_hide (GTK_WIDGET (dialog)); gtk_widget_destroy (GTK_WIDGET (dialog)); } static void show_wireless_dialog (GtkWidget *toplevel, NMClient *client, GtkWidget *dialog) { WirelessDialogClosure *closure; g_debug ("About to parent and show a network dialog"); //g_assert (gtk_widget_is_toplevel (toplevel)); g_object_set (G_OBJECT (dialog), "modal", TRUE, "transient-for", toplevel, NULL); closure = g_slice_new (WirelessDialogClosure); closure->client = g_object_ref (client); g_signal_connect_data (dialog, "response", G_CALLBACK (wireless_dialog_response_cb), closure, wireless_dialog_closure_closure_notify, 0); g_object_bind_property (G_OBJECT (toplevel), "visible", G_OBJECT (dialog), "visible", G_BINDING_SYNC_CREATE); } void cc_network_panel_create_wifi_network (GtkWidget *toplevel, NMClient *client) { if (wifi_can_create_wifi_network (client)) { show_wireless_dialog (toplevel, client, nma_wifi_dialog_new_for_create (client)); } } void cc_network_panel_connect_to_hidden_network (GtkWidget *toplevel, NMClient *client) { g_debug ("connect to hidden wifi"); show_wireless_dialog (toplevel, client, nma_wifi_dialog_new_for_hidden (client)); } void cc_network_panel_connect_to_8021x_network (GtkWidget *toplevel, NMClient *client, NMDevice *device, const gchar *arg_access_point) { NMConnection *connection; NMSettingConnection *s_con; NMSettingWireless *s_wifi; NMSettingWirelessSecurity *s_wsec; NMSetting8021x *s_8021x; NM80211ApSecurityFlags wpa_flags, rsn_flags; GtkWidget *dialog; char *uuid; NMAccessPoint *ap; g_debug ("connect to 8021x wifi"); ap = nm_device_wifi_get_access_point_by_path (NM_DEVICE_WIFI (device), arg_access_point); if (ap == NULL) { g_warning ("didn't find access point with path %s", arg_access_point); return; } /* If the AP is WPA[2]-Enterprise then we need to set up a minimal 802.1x * setting and ask the user for more information. */ rsn_flags = nm_access_point_get_rsn_flags (ap); wpa_flags = nm_access_point_get_wpa_flags (ap); if (!(rsn_flags & NM_802_11_AP_SEC_KEY_MGMT_802_1X) && !(wpa_flags & NM_802_11_AP_SEC_KEY_MGMT_802_1X)) { g_warning ("Network panel loaded with connect-8021x-wifi but the " "access point does not support 802.1x"); return; } connection = nm_simple_connection_new (); /* Need a UUID for the "always ask" stuff in the Dialog of Doom */ s_con = (NMSettingConnection *) nm_setting_connection_new (); uuid = nm_utils_uuid_generate (); g_object_set (s_con, NM_SETTING_CONNECTION_UUID, uuid, NULL); g_free (uuid); nm_connection_add_setting (connection, NM_SETTING (s_con)); s_wifi = (NMSettingWireless *) nm_setting_wireless_new (); nm_connection_add_setting (connection, NM_SETTING (s_wifi)); g_object_set (s_wifi, NM_SETTING_WIRELESS_SSID, nm_access_point_get_ssid (ap), NULL); s_wsec = (NMSettingWirelessSecurity *) nm_setting_wireless_security_new (); g_object_set (s_wsec, NM_SETTING_WIRELESS_SECURITY_KEY_MGMT, "wpa-eap", NULL); nm_connection_add_setting (connection, NM_SETTING (s_wsec)); s_8021x = (NMSetting8021x *) nm_setting_802_1x_new (); nm_setting_802_1x_add_eap_method (s_8021x, "ttls"); g_object_set (s_8021x, NM_SETTING_802_1X_PHASE2_AUTH, "mschapv2", NULL); nm_connection_add_setting (connection, NM_SETTING (s_8021x)); dialog = nma_wifi_dialog_new (client, connection, device, ap, FALSE); show_wireless_dialog (toplevel, client, dialog); } static void connect_3g (NMConnection *connection, gboolean canceled, gpointer user_data) { MobileDialogClosure *closure = user_data; if (canceled == FALSE) { g_return_if_fail (connection != NULL); /* Ask NM to add the new connection and activate it; NM will fill in the * missing details based on the specific object and the device. */ nm_client_add_and_activate_connection_async (closure->client, connection, closure->device, "/", NULL, activate_new_cb, NULL); } mobile_dialog_closure_free (closure); } static void cdma_mobile_wizard_done (NMAMobileWizard *wizard, gboolean canceled, NMAMobileWizardAccessMethod *method, gpointer user_data) { NMConnection *connection = NULL; if (!canceled && method) { NMSetting *setting; char *uuid, *id; if (method->devtype != NM_DEVICE_MODEM_CAPABILITY_CDMA_EVDO) { g_warning ("Unexpected device type (not CDMA)."); canceled = TRUE; goto done; } connection = nm_simple_connection_new (); setting = nm_setting_cdma_new (); g_object_set (setting, NM_SETTING_CDMA_NUMBER, "#777", NM_SETTING_CDMA_USERNAME, method->username, NM_SETTING_CDMA_PASSWORD, method->password, NULL); nm_connection_add_setting (connection, setting); /* Default to IPv4 & IPv6 'automatic' addressing */ setting = nm_setting_ip4_config_new (); g_object_set (setting, NM_SETTING_IP_CONFIG_METHOD, NM_SETTING_IP4_CONFIG_METHOD_AUTO, NULL); nm_connection_add_setting (connection, setting); setting = nm_setting_ip6_config_new (); g_object_set (setting, NM_SETTING_IP_CONFIG_METHOD, NM_SETTING_IP6_CONFIG_METHOD_AUTO, NULL); nm_connection_add_setting (connection, setting); nm_connection_add_setting (connection, nm_setting_ppp_new ()); setting = nm_setting_connection_new (); if (method->plan_name) id = g_strdup_printf ("%s %s", method->provider_name, method->plan_name); else id = g_strdup_printf ("%s connection", method->provider_name); uuid = nm_utils_uuid_generate (); g_object_set (setting, NM_SETTING_CONNECTION_ID, id, NM_SETTING_CONNECTION_TYPE, NM_SETTING_CDMA_SETTING_NAME, NM_SETTING_CONNECTION_AUTOCONNECT, FALSE, NM_SETTING_CONNECTION_UUID, uuid, NULL); g_free (uuid); g_free (id); nm_connection_add_setting (connection, setting); } done: connect_3g (connection, canceled, user_data); nma_mobile_wizard_destroy (wizard); } static void gsm_mobile_wizard_done (NMAMobileWizard *wizard, gboolean canceled, NMAMobileWizardAccessMethod *method, gpointer user_data) { NMConnection *connection = NULL; if (!canceled && method) { NMSetting *setting; char *uuid, *id; if (method->devtype != NM_DEVICE_MODEM_CAPABILITY_GSM_UMTS) { g_warning ("Unexpected device type (not GSM)."); canceled = TRUE; goto done; } connection = nm_simple_connection_new (); setting = nm_setting_gsm_new (); g_object_set (setting, NM_SETTING_GSM_NUMBER, "*99#", NM_SETTING_GSM_USERNAME, method->username, NM_SETTING_GSM_PASSWORD, method->password, NM_SETTING_GSM_APN, method->gsm_apn, NULL); nm_connection_add_setting (connection, setting); /* Default to IPv4 & IPv6 'automatic' addressing */ setting = nm_setting_ip4_config_new (); g_object_set (setting, NM_SETTING_IP_CONFIG_METHOD, NM_SETTING_IP4_CONFIG_METHOD_AUTO, NULL); nm_connection_add_setting (connection, setting); setting = nm_setting_ip6_config_new (); g_object_set (setting, NM_SETTING_IP_CONFIG_METHOD, NM_SETTING_IP6_CONFIG_METHOD_AUTO, NULL); nm_connection_add_setting (connection, setting); nm_connection_add_setting (connection, nm_setting_ppp_new ()); setting = nm_setting_connection_new (); if (method->plan_name) id = g_strdup_printf ("%s %s", method->provider_name, method->plan_name); else id = g_strdup_printf ("%s connection", method->provider_name); uuid = nm_utils_uuid_generate (); g_object_set (setting, NM_SETTING_CONNECTION_ID, id, NM_SETTING_CONNECTION_TYPE, NM_SETTING_GSM_SETTING_NAME, NM_SETTING_CONNECTION_AUTOCONNECT, FALSE, NM_SETTING_CONNECTION_UUID, uuid, NULL); g_free (uuid); g_free (id); nm_connection_add_setting (connection, setting); } done: connect_3g (connection, canceled, user_data); nma_mobile_wizard_destroy (wizard); } static void toplevel_shown (GtkWindow *toplevel, GParamSpec *pspec, NMAMobileWizard *wizard) { gboolean visible = FALSE; g_object_get (G_OBJECT (toplevel), "visible", &visible, NULL); if (visible) nma_mobile_wizard_present (wizard); } static gboolean show_wizard_idle_cb (NMAMobileWizard *wizard) { nma_mobile_wizard_present (wizard); return FALSE; } void cc_network_panel_connect_to_3g_network (GtkWidget *toplevel, NMClient *client, NMDevice *device) { MobileDialogClosure *closure; NMAMobileWizard *wizard; NMDeviceModemCapabilities caps; gboolean visible = FALSE; g_debug ("connect to 3g"); if (!NM_IS_DEVICE_MODEM (device)) { g_warning ("Network panel loaded with connect-3g but the selected device" " is not a modem"); return; } closure = g_slice_new (MobileDialogClosure); closure->client = g_object_ref (client); closure->device = g_object_ref (device); g_type_ensure (NMA_TYPE_COUNTRY_INFO); g_type_ensure (NMA_TYPE_MOBILE_ACCESS_METHOD); g_type_ensure (NMA_TYPE_MOBILE_PROVIDER); caps = nm_device_modem_get_current_capabilities (NM_DEVICE_MODEM (device)); if (caps & NM_DEVICE_MODEM_CAPABILITY_GSM_UMTS) { wizard = nma_mobile_wizard_new (GTK_WINDOW (toplevel), NULL, NM_DEVICE_MODEM_CAPABILITY_GSM_UMTS, FALSE, gsm_mobile_wizard_done, closure); if (wizard == NULL) { g_warning ("failed to construct GSM wizard"); return; } } else if (caps & NM_DEVICE_MODEM_CAPABILITY_CDMA_EVDO) { wizard = nma_mobile_wizard_new (GTK_WINDOW (toplevel), NULL, NM_DEVICE_MODEM_CAPABILITY_CDMA_EVDO, FALSE, cdma_mobile_wizard_done, closure); if (wizard == NULL) { g_warning ("failed to construct CDMA wizard"); return; } } else { g_warning ("Network panel loaded with connect-3g but the selected device" " does not support GSM or CDMA"); mobile_dialog_closure_free (closure); return; } g_object_get (G_OBJECT (toplevel), "visible", &visible, NULL); if (visible) { g_debug ("Scheduling showing the Mobile wizard"); g_idle_add ((GSourceFunc) show_wizard_idle_cb, wizard); } else { g_debug ("Will show wizard a bit later, toplevel is not visible"); g_signal_connect (G_OBJECT (toplevel), "notify::visible", G_CALLBACK (toplevel_shown), wizard); } } cinnamon-control-center-6.2.0/panels/network/net-device-simple.c0000664000175000017500000002570514632072346023652 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2011-2012 Richard Hughes * Copyright (C) 2012 Red Hat, Inc. * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "config.h" #include #include #include #include "panel-common.h" #include "net-device-simple.h" #define NET_DEVICE_SIMPLE_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), NET_TYPE_DEVICE_SIMPLE, NetDeviceSimplePrivate)) struct _NetDeviceSimplePrivate { GtkBuilder *builder; gboolean updating_device; }; G_DEFINE_TYPE (NetDeviceSimple, net_device_simple, NET_TYPE_DEVICE) static GtkWidget * device_simple_proxy_add_to_notebook (NetObject *object, GtkNotebook *notebook, GtkSizeGroup *heading_size_group) { GtkWidget *widget; NetDeviceSimple *device_simple = NET_DEVICE_SIMPLE (object); /* add widgets to size group */ widget = GTK_WIDGET (gtk_builder_get_object (device_simple->priv->builder, "heading_ipv4")); gtk_size_group_add_widget (heading_size_group, widget); widget = GTK_WIDGET (gtk_builder_get_object (device_simple->priv->builder, "vbox6")); gtk_notebook_append_page (notebook, widget, NULL); return widget; } static void update_off_switch_from_device_state (GtkSwitch *sw, NMDeviceState state, NetDeviceSimple *device_simple) { device_simple->priv->updating_device = TRUE; switch (state) { case NM_DEVICE_STATE_UNMANAGED: case NM_DEVICE_STATE_UNAVAILABLE: case NM_DEVICE_STATE_DISCONNECTED: case NM_DEVICE_STATE_DEACTIVATING: case NM_DEVICE_STATE_FAILED: gtk_switch_set_active (sw, FALSE); break; default: gtk_switch_set_active (sw, TRUE); break; } device_simple->priv->updating_device = FALSE; } static void nm_device_simple_refresh_ui (NetDeviceSimple *device_simple) { NetDeviceSimplePrivate *priv = device_simple->priv; const char *hwaddr; GtkWidget *widget; char *speed = NULL; NMDevice *nm_device; NMDeviceState state; nm_device = net_device_get_nm_device (NET_DEVICE (device_simple)); /* set device kind */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "label_device")); g_object_bind_property (device_simple, "title", widget, "label", 0); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "image_device")); gtk_image_set_from_icon_name (GTK_IMAGE (widget), panel_device_to_icon_name (nm_device, FALSE), GTK_ICON_SIZE_DIALOG); /* set up the device on/off switch */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "device_off_switch")); state = nm_device_get_state (nm_device); gtk_widget_set_visible (widget, state != NM_DEVICE_STATE_UNAVAILABLE && state != NM_DEVICE_STATE_UNMANAGED); update_off_switch_from_device_state (GTK_SWITCH (widget), state, device_simple); /* set up the Options button */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "button_options")); gtk_widget_set_visible (widget, state != NM_DEVICE_STATE_UNMANAGED); /* set device state, with status and optionally speed */ if (state != NM_DEVICE_STATE_UNAVAILABLE) speed = net_device_simple_get_speed (device_simple); panel_set_device_status (priv->builder, "label_status", nm_device, speed); /* device MAC */ hwaddr = nm_device_get_hw_address (nm_device); panel_set_device_widget_details (priv->builder, "mac", hwaddr); /* set IP entries */ panel_set_device_widgets (priv->builder, nm_device); } static void device_simple_refresh (NetObject *object) { NetDeviceSimple *device_simple = NET_DEVICE_SIMPLE (object); nm_device_simple_refresh_ui (device_simple); } static void device_off_toggled (GtkSwitch *sw, GParamSpec *pspec, NetDeviceSimple *device_simple) { const GPtrArray *acs; gboolean active; gint i; NMActiveConnection *a; NMConnection *connection; NMClient *client; if (device_simple->priv->updating_device) return; active = gtk_switch_get_active (sw); if (active) { client = net_object_get_client (NET_OBJECT (device_simple)); connection = net_device_get_find_connection (NET_DEVICE (device_simple)); if (connection == NULL) return; nm_client_activate_connection_async (client, connection, net_device_get_nm_device (NET_DEVICE (device_simple)), NULL, NULL, NULL, NULL); } else { const gchar *uuid; connection = net_device_get_find_connection (NET_DEVICE (device_simple)); if (connection == NULL) return; uuid = nm_connection_get_uuid (connection); client = net_object_get_client (NET_OBJECT (device_simple)); acs = nm_client_get_active_connections (client); for (i = 0; acs && i < acs->len; i++) { a = (NMActiveConnection*)acs->pdata[i]; if (strcmp (nm_active_connection_get_uuid (a), uuid) == 0) { nm_client_deactivate_connection (client, a, NULL, NULL); break; } } } } static void edit_connection (GtkButton *button, NetDeviceSimple *device_simple) { net_object_edit (NET_OBJECT (device_simple)); } static void net_device_simple_constructed (GObject *object) { NetDeviceSimple *device_simple = NET_DEVICE_SIMPLE (object); G_OBJECT_CLASS (net_device_simple_parent_class)->constructed (object); net_object_refresh (NET_OBJECT (device_simple)); } static void net_device_simple_finalize (GObject *object) { NetDeviceSimple *device_simple = NET_DEVICE_SIMPLE (object); NetDeviceSimplePrivate *priv = device_simple->priv; g_object_unref (priv->builder); G_OBJECT_CLASS (net_device_simple_parent_class)->finalize (object); } static char * device_simple_get_speed (NetDeviceSimple *simple) { return NULL; } static void net_device_simple_class_init (NetDeviceSimpleClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); NetObjectClass *parent_class = NET_OBJECT_CLASS (klass); NetDeviceSimpleClass *simple_class = NET_DEVICE_SIMPLE_CLASS (klass); object_class->finalize = net_device_simple_finalize; object_class->constructed = net_device_simple_constructed; parent_class->add_to_notebook = device_simple_proxy_add_to_notebook; parent_class->refresh = device_simple_refresh; simple_class->get_speed = device_simple_get_speed; g_type_class_add_private (klass, sizeof (NetDeviceSimplePrivate)); } static void net_device_simple_init (NetDeviceSimple *device_simple) { GError *error = NULL; GtkWidget *widget; device_simple->priv = NET_DEVICE_SIMPLE_GET_PRIVATE (device_simple); device_simple->priv->builder = gtk_builder_new (); gtk_builder_add_from_resource (device_simple->priv->builder, "/org/cinnamon/control-center/network/network-simple.ui", &error); if (error != NULL) { g_warning ("Could not load interface file: %s", error->message); g_error_free (error); return; } /* setup simple combobox model */ widget = GTK_WIDGET (gtk_builder_get_object (device_simple->priv->builder, "device_off_switch")); g_signal_connect (widget, "notify::active", G_CALLBACK (device_off_toggled), device_simple); widget = GTK_WIDGET (gtk_builder_get_object (device_simple->priv->builder, "button_options")); g_signal_connect (widget, "clicked", G_CALLBACK (edit_connection), device_simple); } char * net_device_simple_get_speed (NetDeviceSimple *device_simple) { NetDeviceSimpleClass *klass = NET_DEVICE_SIMPLE_GET_CLASS (device_simple); return klass->get_speed (device_simple); } void net_device_simple_add_row (NetDeviceSimple *device_simple, const char *label_string, const char *property_name) { NetDeviceSimplePrivate *priv = device_simple->priv; GtkGrid *grid; GtkWidget *label, *value; GtkStyleContext *context; gint top_attach; grid = GTK_GRID (gtk_builder_get_object (priv->builder, "grid")); label = gtk_label_new (label_string); gtk_widget_set_halign (label, GTK_ALIGN_END); gtk_container_add (GTK_CONTAINER (grid), label); context = gtk_widget_get_style_context (label); gtk_style_context_add_class (context, "dim-label"); gtk_widget_show (label); gtk_container_child_get (GTK_CONTAINER (grid), label, "top-attach", &top_attach, NULL); value = gtk_label_new (NULL); gtk_widget_set_halign (value, GTK_ALIGN_START); g_object_bind_property (device_simple, property_name, value, "label", 0); gtk_label_set_mnemonic_widget (GTK_LABEL (label), value); gtk_grid_attach (grid, value, 1, top_attach, 1, 1); gtk_widget_show (value); } cinnamon-control-center-6.2.0/panels/network/connection-editor/0000775000175000017500000000000014632072346023606 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/network/connection-editor/ce-page-ip4.c0000664000175000017500000011546614632072346025762 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2012 Red Hat, Inc * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "config.h" #include #include #include #include #include #include #include "shell/list-box-helper.h" #include "ce-page-ip4.h" #include "ui-helpers.h" G_DEFINE_TYPE (CEPageIP4, ce_page_ip4, CE_TYPE_PAGE) enum { METHOD_COL_NAME, METHOD_COL_METHOD }; enum { IP4_METHOD_AUTO, IP4_METHOD_MANUAL, IP4_METHOD_LINK_LOCAL, IP4_METHOD_SHARED, IP4_METHOD_DISABLED }; static void method_changed (GtkComboBox *combo, CEPageIP4 *page) { gboolean addr_enabled; gboolean dns_enabled; gboolean routes_enabled; guint method; GtkWidget *widget; method = gtk_combo_box_get_active (combo); switch (method) { case IP4_METHOD_AUTO: addr_enabled = FALSE; dns_enabled = TRUE; routes_enabled = TRUE; break; case IP4_METHOD_MANUAL: addr_enabled = TRUE; dns_enabled = TRUE; routes_enabled = TRUE; break; case IP4_METHOD_LINK_LOCAL: default: addr_enabled = FALSE; dns_enabled = FALSE; routes_enabled = FALSE; break; } widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "address_section")); gtk_widget_set_visible (widget, addr_enabled); gtk_widget_set_sensitive (page->dns_list, dns_enabled); gtk_widget_set_sensitive (page->routes_list, routes_enabled); gtk_widget_set_sensitive (page->never_default, routes_enabled); ce_page_changed (CE_PAGE (page)); } static void switch_toggled (GObject *object, GParamSpec *pspec, CEPage *page) { ce_page_changed (page); } static void update_row_sensitivity (CEPageIP4 *page, GtkWidget *list) { GList *children, *l; gint rows = 0; children = gtk_container_get_children (GTK_CONTAINER (list)); for (l = children; l; l = l->next) { GtkWidget *row = l->data; GtkWidget *button; button = GTK_WIDGET (g_object_get_data (G_OBJECT (row), "delete-button")); if (button != NULL) rows++; } for (l = children; l; l = l->next) { GtkWidget *row = l->data; GtkWidget *button; button = GTK_WIDGET (g_object_get_data (G_OBJECT (row), "delete-button")); if (button != NULL) gtk_widget_set_sensitive (button, rows > 1); } g_list_free (children); } static void update_row_gateway_visibility (CEPageIP4 *page) { GList *children, *l; gint rows = 0; children = gtk_container_get_children (GTK_CONTAINER (page->address_list)); for (l = children; l; l = l->next) { GtkWidget *row = l->data; GtkWidget *label, *entry; label = GTK_WIDGET (g_object_get_data (G_OBJECT (row), "gateway-label")); entry = GTK_WIDGET (g_object_get_data (G_OBJECT (row), "gateway")); gtk_widget_set_visible (label, (rows == 0)); gtk_widget_set_visible (entry, (rows == 0)); rows++; } g_list_free (children); } static void remove_row (GtkButton *button, CEPageIP4 *page) { GtkWidget *list; GtkWidget *row; GtkWidget *row_box; row_box = gtk_widget_get_parent (GTK_WIDGET (button)); row = gtk_widget_get_parent (row_box); list = gtk_widget_get_parent (row); gtk_container_remove (GTK_CONTAINER (list), row); ce_page_changed (CE_PAGE (page)); update_row_sensitivity (page, list); if (list == page->address_list) update_row_gateway_visibility (page); } static gint sort_first_last (gconstpointer a, gconstpointer b, gpointer data) { gboolean afirst, bfirst, alast, blast; afirst = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (a), "first")); bfirst = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (b), "first")); alast = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (a), "last")); blast = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (b), "last")); if (afirst) return -1; if (bfirst) return 1; if (alast) return 1; if (blast) return -1; return 0; } static void add_address_row (CEPageIP4 *page, const gchar *address, const gchar *network, const gchar *gateway) { GtkWidget *row; GtkWidget *row_grid; GtkWidget *widget; GtkWidget *label; GtkWidget *delete_button; GtkWidget *image; row = gtk_list_box_row_new (); row_grid = gtk_grid_new (); label = gtk_label_new (_("Address")); gtk_widget_set_halign (label, GTK_ALIGN_END); gtk_grid_attach (GTK_GRID (row_grid), label, 1, 1, 1, 1); widget = gtk_entry_new (); gtk_label_set_mnemonic_widget (GTK_LABEL (label), widget); g_signal_connect_swapped (widget, "changed", G_CALLBACK (ce_page_changed), page); g_object_set_data (G_OBJECT (row), "address", widget); gtk_entry_set_text (GTK_ENTRY (widget), address); gtk_widget_set_margin_start (widget, 10); gtk_widget_set_margin_end (widget, 10); gtk_widget_set_hexpand (widget, TRUE); gtk_grid_attach (GTK_GRID (row_grid), widget, 2, 1, 1, 1); label = gtk_label_new (_("Netmask")); gtk_widget_set_halign (label, GTK_ALIGN_END); gtk_grid_attach (GTK_GRID (row_grid), label, 1, 2, 1, 1); widget = gtk_entry_new (); gtk_label_set_mnemonic_widget (GTK_LABEL (label), widget); g_signal_connect_swapped (widget, "changed", G_CALLBACK (ce_page_changed), page); g_object_set_data (G_OBJECT (row), "network", widget); gtk_entry_set_text (GTK_ENTRY (widget), network); gtk_widget_set_margin_start (widget, 10); gtk_widget_set_margin_end (widget, 10); gtk_widget_set_hexpand (widget, TRUE); gtk_grid_attach (GTK_GRID (row_grid), widget, 2, 2, 1, 1); label = gtk_label_new (_("Gateway")); gtk_widget_set_halign (label, GTK_ALIGN_END); gtk_grid_attach (GTK_GRID (row_grid), label, 1, 3, 1, 1); g_object_set_data (G_OBJECT (row), "gateway-label", label); widget = gtk_entry_new (); gtk_label_set_mnemonic_widget (GTK_LABEL (label), widget); g_signal_connect_swapped (widget, "changed", G_CALLBACK (ce_page_changed), page); g_object_set_data (G_OBJECT (row), "gateway", widget); gtk_entry_set_text (GTK_ENTRY (widget), gateway ? gateway : ""); gtk_widget_set_margin_start (widget, 10); gtk_widget_set_margin_end (widget, 10); gtk_widget_set_hexpand (widget, TRUE); gtk_grid_attach (GTK_GRID (row_grid), widget, 2, 3, 1, 1); gtk_widget_set_no_show_all (label, TRUE); gtk_widget_set_no_show_all (widget, FALSE); delete_button = gtk_button_new (); gtk_style_context_add_class (gtk_widget_get_style_context (delete_button), "image-button"); g_signal_connect (delete_button, "clicked", G_CALLBACK (remove_row), page); image = gtk_image_new_from_icon_name ("user-trash-symbolic", GTK_ICON_SIZE_MENU); atk_object_set_name (gtk_widget_get_accessible (delete_button), _("Delete Address")); gtk_button_set_image (GTK_BUTTON (delete_button), image); gtk_grid_attach (GTK_GRID (row_grid), delete_button, 3, 2, 1, 1); g_object_set_data (G_OBJECT (row), "delete-button", delete_button); gtk_grid_set_row_spacing (GTK_GRID (row_grid), 10); gtk_widget_set_margin_start (row_grid, 10); gtk_widget_set_margin_end (row_grid, 10); gtk_widget_set_margin_top (row_grid, 10); gtk_widget_set_margin_bottom (row_grid, 10); gtk_widget_set_halign (row_grid, GTK_ALIGN_FILL); gtk_container_add (GTK_CONTAINER (row), row_grid); gtk_widget_show_all (row); gtk_container_add (GTK_CONTAINER (page->address_list), row); update_row_gateway_visibility (page); update_row_sensitivity (page, page->address_list); } static void add_empty_address_row (CEPageIP4 *page) { add_address_row (page, "", "", ""); } static void add_section_toolbar (CEPageIP4 *page, GtkWidget *section, GCallback add_cb) { GtkWidget *toolbar; GtkToolItem *item; GtkStyleContext *context; GtkWidget *box; GtkWidget *button; GtkWidget *image; toolbar = gtk_toolbar_new (); gtk_toolbar_set_style (GTK_TOOLBAR (toolbar), GTK_TOOLBAR_ICONS); gtk_toolbar_set_icon_size (GTK_TOOLBAR (toolbar), GTK_ICON_SIZE_MENU); context = gtk_widget_get_style_context (toolbar); gtk_style_context_set_junction_sides (context, GTK_JUNCTION_TOP); gtk_style_context_add_class (context, GTK_STYLE_CLASS_INLINE_TOOLBAR); gtk_container_add (GTK_CONTAINER (section), toolbar); item = gtk_separator_tool_item_new (); gtk_tool_item_set_expand (item, TRUE); gtk_separator_tool_item_set_draw (GTK_SEPARATOR_TOOL_ITEM (item), FALSE); gtk_toolbar_insert (GTK_TOOLBAR (toolbar), GTK_TOOL_ITEM (item), 0); box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); item = gtk_tool_item_new (); gtk_container_add (GTK_CONTAINER (item), box); button = gtk_button_new (); g_signal_connect_swapped (button, "clicked", G_CALLBACK (add_cb), page); image = gtk_image_new_from_icon_name ("list-add-symbolic", GTK_ICON_SIZE_MENU); atk_object_set_name (gtk_widget_get_accessible (button), _("Add")); gtk_button_set_image (GTK_BUTTON (button), image); gtk_container_add (GTK_CONTAINER (box), button); gtk_toolbar_insert (GTK_TOOLBAR (toolbar), GTK_TOOL_ITEM (item), 1); } static void add_address_section (CEPageIP4 *page) { GtkWidget *widget; GtkWidget *frame; GtkWidget *list; gint i; widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "address_section")); frame = gtk_frame_new (NULL); gtk_container_add (GTK_CONTAINER (widget), frame); page->address_list = list = gtk_list_box_new (); gtk_list_box_set_selection_mode (GTK_LIST_BOX (list), GTK_SELECTION_NONE); gtk_list_box_set_header_func (GTK_LIST_BOX (list), cc_list_box_update_header_func, NULL, NULL); gtk_list_box_set_sort_func (GTK_LIST_BOX (list), (GtkListBoxSortFunc)sort_first_last, NULL, NULL); gtk_container_add (GTK_CONTAINER (frame), list); add_section_toolbar (page, widget, G_CALLBACK (add_empty_address_row)); for (i = 0; i < nm_setting_ip_config_get_num_addresses (page->setting); i++) { NMIPAddress *addr; struct in_addr tmp_addr; gchar network[INET_ADDRSTRLEN + 1]; addr = nm_setting_ip_config_get_address (page->setting, i); if (!addr) continue; tmp_addr.s_addr = nm_utils_ip4_prefix_to_netmask (nm_ip_address_get_prefix (addr)); (void) inet_ntop (AF_INET, &tmp_addr, &network[0], sizeof (network)); add_address_row (page, nm_ip_address_get_address (addr), network, i == 0 ? nm_setting_ip_config_get_gateway (page->setting) : ""); } if (nm_setting_ip_config_get_num_addresses (page->setting) == 0) add_empty_address_row (page); gtk_widget_show_all (widget); } static void add_dns_row (CEPageIP4 *page, const gchar *address) { GtkWidget *row; GtkWidget *row_box; GtkWidget *label; GtkWidget *widget; GtkWidget *delete_button; GtkWidget *image; row = gtk_list_box_row_new (); row_box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); label = gtk_label_new (_("Server")); gtk_widget_set_halign (label, GTK_ALIGN_END); gtk_box_pack_start (GTK_BOX (row_box), label, FALSE, FALSE, 0); widget = gtk_entry_new (); gtk_label_set_mnemonic_widget (GTK_LABEL (label), widget); g_signal_connect_swapped (widget, "changed", G_CALLBACK (ce_page_changed), page); g_object_set_data (G_OBJECT (row), "address", widget); gtk_entry_set_text (GTK_ENTRY (widget), address); gtk_widget_set_margin_start (widget, 10); gtk_widget_set_margin_end (widget, 10); gtk_widget_set_hexpand (widget, TRUE); gtk_box_pack_start (GTK_BOX (row_box), widget, TRUE, TRUE, 0); delete_button = gtk_button_new (); gtk_style_context_add_class (gtk_widget_get_style_context (delete_button), "image-button"); g_signal_connect (delete_button, "clicked", G_CALLBACK (remove_row), page); image = gtk_image_new_from_icon_name ("user-trash-symbolic", GTK_ICON_SIZE_MENU); atk_object_set_name (gtk_widget_get_accessible (delete_button), _("Delete DNS Server")); gtk_button_set_image (GTK_BUTTON (delete_button), image); gtk_box_pack_start (GTK_BOX (row_box), delete_button, FALSE, FALSE, 0); g_object_set_data (G_OBJECT (row), "delete-button", delete_button); gtk_widget_set_margin_start (row_box, 10); gtk_widget_set_margin_end (row_box, 10); gtk_widget_set_margin_top (row_box, 10); gtk_widget_set_margin_bottom (row_box, 10); gtk_widget_set_halign (row_box, GTK_ALIGN_FILL); gtk_container_add (GTK_CONTAINER (row), row_box); gtk_widget_show_all (row); gtk_container_add (GTK_CONTAINER (page->dns_list), row); update_row_sensitivity (page, page->dns_list); } static void add_empty_dns_row (CEPageIP4 *page) { add_dns_row (page, ""); } static void add_dns_section (CEPageIP4 *page) { GtkWidget *widget; GtkWidget *frame; GtkWidget *list; gint i; widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "dns_section")); frame = gtk_frame_new (NULL); gtk_container_add (GTK_CONTAINER (widget), frame); page->dns_list = list = gtk_list_box_new (); gtk_list_box_set_selection_mode (GTK_LIST_BOX (list), GTK_SELECTION_NONE); gtk_list_box_set_header_func (GTK_LIST_BOX (list), cc_list_box_update_header_func, NULL, NULL); gtk_list_box_set_sort_func (GTK_LIST_BOX (list), (GtkListBoxSortFunc)sort_first_last, NULL, NULL); gtk_container_add (GTK_CONTAINER (frame), list); page->auto_dns = GTK_SWITCH (gtk_builder_get_object (CE_PAGE (page)->builder, "auto_dns_switch")); gtk_switch_set_active (page->auto_dns, !nm_setting_ip_config_get_ignore_auto_dns (page->setting)); g_signal_connect (page->auto_dns, "notify::active", G_CALLBACK (switch_toggled), page); add_section_toolbar (page, widget, G_CALLBACK (add_empty_dns_row)); for (i = 0; i < nm_setting_ip_config_get_num_dns (page->setting); i++) { const char *address; address = nm_setting_ip_config_get_dns (page->setting, i); add_dns_row (page, address); } if (nm_setting_ip_config_get_num_dns (page->setting) == 0) add_empty_dns_row (page); gtk_widget_show_all (widget); } static void add_route_row (CEPageIP4 *page, const gchar *address, const gchar *netmask, const gchar *gateway, gint metric) { GtkWidget *row; GtkWidget *row_grid; GtkWidget *label; GtkWidget *widget; GtkWidget *delete_button; GtkWidget *image; row = gtk_list_box_row_new (); row_grid = gtk_grid_new (); label = gtk_label_new (_("Address")); gtk_widget_set_halign (label, GTK_ALIGN_END); gtk_grid_attach (GTK_GRID (row_grid), label, 1, 1, 1, 1); widget = gtk_entry_new (); gtk_label_set_mnemonic_widget (GTK_LABEL (label), widget); g_signal_connect_swapped (widget, "changed", G_CALLBACK (ce_page_changed), page); g_object_set_data (G_OBJECT (row), "address", widget); gtk_entry_set_text (GTK_ENTRY (widget), address); gtk_widget_set_margin_start (widget, 10); gtk_widget_set_margin_end (widget, 10); gtk_widget_set_hexpand (widget, TRUE); gtk_grid_attach (GTK_GRID (row_grid), widget, 2, 1, 1, 1); label = gtk_label_new (_("Netmask")); gtk_widget_set_halign (label, GTK_ALIGN_END); gtk_grid_attach (GTK_GRID (row_grid), label, 1, 2, 1, 1); widget = gtk_entry_new (); gtk_label_set_mnemonic_widget (GTK_LABEL (label), widget); g_signal_connect_swapped (widget, "changed", G_CALLBACK (ce_page_changed), page); g_object_set_data (G_OBJECT (row), "netmask", widget); gtk_entry_set_text (GTK_ENTRY (widget), netmask); gtk_widget_set_margin_start (widget, 10); gtk_widget_set_margin_end (widget, 10); gtk_widget_set_hexpand (widget, TRUE); gtk_grid_attach (GTK_GRID (row_grid), widget, 2, 2, 1, 1); label = gtk_label_new (_("Gateway")); gtk_widget_set_halign (label, GTK_ALIGN_END); gtk_grid_attach (GTK_GRID (row_grid), label, 1, 3, 1, 1); widget = gtk_entry_new (); gtk_label_set_mnemonic_widget (GTK_LABEL (label), widget); g_signal_connect_swapped (widget, "changed", G_CALLBACK (ce_page_changed), page); g_object_set_data (G_OBJECT (row), "gateway", widget); gtk_entry_set_text (GTK_ENTRY (widget), gateway); gtk_widget_set_margin_start (widget, 10); gtk_widget_set_margin_end (widget, 10); gtk_widget_set_hexpand (widget, TRUE); gtk_grid_attach (GTK_GRID (row_grid), widget, 2, 3, 1, 1); /* Translators: Please see https://en.wikipedia.org/wiki/Metrics_(networking) */ label = gtk_label_new (C_("network parameters", "Metric")); gtk_widget_set_halign (label, GTK_ALIGN_END); gtk_grid_attach (GTK_GRID (row_grid), label, 1, 4, 1, 1); widget = gtk_entry_new (); gtk_label_set_mnemonic_widget (GTK_LABEL (label), widget); g_signal_connect_swapped (widget, "changed", G_CALLBACK (ce_page_changed), page); g_object_set_data (G_OBJECT (row), "metric", widget); if (metric >= 0) { gchar *s = g_strdup_printf ("%d", metric); gtk_entry_set_text (GTK_ENTRY (widget), s); g_free (s); } gtk_widget_set_margin_start (widget, 10); gtk_widget_set_margin_end (widget, 10); gtk_widget_set_hexpand (widget, TRUE); gtk_grid_attach (GTK_GRID (row_grid), widget, 2, 4, 1, 1); delete_button = gtk_button_new (); gtk_style_context_add_class (gtk_widget_get_style_context (delete_button), "image-button"); g_signal_connect (delete_button, "clicked", G_CALLBACK (remove_row), page); image = gtk_image_new_from_icon_name ("user-trash-symbolic", GTK_ICON_SIZE_MENU); atk_object_set_name (gtk_widget_get_accessible (delete_button), _("Delete Route")); gtk_button_set_image (GTK_BUTTON (delete_button), image); gtk_widget_set_halign (delete_button, GTK_ALIGN_CENTER); gtk_widget_set_valign (delete_button, GTK_ALIGN_CENTER); gtk_grid_attach (GTK_GRID (row_grid), delete_button, 3, 1, 1, 4); g_object_set_data (G_OBJECT (row), "delete-button", delete_button); gtk_grid_set_row_spacing (GTK_GRID (row_grid), 10); gtk_widget_set_margin_start (row_grid, 10); gtk_widget_set_margin_end (row_grid, 10); gtk_widget_set_margin_top (row_grid, 10); gtk_widget_set_margin_bottom (row_grid, 10); gtk_widget_set_halign (row_grid, GTK_ALIGN_FILL); gtk_container_add (GTK_CONTAINER (row), row_grid); gtk_widget_show_all (row); gtk_container_add (GTK_CONTAINER (page->routes_list), row); update_row_sensitivity (page, page->routes_list); } static void add_empty_route_row (CEPageIP4 *page) { add_route_row (page, "", "", "", -1); } static void add_routes_section (CEPageIP4 *page) { GtkWidget *widget; GtkWidget *frame; GtkWidget *list; gint i; widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "routes_section")); frame = gtk_frame_new (NULL); gtk_container_add (GTK_CONTAINER (widget), frame); page->routes_list = list = gtk_list_box_new (); gtk_list_box_set_selection_mode (GTK_LIST_BOX (list), GTK_SELECTION_NONE); gtk_list_box_set_header_func (GTK_LIST_BOX (list), cc_list_box_update_header_func, NULL, NULL); gtk_list_box_set_sort_func (GTK_LIST_BOX (list), (GtkListBoxSortFunc)sort_first_last, NULL, NULL); gtk_container_add (GTK_CONTAINER (frame), list); page->auto_routes = GTK_SWITCH (gtk_builder_get_object (CE_PAGE (page)->builder, "auto_routes_switch")); gtk_switch_set_active (page->auto_routes, !nm_setting_ip_config_get_ignore_auto_routes (page->setting)); g_signal_connect (page->auto_routes, "notify::active", G_CALLBACK (switch_toggled), page); add_section_toolbar (page, widget, G_CALLBACK (add_empty_route_row)); for (i = 0; i < nm_setting_ip_config_get_num_routes (page->setting); i++) { NMIPRoute *route; struct in_addr tmp_addr; gchar netmask[INET_ADDRSTRLEN + 1]; route = nm_setting_ip_config_get_route (page->setting, i); if (!route) continue; tmp_addr.s_addr = nm_utils_ip4_prefix_to_netmask (nm_ip_route_get_prefix (route)); (void) inet_ntop (AF_INET, &tmp_addr, &netmask[0], sizeof (netmask)); add_route_row (page, nm_ip_route_get_dest (route), netmask, nm_ip_route_get_next_hop (route), nm_ip_route_get_metric (route)); } if (nm_setting_ip_config_get_num_routes (page->setting) == 0) add_empty_route_row (page); gtk_widget_show_all (widget); } static void connect_ip4_page (CEPageIP4 *page) { GtkWidget *content; const gchar *str_method; gboolean disabled; GtkListStore *store; GtkTreeIter iter; guint method; add_address_section (page); add_dns_section (page); add_routes_section (page); page->enabled = GTK_SWITCH (gtk_builder_get_object (CE_PAGE (page)->builder, "switch_enable")); g_signal_connect (page->enabled, "notify::active", G_CALLBACK (switch_toggled), page); str_method = nm_setting_ip_config_get_method (page->setting); disabled = g_strcmp0 (str_method, NM_SETTING_IP4_CONFIG_METHOD_DISABLED) == 0; gtk_switch_set_active (page->enabled, !disabled); g_signal_connect_swapped (page->enabled, "notify::active", G_CALLBACK (ce_page_changed), page); content = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "page_content")); g_object_bind_property (page->enabled, "active", content, "sensitive", G_BINDING_SYNC_CREATE); page->method = GTK_COMBO_BOX (gtk_builder_get_object (CE_PAGE (page)->builder, "combo_addresses")); store = gtk_list_store_new (2, G_TYPE_STRING, G_TYPE_UINT); gtk_list_store_insert_with_values (store, &iter, -1, METHOD_COL_NAME, _("Automatic (DHCP)"), METHOD_COL_METHOD, IP4_METHOD_AUTO, -1); gtk_list_store_insert_with_values (store, &iter, -1, METHOD_COL_NAME, _("Manual"), METHOD_COL_METHOD, IP4_METHOD_MANUAL, -1); gtk_list_store_insert_with_values (store, &iter, -1, METHOD_COL_NAME, _("Link-Local Only"), METHOD_COL_METHOD, IP4_METHOD_LINK_LOCAL, -1); gtk_combo_box_set_model (page->method, GTK_TREE_MODEL (store)); g_object_unref (G_OBJECT (store)); method = IP4_METHOD_AUTO; if (g_strcmp0 (str_method, NM_SETTING_IP4_CONFIG_METHOD_LINK_LOCAL) == 0) { method = IP4_METHOD_LINK_LOCAL; } else if (g_strcmp0 (str_method, NM_SETTING_IP4_CONFIG_METHOD_MANUAL) == 0) { method = IP4_METHOD_MANUAL; } else if (g_strcmp0 (str_method, NM_SETTING_IP4_CONFIG_METHOD_SHARED) == 0) { method = IP4_METHOD_SHARED; } else if (g_strcmp0 (str_method, NM_SETTING_IP4_CONFIG_METHOD_DISABLED) == 0) { method = IP4_METHOD_DISABLED; } page->never_default = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "never_default_check")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (page->never_default), nm_setting_ip_config_get_never_default (page->setting)); g_signal_connect_swapped (page->never_default, "toggled", G_CALLBACK (ce_page_changed), page); g_signal_connect (page->method, "changed", G_CALLBACK (method_changed), page); if (method != IP4_METHOD_SHARED && method != IP4_METHOD_DISABLED) gtk_combo_box_set_active (page->method, method); } static gboolean parse_netmask (const char *str, guint32 *prefix) { struct in_addr tmp_addr; glong tmp_prefix; errno = 0; /* Is it a prefix? */ if (!strchr (str, '.')) { tmp_prefix = strtol (str, NULL, 10); if (!errno && tmp_prefix >= 0 && tmp_prefix <= 32) { *prefix = tmp_prefix; return TRUE; } } /* Is it a netmask? */ if (inet_pton (AF_INET, str, &tmp_addr) > 0) { *prefix = nm_utils_ip4_netmask_to_prefix (tmp_addr.s_addr); return TRUE; } return FALSE; } static gboolean ui_to_setting (CEPageIP4 *page) { const gchar *method; gboolean ignore_auto_dns; gboolean ignore_auto_routes; gboolean never_default; GPtrArray *addresses = NULL; GPtrArray *dns_servers = NULL; GPtrArray *routes = NULL; GList *children, *l; gboolean ret = TRUE; const char *default_gateway = NULL; if (!gtk_switch_get_active (page->enabled)) { method = NM_SETTING_IP4_CONFIG_METHOD_DISABLED; } else { switch (gtk_combo_box_get_active (page->method)) { case IP4_METHOD_MANUAL: method = NM_SETTING_IP4_CONFIG_METHOD_MANUAL; break; case IP4_METHOD_LINK_LOCAL: method = NM_SETTING_IP4_CONFIG_METHOD_LINK_LOCAL; break; default: case IP4_METHOD_AUTO: method = NM_SETTING_IP4_CONFIG_METHOD_AUTO; break; } } addresses = g_ptr_array_new_with_free_func ((GDestroyNotify) nm_ip_address_unref); if (g_str_equal (method, NM_SETTING_IP4_CONFIG_METHOD_MANUAL)) children = gtk_container_get_children (GTK_CONTAINER (page->address_list)); else children = NULL; for (l = children; l; l = l->next) { GtkWidget *row = l->data; GtkEntry *entry; GtkEntry *gateway_entry; const gchar *text_address; const gchar *text_netmask; const gchar *text_gateway = ""; NMIPAddress *addr; guint32 prefix; entry = GTK_ENTRY (g_object_get_data (G_OBJECT (row), "address")); if (!entry) continue; text_address = gtk_entry_get_text (entry); text_netmask = gtk_entry_get_text (GTK_ENTRY (g_object_get_data (G_OBJECT (row), "network"))); gateway_entry = g_object_get_data (G_OBJECT (row), "gateway"); if (gtk_widget_is_visible (GTK_WIDGET (gateway_entry))) text_gateway = gtk_entry_get_text (gateway_entry); if (!*text_address && !*text_netmask && !*text_gateway) { /* ignore empty rows */ widget_unset_error (GTK_WIDGET (entry)); widget_unset_error (g_object_get_data (G_OBJECT (row), "network")); widget_unset_error (GTK_WIDGET (gateway_entry)); continue; } if (!nm_utils_ipaddr_valid (AF_INET, text_address)) { widget_set_error (GTK_WIDGET (entry)); ret = FALSE; } else { widget_unset_error (GTK_WIDGET (entry)); } if (!parse_netmask (text_netmask, &prefix)) { widget_set_error (g_object_get_data (G_OBJECT (row), "network")); ret = FALSE; } else { widget_unset_error (g_object_get_data (G_OBJECT (row), "network")); } if (gtk_widget_is_visible (GTK_WIDGET (gateway_entry)) && *text_gateway && !nm_utils_ipaddr_valid (AF_INET, text_gateway)) { widget_set_error (g_object_get_data (G_OBJECT (row), "gateway")); ret = FALSE; } else { widget_unset_error (GTK_WIDGET (gateway_entry)); if (gtk_widget_is_visible (GTK_WIDGET (gateway_entry)) && *text_gateway) { g_assert (default_gateway == NULL); default_gateway = text_gateway; } } if (!ret) continue; addr = nm_ip_address_new (AF_INET, text_address, prefix, NULL); if (addr) g_ptr_array_add (addresses, addr); } g_list_free (children); if (addresses->len == 0) { g_ptr_array_free (addresses, TRUE); addresses = NULL; } dns_servers = g_ptr_array_new_with_free_func (g_free); if (g_str_equal (method, NM_SETTING_IP4_CONFIG_METHOD_AUTO) || g_str_equal (method, NM_SETTING_IP4_CONFIG_METHOD_MANUAL)) children = gtk_container_get_children (GTK_CONTAINER (page->dns_list)); else children = NULL; for (l = children; l; l = l->next) { GtkWidget *row = l->data; GtkEntry *entry; const gchar *text; entry = GTK_ENTRY (g_object_get_data (G_OBJECT (row), "address")); if (!entry) continue; text = gtk_entry_get_text (entry); if (!*text) { /* ignore empty rows */ widget_unset_error (GTK_WIDGET (entry)); continue; } if (text && !nm_utils_ipaddr_valid (AF_INET, text)) { widget_set_error (GTK_WIDGET (entry)); ret = FALSE; } else { widget_unset_error (GTK_WIDGET (entry)); g_ptr_array_add (dns_servers, g_strdup (text)); } } g_list_free (children); if (dns_servers->len == 0) { g_ptr_array_free (dns_servers, TRUE); dns_servers = NULL; } else { g_ptr_array_add (dns_servers, NULL); } routes = g_ptr_array_new_with_free_func ((GDestroyNotify) nm_ip_route_unref); if (g_str_equal (method, NM_SETTING_IP4_CONFIG_METHOD_AUTO) || g_str_equal (method, NM_SETTING_IP4_CONFIG_METHOD_MANUAL)) children = gtk_container_get_children (GTK_CONTAINER (page->routes_list)); else children = NULL; for (l = children; l; l = l->next) { GtkWidget *row = l->data; GtkEntry *entry; const gchar *text_address; const gchar *text_netmask; const gchar *text_gateway; const gchar *text_metric; gint64 metric; guint32 netmask; NMIPRoute *route; entry = GTK_ENTRY (g_object_get_data (G_OBJECT (row), "address")); if (!entry) continue; text_address = gtk_entry_get_text (entry); text_netmask = gtk_entry_get_text (GTK_ENTRY (g_object_get_data (G_OBJECT (row), "netmask"))); text_gateway = gtk_entry_get_text (GTK_ENTRY (g_object_get_data (G_OBJECT (row), "gateway"))); text_metric = gtk_entry_get_text (GTK_ENTRY (g_object_get_data (G_OBJECT (row), "metric"))); if (!*text_address && !*text_netmask && !*text_gateway && !*text_metric) { /* ignore empty rows */ continue; } if (text_address && !nm_utils_ipaddr_valid (AF_INET, text_address)) { widget_set_error (GTK_WIDGET (entry)); ret = FALSE; } else { widget_unset_error (GTK_WIDGET (entry)); } if (!parse_netmask (text_netmask, &netmask)) { widget_set_error (GTK_WIDGET (g_object_get_data (G_OBJECT (row), "netmask"))); ret = FALSE; } else { widget_unset_error (GTK_WIDGET (g_object_get_data (G_OBJECT (row), "netmask"))); } if (text_gateway && !nm_utils_ipaddr_valid (AF_INET, text_gateway)) { widget_set_error (GTK_WIDGET (g_object_get_data (G_OBJECT (row), "gateway"))); ret = FALSE; } else { widget_unset_error (GTK_WIDGET (g_object_get_data (G_OBJECT (row), "gateway"))); } metric = -1; if (*text_metric) { errno = 0; metric = g_ascii_strtoull (text_metric, NULL, 10); if (errno || metric < 0 || metric > G_MAXUINT32) { widget_set_error (GTK_WIDGET (g_object_get_data (G_OBJECT (row), "metric"))); ret = FALSE; } else { widget_unset_error (GTK_WIDGET (g_object_get_data (G_OBJECT (row), "metric"))); } } else { widget_unset_error (GTK_WIDGET (g_object_get_data (G_OBJECT (row), "metric"))); } if (!ret) continue; route = nm_ip_route_new (AF_INET, text_address, netmask, text_gateway, metric, NULL); if (route) g_ptr_array_add (routes, route); } g_list_free (children); if (routes->len == 0) { g_ptr_array_free (routes, TRUE); routes = NULL; } if (!ret) goto out; ignore_auto_dns = !gtk_switch_get_active (page->auto_dns); ignore_auto_routes = !gtk_switch_get_active (page->auto_routes); never_default = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (page->never_default)); g_object_set (page->setting, NM_SETTING_IP_CONFIG_METHOD, method, NM_SETTING_IP_CONFIG_ADDRESSES, addresses, NM_SETTING_IP_CONFIG_GATEWAY, default_gateway, NM_SETTING_IP_CONFIG_DNS, dns_servers ? dns_servers->pdata : NULL, NM_SETTING_IP_CONFIG_ROUTES, routes, NM_SETTING_IP_CONFIG_IGNORE_AUTO_DNS, ignore_auto_dns, NM_SETTING_IP_CONFIG_IGNORE_AUTO_ROUTES, ignore_auto_routes, NM_SETTING_IP_CONFIG_NEVER_DEFAULT, never_default, NULL); out: if (addresses) g_ptr_array_free (addresses, TRUE); if (dns_servers) g_ptr_array_free (dns_servers, TRUE); if (routes) g_ptr_array_free (routes, TRUE); return ret; } static gboolean validate (CEPage *page, NMConnection *connection, GError **error) { if (!ui_to_setting (CE_PAGE_IP4 (page))) return FALSE; return nm_setting_verify (NM_SETTING (CE_PAGE_IP4 (page)->setting), NULL, error); } static void ce_page_ip4_init (CEPageIP4 *page) { } static void ce_page_ip4_class_init (CEPageIP4Class *class) { CEPageClass *page_class= CE_PAGE_CLASS (class); page_class->validate = validate; } CEPage * ce_page_ip4_new (NMConnection *connection, NMClient *client) { CEPageIP4 *page; page = CE_PAGE_IP4 (ce_page_new (CE_TYPE_PAGE_IP4, connection, client, "/org/cinnamon/control-center/network/ip4-page.ui", _("IPv4"))); page->setting = nm_connection_get_setting_ip4_config (connection); if (!page->setting) { page->setting = NM_SETTING_IP_CONFIG (nm_setting_ip4_config_new ()); nm_connection_add_setting (connection, NM_SETTING (page->setting)); } connect_ip4_page (page); return CE_PAGE (page); } cinnamon-control-center-6.2.0/panels/network/connection-editor/ce-page-security.h0000664000175000017500000000441614632072346027132 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2012 Red Hat, Inc. * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more security. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __CE_PAGE_SECURITY_H #define __CE_PAGE_SECURITY_H #include #include #include "ce-page.h" G_BEGIN_DECLS #define CE_TYPE_PAGE_SECURITY (ce_page_security_get_type ()) #define CE_PAGE_SECURITY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), CE_TYPE_PAGE_SECURITY, CEPageSecurity)) #define CE_PAGE_SECURITY_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), CE_TYPE_PAGE_SECURITY, CEPageSecurityClass)) #define CE_IS_PAGE_SECURITY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), CE_TYPE_PAGE_SECURITY)) #define CE_IS_PAGE_SECURITY_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), CE_TYPE_PAGE_SECURITY)) #define CE_PAGE_SECURITY_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), CE_TYPE_PAGE_SECURITY, CEPageSecurityClass)) typedef struct _CEPageSecurity CEPageSecurity; typedef struct _CEPageSecurityClass CEPageSecurityClass; struct _CEPageSecurity { CEPage parent; GtkComboBox *security_combo; GtkWidget *security_heading; GtkComboBox *firewall_combo; GtkWidget *firewall_heading; GtkSizeGroup *group; gboolean adhoc; }; struct _CEPageSecurityClass { CEPageClass parent_class; }; GType ce_page_security_get_type (void); CEPage *ce_page_security_new (NMConnection *connection, NMClient *client); G_END_DECLS #endif /* __CE_PAGE_SECURITY_H */ cinnamon-control-center-6.2.0/panels/network/connection-editor/ce-page-ip6.c0000664000175000017500000011127414632072346025755 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2012 Red Hat, Inc * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "config.h" #include #include #include #include #include #include #include "shell/list-box-helper.h" #include "ce-page-ip6.h" #include "ui-helpers.h" G_DEFINE_TYPE (CEPageIP6, ce_page_ip6, CE_TYPE_PAGE) enum { METHOD_COL_NAME, METHOD_COL_METHOD }; enum { IP6_METHOD_AUTO, IP6_METHOD_DHCP, IP6_METHOD_MANUAL, IP6_METHOD_LINK_LOCAL, IP6_METHOD_SHARED, IP6_METHOD_IGNORE }; static void method_changed (GtkComboBox *combo, CEPageIP6 *page) { gboolean addr_enabled; gboolean dns_enabled; gboolean routes_enabled; guint method; GtkWidget *widget; method = gtk_combo_box_get_active (combo); switch (method) { case IP6_METHOD_AUTO: case IP6_METHOD_DHCP: addr_enabled = FALSE; dns_enabled = TRUE; routes_enabled = TRUE; break; case IP6_METHOD_MANUAL: addr_enabled = TRUE; dns_enabled = TRUE; routes_enabled = TRUE; break; case IP6_METHOD_LINK_LOCAL: default: addr_enabled = FALSE; dns_enabled = FALSE; routes_enabled = FALSE; break; } widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "address_section")); gtk_widget_set_visible (widget, addr_enabled); gtk_widget_set_sensitive (page->dns_list, dns_enabled); gtk_widget_set_sensitive (page->routes_list, routes_enabled); gtk_widget_set_sensitive (page->never_default, routes_enabled); ce_page_changed (CE_PAGE (page)); } static void switch_toggled (GObject *object, GParamSpec *pspec, CEPage *page) { ce_page_changed (page); } static void update_row_sensitivity (CEPageIP6 *page, GtkWidget *list) { GList *children, *l; gint rows = 0; children = gtk_container_get_children (GTK_CONTAINER (list)); for (l = children; l; l = l->next) { GtkWidget *row = l->data; GtkWidget *button; button = GTK_WIDGET (g_object_get_data (G_OBJECT (row), "delete-button")); if (button != NULL) rows++; } for (l = children; l; l = l->next) { GtkWidget *row = l->data; GtkWidget *button; button = GTK_WIDGET (g_object_get_data (G_OBJECT (row), "delete-button")); if (button != NULL) gtk_widget_set_sensitive (button, rows > 1); } g_list_free (children); } static void remove_row (GtkButton *button, CEPageIP6 *page) { GtkWidget *row; GtkWidget *row_box; GtkWidget *list; row_box = gtk_widget_get_parent (GTK_WIDGET (button)); row = gtk_widget_get_parent (row_box); list = gtk_widget_get_parent (row); gtk_container_remove (GTK_CONTAINER (list), row); ce_page_changed (CE_PAGE (page)); update_row_sensitivity (page, list); } static gint sort_first_last (gconstpointer a, gconstpointer b, gpointer data) { gboolean afirst, bfirst, alast, blast; afirst = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (a), "first")); bfirst = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (b), "first")); alast = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (a), "last")); blast = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (b), "last")); if (afirst) return -1; if (bfirst) return 1; if (alast) return 1; if (blast) return -1; return 0; } static void add_address_row (CEPageIP6 *page, const gchar *address, const gchar *network, const gchar *gateway) { GtkWidget *row; GtkWidget *row_grid; GtkWidget *label; GtkWidget *widget; GtkWidget *delete_button; GtkWidget *image; row = gtk_list_box_row_new (); row_grid = gtk_grid_new (); label = gtk_label_new (_("Address")); gtk_widget_set_halign (label, GTK_ALIGN_END); gtk_grid_attach (GTK_GRID (row_grid), label, 1, 1, 1, 1); widget = gtk_entry_new (); gtk_label_set_mnemonic_widget (GTK_LABEL (label), widget); g_signal_connect_swapped (widget, "changed", G_CALLBACK (ce_page_changed), page); g_object_set_data (G_OBJECT (row), "address", widget); gtk_entry_set_text (GTK_ENTRY (widget), address); gtk_widget_set_margin_start (widget, 10); gtk_widget_set_margin_end (widget, 10); gtk_widget_set_hexpand (widget, TRUE); gtk_grid_attach (GTK_GRID (row_grid), widget, 2, 1, 1, 1); label = gtk_label_new (_("Prefix")); gtk_widget_set_halign (label, GTK_ALIGN_END); gtk_grid_attach (GTK_GRID (row_grid), label, 1, 2, 1, 1); widget = gtk_entry_new (); gtk_label_set_mnemonic_widget (GTK_LABEL (label), widget); g_signal_connect_swapped (widget, "changed", G_CALLBACK (ce_page_changed), page); g_object_set_data (G_OBJECT (row), "prefix", widget); gtk_entry_set_text (GTK_ENTRY (widget), network); gtk_widget_set_margin_start (widget, 10); gtk_widget_set_margin_end (widget, 10); gtk_widget_set_hexpand (widget, TRUE); gtk_grid_attach (GTK_GRID (row_grid), widget, 2, 2, 1, 1); label = gtk_label_new (_("Gateway")); gtk_widget_set_halign (label, GTK_ALIGN_END); gtk_grid_attach (GTK_GRID (row_grid), label, 1, 3, 1, 1); widget = gtk_entry_new (); gtk_label_set_mnemonic_widget (GTK_LABEL (label), widget); g_signal_connect_swapped (widget, "changed", G_CALLBACK (ce_page_changed), page); g_object_set_data (G_OBJECT (row), "gateway", widget); gtk_entry_set_text (GTK_ENTRY (widget), gateway ? gateway : ""); gtk_widget_set_margin_start (widget, 10); gtk_widget_set_margin_end (widget, 10); gtk_widget_set_hexpand (widget, TRUE); gtk_grid_attach (GTK_GRID (row_grid), widget, 2, 3, 1, 1); delete_button = gtk_button_new (); gtk_style_context_add_class (gtk_widget_get_style_context (delete_button), "image-button"); g_signal_connect (delete_button, "clicked", G_CALLBACK (remove_row), page); image = gtk_image_new_from_icon_name ("user-trash-symbolic", GTK_ICON_SIZE_MENU); atk_object_set_name (gtk_widget_get_accessible (delete_button), _("Delete Address")); gtk_button_set_image (GTK_BUTTON (delete_button), image); gtk_grid_attach (GTK_GRID (row_grid), delete_button, 3, 2, 1, 1); g_object_set_data (G_OBJECT (row), "delete-button", delete_button); gtk_grid_set_row_spacing (GTK_GRID (row_grid), 10); gtk_widget_set_margin_start (row_grid, 10); gtk_widget_set_margin_end (row_grid, 10); gtk_widget_set_margin_top (row_grid, 10); gtk_widget_set_margin_bottom (row_grid, 10); gtk_widget_set_halign (row_grid, GTK_ALIGN_FILL); gtk_container_add (GTK_CONTAINER (row), row_grid); gtk_widget_show_all (row); gtk_container_add (GTK_CONTAINER (page->address_list), row); update_row_sensitivity (page, page->address_list); } static void add_empty_address_row (CEPageIP6 *page) { add_address_row (page, "", "", ""); } static void add_section_toolbar (CEPageIP6 *page, GtkWidget *section, GCallback add_cb) { GtkWidget *toolbar; GtkToolItem *item; GtkStyleContext *context; GtkWidget *box; GtkWidget *button; GtkWidget *image; toolbar = gtk_toolbar_new (); gtk_toolbar_set_style (GTK_TOOLBAR (toolbar), GTK_TOOLBAR_ICONS); gtk_toolbar_set_icon_size (GTK_TOOLBAR (toolbar), GTK_ICON_SIZE_MENU); context = gtk_widget_get_style_context (toolbar); gtk_style_context_set_junction_sides (context, GTK_JUNCTION_TOP); gtk_style_context_add_class (context, GTK_STYLE_CLASS_INLINE_TOOLBAR); gtk_container_add (GTK_CONTAINER (section), toolbar); item = gtk_separator_tool_item_new (); gtk_tool_item_set_expand (item, TRUE); gtk_separator_tool_item_set_draw (GTK_SEPARATOR_TOOL_ITEM (item), FALSE); gtk_toolbar_insert (GTK_TOOLBAR (toolbar), GTK_TOOL_ITEM (item), 0); box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); item = gtk_tool_item_new (); gtk_container_add (GTK_CONTAINER (item), box); button = gtk_button_new (); g_signal_connect_swapped (button, "clicked", G_CALLBACK (add_cb), page); image = gtk_image_new_from_icon_name ("list-add-symbolic", GTK_ICON_SIZE_MENU); atk_object_set_name (gtk_widget_get_accessible (button), _("Add")); gtk_button_set_image (GTK_BUTTON (button), image); gtk_container_add (GTK_CONTAINER (box), button); gtk_toolbar_insert (GTK_TOOLBAR (toolbar), GTK_TOOL_ITEM (item), 1); } static void add_address_section (CEPageIP6 *page) { GtkWidget *widget; GtkWidget *frame; GtkWidget *list; gint i; widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "address_section")); frame = gtk_frame_new (NULL); gtk_container_add (GTK_CONTAINER (widget), frame); page->address_list = list = gtk_list_box_new (); gtk_list_box_set_selection_mode (GTK_LIST_BOX (list), GTK_SELECTION_NONE); gtk_list_box_set_header_func (GTK_LIST_BOX (list), cc_list_box_update_header_func, NULL, NULL); gtk_list_box_set_sort_func (GTK_LIST_BOX (list), (GtkListBoxSortFunc)sort_first_last, NULL, NULL); gtk_container_add (GTK_CONTAINER (frame), list); add_section_toolbar (page, widget, G_CALLBACK (add_empty_address_row)); for (i = 0; i < nm_setting_ip_config_get_num_addresses (page->setting); i++) { NMIPAddress *addr; char *netmask; addr = nm_setting_ip_config_get_address (page->setting, i); netmask = g_strdup_printf ("%u", nm_ip_address_get_prefix (addr)); add_address_row (page, nm_ip_address_get_address (addr), netmask, i == 0 ? nm_setting_ip_config_get_gateway (page->setting) : NULL); g_free (netmask); } if (nm_setting_ip_config_get_num_addresses (page->setting) == 0) add_empty_address_row (page); gtk_widget_show_all (widget); } static void add_dns_row (CEPageIP6 *page, const gchar *address) { GtkWidget *row; GtkWidget *row_box; GtkWidget *label; GtkWidget *widget; GtkWidget *delete_button; GtkWidget *image; row = gtk_list_box_row_new (); gtk_widget_set_can_focus (row, FALSE); row_box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); label = gtk_label_new (_("Server")); gtk_widget_set_halign (label, GTK_ALIGN_END); gtk_box_pack_start (GTK_BOX (row_box), label, FALSE, FALSE, 0); widget = gtk_entry_new (); gtk_label_set_mnemonic_widget (GTK_LABEL (label), widget); g_signal_connect_swapped (widget, "changed", G_CALLBACK (ce_page_changed), page); g_object_set_data (G_OBJECT (row), "address", widget); gtk_entry_set_text (GTK_ENTRY (widget), address); gtk_widget_set_margin_start (widget, 10); gtk_widget_set_margin_end (widget, 10); gtk_widget_set_hexpand (widget, TRUE); gtk_box_pack_start (GTK_BOX (row_box), widget, TRUE, TRUE, 0); delete_button = gtk_button_new (); gtk_style_context_add_class (gtk_widget_get_style_context (delete_button), "image-button"); g_signal_connect (delete_button, "clicked", G_CALLBACK (remove_row), page); image = gtk_image_new_from_icon_name ("user-trash-symbolic", GTK_ICON_SIZE_MENU); atk_object_set_name (gtk_widget_get_accessible (delete_button), _("Delete DNS Server")); gtk_button_set_image (GTK_BUTTON (delete_button), image); gtk_box_pack_start (GTK_BOX (row_box), delete_button, FALSE, FALSE, 0); g_object_set_data (G_OBJECT (row), "delete-button", delete_button); gtk_widget_set_margin_start (row_box, 10); gtk_widget_set_margin_end (row_box, 10); gtk_widget_set_margin_top (row_box, 10); gtk_widget_set_margin_bottom (row_box, 10); gtk_widget_set_halign (row_box, GTK_ALIGN_FILL); gtk_container_add (GTK_CONTAINER (row), row_box); gtk_widget_show_all (row); gtk_container_add (GTK_CONTAINER (page->dns_list), row); update_row_sensitivity (page, page->dns_list); } static void add_empty_dns_row (CEPageIP6 *page) { add_dns_row (page, ""); } static void add_dns_section (CEPageIP6 *page) { GtkWidget *widget; GtkWidget *frame; GtkWidget *list; gint i; widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "dns_section")); frame = gtk_frame_new (NULL); gtk_container_add (GTK_CONTAINER (widget), frame); page->dns_list = list = gtk_list_box_new (); gtk_list_box_set_selection_mode (GTK_LIST_BOX (list), GTK_SELECTION_NONE); gtk_list_box_set_header_func (GTK_LIST_BOX (list), cc_list_box_update_header_func, NULL, NULL); gtk_list_box_set_sort_func (GTK_LIST_BOX (list), (GtkListBoxSortFunc)sort_first_last, NULL, NULL); gtk_container_add (GTK_CONTAINER (frame), list); page->auto_dns = GTK_SWITCH (gtk_builder_get_object (CE_PAGE (page)->builder, "auto_dns_switch")); gtk_switch_set_active (page->auto_dns, !nm_setting_ip_config_get_ignore_auto_dns (page->setting)); g_signal_connect (page->auto_dns, "notify::active", G_CALLBACK (switch_toggled), page); add_section_toolbar (page, widget, G_CALLBACK (add_empty_dns_row)); for (i = 0; i < nm_setting_ip_config_get_num_dns (page->setting); i++) { const char *address; address = nm_setting_ip_config_get_dns (page->setting, i); add_dns_row (page, address); } if (nm_setting_ip_config_get_num_dns (page->setting) == 0) add_empty_dns_row (page); gtk_widget_show_all (widget); } static void add_route_row (CEPageIP6 *page, const gchar *address, const gchar *prefix, const gchar *gateway, const gchar *metric) { GtkWidget *row; GtkWidget *row_grid; GtkWidget *label; GtkWidget *widget; GtkWidget *delete_button; GtkWidget *image; row = gtk_list_box_row_new (); row_grid = gtk_grid_new (); label = gtk_label_new (_("Address")); gtk_widget_set_halign (label, GTK_ALIGN_END); gtk_grid_attach (GTK_GRID (row_grid), label, 1, 1, 1, 1); widget = gtk_entry_new (); gtk_label_set_mnemonic_widget (GTK_LABEL (label), widget); g_signal_connect_swapped (widget, "changed", G_CALLBACK (ce_page_changed), page); g_object_set_data (G_OBJECT (row), "address", widget); gtk_entry_set_text (GTK_ENTRY (widget), address); gtk_widget_set_margin_start (widget, 10); gtk_widget_set_margin_end (widget, 10); gtk_widget_set_hexpand (widget, TRUE); gtk_grid_attach (GTK_GRID (row_grid), widget, 2, 1, 1, 1); label = gtk_label_new (_("Prefix")); gtk_widget_set_halign (label, GTK_ALIGN_END); gtk_grid_attach (GTK_GRID (row_grid), label, 1, 2, 1, 1); widget = gtk_entry_new (); gtk_label_set_mnemonic_widget (GTK_LABEL (label), widget); g_signal_connect_swapped (widget, "changed", G_CALLBACK (ce_page_changed), page); g_object_set_data (G_OBJECT (row), "prefix", widget); gtk_entry_set_text (GTK_ENTRY (widget), prefix ? prefix : ""); gtk_widget_set_margin_start (widget, 10); gtk_widget_set_margin_end (widget, 10); gtk_widget_set_hexpand (widget, TRUE); gtk_grid_attach (GTK_GRID (row_grid), widget, 2, 2, 1, 1); label = gtk_label_new (_("Gateway")); gtk_widget_set_halign (label, GTK_ALIGN_END); gtk_grid_attach (GTK_GRID (row_grid), label, 1, 3, 1, 1); widget = gtk_entry_new (); gtk_label_set_mnemonic_widget (GTK_LABEL (label), widget); g_signal_connect_swapped (widget, "changed", G_CALLBACK (ce_page_changed), page); g_object_set_data (G_OBJECT (row), "gateway", widget); gtk_entry_set_text (GTK_ENTRY (widget), gateway); gtk_widget_set_margin_start (widget, 10); gtk_widget_set_margin_end (widget, 10); gtk_widget_set_hexpand (widget, TRUE); gtk_grid_attach (GTK_GRID (row_grid), widget, 2, 3, 1, 1); /* Translators: Please see https://en.wikipedia.org/wiki/Metrics_(networking) */ label = gtk_label_new (C_("network parameters", "Metric")); gtk_widget_set_halign (label, GTK_ALIGN_END); gtk_grid_attach (GTK_GRID (row_grid), label, 1, 4, 1, 1); widget = gtk_entry_new (); gtk_label_set_mnemonic_widget (GTK_LABEL (label), widget); g_signal_connect_swapped (widget, "changed", G_CALLBACK (ce_page_changed), page); g_object_set_data (G_OBJECT (row), "metric", widget); gtk_entry_set_text (GTK_ENTRY (widget), metric ? metric : ""); gtk_widget_set_margin_start (widget, 10); gtk_widget_set_margin_end (widget, 10); gtk_widget_set_hexpand (widget, TRUE); gtk_grid_attach (GTK_GRID (row_grid), widget, 2, 4, 1, 1); delete_button = gtk_button_new (); gtk_style_context_add_class (gtk_widget_get_style_context (delete_button), "image-button"); g_signal_connect (delete_button, "clicked", G_CALLBACK (remove_row), page); image = gtk_image_new_from_icon_name ("user-trash-symbolic", GTK_ICON_SIZE_MENU); atk_object_set_name (gtk_widget_get_accessible (delete_button), _("Delete Route")); gtk_button_set_image (GTK_BUTTON (delete_button), image); gtk_widget_set_halign (delete_button, GTK_ALIGN_CENTER); gtk_widget_set_valign (delete_button, GTK_ALIGN_CENTER); gtk_grid_attach (GTK_GRID (row_grid), delete_button, 3, 1, 1, 4); g_object_set_data (G_OBJECT (row), "delete-button", delete_button); gtk_grid_set_row_spacing (GTK_GRID (row_grid), 10); gtk_widget_set_margin_start (row_grid, 10); gtk_widget_set_margin_end (row_grid, 10); gtk_widget_set_margin_top (row_grid, 10); gtk_widget_set_margin_bottom (row_grid, 10); gtk_widget_set_halign (row_grid, GTK_ALIGN_FILL); gtk_container_add (GTK_CONTAINER (row), row_grid); gtk_widget_show_all (row); gtk_container_add (GTK_CONTAINER (page->routes_list), row); update_row_sensitivity (page, page->routes_list); } static void add_empty_route_row (CEPageIP6 *page) { add_route_row (page, "", NULL, "", NULL); } static void add_routes_section (CEPageIP6 *page) { GtkWidget *widget; GtkWidget *frame; GtkWidget *list; gint i; widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "routes_section")); frame = gtk_frame_new (NULL); gtk_container_add (GTK_CONTAINER (widget), frame); page->routes_list = list = gtk_list_box_new (); gtk_list_box_set_selection_mode (GTK_LIST_BOX (list), GTK_SELECTION_NONE); gtk_list_box_set_header_func (GTK_LIST_BOX (list), cc_list_box_update_header_func, NULL, NULL); gtk_list_box_set_sort_func (GTK_LIST_BOX (list), (GtkListBoxSortFunc)sort_first_last, NULL, NULL); gtk_container_add (GTK_CONTAINER (frame), list); page->auto_routes = GTK_SWITCH (gtk_builder_get_object (CE_PAGE (page)->builder, "auto_routes_switch")); gtk_switch_set_active (page->auto_routes, !nm_setting_ip_config_get_ignore_auto_routes (page->setting)); g_signal_connect (page->auto_routes, "notify::active", G_CALLBACK (switch_toggled), page); add_section_toolbar (page, widget, G_CALLBACK (add_empty_route_row)); for (i = 0; i < nm_setting_ip_config_get_num_routes (page->setting); i++) { NMIPRoute *route; char *prefix, *metric; route = nm_setting_ip_config_get_route (page->setting, i); prefix = g_strdup_printf ("%u", nm_ip_route_get_prefix (route)); metric = g_strdup_printf ("%u", (guint32) MIN (0, nm_ip_route_get_metric (route))); add_route_row (page, nm_ip_route_get_dest (route), prefix, nm_ip_route_get_next_hop (route), metric); g_free (prefix); g_free (metric); } if (nm_setting_ip_config_get_num_routes (page->setting) == 0) add_empty_route_row (page); gtk_widget_show_all (widget); } static void connect_ip6_page (CEPageIP6 *page) { GtkWidget *content; const gchar *str_method; gboolean disabled; GtkListStore *store; GtkTreeIter iter; guint method; add_address_section (page); add_dns_section (page); add_routes_section (page); page->enabled = GTK_SWITCH (gtk_builder_get_object (CE_PAGE (page)->builder, "switch_enable")); g_signal_connect (page->enabled, "notify::active", G_CALLBACK (switch_toggled), page); str_method = nm_setting_ip_config_get_method (page->setting); disabled = g_strcmp0 (str_method, NM_SETTING_IP6_CONFIG_METHOD_IGNORE) == 0; gtk_switch_set_active (page->enabled, !disabled); g_signal_connect_swapped (page->enabled, "notify::active", G_CALLBACK (ce_page_changed), page); content = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "page_content")); g_object_bind_property (page->enabled, "active", content, "sensitive", G_BINDING_SYNC_CREATE); page->method = GTK_COMBO_BOX (gtk_builder_get_object (CE_PAGE (page)->builder, "combo_addresses")); store = gtk_list_store_new (2, G_TYPE_STRING, G_TYPE_UINT); gtk_list_store_insert_with_values (store, &iter, -1, METHOD_COL_NAME, _("Automatic"), METHOD_COL_METHOD, IP6_METHOD_AUTO, -1); gtk_list_store_insert_with_values (store, &iter, -1, METHOD_COL_NAME, _("Automatic, DHCP only"), METHOD_COL_METHOD, IP6_METHOD_DHCP, -1); gtk_list_store_insert_with_values (store, &iter, -1, METHOD_COL_NAME, _("Manual"), METHOD_COL_METHOD, IP6_METHOD_MANUAL, -1); gtk_list_store_insert_with_values (store, &iter, -1, METHOD_COL_NAME, _("Link-Local Only"), METHOD_COL_METHOD, IP6_METHOD_LINK_LOCAL, -1); gtk_combo_box_set_model (page->method, GTK_TREE_MODEL (store)); g_object_unref (G_OBJECT (store)); method = IP6_METHOD_AUTO; if (g_strcmp0 (str_method, NM_SETTING_IP6_CONFIG_METHOD_DHCP) == 0) { method = IP6_METHOD_DHCP; } else if (g_strcmp0 (str_method, NM_SETTING_IP6_CONFIG_METHOD_LINK_LOCAL) == 0) { method = IP6_METHOD_LINK_LOCAL; } else if (g_strcmp0 (str_method, NM_SETTING_IP6_CONFIG_METHOD_MANUAL) == 0) { method = IP6_METHOD_MANUAL; } else if (g_strcmp0 (str_method, NM_SETTING_IP6_CONFIG_METHOD_SHARED) == 0) { method = IP6_METHOD_SHARED; } else if (g_strcmp0 (str_method, NM_SETTING_IP6_CONFIG_METHOD_IGNORE) == 0) { method = IP6_METHOD_IGNORE; } page->never_default = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "never_default_check")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (page->never_default), nm_setting_ip_config_get_never_default (page->setting)); g_signal_connect_swapped (page->never_default, "toggled", G_CALLBACK (ce_page_changed), page); g_signal_connect (page->method, "changed", G_CALLBACK (method_changed), page); if (method != IP6_METHOD_SHARED && method != IP6_METHOD_IGNORE) gtk_combo_box_set_active (page->method, method); } static gboolean ui_to_setting (CEPageIP6 *page) { const gchar *method; gboolean ignore_auto_dns; gboolean ignore_auto_routes; gboolean never_default; GList *children, *l; gboolean ret = TRUE; if (!gtk_switch_get_active (page->enabled)) { method = NM_SETTING_IP6_CONFIG_METHOD_IGNORE; } else { switch (gtk_combo_box_get_active (page->method)) { case IP6_METHOD_MANUAL: method = NM_SETTING_IP6_CONFIG_METHOD_MANUAL; break; case IP6_METHOD_LINK_LOCAL: method = NM_SETTING_IP6_CONFIG_METHOD_LINK_LOCAL; break; case IP6_METHOD_DHCP: method = NM_SETTING_IP6_CONFIG_METHOD_DHCP; break; default: case IP6_METHOD_AUTO: method = NM_SETTING_IP6_CONFIG_METHOD_AUTO; break; } } nm_setting_ip_config_clear_addresses (page->setting); if (g_str_equal (method, NM_SETTING_IP6_CONFIG_METHOD_MANUAL)) { children = gtk_container_get_children (GTK_CONTAINER (page->address_list)); } else { g_object_set (G_OBJECT (page->setting), NM_SETTING_IP_CONFIG_GATEWAY, NULL, NULL); children = NULL; } for (l = children; l; l = l->next) { GtkWidget *row = l->data; GtkEntry *entry; const gchar *text_address; const gchar *text_prefix; const gchar *text_gateway; guint32 prefix; gchar *end; NMIPAddress *addr; gboolean have_gateway = FALSE; entry = GTK_ENTRY (g_object_get_data (G_OBJECT (row), "address")); if (!entry) continue; text_address = gtk_entry_get_text (entry); text_prefix = gtk_entry_get_text (GTK_ENTRY (g_object_get_data (G_OBJECT (row), "prefix"))); text_gateway = gtk_entry_get_text (GTK_ENTRY (g_object_get_data (G_OBJECT (row), "gateway"))); if (!*text_address && !*text_prefix && !*text_gateway) { /* ignore empty rows */ widget_unset_error (GTK_WIDGET (entry)); widget_unset_error (g_object_get_data (G_OBJECT (row), "prefix")); widget_unset_error (g_object_get_data (G_OBJECT (row), "gateway")); continue; } if (!text_address || !nm_utils_ipaddr_valid (AF_INET6, text_address)) { widget_set_error (GTK_WIDGET (entry)); ret = FALSE; } else { widget_unset_error (GTK_WIDGET (entry)); } prefix = strtoul (text_prefix, &end, 10); if (!end || *end || prefix == 0 || prefix > 128) { widget_set_error (g_object_get_data (G_OBJECT (row), "prefix")); ret = FALSE; } else { widget_unset_error (g_object_get_data (G_OBJECT (row), "prefix")); } if (text_gateway && !nm_utils_ipaddr_valid (AF_INET6, text_gateway)) { widget_set_error (g_object_get_data (G_OBJECT (row), "gateway")); ret = FALSE; } else { widget_unset_error (g_object_get_data (G_OBJECT (row), "gateway")); have_gateway = TRUE; } if (!ret) continue; addr = nm_ip_address_new (AF_INET6, text_address, prefix, NULL); if (have_gateway) g_object_set (G_OBJECT (page->setting), NM_SETTING_IP_CONFIG_GATEWAY, text_gateway, NULL); nm_setting_ip_config_add_address (page->setting, addr); } g_list_free (children); nm_setting_ip_config_clear_dns (page->setting); if (g_str_equal (method, NM_SETTING_IP6_CONFIG_METHOD_AUTO) || g_str_equal (method, NM_SETTING_IP6_CONFIG_METHOD_DHCP) || g_str_equal (method, NM_SETTING_IP6_CONFIG_METHOD_MANUAL)) children = gtk_container_get_children (GTK_CONTAINER (page->dns_list)); else children = NULL; for (l = children; l; l = l->next) { GtkWidget *row = l->data; GtkEntry *entry; const gchar *text; struct in6_addr tmp_addr; entry = GTK_ENTRY (g_object_get_data (G_OBJECT (row), "address")); if (!entry) continue; text = gtk_entry_get_text (entry); if (!*text) { /* ignore empty rows */ widget_unset_error (GTK_WIDGET (entry)); continue; } if (inet_pton (AF_INET6, text, &tmp_addr) <= 0) { widget_set_error (GTK_WIDGET (entry)); ret = FALSE; } else { widget_unset_error (GTK_WIDGET (entry)); nm_setting_ip_config_add_dns (page->setting, text); } } g_list_free (children); nm_setting_ip_config_clear_routes (page->setting); if (g_str_equal (method, NM_SETTING_IP6_CONFIG_METHOD_AUTO) || g_str_equal (method, NM_SETTING_IP6_CONFIG_METHOD_DHCP) || g_str_equal (method, NM_SETTING_IP6_CONFIG_METHOD_MANUAL)) children = gtk_container_get_children (GTK_CONTAINER (page->routes_list)); else children = NULL; for (l = children; l; l = l->next) { GtkWidget *row = l->data; GtkEntry *entry; const gchar *text_address; const gchar *text_prefix; const gchar *text_gateway; const gchar *text_metric; guint32 prefix, metric; gchar *end; NMIPRoute *route; entry = GTK_ENTRY (g_object_get_data (G_OBJECT (row), "address")); if (!entry) continue; text_address = gtk_entry_get_text (entry); text_prefix = gtk_entry_get_text (GTK_ENTRY (g_object_get_data (G_OBJECT (row), "prefix"))); text_gateway = gtk_entry_get_text (GTK_ENTRY (g_object_get_data (G_OBJECT (row), "gateway"))); text_metric = gtk_entry_get_text (GTK_ENTRY (g_object_get_data (G_OBJECT (row), "metric"))); if (!*text_address && !*text_prefix && !*text_gateway && !*text_metric) { /* ignore empty rows */ widget_unset_error (GTK_WIDGET (entry)); widget_unset_error (g_object_get_data (G_OBJECT (row), "prefix")); widget_unset_error (g_object_get_data (G_OBJECT (row), "gateway")); widget_unset_error (g_object_get_data (G_OBJECT (row), "metric")); continue; } if (!nm_utils_ipaddr_valid (AF_INET6, text_address)) { widget_set_error (GTK_WIDGET (entry)); ret = FALSE; } else { widget_unset_error (GTK_WIDGET (entry)); } prefix = strtoul (text_prefix, &end, 10); if (!end || *end || prefix == 0 || prefix > 128) { widget_set_error (g_object_get_data (G_OBJECT (row), "prefix")); ret = FALSE; } else { widget_unset_error (g_object_get_data (G_OBJECT (row), "prefix")); } if (!nm_utils_ipaddr_valid (AF_INET6, text_gateway)) { widget_set_error (g_object_get_data (G_OBJECT (row), "gateway")); ret = FALSE; } else { widget_unset_error (g_object_get_data (G_OBJECT (row), "gateway")); } metric = 0; if (*text_metric) { errno = 0; metric = strtoul (text_metric, NULL, 10); if (errno) { widget_set_error (g_object_get_data (G_OBJECT (row), "metric")); ret = FALSE; } else { widget_unset_error (g_object_get_data (G_OBJECT (row), "metric")); } } else { widget_unset_error (g_object_get_data (G_OBJECT (row), "metric")); } if (!ret) continue; route = nm_ip_route_new (AF_INET6, text_address, prefix, text_gateway, metric, NULL); nm_setting_ip_config_add_route (page->setting, route); nm_ip_route_unref (route); } g_list_free (children); if (!ret) goto out; ignore_auto_dns = !gtk_switch_get_active (page->auto_dns); ignore_auto_routes = !gtk_switch_get_active (page->auto_routes); never_default = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (page->never_default)); g_object_set (page->setting, NM_SETTING_IP_CONFIG_METHOD, method, NM_SETTING_IP_CONFIG_IGNORE_AUTO_DNS, ignore_auto_dns, NM_SETTING_IP_CONFIG_IGNORE_AUTO_ROUTES, ignore_auto_routes, NM_SETTING_IP_CONFIG_NEVER_DEFAULT, never_default, NULL); out: return ret; } static gboolean validate (CEPage *page, NMConnection *connection, GError **error) { if (!ui_to_setting (CE_PAGE_IP6 (page))) return FALSE; return nm_setting_verify (NM_SETTING (CE_PAGE_IP6 (page)->setting), NULL, error); } static void ce_page_ip6_init (CEPageIP6 *page) { } static void ce_page_ip6_class_init (CEPageIP6Class *class) { CEPageClass *page_class= CE_PAGE_CLASS (class); page_class->validate = validate; } CEPage * ce_page_ip6_new (NMConnection *connection, NMClient *client) { CEPageIP6 *page; page = CE_PAGE_IP6 (ce_page_new (CE_TYPE_PAGE_IP6, connection, client, "/org/cinnamon/control-center/network/ip6-page.ui", _("IPv6"))); page->setting = nm_connection_get_setting_ip6_config (connection); if (!page->setting) { page->setting = NM_SETTING_IP_CONFIG (nm_setting_ip6_config_new ()); nm_connection_add_setting (connection, NM_SETTING (page->setting)); } connect_ip6_page (page); return CE_PAGE (page); } cinnamon-control-center-6.2.0/panels/network/connection-editor/connection-editor.ui0000664000175000017500000002235314632072346027575 0ustar fabiofabio False 5 False True 600 300 dialog False vertical 2 False end end _Cancel True True True True False True 0 _Apply True True True True False True 1 False True end 0 True True False False True False True True never in True True details_store False False False 10 0 20 True True 0 True True False False False True 1 True False page 1 False True False True False vertical 300 True False 0 in False True 0 True False 0 1 True False page 2 1 False True True 1 details_cancel_button details_apply_button cinnamon-control-center-6.2.0/panels/network/connection-editor/meson.build0000664000175000017500000000141014632072346025744 0ustar fabiofabio libconnection_editor_sources = [ 'ce-page-8021x-security.c', 'ce-page-details.c', 'ce-page-ethernet.c', 'ce-page-ip4.c', 'ce-page-ip6.c', 'ce-page-reset.c', 'ce-page-security.c', 'ce-page-vpn.c', 'ce-page-wifi.c', 'ce-page.c', 'firewall-helpers.c', 'net-connection-editor.c', 'ui-helpers.c', 'vpn-helpers.c', gnome.compile_resources('net-connection-editor-resources', 'connection-editor.gresource.xml', c_name: 'net_connection_editor', source_dir: meson.current_source_dir(), ), ] libconnection_editor = static_library('connection_editor', libconnection_editor_sources, include_directories: [ rootInclude, wireless_securityInclude ], link_whole: [ libwireless_security, ], dependencies: [ gtk, libnm, ], ) cinnamon-control-center-6.2.0/panels/network/connection-editor/ip6-page.ui0000664000175000017500000003516214632072346025564 0ustar fabiofabio True True never True False True False 20 20 10 10 vertical 10 True False True False IPv_6 True switch_enable False True 0 True True end True False True 1 False True 0 True False vertical 10 True False True False _Addresses True combo_addresses False True 0 True False end True 0 1 False True 1 False True 0 True False vertical False True 1 True False 24 6 6 True False 0 DNS False True 0 True False True 1 Automatic False True 1 True True end Automatic DNS False True 2 False True 2 True False vertical False True 3 True False 24 5 6 True False 0 Routes False True 0 True False True 1 Automatic False True 1 True True Automatic Routes False True 2 False True 4 True False vertical False True 5 Use this connection _only for resources on its network True True False True 0 True False True 7 False True 1 cinnamon-control-center-6.2.0/panels/network/connection-editor/wifi-page.ui0000664000175000017500000001567314632072346026031 0ustar fabiofabio True False 50 50 12 12 True True 10 6 True False 1 _SSID True entry_ssid 0 0 1 1 True False 1 _BSSID True combo_bssid 0 1 1 1 True True True ā— My Home Network True 1 0 1 1 True False 1 _MAC Address True combo_mac 0 2 1 1 True True True ā— True 1 3 1 1 True False _Cloned Address True entry_cloned_mac 0 3 1 1 True False True 0 1 1 1 1 1 True False True 0 1 1 2 1 1 Make available to _other users True True False True 0 True 0 6 2 1 Connect _automatically True True False end True True 0 True 0 5 2 1 cinnamon-control-center-6.2.0/panels/network/connection-editor/ce-page-ethernet.c0000664000175000017500000002142114632072346027067 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2012 Red Hat, Inc * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "config.h" #include #include #include #include #include "firewall-helpers.h" #include "ce-page-ethernet.h" #include "ui-helpers.h" G_DEFINE_TYPE (CEPageEthernet, ce_page_ethernet, CE_TYPE_PAGE) static void all_user_changed (GtkToggleButton *b, CEPageEthernet *page) { gboolean all_users; NMSettingConnection *sc; sc = nm_connection_get_setting_connection (CE_PAGE (page)->connection); all_users = gtk_toggle_button_get_active (b); g_object_set (sc, "permissions", NULL, NULL); if (!all_users) nm_setting_connection_add_permission (sc, "user", g_get_user_name (), NULL); } static void mtu_changed (GtkSpinButton *mtu, CEPageEthernet *page) { if (gtk_spin_button_get_value_as_int (mtu) == 0) gtk_widget_hide (page->mtu_label); else gtk_widget_show (page->mtu_label); } static void connect_ethernet_page (CEPageEthernet *page) { NMSettingWired *setting = page->setting_wired; NMSettingConnection *sc; int mtu_def; char **mac_list; const char *s_mac_str; GtkWidget *widget; GtkWidget *heading; const gchar *name; const gchar *cloned_mac; name = nm_setting_connection_get_id (page->setting_connection); gtk_entry_set_text (page->name, name); /* Device MAC address */ mac_list = ce_page_get_mac_list (CE_PAGE (page)->client, NM_TYPE_DEVICE_ETHERNET, NM_DEVICE_ETHERNET_PERMANENT_HW_ADDRESS); s_mac_str = nm_setting_wired_get_mac_address (setting); ce_page_setup_mac_combo (page->device_mac, s_mac_str, mac_list); g_strfreev (mac_list); g_signal_connect_swapped (page->device_mac, "changed", G_CALLBACK (ce_page_changed), page); /* Cloned MAC address */ cloned_mac = nm_setting_wired_get_cloned_mac_address (setting); gtk_entry_set_text (GTK_ENTRY (page->cloned_mac), cloned_mac ? cloned_mac : ""); g_signal_connect_swapped (page->cloned_mac, "changed", G_CALLBACK (ce_page_changed), page); /* MTU */ mtu_def = ce_get_property_default (NM_SETTING (setting), NM_SETTING_WIRED_MTU); g_signal_connect (page->mtu, "output", G_CALLBACK (ce_spin_output_with_default), GINT_TO_POINTER (mtu_def)); gtk_spin_button_set_value (page->mtu, (gdouble) nm_setting_wired_get_mtu (setting)); g_signal_connect (page->mtu, "value-changed", G_CALLBACK (mtu_changed), page); mtu_changed (page->mtu, page); g_signal_connect_swapped (page->name, "changed", G_CALLBACK (ce_page_changed), page); g_signal_connect_swapped (page->mtu, "value-changed", G_CALLBACK (ce_page_changed), page); widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "auto_connect_check")); sc = nm_connection_get_setting_connection (CE_PAGE (page)->connection); g_object_bind_property (sc, "autoconnect", widget, "active", G_BINDING_BIDIRECTIONAL | G_BINDING_SYNC_CREATE); g_signal_connect_swapped (widget, "toggled", G_CALLBACK (ce_page_changed), page); widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "all_user_check")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (widget), nm_setting_connection_get_num_permissions (sc) == 0); g_signal_connect (widget, "toggled", G_CALLBACK (all_user_changed), page); g_signal_connect_swapped (widget, "toggled", G_CALLBACK (ce_page_changed), page); widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "combo_zone")); heading = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "heading_zone")); firewall_ui_setup (sc, widget, heading, CE_PAGE (page)->cancellable); g_signal_connect_swapped (widget, "changed", G_CALLBACK (ce_page_changed), page); } static void ui_to_setting (CEPageEthernet *page) { gchar *device_mac = NULL; gchar *cloned_mac; const gchar *text; GtkWidget *entry; entry = gtk_bin_get_child (GTK_BIN (page->device_mac)); if (entry) { text = gtk_entry_get_text (GTK_ENTRY (entry)); device_mac = ce_page_trim_address (text); } text = gtk_entry_get_text (GTK_ENTRY (entry)); cloned_mac = ce_page_trim_address (text); g_object_set (page->setting_wired, NM_SETTING_WIRED_MAC_ADDRESS, device_mac, NM_SETTING_WIRED_CLONED_MAC_ADDRESS, cloned_mac, NM_SETTING_WIRED_MTU, (guint32) gtk_spin_button_get_value_as_int (page->mtu), NULL); g_object_set (page->setting_connection, NM_SETTING_CONNECTION_ID, gtk_entry_get_text (page->name), NULL); entry = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "combo_zone")); firewall_ui_to_setting (page->setting_connection, entry); g_free (cloned_mac); g_free (device_mac); } static gboolean validate (CEPage *page, NMConnection *connection, GError **error) { CEPageEthernet *self = CE_PAGE_ETHERNET (page); GtkWidget *entry; gboolean ret = TRUE; entry = gtk_bin_get_child (GTK_BIN (self->device_mac)); if (entry) { if (!ce_page_address_is_valid (gtk_entry_get_text (GTK_ENTRY (entry)))) { widget_set_error (entry); ret = FALSE; } else { widget_unset_error (entry); } } if (!ce_page_address_is_valid (gtk_entry_get_text (GTK_ENTRY (self->cloned_mac)))) { widget_set_error (GTK_WIDGET (self->cloned_mac)); ret = FALSE; } else { widget_unset_error (GTK_WIDGET (self->cloned_mac)); } if (!ret) return ret; ui_to_setting (self); return nm_setting_verify (NM_SETTING (self->setting_connection), NULL, error) && nm_setting_verify (NM_SETTING (self->setting_wired), NULL, error); } static void ce_page_ethernet_init (CEPageEthernet *page) { } static void ce_page_ethernet_class_init (CEPageEthernetClass *class) { CEPageClass *page_class= CE_PAGE_CLASS (class); page_class->validate = validate; } CEPage * ce_page_ethernet_new (NMConnection *connection, NMClient *client) { CEPageEthernet *page; page = CE_PAGE_ETHERNET (ce_page_new (CE_TYPE_PAGE_ETHERNET, connection, client, "/org/cinnamon/control-center/network/ethernet-page.ui", _("Identity"))); page->name = GTK_ENTRY (gtk_builder_get_object (CE_PAGE (page)->builder, "entry_name")); page->device_mac = GTK_COMBO_BOX_TEXT (gtk_builder_get_object (CE_PAGE (page)->builder, "combo_mac")); page->cloned_mac = GTK_ENTRY (gtk_builder_get_object (CE_PAGE (page)->builder, "entry_cloned_mac")); page->mtu = GTK_SPIN_BUTTON (gtk_builder_get_object (CE_PAGE (page)->builder, "spin_mtu")); page->mtu_label = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "label_mtu")); page->setting_connection = nm_connection_get_setting_connection (connection); page->setting_wired = nm_connection_get_setting_wired (connection); connect_ethernet_page (page); return CE_PAGE (page); } cinnamon-control-center-6.2.0/panels/network/connection-editor/ce-page-security.c0000664000175000017500000004420514632072346027125 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2012 Red Hat, Inc * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "config.h" #include #include #include #include "wireless-security.h" #include "ce-page-security.h" #include "firewall-helpers.h" G_DEFINE_TYPE (CEPageSecurity, ce_page_security, CE_TYPE_PAGE) enum { S_NAME_COLUMN, S_SEC_COLUMN, S_ADHOC_VALID_COLUMN }; static gboolean find_proto (NMSettingWirelessSecurity *sec, const char *item) { guint32 i; for (i = 0; i < nm_setting_wireless_security_get_num_protos (sec); i++) { if (!strcmp (item, nm_setting_wireless_security_get_proto (sec, i))) return TRUE; } return FALSE; } static NMUtilsSecurityType get_default_type_for_security (NMSettingWirelessSecurity *sec) { const char *key_mgmt, *auth_alg; g_return_val_if_fail (sec != NULL, NMU_SEC_NONE); key_mgmt = nm_setting_wireless_security_get_key_mgmt (sec); auth_alg = nm_setting_wireless_security_get_auth_alg (sec); /* No IEEE 802.1x */ if (!strcmp (key_mgmt, "none")) return NMU_SEC_STATIC_WEP; if (!strcmp (key_mgmt, "ieee8021x")) { if (auth_alg && !strcmp (auth_alg, "leap")) return NMU_SEC_LEAP; return NMU_SEC_DYNAMIC_WEP; } if ( !strcmp (key_mgmt, "wpa-none") || !strcmp (key_mgmt, "wpa-psk")) { if (find_proto (sec, "rsn")) return NMU_SEC_WPA2_PSK; else if (find_proto (sec, "wpa")) return NMU_SEC_WPA_PSK; else return NMU_SEC_WPA_PSK; } if (!strcmp (key_mgmt, "wpa-eap")) { if (find_proto (sec, "rsn")) return NMU_SEC_WPA2_ENTERPRISE; else if (find_proto (sec, "wpa")) return NMU_SEC_WPA_ENTERPRISE; else return NMU_SEC_WPA_ENTERPRISE; } return NMU_SEC_INVALID; } static WirelessSecurity * security_combo_get_active (CEPageSecurity *page) { GtkTreeIter iter; GtkTreeModel *model; WirelessSecurity *sec = NULL; model = gtk_combo_box_get_model (page->security_combo); gtk_combo_box_get_active_iter (page->security_combo, &iter); gtk_tree_model_get (model, &iter, S_SEC_COLUMN, &sec, -1); return sec; } static void wsec_size_group_clear (GtkSizeGroup *group) { GSList *children; GSList *iter; g_return_if_fail (group != NULL); children = gtk_size_group_get_widgets (group); for (iter = children; iter; iter = g_slist_next (iter)) gtk_size_group_remove_widget (group, GTK_WIDGET (iter->data)); } static void security_combo_changed (GtkComboBox *combo, gpointer user_data) { CEPageSecurity *page = CE_PAGE_SECURITY (user_data); GtkWidget *vbox; GList *l, *children; WirelessSecurity *sec; wsec_size_group_clear (page->group); vbox = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "vbox")); children = gtk_container_get_children (GTK_CONTAINER (vbox)); for (l = children; l; l = l->next) { gtk_container_remove (GTK_CONTAINER (vbox), GTK_WIDGET (l->data)); } sec = security_combo_get_active (page); if (sec) { GtkWidget *sec_widget; GtkWidget *parent; sec_widget = wireless_security_get_widget (sec); g_assert (sec_widget); parent = gtk_widget_get_parent (sec_widget); if (parent) gtk_container_remove (GTK_CONTAINER (parent), sec_widget); gtk_size_group_add_widget (page->group, page->security_heading); gtk_size_group_add_widget (page->group, page->firewall_heading); wireless_security_add_to_size_group (sec, page->group); gtk_container_add (GTK_CONTAINER (vbox), sec_widget); wireless_security_unref (sec); } ce_page_changed (CE_PAGE (page)); } static void stuff_changed_cb (WirelessSecurity *sec, gpointer user_data) { ce_page_changed (CE_PAGE (user_data)); } static void add_security_item (CEPageSecurity *page, WirelessSecurity *sec, GtkListStore *model, GtkTreeIter *iter, const char *text, gboolean adhoc_valid) { wireless_security_set_changed_notify (sec, stuff_changed_cb, page); gtk_list_store_append (model, iter); gtk_list_store_set (model, iter, S_NAME_COLUMN, text, S_SEC_COLUMN, sec, S_ADHOC_VALID_COLUMN, adhoc_valid, -1); wireless_security_unref (sec); } static void set_sensitive (GtkCellLayout *cell_layout, GtkCellRenderer *cell, GtkTreeModel *tree_model, GtkTreeIter *iter, gpointer data) { gboolean *adhoc = data; gboolean sensitive = TRUE, adhoc_valid = TRUE; gtk_tree_model_get (tree_model, iter, S_ADHOC_VALID_COLUMN, &adhoc_valid, -1); if (*adhoc && !adhoc_valid) sensitive = FALSE; g_object_set (cell, "sensitive", sensitive, NULL); } static void finish_setup (CEPageSecurity *page) { NMConnection *connection = CE_PAGE (page)->connection; NMSettingWireless *sw; NMSettingWirelessSecurity *sws; NMSettingConnection *sc; gboolean is_adhoc = FALSE; GtkListStore *sec_model; GtkTreeIter iter; const gchar *mode; guint32 dev_caps = 0; NMUtilsSecurityType default_type = NMU_SEC_NONE; int active = -1; int item = 0; GtkComboBox *combo; GtkCellRenderer *renderer; sw = nm_connection_get_setting_wireless (connection); g_assert (sw); page->group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL); page->security_heading = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "heading_sec")); page->security_combo = combo = GTK_COMBO_BOX (gtk_builder_get_object (CE_PAGE (page)->builder, "combo_sec")); dev_caps = NM_WIFI_DEVICE_CAP_CIPHER_WEP40 | NM_WIFI_DEVICE_CAP_CIPHER_WEP104 | NM_WIFI_DEVICE_CAP_CIPHER_TKIP | NM_WIFI_DEVICE_CAP_CIPHER_CCMP | NM_WIFI_DEVICE_CAP_WPA | NM_WIFI_DEVICE_CAP_RSN; mode = nm_setting_wireless_get_mode (sw); if (mode && !strcmp (mode, "adhoc")) is_adhoc = TRUE; page->adhoc = is_adhoc; sws = nm_connection_get_setting_wireless_security (connection); if (sws) default_type = get_default_type_for_security (sws); sec_model = gtk_list_store_new (3, G_TYPE_STRING, wireless_security_get_type (), G_TYPE_BOOLEAN); if (nm_utils_security_valid (NMU_SEC_NONE, dev_caps, FALSE, is_adhoc, 0, 0, 0)) { gtk_list_store_insert_with_values (sec_model, &iter, -1, S_NAME_COLUMN, C_("Wi-Fi/Ethernet security", "None"), S_ADHOC_VALID_COLUMN, TRUE, -1); if (default_type == NMU_SEC_NONE) active = item; item++; } if (nm_utils_security_valid (NMU_SEC_STATIC_WEP, dev_caps, FALSE, is_adhoc, 0, 0, 0)) { WirelessSecurityWEPKey *ws_wep; NMWepKeyType wep_type = NM_WEP_KEY_TYPE_KEY; if (default_type == NMU_SEC_STATIC_WEP) { sws = nm_connection_get_setting_wireless_security (connection); if (sws) wep_type = nm_setting_wireless_security_get_wep_key_type (sws); if (wep_type == NM_WEP_KEY_TYPE_UNKNOWN) wep_type = NM_WEP_KEY_TYPE_KEY; } ws_wep = ws_wep_key_new (connection, NM_WEP_KEY_TYPE_KEY, FALSE, FALSE); if (ws_wep) { add_security_item (page, WIRELESS_SECURITY (ws_wep), sec_model, &iter, _("WEP 40/128-bit Key (Hex or ASCII)"), TRUE); if ((active < 0) && (default_type == NMU_SEC_STATIC_WEP) && (wep_type == NM_WEP_KEY_TYPE_KEY)) active = item; item++; } ws_wep = ws_wep_key_new (connection, NM_WEP_KEY_TYPE_PASSPHRASE, FALSE, FALSE); if (ws_wep) { add_security_item (page, WIRELESS_SECURITY (ws_wep), sec_model, &iter, _("WEP 128-bit Passphrase"), TRUE); if ((active < 0) && (default_type == NMU_SEC_STATIC_WEP) && (wep_type == NM_WEP_KEY_TYPE_PASSPHRASE)) active = item; item++; } } if (nm_utils_security_valid (NMU_SEC_LEAP, dev_caps, FALSE, is_adhoc, 0, 0, 0)) { WirelessSecurityLEAP *ws_leap; ws_leap = ws_leap_new (connection, FALSE); if (ws_leap) { add_security_item (page, WIRELESS_SECURITY (ws_leap), sec_model, &iter, _("LEAP"), FALSE); if ((active < 0) && (default_type == NMU_SEC_LEAP)) active = item; item++; } } if (nm_utils_security_valid (NMU_SEC_DYNAMIC_WEP, dev_caps, FALSE, is_adhoc, 0, 0, 0)) { WirelessSecurityDynamicWEP *ws_dynamic_wep; ws_dynamic_wep = ws_dynamic_wep_new (connection, TRUE, FALSE); if (ws_dynamic_wep) { add_security_item (page, WIRELESS_SECURITY (ws_dynamic_wep), sec_model, &iter, _("Dynamic WEP (802.1x)"), FALSE); if ((active < 0) && (default_type == NMU_SEC_DYNAMIC_WEP)) active = item; item++; } } if (nm_utils_security_valid (NMU_SEC_WPA_PSK, dev_caps, FALSE, is_adhoc, 0, 0, 0) || nm_utils_security_valid (NMU_SEC_WPA2_PSK, dev_caps, FALSE, is_adhoc, 0, 0, 0)) { WirelessSecurityWPAPSK *ws_wpa_psk; ws_wpa_psk = ws_wpa_psk_new (connection, FALSE); if (ws_wpa_psk) { add_security_item (page, WIRELESS_SECURITY (ws_wpa_psk), sec_model, &iter, _("WPA & WPA2 Personal"), FALSE); if ((active < 0) && ((default_type == NMU_SEC_WPA_PSK) || (default_type == NMU_SEC_WPA2_PSK))) active = item; item++; } } if (nm_utils_security_valid (NMU_SEC_WPA_ENTERPRISE, dev_caps, FALSE, is_adhoc, 0, 0, 0) || nm_utils_security_valid (NMU_SEC_WPA2_ENTERPRISE, dev_caps, FALSE, is_adhoc, 0, 0, 0)) { WirelessSecurityWPAEAP *ws_wpa_eap; ws_wpa_eap = ws_wpa_eap_new (connection, TRUE, FALSE); if (ws_wpa_eap) { add_security_item (page, WIRELESS_SECURITY (ws_wpa_eap), sec_model, &iter, _("WPA & WPA2 Enterprise"), FALSE); if ((active < 0) && ((default_type == NMU_SEC_WPA_ENTERPRISE) || (default_type == NMU_SEC_WPA2_ENTERPRISE))) active = item; item++; } } gtk_combo_box_set_model (combo, GTK_TREE_MODEL (sec_model)); gtk_cell_layout_clear (GTK_CELL_LAYOUT (combo)); renderer = gtk_cell_renderer_text_new (); gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo), renderer, TRUE); gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo), renderer, "text", S_NAME_COLUMN, NULL); gtk_cell_layout_set_cell_data_func (GTK_CELL_LAYOUT (combo), renderer, set_sensitive, &page->adhoc, NULL); gtk_combo_box_set_active (combo, active < 0 ? 0 : (guint32) active); g_object_unref (G_OBJECT (sec_model)); page->security_combo = combo; page->firewall_heading = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "heading_zone")); page->firewall_combo = GTK_COMBO_BOX (gtk_builder_get_object (CE_PAGE (page)->builder, "combo_zone")); sc = nm_connection_get_setting_connection (CE_PAGE (page)->connection); firewall_ui_setup (sc, GTK_WIDGET (page->firewall_combo), page->firewall_heading, CE_PAGE (page)->cancellable); g_signal_connect_swapped (page->firewall_combo, "changed", G_CALLBACK (ce_page_changed), page); security_combo_changed (combo, page); g_signal_connect (combo, "changed", G_CALLBACK (security_combo_changed), page); } static gboolean validate (CEPage *page, NMConnection *connection, GError **error) { NMSettingWireless *sw; NMSettingConnection *sc; WirelessSecurity *sec; gboolean valid = FALSE; const char *mode; sw = nm_connection_get_setting_wireless (connection); mode = nm_setting_wireless_get_mode (sw); if (g_strcmp0 (mode, NM_SETTING_WIRELESS_MODE_ADHOC) == 0) CE_PAGE_SECURITY (page)->adhoc = TRUE; else CE_PAGE_SECURITY (page)->adhoc = FALSE; sec = security_combo_get_active (CE_PAGE_SECURITY (page)); if (sec) { GBytes *ssid = nm_setting_wireless_get_ssid (sw); if (ssid) { /* FIXME: get failed property and error out of wifi security objects */ valid = wireless_security_validate (sec, error); if (valid) wireless_security_fill_connection (sec, connection); } else { g_set_error (error, NM_CONNECTION_ERROR, NM_CONNECTION_ERROR_MISSING_SETTING, "Missing SSID"); valid = FALSE; } if (CE_PAGE_SECURITY (page)->adhoc) { if (!wireless_security_adhoc_compatible (sec)) { if (valid) g_set_error (error, NM_CONNECTION_ERROR, NM_CONNECTION_ERROR_INVALID_SETTING, "Security not compatible with Ad-Hoc mode"); valid = FALSE; } } wireless_security_unref (sec); } else { /* No security, unencrypted */ nm_connection_remove_setting (connection, NM_TYPE_SETTING_WIRELESS_SECURITY); nm_connection_remove_setting (connection, NM_TYPE_SETTING_802_1X); valid = TRUE; } sc = nm_connection_get_setting_connection (connection); firewall_ui_to_setting (sc, GTK_WIDGET (CE_PAGE_SECURITY (page)->firewall_combo)); return valid; } static void ce_page_security_init (CEPageSecurity *page) { } static void dispose (GObject *object) { CEPageSecurity *page = CE_PAGE_SECURITY (object); g_clear_object (&page->group); G_OBJECT_CLASS (ce_page_security_parent_class)->dispose (object); } static void ce_page_security_class_init (CEPageSecurityClass *class) { GObjectClass *object_class = G_OBJECT_CLASS (class); CEPageClass *page_class = CE_PAGE_CLASS (class); object_class->dispose = dispose; page_class->validate = validate; } CEPage * ce_page_security_new (NMConnection *connection, NMClient *client) { CEPageSecurity *page; NMUtilsSecurityType default_type = NMU_SEC_NONE; NMSettingWirelessSecurity *sws; page = CE_PAGE_SECURITY (ce_page_new (CE_TYPE_PAGE_SECURITY, connection, client, "/org/cinnamon/control-center/network/security-page.ui", _("Security"))); sws = nm_connection_get_setting_wireless_security (connection); if (sws) default_type = get_default_type_for_security (sws); if (default_type == NMU_SEC_STATIC_WEP || default_type == NMU_SEC_LEAP || default_type == NMU_SEC_WPA_PSK || default_type == NMU_SEC_WPA2_PSK) { CE_PAGE (page)->security_setting = NM_SETTING_WIRELESS_SECURITY_SETTING_NAME; } if (default_type == NMU_SEC_DYNAMIC_WEP || default_type == NMU_SEC_WPA_ENTERPRISE || default_type == NMU_SEC_WPA2_ENTERPRISE) { CE_PAGE (page)->security_setting = NM_SETTING_802_1X_SETTING_NAME; } g_signal_connect (page, "initialized", G_CALLBACK (finish_setup), NULL); return CE_PAGE (page); } cinnamon-control-center-6.2.0/panels/network/connection-editor/vpn-page.ui0000664000175000017500000001200214632072346025655 0ustar fabiofabio True False 50 50 12 12 vertical 10 True False 6 True False 1 _Name True entry_name False True 0 True True ā— True True True 1 False True 0 True False 6 True False Firewall _Zone True combo_zone False True 0 True False 0 1 True True 1 False True 1 Make available to other _users True True False True 0 True False True 2 True False 0 (Error: unable to load VPN connection editor) False True 3 cinnamon-control-center-6.2.0/panels/network/connection-editor/firewall-helpers.h0000664000175000017500000000236014632072346027225 0ustar fabiofabio/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * (C) Copyright 2013 Red Hat, Inc. */ #ifndef _FIREWALL_HELPERS_H_ #define _FIREWALL_HELPERS_H_ #include #include void firewall_ui_setup (NMSettingConnection *setting, GtkWidget *combo, GtkWidget *label, GCancellable *cancellable); void firewall_ui_to_setting (NMSettingConnection *setting, GtkWidget *combo); #endif /* _FIREWALL_HELPERS_H_ */ cinnamon-control-center-6.2.0/panels/network/connection-editor/ui-helpers.h0000664000175000017500000000167114632072346026041 0ustar fabiofabio/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * (C) Copyright 2014 Red Hat, Inc. */ #ifndef _UI_HELPERS_H_ #define _UI_HELPERS_H_ #include void widget_set_error (GtkWidget *widget); void widget_unset_error (GtkWidget *widget); #endif /* _UI_HELPERS_H_ */ cinnamon-control-center-6.2.0/panels/network/connection-editor/ce-page-vpn.c0000664000175000017500000001664514632072346026070 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2013 Red Hat, Inc * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "config.h" #include #include #include #include "ce-page-vpn.h" #include "vpn-helpers.h" #include "firewall-helpers.h" G_DEFINE_TYPE (CEPageVpn, ce_page_vpn, CE_TYPE_PAGE) static void all_user_changed (GtkToggleButton *b, CEPageVpn *page) { gboolean all_users; NMSettingConnection *sc; sc = nm_connection_get_setting_connection (CE_PAGE (page)->connection); all_users = gtk_toggle_button_get_active (b); g_object_set (sc, "permissions", NULL, NULL); if (!all_users) nm_setting_connection_add_permission (sc, "user", g_get_user_name (), NULL); } /* Hack to make the plugin-provided editor widget fit in better with * the control center by changing * * Foo: [__________] * Bar baz: [__________] * * to * * Foo [__________] * Bar baz [__________] */ static void vpn_cinnamonify_editor (GtkWidget *widget) { if (GTK_IS_CONTAINER (widget)) { GList *children, *iter; children = gtk_container_get_children (GTK_CONTAINER (widget)); for (iter = children; iter; iter = iter->next) vpn_cinnamonify_editor (iter->data); g_list_free (children); } else if (GTK_IS_LABEL (widget)) { const char *text; gfloat xalign; char *newtext; int len; xalign = gtk_label_get_xalign (GTK_LABEL (widget)); if (xalign != 0.0) return; text = gtk_label_get_text (GTK_LABEL (widget)); len = strlen (text); if (len < 2 || text[len - 1] != ':') return; newtext = g_strndup (text, len - 1); gtk_label_set_text (GTK_LABEL (widget), newtext); g_free (newtext); gtk_label_set_xalign (GTK_LABEL (widget), 1.0); } } static void load_vpn_plugin (CEPageVpn *page, NMConnection *connection) { CEPage *parent = CE_PAGE (page); GtkWidget *ui_widget, *failure; page->editor = nm_vpn_editor_plugin_get_editor (page->plugin, connection, NULL); ui_widget = NULL; if (page->editor) ui_widget = GTK_WIDGET (nm_vpn_editor_get_widget (page->editor)); if (!ui_widget) { g_clear_object (&page->editor); page->plugin = NULL; return; } vpn_cinnamonify_editor (ui_widget); failure = GTK_WIDGET (gtk_builder_get_object (parent->builder, "failure_label")); gtk_widget_destroy (failure); gtk_box_pack_start (page->box, ui_widget, TRUE, TRUE, 0); gtk_widget_show_all (ui_widget); g_signal_connect_swapped (page->editor, "changed", G_CALLBACK (ce_page_changed), page); } static void connect_vpn_page (CEPageVpn *page) { const gchar *name; GtkWidget *widget; GtkWidget *heading; name = nm_setting_connection_get_id (page->setting_connection); gtk_entry_set_text (page->name, name); g_signal_connect_swapped (page->name, "changed", G_CALLBACK (ce_page_changed), page); widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "all_user_check")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (widget), nm_setting_connection_get_num_permissions (page->setting_connection) == 0); g_signal_connect (widget, "toggled", G_CALLBACK (all_user_changed), page); widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "combo_zone")); heading = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "heading_zone")); firewall_ui_setup (page->setting_connection, widget, heading, CE_PAGE (page)->cancellable); g_signal_connect_swapped (widget, "changed", G_CALLBACK (ce_page_changed), page); } static gboolean validate (CEPage *page, NMConnection *connection, GError **error) { CEPageVpn *self = CE_PAGE_VPN (page); GtkWidget *widget; g_object_set (self->setting_connection, NM_SETTING_CONNECTION_ID, gtk_entry_get_text (self->name), NULL); widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "combo_zone")); firewall_ui_to_setting (self->setting_connection, widget); if (!nm_setting_verify (NM_SETTING (self->setting_connection), NULL, error)) return FALSE; if (!self->editor) return TRUE; return nm_vpn_editor_update_connection (self->editor, connection, error); } static void ce_page_vpn_init (CEPageVpn *page) { } static void dispose (GObject *object) { CEPageVpn *page = CE_PAGE_VPN (object); g_clear_object (&page->editor); G_OBJECT_CLASS (ce_page_vpn_parent_class)->dispose (object); } static void ce_page_vpn_class_init (CEPageVpnClass *class) { CEPageClass *page_class = CE_PAGE_CLASS (class); GObjectClass *object_class = G_OBJECT_CLASS (class); object_class->dispose = dispose; page_class->validate = validate; } static void finish_setup (CEPageVpn *page, gpointer unused, GError *error, gpointer user_data) { NMConnection *connection = CE_PAGE (page)->connection; const char *vpn_type; page->setting_connection = nm_connection_get_setting_connection (connection); page->setting_vpn = nm_connection_get_setting_vpn (connection); vpn_type = nm_setting_vpn_get_service_type (page->setting_vpn); page->plugin = vpn_get_plugin_by_service (vpn_type); if (page->plugin) load_vpn_plugin (page, connection); connect_vpn_page (page); } CEPage * ce_page_vpn_new (NMConnection *connection, NMClient *client) { CEPageVpn *page; page = CE_PAGE_VPN (ce_page_new (CE_TYPE_PAGE_VPN, connection, client, "/org/cinnamon/control-center/network/vpn-page.ui", _("Identity"))); page->name = GTK_ENTRY (gtk_builder_get_object (CE_PAGE (page)->builder, "entry_name")); page->box = GTK_BOX (gtk_builder_get_object (CE_PAGE (page)->builder, "page")); g_signal_connect (page, "initialized", G_CALLBACK (finish_setup), NULL); CE_PAGE (page)->security_setting = NM_SETTING_VPN_SETTING_NAME; return CE_PAGE (page); } cinnamon-control-center-6.2.0/panels/network/connection-editor/ce-page-ip4.h0000664000175000017500000000436214632072346025757 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2012 Red Hat, Inc. * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more ip4. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __CE_PAGE_IP4_H #define __CE_PAGE_IP4_H #include #include #include "ce-page.h" G_BEGIN_DECLS #define CE_TYPE_PAGE_IP4 (ce_page_ip4_get_type ()) #define CE_PAGE_IP4(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), CE_TYPE_PAGE_IP4, CEPageIP4)) #define CE_PAGE_IP4_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), CE_TYPE_PAGE_IP4, CEPageIP4Class)) #define CE_IS_PAGE_IP4(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), CE_TYPE_PAGE_IP4)) #define CE_IS_PAGE_IP4_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), CE_TYPE_PAGE_IP4)) #define CE_PAGE_IP4_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), CE_TYPE_PAGE_IP4, CEPageIP4Class)) typedef struct _CEPageIP4 CEPageIP4; typedef struct _CEPageIP4Class CEPageIP4Class; struct _CEPageIP4 { CEPage parent; NMSettingIPConfig *setting; GtkSwitch *enabled; GtkComboBox *method; GtkWidget *address_list; GtkSwitch *auto_dns; GtkWidget *dns_list; GtkSwitch *auto_routes; GtkWidget *routes_list; GtkWidget *never_default; }; struct _CEPageIP4Class { CEPageClass parent_class; }; GType ce_page_ip4_get_type (void); CEPage *ce_page_ip4_new (NMConnection *connection, NMClient *client); G_END_DECLS #endif /* __CE_PAGE_IP4_H */ cinnamon-control-center-6.2.0/panels/network/connection-editor/ce-page-8021x-security.h0000664000175000017500000000470214632072346027710 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Connection editor -- Connection editor for NetworkManager * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * (C) Copyright 2008 - 2012 Red Hat, Inc. */ #ifndef __CE_PAGE_8021X_SECURITY_H #define __CE_PAGE_8021X_SECURITY_H #include #include "wireless-security.h" #include #include #include "ce-page.h" #define CE_TYPE_PAGE_8021X_SECURITY (ce_page_8021x_security_get_type ()) #define CE_PAGE_8021X_SECURITY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CE_TYPE_PAGE_8021X_SECURITY, CEPage8021xSecurity)) #define CE_PAGE_8021X_SECURITY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), CE_TYPE_PAGE_8021X_SECURITY, CEPage8021xSecurityClass)) #define CE_IS_PAGE_8021X_SECURITY(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CE_TYPE_PAGE_8021X_SECURITY)) #define CE_IS_PAGE_8021X_SECURITY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CE_TYPE_PAGE_8021X_SECURITY)) #define CE_PAGE_8021X_SECURITY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CE_TYPE_PAGE_8021X_SECURITY, CEPage8021xSecurityClass)) typedef struct CEPage8021xSecurity CEPage8021xSecurity; typedef struct CEPage8021xSecurityClass CEPage8021xSecurityClass; struct CEPage8021xSecurity { CEPage parent; GtkSwitch *enabled; GtkWidget *security_widget; WirelessSecurity *security; GtkSizeGroup *group; gboolean initial_have_8021x; }; struct CEPage8021xSecurityClass { CEPageClass parent; }; GType ce_page_8021x_security_get_type (void); CEPage *ce_page_8021x_security_new (NMConnection *connection, NMClient *client); #endif /* __CE_PAGE_8021X_SECURITY_H */ cinnamon-control-center-6.2.0/panels/network/connection-editor/security-page.ui0000664000175000017500000003011014632072346026721 0ustar fabiofabio True True False False True False 50 50 12 12 True True 10 6 True False 1 S_ecurity True combo_sec 0 0 1 1 True False True 1 0 1 1 True False vertical 0 1 2 1 True False 1 Firewall _Zone True combo_zone 0 2 1 1 True False True 0 1 1 2 1 1 True False page 1 False True False 50 50 12 12 10 6 True True ā— 35 1 0 1 1 True True ā— 1 1 1 1 True True ā— 1 2 1 1 True True ā— 1 3 1 1 True True ā— 1 4 1 1 True True ā— 1 5 1 1 True True ā— 1 6 1 1 True True ā— 1 7 1 1 True True ā— 1 8 1 1 True True ā— 1 9 1 1 True False Anony_mous identity True 0 0 1 1 True False Inner _authentication True 0 1 1 1 1 True False page 2 1 False cinnamon-control-center-6.2.0/panels/network/connection-editor/ce-page-details.h0000664000175000017500000000431214632072346026703 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2012 Red Hat, Inc. * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __CE_PAGE_DETAILS_H #define __CE_PAGE_DETAILS_H #include #include #include "ce-page.h" G_BEGIN_DECLS #define CE_TYPE_PAGE_DETAILS (ce_page_details_get_type ()) #define CE_PAGE_DETAILS(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), CE_TYPE_PAGE_DETAILS, CEPageDetails)) #define CE_PAGE_DETAILS_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), CE_TYPE_PAGE_DETAILS, CEPageDetailsClass)) #define CE_IS_PAGE_DETAILS(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), CE_TYPE_PAGE_DETAILS)) #define CE_IS_PAGE_DETAILS_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), CE_TYPE_PAGE_DETAILS)) #define CE_PAGE_DETAILS_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), CE_TYPE_PAGE_DETAILS, CEPageDetailsClass)) typedef struct _CEPageDetails CEPageDetails; typedef struct _CEPageDetailsClass CEPageDetailsClass; struct _CEPageDetails { CEPage parent; NMDevice *device; NMAccessPoint *ap; }; struct _CEPageDetailsClass { CEPageClass parent_class; }; GType ce_page_details_get_type (void); CEPage *ce_page_details_new (NMConnection *connection, NMClient *client, NMDevice *device, NMAccessPoint *ap); G_END_DECLS #endif /* __CE_PAGE_DETAILS_H */ cinnamon-control-center-6.2.0/panels/network/connection-editor/ce-page-wifi.h0000664000175000017500000000376114632072346026223 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2012 Red Hat, Inc. * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more wifi. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __CE_PAGE_WIFI_H #define __CE_PAGE_WIFI_H #include #include #include "ce-page.h" G_BEGIN_DECLS #define CE_TYPE_PAGE_WIFI (ce_page_wifi_get_type ()) #define CE_PAGE_WIFI(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), CE_TYPE_PAGE_WIFI, CEPageWifi)) #define CE_PAGE_WIFI_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), CE_TYPE_PAGE_WIFI, CEPageWifiClass)) #define CE_IS_PAGE_WIFI(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), CE_TYPE_PAGE_WIFI)) #define CE_IS_PAGE_WIFI_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), CE_TYPE_PAGE_WIFI)) #define CE_PAGE_WIFI_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), CE_TYPE_PAGE_WIFI, CEPageWifiClass)) typedef struct _CEPageWifi CEPageWifi; typedef struct _CEPageWifiClass CEPageWifiClass; struct _CEPageWifi { CEPage parent; NMSettingWireless *setting; }; struct _CEPageWifiClass { CEPageClass parent_class; }; GType ce_page_wifi_get_type (void); CEPage *ce_page_wifi_new (NMConnection *connection, NMClient *client); G_END_DECLS #endif /* __CE_PAGE_WIFI_H */ cinnamon-control-center-6.2.0/panels/network/connection-editor/reset-page.ui0000664000175000017500000000661614632072346026212 0ustar fabiofabio True False 50 50 12 12 20 20 _Reset True True True center True 0 0 1 1 _Forget True True True center True 0 1 1 1 True False True 0 Reset the settings for this network, including passwords, but remember it as a preferred network True 40 button_reset 1 0 1 1 True False True 0 Remove all details relating to this network and do not try to automatically connect True 30 button_forget 1 1 1 1 cinnamon-control-center-6.2.0/panels/network/connection-editor/ce-page-ethernet.h0000664000175000017500000000453614632072346027104 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2012 Red Hat, Inc. * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more ethernet. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __CE_PAGE_ETHERNET_H #define __CE_PAGE_ETHERNET_H #include #include #include #include "ce-page.h" G_BEGIN_DECLS #define CE_TYPE_PAGE_ETHERNET (ce_page_ethernet_get_type ()) #define CE_PAGE_ETHERNET(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), CE_TYPE_PAGE_ETHERNET, CEPageEthernet)) #define CE_PAGE_ETHERNET_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), CE_TYPE_PAGE_ETHERNET, CEPageEthernetClass)) #define CE_IS_PAGE_ETHERNET(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), CE_TYPE_PAGE_ETHERNET)) #define CE_IS_PAGE_ETHERNET_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), CE_TYPE_PAGE_ETHERNET)) #define CE_PAGE_ETHERNET_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), CE_TYPE_PAGE_ETHERNET, CEPageEthernetClass)) typedef struct _CEPageEthernet CEPageEthernet; typedef struct _CEPageEthernetClass CEPageEthernetClass; struct _CEPageEthernet { CEPage parent; NMSettingConnection *setting_connection; NMSettingWired *setting_wired; GtkEntry *name; GtkComboBoxText *device_mac; GtkEntry *cloned_mac; GtkSpinButton *mtu; GtkWidget *mtu_label; }; struct _CEPageEthernetClass { CEPageClass parent_class; }; GType ce_page_ethernet_get_type (void); CEPage *ce_page_ethernet_new (NMConnection *connection, NMClient *client); G_END_DECLS #endif /* __CE_PAGE_ETHERNET_H */ cinnamon-control-center-6.2.0/panels/network/connection-editor/ce-page-reset.c0000664000175000017500000000467514632072346026407 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2012 Red Hat, Inc * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "config.h" #include #include #include "net-connection-editor.h" #include "ce-page-reset.h" G_DEFINE_TYPE (CEPageReset, ce_page_reset, CE_TYPE_PAGE) static void forget_cb (GtkButton *button, CEPageReset *page) { net_connection_editor_forget (page->editor); } static void reset_cb (GtkButton *button, CEPageReset *page) { net_connection_editor_reset (page->editor); } static void connect_reset_page (CEPageReset *page) { GtkWidget *widget; widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "button_forget")); g_signal_connect (widget, "clicked", G_CALLBACK (forget_cb), page); widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "button_reset")); g_signal_connect (widget, "clicked", G_CALLBACK (reset_cb), page); } static void ce_page_reset_init (CEPageReset *page) { } static void ce_page_reset_class_init (CEPageResetClass *class) { } CEPage * ce_page_reset_new (NMConnection *connection, NMClient *client, NetConnectionEditor *editor) { CEPageReset *page; page = CE_PAGE_RESET (ce_page_new (CE_TYPE_PAGE_RESET, connection, client, "/org/cinnamon/control-center/network/reset-page.ui", _("Reset"))); page->editor = editor; connect_reset_page (page); return CE_PAGE (page); } cinnamon-control-center-6.2.0/panels/network/connection-editor/ce-page-reset.h0000664000175000017500000000416414632072346026405 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2012 Red Hat, Inc. * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more reset. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __CE_PAGE_RESET_H #define __CE_PAGE_RESET_H #include #include #include "net-connection-editor.h" #include "ce-page.h" G_BEGIN_DECLS #define CE_TYPE_PAGE_RESET (ce_page_reset_get_type ()) #define CE_PAGE_RESET(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), CE_TYPE_PAGE_RESET, CEPageReset)) #define CE_PAGE_RESET_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), CE_TYPE_PAGE_RESET, CEPageResetClass)) #define CE_IS_PAGE_RESET(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), CE_TYPE_PAGE_RESET)) #define CE_IS_PAGE_RESET_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), CE_TYPE_PAGE_RESET)) #define CE_PAGE_RESET_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), CE_TYPE_PAGE_RESET, CEPageResetClass)) typedef struct _CEPageReset CEPageReset; typedef struct _CEPageResetClass CEPageResetClass; struct _CEPageReset { CEPage parent; NetConnectionEditor *editor; }; struct _CEPageResetClass { CEPageClass parent_class; }; GType ce_page_reset_get_type (void); CEPage *ce_page_reset_new (NMConnection *connection, NMClient *client, NetConnectionEditor *editor); G_END_DECLS #endif /* __CE_PAGE_RESET_H */ cinnamon-control-center-6.2.0/panels/network/connection-editor/net-connection-editor.h0000664000175000017500000000721514632072346030173 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2012 Red Hat, Inc. * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __NET_CONNECTION_EDITOR_H #define __NET_CONNECTION_EDITOR_H #include #include #include G_BEGIN_DECLS #define NET_TYPE_CONNECTION_EDITOR (net_connection_editor_get_type ()) #define NET_CONNECTION_EDITOR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), NET_TYPE_CONNECTION_EDITOR, NetConnectionEditor)) #define NET_CONNECTION_EDITOR_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), NET_TYPE_CONNECTION_EDITOR, NetConnectionEditorClass)) #define NET_IS_CONNECTION_EDITOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), NET_TYPE_CONNECTION_EDITOR)) #define NET_IS_CONNECTION_EDITOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), NET_TYPE_CONNECTION_EDITOR)) #define NET_CONNECTION_EDITOR_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), NET_TYPE_CONNECTION_EDITOR, NetConnectionEditorClass)) typedef struct _NetConnectionEditor NetConnectionEditor; typedef struct _NetConnectionEditorClass NetConnectionEditorClass; struct _NetConnectionEditor { GObject parent; GtkWidget *parent_window; NMClient *client; NMDevice *device; NMConnection *connection; NMConnection *orig_connection; gboolean is_new_connection; gboolean is_changed; NMAccessPoint *ap; GtkBuilder *builder; GtkWidget *window; GSList *initializing_pages; GSList *pages; guint permission_id; NMClientPermissionResult can_modify; gboolean title_set; gboolean show_when_initialized; }; struct _NetConnectionEditorClass { GObjectClass parent_class; void (*done) (NetConnectionEditor *details, gboolean success); }; GType net_connection_editor_get_type (void); NetConnectionEditor *net_connection_editor_new (GtkWindow *parent_window, NMConnection *connection, NMDevice *device, NMAccessPoint *ap, NMClient *client); void net_connection_editor_set_title (NetConnectionEditor *editor, const gchar *title); void net_connection_editor_run (NetConnectionEditor *editor); void net_connection_editor_present (NetConnectionEditor *editor); void net_connection_editor_forget (NetConnectionEditor *editor); void net_connection_editor_reset (NetConnectionEditor *editor); G_END_DECLS #endif /* __NET_CONNECTION_EDITOR_H */ cinnamon-control-center-6.2.0/panels/network/connection-editor/ce-page-details.c0000664000175000017500000002041414632072346026677 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2012 Red Hat, Inc * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "config.h" #include #include #include #include "../panel-common.h" #include "ce-page-details.h" G_DEFINE_TYPE (CEPageDetails, ce_page_details, CE_TYPE_PAGE) static gchar * get_ap_security_string (NMAccessPoint *ap) { NM80211ApSecurityFlags wpa_flags, rsn_flags; NM80211ApFlags flags; GString *str; flags = nm_access_point_get_flags (ap); wpa_flags = nm_access_point_get_wpa_flags (ap); rsn_flags = nm_access_point_get_rsn_flags (ap); str = g_string_new (""); if ((flags & NM_802_11_AP_FLAGS_PRIVACY) && (wpa_flags == NM_802_11_AP_SEC_NONE) && (rsn_flags == NM_802_11_AP_SEC_NONE)) { /* TRANSLATORS: this WEP WiFi security */ g_string_append_printf (str, "%s, ", _("WEP")); } if (wpa_flags != NM_802_11_AP_SEC_NONE) { /* TRANSLATORS: this WPA WiFi security */ g_string_append_printf (str, "%s, ", _("WPA")); } if (rsn_flags != NM_802_11_AP_SEC_NONE) { /* TRANSLATORS: this WPA WiFi security */ g_string_append_printf (str, "%s, ", _("WPA2")); } if ((wpa_flags & NM_802_11_AP_SEC_KEY_MGMT_802_1X) || (rsn_flags & NM_802_11_AP_SEC_KEY_MGMT_802_1X)) { /* TRANSLATORS: this Enterprise WiFi security */ g_string_append_printf (str, "%s, ", _("Enterprise")); } if (str->len > 0) g_string_set_size (str, str->len - 2); else { g_string_append (str, C_("Wifi security", "None")); } return g_string_free (str, FALSE); } static void update_last_used (CEPageDetails *page, NMConnection *connection) { gchar *last_used = NULL; GDateTime *now = NULL; GDateTime *then = NULL; gint days; GTimeSpan diff; guint64 timestamp; NMSettingConnection *s_con; s_con = nm_connection_get_setting_connection (connection); if (s_con == NULL) goto out; timestamp = nm_setting_connection_get_timestamp (s_con); if (timestamp == 0) { last_used = g_strdup (_("Never")); goto out; } /* calculate the amount of time that has elapsed */ now = g_date_time_new_now_utc (); then = g_date_time_new_from_unix_utc (timestamp); diff = g_date_time_difference (now, then); days = diff / G_TIME_SPAN_DAY; if (days == 0) last_used = g_strdup (_("Today")); else if (days == 1) last_used = g_strdup (_("Yesterday")); else last_used = g_strdup_printf (ngettext ("%i day ago", "%i days ago", days), days); out: panel_set_device_widget_details (CE_PAGE (page)->builder, "last_used", last_used); if (now != NULL) g_date_time_unref (now); if (then != NULL) g_date_time_unref (then); g_free (last_used); } static void connect_details_page (CEPageDetails *page) { guint speed; guint strength; NMDeviceState state; NMAccessPoint *active_ap; const gchar *str; gboolean device_is_active; if (NM_IS_DEVICE_WIFI (page->device)) active_ap = nm_device_wifi_get_active_access_point (NM_DEVICE_WIFI (page->device)); else active_ap = NULL; state = page->device ? nm_device_get_state (page->device) : NM_DEVICE_STATE_DISCONNECTED; device_is_active = FALSE; speed = 0; if (active_ap && page->ap == active_ap && state != NM_DEVICE_STATE_UNAVAILABLE) { device_is_active = TRUE; if (NM_IS_DEVICE_WIFI (page->device)) speed = nm_device_wifi_get_bitrate (NM_DEVICE_WIFI (page->device)) / 1000; } else if (page->device) { NMActiveConnection *ac; const gchar *p1, *p2; ac = nm_device_get_active_connection (page->device); p1 = ac ? nm_active_connection_get_uuid (ac) : NULL; p2 = nm_connection_get_uuid (CE_PAGE (page)->connection); if (g_strcmp0 (p1, p2) == 0) { device_is_active = TRUE; if (NM_IS_DEVICE_WIFI (page->device)) speed = nm_device_wifi_get_bitrate (NM_DEVICE_WIFI (page->device)) / 1000; else if (NM_IS_DEVICE_ETHERNET (page->device)) speed = nm_device_ethernet_get_speed (NM_DEVICE_ETHERNET (page->device)); } } if (speed > 0) str = g_strdup_printf (_("%d Mb/s"), speed); else str = NULL; panel_set_device_widget_details (CE_PAGE (page)->builder, "speed", str); g_clear_pointer (&str, g_free); if (NM_IS_DEVICE_WIFI (page->device)) str = nm_device_wifi_get_hw_address (NM_DEVICE_WIFI (page->device)); else if (NM_IS_DEVICE_ETHERNET (page->device)) str = nm_device_ethernet_get_hw_address (NM_DEVICE_ETHERNET (page->device)); panel_set_device_widget_details (CE_PAGE (page)->builder, "mac", str); str = NULL; if (device_is_active && active_ap) str = get_ap_security_string (active_ap); panel_set_device_widget_details (CE_PAGE (page)->builder, "security", str); g_clear_pointer (&str, g_free); strength = 0; if (page->ap != NULL) strength = nm_access_point_get_strength (page->ap); if (strength <= 0) str = NULL; else if (strength < 20) str = C_("Signal strength", "None"); else if (strength < 40) str = C_("Signal strength", "Weak"); else if (strength < 50) str = C_("Signal strength", "Ok"); else if (strength < 80) str = C_("Signal strength", "Good"); else str = C_("Signal strength", "Excellent"); panel_set_device_widget_details (CE_PAGE (page)->builder, "strength", str); /* set IP entries */ if (device_is_active) panel_set_device_widgets (CE_PAGE (page)->builder, page->device); else panel_unset_device_widgets (CE_PAGE (page)->builder); if (!device_is_active && CE_PAGE (page)->connection) update_last_used (page, CE_PAGE (page)->connection); else panel_set_device_widget_details (CE_PAGE (page)->builder, "last_used", NULL); } static void ce_page_details_init (CEPageDetails *page) { } static void ce_page_details_class_init (CEPageDetailsClass *class) { } CEPage * ce_page_details_new (NMConnection *connection, NMClient *client, NMDevice *device, NMAccessPoint *ap) { CEPageDetails *page; page = CE_PAGE_DETAILS (ce_page_new (CE_TYPE_PAGE_DETAILS, connection, client, "/org/cinnamon/control-center/network/details-page.ui", _("Details"))); page->device = device; page->ap = ap; connect_details_page (page); return CE_PAGE (page); } cinnamon-control-center-6.2.0/panels/network/connection-editor/ce-page-ip6.h0000664000175000017500000000436214632072346025761 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2012 Red Hat, Inc. * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more ip6. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __CE_PAGE_IP6_H #define __CE_PAGE_IP6_H #include #include #include "ce-page.h" G_BEGIN_DECLS #define CE_TYPE_PAGE_IP6 (ce_page_ip6_get_type ()) #define CE_PAGE_IP6(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), CE_TYPE_PAGE_IP6, CEPageIP6)) #define CE_PAGE_IP6_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), CE_TYPE_PAGE_IP6, CEPageIP6Class)) #define CE_IS_PAGE_IP6(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), CE_TYPE_PAGE_IP6)) #define CE_IS_PAGE_IP6_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), CE_TYPE_PAGE_IP6)) #define CE_PAGE_IP6_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), CE_TYPE_PAGE_IP6, CEPageIP6Class)) typedef struct _CEPageIP6 CEPageIP6; typedef struct _CEPageIP6Class CEPageIP6Class; struct _CEPageIP6 { CEPage parent; NMSettingIPConfig *setting; GtkSwitch *enabled; GtkComboBox *method; GtkWidget *address_list; GtkSwitch *auto_dns; GtkWidget *dns_list; GtkSwitch *auto_routes; GtkWidget *routes_list; GtkWidget *never_default; }; struct _CEPageIP6Class { CEPageClass parent_class; }; GType ce_page_ip6_get_type (void); CEPage *ce_page_ip6_new (NMConnection *connection, NMClient *client); G_END_DECLS #endif /* __CE_PAGE_IP6_H */ cinnamon-control-center-6.2.0/panels/network/connection-editor/ce-page.h0000664000175000017500000001045014632072346025260 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2012 Red Hat, Inc. * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __CE_PAGE_H #define __CE_PAGE_H #include #include #include G_BEGIN_DECLS #define CE_TYPE_PAGE (ce_page_get_type ()) #define CE_PAGE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), CE_TYPE_PAGE, CEPage)) #define CE_PAGE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), CE_TYPE_PAGE, CEPageClass)) #define CE_IS_PAGE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), CE_TYPE_PAGE)) #define CE_IS_PAGE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), CE_TYPE_PAGE)) #define CE_PAGE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), CE_TYPE_PAGE, CEPageClass)) typedef struct _CEPage CEPage; typedef struct _CEPageClass CEPageClass; struct _CEPage { GObject parent; gboolean initialized; GtkBuilder *builder; GtkWidget *page; gchar *title; const gchar *security_setting; NMConnection *connection; NMClient *client; GCancellable *cancellable; }; struct _CEPageClass { GObjectClass parent_class; gboolean (*validate) (CEPage *page, NMConnection *connection, GError **error); void (*changed) (CEPage *page); void (*initialized) (CEPage *page, GError *error); }; GType ce_page_get_type (void); GtkWidget *ce_page_get_page (CEPage *page); const gchar *ce_page_get_title (CEPage *page); const gchar *ce_page_get_security_setting (CEPage *page); gboolean ce_page_validate (CEPage *page, NMConnection *connection, GError **error); gboolean ce_page_get_initialized (CEPage *page); void ce_page_changed (CEPage *page); CEPage *ce_page_new (GType type, NMConnection *connection, NMClient *client, const gchar *ui_resource, const gchar *title); void ce_page_complete_init (CEPage *page, const gchar *setting_name, GVariant *variant, GError *error); gchar **ce_page_get_mac_list (NMClient *client, GType device_type, const gchar *mac_property); void ce_page_setup_mac_combo (GtkComboBoxText *combo, const gchar *current_mac, gchar **mac_list); gint ce_get_property_default (NMSetting *setting, const gchar *property_name); gint ce_spin_output_with_default (GtkSpinButton *spin, gpointer user_data); gboolean ce_page_address_is_valid (const gchar *addr); gchar *ce_page_trim_address (const gchar *addr); typedef enum { NAME_FORMAT_TYPE, NAME_FORMAT_PROFILE } NameFormat; gchar * ce_page_get_next_available_name (const GPtrArray *connections, NameFormat format, const gchar *type_name); G_END_DECLS #endif /* __CE_PAGE_H */ cinnamon-control-center-6.2.0/panels/network/connection-editor/details-page.ui0000664000175000017500000003201014632072346026500 0ustar fabiofabio True False start 50 50 12 12 True True 10 6 True False True 1 Signal Strength label_strength 0 0 1 1 True True True 0 Weak True 1 0 1 1 True False 1 Link speed label_speed 0 1 1 1 True True 0 1Mb/sec True 1 1 1 1 True False 1 Security label_security 0 2 1 1 True False 1 IPv4 Address label_ipv4 0 3 1 1 True False 1 0 IPv6 Address label_ipv6 0 4 1 1 True False 1 Hardware Address label_mac 0 5 1 1 True False 1 Default Route label_route 0 6 1 1 True False 1 0 DNS4 label_dns4 0 7 1 1 True False 1 0 DNS6 label_dns6 0 8 1 1 True False 1 Last Used label_last_used 0 8 1 1 True True 0 WPA True 1 2 1 1 True True 0 127.0.0.1 True 1 3 1 1 True True 0 ::1 True 1 4 1 1 True True 0 AA:BB:CC:DD:55:66:77:88 True 1 5 1 1 True True 0 127.0.0.1 True 1 6 1 1 True True 0 0 127.0.0.1 True True 1 7 1 1 True True 0 0 ::1 True True 1 8 1 1 True True 0 today True 1 8 1 1 cinnamon-control-center-6.2.0/panels/network/connection-editor/vpn-helpers.c0000664000175000017500000002747314632072346026232 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Connection editor -- Connection editor for NetworkManager * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * (C) Copyright 2008 Red Hat, Inc. */ #include "config.h" #include #include #include #include #include #include #include "vpn-helpers.h" NMVpnEditorPlugin * vpn_get_plugin_by_service (const char *service) { NMVpnPluginInfo *plugin_info; g_return_val_if_fail (service != NULL, NULL); plugin_info = nm_vpn_plugin_info_list_find_by_service (vpn_get_plugins (), service); if (plugin_info) return nm_vpn_plugin_info_get_editor_plugin (plugin_info); return NULL; } static gint _sort_vpn_plugins (NMVpnPluginInfo *aa, NMVpnPluginInfo *bb) { return strcmp (nm_vpn_plugin_info_get_name (aa), nm_vpn_plugin_info_get_name (bb)); } GSList * vpn_get_plugins (void) { static gboolean plugins_loaded = FALSE; static GSList *plugins = NULL; GSList *p; if (G_LIKELY (plugins_loaded)) return plugins; plugins_loaded = TRUE; p = nm_vpn_plugin_info_list_load (); plugins = NULL; while (p) { NMVpnPluginInfo *plugin_info = NM_VPN_PLUGIN_INFO (p->data); GError *error = NULL; /* load the editor plugin, and preserve only those NMVpnPluginInfo that can * successfully load the plugin. */ if (nm_vpn_plugin_info_load_editor_plugin (plugin_info, &error)) plugins = g_slist_prepend (plugins, plugin_info); else { if ( !nm_vpn_plugin_info_get_plugin (plugin_info) && nm_vpn_plugin_info_lookup_property (plugin_info, NM_VPN_PLUGIN_INFO_KF_GROUP_GNOME, "properties")) { g_message ("vpn: (%s,%s) cannot load legacy-only plugin", nm_vpn_plugin_info_get_name (plugin_info), nm_vpn_plugin_info_get_filename (plugin_info)); } else if (g_error_matches (error, G_FILE_ERROR, G_FILE_ERROR_NOENT)) { g_message ("vpn: (%s,%s) file \"%s\" not found. Did you install the client package?", nm_vpn_plugin_info_get_name (plugin_info), nm_vpn_plugin_info_get_filename (plugin_info), nm_vpn_plugin_info_get_plugin (plugin_info)); } else { g_warning ("vpn: (%s,%s) could not load plugin: %s", nm_vpn_plugin_info_get_name (plugin_info), nm_vpn_plugin_info_get_filename (plugin_info), error->message); } g_clear_error (&error); g_object_unref (plugin_info); } p = g_slist_delete_link (p, p); } /* sort the list of plugins alphabetically. */ plugins = g_slist_sort (plugins, (GCompareFunc) _sort_vpn_plugins); return plugins; } typedef struct { VpnImportCallback callback; gpointer user_data; } ActionInfo; static void import_vpn_from_file_cb (GtkWidget *dialog, gint response, gpointer user_data) { char *filename = NULL; ActionInfo *info = (ActionInfo *) user_data; NMConnection *connection = NULL; GError *error = NULL; GSList *iter; if (response != GTK_RESPONSE_ACCEPT) goto out; filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog)); if (!filename) { g_warning ("%s: didn't get a filename back from the chooser!", __func__); goto out; } for (iter = vpn_get_plugins (); !connection && iter; iter = iter->next) { NMVpnEditorPlugin *plugin; plugin = nm_vpn_plugin_info_get_editor_plugin (iter->data); g_clear_error (&error); connection = nm_vpn_editor_plugin_import (plugin, filename, &error); } if (!connection) { GtkWidget *err_dialog; char *bname = g_path_get_basename (filename); err_dialog = gtk_message_dialog_new (GTK_WINDOW (dialog), GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, _("Cannot import VPN connection")); gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (err_dialog), _("The file ā€œ%sā€ could not be read or does not contain recognized VPN connection information\n\nError: %s."), bname, error ? error->message : "unknown error"); g_free (bname); g_signal_connect (err_dialog, "delete-event", G_CALLBACK (gtk_widget_destroy), NULL); g_signal_connect (err_dialog, "response", G_CALLBACK (gtk_widget_destroy), NULL); gtk_dialog_run (GTK_DIALOG (err_dialog)); } g_clear_error (&error); g_free (filename); out: gtk_widget_hide (dialog); gtk_widget_destroy (dialog); info->callback (connection, info->user_data); g_free (info); } static void destroy_import_chooser (GtkWidget *dialog, gpointer user_data) { ActionInfo *info = (ActionInfo *) user_data; gtk_widget_destroy (dialog); info->callback (NULL, info->user_data); g_free (info); } void vpn_import (GtkWindow *parent, VpnImportCallback callback, gpointer user_data) { GtkWidget *dialog; ActionInfo *info; const char *home_folder; dialog = gtk_file_chooser_dialog_new (_("Select file to import"), parent, GTK_FILE_CHOOSER_ACTION_OPEN, _("_Cancel"), GTK_RESPONSE_CANCEL, _("_Open"), GTK_RESPONSE_ACCEPT, NULL); gtk_window_set_modal (GTK_WINDOW (dialog), TRUE); home_folder = g_get_home_dir (); gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (dialog), home_folder); info = g_malloc0 (sizeof (ActionInfo)); info->callback = callback; info->user_data = user_data; g_signal_connect (G_OBJECT (dialog), "close", G_CALLBACK (destroy_import_chooser), info); g_signal_connect (G_OBJECT (dialog), "response", G_CALLBACK (import_vpn_from_file_cb), info); gtk_widget_show_all (dialog); gtk_window_present (GTK_WINDOW (dialog)); } static void export_vpn_to_file_cb (GtkWidget *dialog, gint response, gpointer user_data) { NMConnection *connection = NM_CONNECTION (user_data); char *filename = NULL; GError *error = NULL; NMVpnEditorPlugin *plugin; NMSettingConnection *s_con = NULL; NMSettingVpn *s_vpn = NULL; const char *service_type; const char *id = NULL; gboolean success = FALSE; if (response != GTK_RESPONSE_ACCEPT) goto out; filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog)); if (!filename) { g_set_error (&error, G_IO_ERROR, G_IO_ERROR_FAILED, "no filename"); goto done; } if (g_file_test (filename, G_FILE_TEST_EXISTS)) { int replace_response; GtkWidget *replace_dialog; char *bname; bname = g_path_get_basename (filename); replace_dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_QUESTION, GTK_BUTTONS_CANCEL, _("A file named ā€œ%sā€ already exists."), bname); gtk_dialog_add_buttons (GTK_DIALOG (replace_dialog), _("_Replace"), GTK_RESPONSE_OK, NULL); gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (replace_dialog), _("Do you want to replace %s with the VPN connection you are saving?"), bname); g_free (bname); replace_response = gtk_dialog_run (GTK_DIALOG (replace_dialog)); gtk_widget_destroy (replace_dialog); if (replace_response != GTK_RESPONSE_OK) goto out; } s_con = nm_connection_get_setting_connection (connection); id = s_con ? nm_setting_connection_get_id (s_con) : NULL; if (!id) { g_set_error (&error, G_IO_ERROR, G_IO_ERROR_FAILED, "connection setting invalid"); goto done; } s_vpn = nm_connection_get_setting_vpn (connection); service_type = s_vpn ? nm_setting_vpn_get_service_type (s_vpn) : NULL; if (!service_type) { g_set_error (&error, G_IO_ERROR, G_IO_ERROR_FAILED, "VPN setting invalid"); goto done; } plugin = vpn_get_plugin_by_service (service_type); if (plugin) success = nm_vpn_editor_plugin_export (plugin, filename, connection, &error); done: if (!success) { GtkWidget *err_dialog; char *bname = filename ? g_path_get_basename (filename) : g_strdup ("(none)"); err_dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, _("Cannot export VPN connection")); gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (err_dialog), _("The VPN connection ā€œ%sā€ could not be exported to %s.\n\nError: %s."), id ? id : "(unknown)", bname, error ? error->message : "unknown error"); g_free (bname); g_signal_connect (err_dialog, "delete-event", G_CALLBACK (gtk_widget_destroy), NULL); g_signal_connect (err_dialog, "response", G_CALLBACK (gtk_widget_destroy), NULL); gtk_widget_show_all (err_dialog); gtk_window_present (GTK_WINDOW (err_dialog)); } out: if (error) g_error_free (error); g_object_unref (connection); gtk_widget_hide (dialog); gtk_widget_destroy (dialog); } void vpn_export (NMConnection *connection) { GtkWidget *dialog; NMVpnEditorPlugin *plugin; NMSettingVpn *s_vpn = NULL; const char *service_type; const char *home_folder; s_vpn = nm_connection_get_setting_vpn (connection); service_type = s_vpn ? nm_setting_vpn_get_service_type (s_vpn) : NULL; if (!service_type) { g_warning ("%s: invalid VPN connection!", __func__); return; } dialog = gtk_file_chooser_dialog_new (_("Export VPN connection"), NULL, GTK_FILE_CHOOSER_ACTION_SAVE, _("_Cancel"), GTK_RESPONSE_CANCEL, _("_Save"), GTK_RESPONSE_ACCEPT, NULL); home_folder = g_get_home_dir (); gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER (dialog), home_folder); plugin = vpn_get_plugin_by_service (service_type); if (plugin) { char *suggested = NULL; suggested = nm_vpn_editor_plugin_get_suggested_filename (plugin, connection); if (suggested) { gtk_file_chooser_set_current_name (GTK_FILE_CHOOSER (dialog), suggested); g_free (suggested); } } g_signal_connect (G_OBJECT (dialog), "close", G_CALLBACK (gtk_widget_destroy), NULL); g_signal_connect (G_OBJECT (dialog), "response", G_CALLBACK (export_vpn_to_file_cb), g_object_ref (connection)); gtk_widget_show_all (dialog); gtk_window_present (GTK_WINDOW (dialog)); } gboolean vpn_supports_ipv6 (NMConnection *connection) { NMSettingVpn *s_vpn; const char *service_type; NMVpnEditorPlugin *plugin; guint32 capabilities; s_vpn = nm_connection_get_setting_vpn (connection); g_return_val_if_fail (s_vpn != NULL, FALSE); service_type = nm_setting_vpn_get_service_type (s_vpn); g_return_val_if_fail (service_type != NULL, FALSE); plugin = vpn_get_plugin_by_service (service_type); g_return_val_if_fail (plugin != NULL, FALSE); capabilities = nm_vpn_editor_plugin_get_capabilities (plugin); return (capabilities & NM_VPN_EDITOR_PLUGIN_CAPABILITY_IPV6) != 0; } cinnamon-control-center-6.2.0/panels/network/connection-editor/ce-page-8021x-security.c0000664000175000017500000001362614632072346027710 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Connection editor -- Connection editor for NetworkManager * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * (C) Copyright 2008 - 2012 Red Hat, Inc. */ #include "config.h" #include #include #include #include #include "wireless-security.h" #include "ce-page-ethernet.h" #include "ce-page-8021x-security.h" G_DEFINE_TYPE (CEPage8021xSecurity, ce_page_8021x_security, CE_TYPE_PAGE) static void enable_toggled (GObject *sw, GParamSpec *pspec, gpointer user_data) { CEPage8021xSecurity *page = CE_PAGE_8021X_SECURITY (user_data); gtk_widget_set_sensitive (page->security_widget, gtk_switch_get_active (page->enabled)); ce_page_changed (CE_PAGE (page)); } static void stuff_changed (WirelessSecurity *sec, gpointer user_data) { ce_page_changed (CE_PAGE (user_data)); } static void finish_setup (CEPage8021xSecurity *page, gpointer unused, GError *error, gpointer user_data) { GtkWidget *parent; GtkWidget *vbox; GtkWidget *heading; if (error) return; vbox = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "vbox")); heading = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "heading_sec")); page->group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL); page->security = (WirelessSecurity *) ws_wpa_eap_new (CE_PAGE (page)->connection, TRUE, FALSE); if (!page->security) { g_warning ("Could not load 802.1x user interface."); return; } wireless_security_set_changed_notify (page->security, stuff_changed, page); page->security_widget = wireless_security_get_widget (page->security); parent = gtk_widget_get_parent (page->security_widget); if (parent) gtk_container_remove (GTK_CONTAINER (parent), page->security_widget); gtk_switch_set_active (page->enabled, page->initial_have_8021x); g_signal_connect (page->enabled, "notify::active", G_CALLBACK (enable_toggled), page); gtk_widget_set_sensitive (page->security_widget, page->initial_have_8021x); gtk_size_group_add_widget (page->group, heading); wireless_security_add_to_size_group (page->security, page->group); gtk_container_add (GTK_CONTAINER (vbox), page->security_widget); } CEPage * ce_page_8021x_security_new (NMConnection *connection, NMClient *client) { CEPage8021xSecurity *page; page = CE_PAGE_8021X_SECURITY (ce_page_new (CE_TYPE_PAGE_8021X_SECURITY, connection, client, "/org/cinnamon/control-center/network/8021x-security-page.ui", _("Security"))); if (nm_connection_get_setting_802_1x (connection)) page->initial_have_8021x = TRUE; page->enabled = GTK_SWITCH (gtk_builder_get_object (CE_PAGE (page)->builder, "8021x_switch")); g_signal_connect (page, "initialized", G_CALLBACK (finish_setup), NULL); if (page->initial_have_8021x) CE_PAGE (page)->security_setting = NM_SETTING_802_1X_SETTING_NAME; return CE_PAGE (page); } static gboolean validate (CEPage *cepage, NMConnection *connection, GError **error) { CEPage8021xSecurity *page = CE_PAGE_8021X_SECURITY (cepage); gboolean valid = TRUE; if (gtk_switch_get_active (page->enabled)) { NMConnection *tmp_connection; NMSetting *s_8021x; /* FIXME: get failed property and error out of wireless security objects */ valid = wireless_security_validate (page->security, error); if (valid) { NMSetting *s_con; /* Here's a nice hack to work around the fact that ws_802_1x_fill_connection needs wireless setting. */ tmp_connection = nm_simple_connection_new (); nm_connection_add_setting (tmp_connection, nm_setting_wireless_new ()); /* temp connection needs a 'connection' setting too, since most of * the EAP methods need the UUID for CA cert ignore stuff. */ s_con = nm_connection_get_setting (connection, NM_TYPE_SETTING_CONNECTION); nm_connection_add_setting (tmp_connection, nm_setting_duplicate (s_con)); ws_802_1x_fill_connection (page->security, "wpa_eap_auth_combo", tmp_connection); s_8021x = nm_connection_get_setting (tmp_connection, NM_TYPE_SETTING_802_1X); nm_connection_add_setting (connection, NM_SETTING (g_object_ref (s_8021x))); g_object_unref (tmp_connection); } } else { nm_connection_remove_setting (connection, NM_TYPE_SETTING_802_1X); valid = TRUE; } return valid; } static void ce_page_8021x_security_init (CEPage8021xSecurity *page) { } static void dispose (GObject *object) { CEPage8021xSecurity *page = CE_PAGE_8021X_SECURITY (object); if (page->security) { wireless_security_unref (page->security); page->security = NULL; } g_clear_object (&page->group); G_OBJECT_CLASS (ce_page_8021x_security_parent_class)->dispose (object); } static void ce_page_8021x_security_class_init (CEPage8021xSecurityClass *security_class) { GObjectClass *object_class = G_OBJECT_CLASS (security_class); CEPageClass *parent_class = CE_PAGE_CLASS (security_class); /* virtual methods */ object_class->dispose = dispose; parent_class->validate = validate; } cinnamon-control-center-6.2.0/panels/network/connection-editor/ui-helpers.c0000664000175000017500000000231714632072346026032 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * (C) Copyright 2014 Red Hat, Inc. */ #include "config.h" #include "ui-helpers.h" void widget_set_error (GtkWidget *widget) { g_return_if_fail (GTK_IS_WIDGET (widget)); gtk_style_context_add_class (gtk_widget_get_style_context (widget), "error"); } void widget_unset_error (GtkWidget *widget) { g_return_if_fail (GTK_IS_WIDGET (widget)); gtk_style_context_remove_class (gtk_widget_get_style_context (widget), "error"); } cinnamon-control-center-6.2.0/panels/network/connection-editor/net-connection-editor.c0000664000175000017500000010162114632072346030162 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2012 Red Hat, Inc * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "config.h" #include #include #include #include "shell/list-box-helper.h" #include "net-connection-editor.h" #include "net-connection-editor-resources.h" #include "ce-page-details.h" #include "ce-page-wifi.h" #include "ce-page-ip4.h" #include "ce-page-ip6.h" #include "ce-page-security.h" #include "ce-page-reset.h" #include "ce-page-ethernet.h" #include "ce-page-8021x-security.h" #include "ce-page-vpn.h" #include "vpn-helpers.h" #include "eap-method.h" enum { DONE, LAST_SIGNAL }; static guint signals[LAST_SIGNAL] = { 0 }; G_DEFINE_TYPE (NetConnectionEditor, net_connection_editor, G_TYPE_OBJECT) static void page_changed (CEPage *page, gpointer user_data); static void selection_changed (GtkTreeSelection *selection, NetConnectionEditor *editor) { GtkWidget *widget; GtkTreeModel *model; GtkTreeIter iter; gint page; if (!gtk_tree_selection_get_selected (selection, &model, &iter)) return; gtk_tree_model_get (model, &iter, 1, &page, -1); widget = GTK_WIDGET (gtk_builder_get_object (editor->builder, "details_notebook")); gtk_notebook_set_current_page (GTK_NOTEBOOK (widget), page); } static void cancel_editing (NetConnectionEditor *editor) { gtk_widget_hide (editor->window); g_signal_emit (editor, signals[DONE], 0, FALSE); } static void update_connection (NetConnectionEditor *editor) { GVariant *settings; settings = nm_connection_to_dbus (editor->connection, NM_CONNECTION_SERIALIZE_ALL); nm_connection_replace_settings (editor->orig_connection, settings, NULL); g_variant_unref (settings); } static void update_complete (NetConnectionEditor *editor, gboolean success) { gtk_widget_hide (editor->window); g_signal_emit (editor, signals[DONE], 0, success); } static void updated_connection_cb (GObject *source_object, GAsyncResult *res, gpointer user_data) { NetConnectionEditor *editor; GError *error = NULL; gboolean success = TRUE; if (!nm_remote_connection_commit_changes_finish (NM_REMOTE_CONNECTION (source_object), res, &error)) { g_warning ("Failed to commit changes: %s", error->message); success = FALSE; g_error_free (error); //return; FIXME return if cancelled } nm_connection_clear_secrets (NM_CONNECTION (source_object)); editor = user_data; update_complete (editor, success); } static void added_connection_cb (GObject *source_object, GAsyncResult *res, gpointer user_data) { NetConnectionEditor *editor; GError *error = NULL; gboolean success = TRUE; if (!nm_client_add_connection_finish (NM_CLIENT (source_object), res, &error)) { g_warning ("Failed to add connection: %s", error->message); success = FALSE; g_error_free (error); /* Leave the editor open */ // return; FIXME return if cancelled } editor = user_data; update_complete (editor, success); } static void apply_edits (NetConnectionEditor *editor) { update_connection (editor); eap_method_ca_cert_ignore_save (editor->connection); if (editor->is_new_connection) { nm_client_add_connection_async (editor->client, editor->orig_connection, TRUE, NULL, added_connection_cb, editor); } else { nm_remote_connection_commit_changes_async (NM_REMOTE_CONNECTION (editor->orig_connection), TRUE, NULL, updated_connection_cb, editor); } } static void net_connection_editor_init (NetConnectionEditor *editor) { GError *error = NULL; GtkTreeSelection *selection; editor->builder = gtk_builder_new (); gtk_builder_add_from_resource (editor->builder, "/org/cinnamon/control-center/network/connection-editor.ui", &error); if (error != NULL) { g_warning ("Could not load ui file: %s", error->message); g_error_free (error); return; } editor->window = GTK_WIDGET (gtk_builder_get_object (editor->builder, "details_dialog")); selection = GTK_TREE_SELECTION (gtk_builder_get_object (editor->builder, "details_page_list_selection")); g_signal_connect (selection, "changed", G_CALLBACK (selection_changed), editor); } void net_connection_editor_run (NetConnectionEditor *editor) { GtkWidget *button; button = GTK_WIDGET (gtk_builder_get_object (editor->builder, "details_cancel_button")); g_signal_connect_swapped (button, "clicked", G_CALLBACK (cancel_editing), editor); g_signal_connect_swapped (editor->window, "delete-event", G_CALLBACK (cancel_editing), editor); button = GTK_WIDGET (gtk_builder_get_object (editor->builder, "details_apply_button")); g_signal_connect_swapped (button, "clicked", G_CALLBACK (apply_edits), editor); net_connection_editor_present (editor); } static void net_connection_editor_finalize (GObject *object) { NetConnectionEditor *editor = NET_CONNECTION_EDITOR (object); GSList *l; for (l = editor->pages; l != NULL; l = l->next) g_signal_handlers_disconnect_by_func (l->data, page_changed, editor); if (editor->permission_id > 0 && editor->client) g_signal_handler_disconnect (editor->client, editor->permission_id); g_clear_object (&editor->connection); g_clear_object (&editor->orig_connection); if (editor->window) { gtk_widget_destroy (editor->window); editor->window = NULL; } g_clear_object (&editor->parent_window); g_clear_object (&editor->builder); g_clear_object (&editor->device); g_clear_object (&editor->client); g_clear_object (&editor->ap); G_OBJECT_CLASS (net_connection_editor_parent_class)->finalize (object); } static void net_connection_editor_class_init (NetConnectionEditorClass *class) { GObjectClass *object_class = G_OBJECT_CLASS (class); g_resources_register (net_connection_editor_get_resource ()); object_class->finalize = net_connection_editor_finalize; signals[DONE] = g_signal_new ("done", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (NetConnectionEditorClass, done), NULL, NULL, NULL, G_TYPE_NONE, 1, G_TYPE_BOOLEAN); } static void net_connection_editor_error_dialog (NetConnectionEditor *editor, const char *primary_text, const char *secondary_text) { GtkWidget *dialog; GtkWindow *parent; if (gtk_widget_is_visible (editor->window)) parent = GTK_WINDOW (editor->window); else parent = GTK_WINDOW (editor->parent_window); dialog = gtk_message_dialog_new (parent, GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, "%s", primary_text); if (secondary_text) { gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), "%s", secondary_text); } g_signal_connect (dialog, "delete-event", G_CALLBACK (gtk_widget_destroy), NULL); g_signal_connect (dialog, "response", G_CALLBACK (gtk_widget_destroy), NULL); gtk_dialog_run (GTK_DIALOG (dialog)); } static void net_connection_editor_do_fallback (NetConnectionEditor *editor, const gchar *type) { gchar *cmdline; GError *error = NULL; if (editor->is_new_connection) { cmdline = g_strdup_printf ("nm-connection-editor --type='%s' --create", type); } else { cmdline = g_strdup_printf ("nm-connection-editor --edit='%s'", nm_connection_get_uuid (editor->connection)); } g_spawn_command_line_async (cmdline, &error); g_free (cmdline); if (error) { net_connection_editor_error_dialog (editor, _("Unable to open connection editor"), error->message); g_error_free (error); } g_signal_emit (editor, signals[DONE], 0, FALSE); } static void net_connection_editor_update_title (NetConnectionEditor *editor) { gchar *id; if (editor->title_set) return; if (editor->is_new_connection) { if (editor->device) { id = g_strdup (_("New Profile")); } else { /* Leave it set to "Add New Connection" */ return; } } else { NMSettingWireless *sw; sw = nm_connection_get_setting_wireless (editor->connection); if (sw) { GBytes *ssid; ssid = nm_setting_wireless_get_ssid (sw); id = nm_utils_ssid_to_utf8 (g_bytes_get_data (ssid, NULL), g_bytes_get_size (ssid)); } else { id = g_strdup (nm_connection_get_id (editor->connection)); } } gtk_window_set_title (GTK_WINDOW (editor->window), id); g_free (id); } static gboolean editor_is_initialized (NetConnectionEditor *editor) { return editor->initializing_pages == NULL; } static void update_sensitivity (NetConnectionEditor *editor) { NMSettingConnection *sc; gboolean sensitive; GtkWidget *widget; GSList *l; if (!editor_is_initialized (editor)) return; sc = nm_connection_get_setting_connection (editor->connection); if (nm_setting_connection_get_read_only (sc)) { sensitive = FALSE; } else { sensitive = editor->can_modify; } for (l = editor->pages; l; l = l->next) { widget = ce_page_get_page (CE_PAGE (l->data)); gtk_widget_set_sensitive (widget, sensitive); } } static void validate (NetConnectionEditor *editor) { gboolean valid = FALSE; GSList *l; if (!editor_is_initialized (editor)) goto done; valid = TRUE; for (l = editor->pages; l; l = l->next) { GError *error = NULL; if (!ce_page_validate (CE_PAGE (l->data), editor->connection, &error)) { valid = FALSE; if (error) { g_debug ("Invalid setting %s: %s", ce_page_get_title (CE_PAGE (l->data)), error->message); g_error_free (error); } else { g_debug ("Invalid setting %s", ce_page_get_title (CE_PAGE (l->data))); } } } update_sensitivity (editor); done: gtk_widget_set_sensitive (GTK_WIDGET (gtk_builder_get_object (editor->builder, "details_apply_button")), valid && editor->is_changed); } static void page_changed (CEPage *page, gpointer user_data) { NetConnectionEditor *editor= user_data; if (editor_is_initialized (editor)) editor->is_changed = TRUE; validate (editor); } static gboolean idle_validate (gpointer user_data) { validate (NET_CONNECTION_EDITOR (user_data)); return G_SOURCE_REMOVE; } static void recheck_initialization (NetConnectionEditor *editor) { GtkNotebook *notebook; if (!editor_is_initialized (editor)) return; notebook = GTK_NOTEBOOK (gtk_builder_get_object (editor->builder, "details_notebook")); gtk_notebook_set_current_page (notebook, 0); if (editor->show_when_initialized) gtk_window_present (GTK_WINDOW (editor->window)); g_idle_add (idle_validate, editor); } static void page_initialized (CEPage *page, GError *error, NetConnectionEditor *editor) { GtkNotebook *notebook; GtkWidget *widget; gint position; GList *children, *l; gint i; notebook = GTK_NOTEBOOK (gtk_builder_get_object (editor->builder, "details_notebook")); widget = ce_page_get_page (page); position = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (page), "position")); g_object_set_data (G_OBJECT (widget), "position", GINT_TO_POINTER (position)); children = gtk_container_get_children (GTK_CONTAINER (notebook)); for (l = children, i = 0; l; l = l->next, i++) { gint pos = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (l->data), "position")); if (pos > position) break; } g_list_free (children); gtk_notebook_insert_page (notebook, widget, NULL, i); editor->initializing_pages = g_slist_remove (editor->initializing_pages, page); editor->pages = g_slist_append (editor->pages, page); recheck_initialization (editor); } typedef struct { NetConnectionEditor *editor; CEPage *page; const gchar *setting_name; } GetSecretsInfo; static void get_secrets_cb (GObject *source_object, GAsyncResult *res, gpointer user_data) { NMRemoteConnection *connection; GetSecretsInfo *info = user_data; GError *error = NULL; GVariant *variant; connection = NM_REMOTE_CONNECTION (source_object); variant = nm_remote_connection_get_secrets_finish (connection, res, &error); if (!variant && g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) { g_error_free (error); g_free (info); return; } ce_page_complete_init (info->page, info->setting_name, variant, error); g_variant_unref (variant); g_free (info); } static void get_secrets_for_page (NetConnectionEditor *editor, CEPage *page, const gchar *setting_name) { GetSecretsInfo *info; info = g_new0 (GetSecretsInfo, 1); info->editor = editor; info->page = page; info->setting_name = setting_name; nm_remote_connection_get_secrets_async (NM_REMOTE_CONNECTION (editor->orig_connection), setting_name, NULL, //FIXME get_secrets_cb, info); } static void add_page (NetConnectionEditor *editor, CEPage *page) { GtkListStore *store; GtkTreeIter iter; const gchar *title; gint position; store = GTK_LIST_STORE (gtk_builder_get_object (editor->builder, "details_store")); title = ce_page_get_title (page); position = g_slist_length (editor->initializing_pages); g_object_set_data (G_OBJECT (page), "position", GINT_TO_POINTER (position)); gtk_list_store_insert_with_values (store, &iter, -1, 0, title, 1, position, -1); editor->initializing_pages = g_slist_append (editor->initializing_pages, page); g_signal_connect (page, "changed", G_CALLBACK (page_changed), editor); g_signal_connect (page, "initialized", G_CALLBACK (page_initialized), editor); } static void net_connection_editor_set_connection (NetConnectionEditor *editor, NMConnection *connection) { GSList *pages, *l; NMSettingConnection *sc; const gchar *type; GtkTreeSelection *selection; GtkTreePath *path; editor->is_new_connection = !nm_client_get_connection_by_uuid (editor->client, nm_connection_get_uuid (connection)); if (editor->is_new_connection) { GtkWidget *button; button = GTK_WIDGET (gtk_builder_get_object (editor->builder, "details_apply_button")); gtk_button_set_label (GTK_BUTTON (button), _("_Add")); editor->is_changed = TRUE; } editor->connection = nm_simple_connection_new_clone (connection); editor->orig_connection = g_object_ref (connection); net_connection_editor_update_title (editor); eap_method_ca_cert_ignore_load (editor->connection); sc = nm_connection_get_setting_connection (connection); type = nm_setting_connection_get_connection_type (sc); if (!editor->is_new_connection) add_page (editor, ce_page_details_new (editor->connection, editor->client, editor->device, editor->ap)); if (strcmp (type, NM_SETTING_WIRELESS_SETTING_NAME) == 0) add_page (editor, ce_page_security_new (editor->connection, editor->client)); else if (strcmp (type, NM_SETTING_WIRED_SETTING_NAME) == 0) add_page (editor, ce_page_8021x_security_new (editor->connection, editor->client)); if (strcmp (type, NM_SETTING_WIRELESS_SETTING_NAME) == 0) add_page (editor, ce_page_wifi_new (editor->connection, editor->client)); else if (strcmp (type, NM_SETTING_WIRED_SETTING_NAME) == 0) add_page (editor, ce_page_ethernet_new (editor->connection, editor->client)); else if (strcmp (type, NM_SETTING_VPN_SETTING_NAME) == 0) add_page (editor, ce_page_vpn_new (editor->connection, editor->client)); else { /* Unsupported type */ net_connection_editor_do_fallback (editor, type); return; } add_page (editor, ce_page_ip4_new (editor->connection, editor->client)); add_page (editor, ce_page_ip6_new (editor->connection, editor->client)); if (!editor->is_new_connection) add_page (editor, ce_page_reset_new (editor->connection, editor->client, editor)); pages = g_slist_copy (editor->initializing_pages); for (l = pages; l; l = l->next) { CEPage *page = l->data; const gchar *security_setting; security_setting = ce_page_get_security_setting (page); if (!security_setting || editor->is_new_connection) { ce_page_complete_init (page, NULL, NULL, NULL); } else { get_secrets_for_page (editor, page, security_setting); } } g_slist_free (pages); selection = GTK_TREE_SELECTION (gtk_builder_get_object (editor->builder, "details_page_list_selection")); path = gtk_tree_path_new_first (); gtk_tree_selection_select_path (selection, path); gtk_tree_path_free (path); } static NMConnection * complete_vpn_connection (NetConnectionEditor *editor, NMConnection *connection) { NMSettingConnection *s_con; NMSetting *s_type; if (!connection) connection = nm_simple_connection_new (); s_con = nm_connection_get_setting_connection (connection); if (!s_con) { s_con = NM_SETTING_CONNECTION (nm_setting_connection_new ()); nm_connection_add_setting (connection, NM_SETTING (s_con)); } if (!nm_setting_connection_get_uuid (s_con)) { gchar *uuid = nm_utils_uuid_generate (); g_object_set (s_con, NM_SETTING_CONNECTION_UUID, uuid, NULL); g_free (uuid); } if (!nm_setting_connection_get_id (s_con)) { const GPtrArray *connections; gchar *id; connections = nm_client_get_connections (editor->client); id = ce_page_get_next_available_name (connections, NAME_FORMAT_TYPE, _("VPN")); g_object_set (s_con, NM_SETTING_CONNECTION_ID, id, NULL); g_free (id); } s_type = nm_connection_get_setting (connection, NM_TYPE_SETTING_VPN); if (!s_type) { s_type = g_object_new (NM_TYPE_SETTING_VPN, NULL); nm_connection_add_setting (connection, s_type); } if (!nm_setting_connection_get_connection_type (s_con)) { g_object_set (s_con, NM_SETTING_CONNECTION_TYPE, nm_setting_get_name (s_type), NULL); } return connection; } static void finish_add_connection (NetConnectionEditor *editor, NMConnection *connection) { GtkNotebook *notebook; GtkBin *frame; frame = GTK_BIN (gtk_builder_get_object (editor->builder, "details_add_connection_frame")); gtk_widget_destroy (gtk_bin_get_child (frame)); notebook = GTK_NOTEBOOK (gtk_builder_get_object (editor->builder, "details_toplevel_notebook")); gtk_notebook_set_current_page (notebook, 0); gtk_widget_show (GTK_WIDGET (gtk_builder_get_object (editor->builder, "details_apply_button"))); if (connection) net_connection_editor_set_connection (editor, connection); } static void vpn_import_complete (NMConnection *connection, gpointer user_data) { NetConnectionEditor *editor = user_data; if (!connection) { /* The import code shows its own error dialogs. */ g_signal_emit (editor, signals[DONE], 0, FALSE); return; } complete_vpn_connection (editor, connection); finish_add_connection (editor, connection); } static void vpn_type_activated (GtkListBox *list, GtkWidget *row, NetConnectionEditor *editor) { const char *service_name = g_object_get_data (G_OBJECT (row), "service_name"); NMConnection *connection; NMSettingVpn *s_vpn; NMSettingConnection *s_con; if (!strcmp (service_name, "import")) { vpn_import (GTK_WINDOW (editor->window), vpn_import_complete, editor); return; } connection = complete_vpn_connection (editor, NULL); s_vpn = nm_connection_get_setting_vpn (connection); g_object_set (s_vpn, NM_SETTING_VPN_SERVICE_TYPE, service_name, NULL); /* Mark the connection as private to this user, and non-autoconnect */ s_con = nm_connection_get_setting_connection (connection); g_object_set (s_con, NM_SETTING_CONNECTION_AUTOCONNECT, FALSE, NULL); nm_setting_connection_add_permission (s_con, "user", g_get_user_name (), NULL); finish_add_connection (editor, connection); } static void select_vpn_type (NetConnectionEditor *editor, GtkListBox *list) { GSList *vpn_plugins, *iter; GList *l; GList *children; GtkWidget *row, *row_box; GtkWidget *name_label, *desc_label; /* Get the available VPN types */ vpn_plugins = vpn_get_plugins (); /* Remove the previous menu contents */ children = gtk_container_get_children (GTK_CONTAINER (list)); for (l = children; l != NULL; l = l->next) gtk_widget_destroy (l->data); /* Add the VPN types */ for (iter = vpn_plugins; iter; iter = iter->next) { NMVpnEditorPlugin *plugin = nm_vpn_plugin_info_get_editor_plugin (iter->data); char *name, *desc, *desc_markup, *service_name; GtkStyleContext *context; g_object_get (plugin, NM_VPN_EDITOR_PLUGIN_NAME, &name, NM_VPN_EDITOR_PLUGIN_DESCRIPTION, &desc, NM_VPN_EDITOR_PLUGIN_SERVICE, &service_name, NULL); desc_markup = g_markup_printf_escaped ("%s", desc); row = gtk_list_box_row_new (); row_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); gtk_widget_set_margin_start (row_box, 12); gtk_widget_set_margin_end (row_box, 12); gtk_widget_set_margin_top (row_box, 12); gtk_widget_set_margin_bottom (row_box, 12); name_label = gtk_label_new (name); gtk_widget_set_halign (name_label, GTK_ALIGN_START); gtk_box_pack_start (GTK_BOX (row_box), name_label, FALSE, TRUE, 0); desc_label = gtk_label_new (NULL); gtk_label_set_markup (GTK_LABEL (desc_label), desc_markup); gtk_label_set_line_wrap (GTK_LABEL (desc_label), TRUE); gtk_widget_set_halign (desc_label, GTK_ALIGN_START); context = gtk_widget_get_style_context (desc_label); gtk_style_context_add_class (context, "dim-label"); gtk_box_pack_start (GTK_BOX (row_box), desc_label, FALSE, TRUE, 0); g_free (name); g_free (desc); g_free (desc_markup); gtk_container_add (GTK_CONTAINER (row), row_box); gtk_widget_show_all (row); g_object_set_data_full (G_OBJECT (row), "service_name", service_name, g_free); gtk_container_add (GTK_CONTAINER (list), row); } /* Import */ row = gtk_list_box_row_new (); row_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); gtk_widget_set_margin_start (row_box, 12); gtk_widget_set_margin_end (row_box, 12); gtk_widget_set_margin_top (row_box, 12); gtk_widget_set_margin_bottom (row_box, 12); name_label = gtk_label_new (_("Import from file…")); gtk_widget_set_halign (name_label, GTK_ALIGN_START); gtk_box_pack_start (GTK_BOX (row_box), name_label, FALSE, TRUE, 0); gtk_container_add (GTK_CONTAINER (row), row_box); gtk_widget_show_all (row); g_object_set_data (G_OBJECT (row), "service_name", "import"); gtk_container_add (GTK_CONTAINER (list), row); g_signal_connect (list, "row-activated", G_CALLBACK (vpn_type_activated), editor); } static void net_connection_editor_add_connection (NetConnectionEditor *editor) { GtkNotebook *notebook; GtkContainer *frame; GtkListBox *list; notebook = GTK_NOTEBOOK (gtk_builder_get_object (editor->builder, "details_toplevel_notebook")); frame = GTK_CONTAINER (gtk_builder_get_object (editor->builder, "details_add_connection_frame")); list = GTK_LIST_BOX (gtk_list_box_new ()); gtk_list_box_set_selection_mode (list, GTK_SELECTION_NONE); gtk_list_box_set_header_func (list, cc_list_box_update_header_func, NULL, NULL); select_vpn_type (editor, list); gtk_widget_show_all (GTK_WIDGET (list)); gtk_container_add (frame, GTK_WIDGET (list)); gtk_notebook_set_current_page (notebook, 1); gtk_widget_hide (GTK_WIDGET (gtk_builder_get_object (editor->builder, "details_apply_button"))); gtk_window_set_title (GTK_WINDOW (editor->window), _("Add VPN")); } static void permission_changed (NMClient *client, NMClientPermission permission, NMClientPermissionResult result, NetConnectionEditor *editor) { if (permission != NM_CLIENT_PERMISSION_SETTINGS_MODIFY_SYSTEM) return; if (result == NM_CLIENT_PERMISSION_RESULT_YES || result == NM_CLIENT_PERMISSION_RESULT_AUTH) editor->can_modify = TRUE; else editor->can_modify = FALSE; validate (editor); } NetConnectionEditor * net_connection_editor_new (GtkWindow *parent_window, NMConnection *connection, NMDevice *device, NMAccessPoint *ap, NMClient *client) { NetConnectionEditor *editor; editor = g_object_new (NET_TYPE_CONNECTION_EDITOR, NULL); if (parent_window) { editor->parent_window = GTK_WIDGET (g_object_ref (parent_window)); gtk_window_set_transient_for (GTK_WINDOW (editor->window), parent_window); } if (ap) editor->ap = g_object_ref (ap); if (device) editor->device = g_object_ref (device); editor->client = g_object_ref (client); editor->can_modify = nm_client_get_permission_result (client, NM_CLIENT_PERMISSION_SETTINGS_MODIFY_SYSTEM); editor->permission_id = g_signal_connect (editor->client, "permission-changed", G_CALLBACK (permission_changed), editor); if (connection) net_connection_editor_set_connection (editor, connection); else net_connection_editor_add_connection (editor); return editor; } void net_connection_editor_present (NetConnectionEditor *editor) { if (!editor_is_initialized (editor)) { editor->show_when_initialized = TRUE; return; } gtk_window_present (GTK_WINDOW (editor->window)); } static void forgotten_cb (GObject *source_object, GAsyncResult *res, gpointer user_data) { NMRemoteConnection *connection = NM_REMOTE_CONNECTION (source_object); NetConnectionEditor *editor = user_data; GError *error = NULL; if (!nm_remote_connection_delete_finish (connection, res, &error)) { if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) g_warning ("Failed to delete connection %s: %s", nm_connection_get_id (NM_CONNECTION (connection)), error->message); g_error_free (error); return; } cancel_editing (editor); } void net_connection_editor_forget (NetConnectionEditor *editor) { nm_remote_connection_delete_async (NM_REMOTE_CONNECTION (editor->orig_connection), NULL, forgotten_cb, editor); } void net_connection_editor_reset (NetConnectionEditor *editor) { GVariant *settings; settings = nm_connection_to_dbus (editor->orig_connection, NM_CONNECTION_SERIALIZE_ALL); nm_connection_replace_settings (editor->connection, settings, NULL); g_variant_unref (settings); } void net_connection_editor_set_title (NetConnectionEditor *editor, const gchar *title) { gtk_window_set_title (GTK_WINDOW (editor->window), title); editor->title_set = TRUE; } cinnamon-control-center-6.2.0/panels/network/connection-editor/ce-page-vpn.h0000664000175000017500000000416014632072346026062 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2013 Red Hat, Inc. * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more vpn. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __CE_PAGE_VPN_H #define __CE_PAGE_VPN_H #include #include #include #include "ce-page.h" G_BEGIN_DECLS #define CE_TYPE_PAGE_VPN (ce_page_vpn_get_type ()) #define CE_PAGE_VPN(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), CE_TYPE_PAGE_VPN, CEPageVpn)) #define CE_PAGE_VPN_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), CE_TYPE_PAGE_VPN, CEPageVpnClass)) #define CE_IS_PAGE_VPN(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), CE_TYPE_PAGE_VPN)) #define CE_IS_PAGE_VPN_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), CE_TYPE_PAGE_VPN)) #define CE_PAGE_VPN_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), CE_TYPE_PAGE_VPN, CEPageVpnClass)) typedef struct _CEPageVpn CEPageVpn; typedef struct _CEPageVpnClass CEPageVpnClass; struct _CEPageVpn { CEPage parent; NMSettingConnection *setting_connection; NMSettingVpn *setting_vpn; GtkEntry *name; GtkBox *box; NMVpnEditorPlugin *plugin; NMVpnEditor *editor; }; struct _CEPageVpnClass { CEPageClass parent_class; }; GType ce_page_vpn_get_type (void); CEPage *ce_page_vpn_new (NMConnection *connection, NMClient *client); G_END_DECLS #endif /* __CE_PAGE_VPN_H */ cinnamon-control-center-6.2.0/panels/network/connection-editor/ce-page.c0000664000175000017500000003767214632072346025272 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2012 Red Hat, Inc * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "config.h" #include #include #include #include #include #include "ce-page.h" G_DEFINE_ABSTRACT_TYPE (CEPage, ce_page, G_TYPE_OBJECT) enum { PROP_0, PROP_CONNECTION, PROP_INITIALIZED, }; enum { CHANGED, INITIALIZED, LAST_SIGNAL }; static guint signals[LAST_SIGNAL] = { 0 }; gboolean ce_page_validate (CEPage *page, NMConnection *connection, GError **error) { g_return_val_if_fail (CE_IS_PAGE (page), FALSE); g_return_val_if_fail (NM_IS_CONNECTION (connection), FALSE); if (CE_PAGE_GET_CLASS (page)->validate) return CE_PAGE_GET_CLASS (page)->validate (page, connection, error); return TRUE; } static void dispose (GObject *object) { CEPage *self = CE_PAGE (object); g_clear_object (&self->page); g_clear_object (&self->builder); g_clear_object (&self->connection); G_OBJECT_CLASS (ce_page_parent_class)->dispose (object); } static void finalize (GObject *object) { CEPage *self = CE_PAGE (object); g_free (self->title); if (self->cancellable) { g_cancellable_cancel (self->cancellable); g_object_unref (self->cancellable); } G_OBJECT_CLASS (ce_page_parent_class)->finalize (object); } GtkWidget * ce_page_get_page (CEPage *self) { g_return_val_if_fail (CE_IS_PAGE (self), NULL); return self->page; } const char * ce_page_get_title (CEPage *self) { g_return_val_if_fail (CE_IS_PAGE (self), NULL); return self->title; } gboolean ce_page_get_initialized (CEPage *self) { g_return_val_if_fail (CE_IS_PAGE (self), FALSE); return self->initialized; } void ce_page_changed (CEPage *self) { g_return_if_fail (CE_IS_PAGE (self)); g_signal_emit (self, signals[CHANGED], 0); } static void get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec) { CEPage *self = CE_PAGE (object); switch (prop_id) { case PROP_CONNECTION: g_value_set_object (value, self->connection); break; case PROP_INITIALIZED: g_value_set_boolean (value, self->initialized); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; } } static void set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec) { CEPage *self = CE_PAGE (object); switch (prop_id) { case PROP_CONNECTION: if (self->connection) g_object_unref (self->connection); self->connection = g_value_dup_object (value); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; } } static void ce_page_init (CEPage *self) { self->builder = gtk_builder_new (); self->cancellable = g_cancellable_new (); } static void ce_page_class_init (CEPageClass *page_class) { GObjectClass *object_class = G_OBJECT_CLASS (page_class); /* virtual methods */ object_class->dispose = dispose; object_class->finalize = finalize; object_class->get_property = get_property; object_class->set_property = set_property; /* Properties */ g_object_class_install_property (object_class, PROP_CONNECTION, g_param_spec_object ("connection", "Connection", "Connection", NM_TYPE_CONNECTION, G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY)); g_object_class_install_property (object_class, PROP_INITIALIZED, g_param_spec_boolean ("initialized", "Initialized", "Initialized", FALSE, G_PARAM_READABLE)); signals[CHANGED] = g_signal_new ("changed", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (CEPageClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); signals[INITIALIZED] = g_signal_new ("initialized", G_OBJECT_CLASS_TYPE (object_class), G_SIGNAL_RUN_FIRST, G_STRUCT_OFFSET (CEPageClass, initialized), NULL, NULL, g_cclosure_marshal_VOID__POINTER, G_TYPE_NONE, 1, G_TYPE_POINTER); } CEPage * ce_page_new (GType type, NMConnection *connection, NMClient *client, const gchar *ui_resource, const gchar *title) { CEPage *page; GError *error = NULL; page = CE_PAGE (g_object_new (type, "connection", connection, NULL)); page->title = g_strdup (title); page->client = client; if (ui_resource) { if (!gtk_builder_add_from_resource (page->builder, ui_resource, &error)) { g_warning ("Couldn't load builder file: %s", error->message); g_error_free (error); g_object_unref (page); return NULL; } page->page = GTK_WIDGET (gtk_builder_get_object (page->builder, "page")); if (!page->page) { g_warning ("Couldn't load page widget from %s", ui_resource); g_object_unref (page); return NULL; } g_object_ref_sink (page->page); } return page; } static void emit_initialized (CEPage *page, GError *error) { page->initialized = TRUE; g_signal_emit (page, signals[INITIALIZED], 0, error); g_clear_error (&error); } void ce_page_complete_init (CEPage *page, const gchar *setting_name, GVariant *secrets, GError *error) { GError *update_error = NULL; GVariant *setting_dict; gboolean ignore_error = FALSE; g_return_if_fail (page != NULL); g_return_if_fail (CE_IS_PAGE (page)); if (error) { ignore_error = g_error_matches (error, NM_CONNECTION_ERROR, NM_CONNECTION_ERROR_SETTING_NOT_FOUND) || g_error_matches (error, NM_SECRET_AGENT_ERROR, NM_SECRET_AGENT_ERROR_NO_SECRETS); } /* Ignore missing settings errors */ if (error && !ignore_error) { emit_initialized (page, error); return; } else if (!setting_name || !secrets || g_variant_n_children (secrets) == 0) { /* Success, no secrets */ emit_initialized (page, NULL); return; } g_assert (setting_name); g_assert (secrets); setting_dict = g_variant_lookup_value (secrets, setting_name, NM_VARIANT_TYPE_SETTING); if (!setting_dict) { /* Success, no secrets */ emit_initialized (page, NULL); return; } g_variant_unref (setting_dict); /* Update the connection with the new secrets */ if (nm_connection_update_secrets (page->connection, setting_name, secrets, &update_error)) { /* Success */ emit_initialized (page, NULL); return; } g_warning ("Failed to update connection secrets due to an unknown error."); emit_initialized (page, NULL); } gchar ** ce_page_get_mac_list (NMClient *client, GType device_type, const gchar *mac_property) { const GPtrArray *devices; GPtrArray *macs; int i; macs = g_ptr_array_new (); devices = nm_client_get_devices (client); for (i = 0; devices && (i < devices->len); i++) { NMDevice *dev = g_ptr_array_index (devices, i); const char *iface; char *mac, *item; if (!G_TYPE_CHECK_INSTANCE_TYPE (dev, device_type)) continue; g_object_get (G_OBJECT (dev), mac_property, &mac, NULL); iface = nm_device_get_iface (NM_DEVICE (dev)); item = g_strdup_printf ("%s (%s)", mac, iface); g_free (mac); g_ptr_array_add (macs, item); } g_ptr_array_add (macs, NULL); return (char **)g_ptr_array_free (macs, FALSE); } void ce_page_setup_mac_combo (GtkComboBoxText *combo, const gchar *current_mac, gchar **mac_list) { gchar **m, *active_mac = NULL; gint current_mac_len; GtkWidget *entry; if (current_mac) current_mac_len = strlen (current_mac); else current_mac_len = -1; for (m= mac_list; m && *m; m++) { gtk_combo_box_text_append_text (combo, *m); if (current_mac && g_ascii_strncasecmp (*m, current_mac, current_mac_len) == 0 && ((*m)[current_mac_len] == '\0' || (*m)[current_mac_len] == ' ')) active_mac = *m; } if (current_mac) { if (!active_mac) { gtk_combo_box_text_prepend_text (combo, current_mac); } entry = gtk_bin_get_child (GTK_BIN (combo)); if (entry) gtk_entry_set_text (GTK_ENTRY (entry), active_mac ? active_mac : current_mac); } } gchar * ce_page_trim_address (const gchar *addr) { char *space; if (!addr || *addr == '\0') return NULL; space = strchr (addr, ' '); if (space != NULL) return g_strndup (addr, space - addr); return g_strdup (addr); } gboolean ce_page_address_is_valid (const gchar *addr) { guint8 invalid_addr[4][ETH_ALEN] = { {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, {0x44, 0x44, 0x44, 0x44, 0x44, 0x44}, {0x00, 0x30, 0xb4, 0x00, 0x00, 0x00}, /* prism54 dummy MAC */ }; guint8 addr_bin[ETH_ALEN]; char *trimmed_addr; guint i; if (!addr || *addr == '\0') return TRUE; trimmed_addr = ce_page_trim_address (addr); if (!nm_utils_hwaddr_valid (trimmed_addr, -1)) { g_free (trimmed_addr); return FALSE; } if (!nm_utils_hwaddr_aton (trimmed_addr, addr_bin, ETH_ALEN)) { g_free (trimmed_addr); return FALSE; } g_free (trimmed_addr); /* Check for multicast address */ if ((((guint8 *) addr_bin)[0]) & 0x01) return FALSE; for (i = 0; i < G_N_ELEMENTS (invalid_addr); i++) { if (nm_utils_hwaddr_matches (addr_bin, ETH_ALEN, invalid_addr[i], ETH_ALEN)) return FALSE; } return TRUE; } const gchar * ce_page_get_security_setting (CEPage *page) { return page->security_setting; } gint ce_get_property_default (NMSetting *setting, const gchar *property_name) { GParamSpec *spec; GValue value = { 0, }; spec = g_object_class_find_property (G_OBJECT_GET_CLASS (setting), property_name); g_return_val_if_fail (spec != NULL, -1); g_value_init (&value, spec->value_type); g_param_value_set_default (spec, &value); if (G_VALUE_HOLDS_CHAR (&value)) return (int) g_value_get_schar (&value); else if (G_VALUE_HOLDS_INT (&value)) return g_value_get_int (&value); else if (G_VALUE_HOLDS_INT64 (&value)) return (int) g_value_get_int64 (&value); else if (G_VALUE_HOLDS_LONG (&value)) return (int) g_value_get_long (&value); else if (G_VALUE_HOLDS_UINT (&value)) return (int) g_value_get_uint (&value); else if (G_VALUE_HOLDS_UINT64 (&value)) return (int) g_value_get_uint64 (&value); else if (G_VALUE_HOLDS_ULONG (&value)) return (int) g_value_get_ulong (&value); else if (G_VALUE_HOLDS_UCHAR (&value)) return (int) g_value_get_uchar (&value); g_return_val_if_fail (FALSE, 0); return 0; } gint ce_spin_output_with_default (GtkSpinButton *spin, gpointer user_data) { gint defvalue = GPOINTER_TO_INT (user_data); gint val; gchar *buf = NULL; val = gtk_spin_button_get_value_as_int (spin); if (val == defvalue) buf = g_strdup (_("automatic")); else buf = g_strdup_printf ("%d", val); if (strcmp (buf, gtk_entry_get_text (GTK_ENTRY (spin)))) gtk_entry_set_text (GTK_ENTRY (spin), buf); g_free (buf); return TRUE; } gchar * ce_page_get_next_available_name (const GPtrArray *connections, NameFormat format, const gchar *type_name) { GSList *names = NULL, *l; gchar *cname = NULL; gint i = 0; guint con_idx; for (con_idx = 0; con_idx < connections->len; con_idx++) { NMConnection *connection = g_ptr_array_index (connections, con_idx); const gchar *id; id = nm_connection_get_id (connection); g_assert (id); names = g_slist_append (names, (gpointer) id); } /* Find the next available unique connection name */ while (!cname && (i++ < 10000)) { gchar *temp; gboolean found = FALSE; switch (format) { case NAME_FORMAT_TYPE: temp = g_strdup_printf ("%s %d", type_name, i); break; case NAME_FORMAT_PROFILE: temp = g_strdup_printf (_("Profile %d"), i); break; default: g_assert_not_reached (); } for (l = names; l; l = l->next) { if (!strcmp (l->data, temp)) { found = TRUE; break; } } if (!found) cname = temp; else g_free (temp); } g_slist_free (names); return cname; } cinnamon-control-center-6.2.0/panels/network/connection-editor/firewall-helpers.c0000664000175000017500000001024714632072346027223 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * (C) Copyright 2013 Red Hat, Inc. */ #include "config.h" #include #include #include "firewall-helpers.h" typedef struct { gchar *zone; GtkWidget *combo; GtkWidget *label; } GetZonesReplyData; static void get_zones_reply (GObject *source, GAsyncResult *res, gpointer user_data) { GDBusConnection *bus = G_DBUS_CONNECTION (source); GetZonesReplyData *d = user_data; GVariant *ret; GError *error = NULL; const gchar **zones; gint idx; gint i; ret = g_dbus_connection_call_finish (bus, res, &error); gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (d->combo), C_("Firewall zone", "Default")); gtk_widget_set_tooltip_text (d->combo, _("The zone defines the trust level of the connection")); idx = 0; if (error) { gtk_widget_hide (d->combo); gtk_widget_hide (d->label); g_error_free (error); } else { gtk_widget_show (d->combo); gtk_widget_show (d->label); g_variant_get (ret, "(^a&s)", &zones); for (i = 0; zones[i]; i++) { gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (d->combo), zones[i]); if (g_strcmp0 (d->zone, zones[i]) == 0) idx = i + 1; } if (d->zone && idx == 0) { gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (d->combo), d->zone); idx = i + 1; } g_variant_unref (ret); } gtk_combo_box_set_active (GTK_COMBO_BOX (d->combo), idx); g_free (d->zone); g_free (d); } void firewall_ui_setup (NMSettingConnection *setting, GtkWidget *combo, GtkWidget *label, GCancellable *cancellable) { GDBusConnection *bus; GetZonesReplyData *d; bus = g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, NULL); d = g_new0 (GetZonesReplyData, 1); d->zone = g_strdup (nm_setting_connection_get_zone (setting)); d->combo = combo; d->label = label; g_dbus_connection_call (bus, "org.fedoraproject.FirewallD1", "/org/fedoraproject/FirewallD1", "org.fedoraproject.FirewallD1.zone", "getZones", NULL, NULL, 0, G_MAXINT, cancellable, get_zones_reply, d); g_object_unref (bus); } void firewall_ui_to_setting (NMSettingConnection *setting, GtkWidget *combo) { gchar *zone; zone = gtk_combo_box_text_get_active_text (GTK_COMBO_BOX_TEXT (combo)); if (g_strcmp0 (zone, C_("Firewall zone", "Default")) == 0) { g_free (zone); zone = NULL; } g_object_set (setting, NM_SETTING_CONNECTION_ZONE, zone, NULL); g_free (zone); } cinnamon-control-center-6.2.0/panels/network/connection-editor/ip4-page.ui0000664000175000017500000003516214632072346025562 0ustar fabiofabio True True never True False True False 20 20 10 10 vertical 10 True False True False IPv_4 True switch_enable False True 0 True True end True False True 1 False True 0 True False vertical 10 True False True False _Addresses True combo_addresses False True 0 True False end True 0 1 False True 1 False True 0 True False vertical False True 1 True False 24 6 6 True False 0 DNS False True 0 True False True 1 Automatic False True 1 True True end Automatic DNS False True 2 False True 2 True False vertical False True 3 True False 24 5 6 True False 0 Routes False True 0 True False True 1 Automatic False True 1 True True Automatic Routes False True 2 False True 4 True False vertical False True 5 Use this connection _only for resources on its network True True False True 0 True False True 7 False True 1 cinnamon-control-center-6.2.0/panels/network/connection-editor/ce-page-wifi.c0000664000175000017500000002146214632072346026214 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2012 Red Hat, Inc * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "config.h" #include #include #include #include #include "ce-page-wifi.h" #include "ui-helpers.h" G_DEFINE_TYPE (CEPageWifi, ce_page_wifi, CE_TYPE_PAGE) static void all_user_changed (GtkToggleButton *b, CEPageWifi *page) { gboolean all_users; NMSettingConnection *sc; sc = nm_connection_get_setting_connection (CE_PAGE (page)->connection); all_users = gtk_toggle_button_get_active (b); g_object_set (sc, "permissions", NULL, NULL); if (!all_users) nm_setting_connection_add_permission (sc, "user", g_get_user_name (), NULL); } static void connect_wifi_page (CEPageWifi *page) { NMSettingConnection *sc; GtkWidget *widget; GBytes *ssid; gchar *utf8_ssid; GPtrArray *bssid_array; gchar **bssid_list; const char *s_bssid_str; gchar **mac_list; const gchar *s_mac_str; const gchar *cloned_mac; gint i; widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "entry_ssid")); ssid = nm_setting_wireless_get_ssid (page->setting); if (ssid) utf8_ssid = nm_utils_ssid_to_utf8 (g_bytes_get_data (ssid, NULL), g_bytes_get_size (ssid)); else utf8_ssid = g_strdup (""); gtk_entry_set_text (GTK_ENTRY (widget), utf8_ssid); g_free (utf8_ssid); g_signal_connect_swapped (widget, "changed", G_CALLBACK (ce_page_changed), page); widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "combo_bssid")); bssid_array = g_ptr_array_new (); for (i = 0; i < nm_setting_wireless_get_num_seen_bssids (page->setting); i++) { g_ptr_array_add (bssid_array, g_strdup (nm_setting_wireless_get_seen_bssid (page->setting, i))); } g_ptr_array_add (bssid_array, NULL); bssid_list = (gchar **) g_ptr_array_free (bssid_array, FALSE); s_bssid_str = nm_setting_wireless_get_bssid (page->setting); ce_page_setup_mac_combo (GTK_COMBO_BOX_TEXT (widget), s_bssid_str, bssid_list); g_strfreev (bssid_list); g_signal_connect_swapped (widget, "changed", G_CALLBACK (ce_page_changed), page); widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "combo_mac")); mac_list = ce_page_get_mac_list (CE_PAGE (page)->client, NM_TYPE_DEVICE_WIFI, NM_DEVICE_WIFI_PERMANENT_HW_ADDRESS); s_mac_str = nm_setting_wireless_get_mac_address (page->setting); ce_page_setup_mac_combo (GTK_COMBO_BOX_TEXT (widget), s_mac_str, mac_list); g_strfreev (mac_list); g_signal_connect_swapped (widget, "changed", G_CALLBACK (ce_page_changed), page); widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "entry_cloned_mac")); cloned_mac = nm_setting_wireless_get_cloned_mac_address (page->setting); gtk_entry_set_text (GTK_ENTRY (widget), cloned_mac ? cloned_mac : ""); g_signal_connect_swapped (widget, "changed", G_CALLBACK (ce_page_changed), page); widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "auto_connect_check")); sc = nm_connection_get_setting_connection (CE_PAGE (page)->connection); g_object_bind_property (sc, "autoconnect", widget, "active", G_BINDING_BIDIRECTIONAL | G_BINDING_SYNC_CREATE); g_signal_connect_swapped (widget, "toggled", G_CALLBACK (ce_page_changed), page); widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "all_user_check")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (widget), nm_setting_connection_get_num_permissions (sc) == 0); g_signal_connect (widget, "toggled", G_CALLBACK (all_user_changed), page); g_signal_connect_swapped (widget, "toggled", G_CALLBACK (ce_page_changed), page); widget = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "combo_zone")); } static void ui_to_setting (CEPageWifi *page) { GBytes *ssid; const gchar *utf8_ssid, *bssid; GtkWidget *entry; char *device_mac, *cloned_mac; entry = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "entry_ssid")); utf8_ssid = gtk_entry_get_text (GTK_ENTRY (entry)); if (!utf8_ssid || !*utf8_ssid) ssid = NULL; else { ssid = g_bytes_new_static (utf8_ssid, strlen (utf8_ssid)); } entry = gtk_bin_get_child (GTK_BIN (gtk_builder_get_object (CE_PAGE (page)->builder, "combo_bssid"))); bssid = gtk_entry_get_text (GTK_ENTRY (entry)); if (*bssid == '\0') bssid = NULL; entry = gtk_bin_get_child (GTK_BIN (gtk_builder_get_object (CE_PAGE (page)->builder, "combo_mac"))); device_mac = ce_page_trim_address (gtk_entry_get_text (GTK_ENTRY (entry))); entry = GTK_WIDGET (gtk_builder_get_object (CE_PAGE (page)->builder, "entry_cloned_mac")); cloned_mac = ce_page_trim_address (gtk_entry_get_text (GTK_ENTRY (entry))); g_object_set (page->setting, NM_SETTING_WIRELESS_SSID, ssid, NM_SETTING_WIRELESS_BSSID, bssid, NM_SETTING_WIRELESS_MAC_ADDRESS, device_mac, NM_SETTING_WIRELESS_CLONED_MAC_ADDRESS, cloned_mac, NULL); if (ssid) g_bytes_unref (ssid); g_free (cloned_mac); g_free (device_mac); } static gboolean validate (CEPage *page, NMConnection *connection, GError **error) { GtkWidget *entry; gboolean ret = TRUE; entry = gtk_bin_get_child (GTK_BIN (gtk_builder_get_object (page->builder, "combo_bssid"))); if (!ce_page_address_is_valid (gtk_entry_get_text (GTK_ENTRY (entry)))) { widget_set_error (entry); ret = FALSE; } else { widget_unset_error (entry); } entry = gtk_bin_get_child (GTK_BIN (gtk_builder_get_object (page->builder, "combo_mac"))); if (!ce_page_address_is_valid (gtk_entry_get_text (GTK_ENTRY (entry)))) { widget_set_error (entry); ret = FALSE; } else { widget_unset_error (entry); } entry = GTK_WIDGET (gtk_builder_get_object (page->builder, "entry_cloned_mac")); if (!ce_page_address_is_valid (gtk_entry_get_text (GTK_ENTRY (entry)))) { widget_set_error (entry); ret = FALSE; } else { widget_unset_error (entry); } if (!ret) return ret; ui_to_setting (CE_PAGE_WIFI (page)); return ret; } static void ce_page_wifi_init (CEPageWifi *page) { } static void ce_page_wifi_class_init (CEPageWifiClass *class) { CEPageClass *page_class= CE_PAGE_CLASS (class); page_class->validate = validate; } CEPage * ce_page_wifi_new (NMConnection *connection, NMClient *client) { CEPageWifi *page; page = CE_PAGE_WIFI (ce_page_new (CE_TYPE_PAGE_WIFI, connection, client, "/org/cinnamon/control-center/network/wifi-page.ui", _("Identity"))); page->setting = nm_connection_get_setting_wireless (connection); connect_wifi_page (page); return CE_PAGE (page); } cinnamon-control-center-6.2.0/panels/network/connection-editor/8021x-security-page.ui0000664000175000017500000002550314632072346027513 0ustar fabiofabio True True False False True False 50 50 12 12 True True 10 6 True False 1 802.1x _Security True 8021x_switch 0 0 1 1 True True start True 1 0 1 1 True False vertical 0 1 2 1 True False page 1 False True False 50 50 12 12 10 6 True True ā— 35 1 0 1 1 True True ā— 1 1 1 1 True True ā— 1 2 1 1 True True ā— 1 3 1 1 True True ā— 1 4 1 1 True True ā— 1 5 1 1 True True ā— 1 6 1 1 True True ā— 1 7 1 1 True True ā— 1 8 1 1 True True ā— 1 9 1 1 True False Anony_mous identity True 0 0 1 1 True False Inner _authentication True 0 1 1 1 1 True False page 2 1 False cinnamon-control-center-6.2.0/panels/network/connection-editor/vpn-helpers.h0000664000175000017500000000267714632072346026236 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Connection editor -- Connection editor for NetworkManager * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * (C) Copyright 2008 Red Hat, Inc. */ #ifndef _VPN_HELPERS_H_ #define _VPN_HELPERS_H_ #include #include #include GSList *vpn_get_plugins (void); NMVpnEditorPlugin *vpn_get_plugin_by_service (const char *service); typedef void (*VpnImportCallback) (NMConnection *connection, gpointer user_data); void vpn_import (GtkWindow *parent, VpnImportCallback callback, gpointer user_data); void vpn_export (NMConnection *connection); gboolean vpn_supports_ipv6 (NMConnection *connection); #endif /* _VPN_HELPERS_H_ */ cinnamon-control-center-6.2.0/panels/network/connection-editor/ethernet-page.ui0000664000175000017500000002514414632072346026703 0ustar fabiofabio 10000 1 10 Automatic Twisted Pair (TP) Attachment Unit Interface (AUI) BNC Media Independent Interface (MII) Automatic 10 Mb/s 100 Mb/s 1 Gb/s 10 Gb/s True False 50 50 12 12 True True 10 6 True False 1 _Name True entry_name 0 0 1 1 True True ā— 1 0 1 1 True False 1 _MAC Address True combo_mac 0 1 1 1 True False True 0 1 1 1 1 1 True True True ā— True 1 2 1 1 True False 1 M_TU True spin_mtu 0 3 1 1 True False center 1 _Cloned Address True entry_cloned_mac 0 2 1 1 True False bytes 2 3 1 1 True True ā— True adjustment1 1 3 1 1 True False 2 0 1 1 Make available to other _users True True False True 0 True 0 6 2 1 Connect _automatically True True False end True True 0 True 0 5 2 1 True False 1 Firewall _Zone True combo_zone 0 4 1 1 True False 0 1 1 4 1 1 cinnamon-control-center-6.2.0/panels/network/connection-editor/connection-editor.gresource.xml0000664000175000017500000000136614632072346031756 0ustar fabiofabio 8021x-security-page.ui connection-editor.ui details-page.ui ethernet-page.ui ip4-page.ui ip6-page.ui reset-page.ui security-page.ui vpn-page.ui wifi-page.ui cinnamon-control-center-6.2.0/panels/network/panel-common.c0000664000175000017500000006444714632072346022733 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2010 Richard Hughes * Copyright (C) 2012 Thomas Bechtold * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "config.h" #include #include #include #include #include "panel-common.h" /** * panel_device_to_icon_name: **/ const gchar * panel_device_to_icon_name (NMDevice *device, gboolean symbolic) { const gchar *value = NULL; NMDeviceState state; NMDeviceModemCapabilities caps; switch (nm_device_get_device_type (device)) { case NM_DEVICE_TYPE_ETHERNET: state = nm_device_get_state (device); if (state <= NM_DEVICE_STATE_DISCONNECTED) { value = symbolic ? "network-wired-disconnected-symbolic" : "network-wired-disconnected"; } else { value = symbolic ? "network-wired-symbolic" : "network-wired"; } break; case NM_DEVICE_TYPE_WIFI: case NM_DEVICE_TYPE_BT: case NM_DEVICE_TYPE_OLPC_MESH: value = symbolic ? "network-wireless-signal-excellent-symbolic" : "network-wireless"; break; case NM_DEVICE_TYPE_MODEM: caps = nm_device_modem_get_current_capabilities (NM_DEVICE_MODEM (device)); if ((caps & NM_DEVICE_MODEM_CAPABILITY_GSM_UMTS) || (caps & NM_DEVICE_MODEM_CAPABILITY_CDMA_EVDO)) { value = symbolic ? "network-cellular-signal-excellent-symbolic" : "network-cellular"; break; } /* fall thru */ default: value = symbolic ? "network-idle-symbolic" : "network-idle"; break; } return value; } /** * panel_device_get_sort_category: * * Try to return order of approximate connection speed. * But sort wifi first, since that's the common case. **/ gint panel_device_get_sort_category (NMDevice *device) { gint value = 0; NMDeviceModemCapabilities caps; switch (nm_device_get_device_type (device)) { case NM_DEVICE_TYPE_ETHERNET: value = 2; break; case NM_DEVICE_TYPE_WIFI: value = 1; break; case NM_DEVICE_TYPE_MODEM: caps = nm_device_modem_get_current_capabilities (NM_DEVICE_MODEM (device)); if ((caps & NM_DEVICE_MODEM_CAPABILITY_GSM_UMTS) || (caps & NM_DEVICE_MODEM_CAPABILITY_CDMA_EVDO)) { value = 3; } break; case NM_DEVICE_TYPE_BT: value = 4; break; case NM_DEVICE_TYPE_OLPC_MESH: value = 5; break; default: value = 6; break; } return value; } /** * panel_ap_mode_to_localized_string: **/ const gchar * panel_ap_mode_to_localized_string (NM80211Mode mode) { const gchar *value = NULL; switch (mode) { case NM_802_11_MODE_UNKNOWN: /* TRANSLATORS: AP type */ value = _("Unknown"); break; case NM_802_11_MODE_ADHOC: /* TRANSLATORS: AP type */ value = _("Ad-hoc"); break; case NM_802_11_MODE_INFRA: /* TRANSLATORS: AP type */ value = _("Infrastructure"); break; default: break; } return value; } static const gchar * device_state_to_localized_string (NMDeviceState state) { const gchar *value = NULL; switch (state) { case NM_DEVICE_STATE_UNKNOWN: /* TRANSLATORS: device status */ value = _("Status unknown"); break; case NM_DEVICE_STATE_UNMANAGED: /* TRANSLATORS: device status */ value = _("Unmanaged"); break; case NM_DEVICE_STATE_UNAVAILABLE: /* TRANSLATORS: device status */ value = _("Unavailable"); break; case NM_DEVICE_STATE_DISCONNECTED: value = NULL; break; case NM_DEVICE_STATE_PREPARE: case NM_DEVICE_STATE_CONFIG: case NM_DEVICE_STATE_IP_CONFIG: case NM_DEVICE_STATE_IP_CHECK: /* TRANSLATORS: device status */ value = _("Connecting"); break; case NM_DEVICE_STATE_NEED_AUTH: /* TRANSLATORS: device status */ value = _("Authentication required"); break; case NM_DEVICE_STATE_ACTIVATED: /* TRANSLATORS: device status */ value = _("Connected"); break; case NM_DEVICE_STATE_DEACTIVATING: /* TRANSLATORS: device status */ value = _("Disconnecting"); break; case NM_DEVICE_STATE_FAILED: /* TRANSLATORS: device status */ value = _("Connection failed"); break; default: /* TRANSLATORS: device status */ value = _("Status unknown (missing)"); break; } return value; } /** * panel_vpn_state_to_localized_string: **/ const gchar * panel_vpn_state_to_localized_string (NMVpnConnectionState type) { const gchar *value = NULL; switch (type) { case NM_DEVICE_STATE_UNKNOWN: /* TRANSLATORS: VPN status */ value = _("Status unknown"); break; case NM_VPN_CONNECTION_STATE_PREPARE: case NM_VPN_CONNECTION_STATE_CONNECT: case NM_VPN_CONNECTION_STATE_IP_CONFIG_GET: /* TRANSLATORS: VPN status */ value = _("Connecting"); break; case NM_VPN_CONNECTION_STATE_NEED_AUTH: /* TRANSLATORS: VPN status */ value = _("Authentication required"); break; case NM_VPN_CONNECTION_STATE_ACTIVATED: /* TRANSLATORS: VPN status */ value = _("Connected"); break; case NM_VPN_CONNECTION_STATE_FAILED: /* TRANSLATORS: VPN status */ value = _("Connection failed"); break; case NM_VPN_CONNECTION_STATE_DISCONNECTED: /* TRANSLATORS: VPN status */ value = _("Not connected"); break; default: /* TRANSLATORS: VPN status */ value = _("Status unknown (missing)"); break; } return value; } static const gchar * device_state_reason_to_localized_string (NMDevice *device) { const gchar *value = NULL; NMDeviceStateReason state_reason; /* This only covers NMDeviceStateReasons that explain why a connection * failed / can't be attempted, and aren't redundant with the state * (eg, NM_DEVICE_STATE_REASON_CARRIER). */ state_reason = nm_device_get_state_reason (device); switch (state_reason) { case NM_DEVICE_STATE_REASON_CONFIG_FAILED: /* TRANSLATORS: device status reason */ value = _("Configuration failed"); break; case NM_DEVICE_STATE_REASON_IP_CONFIG_UNAVAILABLE: /* TRANSLATORS: device status reason */ value = _("IP configuration failed"); break; case NM_DEVICE_STATE_REASON_IP_CONFIG_EXPIRED: /* TRANSLATORS: device status reason */ value = _("IP configuration expired"); break; case NM_DEVICE_STATE_REASON_NO_SECRETS: /* TRANSLATORS: device status reason */ value = _("Secrets were required, but not provided"); break; case NM_DEVICE_STATE_REASON_SUPPLICANT_DISCONNECT: /* TRANSLATORS: device status reason */ value = _("802.1x supplicant disconnected"); break; case NM_DEVICE_STATE_REASON_SUPPLICANT_CONFIG_FAILED: /* TRANSLATORS: device status reason */ value = _("802.1x supplicant configuration failed"); break; case NM_DEVICE_STATE_REASON_SUPPLICANT_FAILED: /* TRANSLATORS: device status reason */ value = _("802.1x supplicant failed"); break; case NM_DEVICE_STATE_REASON_SUPPLICANT_TIMEOUT: /* TRANSLATORS: device status reason */ value = _("802.1x supplicant took too long to authenticate"); break; case NM_DEVICE_STATE_REASON_PPP_START_FAILED: /* TRANSLATORS: device status reason */ value = _("PPP service failed to start"); break; case NM_DEVICE_STATE_REASON_PPP_DISCONNECT: /* TRANSLATORS: device status reason */ value = _("PPP service disconnected"); break; case NM_DEVICE_STATE_REASON_PPP_FAILED: /* TRANSLATORS: device status reason */ value = _("PPP failed"); break; case NM_DEVICE_STATE_REASON_DHCP_START_FAILED: /* TRANSLATORS: device status reason */ value = _("DHCP client failed to start"); break; case NM_DEVICE_STATE_REASON_DHCP_ERROR: /* TRANSLATORS: device status reason */ value = _("DHCP client error"); break; case NM_DEVICE_STATE_REASON_DHCP_FAILED: /* TRANSLATORS: device status reason */ value = _("DHCP client failed"); break; case NM_DEVICE_STATE_REASON_SHARED_START_FAILED: /* TRANSLATORS: device status reason */ value = _("Shared connection service failed to start"); break; case NM_DEVICE_STATE_REASON_SHARED_FAILED: /* TRANSLATORS: device status reason */ value = _("Shared connection service failed"); break; case NM_DEVICE_STATE_REASON_AUTOIP_START_FAILED: /* TRANSLATORS: device status reason */ value = _("AutoIP service failed to start"); break; case NM_DEVICE_STATE_REASON_AUTOIP_ERROR: /* TRANSLATORS: device status reason */ value = _("AutoIP service error"); break; case NM_DEVICE_STATE_REASON_AUTOIP_FAILED: /* TRANSLATORS: device status reason */ value = _("AutoIP service failed"); break; case NM_DEVICE_STATE_REASON_MODEM_BUSY: /* TRANSLATORS: device status reason */ value = _("Line busy"); break; case NM_DEVICE_STATE_REASON_MODEM_NO_DIAL_TONE: /* TRANSLATORS: device status reason */ value = _("No dial tone"); break; case NM_DEVICE_STATE_REASON_MODEM_NO_CARRIER: /* TRANSLATORS: device status reason */ value = _("No carrier could be established"); break; case NM_DEVICE_STATE_REASON_MODEM_DIAL_TIMEOUT: /* TRANSLATORS: device status reason */ value = _("Dialing request timed out"); break; case NM_DEVICE_STATE_REASON_MODEM_DIAL_FAILED: /* TRANSLATORS: device status reason */ value = _("Dialing attempt failed"); break; case NM_DEVICE_STATE_REASON_MODEM_INIT_FAILED: /* TRANSLATORS: device status reason */ value = _("Modem initialization failed"); break; case NM_DEVICE_STATE_REASON_GSM_APN_FAILED: /* TRANSLATORS: device status reason */ value = _("Failed to select the specified APN"); break; case NM_DEVICE_STATE_REASON_GSM_REGISTRATION_NOT_SEARCHING: /* TRANSLATORS: device status reason */ value = _("Not searching for networks"); break; case NM_DEVICE_STATE_REASON_GSM_REGISTRATION_DENIED: /* TRANSLATORS: device status reason */ value = _("Network registration denied"); break; case NM_DEVICE_STATE_REASON_GSM_REGISTRATION_TIMEOUT: /* TRANSLATORS: device status reason */ value = _("Network registration timed out"); break; case NM_DEVICE_STATE_REASON_GSM_REGISTRATION_FAILED: /* TRANSLATORS: device status reason */ value = _("Failed to register with the requested network"); break; case NM_DEVICE_STATE_REASON_GSM_PIN_CHECK_FAILED: /* TRANSLATORS: device status reason */ value = _("PIN check failed"); break; case NM_DEVICE_STATE_REASON_FIRMWARE_MISSING: /* TRANSLATORS: device status reason */ value = _("Firmware for the device may be missing"); break; case NM_DEVICE_STATE_REASON_CONNECTION_REMOVED: /* TRANSLATORS: device status reason */ value = _("Connection disappeared"); break; case NM_DEVICE_STATE_REASON_CONNECTION_ASSUMED: /* TRANSLATORS: device status reason */ value = _("Existing connection was assumed"); break; case NM_DEVICE_STATE_REASON_MODEM_NOT_FOUND: /* TRANSLATORS: device status reason */ value = _("Modem not found"); break; case NM_DEVICE_STATE_REASON_BT_FAILED: /* TRANSLATORS: device status reason */ value = _("Bluetooth connection failed"); break; case NM_DEVICE_STATE_REASON_GSM_SIM_NOT_INSERTED: /* TRANSLATORS: device status reason */ value = _("SIM Card not inserted"); break; case NM_DEVICE_STATE_REASON_GSM_SIM_PIN_REQUIRED: /* TRANSLATORS: device status reason */ value = _("SIM Pin required"); break; case NM_DEVICE_STATE_REASON_GSM_SIM_PUK_REQUIRED: /* TRANSLATORS: device status reason */ value = _("SIM Puk required"); break; case NM_DEVICE_STATE_REASON_GSM_SIM_WRONG: /* TRANSLATORS: device status reason */ value = _("SIM wrong"); break; case NM_DEVICE_STATE_REASON_DEPENDENCY_FAILED: /* TRANSLATORS: device status reason */ value = _("Connection dependency failed"); break; default: /* no StateReason to show */ value = ""; break; } return value; } static gchar * device_status_to_localized_string (NMDevice *nm_device, const gchar *speed) { NMDeviceState state; GString *string; const gchar *state_str = NULL, *reason_str = NULL; string = g_string_new (NULL); state = nm_device_get_state (nm_device); if (state == NM_DEVICE_STATE_UNAVAILABLE) { if (nm_device_get_firmware_missing (nm_device)) { /* TRANSLATORS: device status */ state_str = _("Firmware missing"); } else if (NM_IS_DEVICE_ETHERNET (nm_device) && !nm_device_ethernet_get_carrier (NM_DEVICE_ETHERNET (nm_device))) { /* TRANSLATORS: device status */ state_str = _("Cable unplugged"); } } if (!state_str) state_str = device_state_to_localized_string (state); if (state_str) g_string_append (string, state_str); if (state > NM_DEVICE_STATE_UNAVAILABLE && speed) { if (string->len) g_string_append (string, " - "); g_string_append (string, speed); } else if (state == NM_DEVICE_STATE_UNAVAILABLE || state == NM_DEVICE_STATE_DISCONNECTED || state == NM_DEVICE_STATE_DEACTIVATING || state == NM_DEVICE_STATE_FAILED) { reason_str = device_state_reason_to_localized_string (nm_device); if (*reason_str) { if (string->len) g_string_append (string, " - "); g_string_append (string, reason_str); } } return g_string_free (string, FALSE); } void panel_set_device_status (GtkBuilder *builder, const gchar *label_name, NMDevice *nm_device, const gchar *speed) { GtkLabel *label; gchar *status; label = GTK_LABEL (gtk_builder_get_object (builder, label_name)); status = device_status_to_localized_string (nm_device, speed); gtk_label_set_label (label, status); g_free (status); } gboolean panel_set_device_widget_details (GtkBuilder *builder, const gchar *widget_suffix, const gchar *value) { gchar *heading_id; gchar *label_id; GtkWidget *heading; GtkWidget *widget; /* hide the row if there is no value */ heading_id = g_strdup_printf ("heading_%s", widget_suffix); label_id = g_strdup_printf ("label_%s", widget_suffix); heading = GTK_WIDGET (gtk_builder_get_object (builder, heading_id)); widget = GTK_WIDGET (gtk_builder_get_object (builder, label_id)); if (heading == NULL || widget == NULL) { g_critical ("no widgets %s, %s found", heading_id, label_id); return FALSE; } g_free (heading_id); g_free (label_id); if (value == NULL) { gtk_widget_hide (heading); gtk_widget_hide (widget); } else { /* there exists a value */ gtk_widget_show (heading); gtk_widget_show (widget); gtk_label_set_label (GTK_LABEL (widget), value); gtk_label_set_max_width_chars (GTK_LABEL (widget), 50); gtk_label_set_ellipsize (GTK_LABEL (widget), PANGO_ELLIPSIZE_END); } return TRUE; } gboolean panel_set_device_widget_header (GtkBuilder *builder, const gchar *widget_suffix, const gchar *heading) { gchar *label_id = NULL; GtkWidget *widget; label_id = g_strdup_printf ("heading_%s", widget_suffix); widget = GTK_WIDGET (gtk_builder_get_object (builder, label_id)); if (widget == NULL) { g_critical ("no widget %s found", label_id); return FALSE; } gtk_label_set_label (GTK_LABEL (widget), heading); g_free (label_id); return TRUE; } gchar * panel_get_ip4_address_as_string (NMIPConfig *ip4_config, const char *what) { const gchar *str = NULL; /* we only care about one address */ if (!strcmp (what, "address")) { GPtrArray *array; NMIPAddress *address; array = nm_ip_config_get_addresses (ip4_config); if (array->len < 1) goto out; address = array->pdata[0]; str = nm_ip_address_get_address (address); } else if (!strcmp (what, "gateway")) { str = nm_ip_config_get_gateway (ip4_config); } out: return g_strdup (str); } gchar * panel_get_dns_as_string (NMIPConfig *ip_config) { const char *const *arrc; arrc = nm_ip_config_get_nameservers (ip_config); if (*arrc != NULL) return g_strjoinv (" ", (char **) arrc); return NULL; } gchar * panel_get_ip6_address_as_string (NMIPConfig *ip6_config, const char *what) { gchar *str = NULL; if (!strcmp (what, "address")) { g_autoptr(GPtrArray) ipv6 = NULL; GPtrArray *addresses; addresses = nm_ip_config_get_addresses (ip6_config); if (addresses->len == 0 ) { return str; } ipv6 = g_ptr_array_sized_new (addresses->len + 1); for (int i = 0; i < addresses->len; i++) { g_ptr_array_add (ipv6, (char *) nm_ip_address_get_address (g_ptr_array_index (addresses, i))); } g_ptr_array_add (ipv6, NULL); str = g_strjoinv ("\n", (char **) ipv6->pdata); } else if (!strcmp (what, "gateway")) { str = g_strdup (nm_ip_config_get_gateway (ip6_config)); } return str; } void panel_set_device_widgets (GtkBuilder *builder, NMDevice *device) { NMIPConfig *ip4_config = NULL; NMIPConfig *ip6_config = NULL; gboolean has_ip4; gboolean has_ip6; gchar *ip4_dns = NULL; gchar *ip6_dns = NULL; gchar *str_tmp; /* get IPv4 parameters */ ip4_config = nm_device_get_ip4_config (device); if (ip4_config != NULL) { /* IPv4 address */ str_tmp = panel_get_ip4_address_as_string (ip4_config, "address"); panel_set_device_widget_details (builder, "ipv4", str_tmp); has_ip4 = str_tmp != NULL; g_free (str_tmp); /* IPv4 DNS */ ip4_dns = panel_get_dns_as_string (ip4_config); panel_set_device_widget_details (builder, "dns4", ip4_dns); /* IPv4 route */ str_tmp = panel_get_ip4_address_as_string (ip4_config, "gateway"); panel_set_device_widget_details (builder, "route", str_tmp); g_free (str_tmp); } else { /* IPv4 address */ panel_set_device_widget_details (builder, "ipv4", NULL); has_ip4 = FALSE; /* IPv4 DNS */ panel_set_device_widget_details (builder, "dns4", NULL); /* IPv4 route */ panel_set_device_widget_details (builder, "route", NULL); } /* get IPv6 parameters */ ip6_config = nm_device_get_ip6_config (device); if (ip6_config != NULL) { str_tmp = panel_get_ip6_address_as_string (ip6_config, "address"); panel_set_device_widget_details (builder, "ipv6", str_tmp); has_ip6 = str_tmp != NULL; g_free (str_tmp); /* IPv6 DNS */ ip6_dns = panel_get_dns_as_string (ip6_config); panel_set_device_widget_details (builder, "dns6", ip6_dns); } else { panel_set_device_widget_details (builder, "ipv6", NULL); has_ip6 = FALSE; /* IPv6 DNS */ panel_set_device_widget_details (builder, "dns6", NULL); } if (has_ip4 && has_ip6) { panel_set_device_widget_header (builder, "ipv4", _("IPv4 Address")); panel_set_device_widget_header (builder, "ipv6", _("IPv6 Address")); } else if (has_ip4) { panel_set_device_widget_header (builder, "ipv4", _("IP Address")); } else if (has_ip6) { panel_set_device_widget_header (builder, "ipv6", _("IP Address")); } if (ip4_dns && ip6_dns) { panel_set_device_widget_header (builder, "dns4", _("DNS4")); panel_set_device_widget_header (builder, "dns6", _("DNS6")); } else if (ip4_dns) { panel_set_device_widget_header (builder, "dns4", _("DNS")); } else if (ip6_dns) { panel_set_device_widget_header (builder, "dns6", _("DNS")); } g_free (ip4_dns); g_free (ip6_dns); } void panel_unset_device_widgets (GtkBuilder *builder) { panel_set_device_widget_details (builder, "ipv4", NULL); panel_set_device_widget_details (builder, "ipv6", NULL); panel_set_device_widget_details (builder, "dns4", NULL); panel_set_device_widget_details (builder, "dns6", NULL); panel_set_device_widget_details (builder, "route", NULL); } cinnamon-control-center-6.2.0/panels/network/network-module.c0000664000175000017500000000165514632072346023312 0ustar fabiofabio/* * Copyright (C) 2011 Red Hat, Inc * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * */ #include #include "cc-network-panel.h" #include void g_io_module_load (GIOModule *module) { /* register the panel */ cc_network_panel_register (module); } void g_io_module_unload (GIOModule *module) { } cinnamon-control-center-6.2.0/panels/network/network-proxy.ui0000664000175000017500000005117214632072346023400 0ustar fabiofabio 65535 1 65535 1 65535 1 65535 1 None 0 Manual 1 Automatic 2 True False start 12 10 6 True False end start 2 0 1 1 True False 1 _Method True combobox_proxy_mode 0 1 1 1 True False 0 1 liststore_proxy_method 1 1 2 1 True False 1 _Configuration URL True entry_proxy_url 0 2 1 1 True True ā— True 1 2 2 1 True False 1 _HTTP Proxy True entry_proxy_http 0 3 1 1 True False 1 H_TTPS Proxy True entry_proxy_https 0 4 1 1 True False 1 _FTP Proxy True entry_proxy_ftp 0 5 1 1 True False 1 _Socks Host True entry_proxy_socks 0 6 1 1 True False 1 _Ignore Hosts True entry_proxy_ignore 0 7 1 1 False False 0 WPAD warning… True 50 0 8 3 1 True True ā— True 1 3 1 1 True True ā— 1 True adjustment_proxy_port_http HTTP proxy port 2 3 1 1 True True ā— True 1 4 1 1 True True ā— True 1 5 1 1 True True ā— True 1 6 1 1 True True ā— True 1 7 2 1 True True ā— 1 True adjustment_proxy_port_https HTTPS proxy port 2 4 1 1 True True ā— 1 True adjustment_proxy_port_ftp FTP proxy port 2 5 1 1 True True ā— 1 True adjustment_proxy_port_socks Socks proxy port 2 6 1 1 True False 6 True False end start 1 48 preferences-system-network 6 False True 0 True False start True 3 True False 0 Proxy end False False 0 True False 0 Not connected False False 1 False True 1 True True end center False True 2 0 0 3 1 cinnamon-control-center-6.2.0/panels/network/wireless-security/0000775000175000017500000000000014632072346023665 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/network/wireless-security/eap-method-fast.c0000664000175000017500000003723314632072346027017 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* vim: set ft=c ts=4 sts=4 sw=4 noexpandtab smartindent: */ /* EAP-FAST authentication method (RFC4851) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2012 - 2014 Red Hat, Inc. */ #include "nm-default.h" #include #include #include "eap-method.h" #include "wireless-security.h" #include "utils.h" #include "helpers.h" #define I_NAME_COLUMN 0 #define I_METHOD_COLUMN 1 struct _EAPMethodFAST { EAPMethod parent; GtkSizeGroup *size_group; WirelessSecurity *sec_parent; gboolean is_editor; }; static void destroy (EAPMethod *parent) { EAPMethodFAST *method = (EAPMethodFAST *) parent; if (method->size_group) g_object_unref (method->size_group); } static gboolean validate (EAPMethod *parent, GError **error) { GtkWidget *widget; GtkTreeModel *model; GtkTreeIter iter; EAPMethod *eap = NULL; const char *file; gboolean provisioning; gboolean valid = TRUE; widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_pac_provision_checkbutton")); g_assert (widget); provisioning = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget)); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_pac_file_button")); g_assert (widget); file = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (widget)); if (!provisioning && !file) { widget_set_error (widget); g_set_error_literal (error, NMA_ERROR, NMA_ERROR_GENERIC, _("missing EAP-FAST PAC file")); valid = FALSE; } else widget_unset_error (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_inner_auth_combo")); g_assert (widget); model = gtk_combo_box_get_model (GTK_COMBO_BOX (widget)); gtk_combo_box_get_active_iter (GTK_COMBO_BOX (widget), &iter); gtk_tree_model_get (model, &iter, I_METHOD_COLUMN, &eap, -1); g_assert (eap); valid = eap_method_validate (eap, valid ? error : NULL) && valid; eap_method_unref (eap); return valid; } static void add_to_size_group (EAPMethod *parent, GtkSizeGroup *group) { EAPMethodFAST *method = (EAPMethodFAST *) parent; GtkWidget *widget; GtkTreeModel *model; GtkTreeIter iter; EAPMethod *eap; if (method->size_group) g_object_unref (method->size_group); method->size_group = g_object_ref (group); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_anon_identity_label")); g_assert (widget); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_pac_file_label")); g_assert (widget); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_pac_provision_checkbutton")); g_assert (widget); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_inner_auth_label")); g_assert (widget); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_inner_auth_combo")); g_assert (widget); model = gtk_combo_box_get_model (GTK_COMBO_BOX (widget)); gtk_combo_box_get_active_iter (GTK_COMBO_BOX (widget), &iter); gtk_tree_model_get (model, &iter, I_METHOD_COLUMN, &eap, -1); g_assert (eap); eap_method_add_to_size_group (eap, group); eap_method_unref (eap); } static void fill_connection (EAPMethod *parent, NMConnection *connection, NMSettingSecretFlags flags) { NMSetting8021x *s_8021x; GtkWidget *widget; const char *text; char *filename; EAPMethod *eap = NULL; GtkTreeModel *model; GtkTreeIter iter; gboolean enabled; int pac_provisioning = 0; s_8021x = nm_connection_get_setting_802_1x (connection); g_assert (s_8021x); nm_setting_802_1x_add_eap_method (s_8021x, "fast"); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_anon_identity_entry")); g_assert (widget); text = gtk_entry_get_text (GTK_ENTRY (widget)); if (text && strlen (text)) g_object_set (s_8021x, NM_SETTING_802_1X_ANONYMOUS_IDENTITY, text, NULL); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_pac_file_button")); g_assert (widget); filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (widget)); g_object_set (s_8021x, NM_SETTING_802_1X_PAC_FILE, filename, NULL); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_pac_provision_checkbutton")); enabled = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget)); if (!enabled) g_object_set (G_OBJECT (s_8021x), NM_SETTING_802_1X_PHASE1_FAST_PROVISIONING, "0", NULL); else { widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_pac_provision_combo")); pac_provisioning = gtk_combo_box_get_active (GTK_COMBO_BOX (widget)); switch (pac_provisioning) { case 0: /* Anonymous */ g_object_set (G_OBJECT (s_8021x), NM_SETTING_802_1X_PHASE1_FAST_PROVISIONING, "1", NULL); break; case 1: /* Authenticated */ g_object_set (G_OBJECT (s_8021x), NM_SETTING_802_1X_PHASE1_FAST_PROVISIONING, "2", NULL); break; case 2: /* Both - anonymous and authenticated */ g_object_set (G_OBJECT (s_8021x), NM_SETTING_802_1X_PHASE1_FAST_PROVISIONING, "3", NULL); break; default: /* Should not happen */ g_object_set (G_OBJECT (s_8021x), NM_SETTING_802_1X_PHASE1_FAST_PROVISIONING, "1", NULL); break; } } widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_inner_auth_combo")); model = gtk_combo_box_get_model (GTK_COMBO_BOX (widget)); gtk_combo_box_get_active_iter (GTK_COMBO_BOX (widget), &iter); gtk_tree_model_get (model, &iter, I_METHOD_COLUMN, &eap, -1); g_assert (eap); eap_method_fill_connection (eap, connection, flags); eap_method_unref (eap); } static void inner_auth_combo_changed_cb (GtkWidget *combo, gpointer user_data) { EAPMethod *parent = (EAPMethod *) user_data; EAPMethodFAST *method = (EAPMethodFAST *) parent; GtkWidget *vbox; EAPMethod *eap = NULL; GList *elt, *children; GtkTreeModel *model; GtkTreeIter iter; GtkWidget *eap_widget; vbox = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_inner_auth_vbox")); g_assert (vbox); /* Remove any previous wireless security widgets */ children = gtk_container_get_children (GTK_CONTAINER (vbox)); for (elt = children; elt; elt = g_list_next (elt)) gtk_container_remove (GTK_CONTAINER (vbox), GTK_WIDGET (elt->data)); g_list_free (children); model = gtk_combo_box_get_model (GTK_COMBO_BOX (combo)); gtk_combo_box_get_active_iter (GTK_COMBO_BOX (combo), &iter); gtk_tree_model_get (model, &iter, I_METHOD_COLUMN, &eap, -1); g_assert (eap); eap_widget = eap_method_get_widget (eap); g_assert (eap_widget); gtk_widget_unparent (eap_widget); if (method->size_group) eap_method_add_to_size_group (eap, method->size_group); gtk_container_add (GTK_CONTAINER (vbox), eap_widget); eap_method_unref (eap); wireless_security_changed_cb (combo, method->sec_parent); } static GtkWidget * inner_auth_combo_init (EAPMethodFAST *method, NMConnection *connection, NMSetting8021x *s_8021x, gboolean secrets_only) { EAPMethod *parent = (EAPMethod *) method; GtkWidget *combo; GtkListStore *auth_model; GtkTreeIter iter; EAPMethodSimple *em_gtc; EAPMethodSimple *em_mschap_v2; guint32 active = 0; const char *phase2_auth = NULL; EAPMethodSimpleFlags simple_flags; auth_model = gtk_list_store_new (2, G_TYPE_STRING, eap_method_get_type ()); if (s_8021x) { if (nm_setting_802_1x_get_phase2_auth (s_8021x)) phase2_auth = nm_setting_802_1x_get_phase2_auth (s_8021x); else if (nm_setting_802_1x_get_phase2_autheap (s_8021x)) phase2_auth = nm_setting_802_1x_get_phase2_autheap (s_8021x); } simple_flags = EAP_METHOD_SIMPLE_FLAG_PHASE2; if (method->is_editor) simple_flags |= EAP_METHOD_SIMPLE_FLAG_IS_EDITOR; if (secrets_only) simple_flags |= EAP_METHOD_SIMPLE_FLAG_SECRETS_ONLY; em_gtc = eap_method_simple_new (method->sec_parent, connection, EAP_METHOD_SIMPLE_TYPE_GTC, simple_flags); gtk_list_store_append (auth_model, &iter); gtk_list_store_set (auth_model, &iter, I_NAME_COLUMN, _("GTC"), I_METHOD_COLUMN, em_gtc, -1); eap_method_unref (EAP_METHOD (em_gtc)); /* Check for defaulting to GTC */ if (phase2_auth && !strcasecmp (phase2_auth, "gtc")) active = 0; em_mschap_v2 = eap_method_simple_new (method->sec_parent, connection, EAP_METHOD_SIMPLE_TYPE_MSCHAP_V2, simple_flags); gtk_list_store_append (auth_model, &iter); gtk_list_store_set (auth_model, &iter, I_NAME_COLUMN, _("MSCHAPv2"), I_METHOD_COLUMN, em_mschap_v2, -1); eap_method_unref (EAP_METHOD (em_mschap_v2)); /* Check for defaulting to MSCHAPv2 */ if (phase2_auth && !strcasecmp (phase2_auth, "mschapv2")) active = 1; combo = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_inner_auth_combo")); g_assert (combo); gtk_combo_box_set_model (GTK_COMBO_BOX (combo), GTK_TREE_MODEL (auth_model)); g_object_unref (G_OBJECT (auth_model)); gtk_combo_box_set_active (GTK_COMBO_BOX (combo), active); g_signal_connect (G_OBJECT (combo), "changed", (GCallback) inner_auth_combo_changed_cb, method); return combo; } static void update_secrets (EAPMethod *parent, NMConnection *connection) { eap_method_phase2_update_secrets_helper (parent, connection, "eap_fast_inner_auth_combo", I_METHOD_COLUMN); } static void pac_toggled_cb (GtkWidget *widget, gpointer user_data) { EAPMethod *parent = (EAPMethod *) user_data; EAPMethodFAST *method = (EAPMethodFAST *) parent; gboolean enabled = FALSE; GtkWidget *provision_combo; provision_combo = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_pac_provision_combo")); g_return_if_fail (provision_combo); enabled = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget)); gtk_widget_set_sensitive (provision_combo, enabled); wireless_security_changed_cb (widget, method->sec_parent); } EAPMethodFAST * eap_method_fast_new (WirelessSecurity *ws_parent, NMConnection *connection, gboolean is_editor, gboolean secrets_only) { EAPMethod *parent; EAPMethodFAST *method; GtkWidget *widget; GtkFileFilter *filter; NMSetting8021x *s_8021x = NULL; const char *filename; gboolean provisioning_enabled = TRUE; parent = eap_method_init (sizeof (EAPMethodFAST), validate, add_to_size_group, fill_connection, update_secrets, destroy, "/org/cinnamon/control-center/network/eap-method-fast.ui", "eap_fast_notebook", "eap_fast_anon_identity_entry", FALSE); if (!parent) return NULL; parent->password_flags_name = NM_SETTING_802_1X_PASSWORD; method = (EAPMethodFAST *) parent; method->sec_parent = ws_parent; method->is_editor = is_editor; if (connection) s_8021x = nm_connection_get_setting_802_1x (connection); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_pac_provision_combo")); g_assert (widget); gtk_combo_box_set_active (GTK_COMBO_BOX (widget), 0); if (s_8021x) { const char *fast_prov; fast_prov = nm_setting_802_1x_get_phase1_fast_provisioning (s_8021x); if (fast_prov) { if (!strcmp (fast_prov, "0")) provisioning_enabled = FALSE; else if (!strcmp (fast_prov, "1")) gtk_combo_box_set_active (GTK_COMBO_BOX (widget), 0); else if (!strcmp (fast_prov, "2")) gtk_combo_box_set_active (GTK_COMBO_BOX (widget), 1); else if (!strcmp (fast_prov, "3")) gtk_combo_box_set_active (GTK_COMBO_BOX (widget), 2); } } gtk_widget_set_sensitive (widget, provisioning_enabled); g_signal_connect (G_OBJECT (widget), "changed", (GCallback) wireless_security_changed_cb, ws_parent); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_pac_provision_checkbutton")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (widget), provisioning_enabled); g_signal_connect (G_OBJECT (widget), "toggled", G_CALLBACK (pac_toggled_cb), parent); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_anon_identity_entry")); if (s_8021x && nm_setting_802_1x_get_anonymous_identity (s_8021x)) gtk_entry_set_text (GTK_ENTRY (widget), nm_setting_802_1x_get_anonymous_identity (s_8021x)); g_signal_connect (G_OBJECT (widget), "changed", (GCallback) wireless_security_changed_cb, ws_parent); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_pac_file_button")); g_assert (widget); gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (widget), TRUE); gtk_file_chooser_button_set_title (GTK_FILE_CHOOSER_BUTTON (widget), _("Choose a PAC file")); g_signal_connect (G_OBJECT (widget), "selection-changed", (GCallback) wireless_security_changed_cb, ws_parent); filter = gtk_file_filter_new (); gtk_file_filter_add_pattern (filter, "*.pac"); gtk_file_filter_set_name (filter, _("PAC files (*.pac)")); gtk_file_chooser_add_filter (GTK_FILE_CHOOSER (widget), filter); filter = gtk_file_filter_new (); gtk_file_filter_add_pattern (filter, "*"); gtk_file_filter_set_name (filter, _("All files")); gtk_file_chooser_add_filter (GTK_FILE_CHOOSER (widget), filter); if (connection && s_8021x) { filename = nm_setting_802_1x_get_pac_file (s_8021x); if (filename) gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (widget), filename); } widget = inner_auth_combo_init (method, connection, s_8021x, secrets_only); inner_auth_combo_changed_cb (widget, (gpointer) method); if (secrets_only) { widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_anon_identity_label")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_anon_identity_entry")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_pac_provision_checkbutton")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_pac_provision_combo")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_pac_file_label")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_pac_file_button")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_inner_auth_label")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_fast_inner_auth_combo")); gtk_widget_hide (widget); } return method; } cinnamon-control-center-6.2.0/panels/network/wireless-security/eap-method-simple.c0000664000175000017500000003224614632072346027352 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2007 - 2014 Red Hat, Inc. */ #include "nm-default.h" #include #include #include "eap-method.h" #include "wireless-security.h" #include "helpers.h" #include "nma-ui-utils.h" #include "utils.h" struct _EAPMethodSimple { EAPMethod parent; WirelessSecurity *ws_parent; EAPMethodSimpleType type; EAPMethodSimpleFlags flags; GtkEntry *username_entry; GtkEntry *password_entry; GtkToggleButton *show_password; guint idle_func_id; }; static void show_toggled_cb (GtkToggleButton *button, EAPMethodSimple *method) { gboolean visible; visible = gtk_toggle_button_get_active (button); gtk_entry_set_visibility (method->password_entry, visible); } static gboolean always_ask_selected (GtkEntry *passwd_entry) { return !!( nma_utils_menu_to_secret_flags (GTK_WIDGET (passwd_entry)) & NM_SETTING_SECRET_FLAG_NOT_SAVED); } static gboolean validate (EAPMethod *parent, GError **error) { EAPMethodSimple *method = (EAPMethodSimple *)parent; const char *text; gboolean ret = TRUE; text = gtk_entry_get_text (method->username_entry); if (!text || !strlen (text)) { widget_set_error (GTK_WIDGET (method->username_entry)); g_set_error_literal (error, NMA_ERROR, NMA_ERROR_GENERIC, _("missing EAP username")); ret = FALSE; } else widget_unset_error (GTK_WIDGET (method->username_entry)); /* Check if the password should always be requested */ if (always_ask_selected (method->password_entry)) widget_unset_error (GTK_WIDGET (method->password_entry)); else { text = gtk_entry_get_text (method->password_entry); if (!text || !strlen (text)) { widget_set_error (GTK_WIDGET (method->password_entry)); if (ret) { g_set_error_literal (error, NMA_ERROR, NMA_ERROR_GENERIC, _("missing EAP password")); ret = FALSE; } } else widget_unset_error (GTK_WIDGET (method->password_entry)); } return ret; } static void add_to_size_group (EAPMethod *parent, GtkSizeGroup *group) { GtkWidget *widget; widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_simple_username_label")); g_assert (widget); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_simple_password_label")); g_assert (widget); gtk_size_group_add_widget (group, widget); } typedef struct { const char *name; gboolean autheap_allowed; } EapType; /* Indexed by EAP_METHOD_SIMPLE_TYPE_* */ static const EapType eap_table[EAP_METHOD_SIMPLE_TYPE_LAST] = { [EAP_METHOD_SIMPLE_TYPE_PAP] = { "pap", FALSE }, [EAP_METHOD_SIMPLE_TYPE_MSCHAP] = { "mschap", FALSE }, [EAP_METHOD_SIMPLE_TYPE_MSCHAP_V2] = { "mschapv2", TRUE }, [EAP_METHOD_SIMPLE_TYPE_MD5] = { "md5", TRUE }, [EAP_METHOD_SIMPLE_TYPE_PWD] = { "pwd", TRUE }, [EAP_METHOD_SIMPLE_TYPE_CHAP] = { "chap", FALSE }, [EAP_METHOD_SIMPLE_TYPE_GTC] = { "gtc", TRUE }, }; static void fill_connection (EAPMethod *parent, NMConnection *connection, NMSettingSecretFlags prev_flags) { EAPMethodSimple *method = (EAPMethodSimple *) parent; NMSetting8021x *s_8021x; gboolean not_saved = FALSE; NMSettingSecretFlags flags; const EapType *eap_type; s_8021x = nm_connection_get_setting_802_1x (connection); g_assert (s_8021x); /* If this is the main EAP method, clear any existing methods because the * user-selected on will replace it. */ if (parent->phase2 == FALSE) nm_setting_802_1x_clear_eap_methods (s_8021x); eap_type = &eap_table[method->type]; if (parent->phase2) { /* If the outer EAP method (TLS, TTLS, PEAP, etc) allows inner/phase2 * EAP methods (which only TTLS allows) *and* the inner/phase2 method * supports being an inner EAP method, then set PHASE2_AUTHEAP. * Otherwise the inner/phase2 method goes into PHASE2_AUTH. */ if ((method->flags & EAP_METHOD_SIMPLE_FLAG_AUTHEAP_ALLOWED) && eap_type->autheap_allowed) { g_object_set (s_8021x, NM_SETTING_802_1X_PHASE2_AUTHEAP, eap_type->name, NULL); g_object_set (s_8021x, NM_SETTING_802_1X_PHASE2_AUTH, NULL, NULL); } else { g_object_set (s_8021x, NM_SETTING_802_1X_PHASE2_AUTH, eap_type->name, NULL); g_object_set (s_8021x, NM_SETTING_802_1X_PHASE2_AUTHEAP, NULL, NULL); } } else nm_setting_802_1x_add_eap_method (s_8021x, eap_type->name); g_object_set (s_8021x, NM_SETTING_802_1X_IDENTITY, gtk_entry_get_text (method->username_entry), NULL); /* Save the password always ask setting */ not_saved = always_ask_selected (method->password_entry); flags = nma_utils_menu_to_secret_flags (GTK_WIDGET (method->password_entry)); nm_setting_set_secret_flags (NM_SETTING (s_8021x), NM_SETTING_802_1X_PASSWORD, flags, NULL); /* Fill the connection's password if we're in the applet so that it'll get * back to NM. From the editor though, since the connection isn't going * back to NM in response to a GetSecrets() call, we don't save it if the * user checked "Always Ask". */ if (!(method->flags & EAP_METHOD_SIMPLE_FLAG_IS_EDITOR) || not_saved == FALSE) g_object_set (s_8021x, NM_SETTING_802_1X_PASSWORD, gtk_entry_get_text (method->password_entry), NULL); /* Update secret flags and popup when editing the connection */ if (!(method->flags & EAP_METHOD_SIMPLE_FLAG_SECRETS_ONLY)) { GtkWidget *passwd_entry = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_simple_password_entry")); g_assert (passwd_entry); nma_utils_update_password_storage (passwd_entry, flags, NM_SETTING (s_8021x), parent->password_flags_name); } } static void update_secrets (EAPMethod *parent, NMConnection *connection) { helper_fill_secret_entry (connection, parent->builder, "eap_simple_password_entry", NM_TYPE_SETTING_802_1X, (HelperSecretFunc) nm_setting_802_1x_get_password); } static gboolean stuff_changed (EAPMethodSimple *method) { wireless_security_changed_cb (NULL, method->ws_parent); method->idle_func_id = 0; return FALSE; } static void password_storage_changed (GObject *entry, GParamSpec *pspec, EAPMethodSimple *method) { gboolean always_ask; gboolean secrets_only = method->flags & EAP_METHOD_SIMPLE_FLAG_SECRETS_ONLY; always_ask = always_ask_selected (method->password_entry); if (always_ask && !secrets_only) { /* we always clear this button and do not restore it * (because we want to hide the password). */ gtk_toggle_button_set_active (method->show_password, FALSE); } gtk_widget_set_sensitive (GTK_WIDGET (method->show_password), !always_ask || secrets_only); if (!method->idle_func_id) method->idle_func_id = g_idle_add ((GSourceFunc) stuff_changed, method); } /* Set the UI fields for user, password, always_ask and show_password to the * values as provided by method->ws_parent. */ static void set_userpass_ui (EAPMethodSimple *method) { if (method->ws_parent->username) gtk_entry_set_text (method->username_entry, method->ws_parent->username); else gtk_entry_set_text (method->username_entry, ""); if (method->ws_parent->password && !method->ws_parent->always_ask) gtk_entry_set_text (method->password_entry, method->ws_parent->password); else gtk_entry_set_text (method->password_entry, ""); gtk_toggle_button_set_active (method->show_password, method->ws_parent->show_password); password_storage_changed (NULL, NULL, method); } static void widgets_realized (GtkWidget *widget, EAPMethodSimple *method) { set_userpass_ui (method); } static void widgets_unrealized (GtkWidget *widget, EAPMethodSimple *method) { wireless_security_set_userpass (method->ws_parent, gtk_entry_get_text (method->username_entry), gtk_entry_get_text (method->password_entry), always_ask_selected (method->password_entry), gtk_toggle_button_get_active (method->show_password)); } static void destroy (EAPMethod *parent) { EAPMethodSimple *method = (EAPMethodSimple *) parent; GtkWidget *widget; widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_simple_notebook")); g_assert (widget); g_signal_handlers_disconnect_by_func (G_OBJECT (widget), (GCallback) widgets_realized, method); g_signal_handlers_disconnect_by_func (G_OBJECT (widget), (GCallback) widgets_unrealized, method); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_simple_password_entry")); g_assert (widget); g_signal_handlers_disconnect_by_func (G_OBJECT (widget), (GCallback) password_storage_changed, method); if (method->idle_func_id > 0) { g_source_remove (method->idle_func_id); method->idle_func_id = 0; } wireless_security_unref (method->ws_parent); } EAPMethodSimple * eap_method_simple_new (WirelessSecurity *ws_parent, NMConnection *connection, EAPMethodSimpleType type, EAPMethodSimpleFlags flags) { EAPMethod *parent; EAPMethodSimple *method; GtkWidget *widget; NMSetting8021x *s_8021x = NULL; parent = eap_method_init (sizeof (EAPMethodSimple), validate, add_to_size_group, fill_connection, update_secrets, destroy, "/org/cinnamon/control-center/network/eap-method-simple.ui", "eap_simple_notebook", "eap_simple_username_entry", flags & EAP_METHOD_SIMPLE_FLAG_PHASE2); if (!parent) return NULL; parent->password_flags_name = NM_SETTING_802_1X_PASSWORD; method = (EAPMethodSimple *) parent; method->ws_parent = wireless_security_ref (ws_parent); method->flags = flags; method->type = type; g_assert (type < EAP_METHOD_SIMPLE_TYPE_LAST); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_simple_notebook")); g_assert (widget); g_signal_connect (G_OBJECT (widget), "realize", (GCallback) widgets_realized, method); g_signal_connect (G_OBJECT (widget), "unrealize", (GCallback) widgets_unrealized, method); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_simple_username_entry")); g_assert (widget); method->username_entry = GTK_ENTRY (widget); g_signal_connect (G_OBJECT (widget), "changed", (GCallback) wireless_security_changed_cb, ws_parent); if (method->flags & EAP_METHOD_SIMPLE_FLAG_SECRETS_ONLY) gtk_widget_set_sensitive (widget, FALSE); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_simple_password_entry")); g_assert (widget); method->password_entry = GTK_ENTRY (widget); g_signal_connect (G_OBJECT (widget), "changed", (GCallback) wireless_security_changed_cb, ws_parent); /* Create password-storage popup menu for password entry under entry's secondary icon */ if (connection) s_8021x = nm_connection_get_setting_802_1x (connection); nma_utils_setup_password_storage (widget, 0, (NMSetting *) s_8021x, parent->password_flags_name, FALSE, flags & EAP_METHOD_SIMPLE_FLAG_SECRETS_ONLY); g_signal_connect (method->password_entry, "notify::secondary-icon-name", G_CALLBACK (password_storage_changed), method); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "show_checkbutton_eapsimple")); g_assert (widget); method->show_password = GTK_TOGGLE_BUTTON (widget); g_signal_connect (G_OBJECT (widget), "toggled", (GCallback) show_toggled_cb, method); /* Initialize the UI fields with the security settings from method->ws_parent. * This will be done again when the widget gets realized. It must be done here as well, * because the outer dialog will ask to 'validate' the connection before the security tab * is shown/realized (to enable the 'Apply' button). * As 'validate' accesses the contents of the UI fields, they must be initialized now, even * if the widgets are not yet visible. */ set_userpass_ui (method); return method; } cinnamon-control-center-6.2.0/panels/network/wireless-security/eap-method-ttls.c0000664000175000017500000004027014632072346027043 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2007 - 2014 Red Hat, Inc. */ #include "nm-default.h" #include #include #include "eap-method.h" #include "wireless-security.h" #include "utils.h" #define I_NAME_COLUMN 0 #define I_METHOD_COLUMN 1 struct _EAPMethodTTLS { EAPMethod parent; GtkSizeGroup *size_group; WirelessSecurity *sec_parent; gboolean is_editor; }; static void destroy (EAPMethod *parent) { EAPMethodTTLS *method = (EAPMethodTTLS *) parent; if (method->size_group) g_object_unref (method->size_group); } static gboolean validate (EAPMethod *parent, GError **error) { GtkWidget *widget; GtkTreeModel *model; GtkTreeIter iter; EAPMethod *eap = NULL; gboolean valid = FALSE; GError *local = NULL; if (!eap_method_validate_filepicker (parent->builder, "eap_ttls_ca_cert_button", TYPE_CA_CERT, NULL, NULL, &local)) { g_set_error (error, NMA_ERROR, NMA_ERROR_GENERIC, _("invalid EAP-TTLS CA certificate: %s"), local->message); g_clear_error (&local); return FALSE; } if (eap_method_ca_cert_required (parent->builder, "eap_ttls_ca_cert_not_required_checkbox", "eap_ttls_ca_cert_button")) { g_set_error_literal (error, NMA_ERROR, NMA_ERROR_GENERIC, _("invalid EAP-TTLS CA certificate: no certificate specified")); return FALSE; } widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_ttls_inner_auth_combo")); g_assert (widget); model = gtk_combo_box_get_model (GTK_COMBO_BOX (widget)); gtk_combo_box_get_active_iter (GTK_COMBO_BOX (widget), &iter); gtk_tree_model_get (model, &iter, I_METHOD_COLUMN, &eap, -1); g_assert (eap); valid = eap_method_validate (eap, error); eap_method_unref (eap); return valid; } static void ca_cert_not_required_toggled (GtkWidget *ignored, gpointer user_data) { EAPMethod *parent = user_data; eap_method_ca_cert_not_required_toggled (parent->builder, "eap_ttls_ca_cert_not_required_checkbox", "eap_ttls_ca_cert_button"); } static void add_to_size_group (EAPMethod *parent, GtkSizeGroup *group) { EAPMethodTTLS *method = (EAPMethodTTLS *) parent; GtkWidget *widget; GtkTreeModel *model; GtkTreeIter iter; EAPMethod *eap; if (method->size_group) g_object_unref (method->size_group); method->size_group = g_object_ref (group); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_ttls_ca_cert_not_required_checkbox")); g_assert (widget); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_ttls_anon_identity_label")); g_assert (widget); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_ttls_ca_cert_label")); g_assert (widget); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_ttls_inner_auth_label")); g_assert (widget); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_ttls_inner_auth_combo")); g_assert (widget); model = gtk_combo_box_get_model (GTK_COMBO_BOX (widget)); gtk_combo_box_get_active_iter (GTK_COMBO_BOX (widget), &iter); gtk_tree_model_get (model, &iter, I_METHOD_COLUMN, &eap, -1); g_assert (eap); eap_method_add_to_size_group (eap, group); eap_method_unref (eap); } static void fill_connection (EAPMethod *parent, NMConnection *connection, NMSettingSecretFlags flags) { NMSetting8021x *s_8021x; NMSetting8021xCKFormat format = NM_SETTING_802_1X_CK_FORMAT_UNKNOWN; GtkWidget *widget; const char *text; char *filename; EAPMethod *eap = NULL; GtkTreeModel *model; GtkTreeIter iter; GError *error = NULL; gboolean ca_cert_error = FALSE; s_8021x = nm_connection_get_setting_802_1x (connection); g_assert (s_8021x); nm_setting_802_1x_add_eap_method (s_8021x, "ttls"); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_ttls_anon_identity_entry")); g_assert (widget); text = gtk_entry_get_text (GTK_ENTRY (widget)); if (text && strlen (text)) g_object_set (s_8021x, NM_SETTING_802_1X_ANONYMOUS_IDENTITY, text, NULL); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_ttls_ca_cert_button")); g_assert (widget); filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (widget)); if (!nm_setting_802_1x_set_ca_cert (s_8021x, filename, NM_SETTING_802_1X_CK_SCHEME_PATH, &format, &error)) { g_warning ("Couldn't read CA certificate '%s': %s", filename, error ? error->message : "(unknown)"); g_clear_error (&error); ca_cert_error = TRUE; } eap_method_ca_cert_ignore_set (parent, connection, filename, ca_cert_error); g_free (filename); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_ttls_inner_auth_combo")); model = gtk_combo_box_get_model (GTK_COMBO_BOX (widget)); gtk_combo_box_get_active_iter (GTK_COMBO_BOX (widget), &iter); gtk_tree_model_get (model, &iter, I_METHOD_COLUMN, &eap, -1); g_assert (eap); eap_method_fill_connection (eap, connection, flags); eap_method_unref (eap); } static void inner_auth_combo_changed_cb (GtkWidget *combo, gpointer user_data) { EAPMethod *parent = (EAPMethod *) user_data; EAPMethodTTLS *method = (EAPMethodTTLS *) parent; GtkWidget *vbox; EAPMethod *eap = NULL; GList *elt, *children; GtkTreeModel *model; GtkTreeIter iter; GtkWidget *eap_widget; vbox = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_ttls_inner_auth_vbox")); g_assert (vbox); /* Remove any previous wireless security widgets */ children = gtk_container_get_children (GTK_CONTAINER (vbox)); for (elt = children; elt; elt = g_list_next (elt)) gtk_container_remove (GTK_CONTAINER (vbox), GTK_WIDGET (elt->data)); g_list_free (children); model = gtk_combo_box_get_model (GTK_COMBO_BOX (combo)); gtk_combo_box_get_active_iter (GTK_COMBO_BOX (combo), &iter); gtk_tree_model_get (model, &iter, I_METHOD_COLUMN, &eap, -1); g_assert (eap); eap_widget = eap_method_get_widget (eap); g_assert (eap_widget); gtk_widget_unparent (eap_widget); if (method->size_group) eap_method_add_to_size_group (eap, method->size_group); gtk_container_add (GTK_CONTAINER (vbox), eap_widget); eap_method_unref (eap); wireless_security_changed_cb (combo, method->sec_parent); } static GtkWidget * inner_auth_combo_init (EAPMethodTTLS *method, NMConnection *connection, NMSetting8021x *s_8021x, gboolean secrets_only) { EAPMethod *parent = (EAPMethod *) method; GtkWidget *combo; GtkListStore *auth_model; GtkTreeIter iter; EAPMethodSimple *em_pap; EAPMethodSimple *em_mschap; EAPMethodSimple *em_mschap_v2; EAPMethodSimple *em_chap; EAPMethodSimple *em_md5; EAPMethodSimple *em_gtc; guint32 active = 0; const char *phase2_auth = NULL; EAPMethodSimpleFlags simple_flags; auth_model = gtk_list_store_new (2, G_TYPE_STRING, eap_method_get_type ()); if (s_8021x) { if (nm_setting_802_1x_get_phase2_auth (s_8021x)) phase2_auth = nm_setting_802_1x_get_phase2_auth (s_8021x); else if (nm_setting_802_1x_get_phase2_autheap (s_8021x)) phase2_auth = nm_setting_802_1x_get_phase2_autheap (s_8021x); } simple_flags = EAP_METHOD_SIMPLE_FLAG_PHASE2 | EAP_METHOD_SIMPLE_FLAG_AUTHEAP_ALLOWED; if (method->is_editor) simple_flags |= EAP_METHOD_SIMPLE_FLAG_IS_EDITOR; if (secrets_only) simple_flags |= EAP_METHOD_SIMPLE_FLAG_SECRETS_ONLY; em_pap = eap_method_simple_new (method->sec_parent, connection, EAP_METHOD_SIMPLE_TYPE_PAP, simple_flags); gtk_list_store_append (auth_model, &iter); gtk_list_store_set (auth_model, &iter, I_NAME_COLUMN, _("PAP"), I_METHOD_COLUMN, em_pap, -1); eap_method_unref (EAP_METHOD (em_pap)); /* Check for defaulting to PAP */ if (phase2_auth && !strcasecmp (phase2_auth, "pap")) active = 0; em_mschap = eap_method_simple_new (method->sec_parent, connection, EAP_METHOD_SIMPLE_TYPE_MSCHAP, simple_flags); gtk_list_store_append (auth_model, &iter); gtk_list_store_set (auth_model, &iter, I_NAME_COLUMN, _("MSCHAP"), I_METHOD_COLUMN, em_mschap, -1); eap_method_unref (EAP_METHOD (em_mschap)); /* Check for defaulting to MSCHAP */ if (phase2_auth && !strcasecmp (phase2_auth, "mschap")) active = 1; em_mschap_v2 = eap_method_simple_new (method->sec_parent, connection, EAP_METHOD_SIMPLE_TYPE_MSCHAP_V2, simple_flags); gtk_list_store_append (auth_model, &iter); gtk_list_store_set (auth_model, &iter, I_NAME_COLUMN, _("MSCHAPv2"), I_METHOD_COLUMN, em_mschap_v2, -1); eap_method_unref (EAP_METHOD (em_mschap_v2)); /* Check for defaulting to MSCHAPv2 */ if (phase2_auth && !strcasecmp (phase2_auth, "mschapv2")) active = 2; em_chap = eap_method_simple_new (method->sec_parent, connection, EAP_METHOD_SIMPLE_TYPE_CHAP, simple_flags); gtk_list_store_append (auth_model, &iter); gtk_list_store_set (auth_model, &iter, I_NAME_COLUMN, _("CHAP"), I_METHOD_COLUMN, em_chap, -1); eap_method_unref (EAP_METHOD (em_chap)); /* Check for defaulting to CHAP */ if (phase2_auth && !strcasecmp (phase2_auth, "chap")) active = 3; em_md5 = eap_method_simple_new (method->sec_parent, connection, EAP_METHOD_SIMPLE_TYPE_MD5, simple_flags); gtk_list_store_append (auth_model, &iter); gtk_list_store_set (auth_model, &iter, I_NAME_COLUMN, _("MD5"), I_METHOD_COLUMN, em_md5, -1); eap_method_unref (EAP_METHOD (em_md5)); /* Check for defaulting to MD5 */ if (phase2_auth && !strcasecmp (phase2_auth, "md5")) active = 4; em_gtc = eap_method_simple_new (method->sec_parent, connection, EAP_METHOD_SIMPLE_TYPE_GTC, simple_flags); gtk_list_store_append (auth_model, &iter); gtk_list_store_set (auth_model, &iter, I_NAME_COLUMN, _("GTC"), I_METHOD_COLUMN, em_gtc, -1); eap_method_unref (EAP_METHOD (em_gtc)); /* Check for defaulting to GTC */ if (phase2_auth && !strcasecmp (phase2_auth, "gtc")) active = 5; combo = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_ttls_inner_auth_combo")); g_assert (combo); gtk_combo_box_set_model (GTK_COMBO_BOX (combo), GTK_TREE_MODEL (auth_model)); g_object_unref (G_OBJECT (auth_model)); gtk_combo_box_set_active (GTK_COMBO_BOX (combo), active); g_signal_connect (G_OBJECT (combo), "changed", (GCallback) inner_auth_combo_changed_cb, method); return combo; } static void update_secrets (EAPMethod *parent, NMConnection *connection) { eap_method_phase2_update_secrets_helper (parent, connection, "eap_ttls_inner_auth_combo", I_METHOD_COLUMN); } EAPMethodTTLS * eap_method_ttls_new (WirelessSecurity *ws_parent, NMConnection *connection, gboolean is_editor, gboolean secrets_only) { EAPMethod *parent; EAPMethodTTLS *method; GtkWidget *widget, *widget_ca_not_required_checkbox; GtkFileFilter *filter; NMSetting8021x *s_8021x = NULL; const char *filename; parent = eap_method_init (sizeof (EAPMethodTTLS), validate, add_to_size_group, fill_connection, update_secrets, destroy, "/org/cinnamon/control-center/network/eap-method-ttls.ui", "eap_ttls_notebook", "eap_ttls_anon_identity_entry", FALSE); if (!parent) return NULL; parent->password_flags_name = NM_SETTING_802_1X_PASSWORD; method = (EAPMethodTTLS *) parent; method->sec_parent = ws_parent; method->is_editor = is_editor; if (connection) s_8021x = nm_connection_get_setting_802_1x (connection); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_ttls_ca_cert_not_required_checkbox")); g_assert (widget); g_signal_connect (G_OBJECT (widget), "toggled", (GCallback) ca_cert_not_required_toggled, parent); g_signal_connect (G_OBJECT (widget), "toggled", (GCallback) wireless_security_changed_cb, ws_parent); widget_ca_not_required_checkbox = widget; widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_ttls_ca_cert_button")); g_assert (widget); gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (widget), TRUE); gtk_file_chooser_button_set_title (GTK_FILE_CHOOSER_BUTTON (widget), _("Choose a Certificate Authority certificate")); g_signal_connect (G_OBJECT (widget), "selection-changed", (GCallback) wireless_security_changed_cb, ws_parent); filter = eap_method_default_file_chooser_filter_new (FALSE); gtk_file_chooser_add_filter (GTK_FILE_CHOOSER (widget), filter); if (connection && s_8021x) { filename = NULL; if (nm_setting_802_1x_get_ca_cert_scheme (s_8021x) == NM_SETTING_802_1X_CK_SCHEME_PATH) { filename = nm_setting_802_1x_get_ca_cert_path (s_8021x); if (filename) gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (widget), filename); } gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (widget_ca_not_required_checkbox), !filename && eap_method_ca_cert_ignore_get (parent, connection)); } widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_ttls_anon_identity_entry")); if (s_8021x && nm_setting_802_1x_get_anonymous_identity (s_8021x)) gtk_entry_set_text (GTK_ENTRY (widget), nm_setting_802_1x_get_anonymous_identity (s_8021x)); g_signal_connect (G_OBJECT (widget), "changed", (GCallback) wireless_security_changed_cb, ws_parent); widget = inner_auth_combo_init (method, connection, s_8021x, secrets_only); inner_auth_combo_changed_cb (widget, (gpointer) method); if (secrets_only) { widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_ttls_anon_identity_label")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_ttls_anon_identity_entry")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_ttls_ca_cert_label")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_ttls_ca_cert_button")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_ttls_ca_cert_not_required_checkbox")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_ttls_inner_auth_label")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_ttls_inner_auth_combo")); gtk_widget_hide (widget); } return method; } cinnamon-control-center-6.2.0/panels/network/wireless-security/eap-method-tls.h0000664000175000017500000000247214632072346026666 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * (C) Copyright 2007 - 2010 Red Hat, Inc. */ #ifndef EAP_METHOD_TLS_H #define EAP_METHOD_TLS_H #include "wireless-security.h" typedef struct _EAPMethodTLS EAPMethodTLS; EAPMethodTLS *eap_method_tls_new (WirelessSecurity *ws_parent, NMConnection *connection, gboolean phase2, gboolean secrets_only); #endif /* EAP_METHOD_TLS_H */ cinnamon-control-center-6.2.0/panels/network/wireless-security/wireless-security.h0000664000175000017500000001360114632072346027541 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2007 - 2014 Red Hat, Inc. */ #ifndef WIRELESS_SECURITY_H #define WIRELESS_SECURITY_H #include #include typedef struct _WirelessSecurity WirelessSecurity; typedef void (*WSChangedFunc) (WirelessSecurity *sec, gpointer user_data); typedef void (*WSAddToSizeGroupFunc) (WirelessSecurity *sec, GtkSizeGroup *group); typedef void (*WSFillConnectionFunc) (WirelessSecurity *sec, NMConnection *connection); typedef void (*WSUpdateSecretsFunc) (WirelessSecurity *sec, NMConnection *connection); typedef void (*WSDestroyFunc) (WirelessSecurity *sec); typedef gboolean (*WSValidateFunc) (WirelessSecurity *sec, GError **error); typedef GtkWidget * (*WSNagUserFunc) (WirelessSecurity *sec); struct _WirelessSecurity { guint32 refcount; gsize obj_size; GtkBuilder *builder; GtkWidget *ui_widget; WSChangedFunc changed_notify; gpointer changed_notify_data; const char *default_field; gboolean adhoc_compatible; gboolean hotspot_compatible; char *username, *password; gboolean always_ask, show_password; WSAddToSizeGroupFunc add_to_size_group; WSFillConnectionFunc fill_connection; WSUpdateSecretsFunc update_secrets; WSValidateFunc validate; WSDestroyFunc destroy; }; #define WIRELESS_SECURITY(x) ((WirelessSecurity *) x) GtkWidget *wireless_security_get_widget (WirelessSecurity *sec); void wireless_security_set_changed_notify (WirelessSecurity *sec, WSChangedFunc func, gpointer user_data); gboolean wireless_security_validate (WirelessSecurity *sec, GError **error); void wireless_security_add_to_size_group (WirelessSecurity *sec, GtkSizeGroup *group); void wireless_security_fill_connection (WirelessSecurity *sec, NMConnection *connection); void wireless_security_update_secrets (WirelessSecurity *sec, NMConnection *connection); gboolean wireless_security_adhoc_compatible (WirelessSecurity *sec); gboolean wireless_security_hotspot_compatible (WirelessSecurity *sec); void wireless_security_set_userpass (WirelessSecurity *sec, const char *user, const char *password, gboolean always_ask, gboolean show_password); void wireless_security_set_userpass_802_1x (WirelessSecurity *sec, NMConnection *connection); WirelessSecurity *wireless_security_ref (WirelessSecurity *sec); void wireless_security_unref (WirelessSecurity *sec); GType wireless_security_get_type (void); /* Below for internal use only */ #include "ws-wep-key.h" #include "ws-wpa-psk.h" #include "ws-leap.h" #include "ws-wpa-eap.h" #include "ws-dynamic-wep.h" WirelessSecurity *wireless_security_init (gsize obj_size, WSValidateFunc validate, WSAddToSizeGroupFunc add_to_size_group, WSFillConnectionFunc fill_connection, WSUpdateSecretsFunc update_secrets, WSDestroyFunc destroy, const char *ui_resource, const char *ui_widget_name, const char *default_field); void wireless_security_changed_cb (GtkWidget *entry, gpointer user_data); void wireless_security_clear_ciphers (NMConnection *connection); #define AUTH_NAME_COLUMN 0 #define AUTH_METHOD_COLUMN 1 GtkWidget *ws_802_1x_auth_combo_init (WirelessSecurity *sec, const char *combo_name, const char *combo_label, GCallback auth_combo_changed_cb, NMConnection *connection, gboolean is_editor, gboolean secrets_only); void ws_802_1x_auth_combo_changed (GtkWidget *combo, WirelessSecurity *sec, const char *vbox_name, GtkSizeGroup *size_group); gboolean ws_802_1x_validate (WirelessSecurity *sec, const char *combo_name, GError **error); void ws_802_1x_add_to_size_group (WirelessSecurity *sec, GtkSizeGroup *size_group, const char *label_name, const char *combo_name); void ws_802_1x_fill_connection (WirelessSecurity *sec, const char *combo_name, NMConnection *connection); void ws_802_1x_update_secrets (WirelessSecurity *sec, const char *combo_name, NMConnection *connection); #endif /* WIRELESS_SECURITY_H */ cinnamon-control-center-6.2.0/panels/network/wireless-security/meson.build0000664000175000017500000000147414632072346026035 0ustar fabiofabiowireless_securityInclude = include_directories('.') libwireless_security_sources = [ 'eap-method-fast.c', 'eap-method-leap.c', 'eap-method-peap.c', 'eap-method-simple.c', 'eap-method-tls.c', 'eap-method-ttls.c', 'eap-method.c', 'helpers.c', 'utils.c', 'wireless-security.c', 'ws-dynamic-wep.c', 'ws-leap.c', 'ws-wep-key.c', 'ws-wpa-eap.c', 'ws-wpa-psk.c', gnome.compile_resources('wireless-security-resources', 'wireless-security.gresource.xml', c_name: 'wireless_security', source_dir: meson.current_source_dir(), ), ] libwireless_security = static_library('wireless_security', libwireless_security_sources, include_directories: rootInclude, dependencies: [ gtk, libnm, libnma, ], ) run_target('update-from-nma', command: find_program('update_from_nma.sh')) cinnamon-control-center-6.2.0/panels/network/wireless-security/eap-method-fast.h0000664000175000017500000000251114632072346027013 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* vim: set ft=c ts=4 sts=4 sw=4 noexpandtab smartindent: */ /* EAP-FAST authentication method (RFC4851) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * (C) Copyright 2012 Red Hat, Inc. */ #ifndef EAP_METHOD_FAST_H #define EAP_METHOD_FAST_H #include "wireless-security.h" typedef struct _EAPMethodFAST EAPMethodFAST; EAPMethodFAST *eap_method_fast_new (WirelessSecurity *ws_parent, NMConnection *connection, gboolean is_editor, gboolean secrets_only); #endif /* EAP_METHOD_FAST_H */ cinnamon-control-center-6.2.0/panels/network/wireless-security/ws-dynamic-wep.c0000664000175000017500000001016114632072346026674 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2007 - 2014 Red Hat, Inc. */ #include "nm-default.h" #include #include #include "wireless-security.h" #include "eap-method.h" struct _WirelessSecurityDynamicWEP { WirelessSecurity parent; GtkSizeGroup *size_group; }; static void destroy (WirelessSecurity *parent) { WirelessSecurityDynamicWEP *sec = (WirelessSecurityDynamicWEP *) parent; if (sec->size_group) g_object_unref (sec->size_group); } static gboolean validate (WirelessSecurity *parent, GError **error) { return ws_802_1x_validate (parent, "dynamic_wep_auth_combo", error); } static void add_to_size_group (WirelessSecurity *parent, GtkSizeGroup *group) { WirelessSecurityDynamicWEP *sec = (WirelessSecurityDynamicWEP *) parent; if (sec->size_group) g_object_unref (sec->size_group); sec->size_group = g_object_ref (group); ws_802_1x_add_to_size_group (parent, sec->size_group, "dynamic_wep_auth_label", "dynamic_wep_auth_combo"); } static void fill_connection (WirelessSecurity *parent, NMConnection *connection) { NMSettingWirelessSecurity *s_wireless_sec; ws_802_1x_fill_connection (parent, "dynamic_wep_auth_combo", connection); s_wireless_sec = nm_connection_get_setting_wireless_security (connection); g_assert (s_wireless_sec); g_object_set (s_wireless_sec, NM_SETTING_WIRELESS_SECURITY_KEY_MGMT, "ieee8021x", NULL); } static void auth_combo_changed_cb (GtkWidget *combo, gpointer user_data) { WirelessSecurity *parent = WIRELESS_SECURITY (user_data); WirelessSecurityDynamicWEP *sec = (WirelessSecurityDynamicWEP *) parent; ws_802_1x_auth_combo_changed (combo, parent, "dynamic_wep_method_vbox", sec->size_group); } static void update_secrets (WirelessSecurity *parent, NMConnection *connection) { ws_802_1x_update_secrets (parent, "dynamic_wep_auth_combo", connection); } WirelessSecurityDynamicWEP * ws_dynamic_wep_new (NMConnection *connection, gboolean is_editor, gboolean secrets_only) { WirelessSecurity *parent; GtkWidget *widget; parent = wireless_security_init (sizeof (WirelessSecurityDynamicWEP), validate, add_to_size_group, fill_connection, update_secrets, destroy, "/org/cinnamon/control-center/network/ws-dynamic-wep.ui", "dynamic_wep_notebook", NULL); if (!parent) return NULL; parent->adhoc_compatible = FALSE; parent->hotspot_compatible = FALSE; widget = ws_802_1x_auth_combo_init (parent, "dynamic_wep_auth_combo", "dynamic_wep_auth_label", (GCallback) auth_combo_changed_cb, connection, is_editor, secrets_only); auth_combo_changed_cb (widget, (gpointer) parent); return (WirelessSecurityDynamicWEP *) parent; } cinnamon-control-center-6.2.0/panels/network/wireless-security/ws-leap.h0000664000175000017500000000217614632072346025414 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2007 - 2014 Red Hat, Inc. */ #ifndef WS_LEAP_H #define WS_LEAP_H typedef struct _WirelessSecurityLEAP WirelessSecurityLEAP; WirelessSecurityLEAP * ws_leap_new (NMConnection *connection, gboolean secrets_only); #endif /* WS_LEAP_H */ cinnamon-control-center-6.2.0/panels/network/wireless-security/ws-wpa-eap.c0000664000175000017500000001001114632072346026003 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2007 - 2014 Red Hat, Inc. */ #include "nm-default.h" #include #include #include "wireless-security.h" #include "eap-method.h" struct _WirelessSecurityWPAEAP { WirelessSecurity parent; GtkSizeGroup *size_group; }; static void destroy (WirelessSecurity *parent) { WirelessSecurityWPAEAP *sec = (WirelessSecurityWPAEAP *) parent; if (sec->size_group) g_object_unref (sec->size_group); } static gboolean validate (WirelessSecurity *parent, GError **error) { return ws_802_1x_validate (parent, "wpa_eap_auth_combo", error); } static void add_to_size_group (WirelessSecurity *parent, GtkSizeGroup *group) { WirelessSecurityWPAEAP *sec = (WirelessSecurityWPAEAP *) parent; if (sec->size_group) g_object_unref (sec->size_group); sec->size_group = g_object_ref (group); ws_802_1x_add_to_size_group (parent, sec->size_group, "wpa_eap_auth_label", "wpa_eap_auth_combo"); } static void fill_connection (WirelessSecurity *parent, NMConnection *connection) { NMSettingWirelessSecurity *s_wireless_sec; ws_802_1x_fill_connection (parent, "wpa_eap_auth_combo", connection); s_wireless_sec = nm_connection_get_setting_wireless_security (connection); g_assert (s_wireless_sec); g_object_set (s_wireless_sec, NM_SETTING_WIRELESS_SECURITY_KEY_MGMT, "wpa-eap", NULL); } static void auth_combo_changed_cb (GtkWidget *combo, gpointer user_data) { WirelessSecurity *parent = WIRELESS_SECURITY (user_data); WirelessSecurityWPAEAP *sec = (WirelessSecurityWPAEAP *) parent; ws_802_1x_auth_combo_changed (combo, parent, "wpa_eap_method_vbox", sec->size_group); } static void update_secrets (WirelessSecurity *parent, NMConnection *connection) { ws_802_1x_update_secrets (parent, "wpa_eap_auth_combo", connection); } WirelessSecurityWPAEAP * ws_wpa_eap_new (NMConnection *connection, gboolean is_editor, gboolean secrets_only) { WirelessSecurity *parent; GtkWidget *widget; parent = wireless_security_init (sizeof (WirelessSecurityWPAEAP), validate, add_to_size_group, fill_connection, update_secrets, destroy, "/org/cinnamon/control-center/network/ws-wpa-eap.ui", "wpa_eap_notebook", NULL); if (!parent) return NULL; parent->adhoc_compatible = FALSE; parent->hotspot_compatible = FALSE; widget = ws_802_1x_auth_combo_init (parent, "wpa_eap_auth_combo", "wpa_eap_auth_label", (GCallback) auth_combo_changed_cb, connection, is_editor, secrets_only); auth_combo_changed_cb (widget, parent); return (WirelessSecurityWPAEAP *) parent; } cinnamon-control-center-6.2.0/panels/network/wireless-security/eap-method-tls.ui0000664000175000017500000002243014632072346027050 0ustar fabiofabio True False False False True False start 6 2 6 6 True False 1 I_dentity True eap_tls_identity_entry GTK_FILL True True True 1 2 True False 1 _User certificate True eap_tls_user_cert_button 1 2 GTK_FILL True False 1 C_A certificate True eap_tls_ca_cert_button 2 3 GTK_FILL True False 1 2 2 3 GTK_FILL GTK_FILL No CA certificate is _required True True False True True 1 2 3 4 GTK_FILL True False 1 Private _key True eap_tls_private_key_button 4 5 GTK_FILL True False 1 2 4 5 GTK_FILL GTK_FILL True False 1 _Private key password True eap_tls_private_key_password_entry 5 6 GTK_FILL True True False True 1 2 5 6 Sho_w password True True False True True 1 2 6 7 GTK_FILL True False 1 2 1 2 GTK_FILL GTK_FILL True False False cinnamon-control-center-6.2.0/panels/network/wireless-security/eap-method-tls.c0000664000175000017500000005343214632072346026663 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2007 - 2014 Red Hat, Inc. */ #include "nm-default.h" #include #include #include "eap-method.h" #include "wireless-security.h" #include "helpers.h" #include "nma-ui-utils.h" #include "utils.h" struct _EAPMethodTLS { EAPMethod parent; gboolean editing_connection; }; static void show_toggled_cb (GtkCheckButton *button, EAPMethod *method) { GtkWidget *widget; gboolean visible; widget = GTK_WIDGET (gtk_builder_get_object (method->builder, "eap_tls_private_key_password_entry")); g_assert (widget); visible = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (button)); gtk_entry_set_visibility (GTK_ENTRY (widget), visible); } static gboolean validate (EAPMethod *parent, GError **error) { NMSetting8021xCKFormat format = NM_SETTING_802_1X_CK_FORMAT_UNKNOWN; GtkWidget *widget; const char *password, *identity; GError *local = NULL; gboolean ret = TRUE; widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_identity_entry")); g_assert (widget); identity = gtk_entry_get_text (GTK_ENTRY (widget)); if (!identity || !strlen (identity)) { widget_set_error (widget); g_set_error_literal (error, NMA_ERROR, NMA_ERROR_GENERIC, _("missing EAP-TLS identity")); ret = FALSE; } else { widget_unset_error (widget); } if (!eap_method_validate_filepicker (parent->builder, "eap_tls_ca_cert_button", TYPE_CA_CERT, NULL, NULL, &local)) { widget_set_error (GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_ca_cert_button"))); if (ret) { g_set_error (error, NMA_ERROR, NMA_ERROR_GENERIC, _("invalid EAP-TLS CA certificate: %s"), local->message); ret = FALSE; } g_clear_error (&local); } else if (eap_method_ca_cert_required (parent->builder, "eap_tls_ca_cert_not_required_checkbox", "eap_tls_ca_cert_button")) { widget_set_error (GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_ca_cert_button"))); if (ret) { g_set_error_literal (error, NMA_ERROR, NMA_ERROR_GENERIC, _("invalid EAP-TLS CA certificate: no certificate specified")); ret = FALSE; } } widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_private_key_password_entry")); g_assert (widget); password = gtk_entry_get_text (GTK_ENTRY (widget)); if (!password || !strlen (password)) { widget_set_error (widget); if (ret) { g_set_error_literal (error, NMA_ERROR, NMA_ERROR_GENERIC, _("invalid EAP-TLS password: missing")); ret = FALSE; } } else { widget_unset_error (widget); } if (!eap_method_validate_filepicker (parent->builder, "eap_tls_private_key_button", TYPE_PRIVATE_KEY, password, &format, &local)) { if (ret) { g_set_error (error, NMA_ERROR, NMA_ERROR_GENERIC, _("invalid EAP-TLS private-key: %s"), local->message); ret = FALSE; } g_clear_error (&local); widget_set_error (GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_private_key_button"))); } if (format != NM_SETTING_802_1X_CK_FORMAT_PKCS12) { if (!eap_method_validate_filepicker (parent->builder, "eap_tls_user_cert_button", TYPE_CLIENT_CERT, NULL, NULL, &local)) { if (ret) { g_set_error (error, NMA_ERROR, NMA_ERROR_GENERIC, _("invalid EAP-TLS user-certificate: %s"), local->message); ret = FALSE; } g_clear_error (&local); widget_set_error (GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_user_cert_button"))); } } return ret; } static void ca_cert_not_required_toggled (GtkWidget *ignored, gpointer user_data) { EAPMethod *parent = user_data; eap_method_ca_cert_not_required_toggled (parent->builder, "eap_tls_ca_cert_not_required_checkbox", "eap_tls_ca_cert_button"); } static void add_to_size_group (EAPMethod *parent, GtkSizeGroup *group) { GtkWidget *widget; widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_ca_cert_not_required_checkbox")); g_assert (widget); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_identity_label")); g_assert (widget); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_user_cert_label")); g_assert (widget); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_ca_cert_label")); g_assert (widget); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_private_key_label")); g_assert (widget); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_private_key_password_label")); g_assert (widget); gtk_size_group_add_widget (group, widget); } static void fill_connection (EAPMethod *parent, NMConnection *connection, NMSettingSecretFlags flags) { EAPMethodTLS *method = (EAPMethodTLS *) parent; NMSetting8021xCKFormat format = NM_SETTING_802_1X_CK_FORMAT_UNKNOWN; NMSetting8021x *s_8021x; NMSettingSecretFlags secret_flags; GtkWidget *widget, *passwd_entry; char *ca_filename, *pk_filename, *cc_filename; const char *password = NULL; GError *error = NULL; gboolean ca_cert_error = FALSE; s_8021x = nm_connection_get_setting_802_1x (connection); g_assert (s_8021x); if (parent->phase2) g_object_set (s_8021x, NM_SETTING_802_1X_PHASE2_AUTH, "tls", NULL); else nm_setting_802_1x_add_eap_method (s_8021x, "tls"); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_identity_entry")); g_assert (widget); g_object_set (s_8021x, NM_SETTING_802_1X_IDENTITY, gtk_entry_get_text (GTK_ENTRY (widget)), NULL); /* TLS private key */ widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_private_key_password_entry")); g_assert (widget); password = gtk_entry_get_text (GTK_ENTRY (widget)); g_assert (password); passwd_entry = widget; widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_private_key_button")); g_assert (widget); pk_filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (widget)); g_assert (pk_filename); if (parent->phase2) { if (!nm_setting_802_1x_set_phase2_private_key (s_8021x, pk_filename, password, NM_SETTING_802_1X_CK_SCHEME_PATH, &format, &error)) { g_warning ("Couldn't read phase2 private key '%s': %s", pk_filename, error ? error->message : "(unknown)"); g_clear_error (&error); } } else { if (!nm_setting_802_1x_set_private_key (s_8021x, pk_filename, password, NM_SETTING_802_1X_CK_SCHEME_PATH, &format, &error)) { g_warning ("Couldn't read private key '%s': %s", pk_filename, error ? error->message : "(unknown)"); g_clear_error (&error); } } g_free (pk_filename); /* Save 802.1X password flags to the connection */ secret_flags = nma_utils_menu_to_secret_flags (passwd_entry); nm_setting_set_secret_flags (NM_SETTING (s_8021x), parent->password_flags_name, secret_flags, NULL); /* Update secret flags and popup when editing the connection */ if (method->editing_connection) { nma_utils_update_password_storage (passwd_entry, secret_flags, NM_SETTING (s_8021x), parent->password_flags_name); } /* TLS client certificate */ if (format != NM_SETTING_802_1X_CK_FORMAT_PKCS12) { /* If the key is pkcs#12 nm_setting_802_1x_set_private_key() already * set the client certificate for us. */ widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_user_cert_button")); g_assert (widget); cc_filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (widget)); g_assert (cc_filename); format = NM_SETTING_802_1X_CK_FORMAT_UNKNOWN; if (parent->phase2) { if (!nm_setting_802_1x_set_phase2_client_cert (s_8021x, cc_filename, NM_SETTING_802_1X_CK_SCHEME_PATH, &format, &error)) { g_warning ("Couldn't read phase2 client certificate '%s': %s", cc_filename, error ? error->message : "(unknown)"); g_clear_error (&error); } } else { if (!nm_setting_802_1x_set_client_cert (s_8021x, cc_filename, NM_SETTING_802_1X_CK_SCHEME_PATH, &format, &error)) { g_warning ("Couldn't read client certificate '%s': %s", cc_filename, error ? error->message : "(unknown)"); g_clear_error (&error); } } g_free (cc_filename); } /* TLS CA certificate */ widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_ca_cert_button")); g_assert (widget); ca_filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (widget)); format = NM_SETTING_802_1X_CK_FORMAT_UNKNOWN; if (parent->phase2) { if (!nm_setting_802_1x_set_phase2_ca_cert (s_8021x, ca_filename, NM_SETTING_802_1X_CK_SCHEME_PATH, &format, &error)) { g_warning ("Couldn't read phase2 CA certificate '%s': %s", ca_filename, error ? error->message : "(unknown)"); g_clear_error (&error); ca_cert_error = TRUE; } } else { if (!nm_setting_802_1x_set_ca_cert (s_8021x, ca_filename, NM_SETTING_802_1X_CK_SCHEME_PATH, &format, &error)) { g_warning ("Couldn't read CA certificate '%s': %s", ca_filename, error ? error->message : "(unknown)"); g_clear_error (&error); ca_cert_error = TRUE; } } eap_method_ca_cert_ignore_set (parent, connection, ca_filename, ca_cert_error); g_free (ca_filename); } static void private_key_picker_helper (EAPMethod *parent, const char *filename, gboolean changed) { NMSetting8021x *setting; NMSetting8021xCKFormat cert_format = NM_SETTING_802_1X_CK_FORMAT_UNKNOWN; const char *password; GtkWidget *widget; widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_private_key_password_entry")); g_assert (widget); password = gtk_entry_get_text (GTK_ENTRY (widget)); setting = (NMSetting8021x *) nm_setting_802_1x_new (); nm_setting_802_1x_set_private_key (setting, filename, password, NM_SETTING_802_1X_CK_SCHEME_PATH, &cert_format, NULL); g_object_unref (setting); /* With PKCS#12, the client cert must be the same as the private key */ widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_user_cert_button")); if (cert_format == NM_SETTING_802_1X_CK_FORMAT_PKCS12) { gtk_file_chooser_unselect_all (GTK_FILE_CHOOSER (widget)); gtk_widget_set_sensitive (widget, FALSE); } else if (changed) gtk_widget_set_sensitive (widget, TRUE); /* Warn the user if the private key is unencrypted */ if (!eap_method_is_encrypted_private_key (filename)) { GtkWidget *dialog; GtkWidget *toplevel; GtkWindow *parent_window = NULL; toplevel = gtk_widget_get_toplevel (parent->ui_widget); if (gtk_widget_is_toplevel (toplevel)) parent_window = GTK_WINDOW (toplevel); dialog = gtk_message_dialog_new (parent_window, GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_WARNING, GTK_BUTTONS_OK, "%s", _("Unencrypted private keys are insecure")); gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), "%s", _("The selected private key does not appear to be protected by a password. This could allow your security credentials to be compromised. Please select a password-protected private key.\n\n(You can password-protect your private key with openssl)")); gtk_dialog_run (GTK_DIALOG (dialog)); gtk_widget_destroy (dialog); } } static void private_key_picker_file_set_cb (GtkWidget *chooser, gpointer user_data) { EAPMethod *parent = (EAPMethod *) user_data; char *filename; filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (chooser)); if (filename) private_key_picker_helper (parent, filename, TRUE); g_free (filename); } static void reset_filter (GtkWidget *widget, GParamSpec *spec, gpointer user_data) { if (!gtk_file_chooser_get_filter (GTK_FILE_CHOOSER (widget))) { g_signal_handlers_block_by_func (widget, reset_filter, user_data); gtk_file_chooser_set_filter (GTK_FILE_CHOOSER (widget), GTK_FILE_FILTER (user_data)); g_signal_handlers_unblock_by_func (widget, reset_filter, user_data); } } typedef const char * (*PathFunc) (NMSetting8021x *setting); typedef NMSetting8021xCKScheme (*SchemeFunc) (NMSetting8021x *setting); static void setup_filepicker (GtkBuilder *builder, const char *name, const char *title, WirelessSecurity *ws_parent, EAPMethod *parent, NMSetting8021x *s_8021x, SchemeFunc scheme_func, PathFunc path_func, gboolean privkey, gboolean client_cert) { GtkWidget *widget; GtkFileFilter *filter; const char *filename = NULL; widget = GTK_WIDGET (gtk_builder_get_object (builder, name)); g_assert (widget); gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (widget), TRUE); gtk_file_chooser_button_set_title (GTK_FILE_CHOOSER_BUTTON (widget), title); if (s_8021x && path_func && scheme_func) { if (scheme_func (s_8021x) == NM_SETTING_802_1X_CK_SCHEME_PATH) { filename = path_func (s_8021x); if (filename) gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (widget), filename); } } /* Connect a special handler for private keys to intercept PKCS#12 key types * and desensitize the user cert button. */ if (privkey) { g_signal_connect (G_OBJECT (widget), "selection-changed", (GCallback) private_key_picker_file_set_cb, parent); if (filename) private_key_picker_helper (parent, filename, FALSE); } g_signal_connect (G_OBJECT (widget), "selection-changed", (GCallback) wireless_security_changed_cb, ws_parent); filter = eap_method_default_file_chooser_filter_new (privkey); gtk_file_chooser_add_filter (GTK_FILE_CHOOSER (widget), filter); /* For some reason, GTK+ calls set_current_filter (..., NULL) from * gtkfilechooserdefault.c::show_and_select_files_finished_loading() on our * dialog; so force-reset the filter to what we want it to be whenever * it gets cleared. */ if (client_cert) g_signal_connect (G_OBJECT (widget), "notify::filter", (GCallback) reset_filter, filter); } static void update_secrets (EAPMethod *parent, NMConnection *connection) { NMSetting8021x *s_8021x; HelperSecretFunc password_func; SchemeFunc scheme_func; PathFunc path_func; const char *filename; GtkWidget *widget; if (parent->phase2) { password_func = (HelperSecretFunc) nm_setting_802_1x_get_phase2_private_key_password; scheme_func = nm_setting_802_1x_get_phase2_private_key_scheme; path_func = nm_setting_802_1x_get_phase2_private_key_path; } else { password_func = (HelperSecretFunc) nm_setting_802_1x_get_private_key_password; scheme_func = nm_setting_802_1x_get_private_key_scheme; path_func = nm_setting_802_1x_get_private_key_path; } helper_fill_secret_entry (connection, parent->builder, "eap_tls_private_key_password_entry", NM_TYPE_SETTING_802_1X, password_func); /* Set the private key filepicker button path if we have a private key */ s_8021x = nm_connection_get_setting_802_1x (connection); if (s_8021x && (scheme_func (s_8021x) == NM_SETTING_802_1X_CK_SCHEME_PATH)) { filename = path_func (s_8021x); if (filename) { widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_private_key_button")); g_assert (widget); gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (widget), filename); } } } EAPMethodTLS * eap_method_tls_new (WirelessSecurity *ws_parent, NMConnection *connection, gboolean phase2, gboolean secrets_only) { EAPMethodTLS *method; EAPMethod *parent; GtkWidget *widget; NMSetting8021x *s_8021x = NULL; gboolean ca_not_required = FALSE; parent = eap_method_init (sizeof (EAPMethodTLS), validate, add_to_size_group, fill_connection, update_secrets, NULL, "/org/cinnamon/control-center/network/eap-method-tls.ui", "eap_tls_notebook", "eap_tls_identity_entry", phase2); if (!parent) return NULL; parent->password_flags_name = phase2 ? NM_SETTING_802_1X_PHASE2_PRIVATE_KEY_PASSWORD : NM_SETTING_802_1X_PRIVATE_KEY_PASSWORD; method = (EAPMethodTLS *) parent; method->editing_connection = secrets_only ? FALSE : TRUE; if (connection) s_8021x = nm_connection_get_setting_802_1x (connection); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_ca_cert_not_required_checkbox")); g_assert (widget); g_signal_connect (G_OBJECT (widget), "toggled", (GCallback) ca_cert_not_required_toggled, parent); g_signal_connect (G_OBJECT (widget), "toggled", (GCallback) wireless_security_changed_cb, ws_parent); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_identity_entry")); g_assert (widget); g_signal_connect (G_OBJECT (widget), "changed", (GCallback) wireless_security_changed_cb, ws_parent); if (s_8021x && nm_setting_802_1x_get_identity (s_8021x)) gtk_entry_set_text (GTK_ENTRY (widget), nm_setting_802_1x_get_identity (s_8021x)); setup_filepicker (parent->builder, "eap_tls_user_cert_button", _("Choose your personal certificate"), ws_parent, parent, s_8021x, phase2 ? nm_setting_802_1x_get_phase2_client_cert_scheme : nm_setting_802_1x_get_client_cert_scheme, phase2 ? nm_setting_802_1x_get_phase2_client_cert_path : nm_setting_802_1x_get_client_cert_path, FALSE, TRUE); setup_filepicker (parent->builder, "eap_tls_ca_cert_button", _("Choose a Certificate Authority certificate"), ws_parent, parent, s_8021x, phase2 ? nm_setting_802_1x_get_phase2_ca_cert_scheme : nm_setting_802_1x_get_ca_cert_scheme, phase2 ? nm_setting_802_1x_get_phase2_ca_cert_path : nm_setting_802_1x_get_ca_cert_path, FALSE, FALSE); setup_filepicker (parent->builder, "eap_tls_private_key_button", _("Choose your private key"), ws_parent, parent, s_8021x, phase2 ? nm_setting_802_1x_get_phase2_private_key_scheme : nm_setting_802_1x_get_private_key_scheme, phase2 ? nm_setting_802_1x_get_phase2_private_key_path : nm_setting_802_1x_get_private_key_path, TRUE, FALSE); if (connection && eap_method_ca_cert_ignore_get (parent, connection)) { widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_ca_cert_button")); ca_not_required = !gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (widget)); } widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_ca_cert_not_required_checkbox")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (widget), ca_not_required); /* Fill secrets, if any */ if (connection) update_secrets (parent, connection); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_private_key_password_entry")); g_assert (widget); g_signal_connect (G_OBJECT (widget), "changed", (GCallback) wireless_security_changed_cb, ws_parent); /* Create password-storage popup menu for password entry under entry's secondary icon */ nma_utils_setup_password_storage (widget, 0, (NMSetting *) s_8021x, parent->password_flags_name, FALSE, secrets_only); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "show_checkbutton_eaptls")); g_assert (widget); g_signal_connect (G_OBJECT (widget), "toggled", (GCallback) show_toggled_cb, parent); if (secrets_only) { widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_identity_entry")); gtk_widget_set_sensitive (widget, FALSE); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_user_cert_label")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_user_cert_button")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_private_key_label")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_private_key_button")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_ca_cert_label")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_ca_cert_button")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_tls_ca_cert_not_required_checkbox")); gtk_widget_hide (widget); } return method; } cinnamon-control-center-6.2.0/panels/network/wireless-security/eap-method-peap.h0000664000175000017500000000251214632072346027004 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * (C) Copyright 2007 - 2010 Red Hat, Inc. */ #ifndef EAP_METHOD_PEAP_H #define EAP_METHOD_PEAP_H #include "wireless-security.h" typedef struct _EAPMethodPEAP EAPMethodPEAP; EAPMethodPEAP *eap_method_peap_new (WirelessSecurity *ws_parent, NMConnection *connection, gboolean is_editor, gboolean secrets_only); #endif /* EAP_METHOD_PEAP_H */ cinnamon-control-center-6.2.0/panels/network/wireless-security/helpers.c0000664000175000017500000000327614632072346025503 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2009 - 2014 Red Hat, Inc. */ #include "nm-default.h" #include "helpers.h" void helper_fill_secret_entry (NMConnection *connection, GtkBuilder *builder, const char *entry_name, GType setting_type, HelperSecretFunc func) { GtkWidget *widget; NMSetting *setting; const char *tmp; g_return_if_fail (connection != NULL); g_return_if_fail (builder != NULL); g_return_if_fail (entry_name != NULL); g_return_if_fail (func != NULL); setting = nm_connection_get_setting (connection, setting_type); if (setting) { tmp = (*func) (setting); if (tmp) { widget = GTK_WIDGET (gtk_builder_get_object (builder, entry_name)); g_assert (widget); gtk_entry_set_text (GTK_ENTRY (widget), tmp); } } } cinnamon-control-center-6.2.0/panels/network/wireless-security/eap-method-leap.c0000664000175000017500000002202214632072346026771 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2007 - 2014 Red Hat, Inc. */ #include "nm-default.h" #include #include #include "eap-method.h" #include "wireless-security.h" #include "helpers.h" #include "nma-ui-utils.h" #include "utils.h" struct _EAPMethodLEAP { EAPMethod parent; WirelessSecurity *ws_parent; gboolean editing_connection; GtkEntry *username_entry; GtkEntry *password_entry; GtkToggleButton *show_password; }; static void show_toggled_cb (GtkToggleButton *button, EAPMethodLEAP *method) { gboolean visible; visible = gtk_toggle_button_get_active (button); gtk_entry_set_visibility (method->password_entry, visible); } static gboolean validate (EAPMethod *parent, GError **error) { EAPMethodLEAP *method = (EAPMethodLEAP *)parent; const char *text; gboolean ret = TRUE; text = gtk_entry_get_text (method->username_entry); if (!text || !strlen (text)) { widget_set_error (GTK_WIDGET (method->username_entry)); g_set_error_literal (error, NMA_ERROR, NMA_ERROR_GENERIC, _("missing EAP-LEAP username")); ret = FALSE; } else widget_unset_error (GTK_WIDGET (method->username_entry)); text = gtk_entry_get_text (method->password_entry); if (!text || !strlen (text)) { widget_set_error (GTK_WIDGET (method->password_entry)); if (ret) { g_set_error_literal (error, NMA_ERROR, NMA_ERROR_GENERIC, _("missing EAP-LEAP password")); ret = FALSE; } } else widget_unset_error (GTK_WIDGET (method->password_entry)); return ret; } static void add_to_size_group (EAPMethod *parent, GtkSizeGroup *group) { GtkWidget *widget; widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_leap_username_label")); g_assert (widget); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_leap_password_label")); g_assert (widget); gtk_size_group_add_widget (group, widget); } static void fill_connection (EAPMethod *parent, NMConnection *connection, NMSettingSecretFlags flags) { EAPMethodLEAP *method = (EAPMethodLEAP *) parent; NMSetting8021x *s_8021x; NMSettingSecretFlags secret_flags; GtkWidget *passwd_entry; s_8021x = nm_connection_get_setting_802_1x (connection); g_assert (s_8021x); nm_setting_802_1x_add_eap_method (s_8021x, "leap"); g_object_set (s_8021x, NM_SETTING_802_1X_IDENTITY, gtk_entry_get_text (method->username_entry), NULL); g_object_set (s_8021x, NM_SETTING_802_1X_PASSWORD, gtk_entry_get_text (method->password_entry), NULL); passwd_entry = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_leap_password_entry")); g_assert (passwd_entry); /* Save 802.1X password flags to the connection */ secret_flags = nma_utils_menu_to_secret_flags (passwd_entry); nm_setting_set_secret_flags (NM_SETTING (s_8021x), parent->password_flags_name, secret_flags, NULL); /* Update secret flags and popup when editing the connection */ if (method->editing_connection) nma_utils_update_password_storage (passwd_entry, secret_flags, NM_SETTING (s_8021x), parent->password_flags_name); } static void update_secrets (EAPMethod *parent, NMConnection *connection) { helper_fill_secret_entry (connection, parent->builder, "eap_leap_password_entry", NM_TYPE_SETTING_802_1X, (HelperSecretFunc) nm_setting_802_1x_get_password); } /* Set the UI fields for user, password and show_password to the * values as provided by method->ws_parent. */ static void set_userpass_ui (EAPMethodLEAP *method) { if (method->ws_parent->username) gtk_entry_set_text (method->username_entry, method->ws_parent->username); else gtk_entry_set_text (method->username_entry, ""); if (method->ws_parent->password && !method->ws_parent->always_ask) gtk_entry_set_text (method->password_entry, method->ws_parent->password); else gtk_entry_set_text (method->password_entry, ""); gtk_toggle_button_set_active (method->show_password, method->ws_parent->show_password); } static void widgets_realized (GtkWidget *widget, EAPMethodLEAP *method) { set_userpass_ui (method); } static void widgets_unrealized (GtkWidget *widget, EAPMethodLEAP *method) { wireless_security_set_userpass (method->ws_parent, gtk_entry_get_text (method->username_entry), gtk_entry_get_text (method->password_entry), (gboolean) -1, gtk_toggle_button_get_active (method->show_password)); } static void destroy (EAPMethod *parent) { EAPMethodLEAP *method = (EAPMethodLEAP *) parent; GtkWidget *widget; widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_leap_notebook")); g_assert (widget); g_signal_handlers_disconnect_by_func (G_OBJECT (widget), (GCallback) widgets_realized, method); g_signal_handlers_disconnect_by_func (G_OBJECT (widget), (GCallback) widgets_unrealized, method); wireless_security_unref (method->ws_parent); } EAPMethodLEAP * eap_method_leap_new (WirelessSecurity *ws_parent, NMConnection *connection, gboolean secrets_only) { EAPMethodLEAP *method; EAPMethod *parent; GtkWidget *widget; NMSetting8021x *s_8021x = NULL; parent = eap_method_init (sizeof (EAPMethodLEAP), validate, add_to_size_group, fill_connection, update_secrets, destroy, "/org/cinnamon/control-center/network/eap-method-leap.ui", "eap_leap_notebook", "eap_leap_username_entry", FALSE); if (!parent) return NULL; parent->password_flags_name = NM_SETTING_802_1X_PASSWORD; method = (EAPMethodLEAP *) parent; method->editing_connection = secrets_only ? FALSE : TRUE; method->ws_parent = wireless_security_ref (ws_parent); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_leap_notebook")); g_assert (widget); g_signal_connect (G_OBJECT (widget), "realize", (GCallback) widgets_realized, method); g_signal_connect (G_OBJECT (widget), "unrealize", (GCallback) widgets_unrealized, method); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_leap_username_entry")); g_assert (widget); method->username_entry = GTK_ENTRY (widget); g_signal_connect (G_OBJECT (widget), "changed", (GCallback) wireless_security_changed_cb, ws_parent); if (secrets_only) gtk_widget_set_sensitive (widget, FALSE); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_leap_password_entry")); g_assert (widget); method->password_entry = GTK_ENTRY (widget); g_signal_connect (G_OBJECT (widget), "changed", (GCallback) wireless_security_changed_cb, ws_parent); /* Create password-storage popup menu for password entry under entry's secondary icon */ if (connection) s_8021x = nm_connection_get_setting_802_1x (connection); nma_utils_setup_password_storage (widget, 0, (NMSetting *) s_8021x, parent->password_flags_name, FALSE, secrets_only); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "show_checkbutton_eapleap")); g_assert (widget); method->show_password = GTK_TOGGLE_BUTTON (widget); g_signal_connect (G_OBJECT (widget), "toggled", (GCallback) show_toggled_cb, parent); /* Initialize the UI fields with the security settings from method->ws_parent. * This will be done again when the widget gets realized. It must be done here as well, * because the outer dialog will ask to 'validate' the connection before the security tab * is shown/realized (to enable the 'Apply' button). * As 'validate' accesses the contents of the UI fields, they must be initialized now, even * if the widgets are not yet visible. */ set_userpass_ui (method); return method; } cinnamon-control-center-6.2.0/panels/network/wireless-security/ws-wpa-psk.h0000664000175000017500000000222014632072346026043 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2007 - 2014 Red Hat, Inc. */ #ifndef WS_WPA_PSK_H #define WS_WPA_PSK_H typedef struct _WirelessSecurityWPAPSK WirelessSecurityWPAPSK; WirelessSecurityWPAPSK * ws_wpa_psk_new (NMConnection *connection, gboolean secrets_only); #endif /* WS_WEP_KEY_H */ cinnamon-control-center-6.2.0/panels/network/wireless-security/eap-method-leap.h0000664000175000017500000000242214632072346027000 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * (C) Copyright 2007 - 2010 Red Hat, Inc. */ #ifndef EAP_METHOD_LEAP_H #define EAP_METHOD_LEAP_H #include "wireless-security.h" typedef struct _EAPMethodLEAP EAPMethodLEAP; EAPMethodLEAP *eap_method_leap_new (WirelessSecurity *ws_parent, NMConnection *connection, gboolean secrets_only); #endif /* EAP_METHOD_LEAP_H */ cinnamon-control-center-6.2.0/panels/network/wireless-security/ws-leap.ui0000664000175000017500000001054514632072346025601 0ustar fabiofabio True False False False True False start 3 2 6 6 True False 1 _Username True leap_username_entry GTK_FILL True False 1 _Password True leap_password_entry 1 2 GTK_FILL True True False True 1 2 1 2 Sho_w password True True False True True 1 2 2 3 GTK_FILL True True True 1 2 True False False cinnamon-control-center-6.2.0/panels/network/wireless-security/ws-dynamic-wep.h0000664000175000017500000000243714632072346026710 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2007 - 2014 Red Hat, Inc. */ #ifndef WS_DYNAMIC_WEP_H #define WS_DYNAMIC_WEP_H typedef struct _WirelessSecurityDynamicWEP WirelessSecurityDynamicWEP; WirelessSecurityDynamicWEP *ws_dynamic_wep_new (NMConnection *connection, gboolean is_editor, gboolean secrets_only); #endif /* WS_DYNAMIC_WEP_H */ cinnamon-control-center-6.2.0/panels/network/wireless-security/ws-wep-key.ui0000664000175000017500000001663714632072346026251 0ustar fabiofabio 1 (Default) 2 3 4 Open System Shared Key True False False False True False 4 2 6 6 True False 1 _Key True wep_key_entry GTK_FILL True True 64 False True 1 2 True False 0 1 2 GTK_FILL Sho_w key True True False True True 1 2 1 2 GTK_FILL True False 1 Au_thentication True auth_method_combo 3 4 GTK_FILL True False model3 0 1 2 3 4 GTK_FILL GTK_FILL True False 1 WEP inde_x True key_index_combo 2 3 GTK_FILL True False model4 0 1 2 2 3 GTK_FILL GTK_FILL True False False cinnamon-control-center-6.2.0/panels/network/wireless-security/eap-method.c0000664000175000017500000003720514632072346026063 0ustar fabiofabio/* -*- Mode: C; tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2007 - 2014 Red Hat, Inc. */ #include "nm-default.h" #include #include #include #include #include #include "eap-method.h" #include "nm-utils.h" #include "utils.h" #include "helpers.h" GType eap_method_get_type (void) { static GType type_id = 0; if (!type_id) { type_id = g_boxed_type_register_static ("CcEAPMethod", (GBoxedCopyFunc) eap_method_ref, (GBoxedFreeFunc) eap_method_unref); } return type_id; } GtkWidget * eap_method_get_widget (EAPMethod *method) { g_return_val_if_fail (method != NULL, NULL); return method->ui_widget; } gboolean eap_method_validate (EAPMethod *method, GError **error) { gboolean result; g_return_val_if_fail (method != NULL, FALSE); g_assert (method->validate); result = (*(method->validate)) (method, error); if (!result && error && !*error) g_set_error_literal (error, NMA_ERROR, NMA_ERROR_GENERIC, _("undefined error in 802.1x security (wpa-eap)")); return result; } void eap_method_add_to_size_group (EAPMethod *method, GtkSizeGroup *group) { g_return_if_fail (method != NULL); g_return_if_fail (group != NULL); g_assert (method->add_to_size_group); return (*(method->add_to_size_group)) (method, group); } void eap_method_fill_connection (EAPMethod *method, NMConnection *connection, NMSettingSecretFlags flags) { g_return_if_fail (method != NULL); g_return_if_fail (connection != NULL); g_assert (method->fill_connection); return (*(method->fill_connection)) (method, connection, flags); } void eap_method_update_secrets (EAPMethod *method, NMConnection *connection) { g_return_if_fail (method != NULL); g_return_if_fail (connection != NULL); if (method->update_secrets) method->update_secrets (method, connection); } void eap_method_phase2_update_secrets_helper (EAPMethod *method, NMConnection *connection, const char *combo_name, guint32 column) { GtkWidget *combo; GtkTreeIter iter; GtkTreeModel *model; g_return_if_fail (method != NULL); g_return_if_fail (connection != NULL); g_return_if_fail (combo_name != NULL); combo = GTK_WIDGET (gtk_builder_get_object (method->builder, combo_name)); g_assert (combo); /* Let each EAP phase2 method try to update its secrets */ model = gtk_combo_box_get_model (GTK_COMBO_BOX (combo)); if (gtk_tree_model_get_iter_first (model, &iter)) { do { EAPMethod *eap = NULL; gtk_tree_model_get (model, &iter, column, &eap, -1); if (eap) { eap_method_update_secrets (eap, connection); eap_method_unref (eap); } } while (gtk_tree_model_iter_next (model, &iter)); } } EAPMethod * eap_method_init (gsize obj_size, EMValidateFunc validate, EMAddToSizeGroupFunc add_to_size_group, EMFillConnectionFunc fill_connection, EMUpdateSecretsFunc update_secrets, EMDestroyFunc destroy, const char *ui_resource, const char *ui_widget_name, const char *default_field, gboolean phase2) { EAPMethod *method; GError *error = NULL; g_return_val_if_fail (obj_size > 0, NULL); g_return_val_if_fail (ui_resource != NULL, NULL); g_return_val_if_fail (ui_widget_name != NULL, NULL); method = g_slice_alloc0 (obj_size); g_assert (method); method->refcount = 1; method->obj_size = obj_size; method->validate = validate; method->add_to_size_group = add_to_size_group; method->fill_connection = fill_connection; method->update_secrets = update_secrets; method->default_field = default_field; method->phase2 = phase2; method->builder = gtk_builder_new (); if (!gtk_builder_add_from_resource (method->builder, ui_resource, &error)) { g_warning ("Couldn't load UI builder file %s: %s", ui_resource, error->message); eap_method_unref (method); return NULL; } method->ui_widget = GTK_WIDGET (gtk_builder_get_object (method->builder, ui_widget_name)); if (!method->ui_widget) { g_warning ("Couldn't load UI widget '%s' from UI file %s", ui_widget_name, ui_resource); eap_method_unref (method); return NULL; } g_object_ref_sink (method->ui_widget); method->destroy = destroy; return method; } EAPMethod * eap_method_ref (EAPMethod *method) { g_return_val_if_fail (method != NULL, NULL); g_return_val_if_fail (method->refcount > 0, NULL); method->refcount++; return method; } void eap_method_unref (EAPMethod *method) { g_return_if_fail (method != NULL); g_return_if_fail (method->refcount > 0); method->refcount--; if (method->refcount == 0) { if (method->destroy) method->destroy (method); if (method->builder) g_object_unref (method->builder); if (method->ui_widget) g_object_unref (method->ui_widget); g_slice_free1 (method->obj_size, method); } } gboolean eap_method_validate_filepicker (GtkBuilder *builder, const char *name, guint32 item_type, const char *password, NMSetting8021xCKFormat *out_format, GError **error) { GtkWidget *widget; char *filename; NMSetting8021x *setting; gboolean success = TRUE; if (item_type == TYPE_PRIVATE_KEY) { if (!password || *password == '\0') success = FALSE; } widget = GTK_WIDGET (gtk_builder_get_object (builder, name)); g_assert (widget); filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (widget)); if (!filename) { if (item_type != TYPE_CA_CERT) { success = FALSE; g_set_error_literal (error, NMA_ERROR, NMA_ERROR_GENERIC, _("no file selected")); } goto out; } if (!g_file_test (filename, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_REGULAR)) { success = FALSE; goto out; } setting = (NMSetting8021x *) nm_setting_802_1x_new (); success = FALSE; if (item_type == TYPE_PRIVATE_KEY) { if (nm_setting_802_1x_set_private_key (setting, filename, password, NM_SETTING_802_1X_CK_SCHEME_PATH, out_format, error)) success = TRUE; } else if (item_type == TYPE_CLIENT_CERT) { if (nm_setting_802_1x_set_client_cert (setting, filename, NM_SETTING_802_1X_CK_SCHEME_PATH, out_format, error)) success = TRUE; } else if (item_type == TYPE_CA_CERT) { if (nm_setting_802_1x_set_ca_cert (setting, filename, NM_SETTING_802_1X_CK_SCHEME_PATH, out_format, error)) success = TRUE; } else g_warning ("%s: invalid item type %d.", __func__, item_type); g_object_unref (setting); out: g_free (filename); if (!success && error && !*error) g_set_error_literal (error, NMA_ERROR, NMA_ERROR_GENERIC, _("unspecified error validating eap-method file")); if (success) widget_unset_error (widget); else widget_set_error (widget); return success; } static gboolean default_filter_privkey (const GtkFileFilterInfo *filter_info, gpointer user_data) { gboolean require_encrypted = !!user_data; gboolean is_encrypted; if (!filter_info->filename) return FALSE; is_encrypted = FALSE; if (!nm_utils_file_is_private_key (filter_info->filename, &is_encrypted)) return FALSE; return require_encrypted ? is_encrypted : TRUE; } static gboolean default_filter_cert (const GtkFileFilterInfo *filter_info, gpointer user_data) { if (!filter_info->filename) return FALSE; if (!nm_utils_file_is_certificate (filter_info->filename)) return FALSE; return TRUE; } GtkFileFilter * eap_method_default_file_chooser_filter_new (gboolean privkey) { GtkFileFilter *filter; filter = gtk_file_filter_new (); if (privkey) { gtk_file_filter_add_custom (filter, GTK_FILE_FILTER_FILENAME, default_filter_privkey, NULL, NULL); gtk_file_filter_set_name (filter, _("DER, PEM, or PKCS#12 private keys (*.der, *.pem, *.p12, *.key)")); } else { gtk_file_filter_add_custom (filter, GTK_FILE_FILTER_FILENAME, default_filter_cert, NULL, NULL); gtk_file_filter_set_name (filter, _("DER or PEM certificates (*.der, *.pem, *.crt, *.cer)")); } return filter; } gboolean eap_method_is_encrypted_private_key (const char *path) { GtkFileFilterInfo info = { .filename = path }; return default_filter_privkey (&info, (gpointer) TRUE); } /* Some methods (PEAP, TLS, TTLS) require a CA certificate. The user can choose * not to provide such a certificate. This method whether the checkbox * id_ca_cert_not_required_checkbutton is checked or id_ca_cert_chooser has a certificate * selected. */ gboolean eap_method_ca_cert_required (GtkBuilder *builder, const char *id_ca_cert_not_required_checkbutton, const char *id_ca_cert_chooser) { char *filename; GtkWidget *widget; g_assert (builder && id_ca_cert_not_required_checkbutton && id_ca_cert_chooser); widget = GTK_WIDGET (gtk_builder_get_object (builder, id_ca_cert_not_required_checkbutton)); g_assert (widget && GTK_IS_TOGGLE_BUTTON (widget)); if (!gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget))) { widget = GTK_WIDGET (gtk_builder_get_object (builder, id_ca_cert_chooser)); g_assert (widget && GTK_IS_FILE_CHOOSER (widget)); filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (widget)); if (!filename) return TRUE; g_free (filename); } return FALSE; } void eap_method_ca_cert_not_required_toggled (GtkBuilder *builder, const char *id_ca_cert_not_required_checkbutton, const char *id_ca_cert_chooser) { char *filename, *filename_old; gboolean is_not_required; GtkWidget *widget; g_assert (builder && id_ca_cert_not_required_checkbutton && id_ca_cert_chooser); widget = GTK_WIDGET (gtk_builder_get_object (builder, id_ca_cert_not_required_checkbutton)); g_assert (widget && GTK_IS_TOGGLE_BUTTON (widget)); is_not_required = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget)); widget = GTK_WIDGET (gtk_builder_get_object (builder, id_ca_cert_chooser)); g_assert (widget && GTK_IS_FILE_CHOOSER (widget)); filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (widget)); filename_old = g_object_steal_data (G_OBJECT (widget), "filename-old"); if (is_not_required) { g_free (filename_old); filename_old = filename; filename = NULL; } else { g_free (filename); filename = filename_old; filename_old = NULL; } gtk_widget_set_sensitive (widget, !is_not_required); if (filename) gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (widget), filename); else gtk_file_chooser_unselect_all (GTK_FILE_CHOOSER (widget)); g_free (filename); g_object_set_data_full (G_OBJECT (widget), "filename-old", filename_old, g_free); } /* Used as both GSettings keys and GObject data tags */ #define IGNORE_CA_CERT_TAG "ignore-ca-cert" #define IGNORE_PHASE2_CA_CERT_TAG "ignore-phase2-ca-cert" /** * eap_method_ca_cert_ignore_set: * @method: the #EAPMethod object * @connection: the #NMConnection * @filename: the certificate file, if any * @ca_cert_error: %TRUE if an error was encountered loading the given CA * certificate, %FALSE if not or if a CA certificate is not present * * Updates the connection's CA cert ignore value to %TRUE if the "CA certificate * not required" checkbox is checked. If @ca_cert_error is %TRUE, then the * connection's CA cert ignore value will always be set to %FALSE, because it * means that the user selected an invalid certificate (thus he does not want to * ignore the CA cert).. */ void eap_method_ca_cert_ignore_set (EAPMethod *method, NMConnection *connection, const char *filename, gboolean ca_cert_error) { NMSetting8021x *s_8021x; gboolean ignore; s_8021x = nm_connection_get_setting_802_1x (connection); if (s_8021x) { ignore = !ca_cert_error && filename == NULL; g_object_set_data (G_OBJECT (s_8021x), method->phase2 ? IGNORE_PHASE2_CA_CERT_TAG : IGNORE_CA_CERT_TAG, GUINT_TO_POINTER (ignore)); } } /** * eap_method_ca_cert_ignore_get: * @method: the #EAPMethod object * @connection: the #NMConnection * * Returns: %TRUE if a missing CA certificate can be ignored, %FALSE if a CA * certificate should be required for the connection to be valid. */ gboolean eap_method_ca_cert_ignore_get (EAPMethod *method, NMConnection *connection) { NMSetting8021x *s_8021x; s_8021x = nm_connection_get_setting_802_1x (connection); if (s_8021x) { return !!g_object_get_data (G_OBJECT (s_8021x), method->phase2 ? IGNORE_PHASE2_CA_CERT_TAG : IGNORE_CA_CERT_TAG); } return FALSE; } static GSettings * _get_ca_ignore_settings (NMConnection *connection) { GSettings *settings; char *path = NULL; const char *uuid; g_return_val_if_fail (connection, NULL); uuid = nm_connection_get_uuid (connection); g_return_val_if_fail (uuid && *uuid, NULL); path = g_strdup_printf ("/org/gnome/nm-applet/eap/%s/", uuid); settings = g_settings_new_with_path ("org.gnome.nm-applet.eap", path); g_free (path); return settings; } /** * eap_method_ca_cert_ignore_save: * @connection: the connection for which to save CA cert ignore values to GSettings * * Reads the CA cert ignore tags from the 802.1x setting GObject data and saves * then to GSettings if present, using the connection UUID as the index. */ void eap_method_ca_cert_ignore_save (NMConnection *connection) { NMSetting8021x *s_8021x; GSettings *settings; gboolean ignore = FALSE, phase2_ignore = FALSE; g_return_if_fail (connection); s_8021x = nm_connection_get_setting_802_1x (connection); if (s_8021x) { ignore = !!g_object_get_data (G_OBJECT (s_8021x), IGNORE_CA_CERT_TAG); phase2_ignore = !!g_object_get_data (G_OBJECT (s_8021x), IGNORE_PHASE2_CA_CERT_TAG); } settings = _get_ca_ignore_settings (connection); if (!settings) return; g_settings_set_boolean (settings, IGNORE_CA_CERT_TAG, ignore); g_settings_set_boolean (settings, IGNORE_PHASE2_CA_CERT_TAG, phase2_ignore); g_object_unref (settings); } /** * eap_method_ca_cert_ignore_load: * @connection: the connection for which to load CA cert ignore values to GSettings * * Reads the CA cert ignore tags from the 802.1x setting GObject data and saves * then to GSettings if present, using the connection UUID as the index. */ void eap_method_ca_cert_ignore_load (NMConnection *connection) { GSettings *settings; NMSetting8021x *s_8021x; gboolean ignore, phase2_ignore; g_return_if_fail (connection); s_8021x = nm_connection_get_setting_802_1x (connection); if (!s_8021x) return; settings = _get_ca_ignore_settings (connection); if (!settings) return; ignore = g_settings_get_boolean (settings, IGNORE_CA_CERT_TAG); phase2_ignore = g_settings_get_boolean (settings, IGNORE_PHASE2_CA_CERT_TAG); g_object_set_data (G_OBJECT (s_8021x), IGNORE_CA_CERT_TAG, GUINT_TO_POINTER (ignore)); g_object_set_data (G_OBJECT (s_8021x), IGNORE_PHASE2_CA_CERT_TAG, GUINT_TO_POINTER (phase2_ignore)); g_object_unref (settings); } cinnamon-control-center-6.2.0/panels/network/wireless-security/helpers.h0000664000175000017500000000254214632072346025503 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2009 - 2014 Red Hat, Inc. */ #ifndef _HELPERS_H_ #define _HELPERS_H_ #include #include typedef const char * (*HelperSecretFunc)(NMSetting *); void helper_fill_secret_entry (NMConnection *connection, GtkBuilder *builder, const char *entry_name, GType setting_type, HelperSecretFunc func); #endif /* _HELPERS_H_ */ cinnamon-control-center-6.2.0/panels/network/wireless-security/ws-wpa-eap.h0000664000175000017500000000236614632072346026026 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2007 - 2014 Red Hat, Inc. */ #ifndef WS_WPA_EAP_H #define WS_WPA_EAP_H typedef struct _WirelessSecurityWPAEAP WirelessSecurityWPAEAP; WirelessSecurityWPAEAP * ws_wpa_eap_new (NMConnection *connection, gboolean is_editor, gboolean secrets_only); #endif /* WS_WPA_EAP_H */ cinnamon-control-center-6.2.0/panels/network/wireless-security/wireless-security.gresource.xml0000664000175000017500000000150114632072346032103 0ustar fabiofabio eap-method-leap.ui eap-method-fast.ui eap-method-peap.ui eap-method-simple.ui eap-method-tls.ui eap-method-ttls.ui ws-dynamic-wep.ui ws-leap.ui ws-wep-key.ui ws-wpa-eap.ui ws-wpa-psk.ui cinnamon-control-center-6.2.0/panels/network/wireless-security/eap-method-ttls.ui0000664000175000017500000001536714632072346027247 0ustar fabiofabio True False False False True False 4 2 6 6 True False 1 Anony_mous identity True eap_ttls_anon_identity_entry GTK_FILL True True True 1 2 True False 1 C_A certificate True eap_ttls_ca_cert_button 1 2 GTK_FILL True False 1 2 1 2 GTK_FILL GTK_FILL No CA certificate is _required True True False True True 1 2 2 3 GTK_FILL True False 1 _Inner authentication True eap_ttls_inner_auth_combo 3 4 GTK_FILL True False model6 0 1 2 3 4 GTK_FILL GTK_FILL True False 6 2 4 5 GTK_FILL True False False cinnamon-control-center-6.2.0/panels/network/wireless-security/nm-default.h0000664000175000017500000000267114632072346026100 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager -- Network link manager * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301 USA. * * (C) Copyright 2015 Red Hat, Inc. */ #ifndef __NM_DEFAULT_H__ #define __NM_DEFAULT_H__ /*****************************************************************************/ /* always include these headers for our internal source files. */ #ifndef ___CONFIG_H__ #define ___CONFIG_H__ #include #endif #include #include /*****************************************************************************/ #include #include /*****************************************************************************/ #endif /* __NM_DEFAULT_H__ */ cinnamon-control-center-6.2.0/panels/network/wireless-security/eap-method-peap.ui0000664000175000017500000002127214632072346027176 0ustar fabiofabio Automatic Version 0 Version 1 True False False False True False 5 2 6 6 True False 1 Anony_mous identity True eap_peap_anon_identity_entry GTK_FILL True True True 1 2 True False 1 C_A certificate True eap_peap_ca_cert_button 1 2 GTK_FILL True False 1 2 1 2 GTK_FILL GTK_FILL No CA certificate is _required True True False True True 1 2 2 3 GTK_FILL True False 2 5 6 GTK_FILL True False 1 _Inner authentication True eap_peap_inner_auth_combo 4 5 GTK_FILL True False model8 0 1 2 4 5 GTK_FILL GTK_FILL True False 1 PEAP _version True eap_peap_version_combo 3 4 GTK_FILL True False model9 0 1 2 3 4 GTK_FILL GTK_FILL True False False cinnamon-control-center-6.2.0/panels/network/wireless-security/eap-method-peap.c0000664000175000017500000003770114632072346027007 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2007 - 2014 Red Hat, Inc. */ #include "nm-default.h" #include #include #include "eap-method.h" #include "wireless-security.h" #include "utils.h" #define I_NAME_COLUMN 0 #define I_METHOD_COLUMN 1 struct _EAPMethodPEAP { EAPMethod parent; GtkSizeGroup *size_group; WirelessSecurity *sec_parent; gboolean is_editor; }; static void destroy (EAPMethod *parent) { EAPMethodPEAP *method = (EAPMethodPEAP *) parent; if (method->size_group) g_object_unref (method->size_group); } static gboolean validate (EAPMethod *parent, GError **error) { GtkWidget *widget; GtkTreeModel *model; GtkTreeIter iter; EAPMethod *eap = NULL; gboolean valid = FALSE; GError *local = NULL; if (!eap_method_validate_filepicker (parent->builder, "eap_peap_ca_cert_button", TYPE_CA_CERT, NULL, NULL, &local)) { g_set_error (error, NMA_ERROR, NMA_ERROR_GENERIC, _("invalid EAP-PEAP CA certificate: %s"), local->message); g_clear_error (&local); return FALSE; } if (eap_method_ca_cert_required (parent->builder, "eap_peap_ca_cert_not_required_checkbox", "eap_peap_ca_cert_button")) { g_set_error_literal (error, NMA_ERROR, NMA_ERROR_GENERIC, _("invalid EAP-PEAP CA certificate: no certificate specified")); return FALSE; } widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_inner_auth_combo")); g_assert (widget); model = gtk_combo_box_get_model (GTK_COMBO_BOX (widget)); gtk_combo_box_get_active_iter (GTK_COMBO_BOX (widget), &iter); gtk_tree_model_get (model, &iter, I_METHOD_COLUMN, &eap, -1); g_assert (eap); valid = eap_method_validate (eap, error); eap_method_unref (eap); return valid; } static void ca_cert_not_required_toggled (GtkWidget *ignored, gpointer user_data) { EAPMethod *parent = user_data; eap_method_ca_cert_not_required_toggled (parent->builder, "eap_peap_ca_cert_not_required_checkbox", "eap_peap_ca_cert_button"); } static void add_to_size_group (EAPMethod *parent, GtkSizeGroup *group) { EAPMethodPEAP *method = (EAPMethodPEAP *) parent; GtkWidget *widget; GtkTreeModel *model; GtkTreeIter iter; EAPMethod *eap; if (method->size_group) g_object_unref (method->size_group); method->size_group = g_object_ref (group); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_ca_cert_not_required_checkbox")); g_assert (widget); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_anon_identity_label")); g_assert (widget); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_ca_cert_label")); g_assert (widget); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_version_label")); g_assert (widget); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_inner_auth_label")); g_assert (widget); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_inner_auth_combo")); g_assert (widget); model = gtk_combo_box_get_model (GTK_COMBO_BOX (widget)); gtk_combo_box_get_active_iter (GTK_COMBO_BOX (widget), &iter); gtk_tree_model_get (model, &iter, I_METHOD_COLUMN, &eap, -1); g_assert (eap); eap_method_add_to_size_group (eap, group); eap_method_unref (eap); } static void fill_connection (EAPMethod *parent, NMConnection *connection, NMSettingSecretFlags flags) { NMSetting8021x *s_8021x; NMSetting8021xCKFormat format = NM_SETTING_802_1X_CK_FORMAT_UNKNOWN; GtkWidget *widget; const char *text; char *filename; EAPMethod *eap = NULL; GtkTreeModel *model; GtkTreeIter iter; int peapver_active = 0; GError *error = NULL; gboolean ca_cert_error = FALSE; s_8021x = nm_connection_get_setting_802_1x (connection); g_assert (s_8021x); nm_setting_802_1x_add_eap_method (s_8021x, "peap"); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_anon_identity_entry")); g_assert (widget); text = gtk_entry_get_text (GTK_ENTRY (widget)); if (text && strlen (text)) g_object_set (s_8021x, NM_SETTING_802_1X_ANONYMOUS_IDENTITY, text, NULL); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_ca_cert_button")); g_assert (widget); filename = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (widget)); if (!nm_setting_802_1x_set_ca_cert (s_8021x, filename, NM_SETTING_802_1X_CK_SCHEME_PATH, &format, &error)) { g_warning ("Couldn't read CA certificate '%s': %s", filename, error ? error->message : "(unknown)"); g_clear_error (&error); ca_cert_error = TRUE; } eap_method_ca_cert_ignore_set (parent, connection, filename, ca_cert_error); g_free (filename); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_version_combo")); peapver_active = gtk_combo_box_get_active (GTK_COMBO_BOX (widget)); switch (peapver_active) { case 1: /* PEAP v0 */ g_object_set (G_OBJECT (s_8021x), NM_SETTING_802_1X_PHASE1_PEAPVER, "0", NULL); break; case 2: /* PEAP v1 */ g_object_set (G_OBJECT (s_8021x), NM_SETTING_802_1X_PHASE1_PEAPVER, "1", NULL); break; default: /* Automatic */ g_object_set (G_OBJECT (s_8021x), NM_SETTING_802_1X_PHASE1_PEAPVER, NULL, NULL); break; } widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_inner_auth_combo")); model = gtk_combo_box_get_model (GTK_COMBO_BOX (widget)); gtk_combo_box_get_active_iter (GTK_COMBO_BOX (widget), &iter); gtk_tree_model_get (model, &iter, I_METHOD_COLUMN, &eap, -1); g_assert (eap); eap_method_fill_connection (eap, connection, flags); eap_method_unref (eap); } static void inner_auth_combo_changed_cb (GtkWidget *combo, gpointer user_data) { EAPMethod *parent = (EAPMethod *) user_data; EAPMethodPEAP *method = (EAPMethodPEAP *) parent; GtkWidget *vbox; EAPMethod *eap = NULL; GList *elt, *children; GtkTreeModel *model; GtkTreeIter iter; GtkWidget *eap_widget; vbox = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_inner_auth_vbox")); g_assert (vbox); /* Remove any previous wireless security widgets */ children = gtk_container_get_children (GTK_CONTAINER (vbox)); for (elt = children; elt; elt = g_list_next (elt)) gtk_container_remove (GTK_CONTAINER (vbox), GTK_WIDGET (elt->data)); model = gtk_combo_box_get_model (GTK_COMBO_BOX (combo)); gtk_combo_box_get_active_iter (GTK_COMBO_BOX (combo), &iter); gtk_tree_model_get (model, &iter, I_METHOD_COLUMN, &eap, -1); g_assert (eap); eap_widget = eap_method_get_widget (eap); g_assert (eap_widget); gtk_widget_unparent (eap_widget); if (method->size_group) eap_method_add_to_size_group (eap, method->size_group); gtk_container_add (GTK_CONTAINER (vbox), eap_widget); eap_method_unref (eap); wireless_security_changed_cb (combo, method->sec_parent); } static GtkWidget * inner_auth_combo_init (EAPMethodPEAP *method, NMConnection *connection, NMSetting8021x *s_8021x, gboolean secrets_only) { EAPMethod *parent = (EAPMethod *) method; GtkWidget *combo; GtkListStore *auth_model; GtkTreeIter iter; EAPMethodSimple *em_mschap_v2; EAPMethodSimple *em_md5; EAPMethodSimple *em_gtc; guint32 active = 0; const char *phase2_auth = NULL; EAPMethodSimpleFlags simple_flags; auth_model = gtk_list_store_new (2, G_TYPE_STRING, eap_method_get_type ()); if (s_8021x) { if (nm_setting_802_1x_get_phase2_auth (s_8021x)) phase2_auth = nm_setting_802_1x_get_phase2_auth (s_8021x); else if (nm_setting_802_1x_get_phase2_autheap (s_8021x)) phase2_auth = nm_setting_802_1x_get_phase2_autheap (s_8021x); } simple_flags = EAP_METHOD_SIMPLE_FLAG_PHASE2; if (method->is_editor) simple_flags |= EAP_METHOD_SIMPLE_FLAG_IS_EDITOR; if (secrets_only) simple_flags |= EAP_METHOD_SIMPLE_FLAG_SECRETS_ONLY; em_mschap_v2 = eap_method_simple_new (method->sec_parent, connection, EAP_METHOD_SIMPLE_TYPE_MSCHAP_V2, simple_flags); gtk_list_store_append (auth_model, &iter); gtk_list_store_set (auth_model, &iter, I_NAME_COLUMN, _("MSCHAPv2"), I_METHOD_COLUMN, em_mschap_v2, -1); eap_method_unref (EAP_METHOD (em_mschap_v2)); /* Check for defaulting to MSCHAPv2 */ if (phase2_auth && !strcasecmp (phase2_auth, "mschapv2")) active = 0; em_md5 = eap_method_simple_new (method->sec_parent, connection, EAP_METHOD_SIMPLE_TYPE_MD5, simple_flags); gtk_list_store_append (auth_model, &iter); gtk_list_store_set (auth_model, &iter, I_NAME_COLUMN, _("MD5"), I_METHOD_COLUMN, em_md5, -1); eap_method_unref (EAP_METHOD (em_md5)); /* Check for defaulting to MD5 */ if (phase2_auth && !strcasecmp (phase2_auth, "md5")) active = 1; em_gtc = eap_method_simple_new (method->sec_parent, connection, EAP_METHOD_SIMPLE_TYPE_GTC, simple_flags); gtk_list_store_append (auth_model, &iter); gtk_list_store_set (auth_model, &iter, I_NAME_COLUMN, _("GTC"), I_METHOD_COLUMN, em_gtc, -1); eap_method_unref (EAP_METHOD (em_gtc)); /* Check for defaulting to GTC */ if (phase2_auth && !strcasecmp (phase2_auth, "gtc")) active = 2; combo = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_inner_auth_combo")); g_assert (combo); gtk_combo_box_set_model (GTK_COMBO_BOX (combo), GTK_TREE_MODEL (auth_model)); g_object_unref (G_OBJECT (auth_model)); gtk_combo_box_set_active (GTK_COMBO_BOX (combo), active); g_signal_connect (G_OBJECT (combo), "changed", (GCallback) inner_auth_combo_changed_cb, method); return combo; } static void update_secrets (EAPMethod *parent, NMConnection *connection) { eap_method_phase2_update_secrets_helper (parent, connection, "eap_peap_inner_auth_combo", I_METHOD_COLUMN); } EAPMethodPEAP * eap_method_peap_new (WirelessSecurity *ws_parent, NMConnection *connection, gboolean is_editor, gboolean secrets_only) { EAPMethod *parent; EAPMethodPEAP *method; GtkWidget *widget, *widget_ca_not_required_checkbox; GtkFileFilter *filter; NMSetting8021x *s_8021x = NULL; const char *filename; parent = eap_method_init (sizeof (EAPMethodPEAP), validate, add_to_size_group, fill_connection, update_secrets, destroy, "/org/cinnamon/control-center/network/eap-method-peap.ui", "eap_peap_notebook", "eap_peap_anon_identity_entry", FALSE); if (!parent) return NULL; parent->password_flags_name = NM_SETTING_802_1X_PASSWORD; method = (EAPMethodPEAP *) parent; method->sec_parent = ws_parent; method->is_editor = is_editor; if (connection) s_8021x = nm_connection_get_setting_802_1x (connection); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_ca_cert_not_required_checkbox")); g_assert (widget); g_signal_connect (G_OBJECT (widget), "toggled", (GCallback) ca_cert_not_required_toggled, parent); g_signal_connect (G_OBJECT (widget), "toggled", (GCallback) wireless_security_changed_cb, ws_parent); widget_ca_not_required_checkbox = widget; widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_ca_cert_button")); g_assert (widget); gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER (widget), TRUE); gtk_file_chooser_button_set_title (GTK_FILE_CHOOSER_BUTTON (widget), _("Choose a Certificate Authority certificate")); g_signal_connect (G_OBJECT (widget), "selection-changed", (GCallback) wireless_security_changed_cb, ws_parent); filter = eap_method_default_file_chooser_filter_new (FALSE); gtk_file_chooser_add_filter (GTK_FILE_CHOOSER (widget), filter); if (connection && s_8021x) { filename = NULL; if (nm_setting_802_1x_get_ca_cert_scheme (s_8021x) == NM_SETTING_802_1X_CK_SCHEME_PATH) { filename = nm_setting_802_1x_get_ca_cert_path (s_8021x); if (filename) gtk_file_chooser_set_filename (GTK_FILE_CHOOSER (widget), filename); } gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (widget_ca_not_required_checkbox), !filename && eap_method_ca_cert_ignore_get (parent, connection)); } widget = inner_auth_combo_init (method, connection, s_8021x, secrets_only); inner_auth_combo_changed_cb (widget, (gpointer) method); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_version_combo")); g_assert (widget); gtk_combo_box_set_active (GTK_COMBO_BOX (widget), 0); if (s_8021x) { const char *peapver; peapver = nm_setting_802_1x_get_phase1_peapver (s_8021x); if (peapver) { /* Index 0 is "Automatic" */ if (!strcmp (peapver, "0")) gtk_combo_box_set_active (GTK_COMBO_BOX (widget), 1); else if (!strcmp (peapver, "1")) gtk_combo_box_set_active (GTK_COMBO_BOX (widget), 2); } } g_signal_connect (G_OBJECT (widget), "changed", (GCallback) wireless_security_changed_cb, ws_parent); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_anon_identity_entry")); if (s_8021x && nm_setting_802_1x_get_anonymous_identity (s_8021x)) gtk_entry_set_text (GTK_ENTRY (widget), nm_setting_802_1x_get_anonymous_identity (s_8021x)); g_signal_connect (G_OBJECT (widget), "changed", (GCallback) wireless_security_changed_cb, ws_parent); if (secrets_only) { widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_anon_identity_label")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_anon_identity_entry")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_ca_cert_label")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_ca_cert_button")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_ca_cert_not_required_checkbox")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_inner_auth_label")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_inner_auth_combo")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_version_label")); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "eap_peap_version_combo")); gtk_widget_hide (widget); } return method; } cinnamon-control-center-6.2.0/panels/network/wireless-security/utils.h0000664000175000017500000000312714632072346025201 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2007 - 2015 Red Hat, Inc. */ #include #include gboolean utils_char_is_ascii_print (char character); #define NMA_ERROR (g_quark_from_static_string ("nma-error-quark")) typedef enum { NMA_ERROR_GENERIC } NMAError; typedef gboolean (*UtilsFilterGtkEditableFunc) (char character); gboolean utils_filter_editable_on_insert_text (GtkEditable *editable, const gchar *text, gint length, gint *position, void *user_data, UtilsFilterGtkEditableFunc validate_character, gpointer block_func); extern void widget_set_error (GtkWidget *widget); extern void widget_unset_error (GtkWidget *widget); cinnamon-control-center-6.2.0/panels/network/wireless-security/eap-method.h0000664000175000017500000001174514632072346026071 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2007 - 2014 Red Hat, Inc. */ #ifndef EAP_METHOD_H #define EAP_METHOD_H #include #include typedef struct _EAPMethod EAPMethod; typedef void (*EMAddToSizeGroupFunc) (EAPMethod *method, GtkSizeGroup *group); typedef void (*EMFillConnectionFunc) (EAPMethod *method, NMConnection *connection, NMSettingSecretFlags flags); typedef void (*EMUpdateSecretsFunc) (EAPMethod *method, NMConnection *connection); typedef void (*EMDestroyFunc) (EAPMethod *method); typedef gboolean (*EMValidateFunc) (EAPMethod *method, GError **error); struct _EAPMethod { guint32 refcount; gsize obj_size; GtkBuilder *builder; GtkWidget *ui_widget; const char *default_field; const char *password_flags_name; gboolean phase2; gboolean secrets_only; EMAddToSizeGroupFunc add_to_size_group; EMFillConnectionFunc fill_connection; EMUpdateSecretsFunc update_secrets; EMValidateFunc validate; EMDestroyFunc destroy; }; #define EAP_METHOD(x) ((EAPMethod *) x) GtkWidget *eap_method_get_widget (EAPMethod *method); gboolean eap_method_validate (EAPMethod *method, GError **error); void eap_method_add_to_size_group (EAPMethod *method, GtkSizeGroup *group); void eap_method_fill_connection (EAPMethod *method, NMConnection *connection, NMSettingSecretFlags flags); void eap_method_update_secrets (EAPMethod *method, NMConnection *connection); EAPMethod *eap_method_ref (EAPMethod *method); void eap_method_unref (EAPMethod *method); GType eap_method_get_type (void); /* Below for internal use only */ #include "eap-method-tls.h" #include "eap-method-leap.h" #include "eap-method-fast.h" #include "eap-method-ttls.h" #include "eap-method-peap.h" #include "eap-method-simple.h" EAPMethod *eap_method_init (gsize obj_size, EMValidateFunc validate, EMAddToSizeGroupFunc add_to_size_group, EMFillConnectionFunc fill_connection, EMUpdateSecretsFunc update_secrets, EMDestroyFunc destroy, const char *ui_resource, const char *ui_widget_name, const char *default_field, gboolean phase2); GtkFileFilter * eap_method_default_file_chooser_filter_new (gboolean privkey); gboolean eap_method_is_encrypted_private_key (const char *path); #define TYPE_CLIENT_CERT 0 #define TYPE_CA_CERT 1 #define TYPE_PRIVATE_KEY 2 gboolean eap_method_validate_filepicker (GtkBuilder *builder, const char *name, guint32 item_type, const char *password, NMSetting8021xCKFormat *out_format, GError **error); void eap_method_phase2_update_secrets_helper (EAPMethod *method, NMConnection *connection, const char *combo_name, guint32 column); gboolean eap_method_ca_cert_required (GtkBuilder *builder, const char *id_ca_cert_is_not_required_checkbox, const char *id_ca_cert_chooser); void eap_method_ca_cert_not_required_toggled (GtkBuilder *builder, const char *id_ca_cert_is_not_required_checkbox, const char *id_ca_cert_chooser); void eap_method_ca_cert_ignore_set (EAPMethod *method, NMConnection *connection, const char *filename, gboolean ca_cert_error); gboolean eap_method_ca_cert_ignore_get (EAPMethod *method, NMConnection *connection); void eap_method_ca_cert_ignore_save (NMConnection *connection); void eap_method_ca_cert_ignore_load (NMConnection *connection); #endif /* EAP_METHOD_H */ cinnamon-control-center-6.2.0/panels/network/wireless-security/eap-method-leap.ui0000664000175000017500000001050314632072346027165 0ustar fabiofabio True False False False True False start 3 2 6 6 True False 1 _Username True eap_leap_username_entry GTK_FILL True False 1 _Password True eap_leap_password_entry 1 2 GTK_FILL True True False True 1 2 1 2 Sho_w password True True False True True 1 2 2 3 GTK_FILL True True 1 2 True False False cinnamon-control-center-6.2.0/panels/network/wireless-security/eap-method-simple.h0000664000175000017500000000437614632072346027362 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * (C) Copyright 2007 - 2010 Red Hat, Inc. */ #ifndef EAP_METHOD_SIMPLE_H #define EAP_METHOD_SIMPLE_H #include "wireless-security.h" typedef enum { /* NOTE: when updating this table, also update eap_methods[] */ EAP_METHOD_SIMPLE_TYPE_PAP = 0, EAP_METHOD_SIMPLE_TYPE_MSCHAP, EAP_METHOD_SIMPLE_TYPE_MSCHAP_V2, EAP_METHOD_SIMPLE_TYPE_MD5, EAP_METHOD_SIMPLE_TYPE_PWD, EAP_METHOD_SIMPLE_TYPE_CHAP, EAP_METHOD_SIMPLE_TYPE_GTC, /* Boundary value, do not use */ EAP_METHOD_SIMPLE_TYPE_LAST } EAPMethodSimpleType; typedef enum { EAP_METHOD_SIMPLE_FLAG_NONE = 0x00, /* Indicates the EAP method is an inner/phase2 method */ EAP_METHOD_SIMPLE_FLAG_PHASE2 = 0x01, /* Set by TTLS to indicate that inner/phase2 EAP is allowed */ EAP_METHOD_SIMPLE_FLAG_AUTHEAP_ALLOWED = 0x02, /* Set from nm-connection-editor or the GNOME network panel */ EAP_METHOD_SIMPLE_FLAG_IS_EDITOR = 0x04, /* Set to indicate that this request is only for secrets */ EAP_METHOD_SIMPLE_FLAG_SECRETS_ONLY = 0x08 } EAPMethodSimpleFlags; typedef struct _EAPMethodSimple EAPMethodSimple; EAPMethodSimple *eap_method_simple_new (WirelessSecurity *ws_parent, NMConnection *connection, EAPMethodSimpleType type, EAPMethodSimpleFlags flags); #endif /* EAP_METHOD_SIMPLE_H */ ././@LongLink0000644000000000000000000000015600000000000011605 Lustar rootrootcinnamon-control-center-6.2.0/panels/network/wireless-security/nm-connection-editor-ui-to-network-panel.patchcinnamon-control-center-6.2.0/panels/network/wireless-security/nm-connection-editor-ui-to-network-pa0000664000175000017500000006513114632072346032771 0ustar fabiofabiodiff --git a/panels/network/wireless-security/eap-method-fast.ui b/panels/network/wireless-security/eap-method-fast.ui index 4b19a66..5307ddb 100644 --- a/panels/network/wireless-security/eap-method-fast.ui +++ b/panels/network/wireless-security/eap-method-fast.ui @@ -46,8 +46,8 @@ True False - 0 - Anony_mous identity: + 1 + Anony_mous identity True eap_fast_anon_identity_entry @@ -72,8 +72,8 @@ True False - 0 - PAC _file: + 1 + PAC _file True eap_fast_pac_file_button @@ -117,8 +117,8 @@ True False - 0 - _Inner authentication: + 1 + _Inner authentication True eap_fast_inner_auth_combo diff --git a/panels/network/wireless-security/eap-method-leap.ui b/panels/network/wireless-security/eap-method-leap.ui index 1d1f23d..d4c0625 100644 --- a/panels/network/wireless-security/eap-method-leap.ui +++ b/panels/network/wireless-security/eap-method-leap.ui @@ -22,8 +22,8 @@ True False - 0 - _Username: + 1 + _Username True eap_leap_username_entry @@ -36,8 +36,8 @@ True False - 0 - _Password: + 1 + _Password True eap_leap_password_entry diff --git a/panels/network/wireless-security/eap-method-peap.ui b/panels/network/wireless-security/eap-method-peap.ui index a97123a..2f8b8cd 100644 --- a/panels/network/wireless-security/eap-method-peap.ui +++ b/panels/network/wireless-security/eap-method-peap.ui @@ -46,8 +46,8 @@ True False - 0 - Anony_mous identity: + 1 + Anony_mous identity True eap_peap_anon_identity_entry @@ -72,8 +72,8 @@ True False - 0 - C_A certificate: + 1 + C_A certificate True eap_peap_ca_cert_button @@ -135,8 +135,8 @@ True False - 0 - _Inner authentication: + 1 + _Inner authentication True eap_peap_inner_auth_combo @@ -172,8 +172,8 @@ True False - 0 - PEAP _version: + 1 + PEAP _version True eap_peap_version_combo diff --git a/panels/network/wireless-security/eap-method-simple.ui b/panels/network/wireless-security/eap-method-simple.ui index b3318e4..7d95d28 100644 --- a/panels/network/wireless-security/eap-method-simple.ui +++ b/panels/network/wireless-security/eap-method-simple.ui @@ -22,8 +22,8 @@ True False - 0 - _Username: + 1 + _Username True eap_simple_username_entry @@ -36,8 +36,8 @@ True False - 0 - _Password: + 1 + _Password True eap_simple_password_entry diff --git a/panels/network/wireless-security/eap-method-tls.ui b/panels/network/wireless-security/eap-method-tls.ui index 5557593..3c6291b 100644 --- a/panels/network/wireless-security/eap-method-tls.ui +++ b/panels/network/wireless-security/eap-method-tls.ui @@ -22,8 +22,8 @@ True False - 0 - I_dentity: + 1 + I_dentity True eap_tls_identity_entry @@ -48,8 +48,8 @@ True False - 0 - _User certificate: + 1 + _User certificate True eap_tls_user_cert_button @@ -64,8 +64,8 @@ True False - 0 - C_A certificate: + 1 + C_A certificate True eap_tls_ca_cert_button @@ -112,8 +112,8 @@ True False - 0 - Private _key: + 1 + Private _key True eap_tls_private_key_button @@ -142,8 +142,8 @@ True False - 0 - _Private key password: + 1 + _Private key password True eap_tls_private_key_password_entry diff --git a/panels/network/wireless-security/eap-method-ttls.ui b/panels/network/wireless-security/eap-method-ttls.ui index ce00c26..70db9ed 100644 --- a/panels/network/wireless-security/eap-method-ttls.ui +++ b/panels/network/wireless-security/eap-method-ttls.ui @@ -29,8 +29,8 @@ True False - 0 - Anony_mous identity: + 1 + Anony_mous identity True eap_ttls_anon_identity_entry @@ -55,8 +55,8 @@ True False - 0 - C_A certificate: + 1 + C_A certificate True eap_ttls_ca_cert_button @@ -103,8 +103,8 @@ True False - 0 - _Inner authentication: + 1 + _Inner authentication True eap_ttls_inner_auth_combo diff --git a/panels/network/wireless-security/ws-dynamic-wep.ui b/panels/network/wireless-security/ws-dynamic-wep.ui index 4bd8520..cf31f12 100644 --- a/panels/network/wireless-security/ws-dynamic-wep.ui +++ b/panels/network/wireless-security/ws-dynamic-wep.ui @@ -35,8 +35,8 @@ True False - 0 - Au_thentication: + 1 + Au_thentication True dynamic_wep_auth_combo diff --git a/panels/network/wireless-security/ws-leap.ui b/panels/network/wireless-security/ws-leap.ui index dc936ad..b4d9bec 100644 --- a/panels/network/wireless-security/ws-leap.ui +++ b/panels/network/wireless-security/ws-leap.ui @@ -22,8 +22,8 @@ True False - 0 - _Username: + 1 + _Username True leap_username_entry @@ -36,8 +36,8 @@ True False - 0 - _Password: + 1 + _Password True leap_password_entry diff --git a/panels/network/wireless-security/ws-wep-key.ui b/panels/network/wireless-security/ws-wep-key.ui index 62b11a5..c0e5f55 100644 --- a/panels/network/wireless-security/ws-wep-key.ui +++ b/panels/network/wireless-security/ws-wep-key.ui @@ -52,8 +52,8 @@ True False - 0 - _Key: + 1 + _Key True wep_key_entry @@ -111,8 +111,8 @@ True False - 0 - Au_thentication: + 1 + Au_thentication True auth_method_combo @@ -148,8 +148,8 @@ True False - 0 - WEP inde_x: + 1 + WEP inde_x True key_index_combo diff --git a/panels/network/wireless-security/ws-wpa-eap.ui b/panels/network/wireless-security/ws-wpa-eap.ui index 2da2148..942af88 100644 --- a/panels/network/wireless-security/ws-wpa-eap.ui +++ b/panels/network/wireless-security/ws-wpa-eap.ui @@ -29,8 +29,8 @@ True False - 0 - Au_thentication: + 1 + Au_thentication True wpa_eap_auth_combo diff --git a/panels/network/wireless-security/ws-wpa-psk.ui b/panels/network/wireless-security/ws-wpa-psk.ui index 4ec6909..b34720a 100644 --- a/panels/network/wireless-security/ws-wpa-psk.ui +++ b/panels/network/wireless-security/ws-wpa-psk.ui @@ -18,8 +18,8 @@ True False - 0 - _Password: + 1 + _Password True wpa_psk_entry @@ -46,8 +46,8 @@ True False - 0 - _Type: + 1 + _Type True wpa_psk_type_combo diff --git a/panels/network/wireless-security/eap-method-fast.ui b/panels/network/wireless-security/eap-method-fast.ui index 5307ddb..36e74c3 100644 --- a/panels/network/wireless-security/eap-method-fast.ui +++ b/panels/network/wireless-security/eap-method-fast.ui @@ -40,7 +40,7 @@ False 5 2 - 12 + 6 6 diff --git a/panels/network/wireless-security/eap-method-leap.ui b/panels/network/wireless-security/eap-method-leap.ui index d4c0625..c4de1dc 100644 --- a/panels/network/wireless-security/eap-method-leap.ui +++ b/panels/network/wireless-security/eap-method-leap.ui @@ -13,7 +13,7 @@ start 3 2 - 12 + 6 6 diff --git a/panels/network/wireless-security/eap-method-peap.ui b/panels/network/wireless-security/eap-method-peap.ui index 2f8b8cd..d16e00a 100644 --- a/panels/network/wireless-security/eap-method-peap.ui +++ b/panels/network/wireless-security/eap-method-peap.ui @@ -40,7 +40,7 @@ False 5 2 - 12 + 6 6 diff --git a/panels/network/wireless-security/eap-method-simple.ui b/panels/network/wireless-security/eap-method-simple.ui index 7d95d28..af00cb9 100644 --- a/panels/network/wireless-security/eap-method-simple.ui +++ b/panels/network/wireless-security/eap-method-simple.ui @@ -13,7 +13,7 @@ start 3 2 - 12 + 6 6 diff --git a/panels/network/wireless-security/eap-method-tls.ui b/panels/network/wireless-security/eap-method-tls.ui index 3c6291b..0079715 100644 --- a/panels/network/wireless-security/eap-method-tls.ui +++ b/panels/network/wireless-security/eap-method-tls.ui @@ -13,7 +13,7 @@ start 6 2 - 12 + 6 6 diff --git a/panels/network/wireless-security/eap-method-ttls.ui b/panels/network/wireless-security/eap-method-ttls.ui index 70db9ed..df942d9 100644 --- a/panels/network/wireless-security/eap-method-ttls.ui +++ b/panels/network/wireless-security/eap-method-ttls.ui @@ -23,7 +23,7 @@ False 4 2 - 12 + 6 6 diff --git a/panels/network/wireless-security/ws-dynamic-wep.ui b/panels/network/wireless-security/ws-dynamic-wep.ui index cf31f12..d6bc12b 100644 --- a/panels/network/wireless-security/ws-dynamic-wep.ui +++ b/panels/network/wireless-security/ws-dynamic-wep.ui @@ -23,7 +23,7 @@ False 3 2 - 12 + 6 6 diff --git a/panels/network/wireless-security/ws-leap.ui b/panels/network/wireless-security/ws-leap.ui index b4d9bec..06cb645 100644 --- a/panels/network/wireless-security/ws-leap.ui +++ b/panels/network/wireless-security/ws-leap.ui @@ -13,7 +13,7 @@ start 3 2 - 12 + 6 6 diff --git a/panels/network/wireless-security/ws-wep-key.ui b/panels/network/wireless-security/ws-wep-key.ui index c0e5f55..a4e14dc 100644 --- a/panels/network/wireless-security/ws-wep-key.ui +++ b/panels/network/wireless-security/ws-wep-key.ui @@ -46,7 +46,7 @@ False 4 2 - 12 + 6 6 diff --git a/panels/network/wireless-security/ws-wpa-eap.ui b/panels/network/wireless-security/ws-wpa-eap.ui index 942af88..5d71936 100644 --- a/panels/network/wireless-security/ws-wpa-eap.ui +++ b/panels/network/wireless-security/ws-wpa-eap.ui @@ -23,7 +23,7 @@ False 2 2 - 12 + 6 6 diff --git a/panels/network/wireless-security/ws-wpa-psk.ui b/panels/network/wireless-security/ws-wpa-psk.ui index b34720a..3c689d3 100644 --- a/panels/network/wireless-security/ws-wpa-psk.ui +++ b/panels/network/wireless-security/ws-wpa-psk.ui @@ -12,7 +12,7 @@ False 3 2 - 12 + 6 6 cinnamon-control-center-6.2.0/panels/network/wireless-security/eap-method-fast.ui0000664000175000017500000001755014632072346027212 0ustar fabiofabio Anonymous Authenticated Both True False False False True False 5 2 6 6 True False 1 Anony_mous identity True eap_fast_anon_identity_entry GTK_FILL True True True 1 2 True False 1 PAC _file True eap_fast_pac_file_button 2 3 GTK_FILL True False 1 2 2 3 GTK_FILL GTK_FILL True False 2 4 5 GTK_FILL True False 1 _Inner authentication True eap_fast_inner_auth_combo 3 4 GTK_FILL True False model8 0 1 2 3 4 GTK_FILL GTK_FILL Allow automatic PAC pro_visioning True True False True True 1 2 GTK_FILL True False model9 0 1 2 1 2 GTK_FILL GTK_FILL True False False ././@LongLink0000644000000000000000000000015300000000000011602 Lustar rootrootcinnamon-control-center-6.2.0/panels/network/wireless-security/nm-connection-editor-to-network-panel.patchcinnamon-control-center-6.2.0/panels/network/wireless-security/nm-connection-editor-to-network-panel0000664000175000017500000003460514632072346033057 0ustar fabiofabiodiff --git a/panels/network/wireless-security/eap-method-fast.c b/panels/network/wireless-security/eap-method-fast.c index 69b8a86..be5578d 100644 --- a/panels/network/wireless-security/eap-method-fast.c +++ b/panels/network/wireless-security/eap-method-fast.c @@ -351,7 +351,7 @@ eap_method_fast_new (WirelessSecurity *ws_parent, fill_connection, update_secrets, destroy, - UIDIR "/eap-method-fast.ui", + "/org/cinnamon/control-center/network/eap-method-fast.ui", "eap_fast_notebook", "eap_fast_anon_identity_entry", FALSE); diff --git a/panels/network/wireless-security/eap-method-leap.c b/panels/network/wireless-security/eap-method-leap.c index 5fbdd86..6163468 100644 --- a/panels/network/wireless-security/eap-method-leap.c +++ b/panels/network/wireless-security/eap-method-leap.c @@ -204,7 +204,7 @@ eap_method_leap_new (WirelessSecurity *ws_parent, fill_connection, update_secrets, destroy, - UIDIR "/eap-method-leap.ui", + "/org/cinnamon/control-center/network/eap-method-leap.ui", "eap_leap_notebook", "eap_leap_username_entry", FALSE); diff --git a/panels/network/wireless-security/eap-method-peap.c b/panels/network/wireless-security/eap-method-peap.c index 6462ef2..7f87541 100644 --- a/panels/network/wireless-security/eap-method-peap.c +++ b/panels/network/wireless-security/eap-method-peap.c @@ -349,7 +349,7 @@ eap_method_peap_new (WirelessSecurity *ws_parent, fill_connection, update_secrets, destroy, - UIDIR "/eap-method-peap.ui", + "/org/cinnamon/control-center/network/eap-method-peap.ui", "eap_peap_notebook", "eap_peap_anon_identity_entry", FALSE); diff --git a/panels/network/wireless-security/eap-method-simple.c b/panels/network/wireless-security/eap-method-simple.c index 0f72029..f9fd473 100644 --- a/panels/network/wireless-security/eap-method-simple.c +++ b/panels/network/wireless-security/eap-method-simple.c @@ -307,7 +307,7 @@ eap_method_simple_new (WirelessSecurity *ws_parent, fill_connection, update_secrets, destroy, - UIDIR "/eap-method-simple.ui", + "/org/cinnamon/control-center/network/eap-method-simple.ui", "eap_simple_notebook", "eap_simple_username_entry", flags & EAP_METHOD_SIMPLE_FLAG_PHASE2); diff --git a/panels/network/wireless-security/eap-method-tls.c b/panels/network/wireless-security/eap-method-tls.c index 8f33d83..587c399 100644 --- a/panels/network/wireless-security/eap-method-tls.c +++ b/panels/network/wireless-security/eap-method-tls.c @@ -453,7 +453,7 @@ eap_method_tls_new (WirelessSecurity *ws_parent, fill_connection, update_secrets, NULL, - UIDIR "/eap-method-tls.ui", + "/org/cinnamon/control-center/network/eap-method-tls.ui", "eap_tls_notebook", "eap_tls_identity_entry", phase2); diff --git a/panels/network/wireless-security/eap-method-ttls.c b/panels/network/wireless-security/eap-method-ttls.c index 789f0fa..ef02529 100644 --- a/panels/network/wireless-security/eap-method-ttls.c +++ b/panels/network/wireless-security/eap-method-ttls.c @@ -380,7 +380,7 @@ eap_method_ttls_new (WirelessSecurity *ws_parent, fill_connection, update_secrets, destroy, - UIDIR "/eap-method-ttls.ui", + "/org/cinnamon/control-center/network/eap-method-ttls.ui", "eap_ttls_notebook", "eap_ttls_anon_identity_entry", FALSE); diff --git a/panels/network/wireless-security/eap-method.c b/panels/network/wireless-security/eap-method.c index 90efea1..6ec4849 100644 --- a/panels/network/wireless-security/eap-method.c +++ b/panels/network/wireless-security/eap-method.c @@ -34,7 +34,19 @@ #include "utils.h" #include "helpers.h" -G_DEFINE_BOXED_TYPE (EAPMethod, eap_method, eap_method_ref, eap_method_unref) +GType +eap_method_get_type (void) +{ + static GType type_id = 0; + + if (!type_id) { + type_id = g_boxed_type_register_static ("CcEAPMethod", + (GBoxedCopyFunc) eap_method_ref, + (GBoxedFreeFunc) eap_method_unref); + } + + return type_id; +} GtkWidget * eap_method_get_widget (EAPMethod *method) @@ -129,7 +141,7 @@ eap_method_init (gsize obj_size, EMFillConnectionFunc fill_connection, EMUpdateSecretsFunc update_secrets, EMDestroyFunc destroy, - const char *ui_file, + const char *ui_resource, const char *ui_widget_name, const char *default_field, gboolean phase2) @@ -138,7 +150,7 @@ eap_method_init (gsize obj_size, GError *error = NULL; g_return_val_if_fail (obj_size > 0, NULL); - g_return_val_if_fail (ui_file != NULL, NULL); + g_return_val_if_fail (ui_resource != NULL, NULL); g_return_val_if_fail (ui_widget_name != NULL, NULL); method = g_slice_alloc0 (obj_size); @@ -154,9 +166,9 @@ eap_method_init (gsize obj_size, method->phase2 = phase2; method->builder = gtk_builder_new (); - if (!gtk_builder_add_from_file (method->builder, ui_file, &error)) { + if (!gtk_builder_add_from_resource (method->builder, ui_resource, &error)) { g_warning ("Couldn't load UI builder file %s: %s", - ui_file, error->message); + ui_resource, error->message); eap_method_unref (method); return NULL; } @@ -164,7 +176,7 @@ eap_method_init (gsize obj_size, method->ui_widget = GTK_WIDGET (gtk_builder_get_object (method->builder, ui_widget_name)); if (!method->ui_widget) { g_warning ("Couldn't load UI widget '%s' from UI file %s", - ui_widget_name, ui_file); + ui_widget_name, ui_resource); eap_method_unref (method); return NULL; } diff --git a/panels/network/wireless-security/eap-method.h b/panels/network/wireless-security/eap-method.h index 84c1c78..de287e3 100644 --- a/panels/network/wireless-security/eap-method.h +++ b/panels/network/wireless-security/eap-method.h @@ -99,7 +99,7 @@ EAPMethod *eap_method_init (gsize obj_size, EMFillConnectionFunc fill_connection, EMUpdateSecretsFunc update_secrets, EMDestroyFunc destroy, - const char *ui_file, + const char *ui_resource, const char *ui_widget_name, const char *default_field, gboolean phase2); diff --git a/panels/network/wireless-security/wireless-security.c b/panels/network/wireless-security/wireless-security.c index 23b8a27..bd233b0 100644 --- a/panels/network/wireless-security/wireless-security.c +++ b/panels/network/wireless-security/wireless-security.c @@ -25,10 +25,25 @@ #include #include "wireless-security.h" +#include "wireless-security-resources.h" #include "eap-method.h" #include "utils.h" -G_DEFINE_BOXED_TYPE (WirelessSecurity, wireless_security, wireless_security_ref, wireless_security_unref) +GType +wireless_security_get_type (void) +{ + static GType type_id = 0; + + if (!type_id) { + g_resources_register (wireless_security_get_resource ()); + + type_id = g_boxed_type_register_static ("CcWirelessSecurity", + (GBoxedCopyFunc) wireless_security_ref, + (GBoxedFreeFunc) wireless_security_unref); + } + + return type_id; +} GtkWidget * wireless_security_get_widget (WirelessSecurity *sec) @@ -146,7 +161,7 @@ wireless_security_init (gsize obj_size, WSFillConnectionFunc fill_connection, WSUpdateSecretsFunc update_secrets, WSDestroyFunc destroy, - const char *ui_file, + const char *ui_resource, const char *ui_widget_name, const char *default_field) { @@ -154,7 +169,7 @@ wireless_security_init (gsize obj_size, GError *error = NULL; g_return_val_if_fail (obj_size > 0, NULL); - g_return_val_if_fail (ui_file != NULL, NULL); + g_return_val_if_fail (ui_resource != NULL, NULL); g_return_val_if_fail (ui_widget_name != NULL, NULL); sec = g_slice_alloc0 (obj_size); @@ -170,9 +185,9 @@ wireless_security_init (gsize obj_size, sec->default_field = default_field; sec->builder = gtk_builder_new (); - if (!gtk_builder_add_from_file (sec->builder, ui_file, &error)) { + if (!gtk_builder_add_from_resource (sec->builder, ui_resource, &error)) { g_warning ("Couldn't load UI builder file %s: %s", - ui_file, error->message); + ui_resource, error->message); g_error_free (error); wireless_security_unref (sec); return NULL; @@ -181,7 +196,7 @@ wireless_security_init (gsize obj_size, sec->ui_widget = GTK_WIDGET (gtk_builder_get_object (sec->builder, ui_widget_name)); if (!sec->ui_widget) { g_warning ("Couldn't load UI widget '%s' from UI file %s", - ui_widget_name, ui_file); + ui_widget_name, ui_resource); wireless_security_unref (sec); return NULL; } diff --git a/panels/network/wireless-security/wireless-security.h b/panels/network/wireless-security/wireless-security.h index e9bcf63..3d56fa3 100644 --- a/panels/network/wireless-security/wireless-security.h +++ b/panels/network/wireless-security/wireless-security.h @@ -23,6 +23,8 @@ #ifndef WIRELESS_SECURITY_H #define WIRELESS_SECURITY_H +#define LIBNM_GLIB_BUILD + #include #include @@ -118,7 +120,7 @@ WirelessSecurity *wireless_security_init (gsize obj_size, WSFillConnectionFunc fill_connection, WSUpdateSecretsFunc update_secrets, WSDestroyFunc destroy, - const char *ui_file, + const char *ui_resource, const char *ui_widget_name, const char *default_field); diff --git a/panels/network/wireless-security/ws-dynamic-wep.c b/panels/network/wireless-security/ws-dynamic-wep.c index db55119..0192d24 100644 --- a/panels/network/wireless-security/ws-dynamic-wep.c +++ b/panels/network/wireless-security/ws-dynamic-wep.c @@ -109,7 +109,7 @@ ws_dynamic_wep_new (NMConnection *connection, fill_connection, update_secrets, destroy, - UIDIR "/ws-dynamic-wep.ui", + "/org/cinnamon/control-center/network/ws-dynamic-wep.ui", "dynamic_wep_notebook", NULL); if (!parent) diff --git a/panels/network/wireless-security/ws-leap.c b/panels/network/wireless-security/ws-leap.c index 2b8b615..3a0f60c 100644 --- a/panels/network/wireless-security/ws-leap.c +++ b/panels/network/wireless-security/ws-leap.c @@ -155,7 +155,7 @@ ws_leap_new (NMConnection *connection, gboolean secrets_only) fill_connection, update_secrets, NULL, - UIDIR "/ws-leap.ui", + "/org/cinnamon/control-center/network/ws-leap.ui", "leap_notebook", "leap_username_entry"); if (!parent) diff --git a/panels/network/wireless-security/ws-wep-key.c b/panels/network/wireless-security/ws-wep-key.c index 045ac4b..cd7dbac 100644 --- a/panels/network/wireless-security/ws-wep-key.c +++ b/panels/network/wireless-security/ws-wep-key.c @@ -264,7 +264,7 @@ ws_wep_key_new (NMConnection *connection, fill_connection, update_secrets, destroy, - UIDIR "/ws-wep-key.ui", + "/org/cinnamon/control-center/network/ws-wep-key.ui", "wep_key_notebook", "wep_key_entry"); if (!parent) diff --git a/panels/network/wireless-security/ws-wpa-eap.c b/panels/network/wireless-security/ws-wpa-eap.c index d83218d..7db42df 100644 --- a/panels/network/wireless-security/ws-wpa-eap.c +++ b/panels/network/wireless-security/ws-wpa-eap.c @@ -110,7 +110,7 @@ ws_wpa_eap_new (NMConnection *connection, fill_connection, update_secrets, destroy, - UIDIR "/ws-wpa-eap.ui", + "/org/cinnamon/control-center/network/ws-wpa-eap.ui", "wpa_eap_notebook", NULL); if (!parent) diff --git a/panels/network/wireless-security/ws-wpa-psk.c b/panels/network/wireless-security/ws-wpa-psk.c index e56f348..4be28f2 100644 --- a/panels/network/wireless-security/ws-wpa-psk.c +++ b/panels/network/wireless-security/ws-wpa-psk.c @@ -182,7 +182,7 @@ ws_wpa_psk_new (NMConnection *connection, gboolean secrets_only) fill_connection, update_secrets, NULL, - UIDIR "/ws-wpa-psk.ui", + "/org/cinnamon/control-center/network/ws-wpa-psk.ui", "wpa_psk_notebook", "wpa_psk_entry"); if (!parent) cinnamon-control-center-6.2.0/panels/network/wireless-security/eap-method-simple.ui0000664000175000017500000001150314632072346027536 0ustar fabiofabio True False False False True False start 3 2 6 6 True False 1 _Username True eap_simple_username_entry GTK_FILL True False 1 _Password True eap_simple_password_entry 1 2 GTK_FILL True True False True 1 2 1 2 True True True 1 2 True False Sho_w password True True False True True True True 0 1 2 2 3 True False False cinnamon-control-center-6.2.0/panels/network/wireless-security/ws-dynamic-wep.ui0000664000175000017500000000642414632072346027076 0ustar fabiofabio True False False False True False 3 2 6 6 True False 1 Au_thentication True dynamic_wep_auth_combo GTK_FILL True False model7 0 1 2 GTK_FILL True False 6 2 1 2 GTK_FILL True False False cinnamon-control-center-6.2.0/panels/network/wireless-security/ws-wpa-eap.ui0000664000175000017500000000614214632072346026210 0ustar fabiofabio True False False False True False 2 2 6 6 True False 1 Au_thentication True wpa_eap_auth_combo GTK_FILL True False model5 0 1 2 GTK_FILL True False 2 1 2 GTK_FILL True False False cinnamon-control-center-6.2.0/panels/network/wireless-security/ws-leap.c0000664000175000017500000001632314632072346025406 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2007 - 2014 Red Hat, Inc. */ #include "nm-default.h" #include #include "wireless-security.h" #include "helpers.h" #include "nma-ui-utils.h" #include "utils.h" struct _WirelessSecurityLEAP { WirelessSecurity parent; gboolean editing_connection; const char *password_flags_name; }; static void show_toggled_cb (GtkCheckButton *button, WirelessSecurity *sec) { GtkWidget *widget; gboolean visible; widget = GTK_WIDGET (gtk_builder_get_object (sec->builder, "leap_password_entry")); g_assert (widget); visible = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (button)); gtk_entry_set_visibility (GTK_ENTRY (widget), visible); } static gboolean validate (WirelessSecurity *parent, GError **error) { GtkWidget *entry; const char *text; gboolean ret = TRUE; entry = GTK_WIDGET (gtk_builder_get_object (parent->builder, "leap_username_entry")); g_assert (entry); text = gtk_entry_get_text (GTK_ENTRY (entry)); if (!text || !strlen (text)) { widget_set_error (entry); g_set_error_literal (error, NMA_ERROR, NMA_ERROR_GENERIC, _("missing leap-username")); ret = FALSE; } else widget_unset_error (entry); entry = GTK_WIDGET (gtk_builder_get_object (parent->builder, "leap_password_entry")); g_assert (entry); text = gtk_entry_get_text (GTK_ENTRY (entry)); if (!text || !strlen (text)) { widget_set_error (entry); if (ret) { g_set_error_literal (error, NMA_ERROR, NMA_ERROR_GENERIC, _("missing leap-password")); ret = FALSE; } } else widget_unset_error (entry); return ret; } static void add_to_size_group (WirelessSecurity *parent, GtkSizeGroup *group) { GtkWidget *widget; widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "leap_username_label")); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "leap_password_label")); gtk_size_group_add_widget (group, widget); } static void fill_connection (WirelessSecurity *parent, NMConnection *connection) { WirelessSecurityLEAP *sec = (WirelessSecurityLEAP *) parent; NMSettingWirelessSecurity *s_wireless_sec; NMSettingSecretFlags secret_flags; GtkWidget *widget, *passwd_entry; const char *leap_password = NULL, *leap_username = NULL; /* Blow away the old security setting by adding a clear one */ s_wireless_sec = (NMSettingWirelessSecurity *) nm_setting_wireless_security_new (); nm_connection_add_setting (connection, (NMSetting *) s_wireless_sec); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "leap_username_entry")); leap_username = gtk_entry_get_text (GTK_ENTRY (widget)); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "leap_password_entry")); passwd_entry = widget; leap_password = gtk_entry_get_text (GTK_ENTRY (widget)); g_object_set (s_wireless_sec, NM_SETTING_WIRELESS_SECURITY_KEY_MGMT, "ieee8021x", NM_SETTING_WIRELESS_SECURITY_AUTH_ALG, "leap", NM_SETTING_WIRELESS_SECURITY_LEAP_USERNAME, leap_username, NM_SETTING_WIRELESS_SECURITY_LEAP_PASSWORD, leap_password, NULL); /* Save LEAP_PASSWORD_FLAGS to the connection */ secret_flags = nma_utils_menu_to_secret_flags (passwd_entry); nm_setting_set_secret_flags (NM_SETTING (s_wireless_sec), sec->password_flags_name, secret_flags, NULL); /* Update secret flags and popup when editing the connection */ if (sec->editing_connection) nma_utils_update_password_storage (passwd_entry, secret_flags, NM_SETTING (s_wireless_sec), sec->password_flags_name); } static void update_secrets (WirelessSecurity *parent, NMConnection *connection) { helper_fill_secret_entry (connection, parent->builder, "leap_password_entry", NM_TYPE_SETTING_WIRELESS_SECURITY, (HelperSecretFunc) nm_setting_wireless_security_get_leap_password); } WirelessSecurityLEAP * ws_leap_new (NMConnection *connection, gboolean secrets_only) { WirelessSecurity *parent; WirelessSecurityLEAP *sec; GtkWidget *widget; NMSettingWirelessSecurity *wsec = NULL; parent = wireless_security_init (sizeof (WirelessSecurityLEAP), validate, add_to_size_group, fill_connection, update_secrets, NULL, "/org/cinnamon/control-center/network/ws-leap.ui", "leap_notebook", "leap_username_entry"); if (!parent) return NULL; if (connection) { wsec = nm_connection_get_setting_wireless_security (connection); if (wsec) { const char *auth_alg; /* Ignore if wireless security doesn't specify LEAP */ auth_alg = nm_setting_wireless_security_get_auth_alg (wsec); if (!auth_alg || strcmp (auth_alg, "leap")) wsec = NULL; } } parent->adhoc_compatible = FALSE; parent->hotspot_compatible = FALSE; sec = (WirelessSecurityLEAP *) parent; sec->editing_connection = secrets_only ? FALSE : TRUE; sec->password_flags_name = NM_SETTING_WIRELESS_SECURITY_LEAP_PASSWORD; widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "leap_password_entry")); g_assert (widget); g_signal_connect (G_OBJECT (widget), "changed", (GCallback) wireless_security_changed_cb, sec); /* Create password-storage popup menu for password entry under entry's secondary icon */ nma_utils_setup_password_storage (widget, 0, (NMSetting *) wsec, sec->password_flags_name, FALSE, secrets_only); if (wsec) update_secrets (WIRELESS_SECURITY (sec), connection); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "leap_username_entry")); g_assert (widget); g_signal_connect (G_OBJECT (widget), "changed", (GCallback) wireless_security_changed_cb, sec); if (wsec) gtk_entry_set_text (GTK_ENTRY (widget), nm_setting_wireless_security_get_leap_username (wsec)); if (secrets_only) gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "show_checkbutton_leap")); g_assert (widget); g_signal_connect (G_OBJECT (widget), "toggled", (GCallback) show_toggled_cb, sec); return sec; } cinnamon-control-center-6.2.0/panels/network/wireless-security/ws-wpa-psk.c0000664000175000017500000001727514632072346026056 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2007 - 2014 Red Hat, Inc. */ #include "nm-default.h" #include #include #include "wireless-security.h" #include "helpers.h" #include "nma-ui-utils.h" #include "utils.h" #define WPA_PMK_LEN 32 struct _WirelessSecurityWPAPSK { WirelessSecurity parent; gboolean editing_connection; const char *password_flags_name; }; static void show_toggled_cb (GtkCheckButton *button, WirelessSecurity *sec) { GtkWidget *widget; gboolean visible; widget = GTK_WIDGET (gtk_builder_get_object (sec->builder, "wpa_psk_entry")); g_assert (widget); visible = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (button)); gtk_entry_set_visibility (GTK_ENTRY (widget), visible); } static gboolean validate (WirelessSecurity *parent, GError **error) { GtkWidget *entry; const char *key; gsize len; int i; entry = GTK_WIDGET (gtk_builder_get_object (parent->builder, "wpa_psk_entry")); g_assert (entry); key = gtk_entry_get_text (GTK_ENTRY (entry)); len = key ? strlen (key) : 0; if ((len < 8) || (len > 64)) { widget_set_error (entry); g_set_error (error, NMA_ERROR, NMA_ERROR_GENERIC, _("invalid wpa-psk: invalid key-length %zu. Must be [8,63] bytes or 64 hex digits"), len); return FALSE; } if (len == 64) { /* Hex PSK */ for (i = 0; i < len; i++) { if (!isxdigit (key[i])) { widget_set_error (entry); g_set_error_literal (error, NMA_ERROR, NMA_ERROR_GENERIC, _("invalid wpa-psk: cannot interpret key with 64 bytes as hex")); return FALSE; } } } widget_unset_error (entry); /* passphrase can be between 8 and 63 characters inclusive */ return TRUE; } static void add_to_size_group (WirelessSecurity *parent, GtkSizeGroup *group) { GtkWidget *widget; widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "wpa_psk_type_label")); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "wpa_psk_label")); gtk_size_group_add_widget (group, widget); } static void fill_connection (WirelessSecurity *parent, NMConnection *connection) { WirelessSecurityWPAPSK *wpa_psk = (WirelessSecurityWPAPSK *) parent; GtkWidget *widget, *passwd_entry; const char *key; NMSettingWireless *s_wireless; NMSettingWirelessSecurity *s_wireless_sec; NMSettingSecretFlags secret_flags; const char *mode; gboolean is_adhoc = FALSE; s_wireless = nm_connection_get_setting_wireless (connection); g_assert (s_wireless); mode = nm_setting_wireless_get_mode (s_wireless); if (mode && !strcmp (mode, "adhoc")) is_adhoc = TRUE; /* Blow away the old security setting by adding a clear one */ s_wireless_sec = (NMSettingWirelessSecurity *) nm_setting_wireless_security_new (); nm_connection_add_setting (connection, (NMSetting *) s_wireless_sec); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "wpa_psk_entry")); passwd_entry = widget; key = gtk_entry_get_text (GTK_ENTRY (widget)); g_object_set (s_wireless_sec, NM_SETTING_WIRELESS_SECURITY_PSK, key, NULL); /* Save PSK_FLAGS to the connection */ secret_flags = nma_utils_menu_to_secret_flags (passwd_entry); nm_setting_set_secret_flags (NM_SETTING (s_wireless_sec), NM_SETTING_WIRELESS_SECURITY_PSK, secret_flags, NULL); /* Update secret flags and popup when editing the connection */ if (wpa_psk->editing_connection) nma_utils_update_password_storage (passwd_entry, secret_flags, NM_SETTING (s_wireless_sec), wpa_psk->password_flags_name); wireless_security_clear_ciphers (connection); if (is_adhoc) { /* Ad-Hoc settings as specified by the supplicant */ g_object_set (s_wireless_sec, NM_SETTING_WIRELESS_SECURITY_KEY_MGMT, "wpa-none", NULL); nm_setting_wireless_security_add_proto (s_wireless_sec, "wpa"); nm_setting_wireless_security_add_pairwise (s_wireless_sec, "none"); /* Ad-hoc can only have _one_ group cipher... default to TKIP to be more * compatible for now. Maybe we'll support selecting CCMP later. */ nm_setting_wireless_security_add_group (s_wireless_sec, "tkip"); } else { g_object_set (s_wireless_sec, NM_SETTING_WIRELESS_SECURITY_KEY_MGMT, "wpa-psk", NULL); /* Just leave ciphers and protocol empty, the supplicant will * figure that out magically based on the AP IEs and card capabilities. */ } } static void update_secrets (WirelessSecurity *parent, NMConnection *connection) { helper_fill_secret_entry (connection, parent->builder, "wpa_psk_entry", NM_TYPE_SETTING_WIRELESS_SECURITY, (HelperSecretFunc) nm_setting_wireless_security_get_psk); } WirelessSecurityWPAPSK * ws_wpa_psk_new (NMConnection *connection, gboolean secrets_only) { WirelessSecurity *parent; WirelessSecurityWPAPSK *sec; NMSetting *setting = NULL; GtkWidget *widget; parent = wireless_security_init (sizeof (WirelessSecurityWPAPSK), validate, add_to_size_group, fill_connection, update_secrets, NULL, "/org/cinnamon/control-center/network/ws-wpa-psk.ui", "wpa_psk_notebook", "wpa_psk_entry"); if (!parent) return NULL; parent->adhoc_compatible = FALSE; sec = (WirelessSecurityWPAPSK *) parent; sec->editing_connection = secrets_only ? FALSE : TRUE; sec->password_flags_name = NM_SETTING_WIRELESS_SECURITY_PSK; widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "wpa_psk_entry")); g_assert (widget); g_signal_connect (G_OBJECT (widget), "changed", (GCallback) wireless_security_changed_cb, sec); gtk_entry_set_width_chars (GTK_ENTRY (widget), 28); /* Create password-storage popup menu for password entry under entry's secondary icon */ if (connection) setting = (NMSetting *) nm_connection_get_setting_wireless_security (connection); nma_utils_setup_password_storage (widget, 0, setting, sec->password_flags_name, FALSE, secrets_only); /* Fill secrets, if any */ if (connection) update_secrets (WIRELESS_SECURITY (sec), connection); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "show_checkbutton_wpa")); g_assert (widget); g_signal_connect (G_OBJECT (widget), "toggled", (GCallback) show_toggled_cb, sec); /* Hide WPA/RSN for now since this can be autodetected by NM and the * supplicant when connecting to the AP. */ widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "wpa_psk_type_combo")); g_assert (widget); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "wpa_psk_type_label")); g_assert (widget); gtk_widget_hide (widget); return sec; } cinnamon-control-center-6.2.0/panels/network/wireless-security/utils.c0000664000175000017500000000501014632072346025165 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2007 - 2015 Red Hat, Inc. */ #include "nm-default.h" #include #include #include "utils.h" /** * Filters the characters from a text that was just input into GtkEditable. * Returns FALSE, if after filtering no characters were left. TRUE means, * that valid characters were added and the content of the GtkEditable changed. **/ gboolean utils_filter_editable_on_insert_text (GtkEditable *editable, const gchar *text, gint length, gint *position, void *user_data, UtilsFilterGtkEditableFunc validate_character, gpointer block_func) { int i, count = 0; gchar *result = g_new (gchar, length+1); for (i = 0; i < length; i++) { if (validate_character (text[i])) result[count++] = text[i]; } result[count] = 0; if (count > 0) { if (block_func) { g_signal_handlers_block_by_func (G_OBJECT (editable), G_CALLBACK (block_func), user_data); } gtk_editable_insert_text (editable, result, count, position); if (block_func) { g_signal_handlers_unblock_by_func (G_OBJECT (editable), G_CALLBACK (block_func), user_data); } } g_signal_stop_emission_by_name (G_OBJECT (editable), "insert-text"); g_free (result); return count > 0; } gboolean utils_char_is_ascii_print (char character) { return g_ascii_isprint (character); } cinnamon-control-center-6.2.0/panels/network/wireless-security/ws-wep-key.h0000664000175000017500000000246114632072346026051 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2007 - 2014 Red Hat, Inc. */ #ifndef WS_WEP_KEY_H #define WS_WEP_KEY_H typedef struct _WirelessSecurityWEPKey WirelessSecurityWEPKey; WirelessSecurityWEPKey *ws_wep_key_new (NMConnection *connection, NMWepKeyType type, gboolean adhoc_create, gboolean secrets_only); #endif /* WS_WEP_KEY_H */ cinnamon-control-center-6.2.0/panels/network/wireless-security/update_from_nma.sh0000775000175000017500000000120314632072346027360 0ustar fabiofabio#!/bin/bash WIRELESS_SECURITY_DIR=${top_srcdir}/../network-manager-applet/src/wireless-security FILES="${NM_APPLET_SOURCES}" \ DIR="${WIRELESS_SECURITY_DIR}" \ ${top_srcdir}/update-from-gsd.sh patch -p4 < ${srcdir}/nm-connection-editor-to-network-panel.patch git add ${NM_APPLET_SOURCES} git commit -m "network: Update wireless-security from network-manager-applet" FILES="${resource_files}" \ DIR="${WIRELESS_SECURITY_DIR}" \ ${top_srcdir}/update-from-gsd.sh patch -p4 < $(srcdir)/nm-connection-editor-ui-to-network-panel.patch git add ${resource_files} git commit -m "network: Update wireless-security UI from network-manager-applet" cinnamon-control-center-6.2.0/panels/network/wireless-security/wireless-security.c0000664000175000017500000004376414632072346027551 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2007 - 2014 Red Hat, Inc. */ #include "nm-default.h" #include #include "wireless-security.h" #include "wireless-security-resources.h" #include "eap-method.h" #include "utils.h" GType wireless_security_get_type (void) { static GType type_id = 0; if (!type_id) { g_resources_register (wireless_security_get_resource ()); type_id = g_boxed_type_register_static ("CcWirelessSecurity", (GBoxedCopyFunc) wireless_security_ref, (GBoxedFreeFunc) wireless_security_unref); } return type_id; } GtkWidget * wireless_security_get_widget (WirelessSecurity *sec) { g_return_val_if_fail (sec != NULL, NULL); return sec->ui_widget; } void wireless_security_set_changed_notify (WirelessSecurity *sec, WSChangedFunc func, gpointer user_data) { g_return_if_fail (sec != NULL); sec->changed_notify = func; sec->changed_notify_data = user_data; } void wireless_security_changed_cb (GtkWidget *ignored, gpointer user_data) { WirelessSecurity *sec = WIRELESS_SECURITY (user_data); if (sec->changed_notify) (*(sec->changed_notify)) (sec, sec->changed_notify_data); } gboolean wireless_security_validate (WirelessSecurity *sec, GError **error) { gboolean result; g_return_val_if_fail (sec != NULL, FALSE); g_return_val_if_fail (!error || !*error, FALSE); g_assert (sec->validate); result = (*(sec->validate)) (sec, error); if (!result && error && !*error) g_set_error_literal (error, NMA_ERROR, NMA_ERROR_GENERIC, _("Unknown error validating 802.1x security")); return result; } void wireless_security_add_to_size_group (WirelessSecurity *sec, GtkSizeGroup *group) { g_return_if_fail (sec != NULL); g_return_if_fail (group != NULL); g_assert (sec->add_to_size_group); return (*(sec->add_to_size_group)) (sec, group); } void wireless_security_fill_connection (WirelessSecurity *sec, NMConnection *connection) { g_return_if_fail (sec != NULL); g_return_if_fail (connection != NULL); g_assert (sec->fill_connection); return (*(sec->fill_connection)) (sec, connection); } void wireless_security_update_secrets (WirelessSecurity *sec, NMConnection *connection) { g_return_if_fail (sec != NULL); g_return_if_fail (connection != NULL); if (sec->update_secrets) sec->update_secrets (sec, connection); } WirelessSecurity * wireless_security_ref (WirelessSecurity *sec) { g_return_val_if_fail (sec != NULL, NULL); g_return_val_if_fail (sec->refcount > 0, NULL); sec->refcount++; return sec; } void wireless_security_unref (WirelessSecurity *sec) { g_return_if_fail (sec != NULL); g_return_if_fail (sec->refcount > 0); sec->refcount--; if (sec->refcount == 0) { if (sec->destroy) sec->destroy (sec); g_free (sec->username); if (sec->password) { memset (sec->password, 0, strlen (sec->password)); g_free (sec->password); } if (sec->builder) g_object_unref (sec->builder); if (sec->ui_widget) g_object_unref (sec->ui_widget); g_slice_free1 (sec->obj_size, sec); } } WirelessSecurity * wireless_security_init (gsize obj_size, WSValidateFunc validate, WSAddToSizeGroupFunc add_to_size_group, WSFillConnectionFunc fill_connection, WSUpdateSecretsFunc update_secrets, WSDestroyFunc destroy, const char *ui_resource, const char *ui_widget_name, const char *default_field) { WirelessSecurity *sec; GError *error = NULL; g_return_val_if_fail (obj_size > 0, NULL); g_return_val_if_fail (ui_resource != NULL, NULL); g_return_val_if_fail (ui_widget_name != NULL, NULL); sec = g_slice_alloc0 (obj_size); g_assert (sec); sec->refcount = 1; sec->obj_size = obj_size; sec->validate = validate; sec->add_to_size_group = add_to_size_group; sec->fill_connection = fill_connection; sec->update_secrets = update_secrets; sec->default_field = default_field; sec->builder = gtk_builder_new (); if (!gtk_builder_add_from_resource (sec->builder, ui_resource, &error)) { g_warning ("Couldn't load UI builder file %s: %s", ui_resource, error->message); g_error_free (error); wireless_security_unref (sec); return NULL; } sec->ui_widget = GTK_WIDGET (gtk_builder_get_object (sec->builder, ui_widget_name)); if (!sec->ui_widget) { g_warning ("Couldn't load UI widget '%s' from UI file %s", ui_widget_name, ui_resource); wireless_security_unref (sec); return NULL; } g_object_ref_sink (sec->ui_widget); sec->destroy = destroy; sec->adhoc_compatible = TRUE; sec->hotspot_compatible = TRUE; return sec; } gboolean wireless_security_adhoc_compatible (WirelessSecurity *sec) { g_return_val_if_fail (sec != NULL, FALSE); return sec->adhoc_compatible; } gboolean wireless_security_hotspot_compatible (WirelessSecurity *sec) { g_return_val_if_fail (sec != NULL, FALSE); return sec->hotspot_compatible; } void wireless_security_set_userpass (WirelessSecurity *sec, const char *user, const char *password, gboolean always_ask, gboolean show_password) { g_free (sec->username); sec->username = g_strdup (user); if (sec->password) { memset (sec->password, 0, strlen (sec->password)); g_free (sec->password); } sec->password = g_strdup (password); if (always_ask != (gboolean) -1) sec->always_ask = always_ask; sec->show_password = show_password; } void wireless_security_set_userpass_802_1x (WirelessSecurity *sec, NMConnection *connection) { const char *user = NULL, *password = NULL; gboolean always_ask = FALSE, show_password = FALSE; NMSetting8021x *setting; NMSettingSecretFlags flags; if (!connection) goto set; setting = nm_connection_get_setting_802_1x (connection); if (!setting) goto set; user = nm_setting_802_1x_get_identity (setting); password = nm_setting_802_1x_get_password (setting); if (nm_setting_get_secret_flags (NM_SETTING (setting), NM_SETTING_802_1X_PASSWORD, &flags, NULL)) always_ask = !!(flags & NM_SETTING_SECRET_FLAG_NOT_SAVED); set: wireless_security_set_userpass (sec, user, password, always_ask, show_password); } void wireless_security_clear_ciphers (NMConnection *connection) { NMSettingWirelessSecurity *s_wireless_sec; g_return_if_fail (connection != NULL); s_wireless_sec = nm_connection_get_setting_wireless_security (connection); g_assert (s_wireless_sec); nm_setting_wireless_security_clear_protos (s_wireless_sec); nm_setting_wireless_security_clear_pairwise (s_wireless_sec); nm_setting_wireless_security_clear_groups (s_wireless_sec); } void ws_802_1x_add_to_size_group (WirelessSecurity *sec, GtkSizeGroup *size_group, const char *label_name, const char *combo_name) { GtkWidget *widget; GtkTreeModel *model; GtkTreeIter iter; EAPMethod *eap; widget = GTK_WIDGET (gtk_builder_get_object (sec->builder, label_name)); g_assert (widget); gtk_size_group_add_widget (size_group, widget); widget = GTK_WIDGET (gtk_builder_get_object (sec->builder, combo_name)); g_assert (widget); model = gtk_combo_box_get_model (GTK_COMBO_BOX (widget)); gtk_combo_box_get_active_iter (GTK_COMBO_BOX (widget), &iter); gtk_tree_model_get (model, &iter, AUTH_METHOD_COLUMN, &eap, -1); g_assert (eap); eap_method_add_to_size_group (eap, size_group); eap_method_unref (eap); } gboolean ws_802_1x_validate (WirelessSecurity *sec, const char *combo_name, GError **error) { GtkWidget *widget; GtkTreeModel *model; GtkTreeIter iter; EAPMethod *eap = NULL; gboolean valid = FALSE; widget = GTK_WIDGET (gtk_builder_get_object (sec->builder, combo_name)); g_assert (widget); model = gtk_combo_box_get_model (GTK_COMBO_BOX (widget)); gtk_combo_box_get_active_iter (GTK_COMBO_BOX (widget), &iter); gtk_tree_model_get (model, &iter, AUTH_METHOD_COLUMN, &eap, -1); g_assert (eap); valid = eap_method_validate (eap, error); eap_method_unref (eap); return valid; } void ws_802_1x_auth_combo_changed (GtkWidget *combo, WirelessSecurity *sec, const char *vbox_name, GtkSizeGroup *size_group) { GtkWidget *vbox; EAPMethod *eap = NULL; GList *elt, *children; GtkTreeModel *model; GtkTreeIter iter; GtkWidget *eap_widget; GtkWidget *eap_default_widget = NULL; vbox = GTK_WIDGET (gtk_builder_get_object (sec->builder, vbox_name)); g_assert (vbox); /* Remove any previous wireless security widgets */ children = gtk_container_get_children (GTK_CONTAINER (vbox)); for (elt = children; elt; elt = g_list_next (elt)) gtk_container_remove (GTK_CONTAINER (vbox), GTK_WIDGET (elt->data)); model = gtk_combo_box_get_model (GTK_COMBO_BOX (combo)); gtk_combo_box_get_active_iter (GTK_COMBO_BOX (combo), &iter); gtk_tree_model_get (model, &iter, AUTH_METHOD_COLUMN, &eap, -1); g_assert (eap); eap_widget = eap_method_get_widget (eap); g_assert (eap_widget); gtk_widget_unparent (eap_widget); if (size_group) eap_method_add_to_size_group (eap, size_group); gtk_container_add (GTK_CONTAINER (vbox), eap_widget); /* Refocus the EAP method's default widget */ if (eap->default_field) { eap_default_widget = GTK_WIDGET (gtk_builder_get_object (eap->builder, eap->default_field)); if (eap_default_widget) gtk_widget_grab_focus (eap_default_widget); } eap_method_unref (eap); wireless_security_changed_cb (combo, WIRELESS_SECURITY (sec)); } GtkWidget * ws_802_1x_auth_combo_init (WirelessSecurity *sec, const char *combo_name, const char *combo_label, GCallback auth_combo_changed_cb, NMConnection *connection, gboolean is_editor, gboolean secrets_only) { GtkWidget *combo, *widget; GtkListStore *auth_model; GtkTreeIter iter; EAPMethodSimple *em_md5; EAPMethodTLS *em_tls; EAPMethodLEAP *em_leap; EAPMethodSimple *em_pwd; EAPMethodFAST *em_fast; EAPMethodTTLS *em_ttls; EAPMethodPEAP *em_peap; const char *default_method = NULL, *ctype = NULL; int active = -1, item = 0; gboolean wired = FALSE; EAPMethodSimpleFlags simple_flags = EAP_METHOD_SIMPLE_FLAG_NONE; /* Grab the default EAP method out of the security object */ if (connection) { NMSettingConnection *s_con; NMSetting8021x *s_8021x; s_con = nm_connection_get_setting_connection (connection); if (s_con) ctype = nm_setting_connection_get_connection_type (s_con); if ( (g_strcmp0 (ctype, NM_SETTING_WIRED_SETTING_NAME) == 0) || nm_connection_get_setting_wired (connection)) wired = TRUE; s_8021x = nm_connection_get_setting_802_1x (connection); if (s_8021x && nm_setting_802_1x_get_num_eap_methods (s_8021x)) default_method = nm_setting_802_1x_get_eap_method (s_8021x, 0); } /* initialize WirelessSecurity userpass from connection (clear if no connection) */ wireless_security_set_userpass_802_1x (sec, connection); auth_model = gtk_list_store_new (2, G_TYPE_STRING, eap_method_get_type ()); if (is_editor) simple_flags |= EAP_METHOD_SIMPLE_FLAG_IS_EDITOR; if (secrets_only) simple_flags |= EAP_METHOD_SIMPLE_FLAG_SECRETS_ONLY; if (wired) { em_md5 = eap_method_simple_new (sec, connection, EAP_METHOD_SIMPLE_TYPE_MD5, simple_flags); gtk_list_store_append (auth_model, &iter); gtk_list_store_set (auth_model, &iter, AUTH_NAME_COLUMN, _("MD5"), AUTH_METHOD_COLUMN, em_md5, -1); eap_method_unref (EAP_METHOD (em_md5)); if (default_method && (active < 0) && !strcmp (default_method, "md5")) active = item; item++; } em_tls = eap_method_tls_new (sec, connection, FALSE, secrets_only); gtk_list_store_append (auth_model, &iter); gtk_list_store_set (auth_model, &iter, AUTH_NAME_COLUMN, _("TLS"), AUTH_METHOD_COLUMN, em_tls, -1); eap_method_unref (EAP_METHOD (em_tls)); if (default_method && (active < 0) && !strcmp (default_method, "tls")) active = item; item++; if (!wired) { em_leap = eap_method_leap_new (sec, connection, secrets_only); gtk_list_store_append (auth_model, &iter); gtk_list_store_set (auth_model, &iter, AUTH_NAME_COLUMN, _("LEAP"), AUTH_METHOD_COLUMN, em_leap, -1); eap_method_unref (EAP_METHOD (em_leap)); if (default_method && (active < 0) && !strcmp (default_method, "leap")) active = item; item++; } em_pwd = eap_method_simple_new (sec, connection, EAP_METHOD_SIMPLE_TYPE_PWD, simple_flags); gtk_list_store_append (auth_model, &iter); gtk_list_store_set (auth_model, &iter, AUTH_NAME_COLUMN, _("PWD"), AUTH_METHOD_COLUMN, em_pwd, -1); eap_method_unref (EAP_METHOD (em_pwd)); if (default_method && (active < 0) && !strcmp (default_method, "pwd")) active = item; item++; em_fast = eap_method_fast_new (sec, connection, is_editor, secrets_only); gtk_list_store_append (auth_model, &iter); gtk_list_store_set (auth_model, &iter, AUTH_NAME_COLUMN, _("FAST"), AUTH_METHOD_COLUMN, em_fast, -1); eap_method_unref (EAP_METHOD (em_fast)); if (default_method && (active < 0) && !strcmp (default_method, "fast")) active = item; item++; em_ttls = eap_method_ttls_new (sec, connection, is_editor, secrets_only); gtk_list_store_append (auth_model, &iter); gtk_list_store_set (auth_model, &iter, AUTH_NAME_COLUMN, _("Tunneled TLS"), AUTH_METHOD_COLUMN, em_ttls, -1); eap_method_unref (EAP_METHOD (em_ttls)); if (default_method && (active < 0) && !strcmp (default_method, "ttls")) active = item; item++; em_peap = eap_method_peap_new (sec, connection, is_editor, secrets_only); gtk_list_store_append (auth_model, &iter); gtk_list_store_set (auth_model, &iter, AUTH_NAME_COLUMN, _("Protected EAP (PEAP)"), AUTH_METHOD_COLUMN, em_peap, -1); eap_method_unref (EAP_METHOD (em_peap)); if (default_method && (active < 0) && !strcmp (default_method, "peap")) active = item; item++; combo = GTK_WIDGET (gtk_builder_get_object (sec->builder, combo_name)); g_assert (combo); gtk_combo_box_set_model (GTK_COMBO_BOX (combo), GTK_TREE_MODEL (auth_model)); g_object_unref (G_OBJECT (auth_model)); gtk_combo_box_set_active (GTK_COMBO_BOX (combo), active < 0 ? 0 : (guint32) active); g_signal_connect (G_OBJECT (combo), "changed", auth_combo_changed_cb, sec); if (secrets_only) { gtk_widget_hide (combo); widget = GTK_WIDGET (gtk_builder_get_object (sec->builder, combo_label)); gtk_widget_hide (widget); } return combo; } void ws_802_1x_fill_connection (WirelessSecurity *sec, const char *combo_name, NMConnection *connection) { GtkWidget *widget; NMSettingWirelessSecurity *s_wireless_sec; NMSetting8021x *s_8021x; NMSettingSecretFlags secret_flags = NM_SETTING_SECRET_FLAG_NONE; EAPMethod *eap = NULL; GtkTreeModel *model; GtkTreeIter iter; /* Get the EAPMethod object */ widget = GTK_WIDGET (gtk_builder_get_object (sec->builder, combo_name)); model = gtk_combo_box_get_model (GTK_COMBO_BOX (widget)); gtk_combo_box_get_active_iter (GTK_COMBO_BOX (widget), &iter); gtk_tree_model_get (model, &iter, AUTH_METHOD_COLUMN, &eap, -1); g_assert (eap); /* Get previous password flags, if any. Otherwise default to agent-owned secrets */ s_8021x = nm_connection_get_setting_802_1x (connection); if (s_8021x) nm_setting_get_secret_flags (NM_SETTING (s_8021x), eap->password_flags_name, &secret_flags, NULL); else secret_flags = NM_SETTING_SECRET_FLAG_AGENT_OWNED; /* Blow away the old wireless security setting by adding a clear one */ s_wireless_sec = (NMSettingWirelessSecurity *) nm_setting_wireless_security_new (); nm_connection_add_setting (connection, (NMSetting *) s_wireless_sec); /* Blow away the old 802.1x setting by adding a clear one */ s_8021x = (NMSetting8021x *) nm_setting_802_1x_new (); nm_connection_add_setting (connection, (NMSetting *) s_8021x); eap_method_fill_connection (eap, connection, secret_flags); eap_method_unref (eap); } void ws_802_1x_update_secrets (WirelessSecurity *sec, const char *combo_name, NMConnection *connection) { GtkWidget *widget; EAPMethod *eap = NULL; GtkTreeModel *model; GtkTreeIter iter; g_return_if_fail (sec != NULL); g_return_if_fail (combo_name != NULL); g_return_if_fail (connection != NULL); widget = GTK_WIDGET (gtk_builder_get_object (sec->builder, combo_name)); g_return_if_fail (widget != NULL); model = gtk_combo_box_get_model (GTK_COMBO_BOX (widget)); /* Let each EAP method try to update its secrets */ if (gtk_tree_model_get_iter_first (model, &iter)) { do { gtk_tree_model_get (model, &iter, AUTH_METHOD_COLUMN, &eap, -1); if (eap) { eap_method_update_secrets (eap, connection); eap_method_unref (eap); } } while (gtk_tree_model_iter_next (model, &iter)); } } cinnamon-control-center-6.2.0/panels/network/wireless-security/eap-method-ttls.h0000664000175000017500000000251114632072346027044 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * (C) Copyright 2007 - 2010 Red Hat, Inc. */ #ifndef EAP_METHOD_TTLS_H #define EAP_METHOD_TTLS_H #include "wireless-security.h" typedef struct _EAPMethodTTLS EAPMethodTTLS; EAPMethodTTLS *eap_method_ttls_new (WirelessSecurity *ws_parent, NMConnection *connection, gboolean is_editor, gboolean secrets_only); #endif /* EAP_METHOD_TLS_H */ cinnamon-control-center-6.2.0/panels/network/wireless-security/ws-wep-key.c0000664000175000017500000003027514632072346026050 0ustar fabiofabio/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ /* NetworkManager Applet -- allow user control over networking * * Dan Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Copyright 2007 - 2014 Red Hat, Inc. */ #include "nm-default.h" #include #include "wireless-security.h" #include "utils.h" #include "helpers.h" #include "nma-ui-utils.h" struct _WirelessSecurityWEPKey { WirelessSecurity parent; gboolean editing_connection; const char *password_flags_name; NMWepKeyType type; char keys[4][65]; guint8 cur_index; }; static void show_toggled_cb (GtkCheckButton *button, WirelessSecurity *sec) { GtkWidget *widget; gboolean visible; widget = GTK_WIDGET (gtk_builder_get_object (sec->builder, "wep_key_entry")); g_assert (widget); visible = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (button)); gtk_entry_set_visibility (GTK_ENTRY (widget), visible); } static void key_index_combo_changed_cb (GtkWidget *combo, WirelessSecurity *parent) { WirelessSecurityWEPKey *sec = (WirelessSecurityWEPKey *) parent; GtkWidget *entry; const char *key; int key_index; /* Save WEP key for old key index */ entry = GTK_WIDGET (gtk_builder_get_object (parent->builder, "wep_key_entry")); key = gtk_entry_get_text (GTK_ENTRY (entry)); if (key) g_strlcpy (sec->keys[sec->cur_index], key, sizeof (sec->keys[sec->cur_index])); else memset (sec->keys[sec->cur_index], 0, sizeof (sec->keys[sec->cur_index])); key_index = gtk_combo_box_get_active (GTK_COMBO_BOX (combo)); g_return_if_fail (key_index <= 3); g_return_if_fail (key_index >= 0); /* Populate entry with key from new index */ gtk_entry_set_text (GTK_ENTRY (entry), sec->keys[key_index]); sec->cur_index = key_index; wireless_security_changed_cb (combo, parent); } static void destroy (WirelessSecurity *parent) { WirelessSecurityWEPKey *sec = (WirelessSecurityWEPKey *) parent; int i; for (i = 0; i < 4; i++) memset (sec->keys[i], 0, sizeof (sec->keys[i])); } static gboolean validate (WirelessSecurity *parent, GError **error) { WirelessSecurityWEPKey *sec = (WirelessSecurityWEPKey *) parent; GtkWidget *entry; const char *key; int i; entry = GTK_WIDGET (gtk_builder_get_object (parent->builder, "wep_key_entry")); g_assert (entry); key = gtk_entry_get_text (GTK_ENTRY (entry)); if (!key) { widget_set_error (entry); g_set_error_literal (error, NMA_ERROR, NMA_ERROR_GENERIC, _("missing wep-key")); return FALSE; } if (sec->type == NM_WEP_KEY_TYPE_KEY) { if ((strlen (key) == 10) || (strlen (key) == 26)) { for (i = 0; i < strlen (key); i++) { if (!g_ascii_isxdigit (key[i])) { widget_set_error (entry); g_set_error (error, NMA_ERROR, NMA_ERROR_GENERIC, _("invalid wep-key: key with a length of %zu must contain only hex-digits"), strlen (key)); return FALSE; } } } else if ((strlen (key) == 5) || (strlen (key) == 13)) { for (i = 0; i < strlen (key); i++) { if (!utils_char_is_ascii_print (key[i])) { widget_set_error (entry); g_set_error (error, NMA_ERROR, NMA_ERROR_GENERIC, _("invalid wep-key: key with a length of %zu must contain only ascii characters"), strlen (key)); return FALSE; } } } else { widget_set_error (entry); g_set_error (error, NMA_ERROR, NMA_ERROR_GENERIC, _("invalid wep-key: wrong key length %zu. A key must be either of length 5/13 (ascii) or 10/26 (hex)"), strlen (key)); return FALSE; } } else if (sec->type == NM_WEP_KEY_TYPE_PASSPHRASE) { if (!*key || (strlen (key) > 64)) { widget_set_error (entry); if (!*key) g_set_error_literal (error, NMA_ERROR, NMA_ERROR_GENERIC, _("invalid wep-key: passphrase must be non-empty")); else g_set_error_literal (error, NMA_ERROR, NMA_ERROR_GENERIC, _("invalid wep-key: passphrase must be shorter than 64 characters")); return FALSE; } } widget_unset_error (entry); return TRUE; } static void add_to_size_group (WirelessSecurity *parent, GtkSizeGroup *group) { GtkWidget *widget; widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "auth_method_label")); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "wep_key_label")); gtk_size_group_add_widget (group, widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "key_index_label")); gtk_size_group_add_widget (group, widget); } static void fill_connection (WirelessSecurity *parent, NMConnection *connection) { WirelessSecurityWEPKey *sec = (WirelessSecurityWEPKey *) parent; NMSettingWirelessSecurity *s_wsec; NMSettingSecretFlags secret_flags; GtkWidget *widget, *passwd_entry; gint auth_alg; const char *key; int i; widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "auth_method_combo")); auth_alg = gtk_combo_box_get_active (GTK_COMBO_BOX (widget)); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "wep_key_entry")); passwd_entry = widget; key = gtk_entry_get_text (GTK_ENTRY (widget)); g_strlcpy (sec->keys[sec->cur_index], key, sizeof (sec->keys[sec->cur_index])); /* Blow away the old security setting by adding a clear one */ s_wsec = (NMSettingWirelessSecurity *) nm_setting_wireless_security_new (); nm_connection_add_setting (connection, (NMSetting *) s_wsec); g_object_set (s_wsec, NM_SETTING_WIRELESS_SECURITY_KEY_MGMT, "none", NM_SETTING_WIRELESS_SECURITY_WEP_TX_KEYIDX, sec->cur_index, NM_SETTING_WIRELESS_SECURITY_AUTH_ALG, (auth_alg == 1) ? "shared" : "open", NM_SETTING_WIRELESS_SECURITY_WEP_KEY_TYPE, sec->type, NULL); for (i = 0; i < 4; i++) { if (strlen (sec->keys[i])) nm_setting_wireless_security_set_wep_key (s_wsec, i, sec->keys[i]); } /* Save WEP_KEY_FLAGS to the connection */ secret_flags = nma_utils_menu_to_secret_flags (passwd_entry); g_object_set (s_wsec, NM_SETTING_WIRELESS_SECURITY_WEP_KEY_FLAGS, secret_flags, NULL); /* Update secret flags and popup when editing the connection */ if (sec->editing_connection) nma_utils_update_password_storage (passwd_entry, secret_flags, NM_SETTING (s_wsec), sec->password_flags_name); } static void wep_entry_filter_cb (GtkEditable *editable, gchar *text, gint length, gint *position, gpointer data) { WirelessSecurityWEPKey *sec = (WirelessSecurityWEPKey *) data; if (sec->type == NM_WEP_KEY_TYPE_KEY) { utils_filter_editable_on_insert_text (editable, text, length, position, data, utils_char_is_ascii_print, wep_entry_filter_cb); } } static void update_secrets (WirelessSecurity *parent, NMConnection *connection) { WirelessSecurityWEPKey *sec = (WirelessSecurityWEPKey *) parent; NMSettingWirelessSecurity *s_wsec; GtkWidget *widget; const char *tmp; int i; s_wsec = nm_connection_get_setting_wireless_security (connection); for (i = 0; s_wsec && i < 4; i++) { tmp = nm_setting_wireless_security_get_wep_key (s_wsec, i); if (tmp) g_strlcpy (sec->keys[i], tmp, sizeof (sec->keys[i])); } widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "wep_key_entry")); if (strlen (sec->keys[sec->cur_index])) gtk_entry_set_text (GTK_ENTRY (widget), sec->keys[sec->cur_index]); } WirelessSecurityWEPKey * ws_wep_key_new (NMConnection *connection, NMWepKeyType type, gboolean adhoc_create, gboolean secrets_only) { WirelessSecurity *parent; WirelessSecurityWEPKey *sec; GtkWidget *widget; NMSettingWirelessSecurity *s_wsec = NULL; NMSetting *setting = NULL; guint8 default_key_idx = 0; gboolean is_adhoc = adhoc_create; gboolean is_shared_key = FALSE; parent = wireless_security_init (sizeof (WirelessSecurityWEPKey), validate, add_to_size_group, fill_connection, update_secrets, destroy, "/org/cinnamon/control-center/network/ws-wep-key.ui", "wep_key_notebook", "wep_key_entry"); if (!parent) return NULL; sec = (WirelessSecurityWEPKey *) parent; sec->editing_connection = secrets_only ? FALSE : TRUE; sec->password_flags_name = NM_SETTING_WIRELESS_SECURITY_WEP_KEY0; sec->type = type; widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "wep_key_entry")); g_assert (widget); gtk_entry_set_width_chars (GTK_ENTRY (widget), 28); /* Create password-storage popup menu for password entry under entry's secondary icon */ if (connection) setting = (NMSetting *) nm_connection_get_setting_wireless_security (connection); nma_utils_setup_password_storage (widget, 0, setting, sec->password_flags_name, FALSE, secrets_only); if (connection) { NMSettingWireless *s_wireless; const char *mode, *auth_alg; s_wireless = nm_connection_get_setting_wireless (connection); mode = s_wireless ? nm_setting_wireless_get_mode (s_wireless) : NULL; if (mode && !strcmp (mode, "adhoc")) is_adhoc = TRUE; s_wsec = nm_connection_get_setting_wireless_security (connection); if (s_wsec) { auth_alg = nm_setting_wireless_security_get_auth_alg (s_wsec); if (auth_alg && !strcmp (auth_alg, "shared")) is_shared_key = TRUE; } } g_signal_connect (G_OBJECT (widget), "changed", (GCallback) wireless_security_changed_cb, sec); g_signal_connect (G_OBJECT (widget), "insert-text", (GCallback) wep_entry_filter_cb, sec); if (sec->type == NM_WEP_KEY_TYPE_KEY) gtk_entry_set_max_length (GTK_ENTRY (widget), 26); else if (sec->type == NM_WEP_KEY_TYPE_PASSPHRASE) gtk_entry_set_max_length (GTK_ENTRY (widget), 64); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "key_index_combo")); if (connection && s_wsec) default_key_idx = nm_setting_wireless_security_get_wep_tx_keyidx (s_wsec); gtk_combo_box_set_active (GTK_COMBO_BOX (widget), default_key_idx); sec->cur_index = default_key_idx; g_signal_connect (G_OBJECT (widget), "changed", (GCallback) key_index_combo_changed_cb, sec); /* Key index is useless with adhoc networks */ if (is_adhoc || secrets_only) { gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "key_index_label")); gtk_widget_hide (widget); } /* Fill the key entry with the key for that index */ if (connection) update_secrets (WIRELESS_SECURITY (sec), connection); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "show_checkbutton_wep")); g_assert (widget); g_signal_connect (G_OBJECT (widget), "toggled", (GCallback) show_toggled_cb, sec); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "auth_method_combo")); gtk_combo_box_set_active (GTK_COMBO_BOX (widget), is_shared_key ? 1 : 0); g_signal_connect (G_OBJECT (widget), "changed", (GCallback) wireless_security_changed_cb, sec); /* Don't show auth method for adhoc (which always uses open-system) or * when in "simple" mode. */ if (is_adhoc || secrets_only) { /* Ad-Hoc connections can't use Shared Key auth */ if (is_adhoc) gtk_combo_box_set_active (GTK_COMBO_BOX (widget), 0); gtk_widget_hide (widget); widget = GTK_WIDGET (gtk_builder_get_object (parent->builder, "auth_method_label")); gtk_widget_hide (widget); } return sec; } cinnamon-control-center-6.2.0/panels/network/wireless-security/ws-wpa-psk.ui0000664000175000017500000001136514632072346026243 0ustar fabiofabio True False False False True False 3 2 6 6 True False 1 _Password True wpa_psk_entry GTK_FILL True True 64 False True 1 2 True False 1 _Type True wpa_psk_type_combo 2 3 GTK_FILL True False 0 1 2 GTK_FILL Sho_w password True True False True True 1 2 1 2 GTK_FILL True False 1 2 2 3 GTK_FILL True False False cinnamon-control-center-6.2.0/panels/network/net-device-wifi.h0000664000175000017500000000412614632072346023316 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2011-2012 Richard Hughes * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __NET_DEVICE_WIFI_H #define __NET_DEVICE_WIFI_H #include #include "net-device.h" G_BEGIN_DECLS #define NET_TYPE_DEVICE_WIFI (net_device_wifi_get_type ()) #define NET_DEVICE_WIFI(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), NET_TYPE_DEVICE_WIFI, NetDeviceWifi)) #define NET_DEVICE_WIFI_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), NET_TYPE_DEVICE_WIFI, NetDeviceWifiClass)) #define NET_IS_DEVICE_WIFI(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), NET_TYPE_DEVICE_WIFI)) #define NET_IS_DEVICE_WIFI_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), NET_TYPE_DEVICE_WIFI)) #define NET_DEVICE_WIFI_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), NET_TYPE_DEVICE_WIFI, NetDeviceWifiClass)) typedef struct _NetDeviceWifiPrivate NetDeviceWifiPrivate; typedef struct _NetDeviceWifi NetDeviceWifi; typedef struct _NetDeviceWifiClass NetDeviceWifiClass; struct _NetDeviceWifi { NetDevice parent; NetDeviceWifiPrivate *priv; }; struct _NetDeviceWifiClass { NetDeviceClass parent_class; }; GType net_device_wifi_get_type (void); G_END_DECLS #endif /* __NET_DEVICE_WIFI_H */ cinnamon-control-center-6.2.0/panels/network/net-proxy.c0000664000175000017500000004255114632072346022303 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2011-2012 Richard Hughes * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "config.h" #include #include #include #include "net-proxy.h" #define NET_PROXY_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), NET_TYPE_PROXY, NetProxyPrivate)) struct _NetProxyPrivate { GSettings *settings; GtkBuilder *builder; }; G_DEFINE_TYPE (NetProxy, net_proxy, NET_TYPE_OBJECT) static void check_wpad_warning (NetProxy *proxy) { GtkWidget *widget; gchar *autoconfig_url = NULL; GString *string = NULL; gboolean ret = FALSE; guint mode; string = g_string_new (""); /* check we're using 'Automatic' */ mode = g_settings_get_enum (proxy->priv->settings, "mode"); if (mode != 2) goto out; /* see if the PAC is blank */ autoconfig_url = g_settings_get_string (proxy->priv->settings, "autoconfig-url"); ret = autoconfig_url == NULL || autoconfig_url[0] == '\0'; if (!ret) goto out; g_string_append (string, ""); /* TRANSLATORS: this is when the use leaves the PAC textbox blank */ g_string_append (string, _("Web Proxy Autodiscovery is used when a Configuration URL is not provided.")); g_string_append (string, "\n"); /* TRANSLATORS: WPAD is bad: if you enable it on an untrusted * network, then anyone else on that network can tell your * machine that it should proxy all of your web traffic * through them. */ g_string_append (string, _("This is not recommended for untrusted public networks.")); g_string_append (string, ""); out: widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "label_proxy_warning")); gtk_label_set_markup (GTK_LABEL (widget), string->str); gtk_widget_set_visible (widget, (string->len > 0)); g_free (autoconfig_url); g_string_free (string, TRUE); } static void settings_changed_cb (GSettings *settings, const gchar *key, NetProxy *proxy) { check_wpad_warning (proxy); } static void panel_proxy_mode_combo_setup_widgets (NetProxy *proxy, guint value) { GtkWidget *widget; /* hide or show the PAC text box */ widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "heading_proxy_url")); gtk_widget_set_visible (widget, value == 2); widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "entry_proxy_url")); gtk_widget_set_visible (widget, value == 2); /* hide or show the manual entry text boxes */ widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "heading_proxy_http")); gtk_widget_set_visible (widget, value == 1); widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "entry_proxy_http")); gtk_widget_set_visible (widget, value == 1); widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "spinbutton_proxy_http")); gtk_widget_set_visible (widget, value == 1); widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "heading_proxy_https")); gtk_widget_set_visible (widget, value == 1); widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "entry_proxy_https")); gtk_widget_set_visible (widget, value == 1); widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "spinbutton_proxy_https")); gtk_widget_set_visible (widget, value == 1); widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "heading_proxy_ftp")); gtk_widget_set_visible (widget, value == 1); widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "entry_proxy_ftp")); gtk_widget_set_visible (widget, value == 1); widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "spinbutton_proxy_ftp")); gtk_widget_set_visible (widget, value == 1); widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "heading_proxy_socks")); gtk_widget_set_visible (widget, value == 1); widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "entry_proxy_socks")); gtk_widget_set_visible (widget, value == 1); widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "spinbutton_proxy_socks")); gtk_widget_set_visible (widget, value == 1); widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "heading_proxy_ignore")); gtk_widget_set_visible (widget, value == 1); widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "entry_proxy_ignore")); gtk_widget_set_visible (widget, value == 1); /* perhaps show the wpad warning */ check_wpad_warning (proxy); } static void panel_set_value_for_combo (NetProxy *proxy, GtkComboBox *combo_box, gint value) { gboolean ret; gint value_tmp; GtkTreeIter iter; GtkTreeModel *model; /* get entry */ model = gtk_combo_box_get_model (combo_box); ret = gtk_tree_model_get_iter_first (model, &iter); if (!ret) return; /* try to make the UI match the setting */ do { gtk_tree_model_get (model, &iter, 1, &value_tmp, -1); if (value == value_tmp) { gtk_combo_box_set_active_iter (combo_box, &iter); break; } } while (gtk_tree_model_iter_next (model, &iter)); /* hide or show the correct widgets */ panel_proxy_mode_combo_setup_widgets (proxy, value); } static void panel_proxy_mode_combo_changed_cb (GtkWidget *widget, NetProxy *proxy) { gboolean ret; gint value; GtkTreeIter iter; GtkTreeModel *model; /* no selection */ ret = gtk_combo_box_get_active_iter (GTK_COMBO_BOX (widget), &iter); if (!ret) return; /* get entry */ model = gtk_combo_box_get_model (GTK_COMBO_BOX (widget)); gtk_tree_model_get (model, &iter, 1, &value, -1); /* set */ g_settings_set_enum (proxy->priv->settings, "mode", value); /* hide or show the correct widgets */ panel_proxy_mode_combo_setup_widgets (proxy, value); } static GtkWidget * net_proxy_add_to_notebook (NetObject *object, GtkNotebook *notebook, GtkSizeGroup *heading_size_group) { GtkWidget *widget; NetProxy *proxy = NET_PROXY (object); /* add widgets to size group */ widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "heading_proxy_method")); gtk_size_group_add_widget (heading_size_group, widget); widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "grid5")); gtk_notebook_append_page (notebook, widget, NULL); return widget; } static void net_proxy_finalize (GObject *object) { NetProxy *proxy = NET_PROXY (object); NetProxyPrivate *priv = proxy->priv; g_clear_object (&priv->settings); g_clear_object (&priv->builder); G_OBJECT_CLASS (net_proxy_parent_class)->finalize (object); } static void net_proxy_class_init (NetProxyClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); NetObjectClass *parent_class = NET_OBJECT_CLASS (klass); object_class->finalize = net_proxy_finalize; parent_class->add_to_notebook = net_proxy_add_to_notebook; g_type_class_add_private (klass, sizeof (NetProxyPrivate)); } static gboolean get_ignore_hosts (GValue *value, GVariant *variant, gpointer user_data) { GVariantIter iter; const gchar *s; gchar **av, **p; gsize n; n = g_variant_iter_init (&iter, variant); p = av = g_new0 (gchar *, n + 1); while (g_variant_iter_next (&iter, "&s", &s)) if (s[0] != '\0') { *p = (gchar *) s; ++p; } g_value_take_string (value, g_strjoinv (", ", av)); g_free (av); return TRUE; } static GVariant * set_ignore_hosts (const GValue *value, const GVariantType *expected_type, gpointer user_data) { GVariantBuilder builder; const gchar *sv; gchar **av, **p; sv = g_value_get_string (value); av = g_strsplit_set (sv, ", ", 0); g_variant_builder_init (&builder, G_VARIANT_TYPE_STRING_ARRAY); for (p = av; *p; ++p) { if (*p[0] != '\0') g_variant_builder_add (&builder, "s", *p); } g_strfreev (av); return g_variant_builder_end (&builder); } static void net_proxy_init (NetProxy *proxy) { GError *error = NULL; gint value; GSettings *settings_tmp; GtkAdjustment *adjustment; GtkWidget *widget; proxy->priv = NET_PROXY_GET_PRIVATE (proxy); proxy->priv->builder = gtk_builder_new (); gtk_builder_add_from_resource (proxy->priv->builder, "/org/cinnamon/control-center/network/network-proxy.ui", &error); if (error != NULL) { g_warning ("Could not load interface file: %s", error->message); g_error_free (error); return; } proxy->priv->settings = g_settings_new ("org.gnome.system.proxy"); g_signal_connect (proxy->priv->settings, "changed", G_CALLBACK (settings_changed_cb), proxy); /* actions */ value = g_settings_get_enum (proxy->priv->settings, "mode"); widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "combobox_proxy_mode")); panel_set_value_for_combo (proxy, GTK_COMBO_BOX (widget), value); g_signal_connect (widget, "changed", G_CALLBACK (panel_proxy_mode_combo_changed_cb), proxy); /* bind the proxy values */ widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "entry_proxy_url")); g_settings_bind (proxy->priv->settings, "autoconfig-url", widget, "text", G_SETTINGS_BIND_DEFAULT); /* bind the HTTP proxy values */ settings_tmp = g_settings_get_child (proxy->priv->settings, "http"); widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "entry_proxy_http")); g_settings_bind (settings_tmp, "host", widget, "text", G_SETTINGS_BIND_DEFAULT); adjustment = GTK_ADJUSTMENT (gtk_builder_get_object (proxy->priv->builder, "adjustment_proxy_port_http")); g_settings_bind (settings_tmp, "port", adjustment, "value", G_SETTINGS_BIND_DEFAULT); g_object_unref (settings_tmp); /* bind the HTTPS proxy values */ settings_tmp = g_settings_get_child (proxy->priv->settings, "https"); widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "entry_proxy_https")); g_settings_bind (settings_tmp, "host", widget, "text", G_SETTINGS_BIND_DEFAULT); adjustment = GTK_ADJUSTMENT (gtk_builder_get_object (proxy->priv->builder, "adjustment_proxy_port_https")); g_settings_bind (settings_tmp, "port", adjustment, "value", G_SETTINGS_BIND_DEFAULT); g_object_unref (settings_tmp); /* bind the FTP proxy values */ settings_tmp = g_settings_get_child (proxy->priv->settings, "ftp"); widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "entry_proxy_ftp")); g_settings_bind (settings_tmp, "host", widget, "text", G_SETTINGS_BIND_DEFAULT); adjustment = GTK_ADJUSTMENT (gtk_builder_get_object (proxy->priv->builder, "adjustment_proxy_port_ftp")); g_settings_bind (settings_tmp, "port", adjustment, "value", G_SETTINGS_BIND_DEFAULT); g_object_unref (settings_tmp); /* bind the SOCKS proxy values */ settings_tmp = g_settings_get_child (proxy->priv->settings, "socks"); widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "entry_proxy_socks")); g_settings_bind (settings_tmp, "host", widget, "text", G_SETTINGS_BIND_DEFAULT); adjustment = GTK_ADJUSTMENT (gtk_builder_get_object (proxy->priv->builder, "adjustment_proxy_port_socks")); g_settings_bind (settings_tmp, "port", adjustment, "value", G_SETTINGS_BIND_DEFAULT); g_object_unref (settings_tmp); /* set header to something sane */ widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "image_proxy_device")); gtk_image_set_from_icon_name (GTK_IMAGE (widget), "preferences-system-network", GTK_ICON_SIZE_DIALOG); widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "label_proxy_device")); gtk_label_set_label (GTK_LABEL (widget), _("Proxy")); widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "label_proxy_status")); gtk_label_set_label (GTK_LABEL (widget), ""); /* bind the proxy ignore hosts */ widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "entry_proxy_ignore")); g_settings_bind_with_mapping (proxy->priv->settings, "ignore-hosts", widget, "text", G_SETTINGS_BIND_DEFAULT, get_ignore_hosts, set_ignore_hosts, NULL, NULL); /* hide the switch until we get some more detail in the mockup */ widget = GTK_WIDGET (gtk_builder_get_object (proxy->priv->builder, "device_proxy_off_switch")); if (widget != NULL) gtk_widget_hide (widget); } NetProxy * net_proxy_new (void) { NetProxy *proxy; proxy = g_object_new (NET_TYPE_PROXY, "removable", FALSE, "id", "proxy", NULL); return NET_PROXY (proxy); } cinnamon-control-center-6.2.0/panels/network/net-device-ethernet.h0000664000175000017500000000453014632072346024175 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2012 Red Hat, Inc. * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __NET_DEVICE_ETHERNET_H #define __NET_DEVICE_ETHERNET_H #include #include "net-device-simple.h" G_BEGIN_DECLS #define NET_TYPE_DEVICE_ETHERNET (net_device_ethernet_get_type ()) #define NET_DEVICE_ETHERNET(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), NET_TYPE_DEVICE_ETHERNET, NetDeviceEthernet)) #define NET_DEVICE_ETHERNET_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), NET_TYPE_DEVICE_ETHERNET, NetDeviceEthernetClass)) #define NET_IS_DEVICE_ETHERNET(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), NET_TYPE_DEVICE_ETHERNET)) #define NET_IS_DEVICE_ETHERNET_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), NET_TYPE_DEVICE_ETHERNET)) #define NET_DEVICE_ETHERNET_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), NET_TYPE_DEVICE_ETHERNET, NetDeviceEthernetClass)) typedef struct _NetDeviceEthernetPrivate NetDeviceEthernetPrivate; typedef struct _NetDeviceEthernet NetDeviceEthernet; typedef struct _NetDeviceEthernetClass NetDeviceEthernetClass; struct _NetDeviceEthernet { NetDeviceSimple parent; GtkBuilder *builder; GtkWidget *list; GtkWidget *scrolled_window; GtkWidget *details; GtkWidget *details_button; GtkWidget *add_profile_button; gboolean updating_device; GHashTable *connections; }; struct _NetDeviceEthernetClass { NetDeviceSimpleClass parent_class; }; GType net_device_ethernet_get_type (void); G_END_DECLS #endif /* __NET_DEVICE_ETHERNET_H */ cinnamon-control-center-6.2.0/panels/network/net-device-wifi.c0000664000175000017500000024436514632072346023324 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2011-2012 Richard Hughes * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "config.h" #include #include #include #include #include #include "shell/list-box-helper.h" #include "shell/hostname-helper.h" #include "network-dialogs.h" #include "panel-common.h" #include "connection-editor/net-connection-editor.h" #include "net-device-wifi.h" #define NET_DEVICE_WIFI_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), NET_TYPE_DEVICE_WIFI, NetDeviceWifiPrivate)) typedef enum { NM_AP_SEC_UNKNOWN, NM_AP_SEC_NONE, NM_AP_SEC_WEP, NM_AP_SEC_WPA, NM_AP_SEC_WPA2 } NMAccessPointSecurity; static void nm_device_wifi_refresh_ui (NetDeviceWifi *device_wifi); static void show_wifi_list (NetDeviceWifi *device_wifi); static void populate_ap_list (NetDeviceWifi *device_wifi); static void show_hotspot_ui (NetDeviceWifi *device_wifi); struct _NetDeviceWifiPrivate { GtkBuilder *builder; GtkWidget *details_dialog; GtkWidget *hotspot_dialog; GtkSwitch *hotspot_switch; gboolean updating_device; gchar *selected_ssid_title; gchar *selected_connection_id; gchar *selected_ap_id; }; G_DEFINE_TYPE (NetDeviceWifi, net_device_wifi, NET_TYPE_DEVICE) enum { COLUMN_CONNECTION_ID, COLUMN_ACCESS_POINT_ID, COLUMN_TITLE, COLUMN_SORT, COLUMN_STRENGTH, COLUMN_MODE, COLUMN_SECURITY, COLUMN_ACTIVE, COLUMN_AP_IN_RANGE, COLUMN_AP_OUT_OF_RANGE, COLUMN_AP_IS_SAVED, COLUMN_LAST }; static GtkWidget * device_wifi_proxy_add_to_notebook (NetObject *object, GtkNotebook *notebook, GtkSizeGroup *heading_size_group) { GtkWidget *widget; NetDeviceWifi *device_wifi = NET_DEVICE_WIFI (object); /* add widgets to size group */ widget = GTK_WIDGET (gtk_builder_get_object (device_wifi->priv->builder, "heading_ipv4")); gtk_size_group_add_widget (heading_size_group, widget); widget = GTK_WIDGET (gtk_builder_get_object (device_wifi->priv->builder, "notebook_view")); gtk_notebook_append_page (notebook, widget, NULL); return widget; } static guint get_access_point_security (NMAccessPoint *ap) { NM80211ApFlags flags; NM80211ApSecurityFlags wpa_flags; NM80211ApSecurityFlags rsn_flags; guint type; flags = nm_access_point_get_flags (ap); wpa_flags = nm_access_point_get_wpa_flags (ap); rsn_flags = nm_access_point_get_rsn_flags (ap); if (!(flags & NM_802_11_AP_FLAGS_PRIVACY) && wpa_flags == NM_802_11_AP_SEC_NONE && rsn_flags == NM_802_11_AP_SEC_NONE) type = NM_AP_SEC_NONE; else if ((flags & NM_802_11_AP_FLAGS_PRIVACY) && wpa_flags == NM_802_11_AP_SEC_NONE && rsn_flags == NM_802_11_AP_SEC_NONE) type = NM_AP_SEC_WEP; else if (!(flags & NM_802_11_AP_FLAGS_PRIVACY) && wpa_flags != NM_802_11_AP_SEC_NONE && rsn_flags != NM_802_11_AP_SEC_NONE) type = NM_AP_SEC_WPA; else type = NM_AP_SEC_WPA2; return type; } static GPtrArray * panel_get_strongest_unique_aps (const GPtrArray *aps) { GBytes *ssid, *ssid_tmp; GPtrArray *aps_unique = NULL; gboolean add_ap; guint i; guint j; NMAccessPoint *ap; NMAccessPoint *ap_tmp; /* we will have multiple entries for typical hotspots, just * filter to the one with the strongest signal */ aps_unique = g_ptr_array_new_with_free_func ((GDestroyNotify) g_object_unref); if (aps != NULL) for (i = 0; i < aps->len; i++) { ap = NM_ACCESS_POINT (g_ptr_array_index (aps, i)); /* Hidden SSIDs don't get shown in the list */ ssid = nm_access_point_get_ssid (ap); if (!ssid) continue; add_ap = TRUE; /* get already added list */ for (j=0; jlen; j++) { ap_tmp = NM_ACCESS_POINT (g_ptr_array_index (aps_unique, j)); ssid_tmp = nm_access_point_get_ssid (ap_tmp); g_assert (ssid_tmp); /* is this the same type and data? */ if (nm_utils_same_ssid (g_bytes_get_data (ssid, NULL), g_bytes_get_size (ssid), g_bytes_get_data (ssid_tmp, NULL), g_bytes_get_size (ssid_tmp), TRUE)) { g_debug ("found duplicate: %s", nm_utils_escape_ssid (g_bytes_get_data (ssid_tmp, NULL), g_bytes_get_size (ssid_tmp))); /* the new access point is stronger */ if (nm_access_point_get_strength (ap) > nm_access_point_get_strength (ap_tmp)) { g_debug ("removing %s", nm_utils_escape_ssid (g_bytes_get_data (ssid_tmp, NULL), g_bytes_get_size (ssid_tmp))); g_ptr_array_remove (aps_unique, ap_tmp); add_ap = TRUE; } else { add_ap = FALSE; } break; } } if (add_ap) { g_debug ("adding %s", nm_utils_escape_ssid (g_bytes_get_data (ssid, NULL), g_bytes_get_size (ssid))); g_ptr_array_add (aps_unique, g_object_ref (ap)); } } return aps_unique; } static gchar * get_ap_security_string (NMAccessPoint *ap) { NM80211ApSecurityFlags wpa_flags, rsn_flags; NM80211ApFlags flags; GString *str; flags = nm_access_point_get_flags (ap); wpa_flags = nm_access_point_get_wpa_flags (ap); rsn_flags = nm_access_point_get_rsn_flags (ap); str = g_string_new (""); if ((flags & NM_802_11_AP_FLAGS_PRIVACY) && (wpa_flags == NM_802_11_AP_SEC_NONE) && (rsn_flags == NM_802_11_AP_SEC_NONE)) { /* TRANSLATORS: this WEP WiFi security */ g_string_append_printf (str, "%s, ", _("WEP")); } if (wpa_flags != NM_802_11_AP_SEC_NONE) { /* TRANSLATORS: this WPA WiFi security */ g_string_append_printf (str, "%s, ", _("WPA")); } if (rsn_flags != NM_802_11_AP_SEC_NONE) { /* TRANSLATORS: this WPA WiFi security */ g_string_append_printf (str, "%s, ", _("WPA2")); } if ((wpa_flags & NM_802_11_AP_SEC_KEY_MGMT_802_1X) || (rsn_flags & NM_802_11_AP_SEC_KEY_MGMT_802_1X)) { /* TRANSLATORS: this Enterprise WiFi security */ g_string_append_printf (str, "%s, ", _("Enterprise")); } if (str->len > 0) g_string_set_size (str, str->len - 2); else { g_string_append (str, C_("Wifi security", "None")); } return g_string_free (str, FALSE); } static void net_device_wifi_access_point_changed (NMDeviceWifi *nm_device_wifi, NMAccessPoint *ap, gpointer user_data) { NetDeviceWifi *device_wifi; device_wifi = NET_DEVICE_WIFI (user_data); populate_ap_list (device_wifi); } static void wireless_enabled_toggled (NMClient *client, GParamSpec *pspec, NetDeviceWifi *device_wifi) { gboolean enabled; GtkSwitch *sw; NMDevice *device; device = net_device_get_nm_device (NET_DEVICE (device_wifi)); if (nm_device_get_device_type (device) != NM_DEVICE_TYPE_WIFI) return; enabled = nm_client_wireless_get_enabled (client); sw = GTK_SWITCH (gtk_builder_get_object (device_wifi->priv->builder, "device_off_switch")); device_wifi->priv->updating_device = TRUE; gtk_switch_set_active (sw, enabled); device_wifi->priv->updating_device = FALSE; } static NMConnection * find_connection_for_device (NetDeviceWifi *device_wifi, NMDevice *device) { NetDevice *tmp; NMConnection *connection; NMClient *client; client = net_object_get_client (NET_OBJECT (device_wifi)); tmp = g_object_new (NET_TYPE_DEVICE, "client", client, "nm-device", device, NULL); connection = net_device_get_find_connection (tmp); g_object_unref (tmp); return connection; } static gboolean connection_is_shared (NMConnection *c) { NMSettingIPConfig *s_ip4; s_ip4 = nm_connection_get_setting_ip4_config (c); if (g_strcmp0 (nm_setting_ip_config_get_method (s_ip4), NM_SETTING_IP4_CONFIG_METHOD_SHARED) != 0) { return FALSE; } return TRUE; } static gboolean device_is_hotspot (NetDeviceWifi *device_wifi) { NMConnection *c; NMDevice *device; device = net_device_get_nm_device (NET_DEVICE (device_wifi)); if (nm_device_get_active_connection (device) == NULL) return FALSE; c = find_connection_for_device (device_wifi, device); if (c == NULL) return FALSE; return connection_is_shared (c); } static GBytes * device_get_hotspot_ssid (NetDeviceWifi *device_wifi, NMDevice *device) { NMConnection *c; NMSettingWireless *sw; c = find_connection_for_device (device_wifi, device); if (c == NULL) { return FALSE; } sw = nm_connection_get_setting_wireless (c); return nm_setting_wireless_get_ssid (sw); } static void get_secrets_cb (GObject *source_object, GAsyncResult *res, gpointer data) { NetDeviceWifi *device_wifi = data; GVariant *secrets; GError *error = NULL; secrets = nm_remote_connection_get_secrets_finish (NM_REMOTE_CONNECTION (source_object), res, &error); if (!secrets) { if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) g_warning ("Could not get secrets: %s", error->message); g_error_free (error); //FIXME ignore cancelled return; } nm_connection_update_secrets (NM_CONNECTION (source_object), NM_SETTING_WIRELESS_SECURITY_SETTING_NAME, secrets, NULL); nm_device_wifi_refresh_ui (device_wifi); } static void device_get_hotspot_security_details (NetDeviceWifi *device_wifi, NMDevice *device, gchar **secret, gchar **security) { NMConnection *c; NMSettingWirelessSecurity *sws; const gchar *key_mgmt; const gchar *tmp_secret; const gchar *tmp_security; c = find_connection_for_device (device_wifi, device); if (c == NULL) return; sws = nm_connection_get_setting_wireless_security (c); if (sws == NULL) return; tmp_secret = NULL; tmp_security = C_("Wifi security", "None"); /* Key management values: * "none" = WEP * "wpa-none" = WPAv1 Ad-Hoc mode (not supported in NM >= 0.9.4) * "wpa-psk" = WPAv2 Ad-Hoc mode (eg IBSS RSN) and AP-mode WPA v1 and v2 */ key_mgmt = nm_setting_wireless_security_get_key_mgmt (sws); if (strcmp (key_mgmt, "none") == 0) { tmp_secret = nm_setting_wireless_security_get_wep_key (sws, 0); tmp_security = _("WEP"); } else if (strcmp (key_mgmt, "wpa-none") == 0 || strcmp (key_mgmt, "wpa-psk") == 0) { tmp_secret = nm_setting_wireless_security_get_psk (sws); tmp_security = _("WPA"); } else { g_warning ("unhandled security key-mgmt: %s", key_mgmt); } /* If we don't have secrets, request them from NM and bail. * We'll refresh the UI when secrets arrive. */ if (tmp_secret == NULL) { nm_remote_connection_get_secrets_async ((NMRemoteConnection*)c, NM_SETTING_WIRELESS_SECURITY_SETTING_NAME, NULL, get_secrets_cb, device_wifi); return; } if (secret) *secret = g_strdup (tmp_secret); if (security) *security = g_strdup (tmp_security); } static void nm_device_wifi_refresh_hotspot (NetDeviceWifi *device_wifi) { GBytes *ssid; gchar *hotspot_secret = NULL; gchar *hotspot_security = NULL; gchar *hotspot_ssid = NULL; NMDevice *nm_device; /* refresh hotspot ui */ nm_device = net_device_get_nm_device (NET_DEVICE (device_wifi)); ssid = device_get_hotspot_ssid (device_wifi, nm_device); if (ssid) hotspot_ssid = nm_utils_ssid_to_utf8 (g_bytes_get_data (ssid, NULL), g_bytes_get_size (ssid)); device_get_hotspot_security_details (device_wifi, nm_device, &hotspot_secret, &hotspot_security); g_debug ("Refreshing hotspot labels to name: '%s', security key: '%s', security: '%s'", hotspot_ssid, hotspot_secret, hotspot_security); panel_set_device_widget_details (device_wifi->priv->builder, "hotspot_network_name", hotspot_ssid); panel_set_device_widget_details (device_wifi->priv->builder, "hotspot_security_key", hotspot_secret); panel_set_device_widget_details (device_wifi->priv->builder, "hotspot_security", hotspot_security); panel_set_device_widget_details (device_wifi->priv->builder, "hotspot_connected", NULL); g_free (hotspot_secret); g_free (hotspot_security); g_free (hotspot_ssid); } static void update_last_used (NetDeviceWifi *device_wifi, NMConnection *connection) { gchar *last_used = NULL; GDateTime *now = NULL; GDateTime *then = NULL; gint days; GTimeSpan diff; guint64 timestamp; NMSettingConnection *s_con; s_con = nm_connection_get_setting_connection (connection); if (s_con == NULL) goto out; timestamp = nm_setting_connection_get_timestamp (s_con); if (timestamp == 0) { last_used = g_strdup (_("never")); goto out; } /* calculate the amount of time that has elapsed */ now = g_date_time_new_now_utc (); then = g_date_time_new_from_unix_utc (timestamp); diff = g_date_time_difference (now, then); days = diff / G_TIME_SPAN_DAY; if (days == 0) last_used = g_strdup (_("today")); else if (days == 1) last_used = g_strdup (_("yesterday")); else last_used = g_strdup_printf (ngettext ("%i day ago", "%i days ago", days), days); out: panel_set_device_widget_details (device_wifi->priv->builder, "last_used", last_used); if (now != NULL) g_date_time_unref (now); if (then != NULL) g_date_time_unref (then); g_free (last_used); } static void nm_device_wifi_refresh_ui (NetDeviceWifi *device_wifi) { const gchar *str; gboolean is_hotspot; gchar *str_tmp = NULL; gint strength = 0; guint speed = 0; NMAccessPoint *active_ap; NMDevice *nm_device; NMDeviceState state; NMClient *client; NMAccessPoint *ap; NMConnection *connection; NetDeviceWifiPrivate *priv = device_wifi->priv; GtkWidget *dialog; is_hotspot = device_is_hotspot (device_wifi); if (is_hotspot) { nm_device_wifi_refresh_hotspot (device_wifi); show_hotspot_ui (device_wifi); return; } nm_device = net_device_get_nm_device (NET_DEVICE (device_wifi)); dialog = device_wifi->priv->details_dialog; ap = g_object_get_data (G_OBJECT (dialog), "ap"); connection = g_object_get_data (G_OBJECT (dialog), "connection"); active_ap = nm_device_wifi_get_active_access_point (NM_DEVICE_WIFI (nm_device)); state = nm_device_get_state (nm_device); /* keep this in sync with the signal handler setup in cc_network_panel_init */ client = net_object_get_client (NET_OBJECT (device_wifi)); wireless_enabled_toggled (client, NULL, device_wifi); if (ap != active_ap) speed = 0; else if (state != NM_DEVICE_STATE_UNAVAILABLE) speed = nm_device_wifi_get_bitrate (NM_DEVICE_WIFI (nm_device)); speed /= 1000; if (speed > 0) { /* Translators: network device speed */ str_tmp = g_strdup_printf (_("%d Mb/s"), speed); } panel_set_device_widget_details (device_wifi->priv->builder, "speed", str_tmp); /* device MAC */ str = nm_device_wifi_get_hw_address (NM_DEVICE_WIFI (nm_device)); panel_set_device_widget_details (device_wifi->priv->builder, "mac", str); /* security */ if (ap != active_ap) str_tmp = NULL; else if (active_ap != NULL) str_tmp = get_ap_security_string (active_ap); panel_set_device_widget_details (device_wifi->priv->builder, "security", str_tmp); g_free (str_tmp); /* signal strength */ if (ap != NULL) strength = nm_access_point_get_strength (ap); else strength = 0; if (strength <= 0) str = NULL; else if (strength < 20) str = C_("Signal strength", "None"); else if (strength < 40) str = C_("Signal strength", "Weak"); else if (strength < 50) str = C_("Signal strength", "Ok"); else if (strength < 80) str = C_("Signal strength", "Good"); else str = C_("Signal strength", "Excellent"); panel_set_device_widget_details (device_wifi->priv->builder, "strength", str); /* device MAC */ if (ap != active_ap) str = NULL; else str = nm_device_wifi_get_hw_address (NM_DEVICE_WIFI (nm_device)); panel_set_device_widget_details (priv->builder, "mac", str); /* set IP entries */ if (ap != active_ap) panel_unset_device_widgets (priv->builder); else panel_set_device_widgets (priv->builder, nm_device); if (ap != active_ap && connection) update_last_used (device_wifi, connection); else panel_set_device_widget_details (priv->builder, "last_used", NULL); panel_set_device_status (priv->builder, "heading_status", nm_device, NULL); /* update list of APs */ show_wifi_list (device_wifi); populate_ap_list (device_wifi); } static void device_wifi_refresh (NetObject *object) { NetDeviceWifi *device_wifi = NET_DEVICE_WIFI (object); nm_device_wifi_refresh_ui (device_wifi); } static void device_off_toggled (GtkSwitch *sw, GParamSpec *pspec, NetDeviceWifi *device_wifi) { NMClient *client; gboolean active; if (device_wifi->priv->updating_device) return; client = net_object_get_client (NET_OBJECT (device_wifi)); active = gtk_switch_get_active (sw); nm_client_wireless_set_enabled (client, active); } static void connect_to_hidden_network (NetDeviceWifi *device_wifi) { NMClient *client; GList *windows = gtk_window_list_toplevels (); GtkWidget *toplevel = GTK_WIDGET (windows->data); client = net_object_get_client (NET_OBJECT (device_wifi)); cc_network_panel_connect_to_hidden_network (toplevel, client); g_list_free (windows); } static void connection_add_activate_cb (GObject *source_object, GAsyncResult *res, gpointer user_data) { NMActiveConnection *conn; GError *error = NULL; conn = nm_client_add_and_activate_connection_finish (NM_CLIENT (source_object), res, &error); if (!conn) { //FIXME cancelled nm_device_wifi_refresh_ui (user_data); /* failed to activate */ g_debug ("Failed to add and activate connection '%d': %s", error->code, error->message); g_error_free (error); return; } } static void connection_activate_cb (GObject *source_object, GAsyncResult *res, gpointer user_data) { GError *error = NULL; if (!nm_client_activate_connection_finish (NM_CLIENT (source_object), res, &error)) { //FIXME cancelled nm_device_wifi_refresh_ui (user_data); /* failed to activate */ g_debug ("Failed to add and activate connection '%d': %s", error->code, error->message); g_error_free (error); return; } } static gboolean is_8021x (NMDevice *device, const char *ap_object_path) { NM80211ApSecurityFlags wpa_flags, rsn_flags; NMAccessPoint *ap; ap = nm_device_wifi_get_access_point_by_path (NM_DEVICE_WIFI (device), ap_object_path); if (!ap) return FALSE; rsn_flags = nm_access_point_get_rsn_flags (ap); if (rsn_flags & NM_802_11_AP_SEC_KEY_MGMT_802_1X) return TRUE; wpa_flags = nm_access_point_get_wpa_flags (ap); if (wpa_flags & NM_802_11_AP_SEC_KEY_MGMT_802_1X) return TRUE; return FALSE; } static void wireless_try_to_connect (NetDeviceWifi *device_wifi, GBytes *ssid, const gchar *ap_object_path) { GBytes *match_ssid; const gchar *ssid_target; GSList *list, *l; NMConnection *connection_activate = NULL; NMDevice *device; NMSettingWireless *setting_wireless; NMClient *client; if (device_wifi->priv->updating_device) goto out; if (ap_object_path == NULL || ap_object_path[0] == 0) goto out; device = net_device_get_nm_device (NET_DEVICE (device_wifi)); if (device == NULL) goto out; ssid_target = nm_utils_escape_ssid ((gpointer) g_bytes_get_data (ssid, NULL), g_bytes_get_size (ssid)); g_debug ("try to connect to WIFI network %s [%s]", ssid_target, ap_object_path); /* look for an existing connection we can use */ list = net_device_get_valid_connections (NET_DEVICE (device_wifi)); g_debug ("%i suitable remote connections to check", g_slist_length (list)); for (l = list; l; l = g_slist_next (l)) { NMConnection *connection; connection = NM_CONNECTION (l->data); setting_wireless = nm_connection_get_setting_wireless (connection); if (!NM_IS_SETTING_WIRELESS (setting_wireless)) continue; match_ssid = nm_setting_wireless_get_ssid (setting_wireless); if (match_ssid == NULL) continue; if (g_bytes_equal (ssid, match_ssid)) { g_debug ("we found an existing connection %s to activate!", nm_connection_get_id (connection)); connection_activate = connection; break; } } g_slist_free (list); /* activate the connection */ client = net_object_get_client (NET_OBJECT (device_wifi)); if (connection_activate != NULL) { nm_client_activate_connection_async (client, connection_activate, device, NULL, NULL, connection_activate_cb, device_wifi); goto out; } /* create one, as it's missing */ g_debug ("no existing connection found for %s, creating", ssid_target); if (!is_8021x (device, ap_object_path)) { GPermission *permission; gboolean allowed_to_share = FALSE; NMConnection *partial = NULL; permission = polkit_permission_new_sync ("org.freedesktop.NetworkManager.settings.modify.system", NULL, NULL, NULL); if (permission) { allowed_to_share = g_permission_get_allowed (permission); g_object_unref (permission); } if (!allowed_to_share) { NMSettingConnection *s_con; s_con = (NMSettingConnection *)nm_setting_connection_new (); nm_setting_connection_add_permission (s_con, "user", g_get_user_name (), NULL); partial = nm_simple_connection_new (); nm_connection_add_setting (partial, NM_SETTING (s_con)); } g_debug ("no existing connection found for %s, creating and activating one", ssid_target); nm_client_add_and_activate_connection_async (client, partial, device, ap_object_path, NULL, connection_add_activate_cb, device_wifi); if (!allowed_to_share) g_object_unref (partial); } else { CcNetworkPanel *panel; GVariantBuilder *builder; GVariant *parameters; g_debug ("no existing connection found for %s, creating", ssid_target); builder = g_variant_builder_new (G_VARIANT_TYPE ("av")); g_variant_builder_add (builder, "v", g_variant_new_string ("connect-8021x-wifi")); g_variant_builder_add (builder, "v", g_variant_new_string (nm_object_get_path (NM_OBJECT (device)))); g_variant_builder_add (builder, "v", g_variant_new_string (ap_object_path)); parameters = g_variant_new ("av", builder); panel = net_object_get_panel (NET_OBJECT (device_wifi)); g_object_set (G_OBJECT (panel), "parameters", parameters, NULL); g_variant_builder_unref (builder); } out: return; } static gchar * get_hostname (void) { GDBusConnection *bus; GVariant *res; GVariant *inner; gchar *str; GError *error; error = NULL; bus = g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, &error); if (bus == NULL) { g_warning ("Failed to get system bus connection: %s", error->message); g_error_free (error); return NULL; } res = g_dbus_connection_call_sync (bus, "org.freedesktop.hostname1", "/org/freedesktop/hostname1", "org.freedesktop.DBus.Properties", "Get", g_variant_new ("(ss)", "org.freedesktop.hostname1", "PrettyHostname"), (GVariantType*)"(v)", G_DBUS_CALL_FLAGS_NONE, -1, NULL, &error); g_object_unref (bus); if (res == NULL) { g_warning ("Getting pretty hostname failed: %s", error->message); g_error_free (error); } str = NULL; if (res != NULL) { g_variant_get (res, "(v)", &inner); str = g_variant_dup_string (inner, NULL); g_variant_unref (res); } return str; } static GBytes * generate_ssid_for_hotspot (NetDeviceWifi *device_wifi) { GBytes *ssid_bytes; gchar *hostname, *ssid; hostname = get_hostname (); ssid = pretty_hostname_to_ssid (hostname); g_free (hostname); ssid_bytes = g_bytes_new_with_free_func (ssid, strlen (ssid), g_free, NULL); return ssid_bytes; } #define WPA_PASSKEY_SIZE 8 static void set_wpa_key (NMSettingWirelessSecurity *sws) { /* generate a 8-chars ASCII WPA key */ char key[WPA_PASSKEY_SIZE + 1]; guint i; for (i = 0; i < WPA_PASSKEY_SIZE; i++) { gint c; c = g_random_int_range (33, 126); /* too many non alphanumeric characters are hard to remember for humans */ while (!g_ascii_isalnum (c)) c = g_random_int_range (33, 126); key[i] = (gchar) c; } key[WPA_PASSKEY_SIZE] = '\0'; g_object_set (sws, "key-mgmt", "wpa-psk", "psk", key, NULL); } static void set_wep_key (NMSettingWirelessSecurity *sws) { gchar key[11]; gint i; const gchar *hexdigits = "0123456789abcdef"; /* generate a 10-digit hex WEP key */ for (i = 0; i < 10; i++) { gint digit; digit = g_random_int_range (0, 16); key[i] = hexdigits[digit]; } key[10] = 0; g_object_set (sws, "key-mgmt", "none", "wep-key0", key, "wep-key-type", NM_WEP_KEY_TYPE_KEY, NULL); } static gboolean is_hotspot_connection (NMConnection *connection) { NMSettingConnection *sc; NMSettingWireless *sw; NMSettingIPConfig *sip; NMSetting *setting; sc = nm_connection_get_setting_connection (connection); if (g_strcmp0 (nm_setting_connection_get_connection_type (sc), "802-11-wireless") != 0) { return FALSE; } sw = nm_connection_get_setting_wireless (connection); if (g_strcmp0 (nm_setting_wireless_get_mode (sw), "adhoc") != 0 && g_strcmp0 (nm_setting_wireless_get_mode (sw), "ap") != 0) { return FALSE; } setting = nm_connection_get_setting_by_name (connection, NM_SETTING_WIRELESS_SETTING_NAME); if (!setting) return FALSE; sip = nm_connection_get_setting_ip4_config (connection); if (g_strcmp0 (nm_setting_ip_config_get_method (sip), "shared") != 0) { return FALSE; } return TRUE; } static void show_hotspot_ui (NetDeviceWifi *device_wifi) { GtkWidget *widget; /* show hotspot tab */ widget = GTK_WIDGET (gtk_builder_get_object (device_wifi->priv->builder, "notebook_view")); gtk_notebook_set_current_page (GTK_NOTEBOOK (widget), 1); /* force switch to on as this succeeded */ device_wifi->priv->updating_device = TRUE; gtk_switch_set_active (device_wifi->priv->hotspot_switch, TRUE); device_wifi->priv->updating_device = FALSE; } static void activate_cb (GObject *source_object, GAsyncResult *res, gpointer user_data) { GError *error = NULL; if (nm_client_activate_connection_finish (NM_CLIENT (source_object), res, &error) == NULL) { g_warning ("Failed to add new connection: (%d) %s", error->code, error->message); g_error_free (error); return; } /* show hotspot tab */ nm_device_wifi_refresh_ui (user_data); } static void activate_new_cb (GObject *source_object, GAsyncResult *res, gpointer user_data) { NMActiveConnection *conn; GError *error = NULL; conn = nm_client_add_and_activate_connection_finish (NM_CLIENT (source_object), res, &error); if (!conn) { g_warning ("Failed to add new connection: (%d) %s", error->code, error->message); g_error_free (error); return; } /* show hotspot tab */ nm_device_wifi_refresh_ui (user_data); } static NMConnection * net_device_wifi_get_hotspot_connection (NetDeviceWifi *device_wifi) { GSList *connections, *l; NMConnection *c = NULL; connections = net_device_get_valid_connections (NET_DEVICE (device_wifi)); for (l = connections; l; l = l->next) { NMConnection *tmp = l->data; if (is_hotspot_connection (tmp)) { c = tmp; break; } } g_slist_free (connections); return c; } static void overwrite_ssid_cb (GObject *source_object, GAsyncResult *res, gpointer user_data) { GError *error = NULL; NMClient *client; NMRemoteConnection *connection; NMDevice *device; NMConnection *c; NetDeviceWifi *device_wifi; connection = NM_REMOTE_CONNECTION (source_object); if (!nm_remote_connection_commit_changes_finish (connection, res, &error)) { if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) g_warning ("Failed to save hotspot's settings to disk: %s", error->message); g_error_free (error); return; } device_wifi = user_data; device = net_device_get_nm_device (NET_DEVICE (device_wifi)); client = net_object_get_client (NET_OBJECT (device_wifi)); c = net_device_wifi_get_hotspot_connection (device_wifi); g_debug ("activate existing hotspot connection\n"); nm_client_activate_connection_async (client, c, device, NULL, NULL, activate_cb, device_wifi); } static void start_shared_connection (NetDeviceWifi *device_wifi) { NMConnection *c; NMSettingConnection *sc; NMSettingWireless *sw; NMSettingIP4Config *sip; NMSettingWirelessSecurity *sws; NMDevice *device; GBytes *ssid; const gchar *str_mac; struct ether_addr *bin_mac; NMClient *client; const char *mode; NMDeviceWifiCapabilities caps; device = net_device_get_nm_device (NET_DEVICE (device_wifi)); g_assert (nm_device_get_device_type (device) == NM_DEVICE_TYPE_WIFI); c = net_device_wifi_get_hotspot_connection (device_wifi); ssid = generate_ssid_for_hotspot (device_wifi); client = net_object_get_client (NET_OBJECT (device_wifi)); if (c != NULL) { NMSettingWireless *sw; const char *c_path; NMRemoteConnection *connection; sw = nm_connection_get_setting_wireless (c); g_object_set (sw, "ssid", ssid, NULL); g_bytes_unref (ssid); c_path = nm_connection_get_path (c); connection = nm_client_get_connection_by_path (client, c_path); g_debug ("overwriting ssid to %s", (char *) g_bytes_get_data (ssid, NULL)); nm_remote_connection_commit_changes_async (connection, TRUE, NULL, overwrite_ssid_cb, device_wifi); return; } g_debug ("create new hotspot connection with SSID '%s'", (char *) g_bytes_get_data (ssid, NULL)); c = nm_simple_connection_new (); sc = (NMSettingConnection *)nm_setting_connection_new (); g_object_set (sc, "type", "802-11-wireless", "id", "Hotspot", "autoconnect", FALSE, NULL); nm_connection_add_setting (c, (NMSetting *)sc); sw = (NMSettingWireless *)nm_setting_wireless_new (); /* Use real AP mode if the device supports it */ caps = nm_device_wifi_get_capabilities (NM_DEVICE_WIFI (device)); if (caps & NM_WIFI_DEVICE_CAP_AP) mode = NM_SETTING_WIRELESS_MODE_AP; else mode = NM_SETTING_WIRELESS_MODE_ADHOC; g_object_set (sw, "mode", mode, NULL); str_mac = nm_device_wifi_get_permanent_hw_address (NM_DEVICE_WIFI (device)); bin_mac = ether_aton (str_mac); if (bin_mac) { GByteArray *hw_address; hw_address = g_byte_array_sized_new (ETH_ALEN); g_byte_array_append (hw_address, bin_mac->ether_addr_octet, ETH_ALEN); g_object_set (sw, "mac-address", hw_address, NULL); g_byte_array_unref (hw_address); } nm_connection_add_setting (c, (NMSetting *)sw); sip = (NMSettingIP4Config*) nm_setting_ip4_config_new (); g_object_set (sip, "method", "shared", NULL); nm_connection_add_setting (c, (NMSetting *)sip); g_object_set (sw, "ssid", ssid, NULL); g_bytes_unref (ssid); sws = (NMSettingWirelessSecurity*) nm_setting_wireless_security_new (); if (g_strcmp0 (mode, NM_SETTING_WIRELESS_MODE_AP) == 0) { if (caps & NM_WIFI_DEVICE_CAP_RSN) { set_wpa_key (sws); nm_setting_wireless_security_add_proto (sws, "rsn"); nm_setting_wireless_security_add_pairwise (sws, "ccmp"); nm_setting_wireless_security_add_group (sws, "ccmp"); } else if (caps & NM_WIFI_DEVICE_CAP_WPA) { set_wpa_key (sws); nm_setting_wireless_security_add_proto (sws, "wpa"); nm_setting_wireless_security_add_pairwise (sws, "tkip"); nm_setting_wireless_security_add_group (sws, "tkip"); } else { set_wep_key (sws); } } else { set_wep_key (sws); } nm_connection_add_setting (c, (NMSetting *)sws); nm_client_add_and_activate_connection_async (client, c, device, NULL, NULL, activate_new_cb, device_wifi); g_object_unref (c); } static void start_hotspot_response_cb (GtkWidget *dialog, gint response, NetDeviceWifi *device_wifi) { if (response == GTK_RESPONSE_OK) { start_shared_connection (device_wifi); } gtk_widget_hide (dialog); } static void start_hotspot (GtkButton *button, NetDeviceWifi *device_wifi) { NMDevice *device; const GPtrArray *connections; gchar *active_ssid; NMClient *client; GtkWidget *dialog; GtkWidget *window; GtkWidget *widget; GString *str; active_ssid = NULL; client = net_object_get_client (NET_OBJECT (device_wifi)); device = net_device_get_nm_device (NET_DEVICE (device_wifi)); connections = nm_client_get_active_connections (client); if (connections) { gint i; for (i = 0; i < connections->len; i++) { NMActiveConnection *c; const GPtrArray *devices; c = (NMActiveConnection *)connections->pdata[i]; devices = nm_active_connection_get_devices (c); if (devices && devices->pdata[0] == device) { NMAccessPoint *ap; GBytes *ssid; ap = nm_device_wifi_get_active_access_point (NM_DEVICE_WIFI (device)); ssid = nm_access_point_get_ssid (ap); active_ssid = nm_utils_ssid_to_utf8 (g_bytes_get_data (ssid, NULL), g_bytes_get_size (ssid)); break; } } } window = gtk_widget_get_toplevel (GTK_WIDGET (button)); dialog = device_wifi->priv->hotspot_dialog; gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (window)); str = g_string_new (_("If you have a connection to the Internet other than wireless, you can set up a wireless hotspot to share the connection with others.")); g_string_append (str, "\n\n"); if (active_ssid) { g_string_append_printf (str, _("Switching on the wireless hotspot will disconnect you from %s."), active_ssid); g_string_append (str, " "); } g_string_append (str, _("It is not possible to access the Internet through your wireless while the hotspot is active.")); widget = GTK_WIDGET (gtk_builder_get_object (device_wifi->priv->builder, "hotspot-dialog-content")); gtk_label_set_markup (GTK_LABEL (widget), str->str); g_string_free (str, TRUE); g_signal_connect (dialog, "response", G_CALLBACK (start_hotspot_response_cb), device_wifi); g_signal_connect (dialog, "delete-event", G_CALLBACK (gtk_widget_hide_on_delete), NULL); gtk_window_present (GTK_WINDOW (dialog)); g_free (active_ssid); } static void stop_shared_connection (NetDeviceWifi *device_wifi) { const GPtrArray *connections; const GPtrArray *devices; NMDevice *device; gint i; NMActiveConnection *c; NMClient *client; gboolean found = FALSE; device = net_device_get_nm_device (NET_DEVICE (device_wifi)); client = net_object_get_client (NET_OBJECT (device_wifi)); connections = nm_client_get_active_connections (client); for (i = 0; connections && i < connections->len; i++) { c = (NMActiveConnection *)connections->pdata[i]; devices = nm_active_connection_get_devices (c); if (devices && devices->pdata[0] == device) { nm_client_deactivate_connection (client, c, NULL, NULL); found = TRUE; break; } } if (!found) { g_warning ("Could not stop hotspot connection as no connection attached to the device could be found."); device_wifi->priv->updating_device = TRUE; gtk_switch_set_active (device_wifi->priv->hotspot_switch, TRUE); device_wifi->priv->updating_device = FALSE; return; } nm_device_wifi_refresh_ui (device_wifi); } static void stop_hotspot_response_cb (GtkWidget *dialog, gint response, NetDeviceWifi *device_wifi) { if (response == GTK_RESPONSE_OK) { stop_shared_connection (device_wifi); } else { device_wifi->priv->updating_device = TRUE; gtk_switch_set_active (device_wifi->priv->hotspot_switch, TRUE); device_wifi->priv->updating_device = FALSE; } gtk_widget_destroy (dialog); } static void switch_hotspot_changed_cb (GtkSwitch *sw, GParamSpec *pspec, NetDeviceWifi *device_wifi) { GtkWidget *dialog; GtkWidget *window; CcNetworkPanel *panel; if (device_wifi->priv->updating_device) return; panel = net_object_get_panel (NET_OBJECT (device_wifi)); window = gtk_widget_get_toplevel (GTK_WIDGET (panel)); dialog = gtk_message_dialog_new (GTK_WINDOW (window), GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_OTHER, GTK_BUTTONS_NONE, _("Stop hotspot and disconnect any users?")); gtk_dialog_add_buttons (GTK_DIALOG (dialog), _("_Cancel"), GTK_RESPONSE_CANCEL, _("_Stop Hotspot"), GTK_RESPONSE_OK, NULL); g_signal_connect (dialog, "response", G_CALLBACK (stop_hotspot_response_cb), device_wifi); gtk_window_present (GTK_WINDOW (dialog)); } static void show_wifi_list (NetDeviceWifi *device_wifi) { GtkWidget *widget; widget = GTK_WIDGET (gtk_builder_get_object (device_wifi->priv->builder, "notebook_view")); gtk_notebook_set_current_page (GTK_NOTEBOOK (widget), 0); } static void client_connection_added_cb (NMClient *client, NMRemoteConnection *connection, NetDeviceWifi *device_wifi) { gboolean is_hotspot; /* go straight to the hotspot UI */ is_hotspot = device_is_hotspot (device_wifi); if (is_hotspot) { nm_device_wifi_refresh_hotspot (device_wifi); show_hotspot_ui (device_wifi); return; } populate_ap_list (device_wifi); show_wifi_list (device_wifi); } static void client_connection_removed_cb (NMClient *client, NMRemoteConnection *connection, NetDeviceWifi *device_wifi) { GtkWidget *swin; GtkWidget *list; GList *rows, *l; const char *uuid; uuid = nm_connection_get_uuid (NM_CONNECTION (connection)); swin = GTK_WIDGET (gtk_builder_get_object (device_wifi->priv->builder, "scrolledwindow_list")); list = gtk_bin_get_child (GTK_BIN (gtk_bin_get_child (GTK_BIN (swin)))); rows = gtk_container_get_children (GTK_CONTAINER (list)); for (l = rows; l != NULL; l = l->next) { GtkWidget *row = l->data; NMConnection *connection; const char *uuid_r; connection = g_object_get_data (G_OBJECT (row), "connection"); if (!connection) continue; uuid_r = nm_connection_get_uuid (connection); if (g_strcmp0 (uuid_r, uuid) == 0) { gtk_widget_destroy (row); break; } } g_list_free (rows); } static void net_device_wifi_constructed (GObject *object) { NetDeviceWifi *device_wifi = NET_DEVICE_WIFI (object); NMClient *client; NMClientPermissionResult perm; NMDevice *nm_device; NMDeviceWifiCapabilities caps; GtkWidget *widget; G_OBJECT_CLASS (net_device_wifi_parent_class)->constructed (object); client = net_object_get_client (NET_OBJECT (device_wifi)); g_signal_connect_object (client, "notify::wireless-enabled", G_CALLBACK (wireless_enabled_toggled), device_wifi, 0); nm_device = net_device_get_nm_device (NET_DEVICE (device_wifi)); g_signal_connect_object (nm_device, "access-point-added", G_CALLBACK (net_device_wifi_access_point_changed), device_wifi, 0); g_signal_connect_object (nm_device, "access-point-removed", G_CALLBACK (net_device_wifi_access_point_changed), device_wifi, 0); /* only enable the button if the user can create a hotspot */ widget = GTK_WIDGET (gtk_builder_get_object (device_wifi->priv->builder, "start_hotspot_button")); perm = nm_client_get_permission_result (client, NM_CLIENT_PERMISSION_WIFI_SHARE_OPEN); caps = nm_device_wifi_get_capabilities (NM_DEVICE_WIFI (nm_device)); if (perm != NM_CLIENT_PERMISSION_RESULT_YES && perm != NM_CLIENT_PERMISSION_RESULT_AUTH && perm != NM_CLIENT_PERMISSION_RESULT_UNKNOWN) { gtk_widget_set_tooltip_text (widget, _("System policy prohibits use as a Hotspot")); gtk_widget_set_sensitive (widget, FALSE); } else if (!(caps & (NM_WIFI_DEVICE_CAP_AP | NM_WIFI_DEVICE_CAP_ADHOC))) { gtk_widget_set_tooltip_text (widget, _("Wireless device does not support Hotspot mode")); gtk_widget_set_sensitive (widget, FALSE); } else gtk_widget_set_sensitive (widget, TRUE); g_signal_connect (client, NM_CLIENT_CONNECTION_ADDED, G_CALLBACK (client_connection_added_cb), device_wifi); g_signal_connect (client, NM_CLIENT_CONNECTION_REMOVED, G_CALLBACK (client_connection_removed_cb), device_wifi); widget = GTK_WIDGET (gtk_builder_get_object (device_wifi->priv->builder, "heading_list")); g_object_bind_property (device_wifi, "title", widget, "label", 0); nm_device_wifi_refresh_ui (device_wifi); } static void net_device_wifi_finalize (GObject *object) { NetDeviceWifi *device_wifi = NET_DEVICE_WIFI (object); NetDeviceWifiPrivate *priv = device_wifi->priv; g_clear_pointer (&priv->details_dialog, gtk_widget_destroy); g_clear_pointer (&priv->hotspot_dialog, gtk_widget_destroy); g_object_unref (priv->builder); g_free (priv->selected_ssid_title); g_free (priv->selected_connection_id); g_free (priv->selected_ap_id); G_OBJECT_CLASS (net_device_wifi_parent_class)->finalize (object); } static void device_wifi_edit (NetObject *object) { const gchar *uuid; gchar *cmdline; GError *error = NULL; NetDeviceWifi *device = NET_DEVICE_WIFI (object); NMClient *client; NMRemoteConnection *connection; client = net_object_get_client (object); connection = nm_client_get_connection_by_path (client, device->priv->selected_connection_id); if (connection == NULL) { g_warning ("failed to get remote connection"); return; } uuid = nm_connection_get_uuid (NM_CONNECTION (connection)); cmdline = g_strdup_printf ("nm-connection-editor --edit %s", uuid); g_debug ("Launching '%s'\n", cmdline); if (!g_spawn_command_line_async (cmdline, &error)) { g_warning ("Failed to launch nm-connection-editor: %s", error->message); g_error_free (error); } g_free (cmdline); } static void net_device_wifi_class_init (NetDeviceWifiClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); NetObjectClass *parent_class = NET_OBJECT_CLASS (klass); object_class->finalize = net_device_wifi_finalize; object_class->constructed = net_device_wifi_constructed; parent_class->add_to_notebook = device_wifi_proxy_add_to_notebook; parent_class->refresh = device_wifi_refresh; parent_class->edit = device_wifi_edit; g_type_class_add_private (klass, sizeof (NetDeviceWifiPrivate)); } static void really_forgotten (GObject *source_object, GAsyncResult *res, gpointer user_data) { GError *error = NULL; if (!nm_remote_connection_delete_finish (NM_REMOTE_CONNECTION (source_object), res, &error)) { g_warning ("failed to delete connection %s: %s", nm_object_get_path (NM_OBJECT (source_object)), error->message); g_error_free (error); return; } /* remove the entry from the list */ populate_ap_list (user_data); } static void really_forget (GtkDialog *dialog, gint response, gpointer data) { GtkWidget *forget = data; GtkWidget *row; GList *rows; GList *r; NMRemoteConnection *connection; NetDeviceWifi *device_wifi; gtk_widget_destroy (GTK_WIDGET (dialog)); if (response != GTK_RESPONSE_OK) return; device_wifi = NET_DEVICE_WIFI (g_object_get_data (G_OBJECT (forget), "net")); rows = g_object_steal_data (G_OBJECT (forget), "rows"); for (r = rows; r; r = r->next) { row = r->data; connection = g_object_get_data (G_OBJECT (row), "connection"); //FIXME cancellable nm_remote_connection_delete_async (connection, NULL, really_forgotten, device_wifi); gtk_widget_destroy (row); } g_list_free (rows); } static void forget_selected (GtkButton *forget, NetDeviceWifi *device_wifi) { GtkWidget *window; GtkWidget *dialog; window = gtk_widget_get_toplevel (GTK_WIDGET (forget)); dialog = gtk_message_dialog_new (GTK_WINDOW (window), GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_OTHER, GTK_BUTTONS_NONE, NULL); gtk_message_dialog_set_markup (GTK_MESSAGE_DIALOG (dialog), _("Network details for the selected networks, including passwords and any custom configuration will be lost.")); gtk_dialog_add_buttons (GTK_DIALOG (dialog), _("_Cancel"), GTK_RESPONSE_CANCEL, _("_Forget"), GTK_RESPONSE_OK, NULL); g_signal_connect (dialog, "response", G_CALLBACK (really_forget), forget); gtk_window_present (GTK_WINDOW (dialog)); } static void check_toggled (GtkToggleButton *check, GtkWidget *forget) { gboolean active; GtkWidget *row; GList *rows; row = gtk_widget_get_ancestor (GTK_WIDGET (check), GTK_TYPE_LIST_BOX_ROW); active = gtk_toggle_button_get_active (check); rows = g_object_steal_data (G_OBJECT (forget), "rows"); if (active) { rows = g_list_prepend (rows, row); } else { rows = g_list_remove (rows, row); } g_object_set_data_full (G_OBJECT (forget), "rows", rows, (GDestroyNotify)g_list_free); gtk_widget_set_sensitive (forget, rows != NULL); } static void update_forget (GtkWidget *forget, gpointer row) { GList *rows; rows = g_object_steal_data (G_OBJECT (forget), "rows"); rows = g_list_remove (rows, row); g_object_set_data_full (G_OBJECT (forget), "rows", rows, (GDestroyNotify)g_list_free); gtk_widget_set_sensitive (forget, rows != NULL); } static void make_row (GtkSizeGroup *rows, GtkSizeGroup *icons, GtkWidget *forget, NMDevice *device, NMConnection *connection, NMAccessPoint *ap, NMAccessPoint *active_ap, GtkWidget **row_out, GtkWidget **check_out, GtkWidget **edit_out) { GtkWidget *row, *row_box; GtkWidget *widget; GtkWidget *box; GtkWidget *button_stack; GtkWidget *image; gchar *title; gboolean active; gboolean in_range; gboolean connecting; guint security; guint strength; GBytes *ssid; const gchar *icon_name; guint64 timestamp; NMDeviceState state; g_assert (connection || ap); state = nm_device_get_state (device); if (connection != NULL) { NMSettingWireless *sw; NMSettingConnection *sc; sw = nm_connection_get_setting_wireless (connection); ssid = nm_setting_wireless_get_ssid (sw); sc = nm_connection_get_setting_connection (connection); timestamp = nm_setting_connection_get_timestamp (sc); } else { ssid = nm_access_point_get_ssid (ap); timestamp = 0; } if (ap != NULL) { in_range = TRUE; active = (ap == active_ap) && (state == NM_DEVICE_STATE_ACTIVATED); connecting = (ap == active_ap) && (state == NM_DEVICE_STATE_PREPARE || state == NM_DEVICE_STATE_CONFIG || state == NM_DEVICE_STATE_IP_CONFIG || state == NM_DEVICE_STATE_IP_CHECK || state == NM_DEVICE_STATE_NEED_AUTH); security = get_access_point_security (ap); strength = nm_access_point_get_strength (ap); } else { in_range = FALSE; active = FALSE; connecting = FALSE; security = 0; strength = 0; } row = gtk_list_box_row_new (); gtk_size_group_add_widget (rows, row); row_box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 12); gtk_widget_set_margin_start (row_box, 12); gtk_widget_set_margin_end (row_box, 12); gtk_container_add (GTK_CONTAINER (row), row_box); button_stack = gtk_stack_new (); gtk_widget_show (button_stack); widget = gtk_label_new (""); gtk_widget_show (widget); gtk_container_add (GTK_CONTAINER (button_stack), widget); widget = NULL; if (forget) { widget = gtk_check_button_new (); g_signal_connect (widget, "toggled", G_CALLBACK (check_toggled), forget); gtk_widget_set_halign (widget, GTK_ALIGN_CENTER); gtk_widget_set_valign (widget, GTK_ALIGN_CENTER); gtk_box_pack_start (GTK_BOX (row_box), widget, FALSE, FALSE, 0); g_signal_connect_object (row, "destroy", G_CALLBACK (update_forget), forget, G_CONNECT_SWAPPED); } if (check_out) *check_out = widget; title = nm_utils_ssid_to_utf8 (g_bytes_get_data (ssid, NULL), g_bytes_get_size (ssid)); widget = gtk_label_new (title); g_free (title); gtk_widget_set_margin_top (widget, 12); gtk_widget_set_margin_bottom (widget, 12); gtk_box_pack_start (GTK_BOX (row_box), widget, FALSE, FALSE, 0); if (active) { widget = gtk_image_new_from_icon_name ("object-select-symbolic", GTK_ICON_SIZE_MENU); gtk_widget_set_halign (widget, GTK_ALIGN_CENTER); gtk_widget_set_valign (widget, GTK_ALIGN_CENTER); gtk_box_pack_start (GTK_BOX (row_box), widget, FALSE, FALSE, 0); } gtk_box_pack_start (GTK_BOX (row_box), gtk_label_new (""), TRUE, FALSE, 0); widget = NULL; image = gtk_image_new_from_icon_name ("emblem-system-symbolic", GTK_ICON_SIZE_MENU); gtk_widget_show (image); widget = gtk_button_new (); gtk_style_context_add_class (gtk_widget_get_style_context (widget), "image-button"); gtk_style_context_add_class (gtk_widget_get_style_context (widget), "circular-button"); gtk_widget_show (widget); gtk_container_add (GTK_CONTAINER (widget), image); gtk_widget_set_halign (widget, GTK_ALIGN_CENTER); gtk_widget_set_valign (widget, GTK_ALIGN_CENTER); atk_object_set_name (gtk_widget_get_accessible (widget), _("Options…")); gtk_stack_add_named (GTK_STACK (button_stack), widget, "button"); g_object_set_data (G_OBJECT (row), "edit", widget); if (connection) gtk_stack_set_visible_child_name (GTK_STACK (button_stack), "button"); gtk_box_pack_start (GTK_BOX (row_box), button_stack, FALSE, FALSE, 0); g_object_set_data (G_OBJECT (row), "button_stack", button_stack); if (edit_out) *edit_out = widget; widget = gtk_spinner_new (); gtk_spinner_start (GTK_SPINNER (widget)); gtk_widget_show (widget); gtk_widget_set_halign (widget, GTK_ALIGN_CENTER); gtk_widget_set_valign (widget, GTK_ALIGN_CENTER); gtk_stack_add_named (GTK_STACK (button_stack), widget, "spinner"); if (connecting) gtk_stack_set_visible_child_name (GTK_STACK (button_stack), "spinner"); box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6); gtk_box_set_homogeneous (GTK_BOX (box), TRUE); gtk_size_group_add_widget (icons, box); gtk_box_pack_start (GTK_BOX (row_box), box, FALSE, FALSE, 0); if (in_range) { if (security != NM_AP_SEC_UNKNOWN && security != NM_AP_SEC_NONE) { widget = gtk_image_new_from_icon_name ("network-wireless-encrypted-symbolic", GTK_ICON_SIZE_MENU); } else { widget = gtk_label_new (""); } gtk_box_pack_start (GTK_BOX (box), widget, FALSE, FALSE, 0); if (strength < 20) icon_name = "network-wireless-signal-none-symbolic"; else if (strength < 40) icon_name = "network-wireless-signal-weak-symbolic"; else if (strength < 50) icon_name = "network-wireless-signal-ok-symbolic"; else if (strength < 80) icon_name = "network-wireless-signal-good-symbolic"; else icon_name = "network-wireless-signal-excellent-symbolic"; widget = gtk_image_new_from_icon_name (icon_name, GTK_ICON_SIZE_MENU); gtk_box_pack_start (GTK_BOX (box), widget, FALSE, FALSE, 0); } gtk_widget_show_all (row); g_object_set_data (G_OBJECT (row), "ap", ap); if (connection) g_object_set_data (G_OBJECT (row), "connection", connection); g_object_set_data (G_OBJECT (row), "timestamp", GUINT_TO_POINTER (timestamp)); g_object_set_data (G_OBJECT (row), "active", GUINT_TO_POINTER (active)); g_object_set_data (G_OBJECT (row), "strength", GUINT_TO_POINTER (strength)); *row_out = row; } static gint history_sort (gconstpointer a, gconstpointer b, gpointer data) { guint64 ta, tb; ta = GPOINTER_TO_UINT (g_object_get_data (G_OBJECT (a), "timestamp")); tb = GPOINTER_TO_UINT (g_object_get_data (G_OBJECT (b), "timestamp")); if (ta > tb) return -1; if (tb > ta) return 1; return 0; } static gint ap_sort (gconstpointer a, gconstpointer b, gpointer data) { guint sa, sb; sa = GPOINTER_TO_UINT (g_object_get_data (G_OBJECT (a), "strength")); sb = GPOINTER_TO_UINT (g_object_get_data (G_OBJECT (b), "strength")); if (sa > sb) return -1; if (sb > sa) return 1; return 0; } static void editor_done (NetConnectionEditor *editor, gboolean success, NetDeviceWifi *device_wifi) { g_object_unref (editor); } static void show_details_for_row (GtkButton *button, NetDeviceWifi *device_wifi) { GtkWidget *row; NMConnection *connection; NMAccessPoint *ap; GtkWidget *window; NetConnectionEditor *editor; NMClient *client; NMDevice *device; window = gtk_widget_get_toplevel (GTK_WIDGET (button)); row = GTK_WIDGET (g_object_get_data (G_OBJECT (button), "row")); connection = NM_CONNECTION (g_object_get_data (G_OBJECT (row), "connection")); ap = NM_ACCESS_POINT (g_object_get_data (G_OBJECT (row), "ap")); device = net_device_get_nm_device (NET_DEVICE (device_wifi)); client = net_object_get_client (NET_OBJECT (device_wifi)); editor = net_connection_editor_new (GTK_WINDOW (window), connection, device, ap, client); g_signal_connect (editor, "done", G_CALLBACK (editor_done), device_wifi); net_connection_editor_run (editor); } static void open_history (NetDeviceWifi *device_wifi) { GtkWidget *dialog; GtkWidget *window; CcNetworkPanel *panel; GtkWidget *button; GtkWidget *forget; GtkWidget *swin; GSList *connections; GSList *l; const GPtrArray *aps; GPtrArray *aps_unique = NULL; NMAccessPoint *active_ap; guint i; NMDevice *nm_device; GtkWidget *list; GtkWidget *row; GtkSizeGroup *rows; GtkSizeGroup *icons; dialog = gtk_dialog_new (); panel = net_object_get_panel (NET_OBJECT (device_wifi)); window = gtk_widget_get_toplevel (GTK_WIDGET (panel)); gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (window)); gtk_window_set_title (GTK_WINDOW (dialog), _("History")); gtk_window_set_modal (GTK_WINDOW (dialog), TRUE); gtk_window_set_default_size (GTK_WINDOW (dialog), 600, 400); button = gtk_button_new_with_mnemonic (_("_Close")); gtk_widget_set_can_default (button, TRUE); gtk_widget_show (button); gtk_dialog_add_action_widget (GTK_DIALOG (dialog), button, 0); g_signal_connect_swapped (button, "clicked", G_CALLBACK (gtk_widget_destroy), dialog); /* translators: This is the label for the "Forget wireless network" functionality */ forget = gtk_button_new_with_mnemonic (C_("Wi-Fi Network", "_Forget")); gtk_widget_show (forget); gtk_widget_set_sensitive (forget, FALSE); gtk_dialog_add_action_widget (GTK_DIALOG (dialog), forget, 0); g_signal_connect (forget, "clicked", G_CALLBACK (forget_selected), device_wifi); gtk_container_child_set (GTK_CONTAINER (gtk_widget_get_parent (forget)), forget, "secondary", TRUE, NULL); g_object_set_data (G_OBJECT (forget), "net", device_wifi); swin = gtk_scrolled_window_new (NULL, NULL); gtk_widget_show (swin); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (swin), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (swin), GTK_SHADOW_IN); gtk_widget_set_margin_start (swin, 50); gtk_widget_set_margin_end (swin, 50); gtk_widget_set_margin_top (swin, 12); gtk_widget_set_margin_bottom (swin, 12); gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog))), swin, TRUE, TRUE, 0); list = GTK_WIDGET (gtk_list_box_new ()); gtk_widget_show (list); gtk_list_box_set_selection_mode (GTK_LIST_BOX (list), GTK_SELECTION_NONE); gtk_list_box_set_header_func (GTK_LIST_BOX (list), cc_list_box_update_header_func, NULL, NULL); gtk_list_box_set_sort_func (GTK_LIST_BOX (list), (GtkListBoxSortFunc)history_sort, NULL, NULL); gtk_container_add (GTK_CONTAINER (swin), list); rows = gtk_size_group_new (GTK_SIZE_GROUP_VERTICAL); icons = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL); g_object_set_data_full (G_OBJECT (list), "rows", rows, g_object_unref); g_object_set_data_full (G_OBJECT (list), "icons", icons, g_object_unref); nm_device = net_device_get_nm_device (NET_DEVICE (device_wifi)); connections = net_device_get_valid_connections (NET_DEVICE (device_wifi)); aps = nm_device_wifi_get_access_points (NM_DEVICE_WIFI (nm_device)); aps_unique = panel_get_strongest_unique_aps (aps); active_ap = nm_device_wifi_get_active_access_point (NM_DEVICE_WIFI (nm_device)); for (l = connections; l; l = l->next) { NMConnection *connection = l->data; NMAccessPoint *ap = NULL; NMSetting *setting; GBytes *ssid; if (connection_is_shared (connection)) continue; setting = nm_connection_get_setting_by_name (connection, NM_SETTING_WIRELESS_SETTING_NAME); ssid = nm_setting_wireless_get_ssid (NM_SETTING_WIRELESS (setting)); for (i = 0; i < aps_unique->len; i++) { GBytes *ssid_ap; ap = NM_ACCESS_POINT (g_ptr_array_index (aps_unique, i)); ssid_ap = nm_access_point_get_ssid (ap); if (nm_utils_same_ssid (g_bytes_get_data (ssid, NULL), g_bytes_get_size (ssid), g_bytes_get_data (ssid_ap, NULL), g_bytes_get_size (ssid_ap), TRUE)) break; ap = NULL; } make_row (rows, icons, forget, nm_device, connection, ap, active_ap, &row, NULL, &button); gtk_container_add (GTK_CONTAINER (list), row); if (button) { g_signal_connect (button, "clicked", G_CALLBACK (show_details_for_row), device_wifi); g_object_set_data (G_OBJECT (button), "row", row); } } g_slist_free (connections); g_ptr_array_free (aps_unique, TRUE); gtk_window_present (GTK_WINDOW (dialog)); } static void populate_ap_list (NetDeviceWifi *device_wifi) { GtkWidget *swin; GtkWidget *list; GtkSizeGroup *rows; GtkSizeGroup *icons; NMDevice *nm_device; GSList *connections; GSList *l; const GPtrArray *aps; GPtrArray *aps_unique = NULL; NMAccessPoint *active_ap; guint i; GtkWidget *row; GtkWidget *button; GList *children, *child; swin = GTK_WIDGET (gtk_builder_get_object (device_wifi->priv->builder, "scrolledwindow_list")); list = gtk_bin_get_child (GTK_BIN (gtk_bin_get_child (GTK_BIN (swin)))); children = gtk_container_get_children (GTK_CONTAINER (list)); for (child = children; child; child = child->next) { gtk_container_remove (GTK_CONTAINER (list), GTK_WIDGET (child->data)); } g_list_free (children); rows = GTK_SIZE_GROUP (g_object_get_data (G_OBJECT (list), "rows")); icons = GTK_SIZE_GROUP (g_object_get_data (G_OBJECT (list), "icons")); nm_device = net_device_get_nm_device (NET_DEVICE (device_wifi)); connections = net_device_get_valid_connections (NET_DEVICE (device_wifi)); aps = nm_device_wifi_get_access_points (NM_DEVICE_WIFI (nm_device)); aps_unique = panel_get_strongest_unique_aps (aps); active_ap = nm_device_wifi_get_active_access_point (NM_DEVICE_WIFI (nm_device)); for (i = 0; i < aps_unique->len; i++) { GBytes *ssid_ap; NMAccessPoint *ap; NMConnection *connection = NULL; ap = NM_ACCESS_POINT (g_ptr_array_index (aps_unique, i)); ssid_ap = nm_access_point_get_ssid (ap); for (l = connections; l; l = l->next) { connection = l->data; NMSetting *setting; GBytes *ssid; if (connection_is_shared (connection)) { connection = NULL; continue; } setting = nm_connection_get_setting_by_name (connection, NM_SETTING_WIRELESS_SETTING_NAME); ssid = nm_setting_wireless_get_ssid (NM_SETTING_WIRELESS (setting)); if (nm_utils_same_ssid (g_bytes_get_data (ssid, NULL), g_bytes_get_size (ssid), g_bytes_get_data (ssid_ap, NULL), g_bytes_get_size (ssid_ap), TRUE)) break; connection = NULL; } make_row (rows, icons, NULL, nm_device, connection, ap, active_ap, &row, NULL, &button); gtk_container_add (GTK_CONTAINER (list), row); if (button) { g_signal_connect (button, "clicked", G_CALLBACK (show_details_for_row), device_wifi); g_object_set_data (G_OBJECT (button), "row", row); } } g_slist_free (connections); g_ptr_array_free (aps_unique, TRUE); } static void ap_activated (GtkListBox *list, GtkListBoxRow *row, NetDeviceWifi *device_wifi) { NMConnection *connection; NMAccessPoint *ap; NMClient *client; NMDevice *nm_device; GtkWidget *edit; GtkWidget *stack; connection = NM_CONNECTION (g_object_get_data (G_OBJECT (row), "connection")); ap = NM_ACCESS_POINT (g_object_get_data (G_OBJECT (row), "ap")); edit = GTK_WIDGET (g_object_get_data (G_OBJECT (row), "edit")); stack = GTK_WIDGET (g_object_get_data (G_OBJECT (row), "button_stack")); if (ap != NULL) { if (connection != NULL) { gtk_widget_hide (edit); client = net_object_get_client (NET_OBJECT (device_wifi)); nm_device = net_device_get_nm_device (NET_DEVICE (device_wifi)); nm_client_activate_connection_async (client, connection, nm_device, NULL, NULL, connection_activate_cb, device_wifi); } else { GBytes *ssid; const gchar *object_path; gtk_stack_set_visible_child_name (GTK_STACK (stack), "spinner"); ssid = nm_access_point_get_ssid (ap); object_path = nm_object_get_path (NM_OBJECT (ap)); wireless_try_to_connect (device_wifi, ssid, object_path); } } } static void net_device_wifi_init (NetDeviceWifi *device_wifi) { GError *error = NULL; GtkWidget *widget; GtkWidget *swin; GtkWidget *list; GtkSizeGroup *rows; GtkSizeGroup *icons; device_wifi->priv = NET_DEVICE_WIFI_GET_PRIVATE (device_wifi); device_wifi->priv->builder = gtk_builder_new (); gtk_builder_add_from_resource (device_wifi->priv->builder, "/org/cinnamon/control-center/network/network-wifi.ui", &error); if (error != NULL) { g_warning ("Could not load interface file: %s", error->message); g_error_free (error); return; } widget = GTK_WIDGET (gtk_builder_get_object (device_wifi->priv->builder, "details_dialog")); device_wifi->priv->details_dialog = widget; widget = GTK_WIDGET (gtk_builder_get_object (device_wifi->priv->builder, "hotspot-dialog")); device_wifi->priv->hotspot_dialog = widget; /* setup wifi views */ widget = GTK_WIDGET (gtk_builder_get_object (device_wifi->priv->builder, "device_off_switch")); g_signal_connect (widget, "notify::active", G_CALLBACK (device_off_toggled), device_wifi); swin = GTK_WIDGET (gtk_builder_get_object (device_wifi->priv->builder, "scrolledwindow_list")); list = GTK_WIDGET (gtk_list_box_new ()); gtk_widget_show (list); gtk_list_box_set_selection_mode (GTK_LIST_BOX (list), GTK_SELECTION_NONE); gtk_list_box_set_header_func (GTK_LIST_BOX (list), cc_list_box_update_header_func, NULL, NULL); gtk_list_box_set_sort_func (GTK_LIST_BOX (list), (GtkListBoxSortFunc)ap_sort, NULL, NULL); gtk_container_add (GTK_CONTAINER (swin), list); g_signal_connect (list, "row-activated", G_CALLBACK (ap_activated), device_wifi); rows = gtk_size_group_new (GTK_SIZE_GROUP_VERTICAL); icons = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL); g_object_set_data_full (G_OBJECT (list), "rows", rows, g_object_unref); g_object_set_data_full (G_OBJECT (list), "icons", icons, g_object_unref); /* setup view */ widget = GTK_WIDGET (gtk_builder_get_object (device_wifi->priv->builder, "notebook_view")); gtk_notebook_set_show_tabs (GTK_NOTEBOOK (widget), FALSE); gtk_notebook_set_current_page (GTK_NOTEBOOK (widget), 0); widget = GTK_WIDGET (gtk_builder_get_object (device_wifi->priv->builder, "start_hotspot_button")); g_signal_connect (widget, "clicked", G_CALLBACK (start_hotspot), device_wifi); widget = GTK_WIDGET (gtk_builder_get_object (device_wifi->priv->builder, "connect_hidden_button")); g_signal_connect_swapped (widget, "clicked", G_CALLBACK (connect_to_hidden_network), device_wifi); widget = GTK_WIDGET (gtk_builder_get_object (device_wifi->priv->builder, "history_button")); g_signal_connect_swapped (widget, "clicked", G_CALLBACK (open_history), device_wifi); widget = GTK_WIDGET (gtk_builder_get_object (device_wifi->priv->builder, "switch_hotspot_off")); device_wifi->priv->hotspot_switch = GTK_SWITCH (widget); g_signal_connect (widget, "notify::active", G_CALLBACK (switch_hotspot_changed_cb), device_wifi); } cinnamon-control-center-6.2.0/panels/network/network-dialogs.h0000664000175000017500000000333214632072346023446 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2011 Giovanni Campagna * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef _NETWORK_DIALOGS_H #define _NETWORK_DIALOGS_H #include #include void cc_network_panel_create_wifi_network (GtkWidget *toplevel, NMClient *client); void cc_network_panel_connect_to_hidden_network (GtkWidget *toplevel, NMClient *client); void cc_network_panel_connect_to_8021x_network (GtkWidget *toplevel, NMClient *client, NMDevice *device, const gchar *arg_access_point); void cc_network_panel_connect_to_3g_network (GtkWidget *toplevel, NMClient *client, NMDevice *device); #endif /* _NETWORK_DIALOGS_H */ cinnamon-control-center-6.2.0/panels/network/network-vpn.ui0000664000175000017500000003760514632072346023027 0ustar fabiofabio True False 12 6 True False start 10 6 True False 1 VPN Type label_service_type 0 1 1 1 True False 1 Gateway label_gateway 0 2 1 1 True False 1 Group Name label_group_name 0 3 1 1 True False 1 Group Password label_group_password 0 4 1 1 True False 1 Username label_username 0 5 1 1 True True 0 openvpn True 1 1 2 1 True True 0 AA:BB:CC:DD:55:66:77:88 end 24 True 1 2 2 1 True True 0 SEKRIT True 1 3 2 1 True True 0 ********** True 1 4 2 1 True True 0 smithy True 1 5 2 1 True False end start 2 0 1 1 True False True 6 True False end start 1 48 network-vpn 6 False True 0 True False start True True False 0 VPN end False False 0 True False 0 Not connected False False 1 True True 1 True True end center Turn VPN connection off False True 2 0 0 3 1 True True 0 True False True True True end end True True True True False emblem-system-symbolic 1 Options… False True end 0 True True 1 cinnamon-control-center-6.2.0/panels/network/net-object.h0000664000175000017500000001061014632072346022364 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2011 Richard Hughes * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __NET_OBJECT_H #define __NET_OBJECT_H #include #include #include #include "cc-network-panel.h" G_BEGIN_DECLS #define NET_TYPE_OBJECT (net_object_get_type ()) #define NET_OBJECT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), NET_TYPE_OBJECT, NetObject)) #define NET_OBJECT_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), NET_TYPE_OBJECT, NetObjectClass)) #define NET_IS_OBJECT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), NET_TYPE_OBJECT)) #define NET_IS_OBJECT_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), NET_TYPE_OBJECT)) #define NET_OBJECT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), NET_TYPE_OBJECT, NetObjectClass)) typedef struct _NetObjectPrivate NetObjectPrivate; typedef struct _NetObject NetObject; typedef struct _NetObjectClass NetObjectClass; G_DEFINE_AUTOPTR_CLEANUP_FUNC (NetObject, g_object_unref) struct _NetObject { GObject parent; NetObjectPrivate *priv; }; struct _NetObjectClass { GObjectClass parent_class; /* vtable */ GtkWidget *(*add_to_notebook) (NetObject *object, GtkNotebook *notebook, GtkSizeGroup *heading_size_group); void (*delete) (NetObject *object); void (*refresh) (NetObject *object); void (*edit) (NetObject *object); /* signal */ void (* changed) (NetObject *object); void (* removed) (NetObject *object); }; GType net_object_get_type (void); const gchar *net_object_get_id (NetObject *object); void net_object_set_id (NetObject *object, const gchar *id); const gchar *net_object_get_title (NetObject *object); void net_object_set_title (NetObject *object, const gchar *title); NMClient *net_object_get_client (NetObject *object); GCancellable *net_object_get_cancellable (NetObject *object); CcNetworkPanel *net_object_get_panel (NetObject *object); void net_object_emit_changed (NetObject *object); void net_object_emit_removed (NetObject *object); void net_object_delete (NetObject *object); void net_object_refresh (NetObject *object); void net_object_edit (NetObject *object); GtkWidget *net_object_add_to_notebook (NetObject *object, GtkNotebook *notebook, GtkSizeGroup *heading_size_group); gboolean net_object_get_removable (NetObject *object); void net_object_set_removable (NetObject *object, gboolean removable); G_END_DECLS #endif /* __NET_OBJECT_H */ cinnamon-control-center-6.2.0/panels/network/cinnamon-network-panel.desktop0000664000175000017500000001642014632072346026147 0ustar fabiofabio[Desktop Entry] Exec=cinnamon-settings network Icon=cs-network Terminal=false Type=Application StartupNotify=true Categories=GTK;Settings;HardwareSettings;X-Cinnamon-Settings-Panel; OnlyShowIn=X-Cinnamon; X-Cinnamon-Settings-Panel=network Name=Network Name[am]=įŠ”į‰µį‹Žįˆ­įŠ­ Name[ar]=Ų§Ł„Ų“ŲØŁƒŲ© Name[ast]=Rede Name[ay]=Llika Name[az]=Tor işi Name[be]=Детка Name[be@latin]=Детка Name[bg]=ŠœŃ€ŠµŠ¶Š° Name[bs]=Mreža Name[ca]=Xarxa Name[ca@valencia]=Xarxa Name[cs]=SĆ­Å„ Name[cy]=Rhwydwaith Name[da]=NetvƦrk Name[de]=Netzwerk Name[el]=Δίκτυο Name[eo]=Reto Name[es]=Red Name[et]=VƵrk Name[eu]=Sarea Name[fa]=ؓبکه Name[fi]=Verkko Name[fr]=RĆ©seau Name[fr_CA]=RĆ©seau Name[gd]=LƬonra Name[gl]=Rede Name[he]=רשת Name[hi]=ą¤Øą„‡ą¤Ÿą¤µą¤°ą„ą¤• Name[hr]=Mreža Name[hu]=HĆ”lózat Name[ia]=Rete Name[id]=Jaringan Name[ie]=Rete Name[is]=Netkerfi Name[it]=Rete Name[ja]=ćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æ Name[ka]=įƒ„įƒ”įƒ”įƒšįƒ˜ Name[kab]=Aįŗ“eįøįøa Name[kk]=Желі Name[km]=įž”įžŽįŸ’įžįž¶įž‰ Name[ko]=ė„¤ķŠøģ›Œķ¬ Name[ku]=Tor Name[la]=Rete Name[lt]=Tinklas Name[lv]=TÄ«kls Name[ms]=Rangkaian Name[nb]=Nettverk Name[nds]=Netzwerk Name[nl]=Netwerk Name[nn]=Nettverk Name[oc]=Ret Name[pa]=ąØØą©ˆą©±ąØŸąØµąØ°ąØ• Name[pl]=Sieć Name[pt]=Rede Name[pt_BR]=Rede Name[ro]=Rețea Name[ru]=Š”ŠµŃ‚ŃŒ Name[rue]=ŠœŃ€ŠµŠ¶Š° Name[sc]=Retza Name[sk]=SieÅ„ Name[sl]=Omrežje Name[sq]=Rrjeti Name[sr]=ŠœŃ€ŠµŠ¶Š° Name[sr@latin]=Mreža Name[sv]=NƤtverk Name[ta]=ą®µą®²ąÆˆą®Æą®®ąÆˆą®ŖąÆą®ŖąÆ Name[tg]=Шабака Name[th]=ąø£ąø°ąøšąøšą¹€ąø„ąø£ąø·ąø­ąø‚ą¹ˆąø²ąø¢ Name[tr]=Ağ Name[uk]=ŠœŠµŃ€ŠµŠ¶Š° Name[ur]=Ł†ŪŒŁ¹ ورک Name[uz]=Tarmoq Name[uz@cyrillic]=Tarmoq Name[vi]=Mįŗ”ng Name[zh_CN]=ē½‘ē»œ Name[zh_HK]=網絔 Name[zh_TW]=網路 Comment=Network settings Comment[am]=የ įŠ”į‰µį‹Žįˆ­įŠ­ įˆ›įˆ°įŠ“įŒƒ Comment[ar]=Ų„Ų¹ŲÆŲ§ŲÆŲ§ŲŖ Ų§Ł„Ų“ŲØŁƒŲ© Comment[ast]=Axustes de rede Comment[ay]=Llikan mayjachawi Comment[az]=Tor işi quruluşları Comment[be]=ŠŠ°Š»Š°Š“Ń‹ сеткі Comment[be@latin]=ŠŠ°Š»Š°Š“Ń‹ сеткі Comment[bg]=ŠœŃ€ŠµŠ¶Š¾Š²Šø настройки Comment[bs]=Mrežne postavke Comment[ca]=Ajusts de la xarxa Comment[ca@valencia]=ParĆ metres de la xarxa Comment[cs]=NastavenĆ­ sĆ­tě Comment[cy]=Gosodiadau rhwydwaith Comment[da]=NetvƦrksindstillinger Comment[de]=Netzwerkeinstellungen Comment[el]=Ī”Ļ…ĪøĪ¼ĪÆĻƒĪµĪ¹Ļ‚ του Ī“Ī¹ĪŗĻ„ĻĪæĻ… Comment[eo]=Retagordoj Comment[es]=Configuración de la red Comment[et]=VƵrguseaded Comment[eu]=Sareko ezarpenak Comment[fa]=ŲŖŁ†ŲøŪŒŁ…Ų§ŲŖ ؓبکه Comment[fi]=Verkkoasetukset Comment[fr]=ParamĆØtres rĆ©seau Comment[fr_CA]=ParamĆØtres du rĆ©seau Comment[gd]=Roghainnean an lƬonraidh Comment[gl]=Axustes da rede Comment[he]=הגדרות רשת Comment[hi]=ą¤Øą„‡ą¤Ÿą¤µą¤°ą„ą¤• ą¤øą„‡ą¤Ÿą¤æą¤‚ą¤—ą„ą¤ø Comment[hr]=Mrežne postavke Comment[hu]=HĆ”lózati beĆ”llĆ­tĆ”sok Comment[ia]=Configurationes de rete Comment[id]=Pengaturan jaringan Comment[ie]=Parametres de rete Comment[is]=Netstillingar Comment[it]=Impostazioni di rete Comment[ja]=ćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æć®čØ­å®š Comment[ka]=įƒ„įƒ”įƒ”įƒšįƒ˜įƒ” įƒ›įƒįƒ įƒ’įƒ”įƒ‘įƒ Comment[kab]=IÉ£ewwaren uzeį¹­į¹­a Comment[kk]=Желі Š±Š°ŠæŃ‚Š°ŃƒŠ»Š°Ń€Ń‹ Comment[ko]=ė„¤ķŠøģ›Œķ¬ 설정 Comment[ku]=MĆ®hengĆŖn torĆŖ Comment[la]=Configuratio retis Comment[lt]=Tinklo nustatymai Comment[lv]=TÄ«kla iestatÄ«jumi Comment[ms]=Tetapan rangkaian Comment[nb]=Nettverksinnstillinger Comment[nds]=Netzwerkeinstellungen Comment[nl]=Netwerkinstellingen Comment[nn]=Nettverk innstillingar Comment[oc]=ParamĆØtres de la ret Comment[pl]=Ustawienia sieci Comment[pt]=DefiniƧƵes de rede Comment[pt_BR]=ConfiguraƧƵes de Rede Comment[ro]=Setări rețea Comment[ru]=ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠø сети Comment[sc]=SĆØberos de sa retza Comment[sk]=Nastavenie siete Comment[sl]=Omrežne nastavitve Comment[sq]=Parametrat e rrjetit Comment[sr]=ПоГешавања мреже Comment[sr@latin]=PodeÅ”avanja mreže Comment[sv]=NƤtverksinstƤllningar Comment[ta]=பிணைய ą®…ą®®ąÆˆą®ŖąÆą®ŖąÆą®•ą®³ąÆ Comment[tg]=Танзимоти шабака Comment[th]=ąø•ąø±ą¹‰ąø‡ąø„ą¹ˆąø²ą¹€ąø„ąø£ąø·ąø­ąø‚ą¹ˆąø²ąø¢ Comment[tr]=Ağ ayarları Comment[uk]=ŠŠ°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń мережі Comment[ur]=Ł†ŪŒŁ¹ ورک کی ترتیبات Comment[uz]=Tarmoq moslamalari Comment[uz@cyrillic]=Tarmoq moslamalari Comment[vi]=Thiįŗæt đặt mįŗ”ng Comment[zh_CN]=ē½‘ē»œč®¾ē½® Comment[zh_HK]=網絔設定 Comment[zh_TW]=網路設定 Keywords=Network;Wireless;IP;LAN;Proxy;Internet;WiFi; Keywords[be]=сетка;Š±ŠµŃŠæŃ€Š°Š²Š°Š“Š½Š°Ń;ŠæŃ€Š°Š²Š°Š“Š½Š°Ń;IP;LAN;проксі;Ń–Š½Ń‚ŃŃ€Š½ŃŃ‚;WiFi; Keywords[be@latin]=сетка;Š±ŠµŃŠæŃ€Š°Š²Š°Š“Š½Š°Ń;ŠæŃ€Š°Š²Š°Š“Š½Š°Ń;IP;LAN;проксі;Ń–Š½Ń‚ŃŃ€Š½ŃŃ‚;WiFi; Keywords[ca]=Xarxa;Sense fil;IP;LAN;Proxy;Internet;WiFi; Keywords[ca@valencia]=Xarxa;Sense fil;IP;LAN;Proxy;Internet;WiFi; Keywords[cs]=SĆ­Å„;bezdrĆ”tovĆ”;IP;LAN;proxy;Internet;WiFi; Keywords[cy]=Rhwydwaith;Diwifr;IP;Dirprwy;Rhyngrwyd;WiFi; Keywords[da]=NetvƦrk;TrĆ„dlĆøs;IP;LAN;Proxy;Internet;Wi-fi; Keywords[de]=Network;Wireless;IP;LAN;Proxy;Internet;WiFi;Netzwerk;drahtlos;Vermittlung;WLAN; Keywords[el]=Δίκτυο;Ī‘ĻƒĻĻĪ¼Ī±Ļ„Īæ;IP;LAN;Proxy;ΔιαΓίκτυο;WiFi; Keywords[eo]=Reto;Sendrata;Interreta protokolo;Loka reto;Prokurilo;Interreto;Vifio; Keywords[es]=Red;InalĆ”mbrico;IP;LAN;Proxy;Internet;WiFi; Keywords[et]=VƵrk;traadita ühendus;IP;LAN;puhverserver;Internet;WiFi; Keywords[eu]=Sarea;Haririk gabekoa;IP;LAN;Proxy;Internet;WiFi; Keywords[fa]=Ų“ŲØŚ©Ł‡ŲŒ ŲØŪŒā€ŒŲ³ŪŒŁ…ŲŒ IP، LAN، پروکسی، Ų§ŪŒŁ†ŲŖŲ±Ł†ŲŖŲŒ ŁˆŲ§ŪŒā€ŒŁŲ§ŪŒ; Keywords[fi]=Verkko;Langaton;IP;LAN;VƤlityspalvelin;Internet;WiFi; Keywords[fr]=RĆ©seau;Sans-fil;IP;LAN;Proxy;Internet;WiFi; Keywords[fr_CA]=RĆ©seau;Sans-fil;IP;LAN;Proxy;Internet;WiFi; Keywords[he]=רשת;אל־חוטי;IP;LN;×ž×Ŗ×•×•×š;×ž×Ø×©×Ŗ×Ŗ;WiFi; Keywords[hr]=Mreža;Bežična mreža;IP;LAN;Proxy;Internet;WiFi; Keywords[hu]=HĆ”lózat;VezetĆ©k nĆ©lküli;Wi-Fi;Wifi;IP;LAN;SzĆ©les sĆ”v;SzĆ©lessĆ”v;DNS;Network;Wireless;IP;LAN;Proxy;Internet; Keywords[ia]=Rete;Sin filos;IP;LAN;Proxy;Internet;WiFi; Keywords[id]=Jaringan;Nirkabel;IP;LAN;Proxy;Internet;WiFi; Keywords[is]=Netkerfi;ƞrƔưlaust;IP;LAN;Milliþjónn;Internet;WiFi; Keywords[it]=Rete;Wireless;IP;LAN;Proxy;Internet;WiFi; Keywords[ja]=Network;Wireless;IP;LAN;Proxy;Internet;WiFi;ćƒćƒƒćƒˆćƒÆćƒ¼ć‚Æ;ćƒÆć‚¤ćƒ¤ćƒ¬ć‚¹;ćƒ—ćƒ­ć‚­ć‚·;ć‚¤ćƒ³ć‚æćƒ¼ćƒćƒƒćƒˆ; Keywords[ko]=ė„¤ķŠøģ›Œķ¬;묓선;IP;LAN;ķ”„ė”ģ‹œ;ģøķ„°ė„·;WiFi; Keywords[nl]=Netwerk;Draadloos;IP;LAN;Proxy;Internet;WiFi; Keywords[oc]=Ret;Sens fil;LAN;Proxy;Internet;WiFi; Keywords[pl]=Sieć;Bezprzewodowa;IP;LAN;Proxy;Internet;WiFi; Keywords[pt]=Rede;Sem fios;IP;LAN;Proxy;Internet;WiFi; Keywords[pt_BR]=Rede;Sem fio;IP;LAN;Proxy;Internet;WiFi; Keywords[ro]=Rețea;Wireless;IP;LAN;Proxy;Internet;WiFi; Keywords[ru]=Š”ŠµŃ‚ŃŒ;Š‘ŠµŃŠæŃ€Š¾Š²Š¾Š“Š½Š°Ń ŃŠ²ŃŠ·ŃŒ;IP;Š›Š¾ŠŗŠ°Š»ŃŒŠ½Š°Ń ŃŠµŃ‚ŃŒ;ŠŸŃ€Š¾ŠŗŃŠø;интернет;Š‘ŠµŃŠæŃ€Š¾Š²Š¾Š“Š½Š°Ń ŃŠµŃ‚ŃŒ; Keywords[sk]=SieÅ„;BezdrĆ“tovĆ© pripojenie;IP;LAN;Proxy;Internet;WiFi; Keywords[sl]=Omrežje;brezžično;IP;LAN;internet;wifi;posredovalni strežnik; Keywords[sv]=NƤtverk;TrĆ„dlƶst;IP;LAN;Proxy;Internet;TrĆ„dlƶst nƤtverk; Keywords[tr]=Ağ;Kablosuz;IP;LAN;Vekil;Internet;Kablosuz ağ; Keywords[uk]=ŠœŠµŃ€ŠµŠ¶Š°;БезГротові мережі;IP;Š›Š¾ŠŗŠ°Š»ŃŒŠ½Š° мережа;ŠŸŃ€Š¾ŠŗŃŃ–;Інтернет;WiFi; Keywords[uz]=Tarmoq;Simsiz;IP;LAN;Proksi;Internet;WiFi; Keywords[uz@cyrillic]=Tarmoq;Simsiz;IP;LAN;Proksi;Internet;WiFi; cinnamon-control-center-6.2.0/panels/network/net-device-ethernet.c0000664000175000017500000006051414632072346024174 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2011-2012 Richard Hughes * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "config.h" #include #include #include #include "panel-common.h" #include "shell/list-box-helper.h" #include "connection-editor/net-connection-editor.h" #include "connection-editor/ce-page.h" #include "net-device-ethernet.h" G_DEFINE_TYPE (NetDeviceEthernet, net_device_ethernet, NET_TYPE_DEVICE_SIMPLE) static char * device_ethernet_get_speed (NetDeviceSimple *device_simple) { NMDevice *nm_device; guint speed; nm_device = net_device_get_nm_device (NET_DEVICE (device_simple)); speed = nm_device_ethernet_get_speed (NM_DEVICE_ETHERNET (nm_device)); if (speed > 0) { /* Translators: network device speed */ return g_strdup_printf (_("%d Mb/s"), speed); } else return NULL; } static GtkWidget * device_ethernet_add_to_notebook (NetObject *object, GtkNotebook *notebook, GtkSizeGroup *heading_size_group) { NetDeviceEthernet *device = NET_DEVICE_ETHERNET (object); GtkWidget *vbox; vbox = GTK_WIDGET (gtk_builder_get_object (device->builder, "vbox6")); gtk_notebook_append_page (notebook, vbox, NULL); return vbox; } static void add_details_row (GtkWidget *details, gint top, const gchar *heading, const gchar *value) { GtkWidget *heading_label; GtkWidget *value_label; heading_label = gtk_label_new (heading); gtk_style_context_add_class (gtk_widget_get_style_context (heading_label), "dim-label"); gtk_widget_set_halign (heading_label, GTK_ALIGN_END); gtk_widget_set_valign (heading_label, GTK_ALIGN_START); gtk_widget_set_hexpand (heading_label, TRUE); gtk_grid_attach (GTK_GRID (details), heading_label, 0, top, 1, 1); value_label = gtk_label_new (value); gtk_widget_set_halign (value_label, GTK_ALIGN_START); gtk_widget_set_hexpand (value_label, TRUE); gtk_label_set_mnemonic_widget (GTK_LABEL (heading_label), value_label); gtk_grid_attach (GTK_GRID (details), value_label, 1, top, 1, 1); } static gchar * get_last_used_string (NMConnection *connection) { gchar *last_used = NULL; GDateTime *now = NULL; GDateTime *then = NULL; gint days; GTimeSpan diff; guint64 timestamp; NMSettingConnection *s_con; s_con = nm_connection_get_setting_connection (connection); if (s_con == NULL) goto out; timestamp = nm_setting_connection_get_timestamp (s_con); if (timestamp == 0) { last_used = g_strdup (_("never")); goto out; } /* calculate the amount of time that has elapsed */ now = g_date_time_new_now_utc (); then = g_date_time_new_from_unix_utc (timestamp); diff = g_date_time_difference (now, then); days = diff / G_TIME_SPAN_DAY; if (days == 0) last_used = g_strdup (_("today")); else if (days == 1) last_used = g_strdup (_("yesterday")); else last_used = g_strdup_printf (ngettext ("%i day ago", "%i days ago", days), days); out: if (now != NULL) g_date_time_unref (now); if (then != NULL) g_date_time_unref (then); return last_used; } static void add_details (GtkWidget *details, NMDevice *device, NMConnection *connection) { NMIPConfig *ip4_config = NULL; NMIPConfig *ip6_config = NULL; g_autofree gchar *ip4_address = NULL; g_autofree gchar *ip4_route = NULL; g_autofree gchar *ip4_dns = NULL; g_autofree gchar *ip6_address = NULL; g_autofree gchar *ip6_route = NULL; g_autofree gchar *ip6_dns = NULL; gint i = 0; ip4_config = nm_device_get_ip4_config (device); if (ip4_config) { ip4_address = panel_get_ip4_address_as_string (ip4_config, "address"); ip4_route = panel_get_ip4_address_as_string (ip4_config, "gateway"); ip4_dns = panel_get_dns_as_string (ip4_config); } ip6_config = nm_device_get_ip6_config (device); if (ip6_config) { ip6_address = panel_get_ip6_address_as_string (ip6_config, "address"); ip6_route = panel_get_ip6_address_as_string (ip6_config, "gateway"); ip6_dns = panel_get_dns_as_string (ip6_config); } if (ip4_address && ip6_address) { add_details_row (details, i++, _("IPv4 Address"), ip4_address); add_details_row (details, i++, _("IPv6 Address"), ip6_address); } else if (ip4_address) { add_details_row (details, i++, _("IP Address"), ip4_address); } else if (ip6_address) { add_details_row (details, i++, _("IP Address"), ip6_address); } add_details_row (details, i++, _("Hardware Address"), nm_device_ethernet_get_hw_address (NM_DEVICE_ETHERNET (device))); if (ip4_route && ip6_route) { g_autofree gchar *ip_routes = g_strjoin ("\n", ip4_route, ip6_route, NULL); add_details_row (details, i++, _("Default Route"), ip_routes); } else if (ip4_route) { add_details_row (details, i++, _("Default Route"), ip4_route); } else if (ip6_route) { add_details_row (details, i++, _("Default Route"), ip6_route); } if (ip4_dns && ip6_dns) { add_details_row (details, i++, _("DNS4"), ip4_dns); add_details_row (details, i++, _("DNS6"), ip6_dns); } else if (ip4_dns) { add_details_row (details, i++, _("DNS"), ip4_dns); } else if (ip6_dns) { add_details_row (details, i++, _("DNS"), ip6_dns); } if (nm_device_get_state (device) != NM_DEVICE_STATE_ACTIVATED) { g_autofree gchar *last_used = NULL; last_used = get_last_used_string (connection); add_details_row (details, i++, _("Last used"), last_used); } } static void populate_ui (NetDeviceEthernet *device); static gboolean device_state_to_off_switch (NMDeviceState state) { switch (state) { case NM_DEVICE_STATE_UNMANAGED: case NM_DEVICE_STATE_UNAVAILABLE: case NM_DEVICE_STATE_DISCONNECTED: case NM_DEVICE_STATE_DEACTIVATING: case NM_DEVICE_STATE_FAILED: return FALSE; default: return TRUE; } } static void device_ethernet_refresh_ui (NetDeviceEthernet *device) { NMDevice *nm_device; NMDeviceState state; GtkWidget *widget; g_autofree gchar *speed = NULL; nm_device = net_device_get_nm_device (NET_DEVICE (device)); widget = GTK_WIDGET (gtk_builder_get_object (device->builder, "label_device")); gtk_label_set_label (GTK_LABEL (widget), net_object_get_title (NET_OBJECT (device))); widget = GTK_WIDGET (gtk_builder_get_object (device->builder, "image_device")); gtk_image_set_from_icon_name (GTK_IMAGE (widget), panel_device_to_icon_name (nm_device, FALSE), GTK_ICON_SIZE_DIALOG); widget = GTK_WIDGET (gtk_builder_get_object (device->builder, "device_off_switch")); state = nm_device_get_state (nm_device); gtk_widget_set_visible (widget, state != NM_DEVICE_STATE_UNAVAILABLE && state != NM_DEVICE_STATE_UNMANAGED); device->updating_device = TRUE; gtk_switch_set_active (GTK_SWITCH (widget), device_state_to_off_switch (state)); device->updating_device = FALSE; if (state != NM_DEVICE_STATE_UNAVAILABLE) speed = net_device_simple_get_speed (NET_DEVICE_SIMPLE (device)); panel_set_device_status (device->builder, "label_status", nm_device, speed); populate_ui (device); } static void editor_done (NetConnectionEditor *editor, gboolean success, NetDeviceEthernet *device) { g_object_unref (editor); device_ethernet_refresh_ui (device); } static void show_details (GtkButton *button, NetDeviceEthernet *device, const gchar *title) { GtkWidget *row; NMConnection *connection; GtkWidget *window; NetConnectionEditor *editor; NMClient *client; NMDevice *nmdev; window = gtk_widget_get_toplevel (GTK_WIDGET (button)); row = GTK_WIDGET (g_object_get_data (G_OBJECT (button), "row")); connection = NM_CONNECTION (g_object_get_data (G_OBJECT (row), "connection")); nmdev = net_device_get_nm_device (NET_DEVICE (device)); client = net_object_get_client (NET_OBJECT (device)); editor = net_connection_editor_new (GTK_WINDOW (window), connection, nmdev, NULL, client); if (title) net_connection_editor_set_title (editor, title); g_signal_connect (editor, "done", G_CALLBACK (editor_done), device); net_connection_editor_run (editor); } static void show_details_for_row (GtkButton *button, NetDeviceEthernet *device) { show_details (button, device, NULL); } static void show_details_for_wired (GtkButton *button, NetDeviceEthernet *device) { /* Translators: This is used as the title of the connection * details window for ethernet, if there is only a single * profile. It is also used to display ethernet in the * device list. */ show_details (button, device, _("Wired")); } static void add_row (NetDeviceEthernet *device, NMConnection *connection) { GtkWidget *row; GtkWidget *widget; GtkWidget *box; GtkWidget *details; NMDevice *nmdev; NMActiveConnection *aconn; gboolean active; GtkWidget *image; active = FALSE; nmdev = net_device_get_nm_device (NET_DEVICE (device)); aconn = nm_device_get_active_connection (nmdev); if (aconn) { const gchar *uuid1, *uuid2; uuid1 = nm_active_connection_get_uuid (aconn); uuid2 = nm_connection_get_uuid (connection); active = g_strcmp0 (uuid1, uuid2) == 0; } row = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); gtk_box_pack_start (GTK_BOX (row), box, FALSE, TRUE, 0); widget = gtk_label_new (nm_connection_get_id (connection)); gtk_widget_set_margin_start (widget, 12); gtk_widget_set_margin_end (widget, 12); gtk_widget_set_margin_top (widget, 12); gtk_widget_set_margin_bottom (widget, 12); gtk_box_pack_start (GTK_BOX (box), widget, FALSE, TRUE, 0); if (active) { widget = gtk_image_new_from_icon_name ("object-select-symbolic", GTK_ICON_SIZE_MENU); gtk_widget_set_halign (widget, GTK_ALIGN_CENTER); gtk_widget_set_valign (widget, GTK_ALIGN_CENTER); gtk_box_pack_start (GTK_BOX (box), widget, FALSE, TRUE, 0); details = gtk_grid_new (); gtk_grid_set_row_spacing (GTK_GRID (details), 10); gtk_grid_set_column_spacing (GTK_GRID (details), 10); gtk_box_pack_start (GTK_BOX (row), details, FALSE, TRUE, 0); add_details (details, nmdev, connection); } /* filler */ widget = gtk_label_new (""); gtk_widget_set_hexpand (widget, TRUE); gtk_box_pack_start (GTK_BOX (box), widget, TRUE, TRUE, 0); image = gtk_image_new_from_icon_name ("emblem-system-symbolic", GTK_ICON_SIZE_MENU); gtk_widget_show (image); widget = gtk_button_new (); gtk_style_context_add_class (gtk_widget_get_style_context (widget), "image-button"); gtk_widget_set_margin_start (widget, 12); gtk_widget_set_margin_end (widget, 12); gtk_widget_set_margin_top (widget, 12); gtk_widget_set_margin_bottom (widget, 12); gtk_widget_show (widget); gtk_container_add (GTK_CONTAINER (widget), image); gtk_widget_set_halign (widget, GTK_ALIGN_CENTER); gtk_widget_set_valign (widget, GTK_ALIGN_CENTER); atk_object_set_name (gtk_widget_get_accessible (widget), _("Options…")); gtk_box_pack_start (GTK_BOX (box), widget, FALSE, TRUE, 0); g_object_set_data (G_OBJECT (row), "edit", widget); g_object_set_data (G_OBJECT (widget), "row", row); g_signal_connect (widget, "clicked", G_CALLBACK (show_details_for_row), device); gtk_widget_show_all (row); g_object_set_data (G_OBJECT (row), "connection", connection); gtk_container_add (GTK_CONTAINER (device->list), row); } static void connection_removed (NMClient *client, NMRemoteConnection *connection, NetDeviceEthernet *device) { if (g_hash_table_remove (device->connections, connection)) device_ethernet_refresh_ui (device); } static void populate_ui (NetDeviceEthernet *device) { GList *children, *c; GSList *connections, *l; NMConnection *connection; gint n_connections; children = gtk_container_get_children (GTK_CONTAINER (device->list)); for (c = children; c; c = c->next) { gtk_container_remove (GTK_CONTAINER (device->list), c->data); } g_list_free (children); children = gtk_container_get_children (GTK_CONTAINER (device->details)); for (c = children; c; c = c->next) { gtk_container_remove (GTK_CONTAINER (device->details), c->data); } g_list_free (children); connections = net_device_get_valid_connections (NET_DEVICE (device)); for (l = connections; l; l = l->next) { NMConnection *connection = l->data; if (!g_hash_table_contains (device->connections, connection)) { g_hash_table_add (device->connections, connection); } } n_connections = g_slist_length (connections); if (n_connections > 4) { gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (device->scrolled_window), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); gtk_widget_set_vexpand (device->scrolled_window, TRUE); } else { gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (device->scrolled_window), GTK_POLICY_NEVER, GTK_POLICY_NEVER); gtk_widget_set_vexpand (device->scrolled_window, FALSE); } if (n_connections > 1) { gtk_widget_hide (device->details); gtk_widget_hide (device->details_button); for (l = connections; l; l = l->next) { NMConnection *connection = l->data; add_row (device, connection); } gtk_widget_show (device->scrolled_window); } else if (n_connections == 1) { connection = connections->data; gtk_widget_hide (device->scrolled_window); add_details (device->details, net_device_get_nm_device (NET_DEVICE (device)), connection); gtk_widget_show_all (device->details); gtk_widget_show (device->details_button); g_object_set_data (G_OBJECT (device->details_button), "row", device->details_button); g_object_set_data (G_OBJECT (device->details_button), "connection", connection); } else { gtk_widget_hide (device->scrolled_window); gtk_widget_hide (device->details); gtk_widget_hide (device->details_button); } g_slist_free (connections); } static void client_connection_added_cb (NMClient *client, NMRemoteConnection *connection, NetDeviceEthernet *device) { device_ethernet_refresh_ui (device); } static void add_profile (GtkButton *button, NetDeviceEthernet *device) { NMConnection *connection; NMSettingConnection *sc; gchar *uuid, *id; NetConnectionEditor *editor; GtkWidget *window; NMClient *client; NMDevice *nmdev; const GPtrArray *connections; connection = nm_simple_connection_new (); sc = NM_SETTING_CONNECTION (nm_setting_connection_new ()); nm_connection_add_setting (connection, NM_SETTING (sc)); uuid = nm_utils_uuid_generate (); client = net_object_get_client (NET_OBJECT (device)); connections = nm_client_get_connections (client); id = ce_page_get_next_available_name (connections, NAME_FORMAT_PROFILE, NULL); g_object_set (sc, NM_SETTING_CONNECTION_UUID, uuid, NM_SETTING_CONNECTION_ID, id, NM_SETTING_CONNECTION_TYPE, NM_SETTING_WIRED_SETTING_NAME, NM_SETTING_CONNECTION_AUTOCONNECT, TRUE, NULL); nm_connection_add_setting (connection, nm_setting_wired_new ()); g_free (uuid); g_free (id); window = gtk_widget_get_toplevel (GTK_WIDGET (button)); nmdev = net_device_get_nm_device (NET_DEVICE (device)); editor = net_connection_editor_new (GTK_WINDOW (window), connection, nmdev, NULL, client); g_signal_connect (editor, "done", G_CALLBACK (editor_done), device); net_connection_editor_run (editor); } static void device_off_toggled (GtkSwitch *sw, GParamSpec *pspec, NetDeviceEthernet *device) { NMClient *client; NMDevice *nm_device; NMConnection *connection; if (device->updating_device) return; client = net_object_get_client (NET_OBJECT (device)); nm_device = net_device_get_nm_device (NET_DEVICE (device)); if (gtk_switch_get_active (sw)) { connection = net_device_get_find_connection (NET_DEVICE (device)); if (connection != NULL) { nm_client_activate_connection_async (client, connection, nm_device, NULL, NULL, NULL, NULL); } } else { nm_device_disconnect (nm_device, NULL, NULL); } } static void device_title_changed (NetDeviceEthernet *device, GParamSpec *pspec, gpointer user_data) { device_ethernet_refresh_ui (device); } static void connection_activated (GtkListBox *list, GtkListBoxRow *row, NetDeviceEthernet *device) { NMClient *client; NMDevice *nm_device; NMConnection *connection; client = net_object_get_client (NET_OBJECT (device)); nm_device = net_device_get_nm_device (NET_DEVICE (device)); if (!NM_IS_DEVICE_ETHERNET (nm_device) || !nm_device_ethernet_get_carrier (NM_DEVICE_ETHERNET (nm_device))) return; connection = NM_CONNECTION (g_object_get_data (G_OBJECT (gtk_bin_get_child (GTK_BIN (row))), "connection")); nm_client_activate_connection_async (client, connection, nm_device, NULL, NULL, NULL, NULL); } static void device_ethernet_constructed (GObject *object) { NetDeviceEthernet *device = NET_DEVICE_ETHERNET (object); NMClient *client; GtkWidget *list; GtkWidget *swin; GtkWidget *widget; widget = GTK_WIDGET (gtk_builder_get_object (device->builder, "device_off_switch")); g_signal_connect (widget, "notify::active", G_CALLBACK (device_off_toggled), device); device->scrolled_window = swin = GTK_WIDGET (gtk_builder_get_object (device->builder, "list")); device->list = list = GTK_WIDGET (gtk_list_box_new ()); gtk_list_box_set_selection_mode (GTK_LIST_BOX (list), GTK_SELECTION_NONE); gtk_list_box_set_header_func (GTK_LIST_BOX (list), cc_list_box_update_header_func, NULL, NULL); gtk_container_add (GTK_CONTAINER (swin), list); g_signal_connect (list, "row-activated", G_CALLBACK (connection_activated), device); gtk_widget_show (list); device->details = GTK_WIDGET (gtk_builder_get_object (device->builder, "details")); device->details_button = GTK_WIDGET (gtk_builder_get_object (device->builder, "details_button")); g_signal_connect (device->details_button, "clicked", G_CALLBACK (show_details_for_wired), device); device->add_profile_button = GTK_WIDGET (gtk_builder_get_object (device->builder, "add_profile_button")); g_signal_connect (device->add_profile_button, "clicked", G_CALLBACK (add_profile), device); client = net_object_get_client (NET_OBJECT (object)); g_signal_connect (client, NM_CLIENT_CONNECTION_ADDED, G_CALLBACK (client_connection_added_cb), object); g_signal_connect_object (client, NM_CLIENT_CONNECTION_REMOVED, G_CALLBACK (connection_removed), device, 0); device_ethernet_refresh_ui (device); } static void device_ethernet_finalize (GObject *object) { NetDeviceEthernet *device = NET_DEVICE_ETHERNET (object); g_object_unref (device->builder); g_hash_table_destroy (device->connections); G_OBJECT_CLASS (net_device_ethernet_parent_class)->finalize (object); } static void device_ethernet_refresh (NetObject *object) { NetDeviceEthernet *device = NET_DEVICE_ETHERNET (object); device_ethernet_refresh_ui (device); } static void net_device_ethernet_class_init (NetDeviceEthernetClass *klass) { NetDeviceSimpleClass *simple_class = NET_DEVICE_SIMPLE_CLASS (klass); NetObjectClass *obj_class = NET_OBJECT_CLASS (klass); GObjectClass *object_class = G_OBJECT_CLASS (klass); simple_class->get_speed = device_ethernet_get_speed; obj_class->refresh = device_ethernet_refresh; obj_class->add_to_notebook = device_ethernet_add_to_notebook; object_class->constructed = device_ethernet_constructed; object_class->finalize = device_ethernet_finalize; } static void net_device_ethernet_init (NetDeviceEthernet *device) { GError *error = NULL; device->builder = gtk_builder_new (); gtk_builder_add_from_resource (device->builder, "/org/cinnamon/control-center/network/network-ethernet.ui", &error); if (error != NULL) { g_warning ("Could not load interface file: %s", error->message); g_error_free (error); return; } device->connections = g_hash_table_new (NULL, NULL); g_signal_connect (device, "notify::title", G_CALLBACK (device_title_changed), NULL); } cinnamon-control-center-6.2.0/panels/network/net-device.h0000664000175000017500000000456714632072346022373 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2011 Richard Hughes * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __NET_DEVICE_H #define __NET_DEVICE_H #include #include #include "net-object.h" G_BEGIN_DECLS #define NET_TYPE_DEVICE (net_device_get_type ()) #define NET_DEVICE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), NET_TYPE_DEVICE, NetDevice)) #define NET_DEVICE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), NET_TYPE_DEVICE, NetDeviceClass)) #define NET_IS_DEVICE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), NET_TYPE_DEVICE)) #define NET_IS_DEVICE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), NET_TYPE_DEVICE)) #define NET_DEVICE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), NET_TYPE_DEVICE, NetDeviceClass)) typedef struct _NetDevicePrivate NetDevicePrivate; typedef struct _NetDevice NetDevice; typedef struct _NetDeviceClass NetDeviceClass; struct _NetDevice { NetObject parent; NetDevicePrivate *priv; }; struct _NetDeviceClass { NetObjectClass parent_class; NMConnection * (*get_find_connection) (NetDevice *device); }; GType net_device_get_type (void); NetDevice *net_device_new (void); NMDevice *net_device_get_nm_device (NetDevice *device); NMConnection *net_device_get_find_connection (NetDevice *device); GSList *net_device_get_valid_connections (NetDevice *device); G_END_DECLS #endif /* __NET_DEVICE_H */ cinnamon-control-center-6.2.0/panels/network/net-device-simple.h0000664000175000017500000000504314632072346023650 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2011-2012 Richard Hughes * Copyright (C) 2012 Red Hat, Inc. * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __NET_DEVICE_SIMPLE_H #define __NET_DEVICE_SIMPLE_H #include #include "net-device.h" G_BEGIN_DECLS #define NET_TYPE_DEVICE_SIMPLE (net_device_simple_get_type ()) #define NET_DEVICE_SIMPLE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), NET_TYPE_DEVICE_SIMPLE, NetDeviceSimple)) #define NET_DEVICE_SIMPLE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), NET_TYPE_DEVICE_SIMPLE, NetDeviceSimpleClass)) #define NET_IS_DEVICE_SIMPLE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), NET_TYPE_DEVICE_SIMPLE)) #define NET_IS_DEVICE_SIMPLE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), NET_TYPE_DEVICE_SIMPLE)) #define NET_DEVICE_SIMPLE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), NET_TYPE_DEVICE_SIMPLE, NetDeviceSimpleClass)) typedef struct _NetDeviceSimplePrivate NetDeviceSimplePrivate; typedef struct _NetDeviceSimple NetDeviceSimple; typedef struct _NetDeviceSimpleClass NetDeviceSimpleClass; struct _NetDeviceSimple { NetDevice parent; NetDeviceSimplePrivate *priv; }; struct _NetDeviceSimpleClass { NetDeviceClass parent_class; char *(*get_speed) (NetDeviceSimple *device_simple); }; GType net_device_simple_get_type (void); char *net_device_simple_get_speed (NetDeviceSimple *device_simple); void net_device_simple_add_row (NetDeviceSimple *device_simple, const char *label, const char *property_name); G_END_DECLS #endif /* __NET_DEVICE_SIMPLE_H */ cinnamon-control-center-6.2.0/panels/network/network.ui0000664000175000017500000001755314632072346022226 0ustar fabiofabio 65535 1 65535 1 65535 1 65535 1 True False 12 550 6 6 6 6 True False 3 True False 6 True False 12 12 12 True True never in True True liststore_devices False 2 False True True 0 True False icons False 1 False True False False Add Device True list-add-symbolic False True False True False False Remove Device True list-remove-symbolic False True False True 1 True True 0 True True False True True 1 True True 0 True True 0 cinnamon-control-center-6.2.0/panels/network/net-proxy.h0000664000175000017500000000400714632072346022302 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2011-2012 Richard Hughes * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __NET_PROXY_H #define __NET_PROXY_H #include #include "net-object.h" G_BEGIN_DECLS #define NET_TYPE_PROXY (net_proxy_get_type ()) #define NET_PROXY(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), NET_TYPE_PROXY, NetProxy)) #define NET_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), NET_TYPE_PROXY, NetProxyClass)) #define NET_IS_PROXY(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), NET_TYPE_PROXY)) #define NET_IS_PROXY_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), NET_TYPE_PROXY)) #define NET_PROXY_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), NET_TYPE_PROXY, NetProxyClass)) typedef struct _NetProxyPrivate NetProxyPrivate; typedef struct _NetProxy NetProxy; typedef struct _NetProxyClass NetProxyClass; struct _NetProxy { NetObject parent; NetProxyPrivate *priv; }; struct _NetProxyClass { NetObjectClass parent_class; }; GType net_proxy_get_type (void); NetProxy *net_proxy_new (void); G_END_DECLS #endif /* __NET_PROXY_H */ cinnamon-control-center-6.2.0/panels/network/net-device.c0000664000175000017500000002665314632072346022366 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2011 Richard Hughes * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "config.h" #include #include #include #include #include #include "net-device.h" #define NET_DEVICE_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), NET_TYPE_DEVICE, NetDevicePrivate)) struct _NetDevicePrivate { NMDevice *nm_device; guint changed_id; }; enum { PROP_0, PROP_DEVICE, PROP_LAST }; G_DEFINE_TYPE (NetDevice, net_device, NET_TYPE_OBJECT) /* return value must be freed by caller with g_free() */ static gchar * get_mac_address_of_connection (NMConnection *connection) { if (!connection) return NULL; /* check the connection type */ if (nm_connection_is_type (connection, NM_SETTING_WIRELESS_SETTING_NAME)) { /* check wireless settings */ NMSettingWireless *s_wireless = nm_connection_get_setting_wireless (connection); if (!s_wireless) return NULL; return g_strdup (nm_setting_wireless_get_mac_address (s_wireless)); } else if (nm_connection_is_type (connection, NM_SETTING_WIRED_SETTING_NAME)) { /* check wired settings */ NMSettingWired *s_wired = nm_connection_get_setting_wired (connection); if (!s_wired) return NULL; return g_strdup (nm_setting_wired_get_mac_address (s_wired)); } /* no MAC address found */ return NULL; } /* return value must not be freed! */ static const gchar * get_mac_address_of_device (NMDevice *device) { const gchar *mac = NULL; switch (nm_device_get_device_type (device)) { case NM_DEVICE_TYPE_WIFI: { NMDeviceWifi *device_wifi = NM_DEVICE_WIFI (device); mac = nm_device_wifi_get_hw_address (device_wifi); break; } case NM_DEVICE_TYPE_ETHERNET: { NMDeviceEthernet *device_ethernet = NM_DEVICE_ETHERNET (device); mac = nm_device_ethernet_get_hw_address (device_ethernet); break; } default: break; } /* no MAC address found */ return mac; } /* returns TRUE if both MACs are equal */ static gboolean compare_mac_device_with_mac_connection (NMDevice *device, NMConnection *connection) { const gchar *mac_dev = NULL; gchar *mac_conn = NULL; mac_dev = get_mac_address_of_device (device); if (mac_dev != NULL) { mac_conn = get_mac_address_of_connection (connection); if (mac_conn) { /* compare both MACs */ if (g_strcmp0 (mac_dev, mac_conn) == 0) { g_free (mac_conn); return TRUE; } g_free (mac_conn); } } return FALSE; } static NMConnection * net_device_real_get_find_connection (NetDevice *device) { GSList *list, *iterator; NMConnection *connection = NULL; NMActiveConnection *ac; /* is the device available in a active connection? */ ac = nm_device_get_active_connection (device->priv->nm_device); if (ac) return (NMConnection*) nm_active_connection_get_connection (ac); /* not found in active connections - check all available connections */ list = net_device_get_valid_connections (device); if (list != NULL) { /* if list has only one connection, use this connection */ if (g_slist_length (list) == 1) { connection = list->data; goto out; } /* is there connection with the MAC address of the device? */ for (iterator = list; iterator; iterator = iterator->next) { connection = iterator->data; if (compare_mac_device_with_mac_connection (device->priv->nm_device, connection)) { goto out; } } } /* no connection found for the given device */ connection = NULL; out: g_slist_free (list); return connection; } NMConnection * net_device_get_find_connection (NetDevice *device) { return NET_DEVICE_GET_CLASS (device)->get_find_connection (device); } static void state_changed_cb (NMDevice *device, NMDeviceState new_state, NMDeviceState old_state, NMDeviceStateReason reason, NetDevice *net_device) { net_object_emit_changed (NET_OBJECT (net_device)); net_object_refresh (NET_OBJECT (net_device)); } NMDevice * net_device_get_nm_device (NetDevice *device) { g_return_val_if_fail (NET_IS_DEVICE (device), NULL); return device->priv->nm_device; } static void net_device_edit (NetObject *object) { const gchar *uuid; gchar *cmdline; GError *error = NULL; NetDevice *device = NET_DEVICE (object); NMConnection *connection; connection = net_device_get_find_connection (device); uuid = nm_connection_get_uuid (connection); cmdline = g_strdup_printf ("nm-connection-editor --edit %s", uuid); g_debug ("Launching '%s'\n", cmdline); if (!g_spawn_command_line_async (cmdline, &error)) { g_warning ("Failed to launch nm-connection-editor: %s", error->message); g_error_free (error); } g_free (cmdline); } /** * net_device_get_property: **/ static void net_device_get_property (GObject *device_, guint prop_id, GValue *value, GParamSpec *pspec) { NetDevice *net_device = NET_DEVICE (device_); NetDevicePrivate *priv = net_device->priv; switch (prop_id) { case PROP_DEVICE: g_value_set_object (value, priv->nm_device); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (net_device, prop_id, pspec); break; } } /** * net_device_set_property: **/ static void net_device_set_property (GObject *device_, guint prop_id, const GValue *value, GParamSpec *pspec) { NetDevice *net_device = NET_DEVICE (device_); NetDevicePrivate *priv = net_device->priv; switch (prop_id) { case PROP_DEVICE: if (priv->changed_id != 0) { g_signal_handler_disconnect (priv->nm_device, priv->changed_id); } priv->nm_device = g_value_dup_object (value); if (priv->nm_device) { priv->changed_id = g_signal_connect (priv->nm_device, "state-changed", G_CALLBACK (state_changed_cb), net_device); } else priv->changed_id = 0; break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (net_device, prop_id, pspec); break; } } static void net_device_finalize (GObject *object) { NetDevice *device = NET_DEVICE (object); NetDevicePrivate *priv = device->priv; if (priv->changed_id != 0) { g_signal_handler_disconnect (priv->nm_device, priv->changed_id); } if (priv->nm_device != NULL) g_object_unref (priv->nm_device); G_OBJECT_CLASS (net_device_parent_class)->finalize (object); } static void net_device_class_init (NetDeviceClass *klass) { GParamSpec *pspec; GObjectClass *object_class = G_OBJECT_CLASS (klass); NetObjectClass *parent_class = NET_OBJECT_CLASS (klass); object_class->finalize = net_device_finalize; object_class->get_property = net_device_get_property; object_class->set_property = net_device_set_property; parent_class->edit = net_device_edit; klass->get_find_connection = net_device_real_get_find_connection; pspec = g_param_spec_object ("nm-device", NULL, NULL, NM_TYPE_DEVICE, G_PARAM_READWRITE | G_PARAM_CONSTRUCT); g_object_class_install_property (object_class, PROP_DEVICE, pspec); g_type_class_add_private (klass, sizeof (NetDevicePrivate)); } static void net_device_init (NetDevice *device) { device->priv = NET_DEVICE_GET_PRIVATE (device); } NetDevice * net_device_new (void) { NetDevice *device; device = g_object_new (NET_TYPE_DEVICE, "removable", FALSE, NULL); return NET_DEVICE (device); } GSList * net_device_get_valid_connections (NetDevice *device) { GSList *valid; NMConnection *connection; NMSettingConnection *s_con; NMActiveConnection *active_connection; const char *active_uuid; const GPtrArray *all; GPtrArray *filtered; guint i; all = nm_client_get_connections (net_object_get_client (NET_OBJECT (device))); filtered = nm_device_filter_connections (net_device_get_nm_device (device), all); active_connection = nm_device_get_active_connection (net_device_get_nm_device (device)); active_uuid = active_connection ? nm_active_connection_get_uuid (active_connection) : NULL; valid = NULL; for (i = 0; i < filtered->len; i++) { connection = g_ptr_array_index (filtered, i); s_con = nm_connection_get_setting_connection (connection); if (!s_con) continue; if (nm_setting_connection_get_master (s_con) && g_strcmp0 (nm_setting_connection_get_uuid (s_con), active_uuid) != 0) continue; valid = g_slist_prepend (valid, connection); } g_ptr_array_free (filtered, FALSE); return g_slist_reverse (valid); } cinnamon-control-center-6.2.0/panels/network/network-ethernet.ui0000664000175000017500000002222614632072346024033 0ustar fabiofabio True False emblem-system-symbolic 1 True False 12 True False vertical 6 True False end start 1 48 network-wired 6 0 0 1 1 True False start True True False 0 Wired end False False 0 True False 0 Cable unplugged False False 1 1 0 1 1 True True 12 True never in 0 1 3 1 True False 12 True True 10 10 0 2 3 1 True True end center True 2 0 1 1 True True 0 True False 18 _Add Profile… True True True start True True True 0 True True True end image1 Options… True True 1 False True 1 cinnamon-control-center-6.2.0/panels/network/net-object.c0000664000175000017500000002567714632072346022402 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2011 Richard Hughes * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include "config.h" #include #include #include "net-object.h" #define NET_OBJECT_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), NET_TYPE_OBJECT, NetObjectPrivate)) struct _NetObjectPrivate { gchar *id; gchar *title; gboolean removable; GCancellable *cancellable; NMClient *client; CcNetworkPanel *panel; }; enum { PROP_0, PROP_ID, PROP_TITLE, PROP_REMOVABLE, PROP_CLIENT, PROP_CANCELLABLE, PROP_PANEL, PROP_LAST }; enum { SIGNAL_CHANGED, SIGNAL_REMOVED, SIGNAL_LAST }; static guint signals[SIGNAL_LAST] = { 0 }; G_DEFINE_TYPE (NetObject, net_object, G_TYPE_OBJECT) void net_object_emit_changed (NetObject *object) { g_return_if_fail (NET_IS_OBJECT (object)); g_debug ("NetObject: %s emit 'changed'", object->priv->id); g_signal_emit (object, signals[SIGNAL_CHANGED], 0); } void net_object_emit_removed (NetObject *object) { g_return_if_fail (NET_IS_OBJECT (object)); g_debug ("NetObject: %s emit 'removed'", object->priv->id); g_signal_emit (object, signals[SIGNAL_REMOVED], 0); } const gchar * net_object_get_id (NetObject *object) { g_return_val_if_fail (NET_IS_OBJECT (object), NULL); return object->priv->id; } void net_object_set_id (NetObject *object, const gchar *id) { g_return_if_fail (NET_IS_OBJECT (object)); g_clear_pointer (&object->priv->id, g_free); object->priv->id = g_strdup (id); g_object_notify (G_OBJECT (object), "id"); } gboolean net_object_get_removable (NetObject *object) { g_return_val_if_fail (NET_IS_OBJECT (object), FALSE); return object->priv->removable; } const gchar * net_object_get_title (NetObject *object) { g_return_val_if_fail (NET_IS_OBJECT (object), NULL); return object->priv->title; } void net_object_set_title (NetObject *object, const gchar *title) { g_return_if_fail (NET_IS_OBJECT (object)); g_clear_pointer (&object->priv->title, g_free); object->priv->title = g_strdup (title); g_object_notify (G_OBJECT (object), "title"); } NMClient * net_object_get_client (NetObject *object) { g_return_val_if_fail (NET_IS_OBJECT (object), NULL); return object->priv->client; } GCancellable * net_object_get_cancellable (NetObject *object) { g_return_val_if_fail (NET_IS_OBJECT (object), NULL); return object->priv->cancellable; } CcNetworkPanel * net_object_get_panel (NetObject *object) { g_return_val_if_fail (NET_IS_OBJECT (object), NULL); return object->priv->panel; } GtkWidget * net_object_add_to_notebook (NetObject *object, GtkNotebook *notebook, GtkSizeGroup *heading_size_group) { GtkWidget *widget; NetObjectClass *klass = NET_OBJECT_GET_CLASS (object); if (klass->add_to_notebook != NULL) { widget = klass->add_to_notebook (object, notebook, heading_size_group); g_object_set_data_full (G_OBJECT (widget), "NetObject::id", g_strdup (object->priv->id), g_free); return widget; } g_debug ("no klass->add_to_notebook for %s", object->priv->id); return NULL; } void net_object_delete (NetObject *object) { NetObjectClass *klass = NET_OBJECT_GET_CLASS (object); if (klass->delete != NULL) klass->delete (object); } void net_object_refresh (NetObject *object) { NetObjectClass *klass = NET_OBJECT_GET_CLASS (object); if (klass->refresh != NULL) klass->refresh (object); } void net_object_edit (NetObject *object) { NetObjectClass *klass = NET_OBJECT_GET_CLASS (object); if (klass->edit != NULL) klass->edit (object); } /** * net_object_get_property: **/ static void net_object_get_property (GObject *object_, guint prop_id, GValue *value, GParamSpec *pspec) { NetObject *object = NET_OBJECT (object_); NetObjectPrivate *priv = object->priv; switch (prop_id) { case PROP_ID: g_value_set_string (value, priv->id); break; case PROP_TITLE: g_value_set_string (value, priv->title); break; case PROP_REMOVABLE: g_value_set_boolean (value, priv->removable); break; case PROP_CLIENT: g_value_set_pointer (value, priv->client); break; case PROP_CANCELLABLE: g_value_set_object (value, priv->cancellable); break; case PROP_PANEL: g_value_set_pointer (value, priv->panel); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; } } /** * net_object_set_property: **/ static void net_object_set_property (GObject *object_, guint prop_id, const GValue *value, GParamSpec *pspec) { NetObject *object = NET_OBJECT (object_); NetObjectPrivate *priv = object->priv; switch (prop_id) { case PROP_ID: g_free (priv->id); priv->id = g_strdup (g_value_get_string (value)); break; case PROP_TITLE: g_free (priv->title); priv->title = g_strdup (g_value_get_string (value)); break; case PROP_REMOVABLE: priv->removable = g_value_get_boolean (value); break; case PROP_CLIENT: priv->client = g_value_get_pointer (value); if (priv->client) g_object_add_weak_pointer (G_OBJECT (priv->client), (gpointer *) (&priv->client)); break; case PROP_CANCELLABLE: g_assert (!priv->cancellable); priv->cancellable = g_value_dup_object (value); break; case PROP_PANEL: g_assert (!priv->panel); priv->panel = g_value_get_pointer (value); if (priv->panel) g_object_add_weak_pointer (G_OBJECT (priv->panel), (gpointer *) (&priv->panel)); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; } } static void net_object_finalize (GObject *object) { NetObject *nm_object = NET_OBJECT (object); NetObjectPrivate *priv = nm_object->priv; g_free (priv->id); g_free (priv->title); if (priv->cancellable != NULL) g_object_unref (priv->cancellable); if (priv->client) g_object_remove_weak_pointer (G_OBJECT (priv->client), (gpointer *) (&priv->client)); if (priv->panel) g_object_remove_weak_pointer (G_OBJECT (priv->panel), (gpointer *) (&priv->panel)); G_OBJECT_CLASS (net_object_parent_class)->finalize (object); } static void net_object_class_init (NetObjectClass *klass) { GParamSpec *pspec; GObjectClass *object_class = G_OBJECT_CLASS (klass); object_class->finalize = net_object_finalize; object_class->get_property = net_object_get_property; object_class->set_property = net_object_set_property; pspec = g_param_spec_string ("id", NULL, NULL, NULL, G_PARAM_READWRITE); g_object_class_install_property (object_class, PROP_ID, pspec); pspec = g_param_spec_string ("title", NULL, NULL, NULL, G_PARAM_READWRITE | G_PARAM_CONSTRUCT); g_object_class_install_property (object_class, PROP_TITLE, pspec); pspec = g_param_spec_boolean ("removable", NULL, NULL, TRUE, G_PARAM_READWRITE | G_PARAM_CONSTRUCT); g_object_class_install_property (object_class, PROP_REMOVABLE, pspec); pspec = g_param_spec_pointer ("client", NULL, NULL, G_PARAM_READWRITE | G_PARAM_CONSTRUCT); g_object_class_install_property (object_class, PROP_CLIENT, pspec); pspec = g_param_spec_object ("cancellable", NULL, NULL, G_TYPE_CANCELLABLE, G_PARAM_READWRITE | G_PARAM_CONSTRUCT); g_object_class_install_property (object_class, PROP_CANCELLABLE, pspec); pspec = g_param_spec_pointer ("panel", NULL, NULL, G_PARAM_READWRITE | G_PARAM_CONSTRUCT); g_object_class_install_property (object_class, PROP_PANEL, pspec); signals[SIGNAL_CHANGED] = g_signal_new ("changed", G_TYPE_FROM_CLASS (object_class), G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (NetObjectClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); signals[SIGNAL_REMOVED] = g_signal_new ("removed", G_TYPE_FROM_CLASS (object_class), G_SIGNAL_RUN_LAST, G_STRUCT_OFFSET (NetObjectClass, changed), NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); g_type_class_add_private (klass, sizeof (NetObjectPrivate)); } static void net_object_init (NetObject *object) { object->priv = NET_OBJECT_GET_PRIVATE (object); } cinnamon-control-center-6.2.0/panels/network/net-vpn.h0000664000175000017500000000364614632072346021734 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2011 Richard Hughes * * Licensed under the GNU General Public License Version 2 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __NET_VPN_H #define __NET_VPN_H #include #include #include "net-object.h" G_BEGIN_DECLS #define NET_TYPE_VPN (net_vpn_get_type ()) #define NET_VPN(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), NET_TYPE_VPN, NetVpn)) #define NET_VPN_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), NET_TYPE_VPN, NetVpnClass)) #define NET_IS_VPN(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), NET_TYPE_VPN)) #define NET_IS_VPN_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), NET_TYPE_VPN)) #define NET_VPN_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), NET_TYPE_VPN, NetVpnClass)) typedef struct _NetVpnPrivate NetVpnPrivate; typedef struct _NetVpn NetVpn; typedef struct _NetVpnClass NetVpnClass; struct _NetVpn { NetObject parent; NetVpnPrivate *priv; }; struct _NetVpnClass { NetObjectClass parent_class; }; GType net_vpn_get_type (void); G_END_DECLS #endif /* __NET_VPN_H */ cinnamon-control-center-6.2.0/panels/network/network-mobile.ui0000664000175000017500000004644414632072346023474 0ustar fabiofabio True False 12 6 True False start 10 6 True False 1 IMEI label_imei 0 1 1 1 True False 1 Provider label_provider 0 3 1 1 True False 0 1234567890 True 1 1 2 1 True False 0 SuperTel Supremo True 1 3 2 1 True False 0 127.0.0.1 True 1 4 2 1 True False 0 True 1 5 2 1 True False 0 True 1 6 2 1 True False 0 0 True True 1 7 2 1 True False 0 0 True True 1 8 2 1 True False end start 2 0 1 1 True False 1 IP Address 0 4 1 1 True False 1 0 IPv6 Address 0 5 1 1 True False 1 Default Route 0 6 1 1 True False 1 0 DNS4 0 7 1 1 True False 1 0 DNS6 0 8 1 1 True False 1 Network 0 2 1 1 True False liststore_mobile_connections 1 1 2 1 1 True False 6 True False end start 1 48 network-cellular-connected 6 False True 0 True False start True 3 True False 0 Mobile Broadband end False False 0 True False 0 Not connected False False 1 False True 1 True True end center False True 2 0 0 3 1 False True 0 True False 1 1 0 0 12 True True True True True False emblem-system-symbolic 1 Options… True True end 1 cinnamon-control-center-6.2.0/panels/wacom/0000775000175000017500000000000014632072346017600 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/wacom/cc-wacom-nav-button.h0000664000175000017500000000176014632072346023541 0ustar fabiofabio/* * Copyright Ā© 2011 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Authors: Bastien Nocera */ #pragma once #include G_BEGIN_DECLS #define CC_TYPE_WACOM_NAV_BUTTON (cc_wacom_nav_button_get_type ()) G_DECLARE_FINAL_TYPE (CcWacomNavButton, cc_wacom_nav_button, CC, WACOM_NAV_BUTTON, GtkBox) GtkWidget * cc_wacom_nav_button_new (void); G_END_DECLS cinnamon-control-center-6.2.0/panels/wacom/cc-wacom-device.h0000664000175000017500000000442714632072346022706 0ustar fabiofabio/* * Copyright Ā© 2016 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Authors: Carlos Garnacho * */ #pragma once #include "config.h" #include #include #include "csd-device-manager.h" #include "cc-wacom-output-manager.h" #define GNOME_DESKTOP_USE_UNSTABLE_API #include #define CC_TYPE_WACOM_DEVICE (cc_wacom_device_get_type ()) G_DECLARE_FINAL_TYPE (CcWacomDevice, cc_wacom_device, CC, WACOM_DEVICE, GObject) WacomDeviceDatabase * cc_wacom_device_database_get (void); CcWacomDevice * cc_wacom_device_new (CsdDevice *device); CcWacomDevice * cc_wacom_device_new_fake (const gchar *name); const gchar * cc_wacom_device_get_name (CcWacomDevice *device); const gchar * cc_wacom_device_get_icon_name (CcWacomDevice *device); gboolean cc_wacom_device_is_reversible (CcWacomDevice *device); WacomIntegrationFlags cc_wacom_device_get_integration_flags (CcWacomDevice *device); CsdDevice * cc_wacom_device_get_device (CcWacomDevice *device); GSettings * cc_wacom_device_get_settings (CcWacomDevice *device); const gint * cc_wacom_device_get_supported_tools (CcWacomDevice *device, gint *n_tools); MonitorInfo * cc_wacom_device_get_monitor (CcWacomDevice *device); void cc_wacom_device_set_monitor (CcWacomDevice *device, MonitorInfo *monitor); guint cc_wacom_device_get_num_buttons (CcWacomDevice *wacom_device); GSettings * cc_wacom_device_get_button_settings (CcWacomDevice *device, guint button); cinnamon-control-center-6.2.0/panels/wacom/button-mapping.ui0000664000175000017500000001474014632072346023111 0ustar fabiofabio 600 450 False 5 Map Buttons False True 600 450 dialog True False vertical 2 True False end _Close False True True True False False True False False 3 False True end 0 True False 6 True False 0 12 Map buttons to functions False True 0 True False 5 True True never in True True True True 1 True False 5 12 True False 0 To edit a shortcut, choose the ā€œSend Keystrokeā€ action, press the keyboard shortcut button and hold down the new keys or press Backspace to clear. fill True True True 0 False True 2 True True 1 close_button cinnamon-control-center-6.2.0/panels/wacom/cc-wacom-button-row.h0000664000175000017500000000326114632072346023562 0ustar fabiofabio/* * Copyright Ā© 2013 Red Hat, Inc. * * Authors: Joaquim Rocha * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ #pragma once #include #include G_BEGIN_DECLS #define CC_WACOM_TYPE_BUTTON_ROW (cc_wacom_button_row_get_type ()) G_DECLARE_FINAL_TYPE (CcWacomButtonRow, cc_wacom_button_row, CC, WACOM_BUTTON_ROW, GtkListBoxRow) static struct { CDesktopPadButtonAction action_type; const gchar *action_name; } action_table[] = { // FIXME // { C_DESKTOP_PAD_BUTTON_ACTION_NONE, NC_("Wacom action-type", "Application defined") }, { C_DESKTOP_PAD_BUTTON_ACTION_NONE, NC_("Wacom action-type", "None") }, { C_DESKTOP_PAD_BUTTON_ACTION_KEYBINDING, NC_("Wacom action-type", "Send Keystroke") }, { C_DESKTOP_PAD_BUTTON_ACTION_SWITCH_MONITOR, NC_("Wacom action-type", "Switch Monitor") }, { C_DESKTOP_PAD_BUTTON_ACTION_HELP, NC_("Wacom action-type", "Show On-Screen Help") } }; GtkWidget * cc_wacom_button_row_new (guint button, GSettings *settings); G_END_DECLS cinnamon-control-center-6.2.0/panels/wacom/calibrator/0000775000175000017500000000000014632072346021722 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/wacom/calibrator/meson.build0000664000175000017500000000133214632072346024063 0ustar fabiofabiocalibrator_inc = include_directories('.') common_sources = files( 'calibrator.c', 'calibrator-gui.c', 'cc-clock.c', ) calibrator_deps = deps + [math] libwacom_calibrator = static_library( 'wacom-calibrator', sources: common_sources, include_directories: rootInclude, dependencies: calibrator_deps, c_args: more_cflags ) libwacom_calibrator_test = static_library( 'wacom-calibrator-test', sources: common_sources, include_directories: rootInclude, dependencies: calibrator_deps, c_args: test_cflags ) sources = common_sources + wacom_gresource + files('main.c') executable( 'test-calibrator', sources, include_directories: rootInclude, dependencies: calibrator_deps, c_args: more_cflags ) cinnamon-control-center-6.2.0/panels/wacom/calibrator/cc-clock.c0000664000175000017500000001604214632072346023547 0ustar fabiofabio/* * Copyright Ā© 2018 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Authors: Joaquim Rocha * Carlos Garnacho */ #include "config.h" #include "cc-clock.h" #include #define CLOCK_RADIUS 50 #define CLOCK_LINE_WIDTH 10 #define CLOCK_LINE_PADDING 10 #define EXTRA_SPACE 2 typedef struct _CcClock CcClock; struct _CcClock { GtkWidget parent_instance; guint duration; gint64 start_time; gboolean running; }; enum { PROP_DURATION = 1, N_PROPS }; static GParamSpec *props[N_PROPS] = { 0, }; enum { FINISHED, N_SIGNALS }; static guint signals[N_SIGNALS] = { 0, }; G_DEFINE_TYPE (CcClock, cc_clock, GTK_TYPE_WIDGET) static gint64 cc_clock_get_time_diff (CcClock *clock) { GdkFrameClock *frame_clock; gint64 current_time; frame_clock = gtk_widget_get_frame_clock (GTK_WIDGET (clock)); current_time = gdk_frame_clock_get_frame_time (frame_clock); return current_time - clock->start_time; } static gdouble cc_clock_get_angle (CcClock *clock) { gint64 time_diff; time_diff = cc_clock_get_time_diff (clock); if (time_diff > clock->duration * 1000) return 360; return ((gdouble) time_diff / (clock->duration * 1000)) * 360; } static gboolean cc_clock_draw (GtkWidget *widget, cairo_t *cr) { GtkAllocation allocation; gdouble angle; gtk_widget_get_allocation (widget, &allocation); angle = cc_clock_get_angle (CC_CLOCK (widget)); cairo_set_operator (cr, CAIRO_OPERATOR_CLEAR); cairo_paint (cr); cairo_set_operator (cr, CAIRO_OPERATOR_OVER); /* Draw the clock background */ cairo_arc (cr, allocation.width / 2, allocation.height / 2, CLOCK_RADIUS / 2, 0.0, 2.0 * M_PI); cairo_set_source_rgb (cr, 0.5, 0.5, 0.5); cairo_fill_preserve (cr); cairo_stroke (cr); cairo_set_line_width (cr, CLOCK_LINE_WIDTH); cairo_arc (cr, allocation.width / 2, allocation.height / 2, (CLOCK_RADIUS - CLOCK_LINE_WIDTH - CLOCK_LINE_PADDING) / 2, 3 * M_PI_2, 3 * M_PI_2 + angle * M_PI / 180.0); cairo_set_source_rgb (cr, 1.0, 1.0, 1.0); cairo_stroke (cr); return TRUE; } static void cc_clock_stop (CcClock *clock) { GdkFrameClock *frame_clock; if (!clock->running) return; frame_clock = gtk_widget_get_frame_clock (GTK_WIDGET (clock)); gdk_frame_clock_end_updating (frame_clock); clock->running = FALSE; } static void on_frame_clock_update (CcClock *clock) { gint64 time_diff; if (!clock->running) return; time_diff = cc_clock_get_time_diff (clock); if (time_diff > clock->duration * 1000) { g_signal_emit (clock, signals[FINISHED], 0); cc_clock_stop (clock); } gtk_widget_queue_draw (GTK_WIDGET (clock)); } static void cc_clock_map (GtkWidget *widget) { GdkFrameClock *frame_clock; GTK_WIDGET_CLASS (cc_clock_parent_class)->map (widget); frame_clock = gtk_widget_get_frame_clock (widget); g_signal_connect_object (frame_clock, "update", G_CALLBACK (on_frame_clock_update), widget, G_CONNECT_SWAPPED); cc_clock_reset (CC_CLOCK (widget)); } static void cc_clock_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec) { CcClock *clock = CC_CLOCK (object); switch (prop_id) { case PROP_DURATION: clock->duration = g_value_get_uint (value); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; } } static void cc_clock_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec) { CcClock *clock = CC_CLOCK (object); switch (prop_id) { case PROP_DURATION: g_value_set_uint (value, clock->duration); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; } } static void cc_clock_get_preferred_width (GtkWidget *widget, gint *minimum, gint *natural) { if (minimum) *minimum = CLOCK_RADIUS + EXTRA_SPACE; if (natural) *natural = CLOCK_RADIUS + EXTRA_SPACE; } static void cc_clock_get_preferred_height (GtkWidget *widget, gint *minimum, gint *natural) { if (minimum) *minimum = CLOCK_RADIUS + EXTRA_SPACE; if (natural) *natural = CLOCK_RADIUS + EXTRA_SPACE; } static void cc_clock_class_init (CcClockClass *klass) { GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass); GObjectClass *object_class = G_OBJECT_CLASS (klass); object_class->set_property = cc_clock_set_property; object_class->get_property = cc_clock_get_property; widget_class->map = cc_clock_map; widget_class->draw = cc_clock_draw; widget_class->get_preferred_width = cc_clock_get_preferred_width; widget_class->get_preferred_height = cc_clock_get_preferred_height; signals[FINISHED] = g_signal_new ("finished", CC_TYPE_CLOCK, G_SIGNAL_RUN_LAST, 0, NULL, NULL, NULL, G_TYPE_NONE, 0); props[PROP_DURATION] = g_param_spec_uint ("duration", "Duration", "Duration", 0, G_MAXUINT, 0, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_CONSTRUCT_ONLY); g_object_class_install_properties (object_class, N_PROPS, props); } static void cc_clock_init (CcClock *clock) { gtk_widget_set_has_window (GTK_WIDGET (clock), FALSE); } GtkWidget * cc_clock_new (guint duration) { return g_object_new (CC_TYPE_CLOCK, "duration", duration, NULL); } void cc_clock_reset (CcClock *clock) { GdkFrameClock *frame_clock; if (!gtk_widget_get_mapped (GTK_WIDGET (clock))) return; frame_clock = gtk_widget_get_frame_clock (GTK_WIDGET (clock)); cc_clock_stop (clock); clock->running = TRUE; clock->start_time = g_get_monotonic_time (); gdk_frame_clock_begin_updating (frame_clock); } void cc_clock_set_duration (CcClock *clock, guint duration) { clock->duration = duration; g_object_notify (G_OBJECT (clock), "duration"); cc_clock_reset (clock); } guint cc_clock_get_duration (CcClock *clock) { return clock->duration; } cinnamon-control-center-6.2.0/panels/wacom/calibrator/calibrator.ui0000664000175000017500000002137214632072346024410 0ustar fabiofabio calibrator True 0 True True True True vertical True vertical True True 1 True vertical True 300 title True Screen Calibration True 300 subtitle True Please tap the target markers as they appear on screen to calibrate the tablet. 1 True crossfade 500 error True Mis-click detected, restarting… 2 True 2 0 0 8 8 target 100 100 True True False 0 0 2 2 target 100 100 True True False 6 0 2 2 target 100 100 True True False 0 6 2 2 target 100 100 True True False 6 6 2 2 True none 0 0 0 8 8 page0 True 300 emblem-ok-symbolic page1 1 vertical cinnamon-control-center-6.2.0/panels/wacom/calibrator/main.c0000664000175000017500000003453614632072346023025 0ustar fabiofabio/* * Copyright (c) 2009 Tias Guns * Copyright (c) 2009 Soren Hauberg * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ #include "config.h" #include #include #include #include #include #include #include "calibrator-gui.h" #include "calibrator.h" /** * find a calibratable touchscreen device (using XInput) * * if pre_device is NULL, the last calibratable device is selected. * retuns number of devices found, * the data of the device is returned in the last 3 function parameters */ static int find_device(const char* pre_device, gboolean verbose, gboolean list_devices, XID* device_id, const char** device_name, XYinfo* device_axis) { gboolean pre_device_is_id = TRUE; int found = 0; Display* display = XOpenDisplay(NULL); if (display == NULL) { fprintf(stderr, "Unable to connect to X server\n"); exit(1); } int xi_opcode, event, error; if (!XQueryExtension(display, "XInputExtension", &xi_opcode, &event, &error)) { fprintf(stderr, "X Input extension not available.\n"); exit(1); } /* verbose, get Xi version */ if (verbose) { XExtensionVersion *version = XGetExtensionVersion(display, INAME); if (version && (version != (XExtensionVersion*) NoSuchExtension)) { printf("DEBUG: %s version is %i.%i\n", INAME, version->major_version, version->minor_version); XFree(version); } } if (pre_device != NULL) { /* check whether the pre_device is an ID (only digits) */ int len = strlen(pre_device); int loop; for (loop=0; loopuse == IsXKeyboard || list->use == IsXPointer) /* virtual master device */ continue; /* if we are looking for a specific device */ if (pre_device != NULL) { if ((pre_device_is_id && list->id == (XID) atoi(pre_device)) || (!pre_device_is_id && strcmp(list->name, pre_device) == 0)) { /* OK, fall through */ } else { /* skip, not this device */ continue; } } XAnyClassPtr any = (XAnyClassPtr) (list->inputclassinfo); int j; for (j=0; jnum_classes; j++) { if (any->class == ValuatorClass) { XValuatorInfoPtr V = (XValuatorInfoPtr) any; XAxisInfoPtr ax = (XAxisInfoPtr) V->axes; if (V->mode != Absolute) { if (verbose) printf("DEBUG: Skipping device '%s' id=%i, does not report Absolute events.\n", list->name, (int)list->id); } else if (V->num_axes < 2 || (ax[0].min_value == -1 && ax[0].max_value == -1) || (ax[1].min_value == -1 && ax[1].max_value == -1)) { if (verbose) printf("DEBUG: Skipping device '%s' id=%i, does not have two calibratable axes.\n", list->name, (int)list->id); } else { /* a calibratable device (has 2 axis valuators) */ found++; *device_id = list->id; *device_name = g_strdup(list->name); device_axis->x_min = ax[0].min_value; device_axis->x_max = ax[0].max_value; device_axis->y_min = ax[1].min_value; device_axis->y_max = ax[1].max_value; if (list_devices) printf("Device \"%s\" id=%i\n", *device_name, (int)*device_id); } } /* * Increment 'any' to point to the next item in the linked * list. The length is in bytes, so 'any' must be cast to * a character pointer before being incremented. */ any = (XAnyClassPtr) ((char *) any + any->length); } } XFreeDeviceList(slist); XCloseDisplay(display); return found; } static void usage(char* cmd, unsigned thr_misclick) { fprintf(stderr, "Usage: %s [-h|--help] [-v|--verbose] [--list] [--device ] [--precalib ] [--misclick ] [--output-type ] [--fake]\n", cmd); fprintf(stderr, "\t-h, --help: print this help message\n"); fprintf(stderr, "\t-v, --verbose: print debug messages during the process\n"); fprintf(stderr, "\t--list: list calibratable input devices and quit\n"); fprintf(stderr, "\t--device : select a specific device to calibrate\n"); fprintf(stderr, "\t--precalib: manually provide the current calibration setting (eg. the values in xorg.conf)\n"); fprintf(stderr, "\t--misclick: set the misclick threshold (0=off, default: %i pixels)\n", thr_misclick); fprintf(stderr, "\t--fake: emulate a fake device (for testing purposes)\n"); } static struct Calib* CalibratorXorgPrint(const char* const device_name0, const XYinfo *axis0, const gboolean verbose0, const int thr_misclick, const int thr_doubleclick) { struct Calib* c = (struct Calib*)calloc(1, sizeof(struct Calib)); c->threshold_misclick = thr_misclick; c->threshold_doubleclick = thr_doubleclick; printf("Calibrating standard Xorg driver \"%s\"\n", device_name0); printf("\tcurrent calibration values: min_x=%lf, max_x=%lf and min_y=%lf, max_y=%lf\n", axis0->x_min, axis0->x_max, axis0->y_min, axis0->y_max); printf("\tIf these values are estimated wrong, either supply it manually with the --precalib option, or run the 'get_precalib.sh' script to automatically get it (through HAL).\n"); return c; } static struct Calib* main_common(int argc, char** argv) { gboolean verbose = FALSE; gboolean list_devices = FALSE; gboolean fake = FALSE; gboolean precalib = FALSE; XYinfo pre_axis = {-1, -1, -1, -1}; const char* pre_device = NULL; unsigned thr_misclick = 15; unsigned thr_doubleclick = 7; /* parse input */ if (argc > 1) { int i; for (i=1; i!=argc; i++) { /* Display help ? */ if (strcmp("-h", argv[i]) == 0 || strcmp("--help", argv[i]) == 0) { fprintf(stderr, "xinput_calibratior, v%s\n\n", "0.0.0"); usage(argv[0], thr_misclick); exit(0); } else /* Verbose output ? */ if (strcmp("-v", argv[i]) == 0 || strcmp("--verbose", argv[i]) == 0) { verbose = TRUE; } else /* Just list devices ? */ if (strcmp("--list", argv[i]) == 0) { list_devices = TRUE; } else /* Select specific device ? */ if (strcmp("--device", argv[i]) == 0) { if (argc > i+1) pre_device = argv[++i]; else { fprintf(stderr, "Error: --device needs a device name or id as argument; use --list to list the calibratable input devices.\n\n"); usage(argv[0], thr_misclick); exit(1); } } else /* Get pre-calibration ? */ if (strcmp("--precalib", argv[i]) == 0) { precalib = TRUE; if (argc > i+1) pre_axis.x_min = atoi(argv[++i]); if (argc > i+1) pre_axis.x_max = atoi(argv[++i]); if (argc > i+1) pre_axis.y_min = atoi(argv[++i]); if (argc > i+1) pre_axis.y_max = atoi(argv[++i]); } else /* Get mis-click threshold ? */ if (strcmp("--misclick", argv[i]) == 0) { if (argc > i+1) thr_misclick = atoi(argv[++i]); else { fprintf(stderr, "Error: --misclick needs a number (the pixel threshold) as argument. Set to 0 to disable mis-click detection.\n\n"); usage(argv[0], thr_misclick); exit(1); } } else /* Fake calibratable device ? */ if (strcmp("--fake", argv[i]) == 0) { fake = TRUE; } /* unknown option */ else { fprintf(stderr, "Unknown option: %s\n\n", argv[i]); usage(argv[0], thr_misclick); exit(0); } } } /* Choose the device to calibrate */ XID device_id = (XID) -1; const char* device_name = NULL; XYinfo device_axis = {-1, -1, -1, -1}; if (fake) { /* Fake a calibratable device */ device_name = "Fake_device"; device_axis.x_min=0; device_axis.x_max=1000; device_axis.y_min=0; device_axis.y_max=1000; if (verbose) { printf("DEBUG: Faking device: %s\n", device_name); } } else { /* Find the right device */ int nr_found = find_device(pre_device, verbose, list_devices, &device_id, &device_name, &device_axis); if (list_devices) { /* printed the list in find_device */ if (nr_found == 0) printf("No calibratable devices found.\n"); exit(0); } if (nr_found == 0) { if (pre_device == NULL) fprintf (stderr, "Error: No calibratable devices found.\n"); else fprintf (stderr, "Error: Device \"%s\" not found; use --list to list the calibratable input devices.\n", pre_device); exit(1); } else if (nr_found > 1) { printf ("Warning: multiple calibratable devices found, calibrating last one (%s)\n\tuse --device to select another one.\n", device_name); } if (verbose) { printf("DEBUG: Selected device: %s\n", device_name); } } /* override min/max XY from command line ? */ if (precalib) { if (pre_axis.x_min != -1) device_axis.x_min = pre_axis.x_min; if (pre_axis.x_max != -1) device_axis.x_max = pre_axis.x_max; if (pre_axis.y_min != -1) device_axis.y_min = pre_axis.y_min; if (pre_axis.y_max != -1) device_axis.y_max = pre_axis.y_max; if (verbose) { printf("DEBUG: Setting precalibration: %lf, %lf, %lf, %lf\n", device_axis.x_min, device_axis.x_max, device_axis.y_min, device_axis.y_max); } } /* lastly, presume a standard Xorg driver (evtouch, mutouch, ...) */ return CalibratorXorgPrint(device_name, &device_axis, verbose, thr_misclick, thr_doubleclick); } static gboolean output_xorgconfd(const XYinfo new_axis, int swap_xy, int new_swap_xy) { const char* sysfs_name = "!!Name_Of_TouchScreen!!"; /* xorg.conf.d snippet */ printf(" copy the snippet below into '/etc/X11/xorg.conf.d/99-calibration.conf'\n"); printf("Section \"InputClass\"\n"); printf(" Identifier \"calibration\"\n"); printf(" MatchProduct \"%s\"\n", sysfs_name); printf(" Option \"MinX\" \"%lf\"\n", new_axis.x_min); printf(" Option \"MaxX\" \"%lf\"\n", new_axis.x_max); printf(" Option \"MinY\" \"%lf\"\n", new_axis.y_min); printf(" Option \"MaxY\" \"%lf\"\n", new_axis.y_max); if (swap_xy != 0) printf(" Option \"SwapXY\" \"%d\" # unless it was already set to 1\n", new_swap_xy); printf("EndSection\n"); return TRUE; } static gboolean finish_data(const XYinfo new_axis, int swap_xy) { gboolean success = TRUE; /* we suppose the previous 'swap_xy' value was 0 */ /* (unfortunately there is no way to verify this (yet)) */ int new_swap_xy = swap_xy; printf("\n\n--> Making the calibration permanent <--\n"); success &= output_xorgconfd(new_axis, swap_xy, new_swap_xy); return success; } static void calibration_finished_cb (CalibArea *area, gpointer user_data) { gboolean success; XYinfo axis; gboolean swap_xy; success = calib_area_finish (area); if (success) { calib_area_get_axis (area, &axis, &swap_xy); success = finish_data (axis, swap_xy); } else fprintf(stderr, "Error: unable to apply or save configuration values\n"); gtk_main_quit (); } int main(int argc, char** argv) { struct Calib* calibrator = main_common(argc, argv); CalibArea *calib_area; bindtextdomain (GETTEXT_PACKAGE, LOCALE_DIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); textdomain (GETTEXT_PACKAGE); gtk_init (&argc, &argv); g_setenv ("G_MESSAGES_DEBUG", "all", TRUE); calib_area = calib_area_new (NULL, 0, /* monitor */ NULL, /* NULL to accept input from any device */ calibration_finished_cb, NULL, calibrator->threshold_doubleclick, calibrator->threshold_misclick); gtk_main (); calib_area_free (calib_area); free(calibrator); return 0; } cinnamon-control-center-6.2.0/panels/wacom/calibrator/calibrator.css0000664000175000017500000000154014632072346024556 0ustar fabiofabio#calibrator { background-color: #000; } #calibrator * { color: #fff; } #calibrator label { font-size: larger; } #calibrator #title { font-weight: bold; color: #888; } #calibrator #error { font-weight: bold; } #calibrator #target { background-image: url('target.svg'); background-repeat: no-repeat; background-position: 50% 50%; } @keyframes target-enabled-animation { 0% { background-size: 0px } 90% { background-size: 120px } 100% { background-size: 100px } } @keyframes target-disabled-animation { 0% { background-size: 100px } 100% { background-size: 0px } } #calibrator #target:not(disabled) { animation: target-enabled-animation 1 ease 0.5s; background-size: 100px; } #calibrator #target:disabled { animation: target-disabled-animation 1 ease 0.2s; background-size: 0px; } cinnamon-control-center-6.2.0/panels/wacom/calibrator/calibrator.h0000664000175000017500000000617014632072346024221 0ustar fabiofabio/* * Copyright (c) 2009 Tias Guns * Copyright (c) 2009 Soren Hauberg * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ #pragma once #include #include "calibrator-gui.h" G_BEGIN_DECLS /* * Number of blocks. We partition the screen into 'num_blocks' x 'num_blocks' * rectangles of equal size. We then ask the user to press points that are * located at the corner closes to the center of the four blocks in the corners * of the screen. The following ascii art illustrates the situation. We partition * the screen into 8 blocks in each direction. We then let the user press the * points marked with 'O'. * * +--+--+--+--+--+--+--+--+ * | | | | | | | | | * +--O--+--+--+--+--+--O--+ * | | | | | | | | | * +--+--+--+--+--+--+--+--+ * | | | | | | | | | * +--+--+--+--+--+--+--+--+ * | | | | | | | | | * +--+--+--+--+--+--+--+--+ * | | | | | | | | | * +--+--+--+--+--+--+--+--+ * | | | | | | | | | * +--+--+--+--+--+--+--+--+ * | | | | | | | | | * +--O--+--+--+--+--+--O--+ * | | | | | | | | | * +--+--+--+--+--+--+--+--+ */ #define NUM_BLOCKS 8 /* Names of the points */ enum { UL = 0, /* Upper-left */ UR = 1, /* Upper-right */ LL = 2, /* Lower-left */ LR = 3 /* Lower-right */ }; struct Calib { /* Geometry of the calibration window */ GdkRectangle geometry; /* nr of clicks registered */ int num_clicks; /* click coordinates */ int clicked_x[4], clicked_y[4]; /* Threshold to keep the same point from being clicked twice. * Set to zero if you don't want this check */ int threshold_doubleclick; /* Threshold to detect mis-clicks (clicks not along axes) * A lower value forces more precise calibration * Set to zero if you don't want this check */ int threshold_misclick; }; void reset (struct Calib *c); gboolean add_click (struct Calib *c, int x, int y); gboolean finish (struct Calib *c, XYinfo *new_axis, gboolean *swap); G_END_DECLS cinnamon-control-center-6.2.0/panels/wacom/calibrator/cc-clock.h0000664000175000017500000000233014632072346023547 0ustar fabiofabio/* * Copyright Ā© 2018 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Author: Carlos Garnacho */ #pragma once #include #include G_BEGIN_DECLS #define CC_TYPE_CLOCK (cc_clock_get_type ()) G_DECLARE_FINAL_TYPE (CcClock, cc_clock, CC, CLOCK, GtkWidget) GtkWidget * cc_clock_new (guint duration); void cc_clock_reset (CcClock *clock); void cc_clock_set_duration (CcClock *clock, guint duration); guint cc_clock_get_duration (CcClock *clock); GType cc_clock_get_type (void); G_END_DECLS cinnamon-control-center-6.2.0/panels/wacom/calibrator/target.svg0000664000175000017500000000552014632072346023733 0ustar fabiofabio image/svg+xml cinnamon-control-center-6.2.0/panels/wacom/calibrator/COPYING0000664000175000017500000000224414632072346022757 0ustar fabiofabioCopyright (c) 2010 Tias Guns and others See the respective files for detailed copyright information. Source code: MIT/X11 License ------------ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. cinnamon-control-center-6.2.0/panels/wacom/calibrator/calibrator.c0000664000175000017500000001330614632072346024213 0ustar fabiofabio/* * Copyright (c) 2009 Tias Guns * Copyright (c) 2009 Soren Hauberg * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ #include #include "calibrator.h" #define SWAP(valtype,x,y) \ G_STMT_START { \ valtype t; t = (x); x = (y); y = t; \ } G_STMT_END /* reset clicks */ void reset (struct Calib *c) { c->num_clicks = 0; } /* check whether the coordinates are along the respective axis */ static gboolean along_axis (struct Calib *c, int xy, int x0, int y0) { return ((abs(xy - x0) <= c->threshold_misclick) || (abs(xy - y0) <= c->threshold_misclick)); } /* add a click with the given coordinates */ gboolean add_click (struct Calib *c, int x, int y) { g_debug ("Trying to add click (%d, %d)", x, y); /* Double-click detection */ if (c->threshold_doubleclick > 0 && c->num_clicks > 0) { int i = c->num_clicks-1; while (i >= 0) { if (abs(x - c->clicked_x[i]) <= c->threshold_doubleclick && abs(y - c->clicked_y[i]) <= c->threshold_doubleclick) { g_debug ("Detected double-click, ignoring"); return FALSE; } i--; } } /* Mis-click detection */ if (c->threshold_misclick > 0 && c->num_clicks > 0) { gboolean misclick = TRUE; if (c->num_clicks == 1) { /* check that along one axis of first point */ if (along_axis(c, x,c->clicked_x[0],c->clicked_y[0]) || along_axis(c, y,c->clicked_x[0],c->clicked_y[0])) { misclick = FALSE; } } else if (c->num_clicks == 2) { /* check that along other axis of first point than second point */ if ((along_axis(c, y,c->clicked_x[0],c->clicked_y[0]) && along_axis(c, c->clicked_x[1],c->clicked_x[0],c->clicked_y[0])) || (along_axis(c, x,c->clicked_x[0],c->clicked_y[0]) && along_axis(c, c->clicked_y[1],c->clicked_x[0],c->clicked_y[0]))) { misclick = FALSE; } } else if (c->num_clicks == 3) { /* check that along both axis of second and third point */ if ((along_axis(c, x,c->clicked_x[1],c->clicked_y[1]) && along_axis(c, y,c->clicked_x[2],c->clicked_y[2])) || (along_axis(c, y,c->clicked_x[1],c->clicked_y[1]) && along_axis(c, x,c->clicked_x[2],c->clicked_y[2]))) { misclick = FALSE; } } if (misclick) { g_debug ("Detected misclick, resetting"); reset(c); return FALSE; } } g_debug ("Click (%d, %d) added", x, y); c->clicked_x[c->num_clicks] = x; c->clicked_y[c->num_clicks] = y; c->num_clicks++; return TRUE; } /* calculate and apply the calibration */ gboolean finish (struct Calib *c, XYinfo *new_axis, gboolean *swap) { gboolean swap_xy; float scale_x; float scale_y; float delta_x; float delta_y; XYinfo axis = {-1, -1, -1, -1}; if (c->num_clicks != 4) return FALSE; /* Should x and y be swapped? If the device and output are wider * towards different axes, swapping must be performed * * FIXME: Would be even better to know the actual output orientation, * not just the direction. */ swap_xy = (c->geometry.width < c->geometry.height); /* Compute the scale to transform from pixel positions to [0..1]. */ scale_x = 1 / (float)c->geometry.width; scale_y = 1 / (float)c->geometry.height; axis.x_min = ((((c->clicked_x[UL] + c->clicked_x[LL]) / 2)) * scale_x); axis.x_max = ((((c->clicked_x[UR] + c->clicked_x[LR]) / 2)) * scale_x); axis.y_min = ((((c->clicked_y[UL] + c->clicked_y[UR]) / 2)) * scale_y); axis.y_max = ((((c->clicked_y[LL] + c->clicked_y[LR]) / 2)) * scale_y); /* Add/subtract the offset that comes from not having the points in the * corners (using the same coordinate system they are currently in) */ delta_x = (axis.x_max - axis.x_min) / (float)(NUM_BLOCKS - 2); axis.x_min -= delta_x; axis.x_max += delta_x; delta_y = (axis.y_max - axis.y_min) / (float)(NUM_BLOCKS - 2); axis.y_min -= delta_y; axis.y_max += delta_y; /* If x and y has to be swapped we also have to swap the parameters */ if (swap_xy) { SWAP (gdouble, axis.x_min, axis.y_min); SWAP (gdouble, axis.x_max, axis.y_max); } *new_axis = axis; *swap = swap_xy; return TRUE; } cinnamon-control-center-6.2.0/panels/wacom/calibrator/calibrator-gui.c0000664000175000017500000003137014632072346024776 0ustar fabiofabio/* * Copyright Ā© 2013 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Author: Carlos Garnacho * (based on previous work by Joaquim Rocha, Tias Guns and Soren Hauberg) */ #include "config.h" #include #include #include #include #include #include #include "calibrator.h" #include "calibrator-gui.h" #include "cc-clock.h" struct CalibArea { struct Calib calibrator; XYinfo axis; gboolean swap; gboolean success; GdkDevice *device; double X[4], Y[4]; int display_width, display_height; GtkWidget *window; GtkBuilder *builder; GtkWidget *error_revealer; GtkWidget *clock; GtkCssProvider *style_provider; FinishCallback callback; gpointer user_data; }; /* Timeout parameters */ #define MAX_TIME 15000 /* 15000 = 15 sec */ #define END_TIME 750 /* 750 = 0.75 sec */ static void set_display_size (CalibArea *calib_area, int width, int height) { int delta_x; int delta_y; calib_area->display_width = width; calib_area->display_height = height; /* Compute absolute circle centers */ delta_x = calib_area->display_width/NUM_BLOCKS; delta_y = calib_area->display_height/NUM_BLOCKS; calib_area->X[UL] = delta_x; calib_area->Y[UL] = delta_y; calib_area->X[UR] = calib_area->display_width - delta_x - 1; calib_area->Y[UR] = delta_y; calib_area->X[LL] = delta_x; calib_area->Y[LL] = calib_area->display_height - delta_y - 1; calib_area->X[LR] = calib_area->display_width - delta_x - 1; calib_area->Y[LR] = calib_area->display_height - delta_y - 1; /* reset calibration if already started */ reset (&calib_area->calibrator); } static void calib_area_notify_finish (CalibArea *area) { gtk_widget_hide (area->window); (*area->callback) (area, area->user_data); } static gboolean on_delete_event (GtkWidget *widget, GdkEvent *event, CalibArea *area) { calib_area_notify_finish (area); return TRUE; } static gboolean calib_area_finish_idle_cb (CalibArea *area) { calib_area_notify_finish (area); return FALSE; } static void set_success (CalibArea *area) { GtkWidget *stack; stack = GTK_WIDGET (gtk_builder_get_object (area->builder, "stack")); gtk_stack_set_visible_child_name (GTK_STACK (stack), "page1"); } static void set_calibration_status (CalibArea *area) { area->success = finish (&area->calibrator, &area->axis, &area->swap); if (area->success) { set_success (area); g_timeout_add (END_TIME, (GSourceFunc) calib_area_finish_idle_cb, area); } else { g_idle_add ((GSourceFunc) calib_area_finish_idle_cb, area); } } static void show_error_message (CalibArea *area) { gtk_revealer_set_reveal_child (GTK_REVEALER (area->error_revealer), TRUE); } static void hide_error_message (CalibArea *area) { gtk_revealer_set_reveal_child (GTK_REVEALER (area->error_revealer), FALSE); } static void set_active_target (CalibArea *area, int n_target) { GtkWidget *targets[] = { GTK_WIDGET (gtk_builder_get_object (area->builder, "target1")), GTK_WIDGET (gtk_builder_get_object (area->builder, "target2")), GTK_WIDGET (gtk_builder_get_object (area->builder, "target3")), GTK_WIDGET (gtk_builder_get_object (area->builder, "target4")), }; int i; for (i = 0; i < G_N_ELEMENTS (targets); i++) gtk_widget_set_sensitive (targets[i], i == n_target); } static void on_gesture_press (GtkGestureMultiPress *gesture, guint n_press, gdouble x, gdouble y, CalibArea *area) { gint num_clicks; gboolean success; GdkDevice *source; GdkEvent *event; if (area->success) return; event = gtk_get_current_event (); source = gdk_event_get_source_device ((GdkEvent *) event); gdk_event_free (event); /* Check matching device if a device was provided */ if (area->device && area->device != source) { g_debug ("Ignoring input from device %s", gdk_device_get_name (source)); return; } /* Handle click */ /* FIXME: reset clock */ success = add_click(&area->calibrator, (int) x, (int) y); num_clicks = area->calibrator.num_clicks; if (!success && num_clicks == 0) show_error_message (area); else hide_error_message (area); /* Are we done yet? */ if (num_clicks >= 4) { set_calibration_status (area); return; } set_active_target (area, num_clicks); } static gboolean on_key_release_event (GtkWidget *widget, GdkEventKey *event, CalibArea *area) { if (area->success || event->keyval != GDK_KEY_Escape) return GDK_EVENT_PROPAGATE; calib_area_notify_finish (area); return GDK_EVENT_STOP; } static gboolean on_focus_out_event (GtkWidget *widget, GdkEvent *event, CalibArea *area) { if (area->success) return FALSE; /* If the calibrator window loses focus, simply bail out... */ calib_area_notify_finish (area); return FALSE; } static void on_clock_finished (CcClock *clock, CalibArea *area) { set_calibration_status (area); } static void on_title_revealed (CalibArea *area) { GtkWidget *revealer; revealer = GTK_WIDGET (gtk_builder_get_object (area->builder, "subtitle_revealer")); gtk_revealer_set_reveal_child (GTK_REVEALER (revealer), TRUE); } static gboolean on_fullscreen (GtkWindow *window, GdkEventWindowState *event, CalibArea *area) { GtkWidget *revealer; if ((event->changed_mask & GDK_WINDOW_STATE_FULLSCREEN) == 0) return FALSE; revealer = GTK_WIDGET (gtk_builder_get_object (area->builder, "title_revealer")); g_signal_connect_swapped (revealer, "notify::child-revealed", G_CALLBACK (on_title_revealed), area); gtk_revealer_set_reveal_child (GTK_REVEALER (revealer), TRUE); set_active_target (area, 0); return FALSE; } static void on_size_allocate (GtkWidget *widget, GtkAllocation *allocation, CalibArea *area) { set_display_size (area, allocation->width, allocation->height); } /** * Creates the windows and other objects required to do calibration * under GTK. When the window is closed (timed out, calibration finished * or user cancellation), callback will be called, where you should call * calib_area_finish(). */ CalibArea * calib_area_new (GdkScreen *screen, int n_monitor, GdkDevice *device, FinishCallback callback, gpointer user_data, int threshold_doubleclick, int threshold_misclick) { CalibArea *calib_area; GdkRectangle rect; GdkVisual *visual; GdkMonitor *monitor; #ifndef FAKE_AREA GdkWindow *window; g_autoptr(GdkCursor) cursor = NULL; #endif /* FAKE_AREA */ GtkGesture *press; g_return_val_if_fail (callback, NULL); g_type_ensure (CC_TYPE_CLOCK); calib_area = g_new0 (CalibArea, 1); calib_area->callback = callback; calib_area->user_data = user_data; calib_area->device = device; calib_area->calibrator.threshold_doubleclick = threshold_doubleclick; calib_area->calibrator.threshold_misclick = threshold_misclick; calib_area->builder = gtk_builder_new_from_resource ("/org/cinnamon/control-center/wacom/calibrator/calibrator.ui"); calib_area->window = GTK_WIDGET (gtk_builder_get_object (calib_area->builder, "window")); calib_area->error_revealer = GTK_WIDGET (gtk_builder_get_object (calib_area->builder, "error_revealer")); calib_area->clock = GTK_WIDGET (gtk_builder_get_object (calib_area->builder, "clock")); calib_area->style_provider = gtk_css_provider_new (); gtk_css_provider_load_from_resource (calib_area->style_provider, "/org/cinnamon/control-center/wacom/calibrator/calibrator.css"); gtk_style_context_add_provider_for_screen (gtk_widget_get_screen (calib_area->window), GTK_STYLE_PROVIDER (calib_area->style_provider), GTK_STYLE_PROVIDER_PRIORITY_USER); cc_clock_set_duration (CC_CLOCK (calib_area->clock), MAX_TIME); g_signal_connect (calib_area->clock, "finished", G_CALLBACK (on_clock_finished), calib_area); #ifndef FAKE_AREA /* No cursor */ gtk_widget_realize (calib_area->window); window = gtk_widget_get_window (calib_area->window); cursor = gdk_cursor_new_for_display (gdk_display_get_default (), GDK_BLANK_CURSOR); gdk_window_set_cursor (window, cursor); gtk_widget_set_can_focus (calib_area->window, TRUE); gtk_window_set_keep_above (GTK_WINDOW (calib_area->window), TRUE); #endif /* FAKE_AREA */ /* Move to correct screen */ if (screen == NULL) screen = gdk_screen_get_default (); monitor = gdk_display_get_monitor (gdk_screen_get_display (screen), n_monitor); gdk_monitor_get_geometry (monitor, &rect); calib_area->calibrator.geometry = rect; g_signal_connect (calib_area->window, "key-release-event", G_CALLBACK (on_key_release_event), calib_area); g_signal_connect (calib_area->window, "delete-event", G_CALLBACK (on_delete_event), calib_area); g_signal_connect (calib_area->window, "focus-out-event", G_CALLBACK(on_focus_out_event), calib_area); g_signal_connect (calib_area->window, "window-state-event", G_CALLBACK (on_fullscreen), calib_area); g_signal_connect (calib_area->window, "size-allocate", G_CALLBACK (on_size_allocate), calib_area); press = gtk_gesture_multi_press_new (calib_area->window); gtk_gesture_single_set_button (GTK_GESTURE_SINGLE (press), GDK_BUTTON_PRIMARY); g_signal_connect (press, "pressed", G_CALLBACK (on_gesture_press), calib_area); gtk_window_fullscreen_on_monitor (GTK_WINDOW (calib_area->window), screen, n_monitor); visual = gdk_screen_get_rgba_visual (screen); if (visual != NULL) gtk_widget_set_visual (GTK_WIDGET (calib_area->window), visual); gtk_widget_show (calib_area->window); return calib_area; } /* Finishes the calibration. Note that CalibArea * needs to be destroyed with calib_area_free() afterwards */ gboolean calib_area_finish (CalibArea *area) { g_return_val_if_fail (area != NULL, FALSE); if (area->success) g_debug ("Final calibration: %f, %f, %f, %f\n", area->axis.x_min, area->axis.y_min, area->axis.x_max, area->axis.y_max); else g_debug ("Calibration was aborted or timed out"); return area->success; } void calib_area_free (CalibArea *area) { g_return_if_fail (area != NULL); gtk_style_context_remove_provider_for_screen (gtk_widget_get_screen (area->window), GTK_STYLE_PROVIDER (area->style_provider)); gtk_widget_destroy (area->window); g_free (area); } void calib_area_get_display_size (CalibArea *area, gint *width, gint *height) { g_return_if_fail (area != NULL); *width = area->display_width; *height = area->display_height; } void calib_area_get_axis (CalibArea *area, XYinfo *new_axis, gboolean *swap_xy) { g_return_if_fail (area != NULL); *new_axis = area->axis; *swap_xy = area->swap; } void calib_area_get_padding (CalibArea *area, XYinfo *padding) { g_return_if_fail (area != NULL); /* min/max values are monitor coordinates scaled to be between * 0 and 1, padding starts at 0 on "the edge", and positive * values grow towards the center of the rectangle. */ padding->x_min = area->axis.x_min; padding->y_min = area->axis.y_min; padding->x_max = 1 - area->axis.x_max; padding->y_max = 1 - area->axis.y_max; } cinnamon-control-center-6.2.0/panels/wacom/calibrator/calibrator-gui.h0000664000175000017500000000416514632072346025005 0ustar fabiofabio/* * Copyright (c) 2009 Tias Guns * Copyright (c) 2009 Soren Hauberg * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ #pragma once #include G_BEGIN_DECLS /* struct to hold min/max info of the X and Y axis */ typedef struct { gdouble x_min; gdouble x_max; gdouble y_min; gdouble y_max; } XYinfo; typedef struct CalibArea CalibArea; typedef void (*FinishCallback) (CalibArea *area, gpointer user_data); CalibArea * calib_area_new (GdkScreen *screen, int monitor, GdkDevice *device, FinishCallback callback, gpointer user_data, int threshold_doubleclick, int threshold_misclick); gboolean calib_area_finish (CalibArea *area); void calib_area_free (CalibArea *area); void calib_area_get_display_size (CalibArea *area, gint *width, gint *height); void calib_area_get_axis (CalibArea *area, XYinfo *new_axis, gboolean *swap_xy); void calib_area_get_padding (CalibArea *area, XYinfo *padding); G_END_DECLS cinnamon-control-center-6.2.0/panels/wacom/wacom-stylus-3btn-no-eraser.svg0000664000175000017500000001275414632072346025536 0ustar fabiofabio image/svg+xml cinnamon-control-center-6.2.0/panels/wacom/meson.build0000664000175000017500000000415314632072346021745 0ustar fabiofabiodeps = [ libwacom, cinn_desktop, libx11, libxi ] muffin_display_iface_sources = gnome.gdbus_codegen( 'muffin-display-config', 'muffin-display-config.xml', namespace: 'MetaDBus', interface_prefix: 'org.cinnamon.Muffin' ) test_cflags = more_cflags + ['-DFAKE_AREA'] wacom_gresource = gnome.compile_resources( 'cc-wacom-resources', 'cinnamon-wacom.gresource.xml', source_dir : '.', c_name : 'cc_wacom', dependencies : resource_data, export : true ) subdir('calibrator') install_data( 'cinnamon-wacom-panel.desktop', install_dir: desktop_dir ) common_sources = [ muffin_display_iface_sources, 'cc-tablet-tool-map.c', 'cc-wacom-button-row.c', 'cc-wacom-device.c', 'cc-wacom-mapping-panel.c', 'cc-wacom-nav-button.c', 'cc-wacom-output-manager.c', 'cc-wacom-page.c', 'cc-wacom-stylus-page.c', 'cc-wacom-tool.c', 'csd-wacom-key-shortcut-button.c' ] resource_data = files( 'calibrator/calibrator.ui', 'calibrator/calibrator.css', 'calibrator/target.svg', 'button-mapping.ui', 'cinnamon-wacom-properties.ui', 'wacom-stylus-3btn.svg', 'wacom-stylus-3btn-no-eraser.svg', 'wacom-stylus-airbrush.svg', 'wacom-stylus-art-pen.svg', 'wacom-stylus-classic.svg', 'wacom-stylus-inking.svg', 'wacom-stylus-no-eraser.svg', 'wacom-stylus-page.ui', 'wacom-stylus.svg', 'wacom-tablet-cintiq.svg', 'wacom-tablet-pc.svg', 'wacom-tablet.svg' ) common_sources += wacom_gresource sources = common_sources + files( 'cc-wacom-panel.c', 'cc-drawing-area.c', 'wacom-module.c' ) deps += libdevice_dep incs = [ rootInclude, calibrator_inc ] panel_wacom = shared_library('wacom-properties', sources : sources, include_directories : incs, dependencies : deps, link_whole : [ libwacom_calibrator ], link_with: [libcinnamon_control_center], install: true, install_dir: panels_dir ) sources += 'test-wacom.c' executable('test-wacom', sources, include_directories : incs, dependencies : deps, c_args : test_cflags, link_with : [ libwacom_calibrator_test, libcinnamon_control_center ] ) cinnamon-control-center-6.2.0/panels/wacom/cc-wacom-output-manager.h0000664000175000017500000000356514632072346024421 0ustar fabiofabio/* * Copyright Ā© 2016 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Authors: Carlos Garnacho * */ #pragma once #include "config.h" #include #define CC_TYPE_WACOM_OUTPUT_MANAGER (cc_wacom_output_manager_get_type ()) G_DECLARE_FINAL_TYPE (CcWacomOutputManager, cc_wacom_output_manager, CC, WACOM_OUTPUT_MANAGER, GObject) typedef struct { gchar *connector_name; gchar *display_name; gchar *vendor; gchar *product; gchar *serial; gint x; gint y; gboolean primary; gboolean builtin; } MonitorInfo; CcWacomOutputManager * cc_wacom_output_manager_get (void); MonitorInfo * cc_wacom_output_manager_get_monitor (CcWacomOutputManager *monitors); void cc_wacom_output_manager_set_monitor (CcWacomOutputManager *monitors, MonitorInfo *monitor); GList * cc_wacom_output_manager_get_all_monitors (CcWacomOutputManager *monitors); void cc_wacom_output_manager_refresh_monitors (CcWacomOutputManager *monitors); gboolean monitor_info_cmp (MonitorInfo *a, MonitorInfo *b); void monitor_info_spew (MonitorInfo *info); cinnamon-control-center-6.2.0/panels/wacom/cinnamon-wacom-properties.ui0000664000175000017500000005106414632072346025245 0ustar fabiofabio True False vertical True False False False True False True False True True vertical True False False end True 96 input-tablet-symbolic 0 False True 0 True False False No tablet detected center 1 False False 1 True False start True Please plug in or turn on your Wacom tablet center 0 False True 2 Bluetooth Settings False True True True True center center none False True 3 0 0 3 3 True False Plugin False True False 10 10 True False start center Wacom Tablet 0 0 2 True False center start wacom-tablet.svg 0 1 True False 16 16 vertical 10 10 True False end center Tracking Mode 0 0 True False True liststore-tabletmode 1 0 True False end center Left-Handed Orientation 0 1 False True True start center 1 1 True False start 10 Map to Monitor… False True True True False True end 0 Map Buttons… False True True True False True end 1 Calibrate… False True True False True end 2 1 2 Adjust mouse settings False True True True start start none 1 3 Adjust display resolution False True True True start start none 1 3 True False end center Decouple Display 0 4 True True start center True 1 4 Map to Monitor… False True True True start 1 6 1 1 True False end crossfade 100 1 0 1 True False Wacom 1 False True True 0 0 Tablet (absolute) 1 Touchpad (relative) cinnamon-control-center-6.2.0/panels/wacom/wacom-stylus-3btn.svg0000664000175000017500000001363414632072346023643 0ustar fabiofabio image/svg+xml cinnamon-control-center-6.2.0/panels/wacom/cc-wacom-page.h0000664000175000017500000000300414632072346022351 0ustar fabiofabio/* * Copyright Ā© 2011 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Authors: Peter Hutterer * Bastien Nocera */ #pragma once #include #include "cc-wacom-panel.h" #include "cc-wacom-device.h" G_BEGIN_DECLS #define CC_TYPE_WACOM_PAGE (cc_wacom_page_get_type ()) G_DECLARE_FINAL_TYPE (CcWacomPage, cc_wacom_page, CC, WACOM_PAGE, GtkBox) GtkWidget * cc_wacom_page_new (CcWacomPanel *panel, CcWacomDevice *stylus, CcWacomDevice *pad); gboolean cc_wacom_page_update_tools (CcWacomPage *page, CcWacomDevice *stylus, CcWacomDevice *pad); void cc_wacom_page_set_navigation (CcWacomPage *page, GtkNotebook *notebook, gboolean ignore_first_page); void cc_wacom_page_calibrate (CcWacomPage *page); gboolean cc_wacom_page_can_calibrate (CcWacomPage *page); G_END_DECLS cinnamon-control-center-6.2.0/panels/wacom/test-wacom.c0000664000175000017500000000704014632072346022030 0ustar fabiofabio #include "config.h" #include #include "cc-wacom-page.h" #define FIXED_WIDTH 675 // void // cc_wacom_panel_switch_to_panel (CcWacomPanel *self, const char *panel) // { // g_message ("Should launch %s preferences here", panel); // } // GDBusProxy * // cc_wacom_panel_get_gsd_wacom_bus_proxy (CcWacomPanel *self) // { // g_message ("Should get the g-s-d wacom dbus proxy here"); // return NULL; // } static void add_page (GList *devices, GtkWidget *notebook) { GtkWidget *widget; CcWacomDevice *stylus, *eraser, *pad; GList *l; if (devices == NULL) return; stylus = eraser = pad = NULL; for (l = devices; l ; l = l->next) { stylus = l->data; } g_list_free (devices); widget = cc_wacom_page_new (NULL, stylus, pad); cc_wacom_page_set_navigation (CC_WACOM_PAGE (widget), GTK_NOTEBOOK (notebook), FALSE); gtk_notebook_append_page (GTK_NOTEBOOK (notebook), widget, NULL); gtk_widget_show (widget); } static gboolean delete_event_cb (GtkWidget *widget, GdkEvent *event, gpointer user_data) { gtk_main_quit (); return FALSE; } static GList * create_fake_cintiq (void) { CcWacomDevice *device; GList *devices; device = cc_wacom_device_new_fake ("Wacom Cintiq 21UX2"); devices = g_list_prepend (NULL, device); return devices; } static GList * create_fake_bt (void) { CcWacomDevice *device; GList *devices; device = cc_wacom_device_new_fake ("Wacom Graphire Wireless"); devices = g_list_prepend (NULL, device); return devices; } static GList * create_fake_x201 (void) { CcWacomDevice *device; GList *devices; device = cc_wacom_device_new_fake ("Wacom Serial Tablet WACf004"); devices = g_list_prepend (NULL, device); return devices; } static GList * create_fake_intuos4 (void) { CcWacomDevice *device; GList *devices; device = cc_wacom_device_new_fake ("Wacom Intuos4 6x9"); devices = g_list_prepend (NULL, device); return devices; } static GList * create_fake_h610pro (void) { CcWacomDevice *device; GList *devices; device = cc_wacom_device_new_fake ("Huion H610 Pro"); devices = g_list_prepend (NULL, device); return devices; } int main (int argc, char **argv) { GtkWidget *window, *notebook; GList *devices; bindtextdomain (GETTEXT_PACKAGE, LOCALE_DIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); textdomain (GETTEXT_PACKAGE); gtk_init (&argc, &argv); window = gtk_window_new (GTK_WINDOW_TOPLEVEL); gtk_window_set_resizable (GTK_WINDOW (window), FALSE); gtk_window_set_default_size (GTK_WINDOW (window), FIXED_WIDTH, -1); g_signal_connect (G_OBJECT (window), "delete-event", G_CALLBACK (delete_event_cb), NULL); notebook = gtk_notebook_new (); gtk_notebook_set_show_tabs (GTK_NOTEBOOK (notebook), FALSE); gtk_notebook_set_show_border (GTK_NOTEBOOK (notebook), FALSE); gtk_widget_set_vexpand (notebook, TRUE); gtk_container_set_border_width (GTK_CONTAINER (notebook), 24); gtk_container_add (GTK_CONTAINER (window), notebook); gtk_widget_show (notebook); devices = create_fake_intuos4 (); add_page (devices, notebook); devices = create_fake_cintiq (); add_page (devices, notebook); devices = create_fake_bt (); add_page (devices, notebook); devices = create_fake_x201 (); add_page (devices, notebook); devices = create_fake_h610pro (); add_page (devices, notebook); gtk_widget_show (window); gtk_main (); return 0; } cinnamon-control-center-6.2.0/panels/wacom/wacom-stylus-classic.svg0000664000175000017500000001155414632072346024415 0ustar fabiofabio image/svg+xml cinnamon-control-center-6.2.0/panels/wacom/cinnamon-wacom.gresource.xml0000664000175000017500000000166014632072346025230 0ustar fabiofabio cinnamon-wacom-properties.ui wacom-stylus-page.ui button-mapping.ui calibrator/calibrator.ui calibrator/calibrator.css calibrator/target.svg wacom-tablet.svg wacom-stylus.svg wacom-stylus-3btn-no-eraser.svg wacom-stylus-3btn.svg wacom-stylus-no-eraser.svg wacom-stylus-airbrush.svg wacom-stylus-inking.svg wacom-stylus-art-pen.svg wacom-stylus-classic.svg wacom-tablet-cintiq.svg wacom-tablet-pc.svg cinnamon-control-center-6.2.0/panels/wacom/wacom-tablet.svg0000664000175000017500000000533614632072346022707 0ustar fabiofabio image/svg+xml cinnamon-control-center-6.2.0/panels/wacom/cc-wacom-stylus-page.c0000664000175000017500000003507114632072346023716 0ustar fabiofabio/* * Copyright Ā© 2011 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Authors: Peter Hutterer * Bastien Nocera * */ #include #include #include "cc-wacom-stylus-page.h" #include "cc-wacom-nav-button.h" #include "cc-drawing-area.h" #include #include #include #define WID(x) (GtkWidget *) gtk_builder_get_object (page->builder, x) #define CWID(x) (GtkContainer *) gtk_builder_get_object (page->builder, x) struct _CcWacomStylusPage { GtkBox parent_instance; CcWacomTool *stylus; GtkBuilder *builder; GtkWidget *nav; GSettings *stylus_settings; GtkWidget *test_draw_area; }; G_DEFINE_TYPE (CcWacomStylusPage, cc_wacom_stylus_page, GTK_TYPE_BOX) /* Button combo box storage columns */ enum { BUTTONNUMBER_COLUMN, BUTTONNAME_COLUMN, N_BUTTONCOLUMNS }; /* GSettings stores pressurecurve as 4 values like the driver. We map slider * scale to these values given the array below. These settings were taken from * wacomcpl, where they've been around for years. */ #define N_PRESSURE_CURVES 7 static const gint32 PRESSURE_CURVES[N_PRESSURE_CURVES][4] = { { 0, 75, 25, 100 }, /* soft */ { 0, 50, 50, 100 }, { 0, 25, 75, 100 }, { 0, 0, 100, 100 }, /* neutral */ { 25, 0, 100, 75 }, { 50, 0, 100, 50 }, { 75, 0, 100, 25 } /* firm */ }; static void set_pressurecurve (GtkRange *range, GSettings *settings, const gchar *key) { gint slider_val = gtk_range_get_value (range); GVariant *values[4], *array; int i; for (i = 0; i < G_N_ELEMENTS (values); i++) values[i] = g_variant_new_int32 (PRESSURE_CURVES[slider_val][i]); array = g_variant_new_array (G_VARIANT_TYPE_INT32, values, G_N_ELEMENTS (values)); g_settings_set_value (settings, key, array); } static void tip_feel_value_changed_cb (GtkRange *range, gpointer user_data) { CcWacomStylusPage *page = CC_WACOM_STYLUS_PAGE(user_data); set_pressurecurve (range, page->stylus_settings, "pressure-curve"); } static void eraser_feel_value_changed_cb (GtkRange *range, gpointer user_data) { CcWacomStylusPage *page = CC_WACOM_STYLUS_PAGE(user_data); set_pressurecurve (range, page->stylus_settings, "eraser-pressure-curve"); } static void set_feel_from_gsettings (GtkAdjustment *adjustment, GSettings *settings, const gchar *key) { GVariant *variant; const gint32 *values; gsize nvalues; int i; variant = g_settings_get_value (settings, key); values = g_variant_get_fixed_array (variant, &nvalues, sizeof (gint32)); if (nvalues != 4) { g_warning ("Invalid pressure curve format, expected 4 values (got %"G_GSIZE_FORMAT")", nvalues); return; } for (i = 0; i < N_PRESSURE_CURVES; i++) { if (memcmp (PRESSURE_CURVES[i], values, sizeof (gint32) * 4) == 0) { gtk_adjustment_set_value (adjustment, i); break; } } } static void set_button_mapping_from_gsettings (GtkComboBox *combo, GSettings* settings, const gchar *key) { CDesktopStylusButtonAction action; GtkTreeModel *model; GtkTreeIter iter; gboolean valid; action = g_settings_get_enum (settings, key); model = gtk_combo_box_get_model (combo); valid = gtk_tree_model_get_iter_first (model, &iter); while (valid) { gint button; gtk_tree_model_get (model, &iter, BUTTONNUMBER_COLUMN, &button, -1); /* Currently button values match logical X buttons. If we * introduce things like double-click, this code must * change. Recommendation: use negative buttons numbers for * special ones. */ if (button == action) { gtk_combo_box_set_active_iter (combo, &iter); break; } valid = gtk_tree_model_iter_next (model, &iter); } } static void button_changed_cb (GtkComboBox *combo, gpointer user_data) { CcWacomStylusPage *page = CC_WACOM_STYLUS_PAGE(user_data); GtkTreeIter iter; GtkListStore *liststore; gint mapping_b2, mapping_b3, mapping_b4; if (!gtk_combo_box_get_active_iter (GTK_COMBO_BOX (WID ("combo-bottombutton")), &iter)) return; liststore = GTK_LIST_STORE (WID ("liststore-buttons")); gtk_tree_model_get (GTK_TREE_MODEL (liststore), &iter, BUTTONNUMBER_COLUMN, &mapping_b2, -1); if (cc_wacom_tool_get_num_buttons (page->stylus) > 1) { if (!gtk_combo_box_get_active_iter (GTK_COMBO_BOX (WID ("combo-topbutton")), &iter)) return; gtk_tree_model_get (GTK_TREE_MODEL (liststore), &iter, BUTTONNUMBER_COLUMN, &mapping_b3, -1); } else { mapping_b3 = 0; } if (cc_wacom_tool_get_num_buttons (page->stylus) > 2) { if (!gtk_combo_box_get_active_iter (GTK_COMBO_BOX (WID ("combo-thirdbutton")), &iter)) return; gtk_tree_model_get (GTK_TREE_MODEL (liststore), &iter, BUTTONNUMBER_COLUMN, &mapping_b4, -1); } else { mapping_b4 = 0; } g_settings_set_enum (page->stylus_settings, "button-action", mapping_b2); g_settings_set_enum (page->stylus_settings, "secondary-button-action", mapping_b3); g_settings_set_enum (page->stylus_settings, "tertiary-button-action", mapping_b4); } static void combobox_text_cellrenderer (GtkComboBox *combo, int name_column) { GtkCellRenderer *renderer; renderer = gtk_cell_renderer_text_new (); gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo), renderer, TRUE); gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo), renderer, "text", BUTTONNAME_COLUMN, NULL); } /* Boilerplate code goes below */ static void cc_wacom_stylus_page_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) { switch (property_id) { default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } } static void cc_wacom_stylus_page_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) { switch (property_id) { default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } } static void cc_wacom_stylus_page_dispose (GObject *object) { CcWacomStylusPage *page = CC_WACOM_STYLUS_PAGE (object); g_clear_object (&page->builder); G_OBJECT_CLASS (cc_wacom_stylus_page_parent_class)->dispose (object); } static void cc_wacom_stylus_page_class_init (CcWacomStylusPageClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); object_class->get_property = cc_wacom_stylus_page_get_property; object_class->set_property = cc_wacom_stylus_page_set_property; object_class->dispose = cc_wacom_stylus_page_dispose; } static void add_marks (GtkScale *scale) { gint i; for (i = 0; i < N_PRESSURE_CURVES; i++) gtk_scale_add_mark (scale, i, GTK_POS_BOTTOM, NULL); } static void cc_wacom_stylus_page_init (CcWacomStylusPage *page) { g_autoptr(GError) error = NULL; GtkComboBox *combo; GtkWidget *box; char *objects[] = { "stylus-grid", "liststore-buttons", "adjustment-tip-feel", "adjustment-eraser-feel", NULL }; page->builder = gtk_builder_new (); gtk_builder_add_objects_from_resource (page->builder, "/org/cinnamon/control-center/wacom/wacom-stylus-page.ui", objects, &error); if (error != NULL) { g_warning ("Error loading UI file: %s", error->message); return; } box = WID ("stylus-grid"); gtk_container_add (GTK_CONTAINER (page), box); gtk_widget_set_vexpand (GTK_WIDGET (box), TRUE); add_marks (GTK_SCALE (WID ("scale-tip-feel"))); add_marks (GTK_SCALE (WID ("scale-eraser-feel"))); g_signal_connect (WID ("scale-tip-feel"), "value-changed", G_CALLBACK (tip_feel_value_changed_cb), page); g_signal_connect (WID ("scale-eraser-feel"), "value-changed", G_CALLBACK (eraser_feel_value_changed_cb), page); combo = GTK_COMBO_BOX (WID ("combo-topbutton")); combobox_text_cellrenderer (combo, BUTTONNAME_COLUMN); g_signal_connect (G_OBJECT (combo), "changed", G_CALLBACK (button_changed_cb), page); combo = GTK_COMBO_BOX (WID ("combo-bottombutton")); combobox_text_cellrenderer (combo, BUTTONNAME_COLUMN); g_signal_connect (G_OBJECT (combo), "changed", G_CALLBACK (button_changed_cb), page); combo = GTK_COMBO_BOX (WID ("combo-thirdbutton")); combobox_text_cellrenderer (combo, BUTTONNAME_COLUMN); g_signal_connect (G_OBJECT (combo), "changed", G_CALLBACK (button_changed_cb), page); page->nav = cc_wacom_nav_button_new (); gtk_widget_set_halign (page->nav, GTK_ALIGN_END); gtk_widget_set_margin_start (page->nav, 10); gtk_widget_show (page->nav); gtk_container_add (CWID ("navigation-placeholder"), page->nav); } static void set_icon_name (CcWacomStylusPage *page, const char *widget_name, const char *icon_name) { g_autofree gchar *resource = NULL; resource = g_strdup_printf ("/org/cinnamon/control-center/wacom/%s.svg", icon_name); gtk_image_set_from_resource (GTK_IMAGE (WID (widget_name)), resource); } /* Different types of layout for the stylus config */ enum { LAYOUT_NORMAL, /* eraser, 2 buttons, tip */ LAYOUT_INKING, /* tip */ LAYOUT_AIRBRUSH, /* eraser, 1 button, tip */ LAYOUT_GENERIC_2_BUTTONS_NO_ERASER, /* 2 buttons, tip, no eraser */ LAYOUT_3DPEN, /* 3 buttons, tip, no eraser */ LAYOUT_OTHER }; static void remove_buttons (CcWacomStylusPage *page, int n) { if (n < 3) { gtk_widget_destroy (WID ("combo-thirdbutton")); gtk_widget_destroy (WID ("label-third-button")); } if (n < 2) { gtk_widget_destroy (WID ("combo-topbutton")); gtk_widget_destroy (WID ("label-top-button")); gtk_label_set_text (GTK_LABEL (WID ("label-lower-button")), _("Button")); } if (n < 1) { gtk_widget_destroy (WID ("combo-bottombutton")); gtk_widget_destroy (WID ("label-lower-button")); } } static void remove_eraser (CcWacomStylusPage *page) { gtk_widget_destroy (WID ("eraser-box")); gtk_widget_destroy (WID ("label-eraser-feel")); } static void update_stylus_ui (CcWacomStylusPage *page, int layout) { switch (layout) { case LAYOUT_NORMAL: remove_buttons (page, 2); break; case LAYOUT_INKING: remove_buttons (page, 0); remove_eraser (page); gtk_container_child_set (CWID ("stylus-controls-grid"), WID ("label-tip-feel"), "top_attach", 0, NULL); gtk_container_child_set (CWID ("stylus-controls-grid"), WID ("box-tip-feel"), "top_attach", 0, NULL); break; case LAYOUT_AIRBRUSH: remove_buttons (page, 1); gtk_container_child_set (CWID ("stylus-controls-grid"), WID ("label-lower-button"), "top_attach", 1, NULL); gtk_container_child_set (CWID ("stylus-controls-grid"), WID ("combo-bottombutton"), "top_attach", 1, NULL); gtk_container_child_set (CWID ("stylus-controls-grid"), WID ("label-tip-feel"), "top_attach", 2, NULL); gtk_container_child_set (CWID ("stylus-controls-grid"), WID ("box-tip-feel"), "top_attach", 2, NULL); break; case LAYOUT_GENERIC_2_BUTTONS_NO_ERASER: remove_buttons (page, 2); remove_eraser (page); break; case LAYOUT_3DPEN: remove_buttons (page, 3); remove_eraser (page); break; case LAYOUT_OTHER: /* We already warn about it in cc_wacom_stylus_page_new () */ break; } } GtkWidget * cc_wacom_stylus_page_new (CcWacomTool *stylus) { CcWacomStylusPage *page; guint num_buttons; int layout; gboolean has_eraser; g_return_val_if_fail (CC_IS_WACOM_TOOL (stylus), NULL); page = g_object_new (CC_TYPE_WACOM_STYLUS_PAGE, NULL); page->stylus = stylus; /* Icon */ set_icon_name (page, "image-stylus", cc_wacom_tool_get_icon_name (stylus)); /* Settings */ page->stylus_settings = cc_wacom_tool_get_settings (stylus); has_eraser = cc_wacom_tool_get_has_eraser (stylus); /* Stylus name */ gtk_label_set_text (GTK_LABEL (WID ("label-stylus")), cc_wacom_tool_get_name (stylus)); num_buttons = cc_wacom_tool_get_num_buttons (stylus); if (num_buttons == 0 && !has_eraser) layout = LAYOUT_INKING; else if (num_buttons == 2 && has_eraser) layout = LAYOUT_NORMAL; else if (num_buttons == 1 && has_eraser) layout = LAYOUT_AIRBRUSH; else if (num_buttons == 2 && !has_eraser) layout = LAYOUT_GENERIC_2_BUTTONS_NO_ERASER; else if (num_buttons == 3 && !has_eraser) layout = LAYOUT_3DPEN; else { layout = LAYOUT_OTHER; remove_buttons (page, num_buttons); /* Gray out eraser if not available */ gtk_widget_set_sensitive (WID ("eraser-box"), has_eraser); gtk_widget_set_sensitive (WID ("label-eraser-feel"), has_eraser); g_warning ("The layout of this page is not known, %d buttons, %s eraser", num_buttons, has_eraser ? "with" : "without"); } update_stylus_ui (page, layout); if (num_buttons >= 3) set_button_mapping_from_gsettings (GTK_COMBO_BOX (WID ("combo-thirdbutton")), page->stylus_settings, "tertiary-button-action"); if (num_buttons >= 2) set_button_mapping_from_gsettings (GTK_COMBO_BOX (WID ("combo-topbutton")), page->stylus_settings, "secondary-button-action"); if (num_buttons >= 1) set_button_mapping_from_gsettings (GTK_COMBO_BOX (WID ("combo-bottombutton")), page->stylus_settings, "button-action"); set_feel_from_gsettings (GTK_ADJUSTMENT (WID ("adjustment-tip-feel")), page->stylus_settings, "pressure-curve"); if (has_eraser) set_feel_from_gsettings (GTK_ADJUSTMENT (WID ("adjustment-eraser-feel")), page->stylus_settings, "eraser-pressure-curve"); page->test_draw_area = cc_drawing_area_new (); gtk_widget_set_size_request (page->test_draw_area, 400, 300); gtk_box_pack_start (GTK_BOX (WID ("test_box")), page->test_draw_area, TRUE, TRUE, 6); gtk_widget_show (page->test_draw_area); return GTK_WIDGET (page); } CcWacomTool * cc_wacom_stylus_page_get_tool (CcWacomStylusPage *page) { return page->stylus; } void cc_wacom_stylus_page_set_navigation (CcWacomStylusPage *page, GtkNotebook *notebook) { g_return_if_fail (CC_IS_WACOM_STYLUS_PAGE (page)); g_object_set (G_OBJECT (page->nav), "notebook", notebook, "ignore-first", TRUE, NULL); } cinnamon-control-center-6.2.0/panels/wacom/cc-wacom-device.c0000664000175000017500000002156614632072346022704 0ustar fabiofabio/* * Copyright Ā© 2016 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Authors: Carlos Garnacho * */ #include "config.h" #include #include "cc-wacom-device.h" #include "muffin-display-config.h" enum { PROP_0, PROP_DEVICE, N_PROPS }; GParamSpec *props[N_PROPS] = { 0 }; typedef struct _CcWacomDevice CcWacomDevice; struct _CcWacomDevice { GObject parent_instance; CsdDevice *device; WacomDevice *wdevice; MetaDBusDisplayConfig *proxy; GList *monitors; }; static void cc_wacom_device_initable_iface_init (GInitableIface *iface); G_DEFINE_TYPE_WITH_CODE (CcWacomDevice, cc_wacom_device, G_TYPE_OBJECT, G_IMPLEMENT_INTERFACE (G_TYPE_INITABLE, cc_wacom_device_initable_iface_init)) // G_DEFINE_TYPE (CcWacomDevice, cc_wacom_device, G_TYPE_OBJECT) enum { MONITORS_CHANGED, N_SIGNALS, }; WacomDeviceDatabase * cc_wacom_device_database_get (void) { static WacomDeviceDatabase *db = NULL; if (g_once_init_enter (&db)) { gpointer p = libwacom_database_new (); g_once_init_leave (&db, p); } return db; } static void cc_wacom_device_init (CcWacomDevice *device) { } static void cc_wacom_device_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec) { CcWacomDevice *device = CC_WACOM_DEVICE (object); switch (prop_id) { case PROP_DEVICE: device->device = g_value_get_object (value); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; } } static void cc_wacom_device_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec) { CcWacomDevice *device = CC_WACOM_DEVICE (object); switch (prop_id) { case PROP_DEVICE: g_value_set_object (value, device->device); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; } } static void cc_wacom_device_finalize (GObject *object) { CcWacomDevice *device = CC_WACOM_DEVICE (object); g_clear_pointer (&device->wdevice, libwacom_destroy); G_OBJECT_CLASS (cc_wacom_device_parent_class)->finalize (object); } static void cc_wacom_device_class_init (CcWacomDeviceClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); // object_class->constructed = cc_wacom_device_constructed; object_class->set_property = cc_wacom_device_set_property; object_class->get_property = cc_wacom_device_get_property; object_class->finalize = cc_wacom_device_finalize; props[PROP_DEVICE] = g_param_spec_object ("device", "device", "device", CSD_TYPE_DEVICE, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY); g_object_class_install_properties (object_class, N_PROPS, props); } static gboolean cc_wacom_device_initable_init (GInitable *initable, GCancellable *cancellable, GError **error) { CcWacomDevice *device = CC_WACOM_DEVICE (initable); WacomDeviceDatabase *wacom_db; const gchar *node_path; wacom_db = cc_wacom_device_database_get (); node_path = csd_device_get_device_file (device->device); device->wdevice = libwacom_new_from_path (wacom_db, node_path, FALSE, NULL); if (!device->wdevice) { g_set_error (error, 0, 0, "Tablet description not found"); return FALSE; } return TRUE; } static void cc_wacom_device_initable_iface_init (GInitableIface *iface) { iface->init = cc_wacom_device_initable_init; } CcWacomDevice * cc_wacom_device_new (CsdDevice *device) { return g_initable_new (CC_TYPE_WACOM_DEVICE, NULL, NULL, "device", device, NULL); } CcWacomDevice * cc_wacom_device_new_fake (const gchar *name) { CcWacomDevice *device; WacomDevice *wacom_device; device = g_object_new (CC_TYPE_WACOM_DEVICE, NULL); wacom_device = libwacom_new_from_name (cc_wacom_device_database_get(), name, NULL); if (wacom_device == NULL) return NULL; device->wdevice = wacom_device; return device; } const gchar * cc_wacom_device_get_name (CcWacomDevice *device) { g_return_val_if_fail (CC_IS_WACOM_DEVICE (device), NULL); return libwacom_get_name (device->wdevice); } const gchar * cc_wacom_device_get_icon_name (CcWacomDevice *device) { WacomIntegrationFlags integration_flags; g_return_val_if_fail (CC_IS_WACOM_DEVICE (device), NULL); integration_flags = libwacom_get_integration_flags (device->wdevice); if (integration_flags & WACOM_DEVICE_INTEGRATED_SYSTEM) { return "wacom-tablet-pc"; } else if (integration_flags & WACOM_DEVICE_INTEGRATED_DISPLAY) { return "wacom-tablet-cintiq"; } else { return "wacom-tablet"; } } gboolean cc_wacom_device_is_reversible (CcWacomDevice *device) { g_return_val_if_fail (CC_IS_WACOM_DEVICE (device), FALSE); return libwacom_is_reversible (device->wdevice); } WacomIntegrationFlags cc_wacom_device_get_integration_flags (CcWacomDevice *device) { g_return_val_if_fail (CC_IS_WACOM_DEVICE (device), 0); return libwacom_get_integration_flags (device->wdevice); } CsdDevice * cc_wacom_device_get_device (CcWacomDevice *device) { g_return_val_if_fail (CC_IS_WACOM_DEVICE (device), NULL); return device->device; } GSettings * cc_wacom_device_get_settings (CcWacomDevice *device) { g_return_val_if_fail (CC_IS_WACOM_DEVICE (device), NULL); return csd_device_get_settings (device->device); } const gint * cc_wacom_device_get_supported_tools (CcWacomDevice *device, gint *n_tools) { *n_tools = 0; g_return_val_if_fail (CC_IS_WACOM_DEVICE (device), NULL); return libwacom_get_supported_styli (device->wdevice, n_tools); } static MonitorInfo * find_monitor (CcWacomDevice *device) { GList *monitors, *l; g_autoptr(GSettings) settings = NULL; g_autoptr(GVariant) variant = NULL; g_autofree const gchar **edid = NULL; gsize n; settings = cc_wacom_device_get_settings (device); variant = g_settings_get_value (settings, "output"); edid = g_variant_get_strv (variant, &n); if (n != 3) { g_critical ("Expected 'output' key to store %d values; got %"G_GSIZE_FORMAT".", 3, n); return NULL; } if (strlen (edid[0]) == 0 || strlen (edid[1]) == 0 || strlen (edid[2]) == 0) return NULL; monitors = cc_wacom_output_manager_get_all_monitors (cc_wacom_output_manager_get ()); for (l = monitors; l != NULL; l = l->next) { MonitorInfo *info = (MonitorInfo *) l->data; if (g_strcmp0 (info->vendor, edid[0]) == 0 && g_strcmp0 (info->product, edid[1]) == 0 && g_strcmp0 (info->serial, edid[2]) == 0) return info; } return NULL; } MonitorInfo * cc_wacom_device_get_monitor (CcWacomDevice *device) { MonitorInfo *monitor; g_return_val_if_fail (CC_IS_WACOM_DEVICE (device), NULL); monitor = find_monitor (device); if (monitor == NULL) { return NULL; } return monitor; } void cc_wacom_device_set_monitor (CcWacomDevice *device, MonitorInfo *monitor) { g_autoptr(GSettings) settings = NULL; const gchar *values[] = { "", "", "", NULL }; g_return_if_fail (CC_IS_WACOM_DEVICE (device)); settings = cc_wacom_device_get_settings (device); if (monitor != NULL) { values[0] = monitor->vendor; values[1] = monitor->product; values[2] = monitor->serial; } g_settings_set_strv (settings, "output", values); } guint cc_wacom_device_get_num_buttons (CcWacomDevice *device) { g_return_val_if_fail (CC_IS_WACOM_DEVICE (device), 0); return libwacom_get_num_buttons (device->wdevice); } GSettings * cc_wacom_device_get_button_settings (CcWacomDevice *device, guint button) { g_autoptr(GSettings) tablet_settings = NULL; GSettings *settings; g_autofree gchar *path = NULL; g_autofree gchar *button_path = NULL; g_return_val_if_fail (CC_IS_WACOM_DEVICE (device), NULL); if (button > cc_wacom_device_get_num_buttons (device)) return NULL; tablet_settings = cc_wacom_device_get_settings (device); g_object_get (tablet_settings, "path", &path, NULL); button_path = g_strdup_printf ("%sbutton%c/", path, 'A' + button); settings = g_settings_new_with_path ("org.cinnamon.desktop.peripherals.tablet.pad-button", button_path); return settings; } cinnamon-control-center-6.2.0/panels/wacom/cc-wacom-tool.c0000664000175000017500000001620614632072346022415 0ustar fabiofabio/* * Copyright Ā© 2016 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Authors: Carlos Garnacho * */ #include "config.h" #include "cc-wacom-tool.h" enum { PROP_0, PROP_SERIAL, PROP_ID, PROP_DEVICE, N_PROPS }; static GParamSpec *props[N_PROPS] = { 0 }; typedef struct _CcWacomTool CcWacomTool; struct _CcWacomTool { GObject parent_instance; guint64 serial; guint64 id; CcWacomDevice *device; /* Only set for tools with no serial */ GSettings *settings; const WacomStylus *wstylus; }; static void cc_wacom_tool_initable_iface_init (GInitableIface *iface); G_DEFINE_TYPE_WITH_CODE (CcWacomTool, cc_wacom_tool, G_TYPE_OBJECT, G_IMPLEMENT_INTERFACE (G_TYPE_INITABLE, cc_wacom_tool_initable_iface_init)) static void cc_wacom_tool_init (CcWacomTool *tool) { } static void cc_wacom_tool_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec) { CcWacomTool *tool = CC_WACOM_TOOL (object); switch (prop_id) { case PROP_SERIAL: tool->serial = g_value_get_uint64 (value); break; case PROP_ID: tool->id = g_value_get_uint64 (value); break; case PROP_DEVICE: tool->device = g_value_get_object (value); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; } } static void cc_wacom_tool_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec) { CcWacomTool *tool = CC_WACOM_TOOL (object); switch (prop_id) { case PROP_SERIAL: g_value_set_uint64 (value, tool->serial); break; case PROP_ID: g_value_set_uint64 (value, tool->id); break; case PROP_DEVICE: g_value_set_object (value, tool->device); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; } } static void cc_wacom_tool_finalize (GObject *object) { CcWacomTool *tool = CC_WACOM_TOOL (object); g_clear_object (&tool->settings); G_OBJECT_CLASS (cc_wacom_tool_parent_class)->finalize (object); } static void cc_wacom_tool_class_init (CcWacomToolClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); object_class->set_property = cc_wacom_tool_set_property; object_class->get_property = cc_wacom_tool_get_property; object_class->finalize = cc_wacom_tool_finalize; props[PROP_SERIAL] = g_param_spec_uint64 ("serial", "serial", "serial", 0, G_MAXUINT64, 0, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY); props[PROP_ID] = g_param_spec_uint64 ("id", "id", "id", 0, G_MAXUINT64, 0, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY); props[PROP_DEVICE] = g_param_spec_object ("device", "device", "device", CC_TYPE_WACOM_DEVICE, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY); g_object_class_install_properties (object_class, N_PROPS, props); } static gboolean cc_wacom_tool_initable_init (GInitable *initable, GCancellable *cancellable, GError **error) { CcWacomTool *tool = CC_WACOM_TOOL (initable); WacomDeviceDatabase *wacom_db; gchar *path; wacom_db = cc_wacom_device_database_get (); if (tool->id == 0 && tool->device) { const gint *ids; gint n_supported; ids = cc_wacom_device_get_supported_tools (tool->device, &n_supported); if (n_supported > 0) tool->id = ids[0]; } if (tool->id == 0) tool->wstylus = libwacom_stylus_get_for_id (wacom_db, 0xfffff); else tool->wstylus = libwacom_stylus_get_for_id (wacom_db, tool->id); if (!tool->wstylus) { g_set_error (error, 0, 0, "Stylus description not found"); return FALSE; } if (tool->serial == 0) { const gchar *vendor, *product; CsdDevice *csd_device; csd_device = cc_wacom_device_get_device (tool->device); csd_device_get_device_ids (csd_device, &vendor, &product); path = g_strdup_printf ("/org/cinnamon/desktop/peripherals/stylus/default-%s:%s/", vendor, product); } else { path = g_strdup_printf ("/org/cinnamon/desktop/peripherals/stylus/%lx/", tool->serial); } tool->settings = g_settings_new_with_path ("org.cinnamon.desktop.peripherals.tablet.stylus", path); g_free (path); return TRUE; } static void cc_wacom_tool_initable_iface_init (GInitableIface *iface) { iface->init = cc_wacom_tool_initable_init; } CcWacomTool * cc_wacom_tool_new (guint64 serial, guint64 id, CcWacomDevice *device) { g_return_val_if_fail (serial != 0 || CC_IS_WACOM_DEVICE (device), NULL); return g_initable_new (CC_TYPE_WACOM_TOOL, NULL, NULL, "serial", serial, "id", id, "device", device, NULL); } guint64 cc_wacom_tool_get_serial (CcWacomTool *tool) { g_return_val_if_fail (CC_IS_WACOM_TOOL (tool), 0); return tool->serial; } guint64 cc_wacom_tool_get_id (CcWacomTool *tool) { g_return_val_if_fail (CC_IS_WACOM_TOOL (tool), 0); return tool->id; } const gchar * cc_wacom_tool_get_name (CcWacomTool *tool) { g_return_val_if_fail (CC_IS_WACOM_TOOL (tool), NULL); return libwacom_stylus_get_name (tool->wstylus); } static const char * get_icon_name_from_type (const WacomStylus *wstylus) { WacomStylusType type = libwacom_stylus_get_type (wstylus); switch (type) { case WSTYLUS_INKING: case WSTYLUS_STROKE: /* The stroke pen is the same as the inking pen with * a different nib */ return "wacom-stylus-inking"; case WSTYLUS_AIRBRUSH: return "wacom-stylus-airbrush"; case WSTYLUS_MARKER: return "wacom-stylus-art-pen"; case WSTYLUS_CLASSIC: return "wacom-stylus-classic"; #ifdef HAVE_WACOM_3D_STYLUS case WSTYLUS_3D: return "wacom-stylus-3btn-no-eraser"; #endif default: if (!libwacom_stylus_has_eraser (wstylus)) { if (libwacom_stylus_get_num_buttons (wstylus) >= 3) return "wacom-stylus-3btn-no-eraser"; else return "wacom-stylus-no-eraser"; } else { if (libwacom_stylus_get_num_buttons (wstylus) >= 3) return "wacom-stylus-3btn"; else return "wacom-stylus"; } } } const gchar * cc_wacom_tool_get_icon_name (CcWacomTool *tool) { g_return_val_if_fail (CC_IS_WACOM_TOOL (tool), NULL); return get_icon_name_from_type (tool->wstylus); } GSettings * cc_wacom_tool_get_settings (CcWacomTool *tool) { g_return_val_if_fail (CC_IS_WACOM_TOOL (tool), NULL); return tool->settings; } guint cc_wacom_tool_get_num_buttons (CcWacomTool *tool) { g_return_val_if_fail (CC_IS_WACOM_TOOL (tool), 0); return libwacom_stylus_get_num_buttons (tool->wstylus); } gboolean cc_wacom_tool_get_has_eraser (CcWacomTool *tool) { g_return_val_if_fail (CC_IS_WACOM_TOOL (tool), FALSE); return libwacom_stylus_has_eraser (tool->wstylus); } cinnamon-control-center-6.2.0/panels/wacom/cc-wacom-page.c0000664000175000017500000006144214632072346022356 0ustar fabiofabio/* * Copyright Ā© 2011 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Authors: Peter Hutterer * Bastien Nocera * */ #include #ifdef FAKE_AREA #include #endif /* FAKE_AREA */ #include #include #include #ifdef GDK_WINDOWING_X11 #include #endif #ifdef GDK_WINDOWING_WAYLAND #include #endif #include "cc-wacom-device.h" #include "cc-wacom-button-row.h" #include "cc-wacom-page.h" #include "cc-wacom-nav-button.h" #include "cc-wacom-mapping-panel.h" #include "cc-wacom-stylus-page.h" #include "cc-wacom-output-manager.h" #include "calibrator-gui.h" #include "csd-input-helper.h" #include #define WID(x) (GtkWidget *) gtk_builder_get_object (page->builder, x) #define CWID(x) (GtkContainer *) gtk_builder_get_object (page->builder, x) #define MWID(x) (GtkWidget *) gtk_builder_get_object (page->mapping_builder, x) #define THRESHOLD_MISCLICK 15 #define THRESHOLD_DOUBLECLICK 7 enum { MAPPING_DESCRIPTION_COLUMN, MAPPING_TYPE_COLUMN, MAPPING_BUTTON_COLUMN, MAPPING_BUTTON_DIRECTION, MAPPING_N_COLUMNS }; struct _CcWacomPage { GtkBox parent_instance; CcWacomPanel *panel; CcWacomDevice *stylus; CcWacomDevice *pad; GtkBuilder *builder; GtkWidget *nav; GtkWidget *notebook; CalibArea *area; GSettings *wacom_settings; GtkSizeGroup *header_group; /* Button mapping */ GtkBuilder *mapping_builder; GtkWidget *button_map; GtkListStore *action_store; /* Display mapping */ GtkWidget *mapping; GtkWidget *dialog; GCancellable *cancellable; }; G_DEFINE_TYPE (CcWacomPage, cc_wacom_page, GTK_TYPE_BOX) /* Button combo box storage columns */ enum { BUTTONNUMBER_COLUMN, BUTTONNAME_COLUMN, N_BUTTONCOLUMNS }; /* Tablet mode combo box storage columns */ enum { MODENUMBER_COLUMN, MODELABEL_COLUMN, N_MODECOLUMNS }; /* Tablet mode options - keep in sync with .ui */ enum { MODE_ABSOLUTE, /* stylus + eraser absolute */ MODE_RELATIVE, /* stylus + eraser relative */ }; /* Different types of layout for the tablet config */ enum { LAYOUT_NORMAL, /* tracking mode, button mapping */ LAYOUT_REVERSIBLE, /* tracking mode, button mapping, left-hand orientation */ LAYOUT_SCREEN /* button mapping, calibration, display resolution */ }; static void update_tablet_ui (CcWacomPage *page, int layout); static int get_layout_type (CcWacomDevice *device) { int layout; if (cc_wacom_device_get_integration_flags (device) & (WACOM_DEVICE_INTEGRATED_DISPLAY | WACOM_DEVICE_INTEGRATED_SYSTEM)) layout = LAYOUT_SCREEN; else if (cc_wacom_device_is_reversible (device)) layout = LAYOUT_REVERSIBLE; else layout = LAYOUT_NORMAL; return layout; } static void set_calibration (CcWacomDevice *device, const gint display_width, const gint display_height, gdouble *cal, gsize ncal, GSettings *settings) { GVariant *current; /* current calibration */ GVariant *array; /* new calibration */ g_autofree GVariant **tmp = NULL; gsize nvalues; gint i; current = g_settings_get_value (settings, "area"); g_variant_get_fixed_array (current, &nvalues, sizeof (gdouble)); if ((ncal != 4) || (nvalues != 4)) { g_warning("Unable set set device calibration property. Got %"G_GSIZE_FORMAT" items to put in %"G_GSIZE_FORMAT" slots; expected %d items.\n", ncal, nvalues, 4); return; } tmp = g_malloc (nvalues * sizeof (GVariant*)); for (i = 0; i < ncal; i++) tmp[i] = g_variant_new_double (cal[i]); array = g_variant_new_array (G_VARIANT_TYPE_DOUBLE, tmp, nvalues); g_settings_set_value (settings, "area", array); g_debug ("Setting area to %f, %f, %f, %f (left/right/top/bottom) (last used resolution: %d x %d)", cal[0], cal[1], cal[2], cal[3], display_width, display_height); } static void finish_calibration (CalibArea *area, gpointer user_data) { CcWacomPage *page = (CcWacomPage *) user_data; XYinfo axis; gdouble cal[4]; gint display_width, display_height; if (calib_area_finish (area)) { calib_area_get_padding (area, &axis); cal[0] = axis.x_min; cal[1] = axis.x_max; cal[2] = axis.y_min; cal[3] = axis.y_max; calib_area_get_display_size (area, &display_width, &display_height); set_calibration (page->stylus, display_width, display_height, cal, 4, page->wacom_settings); } else { /* Reset the old values */ GVariant *old_calibration; old_calibration = g_object_get_data (G_OBJECT (page), "old-calibration"); g_settings_set_value (page->wacom_settings, "area", old_calibration); g_object_set_data (G_OBJECT (page), "old-calibration", NULL); } calib_area_free (area); page->area = NULL; gtk_widget_set_sensitive (WID ("button-calibrate"), TRUE); } static GdkDevice * cc_wacom_page_get_gdk_device (CcWacomPage *page) { CsdDevice *csd_device; GdkDevice *gdk_device = NULL; GdkDisplay *display; GdkSeat *seat; g_autoptr(GList) slaves = NULL; GList *l; csd_device = cc_wacom_device_get_device (page->stylus); g_return_val_if_fail (CSD_IS_DEVICE (csd_device), NULL); display = gtk_widget_get_display (GTK_WIDGET (page)); seat = gdk_display_get_default_seat (display); slaves = gdk_seat_get_slaves (seat, GDK_SEAT_CAPABILITY_TABLET_STYLUS); for (l = slaves; l && !gdk_device; l = l->next) { g_autofree gchar *device_node = NULL; if (gdk_device_get_source (l->data) != GDK_SOURCE_PEN) continue; #ifdef GDK_WINDOWING_X11 if (GDK_IS_X11_DISPLAY (display)) device_node = xdevice_get_device_node (gdk_x11_device_get_id (l->data)); #endif #ifdef GDK_WINDOWING_WAYLAND if (GDK_IS_WAYLAND_DISPLAY (display)) device_node = g_strdup (gdk_wayland_device_get_node_path (l->data)); #endif if (g_strcmp0 (device_node, csd_device_get_device_file (csd_device)) == 0) gdk_device = l->data; } return gdk_device; } static gboolean run_calibration (CcWacomPage *page, GVariant *old_calibration, gdouble *cal, GdkMonitor *monitor) { GdkDisplay *display = gdk_monitor_get_display (monitor); gint i, n_monitor = 0; g_assert (page->area == NULL); for (i = 0; i < gdk_display_get_n_monitors (display); i++) { if (monitor == gdk_display_get_monitor (display, i)) { n_monitor = i; break; } } page->area = calib_area_new (NULL, n_monitor, cc_wacom_page_get_gdk_device (page), finish_calibration, page, THRESHOLD_MISCLICK, THRESHOLD_DOUBLECLICK); g_object_set_data_full (G_OBJECT (page), "old-calibration", old_calibration, (GDestroyNotify) g_variant_unref); return FALSE; } static void calibrate (CcWacomPage *page) { int i; GVariant *old_calibration, *array; g_autofree GVariant **tmp = NULL; g_autofree gdouble *calibration = NULL; gsize ncal; GdkMonitor *monitor = NULL; GdkScreen *screen; g_autoptr(GError) error = NULL; MonitorInfo *info; screen = gdk_screen_get_default (); if (error) { g_warning ("Could not connect to display manager: %s", error->message); return; } info = cc_wacom_device_get_monitor (page->stylus); if (info) { monitor = gdk_display_get_monitor_at_point (gdk_screen_get_display (screen), info->x, info->y); } if (!monitor) { /* The display the tablet should be mapped to could not be located. * This shouldn't happen if the EDID data is good... */ g_critical("Output associated with the tablet is not connected. Unable to calibrate."); return; } old_calibration = g_settings_get_value (page->wacom_settings, "area"); g_variant_get_fixed_array (old_calibration, &ncal, sizeof (gdouble)); if (ncal != 4) { g_warning("Device calibration property has wrong length. Got %"G_GSIZE_FORMAT" items; expected %d.\n", ncal, 4); return; } calibration = g_new0 (gdouble, ncal); /* Reset the current values, to avoid old calibrations * from interfering with the calibration */ tmp = g_malloc (ncal * sizeof (GVariant*)); for (i = 0; i < ncal; i++) { calibration[i] = 0.0; tmp[i] = g_variant_new_double (calibration[i]); } array = g_variant_new_array (G_VARIANT_TYPE_DOUBLE, tmp, ncal); g_settings_set_value (page->wacom_settings, "area", array); run_calibration (page, old_calibration, calibration, monitor); gtk_widget_set_sensitive (WID ("button-calibrate"), FALSE); } static void calibrate_button_clicked_cb (GtkButton *button, CcWacomPage *page) { calibrate (page); } /* This avoids us crashing when a newer version of * gnome-control-center has been used, and we load up an * old one, as the action type if unknown to the old g-c-c */ static gboolean action_type_is_valid (CDesktopPadButtonAction action) { if (action >= G_N_ELEMENTS (action_table)) return FALSE; return TRUE; } static void create_row_from_button (GtkWidget *list_box, guint button, GSettings *settings) { GtkWidget *row; row = cc_wacom_button_row_new (button, settings); gtk_container_add (GTK_CONTAINER (list_box), row); gtk_widget_show (row); } static void setup_button_mapping (CcWacomPage *page) { CDesktopPadButtonAction action; GtkWidget *list_box; guint i, n_buttons; GSettings *settings; list_box = MWID ("shortcuts_list"); n_buttons = cc_wacom_device_get_num_buttons (page->pad); for (i = 0; i < n_buttons; i++) { settings = cc_wacom_device_get_button_settings (page->pad, i); if (!settings) continue; action = g_settings_get_enum (settings, "action"); if (!action_type_is_valid (action)) continue; create_row_from_button (list_box, i, settings); } } static void button_mapping_dialog_closed (GtkDialog *dialog, int response_id, CcWacomPage *page) { gtk_widget_destroy (MWID ("button-mapping-dialog")); g_clear_object (&page->mapping_builder); } static void show_button_mapping_dialog (CcWacomPage *page) { GtkWidget *toplevel; g_autoptr(GError) error = NULL; GtkWidget *dialog; g_assert (page->mapping_builder == NULL); page->mapping_builder = gtk_builder_new (); gtk_builder_add_from_resource (page->mapping_builder, "/org/cinnamon/control-center/wacom/button-mapping.ui", &error); if (error != NULL) { g_warning ("Error loading UI file: %s", error->message); g_clear_object (&page->mapping_builder); return; } setup_button_mapping (page); dialog = MWID ("button-mapping-dialog"); toplevel = gtk_widget_get_toplevel (GTK_WIDGET (page)); gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (toplevel)); gtk_window_set_modal (GTK_WINDOW (dialog), TRUE); g_signal_connect (G_OBJECT (dialog), "response", G_CALLBACK (button_mapping_dialog_closed), page); gtk_widget_show (dialog); page->button_map = dialog; g_object_add_weak_pointer (G_OBJECT (dialog), (gpointer *) &page->button_map); } static void map_buttons_button_clicked_cb (GtkButton *button, CcWacomPage *page) { show_button_mapping_dialog (page); } static void display_mapping_dialog_closed (GtkDialog *dialog, int response_id, CcWacomPage *page) { int layout; gtk_widget_destroy (page->dialog); page->dialog = NULL; page->mapping = NULL; layout = get_layout_type (page->stylus); update_tablet_ui (page, layout); } static void display_mapping_button_clicked_cb (GtkButton *button, CcWacomPage *page) { g_assert (page->mapping == NULL); page->dialog = gtk_dialog_new_with_buttons (_("Display Mapping"), GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (page))), GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT, _("_Close"), GTK_RESPONSE_ACCEPT, NULL); page->mapping = cc_wacom_mapping_panel_new (); cc_wacom_mapping_panel_set_device (CC_WACOM_MAPPING_PANEL (page->mapping), page->stylus); gtk_container_add (GTK_CONTAINER (gtk_dialog_get_content_area (GTK_DIALOG (page->dialog))), page->mapping); g_signal_connect (G_OBJECT (page->dialog), "response", G_CALLBACK (display_mapping_dialog_closed), page); gtk_widget_show_all (page->dialog); g_object_add_weak_pointer (G_OBJECT (page->mapping), (gpointer *) &page->dialog); } static void tabletmode_changed_cb (GtkComboBox *combo, gpointer user_data) { CcWacomPage *page = CC_WACOM_PAGE (user_data); GtkListStore *liststore; GtkTreeIter iter; gint mode; if (!gtk_combo_box_get_active_iter (combo, &iter)) return; liststore = GTK_LIST_STORE (WID ("liststore-tabletmode")); gtk_tree_model_get (GTK_TREE_MODEL (liststore), &iter, MODENUMBER_COLUMN, &mode, -1); g_settings_set_enum (page->wacom_settings, "mapping", mode); } static void left_handed_toggled_cb (GtkSwitch *sw, GParamSpec *pspec, gpointer *user_data) { CcWacomPage *page = CC_WACOM_PAGE (user_data); gboolean left_handed; left_handed = gtk_switch_get_active (sw); g_settings_set_boolean (page->wacom_settings, "left-handed", left_handed); } static void set_left_handed_from_gsettings (CcWacomPage *page) { gboolean left_handed; left_handed = g_settings_get_boolean (page->wacom_settings, "left-handed"); gtk_switch_set_active (GTK_SWITCH (WID ("switch-left-handed")), left_handed); } static void set_mode_from_gsettings (GtkComboBox *combo, CcWacomPage *page) { CDesktopTabletMapping mapping; mapping = g_settings_get_enum (page->wacom_settings, "mapping"); /* this must be kept in sync with the .ui file */ gtk_combo_box_set_active (combo, mapping); } static void update_display_decoupled_sensitivity (CcWacomPage *page, gboolean active) { if (get_layout_type (page->stylus) != LAYOUT_SCREEN) return; gtk_widget_set_sensitive (WID ("label-trackingmode"), active); gtk_widget_set_sensitive (WID ("combo-tabletmode"), active); gtk_widget_set_sensitive (WID ("display-mapping-button-2"), active); gtk_widget_set_sensitive (WID ("button-calibrate"), !active); } static void set_display_decoupled_from_gsettings (GtkSwitch *sw, CcWacomPage *page) { g_auto(GStrv) output = g_settings_get_strv (page->wacom_settings, "output"); gboolean active = output != NULL && g_strcmp0 (output[0], "") != 0; gtk_switch_set_active (sw, active); update_display_decoupled_sensitivity (page, active); } static void combobox_text_cellrenderer (GtkComboBox *combo, int name_column) { GtkCellRenderer *renderer; renderer = gtk_cell_renderer_text_new (); gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo), renderer, TRUE); gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo), renderer, "text", BUTTONNAME_COLUMN, NULL); } static gboolean display_clicked_cb (GtkButton *button, CcWacomPage *page) { g_spawn_command_line_async ("cinnamon-settings display", NULL); return TRUE; } static gboolean mouse_clicked_cb (GtkButton *button, CcWacomPage *page) { g_spawn_command_line_async ("cinnamon-settings mouse", NULL); return TRUE; } static void decouple_display_toggled_cb (GtkSwitch *sw, GParamSpec *pspec, CcWacomPage *page) { gboolean active = gtk_switch_get_active (sw); update_display_decoupled_sensitivity (page, active); if (!active) { cc_wacom_device_set_monitor (page->stylus, NULL); } else { GList *monitors, *l; MonitorInfo *monitor = NULL; monitors = cc_wacom_output_manager_get_all_monitors (cc_wacom_output_manager_get ()); for (l = monitors; l != NULL; l = l->next) { monitor = (MonitorInfo *) l->data; if (monitor->builtin) { break; } } if (monitor == NULL) { monitor = (MonitorInfo *) monitors->data; } cc_wacom_device_set_monitor (page->stylus, monitor); } } /* Boilerplate code goes below */ static void cc_wacom_page_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) { switch (property_id) { default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } } static void cc_wacom_page_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) { switch (property_id) { default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } } static void cc_wacom_page_dispose (GObject *object) { CcWacomPage *self = CC_WACOM_PAGE (object); g_cancellable_cancel (self->cancellable); g_clear_object (&self->cancellable); g_clear_pointer (&self->area, calib_area_free); g_clear_pointer (&self->button_map, gtk_widget_destroy); g_clear_pointer (&self->dialog, gtk_widget_destroy); g_clear_object (&self->builder); g_clear_object (&self->header_group); self->panel = NULL; G_OBJECT_CLASS (cc_wacom_page_parent_class)->dispose (object); } static void cc_wacom_page_class_init (CcWacomPageClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); object_class->get_property = cc_wacom_page_get_property; object_class->set_property = cc_wacom_page_set_property; object_class->dispose = cc_wacom_page_dispose; } static void remove_link_padding (GtkWidget *widget) { g_autoptr(GtkCssProvider) provider = NULL; provider = gtk_css_provider_new (); gtk_css_provider_load_from_data (GTK_CSS_PROVIDER (provider), ".link { padding: 0px; }", -1, NULL); gtk_style_context_add_provider (gtk_widget_get_style_context (widget), GTK_STYLE_PROVIDER (provider), GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); } static void cc_wacom_page_init (CcWacomPage *page) { g_autoptr(GError) error = NULL; GtkComboBox *combo; GtkWidget *box; GtkSwitch *sw; char *objects[] = { "main-grid", "liststore-tabletmode", "liststore-buttons", "adjustment-tip-feel", "adjustment-eraser-feel", NULL }; page->builder = gtk_builder_new (); gtk_builder_add_objects_from_resource (page->builder, "/org/cinnamon/control-center/wacom/cinnamon-wacom-properties.ui", objects, &error); if (error != NULL) { g_warning ("Error loading UI file: %s", error->message); return; } box = WID ("main-grid"); gtk_container_add (GTK_CONTAINER (page), box); gtk_widget_set_vexpand (GTK_WIDGET (box), TRUE); g_signal_connect (WID ("button-calibrate"), "clicked", G_CALLBACK (calibrate_button_clicked_cb), page); g_signal_connect (WID ("map-buttons-button"), "clicked", G_CALLBACK (map_buttons_button_clicked_cb), page); combo = GTK_COMBO_BOX (WID ("combo-tabletmode")); combobox_text_cellrenderer (combo, MODELABEL_COLUMN); g_signal_connect (G_OBJECT (combo), "changed", G_CALLBACK (tabletmode_changed_cb), page); sw = GTK_SWITCH (WID ("switch-left-handed")); g_signal_connect (G_OBJECT (sw), "notify::active", G_CALLBACK (left_handed_toggled_cb), page); g_signal_connect (G_OBJECT (WID ("display-link")), "activate-link", G_CALLBACK (display_clicked_cb), page); remove_link_padding (WID ("display-link")); g_signal_connect (G_OBJECT (WID ("mouse-link")), "activate-link", G_CALLBACK (mouse_clicked_cb), page); remove_link_padding (WID ("mouse-link")); g_signal_connect (G_OBJECT (WID ("display-mapping-button")), "clicked", G_CALLBACK (display_mapping_button_clicked_cb), page); g_signal_connect (G_OBJECT (WID ("display-mapping-button-2")), "clicked", G_CALLBACK (display_mapping_button_clicked_cb), page); g_signal_connect (WID ("switch-decouple-display"), "notify::active", G_CALLBACK (decouple_display_toggled_cb), page); page->nav = cc_wacom_nav_button_new (); gtk_widget_set_halign (page->nav, GTK_ALIGN_END); gtk_widget_set_margin_start (page->nav, 10); gtk_widget_show (page->nav); gtk_container_add (CWID ("navigation-placeholder"), page->nav); page->cancellable = g_cancellable_new (); } static void set_icon_name (CcWacomPage *page, const char *widget_name, const char *icon_name) { g_autofree gchar *resource = NULL; resource = g_strdup_printf ("/org/cinnamon/control-center/wacom/%s.svg", icon_name); gtk_image_set_from_resource (GTK_IMAGE (WID (widget_name)), resource); } static void remove_left_handed (CcWacomPage *page) { gtk_widget_destroy (WID ("label-left-handed")); gtk_widget_destroy (WID ("switch-left-handed")); } static void remove_display_link (CcWacomPage *page) { gtk_widget_destroy (WID ("display-link")); } static void remove_mouse_link (CcWacomPage *page) { gtk_widget_destroy (WID ("mouse-link")); } static void remove_decouple_options (CcWacomPage *page) { gtk_widget_destroy (WID ("label-decouple-display")); gtk_widget_destroy (WID ("switch-decouple-display")); gtk_widget_destroy (WID ("display-mapping-button-2")); } static gboolean has_monitor (CcWacomPage *page) { WacomIntegrationFlags integration_flags; integration_flags = cc_wacom_device_get_integration_flags (page->stylus); return ((integration_flags & (WACOM_DEVICE_INTEGRATED_DISPLAY | WACOM_DEVICE_INTEGRATED_SYSTEM)) != 0); } static void update_tablet_ui (CcWacomPage *page, int layout) { WacomIntegrationFlags integration_flags; integration_flags = cc_wacom_device_get_integration_flags (page->stylus); if ((integration_flags & (WACOM_DEVICE_INTEGRATED_DISPLAY | WACOM_DEVICE_INTEGRATED_SYSTEM)) != 0) { /* FIXME: Check we've got a puck, or a corresponding touchpad device */ remove_mouse_link (page); } /* Hide the pad buttons if no pad is present */ gtk_widget_set_visible (WID ("map-buttons-button"), page->pad != NULL); switch (layout) { case LAYOUT_NORMAL: remove_left_handed (page); remove_display_link (page); remove_decouple_options (page); break; case LAYOUT_REVERSIBLE: remove_display_link (page); remove_decouple_options (page); break; case LAYOUT_SCREEN: remove_left_handed (page); gtk_widget_destroy (WID ("display-mapping-button")); gtk_widget_show (WID ("button-calibrate")); gtk_widget_set_sensitive (WID ("button-calibrate"), has_monitor (page)); gtk_container_child_set (CWID ("main-controls-grid"), WID ("label-trackingmode"), "top_attach", 5, NULL); gtk_container_child_set (CWID ("main-controls-grid"), WID ("combo-tabletmode"), "top_attach", 5, NULL); break; default: g_assert_not_reached (); } } gboolean cc_wacom_page_update_tools (CcWacomPage *page, CcWacomDevice *stylus, CcWacomDevice *pad) { int layout; gboolean changed; /* Type of layout */ layout = get_layout_type (stylus); changed = (page->stylus != stylus || page->pad != pad); if (!changed) return FALSE; page->stylus = stylus; page->pad = pad; update_tablet_ui (CC_WACOM_PAGE (page), layout); return TRUE; } GtkWidget * cc_wacom_page_new (CcWacomPanel *panel, CcWacomDevice *stylus, CcWacomDevice *pad) { CcWacomPage *page; g_return_val_if_fail (CC_IS_WACOM_DEVICE (stylus), NULL); g_return_val_if_fail (!pad || CC_IS_WACOM_DEVICE (pad), NULL); page = g_object_new (CC_TYPE_WACOM_PAGE, NULL); page->panel = panel; cc_wacom_page_update_tools (page, stylus, pad); /* FIXME move this to construct */ page->wacom_settings = cc_wacom_device_get_settings (stylus); set_mode_from_gsettings (GTK_COMBO_BOX (WID ("combo-tabletmode")), page); if (get_layout_type (page->stylus) == LAYOUT_SCREEN) set_display_decoupled_from_gsettings (GTK_SWITCH (WID ("switch-decouple-display")), page); /* Tablet name */ gtk_label_set_text (GTK_LABEL (WID ("label-tabletmodel")), cc_wacom_device_get_name (stylus)); /* Left-handedness */ if (cc_wacom_device_is_reversible (stylus)) set_left_handed_from_gsettings (page); /* Tablet icon */ set_icon_name (page, "image-tablet", cc_wacom_device_get_icon_name (stylus)); return GTK_WIDGET (page); } void cc_wacom_page_set_navigation (CcWacomPage *page, GtkNotebook *notebook, gboolean ignore_first_page) { g_return_if_fail (CC_IS_WACOM_PAGE (page)); g_object_set (G_OBJECT (page->nav), "notebook", notebook, "ignore-first", ignore_first_page, NULL); } void cc_wacom_page_calibrate (CcWacomPage *page) { g_return_if_fail (CC_IS_WACOM_PAGE (page)); calibrate (page); } gboolean cc_wacom_page_can_calibrate (CcWacomPage *page) { g_return_val_if_fail (CC_IS_WACOM_PAGE (page), FALSE); return has_monitor (page); } cinnamon-control-center-6.2.0/panels/wacom/cc-wacom-panel.c0000664000175000017500000004740514632072346022544 0ustar fabiofabio/* * Copyright Ā© 2011 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Authors: Peter Hutterer * Bastien Nocera * */ #include #include #include #include // #include "shell/cc-application.h" // #include "shell/cc-debug.h" #include "cc-wacom-panel.h" #include "cc-wacom-page.h" #include "cc-wacom-stylus-page.h" #include "cc-wacom-resources.h" #include "cc-tablet-tool-map.h" #include "csd-device-manager.h" #ifdef GDK_WINDOWING_WAYLAND #include #endif #define WID(x) (GtkWidget *) gtk_builder_get_object (self->builder, x) struct _CcWacomPanel { CcPanel parent_instance; GtkBuilder *builder; GtkWidget *stack; GtkWidget *switcher; GtkWidget *tablet_notebook; GtkWidget *stylus_notebook; GHashTable *devices; /* key=CsdDevice, value=CcWacomDevice */ GHashTable *pages; /* key=device name, value=GtkWidget */ GHashTable *stylus_pages; /* key=CcWacomTool, value=GtkWidget */ CsdDeviceManager *manager; guint device_added_id; guint device_removed_id; CcTabletToolMap *tablet_tool_map; /* DBus */ GDBusProxy *proxy; }; CC_PANEL_REGISTER (CcWacomPanel, cc_wacom_panel) typedef struct { const char *name; CcWacomDevice *stylus; CcWacomDevice *pad; } Tablet; enum { WACOM_PAGE = -1, PLUG_IN_PAGE = 0, }; enum { PROP_0, PROP_PARAMETERS }; static CcWacomPage * set_device_page (CcWacomPanel *self, const gchar *device_name) { CcWacomPage *page; gint current; if (device_name == NULL) return NULL; /* Choose correct device */ page = g_hash_table_lookup (self->pages, device_name); if (page == NULL) { g_warning ("Failed to find device '%s', supplied in the command line.", device_name); return page; } current = gtk_notebook_page_num (GTK_NOTEBOOK (self->tablet_notebook), GTK_WIDGET (page)); gtk_notebook_set_current_page (GTK_NOTEBOOK (self->tablet_notebook), current); return page; } static void run_operation_from_params (CcWacomPanel *self, GVariant *parameters) { g_autoptr(GVariant) v = NULL; g_autoptr(GVariant) v2 = NULL; CcWacomPage *page; const gchar *operation = NULL; const gchar *device_name = NULL; gint n_params; n_params = g_variant_n_children (parameters); g_variant_get_child (parameters, n_params - 1, "v", &v); device_name = g_variant_get_string (v, NULL); if (!g_variant_is_of_type (v, G_VARIANT_TYPE_STRING)) { g_warning ("Wrong type for the second argument GVariant, expected 's' but got '%s'", g_variant_get_type_string (v)); return; } switch (n_params) { case 3: page = set_device_page (self, device_name); if (page == NULL) return; g_variant_get_child (parameters, 1, "v", &v2); if (!g_variant_is_of_type (v2, G_VARIANT_TYPE_STRING)) { g_warning ("Wrong type for the operation name argument. A string is expected."); break; } operation = g_variant_get_string (v2, NULL); if (g_strcmp0 (operation, "run-calibration") == 0) { if (cc_wacom_page_can_calibrate (page)) cc_wacom_page_calibrate (page); else g_warning ("The device %s cannot be calibrated.", device_name); } else { g_warning ("Ignoring unrecognized operation '%s'", operation); } case 2: set_device_page (self, device_name); break; case 1: g_assert_not_reached (); default: g_warning ("Unexpected number of parameters found: %d. Request ignored.", n_params); } } /* Boilerplate code goes below */ static void cc_wacom_panel_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) { switch (property_id) { default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } } static void cc_wacom_panel_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) { CcWacomPanel *self; self = CC_WACOM_PANEL (object); switch (property_id) { case PROP_PARAMETERS: { GVariant *parameters; parameters = g_value_get_variant (value); if (parameters == NULL || g_variant_n_children (parameters) <= 1) return; run_operation_from_params (self, parameters); break; } default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } } static void cc_wacom_panel_dispose (GObject *object) { CcWacomPanel *self = CC_WACOM_PANEL (object); g_clear_object (&self->builder); if (self->manager) { g_signal_handler_disconnect (self->manager, self->device_added_id); g_signal_handler_disconnect (self->manager, self->device_removed_id); self->manager = NULL; } g_clear_pointer (&self->devices, g_hash_table_unref); g_clear_object (&self->proxy); g_clear_pointer (&self->pages, g_hash_table_unref); g_clear_pointer (&self->stylus_pages, g_hash_table_unref); G_OBJECT_CLASS (cc_wacom_panel_parent_class)->dispose (object); } static void check_remove_stylus_pages (CcWacomPanel *self) { GHashTableIter iter; CcWacomDevice *device; CcWacomTool *tool; GtkWidget *page; GList *tools; g_autoptr(GList) total = NULL; /* First. Iterate known devices and get the tools */ g_hash_table_iter_init (&iter, self->devices); while (g_hash_table_iter_next (&iter, NULL, (gpointer*) &device)) { tools = cc_tablet_tool_map_list_tools (self->tablet_tool_map, device); total = g_list_concat (total, tools); } /* Second. Iterate through stylus pages and remove the ones whose * tool is no longer in the list. */ g_hash_table_iter_init (&iter, self->stylus_pages); while (g_hash_table_iter_next (&iter, (gpointer*) &tool, (gpointer*) &page)) { if (g_list_find (total, tool)) continue; gtk_widget_destroy (page); g_hash_table_iter_remove (&iter); } } static gboolean add_stylus (CcWacomPanel *self, CcWacomTool *tool) { GtkWidget *page; if (g_hash_table_lookup (self->stylus_pages, tool)) return FALSE; page = cc_wacom_stylus_page_new (tool); cc_wacom_stylus_page_set_navigation (CC_WACOM_STYLUS_PAGE (page), GTK_NOTEBOOK (self->stylus_notebook)); gtk_widget_show (page); gtk_notebook_append_page (GTK_NOTEBOOK (self->stylus_notebook), page, NULL); g_hash_table_insert (self->stylus_pages, tool, page); if (gtk_notebook_get_current_page (GTK_NOTEBOOK (self->stylus_notebook)) == 0) gtk_notebook_set_current_page (GTK_NOTEBOOK (self->stylus_notebook), 1); return TRUE; } static void update_current_tool (CcWacomPanel *panel, GdkDevice *device, GdkDeviceTool *tool) { CsdDeviceManager *device_manager; CcWacomDevice *wacom_device; CcWacomTool *stylus; CsdDevice *csd_device; guint64 serial, id; gboolean added; if (!tool) return; /* Work our way to the CcWacomDevice */ device_manager = csd_device_manager_get (); csd_device = csd_device_manager_lookup_gdk_device (device_manager, device); if (!csd_device) return; wacom_device = g_hash_table_lookup (panel->devices, csd_device); if (!wacom_device) return; /* Check whether we already know this tool, nothing to do then */ serial = gdk_device_tool_get_serial (tool); /* The wacom driver sends serial-less tools with a serial of * 1, libinput uses 0. No device exists with serial 1, let's reset * it here so everything else works as expected. */ if (serial == 1) serial = 0; stylus = cc_tablet_tool_map_lookup_tool (panel->tablet_tool_map, wacom_device, serial); if (!stylus) { id = gdk_device_tool_get_hardware_id (tool); /* The wacom driver sends a hw id of 0x2 for stylus and 0xa * for eraser for devices that don't have a true HW id. * Reset those to 0 so we can use the same code-paths * libinput uses. * The touch ID is 0x3, let's ignore that because we don't * have a touch tool and it only happens when the wacom * driver handles the touch device. */ if (id == 0x2 || id == 0xa) id = 0; else if (id == 0x3) return; stylus = cc_wacom_tool_new (serial, id, wacom_device); if (!stylus) return; } added = add_stylus (panel, stylus); if (added) { if (panel->stylus_notebook == gtk_stack_get_visible_child (GTK_STACK (panel->stack))) { GtkWidget *widget; gint page; widget = g_hash_table_lookup (panel->stylus_pages, stylus); page = gtk_notebook_page_num (GTK_NOTEBOOK (panel->stylus_notebook), widget); gtk_notebook_set_current_page (GTK_NOTEBOOK (panel->stylus_notebook), page); } else { gtk_container_child_set (GTK_CONTAINER (panel->stack), panel->stylus_notebook, "needs-attention", TRUE, NULL); } } cc_tablet_tool_map_add_relation (panel->tablet_tool_map, wacom_device, stylus); } static gboolean on_event (GtkWidget *widget, GdkEvent *event, CcWacomPanel *panel) { if (event->type == GDK_MOTION_NOTIFY) { update_current_tool (panel, gdk_event_get_source_device (event), gdk_event_get_device_tool (event)); } return GDK_EVENT_PROPAGATE; } static void cc_wacom_panel_realized (GtkWidget *widget) { GTK_WIDGET_CLASS (cc_wacom_panel_parent_class)->realize (widget); CcWacomPanel *self = CC_WACOM_PANEL (widget); g_signal_connect_object (gtk_widget_get_toplevel (GTK_WIDGET (self)), "event", G_CALLBACK (on_event), self, 0); } static void cc_wacom_panel_class_init (CcWacomPanelClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass); object_class->get_property = cc_wacom_panel_get_property; object_class->set_property = cc_wacom_panel_set_property; object_class->dispose = cc_wacom_panel_dispose; widget_class->realize = cc_wacom_panel_realized; g_object_class_override_property (object_class, PROP_PARAMETERS, "parameters"); } static void remove_page (GtkNotebook *notebook, GtkWidget *widget) { int num_pages, i; num_pages = gtk_notebook_get_n_pages (notebook); g_return_if_fail (num_pages > 1); for (i = 1; i < num_pages; i++) { if (gtk_notebook_get_nth_page (notebook, i) == widget) { gtk_notebook_remove_page (notebook, i); return; } } } static void update_current_page (CcWacomPanel *self, CcWacomDevice *removed_device) { GHashTable *ht; g_autoptr(GList) tablets = NULL; GList *l; gboolean changed; GHashTableIter iter; CsdDevice *csd_device; CcWacomDevice *device; changed = FALSE; ht = g_hash_table_new_full (g_str_hash, g_str_equal, NULL, g_free); if (removed_device) { Tablet *tablet = g_new0 (Tablet, 1); tablet->name = cc_wacom_device_get_name (removed_device); g_hash_table_insert (ht, (gpointer) tablet->name, tablet); } g_hash_table_iter_init (&iter, self->devices); while (g_hash_table_iter_next (&iter, (gpointer*) &csd_device, (gpointer*) &device)) { Tablet *tablet; CsdDeviceType device_type; device_type = csd_device_get_device_type (csd_device); tablet = g_hash_table_lookup (ht, cc_wacom_device_get_name (device)); if (tablet == NULL) { tablet = g_new0 (Tablet, 1); tablet->name = cc_wacom_device_get_name (device); g_hash_table_insert (ht, (gpointer) tablet->name, tablet); } if (device_type & CSD_DEVICE_TYPE_PAD) { tablet->pad = device; } else if (device_type & CSD_DEVICE_TYPE_TABLET) { tablet->stylus = device; } } /* We now have a list of Tablet structs, * see which ones are full tablets */ tablets = g_hash_table_get_values (ht); for (l = tablets; l; l = l->next) { Tablet *tablet; GtkWidget *page; tablet = l->data; if (tablet->stylus == NULL) { page = g_hash_table_lookup (self->pages, tablet->name); if (page != NULL) { remove_page (GTK_NOTEBOOK (self->tablet_notebook), page); g_hash_table_remove (self->pages, tablet->name); changed = TRUE; } continue; } /* this code is called once the stylus is set up, but the pad does not exist yet */ page = g_hash_table_lookup (self->pages, tablet->name); if (page == NULL) { page = cc_wacom_page_new (self, tablet->stylus, tablet->pad); cc_wacom_page_set_navigation (CC_WACOM_PAGE (page), GTK_NOTEBOOK (self->tablet_notebook), TRUE); gtk_widget_show (page); gtk_notebook_append_page (GTK_NOTEBOOK (self->tablet_notebook), page, NULL); g_hash_table_insert (self->pages, g_strdup (tablet->name), page); changed = TRUE; } else { cc_wacom_page_update_tools (CC_WACOM_PAGE (page), tablet->stylus, tablet->pad); } } g_hash_table_destroy (ht); if (changed == TRUE) { int num_pages; num_pages = gtk_notebook_get_n_pages (GTK_NOTEBOOK (self->tablet_notebook)); if (num_pages > 1) gtk_notebook_set_current_page (GTK_NOTEBOOK (self->tablet_notebook), 1); } } static void monitor_config_changed (CcWacomOutputManager *manager, CcWacomPanel *panel) { update_current_page (panel, NULL); } static void add_known_device (CcWacomPanel *self, CsdDevice *csd_device) { CcWacomDevice *device; CsdDeviceType device_type; device_type = csd_device_get_device_type (csd_device); if ((device_type & CSD_DEVICE_TYPE_TABLET) == 0) return; if ((device_type & (CSD_DEVICE_TYPE_TOUCHSCREEN | CSD_DEVICE_TYPE_TOUCHPAD)) != 0) { return; } device = cc_wacom_device_new (csd_device); if (!device) return; g_hash_table_insert (self->devices, csd_device, device); /* Only trigger tool lookup on pen devices */ if ((device_type & CSD_DEVICE_TYPE_TABLET) != 0) { g_autoptr(GList) tools = NULL; GList *l; tools = cc_tablet_tool_map_list_tools (self->tablet_tool_map, device); for (l = tools; l != NULL; l = l->next) { add_stylus (self, l->data); } } } static void device_removed_cb (CsdDeviceManager *manager, CsdDevice *csd_device, CcWacomPanel *self) { g_autoptr(CcWacomDevice) device = NULL; device = g_hash_table_lookup (self->devices, csd_device); if (!device) return; g_hash_table_steal (self->devices, csd_device); update_current_page (self, device); check_remove_stylus_pages (self); } static void device_added_cb (CsdDeviceManager *manager, CsdDevice *device, CcWacomPanel *self) { add_known_device (self, device); update_current_page (self, NULL); } static void enbiggen_label (GtkLabel *label) { const char *str; g_autofree char *new_str = NULL; str = gtk_label_get_text (label); new_str = g_strdup_printf ("%s", str); gtk_label_set_markup (label, new_str); } static void on_stack_visible_child_notify_cb (GObject *object, GParamSpec *pspec, CcWacomPanel *panel) { GtkWidget *child; child = gtk_stack_get_visible_child (GTK_STACK (object)); if (child == panel->stylus_notebook) { gtk_container_child_set (GTK_CONTAINER (panel->stack), panel->stylus_notebook, "needs-attention", FALSE, NULL); } } static gboolean link_activated (GtkLinkButton *button, CcWacomPanel *self) { g_spawn_command_line_async ("blueman-manager", NULL); return TRUE; } static void cc_wacom_panel_init (CcWacomPanel *self) { GtkWidget *widget; g_autoptr(GList) devices = NULL; GList *l; g_autoptr(GError) error = NULL; char *objects[] = { "main-box", "no-stylus-page", NULL }; g_resources_register (cc_wacom_get_resource ()); self->builder = gtk_builder_new (); gtk_builder_add_objects_from_resource (self->builder, "/org/cinnamon/control-center/wacom/cinnamon-wacom-properties.ui", objects, &error); gtk_builder_add_objects_from_resource (self->builder, "/org/cinnamon/control-center/wacom/wacom-stylus-page.ui", objects, &error); if (error != NULL) { g_warning ("Error loading UI file: %s", error->message); return; } self->tablet_tool_map = cc_tablet_tool_map_new (); /* Stack + Switcher */ self->stack = gtk_stack_new (); g_object_set (G_OBJECT (self->stack), "margin-top", 30, "margin-end", 30, "margin-start", 30, "margin-bottom", 30, NULL); g_signal_connect (self->stack, "notify::visible-child", G_CALLBACK (on_stack_visible_child_notify_cb), self); self->switcher = gtk_stack_switcher_new (); gtk_stack_switcher_set_stack (GTK_STACK_SWITCHER (self->switcher), GTK_STACK (self->stack)); gtk_widget_show (self->switcher); gtk_container_add (GTK_CONTAINER (self), GTK_WIDGET (self->stack)); gtk_widget_show (self->stack); self->tablet_notebook = gtk_notebook_new (); gtk_widget_show (self->tablet_notebook); gtk_notebook_set_show_tabs (GTK_NOTEBOOK (self->tablet_notebook), FALSE); gtk_notebook_set_show_border (GTK_NOTEBOOK (self->tablet_notebook), FALSE); gtk_widget_set_vexpand (self->tablet_notebook, TRUE); self->stylus_notebook = gtk_notebook_new (); gtk_widget_show (self->stylus_notebook); gtk_notebook_set_show_tabs (GTK_NOTEBOOK (self->stylus_notebook), FALSE); gtk_notebook_set_show_border (GTK_NOTEBOOK (self->stylus_notebook), FALSE); gtk_container_set_border_width (GTK_CONTAINER (self->stylus_notebook), 0); gtk_widget_set_vexpand (self->stylus_notebook, TRUE); gtk_stack_add_titled (GTK_STACK (self->stack), self->stylus_notebook, "stylus", _("Stylus")); gtk_stack_add_titled (GTK_STACK (self->stack), self->tablet_notebook, "tablet", _("Tablet")); /* No styli page */ widget = WID ("no-stylus-page"); enbiggen_label (GTK_LABEL (WID ("no-stylus-label1"))); gtk_notebook_append_page (GTK_NOTEBOOK (self->stylus_notebook), widget, NULL); /* No tablets page */ widget = WID ("main-box"); enbiggen_label (GTK_LABEL (WID ("advice-label1"))); gtk_notebook_append_page (GTK_NOTEBOOK (self->tablet_notebook), widget, NULL); g_signal_connect (cc_wacom_output_manager_get (), "monitors-changed", G_CALLBACK (monitor_config_changed), self); g_signal_connect (G_OBJECT (WID ("linkbutton")), "activate-link", G_CALLBACK (link_activated), self); gchar *path = g_find_program_in_path ("blueman-manager"); gtk_widget_set_visible (WID ("linkbutton"), path != NULL); g_free (path); self->devices = g_hash_table_new_full (g_direct_hash, g_direct_equal, NULL, g_object_unref); self->pages = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL); self->stylus_pages = g_hash_table_new (NULL, NULL); self->manager = csd_device_manager_get (); self->device_added_id = g_signal_connect (G_OBJECT (self->manager), "device-added", G_CALLBACK (device_added_cb), self); self->device_removed_id = g_signal_connect (G_OBJECT (self->manager), "device-removed", G_CALLBACK (device_removed_cb), self); devices = csd_device_manager_list_devices (self->manager, CSD_DEVICE_TYPE_TABLET); for (l = devices; l ; l = l->next) add_known_device (self, l->data); update_current_page (self, NULL); } void cc_wacom_panel_register (GIOModule *module) { cc_wacom_panel_register_type (G_TYPE_MODULE (module)); textdomain (GETTEXT_PACKAGE); bindtextdomain (GETTEXT_PACKAGE, LOCALE_DIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); g_io_extension_point_implement (CC_SHELL_PANEL_EXTENSION_POINT, CC_TYPE_WACOM_PANEL, "wacom", 0); } cinnamon-control-center-6.2.0/panels/wacom/cc-wacom-tool.h0000664000175000017500000000311614632072346022416 0ustar fabiofabio/* * Copyright Ā© 2016 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Authors: Carlos Garnacho * */ #pragma once #include "config.h" #include "csd-device-manager.h" #include "cc-wacom-device.h" #include #define CC_TYPE_WACOM_TOOL (cc_wacom_tool_get_type ()) G_DECLARE_FINAL_TYPE (CcWacomTool, cc_wacom_tool, CC, WACOM_TOOL, GObject) CcWacomTool * cc_wacom_tool_new (guint64 serial, guint64 id, CcWacomDevice *device); guint64 cc_wacom_tool_get_serial (CcWacomTool *tool); guint64 cc_wacom_tool_get_id (CcWacomTool *tool); const gchar * cc_wacom_tool_get_name (CcWacomTool *tool); const gchar * cc_wacom_tool_get_icon_name (CcWacomTool *tool); GSettings * cc_wacom_tool_get_settings (CcWacomTool *tool); guint cc_wacom_tool_get_num_buttons (CcWacomTool *tool); gboolean cc_wacom_tool_get_has_eraser (CcWacomTool *tool); cinnamon-control-center-6.2.0/panels/wacom/cc-tablet-tool-map.c0000664000175000017500000002413314632072346023333 0ustar fabiofabio/* * Copyright Ā© 2016 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Authors: Carlos Garnacho * */ #include "config.h" #include "cc-tablet-tool-map.h" #define KEY_TOOL_ID "ID" #define KEY_DEVICE_STYLI "Styli" #define GENERIC_STYLUS "generic" typedef struct _CcTabletToolMap CcTabletToolMap; struct _CcTabletToolMap { GObject parent_instance; GKeyFile *tablets; GKeyFile *tools; GHashTable *tool_map; GHashTable *tablet_map; GHashTable *no_serial_tool_map; gchar *tablet_path; gchar *tool_path; }; G_DEFINE_TYPE (CcTabletToolMap, cc_tablet_tool_map, G_TYPE_OBJECT) static void load_keyfiles (CcTabletToolMap *map) { g_autoptr(GError) devices_error = NULL; g_autoptr(GError) tools_error = NULL; g_autofree gchar *dir = NULL; dir = g_build_filename (g_get_user_cache_dir (), "cinnamon-control-center", "wacom", NULL); if (g_mkdir_with_parents (dir, 0700) < 0) { g_warning ("Could not create directory '%s', expect stylus mapping oddities: %m", dir); return; } map->tablet_path = g_build_filename (dir, "devices", NULL); g_key_file_load_from_file (map->tablets, map->tablet_path, G_KEY_FILE_NONE, &devices_error); if (devices_error && !g_error_matches (devices_error, G_FILE_ERROR, G_FILE_ERROR_NOENT)) { g_warning ("Could not load tablets keyfile '%s': %s", map->tablet_path, devices_error->message); } map->tool_path = g_build_filename (dir, "tools", NULL); g_key_file_load_from_file (map->tools, map->tool_path, G_KEY_FILE_NONE, &tools_error); if (tools_error && !g_error_matches (tools_error, G_FILE_ERROR, G_FILE_ERROR_NOENT)) { g_warning ("Could not load tools keyfile '%s': %s", map->tool_path, tools_error->message); } } static void cache_tools (CcTabletToolMap *map) { g_auto(GStrv) serials = NULL; gsize n_serials, i; serials = g_key_file_get_groups (map->tools, &n_serials); for (i = 0; i < n_serials; i++) { g_autofree gchar *str = NULL; gchar *end; guint64 serial, id; g_autoptr(GError) error = NULL; CcWacomTool *tool; serial = g_ascii_strtoull (serials[i], &end, 16); if (*end != '\0') { g_warning ("Invalid tool serial %s", serials[i]); continue; } str = g_key_file_get_string (map->tools, serials[i], KEY_TOOL_ID, &error); if (str == NULL) { g_warning ("Could not get cached ID for tool with serial %s: %s", serials[i], error->message); continue; } id = g_ascii_strtoull (str, &end, 16); if (*end != '\0') { g_warning ("Invalid tool ID %s", str); continue; } tool = cc_wacom_tool_new (serial, id, NULL); g_hash_table_insert (map->tool_map, g_strdup (serials[i]), tool); } } static void cache_devices (CcTabletToolMap *map) { gchar **ids; gsize n_ids, i; ids = g_key_file_get_groups (map->tablets, &n_ids); for (i = 0; i < n_ids; i++) { gchar **styli; gsize n_styli, j; g_autoptr(GError) error = NULL; GList *tools = NULL; styli = g_key_file_get_string_list (map->tablets, ids[i], KEY_DEVICE_STYLI, &n_styli, &error); if (styli == NULL) { g_warning ("Could not get cached styli for with ID %s: %s", ids[i], error->message); continue; } for (j = 0; j < n_styli; j++) { CcWacomTool *tool; if (g_str_equal (styli[j], GENERIC_STYLUS)) { /* We don't have a CsdDevice yet to create the * serial=0 CcWacomTool, insert a NULL and defer * to device lookups. */ g_hash_table_insert (map->no_serial_tool_map, g_strdup (ids[i]), NULL); } tool = g_hash_table_lookup (map->tool_map, styli[j]); if (tool) tools = g_list_prepend (tools, tool); } if (tools) { g_hash_table_insert (map->tablet_map, g_strdup (ids[i]), tools); } g_strfreev (styli); } g_strfreev (ids); } static void cc_tablet_tool_map_finalize (GObject *object) { CcTabletToolMap *map = CC_TABLET_TOOL_MAP (object); g_key_file_unref (map->tools); g_key_file_unref (map->tablets); g_hash_table_destroy (map->tool_map); g_hash_table_destroy (map->tablet_map); g_hash_table_destroy (map->no_serial_tool_map); g_free (map->tablet_path); g_free (map->tool_path); G_OBJECT_CLASS (cc_tablet_tool_map_parent_class)->finalize (object); } static void null_safe_unref (gpointer data) { if (data != NULL) g_object_unref (data); } static void cc_tablet_tool_map_init (CcTabletToolMap *map) { map->tablets = g_key_file_new (); map->tools = g_key_file_new (); map->tool_map = g_hash_table_new_full (g_str_hash, g_str_equal, (GDestroyNotify) g_free, (GDestroyNotify) g_object_unref); map->tablet_map = g_hash_table_new_full (g_str_hash, g_str_equal, (GDestroyNotify) g_free, (GDestroyNotify) g_list_free); map->no_serial_tool_map = g_hash_table_new_full (g_str_hash, g_str_equal, (GDestroyNotify) g_free, (GDestroyNotify) null_safe_unref); load_keyfiles (map); cache_tools (map); cache_devices (map); } static void cc_tablet_tool_map_class_init (CcTabletToolMapClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); object_class->finalize = cc_tablet_tool_map_finalize; } CcTabletToolMap * cc_tablet_tool_map_new (void) { return g_object_new (CC_TYPE_TABLET_TOOL_MAP, NULL); } static gchar * get_device_key (CcWacomDevice *device) { const gchar *vendor, *product; CsdDevice *csd_device; csd_device = cc_wacom_device_get_device (device); csd_device_get_device_ids (csd_device, &vendor, &product); return g_strdup_printf ("%s:%s", vendor, product); } static gchar * get_tool_key (guint64 serial) { return g_strdup_printf ("%lx", serial); } GList * cc_tablet_tool_map_list_tools (CcTabletToolMap *map, CcWacomDevice *device) { CcWacomTool *no_serial_tool; GList *styli; g_autofree gchar *key = NULL; g_return_val_if_fail (CC_IS_TABLET_TOOL_MAP (map), NULL); g_return_val_if_fail (CC_IS_WACOM_DEVICE (device), NULL); key = get_device_key (device); styli = g_list_copy (g_hash_table_lookup (map->tablet_map, key)); if (g_hash_table_lookup_extended (map->no_serial_tool_map, key, NULL, (gpointer) &no_serial_tool)) { if (!no_serial_tool) { no_serial_tool = cc_wacom_tool_new (0, 0, device); g_hash_table_replace (map->no_serial_tool_map, g_strdup (key), no_serial_tool); } styli = g_list_prepend (styli, no_serial_tool); } return styli; } CcWacomTool * cc_tablet_tool_map_lookup_tool (CcTabletToolMap *map, CcWacomDevice *device, guint64 serial) { CcWacomTool *tool = NULL; g_autofree gchar *key = NULL; g_return_val_if_fail (CC_IS_TABLET_TOOL_MAP (map), FALSE); g_return_val_if_fail (CC_IS_WACOM_DEVICE (device), FALSE); if (serial == 0) { key = get_device_key (device); tool = g_hash_table_lookup (map->no_serial_tool_map, key); } else { key = get_tool_key (serial); tool = g_hash_table_lookup (map->tool_map, key); } return tool; } static void keyfile_add_device_stylus (CcTabletToolMap *map, const gchar *device_key, const gchar *tool_key) { g_autoptr(GArray) array = NULL; g_auto(GStrv) styli = NULL; gsize n_styli; array = g_array_new (FALSE, FALSE, sizeof (gchar *)); styli = g_key_file_get_string_list (map->tablets, device_key, KEY_DEVICE_STYLI, &n_styli, NULL); if (styli) { g_array_append_vals (array, styli, n_styli); } g_array_append_val (array, tool_key); g_key_file_set_string_list (map->tablets, device_key, KEY_DEVICE_STYLI, (const gchar **) array->data, array->len); } static void keyfile_add_stylus (CcTabletToolMap *map, const gchar *tool_key, guint64 id) { g_autofree gchar *str = NULL; /* Also works for IDs */ str = get_tool_key (id); g_key_file_set_string (map->tools, tool_key, KEY_TOOL_ID, str); } void cc_tablet_tool_map_add_relation (CcTabletToolMap *map, CcWacomDevice *device, CcWacomTool *tool) { gboolean tablets_changed = FALSE, tools_changed = FALSE; gboolean new_tool_without_serial = FALSE; g_autofree gchar *tool_key = NULL; g_autofree gchar *device_key = NULL; guint64 serial, id; GList *styli; g_return_if_fail (CC_IS_TABLET_TOOL_MAP (map)); g_return_if_fail (CC_IS_WACOM_DEVICE (device)); g_return_if_fail (CC_IS_WACOM_TOOL (tool)); serial = cc_wacom_tool_get_serial (tool); id = cc_wacom_tool_get_id (tool); device_key = get_device_key (device); if (serial == 0) { tool_key = g_strdup (GENERIC_STYLUS); if (!g_hash_table_contains (map->no_serial_tool_map, device_key)) { g_hash_table_insert (map->no_serial_tool_map, g_strdup (device_key), g_object_ref (tool)); new_tool_without_serial = TRUE; } } else { tool_key = get_tool_key (serial); if (!g_hash_table_contains (map->tool_map, tool_key)) { keyfile_add_stylus (map, tool_key, id); tools_changed = TRUE; g_hash_table_insert (map->tool_map, g_strdup (tool_key), g_object_ref (tool)); } } styli = g_hash_table_lookup (map->tablet_map, device_key); if (!g_list_find (styli, tool)) { styli = g_list_prepend (styli, tool); g_hash_table_replace (map->tablet_map, g_strdup (device_key), g_list_copy (styli)); if (serial || new_tool_without_serial) { tablets_changed = TRUE; keyfile_add_device_stylus (map, device_key, tool_key); } } if (tools_changed) { g_autoptr(GError) error = NULL; if (!g_key_file_save_to_file (map->tools, map->tool_path, &error)) { g_warning ("Error saving tools keyfile: %s", error->message); } } if (tablets_changed) { g_autoptr(GError) error = NULL; if (!g_key_file_save_to_file (map->tablets, map->tablet_path, &error)) { g_warning ("Error saving tablets keyfile: %s", error->message); } } } cinnamon-control-center-6.2.0/panels/wacom/csd-wacom-key-shortcut-button.h0000664000175000017500000000257314632072346025605 0ustar fabiofabio/* * csd-wacom-key-shortcut-button.h * * Copyright Ā© 2013 Red Hat, Inc. * * Author: Joaquim Rocha * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ #pragma once #include G_BEGIN_DECLS #define CSD_WACOM_TYPE_KEY_SHORTCUT_BUTTON (csd_wacom_key_shortcut_button_get_type ()) G_DECLARE_FINAL_TYPE (CsdWacomKeyShortcutButton, csd_wacom_key_shortcut_button, CSD, WACOM_KEY_SHORTCUT_BUTTON, GtkButton) GType csd_wacom_key_shortcut_button_mode_type (void) G_GNUC_CONST; #define CSD_WACOM_TYPE_KEY_SHORTCUT_BUTTON_MODE (csd_wacom_key_shortcut_button_mode_type ()) typedef enum { CSD_WACOM_KEY_SHORTCUT_BUTTON_MODE_OTHER, CSD_WACOM_KEY_SHORTCUT_BUTTON_MODE_ALL } CsdWacomKeyShortcutButtonMode; GtkWidget * csd_wacom_key_shortcut_button_new (void); cinnamon-control-center-6.2.0/panels/wacom/csd-wacom-key-shortcut-button.c0000664000175000017500000004040614632072346025575 0ustar fabiofabio/* * csd-wacom-key-shortcut-button.c * * Copyright Ā© 2013 Red Hat, Inc. * * Author: Joaquim Rocha * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ #include "config.h" #include #include "csd-wacom-key-shortcut-button.h" /** * SECTION:csd-wacom-key-shortcut-button * @short_description: A button which captures and displays a keyboard shortcut * @title: CsdWacomKeyShortcutButton * * CsdWacomKeyShortcutButton is a button which, when clicked, captures a keyboard * shortcut and displays it. * It works in a similar way to #GtkCellRendererAccel but, being a #GtkWidget, * can be added to e.g. containers. */ #define DEFAULT_CANCEL_KEY GDK_KEY_Escape #define DEFAULT_CLEAR_KEY GDK_KEY_BackSpace enum { KEY_SHORTCUT_EDITED, KEY_SHORTCUT_CLEARED, LAST_SIGNAL }; enum { PROP_0, PROP_SHORTCUT_KEY_VAL, PROP_SHORTCUT_KEY_MODS, PROP_SHORTCUT_MODE, PROP_SHORTCUT_CANCEL_KEY, PROP_SHORTCUT_CLEAR_KEY, N_PROPERTIES }; struct _CsdWacomKeyShortcutButton { GtkButton parent_instance; gboolean editing_mode; GdkSeat *grab_seat; guint keyval; guint keycode; GdkModifierType mods; /* Temporary shortcut info used for allowing * modifier-only shortcuts */ guint tmp_shortcut_keyval; GdkModifierType tmp_shortcut_mods; guint32 tmp_shortcut_time; CsdWacomKeyShortcutButtonMode mode; guint cancel_keyval; guint clear_keyval; }; G_DEFINE_TYPE (CsdWacomKeyShortcutButton, csd_wacom_key_shortcut_button, GTK_TYPE_BUTTON); static guint signals[LAST_SIGNAL] = { 0 }; static GParamSpec *obj_properties[N_PROPERTIES] = { NULL, }; static void csd_wacom_key_shortcut_button_changed (CsdWacomKeyShortcutButton *self); static void csd_wacom_key_shortcut_button_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) { CsdWacomKeyShortcutButton *self = CSD_WACOM_KEY_SHORTCUT_BUTTON (object); gboolean changed = FALSE; switch (property_id) { case PROP_SHORTCUT_KEY_VAL: self->keyval = g_value_get_uint (value); changed = TRUE; break; case PROP_SHORTCUT_KEY_MODS: self->mods = g_value_get_uint (value); changed = TRUE; break; case PROP_SHORTCUT_MODE: self->mode = g_value_get_enum (value); break; case PROP_SHORTCUT_CANCEL_KEY: self->cancel_keyval = g_value_get_uint (value); break; case PROP_SHORTCUT_CLEAR_KEY: self->clear_keyval = g_value_get_uint (value); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); break; } if (changed) csd_wacom_key_shortcut_button_changed (self); } static void csd_wacom_key_shortcut_button_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) { CsdWacomKeyShortcutButton *self = CSD_WACOM_KEY_SHORTCUT_BUTTON (object); switch (property_id) { case PROP_SHORTCUT_KEY_VAL: g_value_set_uint (value, self->keyval); break; case PROP_SHORTCUT_KEY_MODS: g_value_set_uint (value, self->mods); break; case PROP_SHORTCUT_MODE: g_value_set_enum (value, self->mode); break; case PROP_SHORTCUT_CANCEL_KEY: g_value_set_uint (value, self->cancel_keyval); break; case PROP_SHORTCUT_CLEAR_KEY: g_value_set_uint (value, self->clear_keyval); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); break; } } static void csd_wacom_key_shortcut_set_editing_mode (CsdWacomKeyShortcutButton *self, GdkEvent *event) { GdkWindow *window; GdkSeat *seat; self->editing_mode = TRUE; csd_wacom_key_shortcut_button_changed (self); window = gtk_widget_get_window (GTK_WIDGET (self)); g_return_if_fail (window != NULL); seat = gdk_event_get_seat (event); if (gdk_seat_grab (seat, window, GDK_SEAT_CAPABILITY_ALL, FALSE, NULL, event, NULL, NULL) != GDK_GRAB_SUCCESS) return; gtk_widget_grab_focus (GTK_WIDGET (self)); self->grab_seat = seat; } static void csd_wacom_key_shortcut_remove_editing_mode (CsdWacomKeyShortcutButton *self) { self->editing_mode = FALSE; self->editing_mode = FALSE; if (self->grab_seat) { gdk_seat_ungrab (self->grab_seat); self->grab_seat = NULL; } self->tmp_shortcut_keyval = 0; self->tmp_shortcut_mods = 0; self->tmp_shortcut_time = 0; } static void csd_wacom_key_shortcut_button_changed (CsdWacomKeyShortcutButton *self) { g_autofree gchar *text = NULL; if (self->editing_mode) { gtk_button_set_label (GTK_BUTTON (self), _("New shortcut…")); gtk_widget_set_state_flags (GTK_WIDGET (self), GTK_STATE_FLAG_ACTIVE | GTK_STATE_FLAG_PRELIGHT, FALSE); return; } if (self->keyval == 0 && self->mods == 0) { gtk_button_set_label (GTK_BUTTON (self), ""); return; } text = gtk_accelerator_get_label (self->keyval, self->mods); gtk_button_set_label (GTK_BUTTON (self), text); } static void csd_wacom_key_shortcut_button_activate (GtkButton *self) { csd_wacom_key_shortcut_set_editing_mode (CSD_WACOM_KEY_SHORTCUT_BUTTON (self), NULL); GTK_BUTTON_CLASS (csd_wacom_key_shortcut_button_parent_class)->activate (self); } static void csd_wacom_key_shortcut_button_init (CsdWacomKeyShortcutButton *self) { gtk_button_set_relief (GTK_BUTTON (self), GTK_RELIEF_NONE); self->cancel_keyval = DEFAULT_CANCEL_KEY; self->clear_keyval = DEFAULT_CLEAR_KEY; } static void key_shortcut_finished_editing (CsdWacomKeyShortcutButton *self, guint32 time) { gdk_seat_ungrab (self->grab_seat); self->grab_seat = NULL; self->editing_mode = FALSE; csd_wacom_key_shortcut_remove_editing_mode (self); csd_wacom_key_shortcut_button_changed (self); } static gboolean csd_wacom_key_shortcut_button_key_release (GtkWidget *widget, GdkEventKey *event) { CsdWacomKeyShortcutButton *self = CSD_WACOM_KEY_SHORTCUT_BUTTON (widget); if (self->tmp_shortcut_keyval == 0) { GTK_WIDGET_CLASS (csd_wacom_key_shortcut_button_parent_class)->key_release_event (widget, event); return FALSE; } self->keyval = self->tmp_shortcut_keyval; self->mods = self->tmp_shortcut_mods; key_shortcut_finished_editing (self, self->tmp_shortcut_time); g_signal_emit (self, signals[KEY_SHORTCUT_EDITED], 0); return TRUE; } static gboolean csd_wacom_key_shortcut_button_key_press (GtkWidget *widget, GdkEventKey *event) { /* This code is based on the gtk_cell_renderer_accel_start_editing */ CsdWacomKeyShortcutButton *self = CSD_WACOM_KEY_SHORTCUT_BUTTON (widget); GdkModifierType mods = 0; guint shortcut_keyval; guint keyval; gboolean edited; gboolean cleared; /* GTK and OTHER modes don't allow modifier keyvals */ if (event->is_modifier && self->mode != CSD_WACOM_KEY_SHORTCUT_BUTTON_MODE_ALL) return TRUE; if (!self->editing_mode) { GTK_WIDGET_CLASS (csd_wacom_key_shortcut_button_parent_class)->key_press_event (widget, event); return FALSE; } edited = FALSE; cleared = FALSE; mods = event->state; keyval = event->keyval; if (keyval == GDK_KEY_Sys_Req && (mods & GDK_MOD1_MASK) != 0) { /* HACK: we don't want to use SysRq as a keybinding (but we do * want Alt+Print), so we avoid translation from Alt+Print to SysRq */ keyval = GDK_KEY_Print; } shortcut_keyval = gdk_keyval_to_lower (keyval); if (shortcut_keyval == GDK_KEY_ISO_Left_Tab) shortcut_keyval = GDK_KEY_Tab; mods &= gtk_accelerator_get_default_mod_mask (); /* Put shift back if it changed the case of the key, not otherwise. */ if (shortcut_keyval != keyval) mods |= GDK_SHIFT_MASK; if (mods == 0) { if (keyval == self->cancel_keyval) { /* cancel the edition */ goto out; } else if (keyval == self->clear_keyval) { /* clear the current shortcut */ cleared = TRUE; goto out; } } self->tmp_shortcut_keyval = 0; self->tmp_shortcut_mods = 0; self->tmp_shortcut_time = 0; if (event->is_modifier) { /* when the user presses a non-modifier key, it readily assigns the * shortcut but since we also support modifiers-only shortcuts, we * cannot assign the shortcut right when the user presses a modifier * key because the user might assign e.g. Alt, Alt+Ctrl, Alt+Ctrl+Shift, etc. * So, we keep track of the pressed shortcut's (keyval, mods and time) if * it is a modifier shortcut and assign them when a key-release happens */ self->tmp_shortcut_keyval = shortcut_keyval; self->tmp_shortcut_mods = mods; self->tmp_shortcut_time = event->time; return TRUE; } edited = TRUE; out: if (edited) { self->keyval = shortcut_keyval; self->mods = mods; } if (cleared) { self->keyval = 0; self->mods = 0; } key_shortcut_finished_editing (CSD_WACOM_KEY_SHORTCUT_BUTTON (widget), event->time); if (edited) g_signal_emit (self, signals[KEY_SHORTCUT_EDITED], 0); else if (cleared) g_signal_emit (self, signals[KEY_SHORTCUT_CLEARED], 0); return TRUE; } static gboolean csd_wacom_key_shortcut_button_button_press (GtkWidget *widget, GdkEventButton *event) { CsdWacomKeyShortcutButton *self; self = CSD_WACOM_KEY_SHORTCUT_BUTTON (widget); if (self->editing_mode) return TRUE; csd_wacom_key_shortcut_set_editing_mode (self, NULL); GTK_WIDGET_CLASS (csd_wacom_key_shortcut_button_parent_class)->button_press_event (widget, event); return TRUE; } static void csd_wacom_key_shortcut_button_unrealize (GtkWidget *widget) { CsdWacomKeyShortcutButton *self; self = CSD_WACOM_KEY_SHORTCUT_BUTTON (widget); csd_wacom_key_shortcut_remove_editing_mode (self); GTK_WIDGET_CLASS (csd_wacom_key_shortcut_button_parent_class)->unrealize (widget); } static void csd_wacom_key_shortcut_button_class_init (CsdWacomKeyShortcutButtonClass *klass) { GObjectClass *gobject_class = G_OBJECT_CLASS (klass); GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass); GtkButtonClass *button_class = GTK_BUTTON_CLASS (klass); gobject_class->set_property = csd_wacom_key_shortcut_button_set_property; gobject_class->get_property = csd_wacom_key_shortcut_button_get_property; obj_properties[PROP_SHORTCUT_KEY_VAL] = g_param_spec_uint ("key-value", "The key value", "The key value of the shortcut currently set", 0, G_MAXUINT, 0, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); obj_properties[PROP_SHORTCUT_KEY_MODS] = g_param_spec_uint ("key-mods", "The key modifiers", "The key modifiers of the shortcut currently set", 0, G_MAXUINT, 0, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); obj_properties[PROP_SHORTCUT_CANCEL_KEY] = g_param_spec_uint ("cancel-key", "The cancel key", "The key which cancels the edition of the shortcut", 0, G_MAXUINT, DEFAULT_CANCEL_KEY, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); obj_properties[PROP_SHORTCUT_CLEAR_KEY] = g_param_spec_uint ("clear-key", "The clear key", "The key which clears the currently set shortcut", 0, G_MAXUINT, DEFAULT_CLEAR_KEY, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); /** * CsdWacomKeyShortcutButton:mode: * * Determines which type of keys are allowed in the captured shortcuts. * %CSD_WACOM_KEY_SHORTCUT_BUTTON_MODE_ALL is the same as * %CSD_WACOM_KEY_SHORTCUT_BUTTON_MODE_OTHER but allows shortcuts composed of * only modifier keys. */ obj_properties[PROP_SHORTCUT_MODE] = g_param_spec_enum ("mode", "The shortcut mode", "The mode with which the shortcuts are captured", CSD_WACOM_TYPE_KEY_SHORTCUT_BUTTON_MODE, CSD_WACOM_KEY_SHORTCUT_BUTTON_MODE_OTHER, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); g_object_class_install_properties (gobject_class, N_PROPERTIES, obj_properties); widget_class->key_press_event = csd_wacom_key_shortcut_button_key_press; widget_class->button_press_event = csd_wacom_key_shortcut_button_button_press; widget_class->key_release_event = csd_wacom_key_shortcut_button_key_release; widget_class->unrealize = csd_wacom_key_shortcut_button_unrealize; button_class->activate = csd_wacom_key_shortcut_button_activate; /** * CsdWacomKeyShortcutButton::key-shortcut-edited: * @keyshortcutbutton: the #CsdWacomKeyShortcutButton * * Emitted when the key shortcut of the @keyshortcutbutton is edited. * * The new shortcut can be retrieved by using the #CsdWacomKeyShortcutButton:key-value * and #CsdWacomKeyShortcutButton:key-mods properties. */ signals[KEY_SHORTCUT_EDITED] = g_signal_new ("key-shortcut-edited", CSD_WACOM_TYPE_KEY_SHORTCUT_BUTTON, G_SIGNAL_RUN_LAST, 0, NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); /** * CsdWacomKeyShortcutButton::key-shortcut-cleared: * @keyshortcutbutton: the #CsdWacomKeyShortcutButton * * Emitted when the key shortcut of the @keyshortcutbutton is cleared. */ signals[KEY_SHORTCUT_CLEARED] = g_signal_new ("key-shortcut-cleared", CSD_WACOM_TYPE_KEY_SHORTCUT_BUTTON, G_SIGNAL_RUN_LAST, 0, NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } /** * csd_wacom_key_shortcut_button_new: * * Creates a new #CsdWacomKeyShortcutButton. * * Returns: a new #CsdWacomKeyShortcutButton object. * * Since: 3.10 */ GtkWidget * csd_wacom_key_shortcut_button_new (void) { return g_object_new (CSD_WACOM_TYPE_KEY_SHORTCUT_BUTTON, NULL); } GType csd_wacom_key_shortcut_button_mode_type (void) { static GType enum_type_id = 0; if (G_UNLIKELY (!enum_type_id)) { static const GEnumValue values[] = { { CSD_WACOM_KEY_SHORTCUT_BUTTON_MODE_OTHER, "OTHER", "other" }, { CSD_WACOM_KEY_SHORTCUT_BUTTON_MODE_ALL, "ALL", "all" }, { 0, NULL, NULL } }; enum_type_id = g_enum_register_static ("CsdWacomKeyShortcutButtonMode", values); } return enum_type_id; } cinnamon-control-center-6.2.0/panels/wacom/wacom-stylus-inking.svg0000664000175000017500000000717514632072346024257 0ustar fabiofabio image/svg+xml cinnamon-control-center-6.2.0/panels/wacom/cc-wacom-mapping-panel.c0000664000175000017500000002504414632072346024170 0ustar fabiofabio/* * Copyright Ā© 2012 Wacom. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Authors: Jason Gerecke * */ #include #include #include #define GNOME_DESKTOP_USE_UNSTABLE_API #include #include #include #include "cc-wacom-device.h" #include "cc-wacom-mapping-panel.h" #include "muffin-display-config.h" struct _CcWacomMappingPanel { GtkBox parent_instance; CcWacomDevice *device; GtkWidget *label; GtkWidget *combobox; GtkWidget *checkbutton; GtkWidget *aspectlabel; GtkWidget *aspectswitch; int init_name_watch_id; }; G_DEFINE_TYPE (CcWacomMappingPanel, cc_wacom_mapping_panel, GTK_TYPE_BOX) enum { MONITOR_NAME_COLUMN, MONITOR_INFO_COLUMN, MONITOR_NUM_COLUMNS }; static void combobox_changed_cb (GtkWidget *widget, CcWacomMappingPanel *self); static void checkbutton_toggled_cb (GtkWidget *widget, CcWacomMappingPanel *self); static void aspectswitch_toggled_cb (GtkWidget *widget, GParamSpec *pspec, CcWacomMappingPanel *self); static void set_combobox_sensitive (CcWacomMappingPanel *self, gboolean sensitive) { gtk_widget_set_sensitive (GTK_WIDGET(self->combobox), sensitive); gtk_widget_set_sensitive (GTK_WIDGET(self->label), sensitive); gtk_widget_set_sensitive (GTK_WIDGET(self->aspectswitch), sensitive); gtk_widget_set_sensitive (GTK_WIDGET(self->aspectlabel), sensitive); } /* Update the display of available monitors based on the latest * information from RandR. At the moment the chooser is just a * a combobox crudely listing available outputs. The UI mockup * has something more akin to the Display panel, with the ability * to do rubber-band selection of multiple outputs (note: the * g-s-d backend can only handle a single output at the moment) */ static void update_monitor_chooser (CcWacomMappingPanel *self) { g_autoptr(GtkListStore) store = NULL; MonitorInfo *cur_info; GList *monitors, *l; GSettings *settings; store = gtk_list_store_new (MONITOR_NUM_COLUMNS, G_TYPE_STRING, G_TYPE_POINTER); gtk_combo_box_set_model (GTK_COMBO_BOX(self->combobox), GTK_TREE_MODEL(store)); if (self->device == NULL) { set_combobox_sensitive (self, FALSE); return; } settings = cc_wacom_device_get_settings (self->device); cur_info = cc_wacom_device_get_monitor (self->device); g_signal_handlers_block_by_func (G_OBJECT (self->checkbutton), checkbutton_toggled_cb, self); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(self->checkbutton), cur_info != NULL); g_signal_handlers_unblock_by_func (G_OBJECT (self->checkbutton), checkbutton_toggled_cb, self); g_signal_handlers_block_by_func (G_OBJECT (self->aspectswitch), aspectswitch_toggled_cb, self); gtk_switch_set_active (GTK_SWITCH(self->aspectswitch), g_settings_get_boolean (settings, "keep-aspect")); g_signal_handlers_unblock_by_func (G_OBJECT (self->aspectswitch), aspectswitch_toggled_cb, self); monitors = cc_wacom_output_manager_get_all_monitors(cc_wacom_output_manager_get ()); for (l = monitors; l != NULL; l = l->next) { MonitorInfo *monitor; GtkTreeIter iter; g_autofree gchar *text = NULL; monitor = (MonitorInfo *) l->data; monitor_info_spew (monitor); text = g_strdup_printf ("%s (%s)", monitor->connector_name, monitor->display_name); gtk_list_store_append (store, &iter); gtk_list_store_set (store, &iter, MONITOR_NAME_COLUMN, text, MONITOR_INFO_COLUMN, monitor, -1); if (cur_info == NULL || monitor_info_cmp (cur_info, monitor)) { g_signal_handlers_block_by_func (G_OBJECT (self->combobox), combobox_changed_cb, self); gtk_combo_box_set_active_iter (GTK_COMBO_BOX(self->combobox), &iter); g_signal_handlers_unblock_by_func (G_OBJECT (self->combobox), combobox_changed_cb, self); } } set_combobox_sensitive (self, cur_info != NULL); } static void update_ui (CcWacomMappingPanel *self) { if (self->device == NULL) { gtk_widget_set_sensitive (GTK_WIDGET(self->checkbutton), FALSE); gtk_toggle_button_set_inconsistent (GTK_TOGGLE_BUTTON(self->checkbutton), TRUE); } else { gboolean is_screen_tablet; is_screen_tablet = cc_wacom_device_get_integration_flags (self->device) & WACOM_DEVICE_INTEGRATED_DISPLAY; gtk_widget_set_sensitive (GTK_WIDGET(self->checkbutton), !is_screen_tablet); gtk_toggle_button_set_inconsistent (GTK_TOGGLE_BUTTON(self->checkbutton), FALSE); } update_monitor_chooser (self); } static void update_mapping (CcWacomMappingPanel *self) { MonitorInfo *monitor = NULL; if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (self->checkbutton))) { GtkTreeIter iter; GtkTreeModel *model; char *name; model = gtk_combo_box_get_model (GTK_COMBO_BOX (self->combobox)); if (!gtk_combo_box_get_active_iter (GTK_COMBO_BOX (self->combobox), &iter)) { g_warning ("Map to single monitor checked, but no screen selected."); return; } gtk_tree_model_get (model, &iter, MONITOR_NAME_COLUMN, &name, MONITOR_INFO_COLUMN, &monitor, -1); } cc_wacom_device_set_monitor (self->device, monitor); } void cc_wacom_mapping_panel_set_device (CcWacomMappingPanel *self, CcWacomDevice *device) { self->device = device; update_ui (self); } static void checkbutton_toggled_cb (GtkWidget *widget, CcWacomMappingPanel *self) { gboolean active; active = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget)); set_combobox_sensitive (self, active); if (!active) gtk_switch_set_active (GTK_SWITCH(self->aspectswitch), FALSE); update_mapping (self); } static void aspectswitch_toggled_cb (GtkWidget *widget, GParamSpec *pspec, CcWacomMappingPanel *self) { GSettings *settings; settings = cc_wacom_device_get_settings (self->device); g_settings_set_boolean (settings, "keep-aspect", gtk_switch_get_active (GTK_SWITCH (widget))); } static void combobox_changed_cb (GtkWidget *widget, CcWacomMappingPanel *self) { update_mapping (self); } static void cc_wacom_mapping_panel_init (CcWacomMappingPanel *self) { GtkWidget *vbox, *grid; GtkCellRenderer *renderer; g_autoptr(GError) error = NULL; g_signal_connect_swapped (cc_wacom_output_manager_get (), "monitors-changed", G_CALLBACK (update_monitor_chooser), self); vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 8); gtk_container_add (GTK_CONTAINER (self), vbox); gtk_container_set_border_width (GTK_CONTAINER (self), 12); gtk_widget_set_vexpand (GTK_WIDGET (vbox), TRUE); gtk_widget_set_hexpand (GTK_WIDGET (vbox), TRUE); /* Output Combobox */ grid = gtk_grid_new(); gtk_grid_set_row_spacing (GTK_GRID (grid), 10); gtk_grid_set_column_spacing (GTK_GRID (grid), 10); self->label = gtk_label_new (_("Output:")); gtk_widget_set_halign (self->label, GTK_ALIGN_END); self->combobox = gtk_combo_box_new (); g_signal_connect (G_OBJECT (self->combobox), "changed", G_CALLBACK (combobox_changed_cb), self); renderer = gtk_cell_renderer_text_new (); gtk_cell_layout_pack_start (GTK_CELL_LAYOUT(self->combobox), renderer, TRUE); gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT(self->combobox), renderer, "text", 0); gtk_grid_attach (GTK_GRID(grid), GTK_WIDGET(self->label), 0, 0, 1, 1); gtk_grid_attach (GTK_GRID(grid), GTK_WIDGET(self->combobox), 1, 0, 1, 1); /* Keep ratio switch */ self->aspectlabel = gtk_label_new (_("Keep aspect ratio (letterbox):")); gtk_widget_set_halign (self->aspectlabel, GTK_ALIGN_END); self->aspectswitch = gtk_switch_new (); gtk_widget_set_halign (self->aspectswitch, GTK_ALIGN_START); gtk_switch_set_active (GTK_SWITCH (self->aspectswitch), FALSE); g_signal_connect (GTK_SWITCH (self->aspectswitch), "notify::active", G_CALLBACK (aspectswitch_toggled_cb), self); gtk_grid_attach (GTK_GRID(grid), GTK_WIDGET(self->aspectlabel), 0, 1, 1, 1); gtk_grid_attach (GTK_GRID(grid), GTK_WIDGET(self->aspectswitch), 1, 1, 1, 1); /* Whole-desktop checkbox */ self->checkbutton = gtk_check_button_new_with_label (_("Map to single monitor")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (self->checkbutton), FALSE); g_signal_connect (G_OBJECT (self->checkbutton), "toggled", G_CALLBACK (checkbutton_toggled_cb), self); gtk_box_pack_start (GTK_BOX(vbox), GTK_WIDGET(self->checkbutton), FALSE, FALSE, 0); gtk_box_pack_start (GTK_BOX(vbox), GTK_WIDGET(grid), FALSE, FALSE, 8); /* Update display */ cc_wacom_mapping_panel_set_device (self, NULL); gtk_widget_show_all(GTK_WIDGET(self)); } GtkWidget * cc_wacom_mapping_panel_new (void) { CcWacomMappingPanel *panel; panel = CC_WACOM_MAPPING_PANEL(g_object_new (CC_TYPE_WACOM_MAPPING_PANEL, NULL)); panel->device = NULL; return GTK_WIDGET(panel); } static void cc_wacom_mapping_panel_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) { switch (property_id) { default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } } static void cc_wacom_mapping_panel_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) { switch (property_id) { default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } } static void cc_wacom_mapping_panel_dispose (GObject *object) { G_OBJECT_CLASS (cc_wacom_mapping_panel_parent_class)->dispose (object); } static void cc_wacom_mapping_panel_class_init (CcWacomMappingPanelClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); object_class->get_property = cc_wacom_mapping_panel_get_property; object_class->set_property = cc_wacom_mapping_panel_set_property; object_class->dispose = cc_wacom_mapping_panel_dispose; } cinnamon-control-center-6.2.0/panels/wacom/wacom.gresource.xml0000664000175000017500000000027014632072346023424 0ustar fabiofabio tablet-layout.css cinnamon-control-center-6.2.0/panels/wacom/wacom-tablet-pc.svg0000664000175000017500000000542214632072346023303 0ustar fabiofabio image/svg+xml cinnamon-control-center-6.2.0/panels/wacom/cc-wacom-panel.h0000664000175000017500000000362114632072346022541 0ustar fabiofabio/* * Copyright Ā© 2011 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * Authors: Peter Hutterer * Bastien Nocera */ #ifndef _CC_WACOM_PANEL_H #define _CC_WACOM_PANEL_H #include G_BEGIN_DECLS #define CC_TYPE_WACOM_PANEL cc_wacom_panel_get_type() #define CC_WACOM_PANEL(obj) \ (G_TYPE_CHECK_INSTANCE_CAST ((obj), \ CC_TYPE_WACOM_PANEL, CcWacomPanel)) #define CC_WACOM_PANEL_CLASS(klass) \ (G_TYPE_CHECK_CLASS_CAST ((klass), \ CC_TYPE_WACOM_PANEL, CcWacomPanelClass)) #define CC_IS_WACOM_PANEL(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \ CC_TYPE_WACOM_PANEL)) #define CC_IS_WACOM_PANEL_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE ((klass), \ CC_TYPE_WACOM_PANEL)) #define CC_WACOM_PANEL_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), \ CC_TYPE_WACOM_PANEL, CcWacomPanelClass)) typedef struct _CcWacomPanel CcWacomPanel; typedef struct _CcWacomPanelClass CcWacomPanelClass; typedef struct _CcWacomPanelPrivate CcWacomPanelPrivate; struct _CcWacomPanelClass { CcPanelClass parent_class; }; GType cc_wacom_panel_get_type (void) G_GNUC_CONST; void cc_wacom_panel_register (GIOModule *module); G_END_DECLS #endif /* _CC_WACOM_PANEL_H */ cinnamon-control-center-6.2.0/panels/wacom/cinnamon-wacom-panel.desktop0000664000175000017500000002603314632072346025202 0ustar fabiofabio[Desktop Entry] Exec=cinnamon-settings wacom Icon=cs-tablet Terminal=false Type=Application StartupNotify=true Categories=GNOME;GTK;Settings;HardwareSettings;X-Cinnamon-Settings-Panel; X-Cinnamon-Settings-Panel=wacom OnlyShowIn=X-Cinnamon; Name=Graphics Tablet Name[am]=įŒįˆ«įŠįŠ­įˆµ į‰³į‰„įˆŒį‰µ Name[ar]=جهاز Ų§Ł„Ų±Ų³ŁˆŁ…Ų§ŲŖ Ų§Ł„Ł„ŁˆŲ­ŁŠ Name[ast]=Tableta de grĆ”fica Name[ay]=Jamuqamp tableta Name[az]=Gƶrüntü Taxtası Name[be]=Графічны ŠæŠ»Š°Š½ŃˆŃŃ‚ Name[be@latin]=Графічны ŠæŠ»Š°Š½ŃˆŃŃ‚ Name[bg]=Графичен таблет Name[bs]=Grafički tablet Name[ca]=Tauleta grĆ fica Name[ca@valencia]=Tauleta grĆ fica Name[cs]=Grafický tablet Name[cy]=Tabled Graffig Name[da]=Tegneplade Name[de]=Grafiktablett Name[el]=Επιφάνεια Αφής Name[eo]=Desegna tabuleto Name[es]=Tableta grĆ fica Name[et]=Tahvli graafika Name[eu]=Taula grafikoa Name[fa]=تبلت گرافیک Name[fi]=Piirtoalusta Name[fr]=Tablette graphique Name[fr_CA]=Tablette graphique Name[gd]=Tablaid grafaigeachd Name[gl]=Tableta grĆ”fica Name[he]=לוח מגע גרפי Name[hi]=ą¤—ą„ą¤°ą¤¾ą„žą¤æą¤•ą„ą¤ø ą¤Ÿą„ˆą¤¬ą¤²ą„‡ą¤Ÿ Name[hr]=Grafički tablet Name[hu]=DigitalizĆ”ló tĆ”bla Name[ia]=Tabletta graphic Name[id]=Tablet Grafis Name[ie]=Grafical tabulette Name[is]=Teiknitafla Name[it]=Tavoletta grafica Name[ja]=ć‚°ćƒ©ćƒ•ć‚£ćƒƒć‚Æć‚æćƒ–ćƒ¬ćƒƒćƒˆ Name[ka]=įƒ’įƒ įƒįƒ¤įƒ˜įƒ™įƒ£įƒšįƒ˜ įƒ¢įƒįƒ‘įƒšįƒ”įƒ¢įƒ˜ Name[kab]=Tafelwit tudlift Name[kk]=Графикалық ŠŸŠ»Š°Š½ŃˆŠµŃ‚ Name[ko]=ź·øėž˜ķ”½ ķƒœėø”ė¦æ Name[la]=Tabella Graphica Name[lt]=Grafinė planÅ”etė Name[lv]=Grafiskā planÅ”ete Name[ms]=Tablet Grafik Name[nb]=Tegnebrett Name[nds]=Grafik-Tablett Name[nl]=Grafische tablet Name[oc]=Tauleta grafica Name[pl]=Tablet graficzny Name[pt]=Tablet Name[pt_BR]=Mesa Digitalizadora Name[ro]=Tabletă grafică Name[ru]=Графический ŠæŠ»Š°Š½ŃˆŠµŃ‚ Name[sc]=Tauledda grĆ fica Name[sk]=Grafický tablet Name[sl]=Grafična tablica Name[sr]=Таблица за Ń†Ń€Ń‚Š°ŃšŠµ Name[sr@latin]=Grafička tabla Name[sv]=Ritplatta Name[ta]=ą®µą®°ąÆˆą®•ą®²ąÆˆ ą®¤ąÆ†ą®¾ą®ŸąÆą®¤ą®ŸąÆą®ŸąÆ Name[tg]=ŠŸŠ»Š°Š½ŃˆŠµŃ‚Šø графикӣ Name[th]=ą¹ąø—ą¹‡ąøšą¹€ąø„ą¹‡ąø•ąøąø£ąø²ąøŸąø“ąø Name[tr]=Grafik Tablet Name[uk]=Графічний ŠæŠ»Š°Š½ŃˆŠµŃ‚ Name[ur]=گرافکس Ł¹ŪŒŲØŁ„ŪŒŁ¹ Name[uz]=Grafik Planshet Name[uz@cyrillic]=Grafik Planshet Name[vi]=BĆ n vįŗ½ Đồ hoįŗ” Name[zh_CN]=ē»˜å›¾ęæ Name[zh_HK]=ē¹Ŗåœ–ęæ Name[zh_TW]=ē¹Ŗåœ–å¹³ęæ Comment=Set button mappings and adjust stylus sensitivity for graphics tablets Comment[am]=የ į‰įˆį įŠ«įˆ­į‰³ įˆ›įˆ°įŠ“įŒƒ įŠ„įŠ“ įˆ›įˆµį‰°įŠ«įŠØį‹« stylus sensitivity for graphics tablets Comment[ar]=ŲŖŲ¹ŁŠŁŠŁ† Ł…Ų®Ų·Ų·Ų§ŲŖ الأزرار وضبط حساسية القلم لأجهزة Ų§Ł„Ų±Ų³ŁˆŁ…Ų§ŲŖ Ų§Ł„Ł„ŁˆŲ­ŁŠŲ© Comment[ay]=Wutunanak uƱacht'ayaƱa ukhamaraki lapisan turpa mayjachaƱa jamuqampi tabletanakataki Comment[az]=Gƶrüntü taxtaları üçün düymə bildirmələrini qur, iynə duyarlılığını ayarla Comment[be]=ŠŸŃ€Ń‹Š·Š½Š°Ń‡ŃŠ½Š½Šµ кнопак і Š·Š¼ŃŠ½ŠµŠ½Š½Šµ Š°Š“Ń‡ŃƒŠ²Š°Š»ŃŒŠ½Š°ŃŃ†Ń– ŠæŃŃ€Š° графічных ŠæŠ»Š°Š½ŃˆŃŃ‚Š°Ńž Comment[be@latin]=ŠŸŃ€Ń‹Š·Š½Š°Ń‡ŃŠ½Š½Šµ кнопак і Š·Š¼ŃŠ½ŠµŠ½Š½Šµ Š°Š“Ń‡ŃƒŠ²Š°Š»ŃŒŠ½Š°ŃŃ†Ń– ŠæŃŃ€Š° графічных ŠæŠ»Š°Š½ŃˆŃŃ‚Š°Ńž Comment[bg]=ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠ° на Š±ŃƒŃ‚оните Šø Ń‡ŃƒŠ²ŃŃ‚Š²ŠøŃ‚ŠµŠ»Š½Š¾ŃŃ‚Ń‚Š° на ŃŃ‚ŠøŠ»ŃƒŃŠ° Ń‡ŃƒŠ²ŃŃ‚Š²ŠøŃ‚ŠµŠ»Š½Š¾ŃŃ‚ за графичните таблети Comment[ca]=Establiu l'assignació dels botons i ajusteu la sensitivitat del llapis per a les tauletes grĆ fiques Comment[ca@valencia]=Estableix el mapa de botons i ajusta la sensitivitat del llapis per a tauletes grĆ fiques Comment[cs]=Nastavit mapovĆ”nĆ­ tlačƭtek a přizpÅÆsobit citlivost grafických tabletÅÆ Comment[cy]=Gosod mapio botymau a newid sensitifrwydd yr ysgrifbin ar gyfer tabledi graffig Comment[da]=Angiv tildeling af knapper og justĆ©r fĆølsomhed for digital pen til tegneplader Comment[de]=Knopfzuordnung einstellen und die Empfindlichkeit des Stiftes für Grafiktabletts einstellen Comment[el]=ĪŸĻĪ¹ĻƒĪ¼ĻŒĻ‚ Ī±Ļ€ĪµĪ¹ĪŗĪæĪ½ĪÆĻƒĪµĻ‰Ī½ ĪŗĪæĻ…Ī¼Ļ€Ī¹ĻŽĪ½ και ĻĻĪøĪ¼Ī¹ĻƒĪ· ĪµĻ…Ī±Ī¹ĻƒĪøĪ·ĻƒĪÆĪ±Ļ‚ γραφίΓας (stylus) για ταμπλέτες Ī³ĻĪ±Ļ†Ī¹ĪŗĻŽĪ½ Comment[eo]=Agordi butonajn mapigojn kaj ĝustigi grifelan sentivecon por desegnaj tabuletoj Comment[es]=Asigne los botones y ajuste la sensibilidad del lĆ”piz óptico de las tabletas grĆ”ficas Comment[et]=Digitaallaudade nuppude vastavuse ja kirjapulga tundlikkuse muutmine Comment[eu]=Ezarri botoi-mapatzea eta doitu arkatzaren sentikortasuna taula grafikoentzako Comment[fa]=ŲŖŁ†ŲøŪŒŁ… Ų¬Ų§ŪŒŚÆŲ§Ł‡ Ś©Ł„ŪŒŲÆā€ŒŁ‡Ų§ و ŲŖŁ†ŲøŪŒŁ… حساسیت قلم برای تبلت گرافیک Comment[fi]=Aseta piirtopƶydƤn painikkeet ja kynƤn herkkyys Comment[fr]=Associer les boutons et ajuster la sensibilitĆ© du stylet des tablettes graphiques Comment[fr_CA]=Associer les boutons et ajuster la sensibilitĆ© du stylet des tablettes graphiques Comment[gd]=Suidhich mapadh nam putanan is cuir air gleus mothalachd an staidhleis airson tablaidean grafaigeachd Comment[gl]=Estabeleza a asignación de botóns e axuste a sensibilidade do seu lapis dixital nas tabletas grĆ”ficas Comment[he]=הגדרת מיפוי לחצנים ×•×”×Ŗ××ž×Ŗ רגישות העט ×œ×œ×•×—×•×Ŗ מגע ×’×Ø×¤×™×™× Comment[hi]=ą¤—ą„ą¤°ą¤¾ą„žą¤æą¤•ą„ą¤ø ą¤Ÿą„ˆą¤¬ą¤²ą„‡ą¤Ÿ ą¤¹ą„‡ą¤¤ą„ बटन ą¤•ą¤¾ą¤°ą„ą¤Æ ą¤øą„‡ą¤Ÿ व ą¤øą„ą¤Ÿą¤¾ą¤‡ą¤²ą¤ø ą¤øą¤‚ą¤µą„‡ą¤¦ą¤Øą¤¶ą„€ą¤²ą¤¤ą¤¾ ą¤øą¤®ą¤¾ą¤Æą„‹ą¤œą¤æą¤¤ ą¤•ą¤°ą„‡ą¤‚ Comment[hr]=Postavi tipke mapiranja i prilagodi osjetljivost igle grafičkih tableta Comment[hu]=RajztĆ”blĆ”k gomblekĆ©pezĆ©seinek beĆ”llĆ­tĆ”sa Ć©s a stylus Ć©rzĆ©kenysĆ©gĆ©nek módosĆ­tĆ”sa Comment[ia]=Configurar le mappas del buttones e adjustar le sensitivitate del stilo pro le tablettas graphic Comment[id]=Tata pemetaan tombol dan atur kepekaan stylus bagi tablet grafis Comment[is]=Stilltu hnappavƶrpun og aưlagaưu nƦmni snertipenna fyrir teikniborư Comment[it]=Imposta la mappatura dei pulsanti e regola la sensibilitĆ  del pennino per tavolette grafiche Comment[ja]=ć‚°ćƒ©ćƒ•ć‚£ćƒƒć‚Æć‚æćƒ–ćƒ¬ćƒƒćƒˆć®ćƒœć‚æćƒ³å‰²ć‚Šå½“ć¦ć‚„ć€ć‚¹ć‚æć‚¤ćƒ©ć‚¹ę„Ÿåŗ¦ć‚’čŖæę•“ć—ć¾ć™ Comment[kab]=Sireg tiqfalin u sgaddi aįø„ulfu n imru di tfelwin tudlifin Comment[kk]=Графикалық ŠæŠ»Š°Š½ŃˆŠµŃ‚Ń‚ŠµŃ€ ŅÆŃˆŃ–Š½ батырмалар сәйкестіктерін және ŃŃ‚ŠøŠ»ŃƒŃ сезімталГылығын Š±Š°ŠæŃ‚Š°Ńƒ Comment[ko]=ź·øėž˜ķ”½ ķƒœėø”ė¦æģ˜ ė²„ķŠ¼ģ„ 매핑 ķ•˜ź³  ģŠ¤ķƒ€ģ¼ėŸ¬ģŠ¤ģ˜ ź°ė„ė„¼ ģ”°ģ ˆķ•©ė‹ˆė‹¤. Comment[lt]=Nustatykite mygtukų susiejimus ir pritaikykite pieÅ”tuko jautrumą grafinėms planÅ”etėms Comment[nl]=Knoptoewijzingen instellen en gevoeligheid bijstellen van stylus voor grafische tabletten Comment[oc]=Associar los botons e ajustar la sensibilitat de l'estilet de las tauletas graficas Comment[pl]=Ustawienie mapowania przycisków i dostosowanie wrażliwości rysika dla tabletów graficznych Comment[pt]=Definir mapeamento dos botƵes e ajustar a sensibilidade das canetas dos tablets Comment[pt_BR]=Definir botƵes e ajustar sensibilidade da caneta para mesas digitalizadoras Comment[ro]=Setați alocarea butoanelor și ajustați sensibilitatea stylusului tabletei grafice Comment[ru]=Установка ŠæŃ€ŠøŠ²ŃŠ·ŠŗŠø кнопок Šø настройка Ń‡ŃƒŠ²ŃŃ‚Š²ŠøŃ‚ŠµŠ»ŃŒŠ½Š¾ŃŃ‚Šø пера Š“Š»Ń графических ŠæŠ»Š°Š½ŃˆŠµŃ‚Š¾Š² Comment[sk]=Nastavuje priradenie tlačidiel a upravuje citlivosÅ„ pera grafických tabletov Comment[sl]=Nastavite preslikave gumbov in prilagodite občutljivost pisala za grafične tablice Comment[sr]=ПоГеси пречице ГугмаГи Šø осетљивост писаљке графичким таблицама Comment[sr@latin]=Postavite mapiranje dugmadi i podesite osetljivost digitalne olovke grafičkih tabli Comment[sv]=StƤll in knappmappningar och justera kƤnslighet fƶr styluspenna till ritplattor Comment[th]=ąøąø³ąø«ąø™ąø”ąøœąø±ąø‡ąø›ąøøą¹ˆąø”ą¹ąø„ąø°ąø›ąø£ąø±ąøšąø„ąø§ąø²ąø”ąø•ąø­ąøšąøŖąø™ąø­ąø‡ąø›ąø²ąøąøąø²ąøŠąøµą¹‰ąøŖąø³ąø«ąø£ąø±ąøšą¹ąø—ą¹‡ąøšą¹€ąø„ą¹‡ąø•ąøąø£ąø²ąøŸąø“ąøąøŖą¹Œ Comment[tr]=Grafik tabletler iƧin düğme eşleştirmelerini ve kalem (stylus) duyarlılığını ayarla. Comment[uk]=Визначити ŠæŃ€ŠøŠ²ā€™ŃŠ·ŠŗŃƒ кнопок і ŃŠŗŠ¾Ń€ŠøŠ³ŃƒŠ²Š°Ń‚Šø Ń‡ŃƒŃ‚Š»ŠøŠ²Ń–ŃŃ‚ŃŒ сенсора Š“Š»Ń графічних ŠæŠ»Š°Š½ŃˆŠµŃ‚Ń–Š² Comment[uz]=Grafik planshet uchun tugma joylarini oā€˜rnatish va pero sezgirligini moslash Comment[uz@cyrillic]=Grafik planshet uchun tugma joylarini oā€˜rnatish va pero sezgirligini moslash Comment[vi]=Ɓnh xįŗ” nĆŗt vĆ  điều chỉnh độ nhįŗ”y bĆŗt bĆ n vįŗ½ Comment[zh_CN]=č®¾ē½®ē»˜å›¾ęæēš„ęŒ‰é”®ę˜ å°„å’Œēµę•åŗ¦ Comment[zh_HK]=čØ­å®šē¹Ŗåœ–ęæēš„ęŒ‰éˆ•å°ę‡‰äø¦čŖæę•“č§øęŽ§ē­†ēš„éˆę•åŗ¦ Comment[zh_TW]=čØ­å®šē¹Ŗåœ–å¹³ęæēš„ęŒ‰éµå°ę‡‰äø¦čŖæę•“č§øęŽ§ē­†ēš„éˆę•åŗ¦ Keywords=Tablet;Wacom;Stylus;Eraser;Mouse; Keywords[be]=ŠæŠ»Š°Š½ŃˆŃŃ‚;Wacom;ŠæŃŃ€Š¾;гумка;Š¼Ń‹Ńˆ; Keywords[be@latin]=ŠæŠ»Š°Š½ŃˆŃŃ‚;Wacom;ŠæŃŃ€Š¾;гумка;Š¼Ń‹Ńˆ; Keywords[ca]=Tauleta;Wacom;Llapis òptic;goma d'esborrar;RatolĆ­; Keywords[ca@valencia]=Tauleta;Wacom;Llapis òptic;goma d'esborrar;RatolĆ­; Keywords[cs]=Tablet;Wacom;stylus;guma;myÅ”; Keywords[cy]=Tabled;Wacoom;pwyntil;Rhwbiwr;Llygoden; Keywords[da]=Tegneplade;Wacom;Pen;Stylus;ViskelƦder;Slette;Mus; Keywords[de]=Tablet;Wacom;Stylus;Eraser;Mouse;Maus; Keywords[el]=Ταμπλέτα;Wacom;Πένα;Ī“ĻŒĪ¼Ī±;Ποντίκι; Keywords[eo]=Tabulkomputilo;Wacom;Grifelo;Gumo;Muso; Keywords[es]=Tableta;Wacom;LĆ”piz tĆ”ctil;Borrador;Ratón; Keywords[et]=Tahvelarvuti;Wacom;Stylus;Kustutaja;Hiir; Keywords[eu]=Tableta;Wacom;Arkatz optikoa;Borragoma;Sagua; Keywords[fa]=ŲŖŲØŁ„ŲŖŲŒ Wacom، Ł‚Ł„Ł…ŲŒ Ł¾Ų§Ś©ā€ŒŚ©Ł†ŲŒ Ł…Ų§ŁˆŲ³; Keywords[fi]=Piirtoalusta;Wacom;KynƤ;Pyyhekumi;Hiiri; Keywords[fr]=Tablette;Wacom;Stylet;Gomme;Souris; Keywords[fr_CA]=Tablette;Wacom;Stylet;Gomme;Souris; Keywords[he]=מחשב־לוח;Wacom;הטילוה;מחק;עכבר; Keywords[hr]=Tablet;Wacom;Pisaljak;Brisaljka;MiÅ”; Keywords[hu]=RajztĆ”bla;Wacom;Toll;RadĆ­r;EgĆ©r;Tablet;Stylus;Eraser;Mouse; Keywords[ia]=Tabletta;Wacom;Stilo;Eradicator;Mus; Keywords[id]=Tablet;Wacom;Stylus;Penghapus;Mouse; Keywords[is]=Tafla;Wacom;Teiknipenni;Útstrokari;MĆŗs; Keywords[it]=Tavoletta;Wacom;Penna;Gomma;Mouse; Keywords[ja]=Tablet;Wacom;Stylus;Eraser;Mouse;ć‚æćƒ–ćƒ¬ćƒƒćƒˆ;ć‚¹ć‚æć‚¤ćƒ©ć‚¹;ę¶ˆć—ć‚“ćƒ ;ćƒžć‚¦ć‚¹; Keywords[ko]=ķƒœėø”ė¦æ;Wacom;ģŠ¤ķƒ€ģ¼ėŸ¬ģŠ¤;ģ§€ģš°ź°œ;마우스; Keywords[nl]=Tablet;Wacom;Pen;Eraser;Muis; Keywords[oc]=Tauleta;Wacom;Estilet;Goma;Mirga; Keywords[pl]=Tablet;Wacom;Rysik;Gumka;Mysz; Keywords[pt]=Tablet;Wacom;Caneta;Borracha;Rato; Keywords[pt_BR]=Tablet;Wacom;Stylus;Apagar;Mouse; Keywords[ro]=Tabletă;Wacom;Stylus;Radieră;Mouse; Keywords[ru]=ŠŸŠ»Š°Š½ŃˆŠµŃ‚;Wacom;Š”Ń‚ŠøŠ»ŃƒŃ;Дтёрка;ŠœŃ‹ŃˆŃŒ;Электронное перо;Š ŃƒŃ‡ŠŗŠ°; Keywords[sk]=Tablet;Wacom;stylus;guma;myÅ”; Keywords[sl]=Tablica;Wacom;pisalo;radirka;miÅ”ka; Keywords[sv]=Ritplatta;Wacom;Stylus;Raderare;Mus; Keywords[tr]=Tablet;Wacom;Tuş Kalemi;Silici;Fare; Keywords[uk]=ŠŸŠ»Š°Š½ŃˆŠµŃ‚;Wacom;Š”Ń‚ŠøŠ»ŃƒŃ;Дтирач;Миша; Keywords[uz]=Planshet;Wacom;Stylus;Eraser;Sichqoncha; Keywords[uz@cyrillic]=Planshet;Wacom;Stylus;Eraser;Sichqoncha; cinnamon-control-center-6.2.0/panels/wacom/wacom-stylus-art-pen.svg0000664000175000017500000001276714632072346024351 0ustar fabiofabio image/svg+xml cinnamon-control-center-6.2.0/panels/wacom/cc-drawing-area.h0000664000175000017500000000173514632072346022703 0ustar fabiofabio/* * Copyright Ā© 2016 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Author: Carlos Garnacho */ #pragma once #include G_BEGIN_DECLS #define CC_TYPE_DRAWING_AREA (cc_drawing_area_get_type ()) G_DECLARE_FINAL_TYPE (CcDrawingArea, cc_drawing_area, CC, DRAWING_AREA, GtkEventBox) GtkWidget *cc_drawing_area_new (void); G_END_DECLS cinnamon-control-center-6.2.0/panels/wacom/wacom-stylus-page.ui0000664000175000017500000004647714632072346023542 0ustar fabiofabio 6 1 3 6 1 3 0 Default 1 Middle Mouse Button Click 2 Right Mouse Button Click 3 Back 4 Forward 5 Disabled stylus-notebook True True False False True False vertical True False end True 96 input-tablet-symbolic 0 False True 0 True False No stylus found False True 1 True False start True Please move your stylus to the proximity of the tablet to configure it center True 30 False True 2 True False True 10 10 True False start center Stylus 0 0 2 True False end start wacom-stylus.svg 0 1 True False 16 12 True vertical 6 10 True False end center Eraser Pressure Feel right 0 0 True False True 10 True False Soft False True 0 True True center adjustment-eraser-feel 0 0 False True True 1 True False Firm False True 2 1 0 True False end center Top Button right 0 1 True False center liststore-buttons 1 1 True False end center Lower Button right 0 2 True False center liststore-buttons 1 2 True False end center Lowest Button right 0 3 True False center liststore-buttons 1 3 True False end center Tip Pressure Feel right 0 4 True False 10 True False Soft False True 0 True True True adjustment-tip-feel 0 0 False True True 1 True False Firm False True 2 1 4 1 1 True False end crossfade 100 1 0 True False vertical True False Test Your _Settings True False True 0 0 2 3 1 cinnamon-control-center-6.2.0/panels/wacom/cc-wacom-button-row.c0000664000175000017500000002123414632072346023555 0ustar fabiofabio/* * Copyright Ā© 2013 Red Hat, Inc. * * Authors: Joaquim Rocha * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ #include #include #include "csd-wacom-key-shortcut-button.h" #include "cc-wacom-button-row.h" #define ACTION_KEY "action" #define KEYBINDING_KEY "keybinding" #define WACOM_C(x) g_dpgettext2(NULL, "Wacom action-type", x) enum { ACTION_NAME_COLUMN, ACTION_TYPE_COLUMN, ACTION_N_COLUMNS }; struct _CcWacomButtonRow { GtkListBoxRow parent_instance; guint button; GSettings *settings; GtkDirectionType direction; GtkComboBox *action_combo; CsdWacomKeyShortcutButton *key_shortcut_button; }; G_DEFINE_TYPE (CcWacomButtonRow, cc_wacom_button_row, GTK_TYPE_LIST_BOX_ROW) static GtkWidget * create_actions_combo (void) { GtkListStore *model; GtkTreeIter iter; GtkWidget *combo; GtkCellRenderer *renderer; gint i; model = gtk_list_store_new (ACTION_N_COLUMNS, G_TYPE_STRING, G_TYPE_INT); for (i = 0; i < G_N_ELEMENTS (action_table); i++) { gtk_list_store_append (model, &iter); gtk_list_store_set (model, &iter, ACTION_NAME_COLUMN, WACOM_C(action_table[i].action_name), ACTION_TYPE_COLUMN, action_table[i].action_type, -1); } combo = gtk_combo_box_new_with_model (GTK_TREE_MODEL (model)); renderer = gtk_cell_renderer_text_new (); gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo), renderer, TRUE); gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo), renderer, "text", ACTION_NAME_COLUMN, NULL); return combo; } static void cc_wacom_button_row_update_shortcut (CcWacomButtonRow *row, CDesktopPadButtonAction action_type) { guint keyval; GdkModifierType mask; g_autofree gchar *shortcut = NULL; if (action_type != C_DESKTOP_PAD_BUTTON_ACTION_KEYBINDING) return; shortcut = g_settings_get_string (row->settings, KEYBINDING_KEY); if (shortcut != NULL) { gtk_accelerator_parse (shortcut, &keyval, &mask); g_object_set (row->key_shortcut_button, "key-value", keyval, "key-mods", mask, NULL); } } static void cc_wacom_button_row_update_action (CcWacomButtonRow *row, CDesktopPadButtonAction action_type) { GtkTreeIter iter; gboolean iter_valid; CDesktopPadButtonAction current_action_type, real_action_type; GtkTreeModel *model; model = gtk_combo_box_get_model (row->action_combo); real_action_type = action_type; for (iter_valid = gtk_tree_model_get_iter_first (model, &iter); iter_valid; iter_valid = gtk_tree_model_iter_next (model, &iter)) { gtk_tree_model_get (model, &iter, ACTION_TYPE_COLUMN, ¤t_action_type, -1); if (current_action_type == real_action_type) { gtk_combo_box_set_active_iter (row->action_combo, &iter); break; } } } static void cc_wacom_button_row_update (CcWacomButtonRow *row) { CDesktopPadButtonAction current_action_type; current_action_type = g_settings_get_enum (row->settings, ACTION_KEY); cc_wacom_button_row_update_shortcut (row, current_action_type); cc_wacom_button_row_update_action (row, current_action_type); gtk_widget_set_sensitive (GTK_WIDGET (row->key_shortcut_button), current_action_type == C_DESKTOP_PAD_BUTTON_ACTION_KEYBINDING); } static void change_button_action_type (CcWacomButtonRow *row, CDesktopPadButtonAction type) { g_settings_set_enum (row->settings, ACTION_KEY, type); gtk_widget_set_sensitive (GTK_WIDGET (row->key_shortcut_button), type == C_DESKTOP_PAD_BUTTON_ACTION_KEYBINDING); } static void on_key_shortcut_edited (CsdWacomKeyShortcutButton *shortcut_button, CcWacomButtonRow *row) { g_autofree gchar *custom_key = NULL; guint keyval; GdkModifierType mask; change_button_action_type (row, C_DESKTOP_PAD_BUTTON_ACTION_KEYBINDING); g_object_get (row->key_shortcut_button, "key-value", &keyval, "key-mods", &mask, NULL); mask &= ~GDK_LOCK_MASK; custom_key = gtk_accelerator_name (keyval, mask); g_settings_set_string (row->settings, KEYBINDING_KEY, custom_key); } static void on_key_shortcut_cleared (CsdWacomKeyShortcutButton *key_shortcut_button, CcWacomButtonRow *row) { change_button_action_type (row, C_DESKTOP_PAD_BUTTON_ACTION_NONE); cc_wacom_button_row_update_action (row, C_DESKTOP_PAD_BUTTON_ACTION_NONE); } static void on_row_action_combo_box_changed (GtkComboBox *combo, CcWacomButtonRow *row) { CDesktopPadButtonAction type; GtkTreeModel *model; GtkListBox *list_box; GtkTreeIter iter; if (!gtk_combo_box_get_active_iter (combo, &iter)) return; /* Select the row where we changed the combo box (if not yet selected) */ list_box = GTK_LIST_BOX (gtk_widget_get_parent (GTK_WIDGET (row))); if (list_box && gtk_list_box_get_selected_row (list_box) != GTK_LIST_BOX_ROW (row)) gtk_list_box_select_row (list_box, GTK_LIST_BOX_ROW (row)); model = gtk_combo_box_get_model (combo); gtk_tree_model_get (model, &iter, ACTION_TYPE_COLUMN, &type, -1); change_button_action_type (row, type); } static gboolean on_key_shortcut_button_press_event (CsdWacomKeyShortcutButton *button, GdkEventButton *event, GtkListBoxRow *row) { GtkListBox *list_box; /* Select the row where we pressed the button (if not yet selected) */ list_box = GTK_LIST_BOX (gtk_widget_get_parent (GTK_WIDGET (row))); if (list_box && gtk_list_box_get_selected_row (list_box) != row) gtk_list_box_select_row (list_box, row); return FALSE; } static void cc_wacom_button_row_class_init (CcWacomButtonRowClass *button_row_class) { } static void cc_wacom_button_row_init (CcWacomButtonRow *button_row) { } GtkWidget * cc_wacom_button_row_new (guint button, GSettings *settings) { CcWacomButtonRow *row; GtkWidget *grid, *combo, *label, *shortcut_button; g_autofree gchar *name = NULL; row = CC_WACOM_BUTTON_ROW (g_object_new (CC_WACOM_TYPE_BUTTON_ROW, NULL)); row->button = button; row->settings = g_object_ref (settings); grid = gtk_grid_new (); gtk_widget_show (grid); gtk_grid_set_row_homogeneous (GTK_GRID (grid), TRUE); gtk_grid_set_column_homogeneous (GTK_GRID (grid), TRUE); name = g_strdup_printf (_("Button %d"), button); label = gtk_label_new (name); g_object_set (label, "halign", GTK_ALIGN_START, NULL); gtk_grid_attach (GTK_GRID (grid), label, 0, 0, 1, 1); gtk_widget_show (label); combo = create_actions_combo (); gtk_grid_attach (GTK_GRID (grid), combo, 1, 0, 1, 1); gtk_widget_show (combo); row->action_combo = GTK_COMBO_BOX (combo); g_signal_connect (combo, "changed", G_CALLBACK (on_row_action_combo_box_changed), row); shortcut_button = csd_wacom_key_shortcut_button_new (); g_object_set (shortcut_button, "mode", CSD_WACOM_KEY_SHORTCUT_BUTTON_MODE_ALL, NULL); gtk_grid_attach (GTK_GRID (grid), shortcut_button, 2, 0, 1, 1); gtk_widget_show (shortcut_button); row->key_shortcut_button = CSD_WACOM_KEY_SHORTCUT_BUTTON (shortcut_button); g_signal_connect (shortcut_button, "key-shortcut-cleared", G_CALLBACK (on_key_shortcut_cleared), row); g_signal_connect (shortcut_button, "key-shortcut-edited", G_CALLBACK (on_key_shortcut_edited), row); g_signal_connect (shortcut_button, "button-press-event", G_CALLBACK (on_key_shortcut_button_press_event), row); gtk_container_add (GTK_CONTAINER (row), grid); cc_wacom_button_row_update (CC_WACOM_BUTTON_ROW (row)); return GTK_WIDGET (row); } cinnamon-control-center-6.2.0/panels/wacom/cc-wacom-output-manager.c0000664000175000017500000002401314632072346024403 0ustar fabiofabio/* * Copyright Ā© 2016 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Authors: Carlos Garnacho * */ #include "config.h" #include #include "cc-wacom-output-manager.h" #include "muffin-display-config.h" typedef struct _CcWacomOutputManager CcWacomOutputManager; struct _CcWacomOutputManager { GObject parent_instance; MetaDBusDisplayConfig *proxy; GList *monitors; }; G_DEFINE_TYPE (CcWacomOutputManager, cc_wacom_output_manager, G_TYPE_OBJECT) enum { MONITORS_CHANGED, N_SIGNALS, }; static guint cc_wacom_output_manager_signals[N_SIGNALS] = { 0 }; static void monitor_info_free (MonitorInfo *info) { g_free (info->connector_name); g_free (info->display_name); g_free (info->vendor); g_free (info->product); g_free (info->serial); g_slice_free (MonitorInfo, info); } gboolean monitor_info_cmp (MonitorInfo *a, MonitorInfo *b) { return (g_strcmp0 (a->vendor, b->vendor) == 0 && g_strcmp0 (a->product, b->product) == 0 && g_strcmp0 (a->serial, b->serial) == 0); } void monitor_info_spew (MonitorInfo *info) { g_printerr ("connector: %s, display_name: %s, vendor: %s, product: %s, serial: %s\n" "x_origin: %d, y_origin: %d, primary? %d, builtin? %d\n", info->connector_name, info->display_name, info->vendor, info->product, info->serial, info->x, info->y, info->primary, info->builtin); } #define MODE_BASE_FORMAT "siiddad" #define MODE_FORMAT "(" MODE_BASE_FORMAT "a{sv})" #define MODES_FORMAT "a" MODE_FORMAT #define MONITOR_SPEC_FORMAT "(ssss)" #define MONITOR_FORMAT "(" MONITOR_SPEC_FORMAT MODES_FORMAT "a{sv})" #define MONITORS_FORMAT "a" MONITOR_FORMAT #define LOGICAL_MONITOR_MONITORS_FORMAT "a" MONITOR_SPEC_FORMAT #define LOGICAL_MONITOR_FORMAT "(iidub" LOGICAL_MONITOR_MONITORS_FORMAT "a{sv})" #define LOGICAL_MONITORS_FORMAT "a" LOGICAL_MONITOR_FORMAT static void update_monitor_infos (CcWacomOutputManager *manager, GVariant *monitors, GVariant *logical_monitors) { GList *new_monitors = NULL; GVariantIter m_iter; g_variant_iter_init (&m_iter, monitors); while (TRUE) { g_autoptr(GVariant) variant = NULL; if (!g_variant_iter_next (&m_iter, "@"MONITOR_FORMAT, &variant)) break; gchar *connector_name, *vendor, *product, *serial; g_autoptr(GVariantIter) modes = NULL; g_autoptr(GVariantIter) props = NULL; g_variant_get (variant, MONITOR_FORMAT, &connector_name, &vendor, &product, &serial, &modes, &props); MonitorInfo *info = g_slice_new0 (MonitorInfo); info->connector_name = connector_name; info->vendor = vendor; info->product = product; info->serial = serial; while (TRUE) { const char *s; g_autoptr(GVariant) v = NULL; if (!g_variant_iter_next (props, "{&sv}", &s, &v)) break; if (g_str_equal (s, "display-name")) { g_variant_get (v, "s", &info->display_name); } if (g_str_equal (s, "is-builtin")) { g_variant_get (v, "b", &info->builtin); } } GVariantIter l_iter; g_variant_iter_init (&l_iter, logical_monitors); while (TRUE) { g_autoptr(GVariant) variant = NULL; g_autoptr(GVariantIter) monitor_specs = NULL; const gchar *lconnector, *lvendor, *lproduct, *lserial; gint x, y; gboolean primary; gboolean found_one = FALSE; if (!g_variant_iter_next (&l_iter, "@"LOGICAL_MONITOR_FORMAT, &variant)) break; g_variant_get (variant, LOGICAL_MONITOR_FORMAT, &x, &y, NULL, NULL, &primary, &monitor_specs, NULL); while (g_variant_iter_next (monitor_specs, "(&s&s&s&s)", &lconnector, &lvendor, &lproduct, &lserial)) { if (g_strcmp0 (info->connector_name, lconnector) == 0 && g_strcmp0 (info->vendor, lvendor) == 0 && g_strcmp0 (info->product, lproduct) == 0 && g_strcmp0 (info->serial, lserial) == 0) { info->x = x; info->y = y; info->primary = primary; found_one = TRUE; break; } } // Only check the first logical monitor - we're only looking for the origin x, y of the physical one. if (found_one) break; } new_monitors = g_list_append (new_monitors, info); } manager->monitors = new_monitors; } static void update_from_muffin (CcWacomOutputManager *manager) { if (manager->monitors != NULL) { g_list_free_full (g_steal_pointer (&manager->monitors), (GDestroyNotify) monitor_info_free); } if (g_dbus_proxy_get_name_owner (G_DBUS_PROXY (manager->proxy)) != NULL) { GVariant *monitors, *logical_monitors, *properties; guint serial; GError *error = NULL; if (meta_dbus_display_config_call_get_current_state_sync (manager->proxy, &serial, &monitors, &logical_monitors, &properties, NULL, &error)) { update_monitor_infos (manager, monitors, logical_monitors); g_variant_unref (monitors); g_variant_unref (logical_monitors); g_variant_unref (properties); } else { g_critical ("GetCurrentState failed (%d): %s\n", error->code, error->message); } } else { g_critical ("Is Cinnamon running??"); } g_signal_emit (manager, cc_wacom_output_manager_signals[MONITORS_CHANGED], 0); } static void muffin_state_changed (gpointer data) { g_return_if_fail (CC_IS_WACOM_OUTPUT_MANAGER (data)); CcWacomOutputManager *manager = CC_WACOM_OUTPUT_MANAGER (data); update_from_muffin (manager); } static void cc_wacom_output_manager_constructed (GObject *object) { G_OBJECT_CLASS (cc_wacom_output_manager_parent_class)->constructed (object); CcWacomOutputManager *manager = CC_WACOM_OUTPUT_MANAGER (object); GError *error = NULL; manager->proxy = meta_dbus_display_config_proxy_new_for_bus_sync (G_BUS_TYPE_SESSION, G_DBUS_PROXY_FLAGS_NONE, "org.cinnamon.Muffin.DisplayConfig", "/org/cinnamon/Muffin/DisplayConfig", NULL, &error); if (manager->proxy == NULL) { if (error != NULL) { g_critical ("No connection to session bus: (%d) %s", error->code, error->message); return; } } g_signal_connect_object (manager->proxy, "notify::g-name-owner", G_CALLBACK (muffin_state_changed), manager, G_CONNECT_SWAPPED); g_signal_connect_object (META_DBUS_DISPLAY_CONFIG (manager->proxy), "monitors-changed", G_CALLBACK (muffin_state_changed), manager, G_CONNECT_SWAPPED); update_from_muffin (CC_WACOM_OUTPUT_MANAGER (object)); } static void cc_wacom_output_manager_init (CcWacomOutputManager *manage) { } static void cc_wacom_output_manager_finalize (GObject *object) { CcWacomOutputManager *manager = CC_WACOM_OUTPUT_MANAGER (object); if (manager->monitors != NULL) { g_list_free_full (g_steal_pointer (&manager->monitors), (GDestroyNotify) monitor_info_free); } G_OBJECT_CLASS (cc_wacom_output_manager_parent_class)->finalize (object); } static void cc_wacom_output_manager_class_init (CcWacomOutputManagerClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); object_class->constructed = cc_wacom_output_manager_constructed; object_class->finalize = cc_wacom_output_manager_finalize; cc_wacom_output_manager_signals[MONITORS_CHANGED] = g_signal_new ("monitors-changed", CC_TYPE_WACOM_OUTPUT_MANAGER, G_SIGNAL_RUN_LAST, 0, NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } CcWacomOutputManager * cc_wacom_output_manager_get (void) { static CcWacomOutputManager *singleton = NULL; if (singleton == NULL) { singleton = g_object_new (CC_TYPE_WACOM_OUTPUT_MANAGER, NULL); } return singleton; } GList * cc_wacom_output_manager_get_all_monitors (CcWacomOutputManager *manager) { g_return_val_if_fail (CC_IS_WACOM_OUTPUT_MANAGER (manager), NULL); return manager->monitors; } void cc_wacom_output_manager_refresh_monitors (CcWacomOutputManager *manager) { g_return_if_fail (CC_IS_WACOM_OUTPUT_MANAGER (manager)); update_from_muffin (manager); } cinnamon-control-center-6.2.0/panels/wacom/cc-drawing-area.c0000664000175000017500000001300614632072346022670 0ustar fabiofabio/* * Copyright Ā© 2016 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Author: Carlos Garnacho */ #include "config.h" #include #include "cc-drawing-area.h" typedef struct _CcDrawingArea CcDrawingArea; struct _CcDrawingArea { GtkEventBox parent; GdkDevice *current_device; cairo_surface_t *surface; cairo_t *cr; }; G_DEFINE_TYPE (CcDrawingArea, cc_drawing_area, GTK_TYPE_EVENT_BOX) static void ensure_drawing_surface (CcDrawingArea *area, gint width, gint height) { if (!area->surface || cairo_image_surface_get_width (area->surface) != width || cairo_image_surface_get_height (area->surface) != height) { cairo_surface_t *surface; surface = cairo_image_surface_create (CAIRO_FORMAT_ARGB32, width, height); if (area->surface) { cairo_t *cr; cr = cairo_create (surface); cairo_set_source_surface (cr, area->surface, 0, 0); cairo_paint (cr); cairo_surface_destroy (area->surface); cairo_destroy (area->cr); cairo_destroy (cr); } area->surface = surface; area->cr = cairo_create (surface); } } static void cc_drawing_area_size_allocate (GtkWidget *widget, GtkAllocation *allocation) { CcDrawingArea *area = CC_DRAWING_AREA (widget); ensure_drawing_surface (area, allocation->width, allocation->height); GTK_WIDGET_CLASS (cc_drawing_area_parent_class)->size_allocate (widget, allocation); } static void cc_drawing_area_map (GtkWidget *widget) { GtkAllocation allocation; GTK_WIDGET_CLASS (cc_drawing_area_parent_class)->map (widget); gtk_widget_get_allocation (widget, &allocation); ensure_drawing_surface (CC_DRAWING_AREA (widget), allocation.width, allocation.height); } static void cc_drawing_area_unmap (GtkWidget *widget) { CcDrawingArea *area = CC_DRAWING_AREA (widget); if (area->cr) { cairo_destroy (area->cr); area->cr = NULL; } if (area->surface) { cairo_surface_destroy (area->surface); area->surface = NULL; } GTK_WIDGET_CLASS (cc_drawing_area_parent_class)->unmap (widget); } static gboolean cc_drawing_area_draw (GtkWidget *widget, cairo_t *cr) { CcDrawingArea *area = CC_DRAWING_AREA (widget); GtkAllocation allocation; GTK_WIDGET_CLASS (cc_drawing_area_parent_class)->draw (widget, cr); gtk_widget_get_allocation (widget, &allocation); cairo_set_source_rgb (cr, 1, 1, 1); cairo_paint (cr); cairo_set_source_surface (cr, area->surface, 0, 0); cairo_paint (cr); cairo_set_source_rgb (cr, 0.6, 0.6, 0.6); cairo_rectangle (cr, 0, 0, allocation.width, allocation.height); cairo_stroke (cr); return FALSE; } static gboolean cc_drawing_area_event (GtkWidget *widget, GdkEvent *event) { CcDrawingArea *area = CC_DRAWING_AREA (widget); GdkInputSource source; GdkDeviceTool *tool; GdkDevice *device; device = gdk_event_get_source_device (event); if (!device) return GDK_EVENT_PROPAGATE; source = gdk_device_get_source (device); tool = gdk_event_get_device_tool (event); if (source != GDK_SOURCE_PEN && source != GDK_SOURCE_ERASER) return GDK_EVENT_PROPAGATE; if (area->current_device && area->current_device != device) return GDK_EVENT_PROPAGATE; if (event->type == GDK_BUTTON_PRESS && event->button.button == 1 && !area->current_device) { area->current_device = device; } else if (event->type == GDK_BUTTON_RELEASE && event->button.button == 1 && area->current_device) { cairo_new_path (area->cr); area->current_device = NULL; } else if (event->type == GDK_MOTION_NOTIFY && event->motion.state & GDK_BUTTON1_MASK) { gdouble x, y, pressure; gdk_event_get_coords (event, &x, &y); gdk_event_get_axis (event, GDK_AXIS_PRESSURE, &pressure); if (gdk_device_tool_get_tool_type (tool) == GDK_DEVICE_TOOL_TYPE_ERASER) { cairo_set_line_width (area->cr, 10 * pressure); cairo_set_operator (area->cr, CAIRO_OPERATOR_DEST_OUT); } else { cairo_set_line_width (area->cr, 4 * pressure); cairo_set_operator (area->cr, CAIRO_OPERATOR_SATURATE); } cairo_set_source_rgba (area->cr, 0, 0, 0, pressure); cairo_line_to (area->cr, x, y); cairo_stroke (area->cr); cairo_move_to (area->cr, x, y); gtk_widget_queue_draw (widget); return GDK_EVENT_STOP; } return GDK_EVENT_PROPAGATE; } static void cc_drawing_area_class_init (CcDrawingAreaClass *klass) { GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass); widget_class->size_allocate = cc_drawing_area_size_allocate; widget_class->draw = cc_drawing_area_draw; widget_class->event = cc_drawing_area_event; widget_class->map = cc_drawing_area_map; widget_class->unmap = cc_drawing_area_unmap; } static void cc_drawing_area_init (CcDrawingArea *area) { gtk_event_box_set_above_child (GTK_EVENT_BOX (area), TRUE); gtk_widget_add_events (GTK_WIDGET (area), GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_POINTER_MOTION_MASK); } GtkWidget * cc_drawing_area_new (void) { return g_object_new (CC_TYPE_DRAWING_AREA, NULL); } cinnamon-control-center-6.2.0/panels/wacom/wacom-stylus-airbrush.svg0000664000175000017500000000777214632072346024622 0ustar fabiofabio image/svg+xml cinnamon-control-center-6.2.0/panels/wacom/muffin-display-config.xml0000664000175000017500000004072714632072346024526 0ustar fabiofabio cinnamon-control-center-6.2.0/panels/wacom/cc-wacom-stylus-page.h0000664000175000017500000000240214632072346023713 0ustar fabiofabio/* * Copyright Ā© 2011 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Authors: Peter Hutterer * Bastien Nocera */ #pragma once #include #include "cc-wacom-tool.h" G_BEGIN_DECLS #define CC_TYPE_WACOM_STYLUS_PAGE (cc_wacom_stylus_page_get_type ()) G_DECLARE_FINAL_TYPE (CcWacomStylusPage, cc_wacom_stylus_page, CC, WACOM_STYLUS_PAGE, GtkBox) GtkWidget * cc_wacom_stylus_page_new (CcWacomTool *stylus); CcWacomTool * cc_wacom_stylus_page_get_tool (CcWacomStylusPage *page); void cc_wacom_stylus_page_set_navigation (CcWacomStylusPage *page, GtkNotebook *notebook); G_END_DECLS cinnamon-control-center-6.2.0/panels/wacom/cc-tablet-tool-map.h0000664000175000017500000000271214632072346023337 0ustar fabiofabio/* * Copyright Ā© 2016 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Authors: Carlos Garnacho * */ #pragma once #include "config.h" #include #include "cc-wacom-device.h" #include "cc-wacom-tool.h" G_BEGIN_DECLS #define CC_TYPE_TABLET_TOOL_MAP (cc_tablet_tool_map_get_type ()) G_DECLARE_FINAL_TYPE (CcTabletToolMap, cc_tablet_tool_map, CC, TABLET_TOOL_MAP, GObject) CcTabletToolMap * cc_tablet_tool_map_new (void); GList * cc_tablet_tool_map_list_tools (CcTabletToolMap *map, CcWacomDevice *device); CcWacomTool * cc_tablet_tool_map_lookup_tool (CcTabletToolMap *map, CcWacomDevice *device, guint64 serial); void cc_tablet_tool_map_add_relation (CcTabletToolMap *map, CcWacomDevice *device, CcWacomTool *tool); G_END_DECLS cinnamon-control-center-6.2.0/panels/wacom/cc-wacom-nav-button.c0000664000175000017500000001573514632072346023543 0ustar fabiofabio/* * Copyright Ā© 2011 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Authors: Bastien Nocera * */ #include #include #include #include "cc-wacom-nav-button.h" struct _CcWacomNavButton { GtkBox parent_instance; GtkNotebook *notebook; GtkWidget *label; GtkWidget *prev; GtkWidget *next; guint page_added_id; guint page_removed_id; guint page_switched_id; gboolean ignore_first_page; }; G_DEFINE_TYPE (CcWacomNavButton, cc_wacom_nav_button, GTK_TYPE_BOX) enum { PROP_0, PROP_NOTEBOOK, PROP_IGNORE_FIRST }; static void cc_wacom_nav_button_update (CcWacomNavButton *nav) { int num_pages; int current_page; char *text; if (nav->notebook == NULL) { gtk_widget_hide (GTK_WIDGET (nav)); return; } num_pages = gtk_notebook_get_n_pages (GTK_NOTEBOOK (nav->notebook)); if (num_pages == 0) return; if (nav->ignore_first_page && num_pages == 1) return; if (nav->ignore_first_page) num_pages--; g_assert (num_pages >= 1); gtk_revealer_set_reveal_child (GTK_REVEALER (gtk_widget_get_parent (GTK_WIDGET (nav))), num_pages > 1); current_page = gtk_notebook_get_current_page (GTK_NOTEBOOK (nav->notebook)); if (current_page < 0) return; if (nav->ignore_first_page) current_page--; gtk_widget_set_sensitive (nav->prev, current_page == 0 ? FALSE : TRUE); gtk_widget_set_sensitive (nav->next, current_page + 1 == num_pages ? FALSE : TRUE); text = g_strdup_printf (_("%d of %d"), current_page + 1, num_pages); gtk_label_set_text (GTK_LABEL (nav->label), text); } static void pages_changed (GtkNotebook *notebook, GtkWidget *child, guint page_num, CcWacomNavButton *nav) { cc_wacom_nav_button_update (nav); } static void page_switched (GtkNotebook *notebook, GParamSpec *pspec, CcWacomNavButton *nav) { cc_wacom_nav_button_update (nav); } static void next_clicked (GtkButton *button, CcWacomNavButton *nav) { int current_page; current_page = gtk_notebook_get_current_page (GTK_NOTEBOOK (nav->notebook)); current_page++; gtk_notebook_set_current_page (GTK_NOTEBOOK (nav->notebook), current_page); } static void prev_clicked (GtkButton *button, CcWacomNavButton *nav) { int current_page; current_page = gtk_notebook_get_current_page (GTK_NOTEBOOK (nav->notebook)); current_page--; gtk_notebook_set_current_page (GTK_NOTEBOOK (nav->notebook), current_page--); } static void cc_wacom_nav_button_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) { CcWacomNavButton *nav = CC_WACOM_NAV_BUTTON (object); switch (property_id) { case PROP_NOTEBOOK: if (nav->notebook) { g_signal_handler_disconnect (nav->notebook, nav->page_added_id); g_signal_handler_disconnect (nav->notebook, nav->page_removed_id); g_signal_handler_disconnect (nav->notebook, nav->page_switched_id); } g_clear_object (&nav->notebook); nav->notebook = g_value_dup_object (value); nav->page_added_id = g_signal_connect (G_OBJECT (nav->notebook), "page-added", G_CALLBACK (pages_changed), nav); nav->page_removed_id = g_signal_connect (G_OBJECT (nav->notebook), "page-removed", G_CALLBACK (pages_changed), nav); nav->page_switched_id = g_signal_connect (G_OBJECT (nav->notebook), "notify::page", G_CALLBACK (page_switched), nav); cc_wacom_nav_button_update (nav); break; case PROP_IGNORE_FIRST: nav->ignore_first_page = g_value_get_boolean (value); cc_wacom_nav_button_update (nav); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } } static void cc_wacom_nav_button_dispose (GObject *object) { CcWacomNavButton *self = CC_WACOM_NAV_BUTTON (object); if (self->notebook) { g_signal_handler_disconnect (self->notebook, self->page_added_id); self->page_added_id = 0; g_signal_handler_disconnect (self->notebook, self->page_removed_id); self->page_removed_id = 0; g_signal_handler_disconnect (self->notebook, self->page_switched_id); self->page_switched_id = 0; g_clear_object (&self->notebook); } G_OBJECT_CLASS (cc_wacom_nav_button_parent_class)->dispose (object); } static void cc_wacom_nav_button_class_init (CcWacomNavButtonClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); object_class->set_property = cc_wacom_nav_button_set_property; object_class->dispose = cc_wacom_nav_button_dispose; g_object_class_install_property (object_class, PROP_NOTEBOOK, g_param_spec_object ("notebook", "notebook", "notebook", GTK_TYPE_NOTEBOOK, G_PARAM_WRITABLE)); g_object_class_install_property (object_class, PROP_IGNORE_FIRST, g_param_spec_boolean ("ignore-first", "ignore-first", "ignore-first", FALSE, G_PARAM_WRITABLE)); } static void cc_wacom_nav_button_init (CcWacomNavButton *self) { GtkStyleContext *context; GtkWidget *image, *box; /* Label */ self->label = gtk_label_new (NULL); gtk_style_context_add_class (gtk_widget_get_style_context (self->label), "dim-label"); gtk_box_pack_start (GTK_BOX (self), self->label, FALSE, FALSE, 8); box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0); context = gtk_widget_get_style_context (GTK_WIDGET (box)); gtk_style_context_add_class (context, GTK_STYLE_CLASS_LINKED); gtk_box_pack_start (GTK_BOX (self), box, FALSE, FALSE, 0); /* Prev button */ self->prev = gtk_button_new (); image = gtk_image_new_from_icon_name ("go-previous-symbolic", GTK_ICON_SIZE_MENU); gtk_container_add (GTK_CONTAINER (self->prev), image); g_signal_connect (G_OBJECT (self->prev), "clicked", G_CALLBACK (prev_clicked), self); gtk_widget_set_valign (self->prev, GTK_ALIGN_CENTER); /* Next button */ self->next = gtk_button_new (); image = gtk_image_new_from_icon_name ("go-next-symbolic", GTK_ICON_SIZE_MENU); gtk_container_add (GTK_CONTAINER (self->next), image); g_signal_connect (G_OBJECT (self->next), "clicked", G_CALLBACK (next_clicked), self); gtk_widget_set_valign (self->next, GTK_ALIGN_CENTER); gtk_box_pack_start (GTK_BOX (box), self->prev, FALSE, FALSE, 0); gtk_box_pack_start (GTK_BOX (box), self->next, FALSE, FALSE, 0); gtk_widget_show (self->label); gtk_widget_show_all (box); } GtkWidget * cc_wacom_nav_button_new (void) { return GTK_WIDGET (g_object_new (CC_TYPE_WACOM_NAV_BUTTON, NULL)); } cinnamon-control-center-6.2.0/panels/wacom/wacom-stylus.svg0000664000175000017500000001231014632072346022765 0ustar fabiofabio image/svg+xml cinnamon-control-center-6.2.0/panels/wacom/cc-wacom-mapping-panel.h0000664000175000017500000000224714632072346024175 0ustar fabiofabio/* * Copyright Ā© 2012 Wacom. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Authors: Jason Gerecke * */ #pragma once #include #include "cc-wacom-device.h" G_BEGIN_DECLS #define CC_TYPE_WACOM_MAPPING_PANEL (cc_wacom_mapping_panel_get_type ()) G_DECLARE_FINAL_TYPE (CcWacomMappingPanel, cc_wacom_mapping_panel, CC, WACOM_MAPPING_PANEL, GtkBox) GtkWidget * cc_wacom_mapping_panel_new (void); void cc_wacom_mapping_panel_set_device (CcWacomMappingPanel *self, CcWacomDevice *device); G_END_DECLS cinnamon-control-center-6.2.0/panels/wacom/wacom-stylus-no-eraser.svg0000664000175000017500000001142614632072346024665 0ustar fabiofabio image/svg+xml cinnamon-control-center-6.2.0/panels/wacom/wacom-module.c0000664000175000017500000000203114632072346022331 0ustar fabiofabio/* * Copyright Ā© Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * Author: Peter Hutterer * */ #include #include "cc-wacom-panel.h" #include void g_io_module_load (GIOModule *module) { /* register the panel */ cc_wacom_panel_register (module); } void g_io_module_unload (GIOModule *module) { } cinnamon-control-center-6.2.0/panels/wacom/wacom-tablet-cintiq.svg0000664000175000017500000000600314632072346024164 0ustar fabiofabio image/svg+xml cinnamon-control-center-6.2.0/panels/color/0000775000175000017500000000000014632072346017610 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/color/meson.build0000664000175000017500000000073014632072346021752 0ustar fabiofabiosubdir('icons') panel_color_sources = [ 'cc-color-panel.c', 'color-module.c', ] panel_color = shared_library('color', panel_color_sources, include_directories: rootInclude, link_with: [ libcinnamon_control_center, ], dependencies: [ gtk, colord, cinn_desktop, ], install: true, install_dir: panels_dir ) install_data('color.ui', install_dir: ui_dir, ) install_data( 'cinnamon-color-panel.desktop', install_dir: desktop_dir ) cinnamon-control-center-6.2.0/panels/color/icons/0000775000175000017500000000000014632072346020723 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/color/icons/scalable/0000775000175000017500000000000014632072346022471 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/color/icons/scalable/cinnamon-preferences-color.svg0000664000175000017500000030762514632072346030444 0ustar fabiofabio image/svg+xml Lapo Calamandrei keyboard keys configure cinnamon-control-center-6.2.0/panels/color/icons/meson.build0000664000175000017500000000044514632072346023070 0ustar fabiofabio color_icon_sizes = [ '16x16', '22x22', '24x24', '32x32', '48x48', '64x64', '256x256', 'scalable', ] foreach size : color_icon_sizes install_subdir(size, strip_directory: true, install_dir: get_option('datadir') / 'icons' / 'hicolor' / size / 'apps', ) endforeach cinnamon-control-center-6.2.0/panels/color/icons/24x24/0000775000175000017500000000000014632072346021506 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/color/icons/24x24/cinnamon-preferences-color.png0000664000175000017500000000303214632072346027427 0ustar fabiofabio‰PNG  IHDRąw=ųsBIT|dˆ pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›ī<tEXtAuthorLapo Calamandreiߑ*tIDATH‰­–ilTUĒ’÷½éėĢōĶŅ™é0t„Ą@­,¶…¶@)ZC!F؂ņĮ”Ååƒ1ā—Œ[Š(hĄ(EL@Kk …RZ”„tX¦„t™„Š}”3oŽ›yó®PE”DOr“{“sĪ/g¹÷PJ1ŽURRĀ<Ž>„„RŠG‰ÓéŌĘńÜ.…ŅU Ų«½żVnnq葆˜ń(©yv³Ž`|!';7Ī 7®$żĒ汚`eÕev6¢¬R@›j«/œ-((ą¾5/k¾‘Ü~*ó'8SS%õū']»ęžæ kI4E>“lŁóž‡ŹŖĖģ¬L;¬ ¶h 0*KR(J)\&“9+#õfÜØwtÉåøŚnõöv7†8Ō±jFÆ3p>æ—@‰LY¾¼øė^€źŽQVY­öčfh©VFŲ–‡ž¾ŽEK‰ŒīD‚•HK}GĆó|ŽŻfgÕ5pŒ¢4AlmmY ąĆ{}ŽW“)•ihŅ7K@ö.A;@ų8d”„5"*ŌAÆ3Ą’$3õŅԌ¬G”FŠ?Ų/wzümcSt ¶śĀYI Eƶl0“³”ų/@ś¶rĶē(Ö J“‡~DĶšz ɗa‰É†*” 1(„’ō[ķC„põōõRnÅNµą' ržk؄iI“ŽŠÄ2&Ä=fńŪŠįiE”eÉņłcżƒ-))ÓéŌzo¶½BšLęÄɓ“øXK*HŒJW@Q%IN"GÜ&X¹|ÄÄpLX”,¼V»Åu¹ŃŚŅ|źtFF®|·Č÷…Qo\ćHwhøśČĒæDĄå„ŖĢgĮŲż ĮĀA#Äx±$ Ż£aźŽ `Rų,Lr‘&'g%ŖŖNm¼Õ‰šśŻ6=YUv;'+OĒīų ŅĮƒ¢×ƒ˜Lwöv†uč[œ —Õ‹!\ÄPÄ ōBˆŽ 'lĀÓŚ·ń«óČš«ė6š)„Š (!?·“ŗ×8¶¾©‰[°r]¢EŠ“ž‰óœeįm²bņŒBÄĒ®D‚õŗéļ0p6¤ń9pč ‘Ā墲²\ Ē3/ÖJ)œN§–Õ²[X…n3™Ģ1Ži35<ÆĆÉĆUh8u „!ŠŪĢ8-°(X8Ć! Š…3ē°  —źCD ‡Øų ²““™RŖÜw“wļŽ­˜h«šį˜™Mön’:#‚”ÄDŌµõcaÖTÄYķPŠ ÅĘ„SŠķ¹ŖŌżq®±āäŁõ­~æ÷jmķ0„Ty Mććć%@qŲ¬vŁs ¢ "0DīŅl4uŻÉ³ĖķCĮĢ„(„°ŒĆµ>¤„¦3,«JĪČøråܹĮæ?ą8¶P£Ö*¾–.t{z˜> ėK^Į‚åy(GĢ›fĘę„éHµĘĮŪ'`@TA£V³…D){ī{‹¢TžkŠby ﯃%ÉÆ·“nódö“‰øÖÖ‹ŁŽ‰€Æ½•¾”7 ‰vØ9f³…õz}O(żW@Ź”Oū{’$‰}ż}²pEˆJaÉ?2225v w ōņg„ąbcƒčnq»ėźÓ4 ›`N`Æ·¶°WŻīЇF°ś¹Õū÷ļŸźnn^ŪåóŻ(-=[WT”­! ®āāl¼¼lęgNÄ÷ūNÓÕÕÆe:2/ņ3^'ĖÕr½ĀÓ|Ć=0®õ»½{¾r?*öōtÓ#G‘>ŻńŃGNŽy<¶Ŗˆ’$TµÕē÷ĻóbH•—WžŁŽœœ<<>Ūǘ0Óóóu(.f’שāæČŸ ß*¢Āø“IEND®B`‚cinnamon-control-center-6.2.0/panels/color/icons/48x48/0000775000175000017500000000000014632072346021522 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/color/icons/48x48/cinnamon-preferences-color.png0000664000175000017500000001040114632072346027441 0ustar fabiofabio‰PNG  IHDR00Wł‡sBIT|dˆ pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›ī<tEXtAuthorLapo Calamandreiߑ*[IDAThÕZip\Օžī[ŗūõŽ­}õ" ŁĘ6¶…ķ ±1`/“!QĄ1–!3@ •Ź`&• ©„P.Ā–±„`"Ę`–/ņ*[¶lٲdk—ZźV«„VoÆūõė·Üł!Y‹µŲ&ęǜŖWÕõ޹ēœļŽ{¶{›PJń’™øoJpCćÉU„p¦§éśsóf-ųĖ7”‡|+ŠŠpf)xģ-ĢafYžIŒĒ×.^xƞ«­‹¹Śy#73_0%99Ył‚Į`|młņåWÅ)„Wõ©;W{gckCŒRJć¾Ē©č{”RJicK}b÷Ż÷`hÕÆÖsÕœkŖ;‰†©*7Ń`=Oƒõ,U“ 4 ѓgŽŸ+++㯦¾«ŗ…Ī«-”ŠKlV;¤Ą UŖA ülV!3žü·'ēBČÕŅ9åžll<•«2쳄’» A§¢*Ūž~:·ø¬u"~Ź0?qŚŻ,hJģ£į÷©Ų§°čøiL~^ī£åå及._]}`† ŗ†aų»”ėE”Ņ÷†žįęÅ7w}-Ć=o·XĢpgs)%•‰…ˆńȋ MuMJJłåus} @@i¹Óī2(± ŗ4 Y ©čv¤»ļā{z{¾wźŌ)nrōÄįU,˼ 3ܼ —nWš`4 čņv>ŃģĖ#„ÜE' —SGŠõ™é¹ß{ ĀĄž·ŲHDcįėzūżļŌ7Sjźį…s®’¤ŖŖJ°ŚMy‚ÉŒÄĄN0\.@øA|T…"~ ‹s#š1éŅ Bˆ÷ȱ·³,ū¦ĮĄ» r§[ÓÓ2@VĻA¦2fL›Ķł{żkoZw“@ģŠ‚€¦©v.1łķÕ ÖL°„«a»ń)8f^g‰‰QK§·}[Cć™}i1<‘!¼¦x@ė(A€®vƒ‹Å¦>t’†>÷³Ē¾ –YU2ó‹ÓįFLmA­ų'ō¦ö#©÷c‰że”خŒ^ĘJ‰SJõ‹mœ„“"&FŸ5Ļ\΁@ÅԚ­POžģģu°Ü² sJ®ż=· „‚«œVw TUüće©AP]‚Ķbį³2ŅŸ––”ęēD½ÕŃ_Į'ļ0øKpČ4ÜOOŽP”Č8¹@SF!US?‰DĆ šŲ¢£‘AoŪłƒõŠ¼Œģōl~Fa1c·9LšźĆ(·CŗŅ—3+)*e ó ņ6> j’°ńfø± §Ē—¬onŽg±XbĶž%̟½Ø:„ČńxBwĆĆļ‰5°f”B©~©’¹&š€ÕbUŗ'•GÕnŲm˜Ģ@mlڤ÷L6X" ó Ž„ &DłĖ;Fe2™—ŹzJI½ŲšĘŁ’•`ņŹ@`rŽaŅŗŖ!æū}čm Œ„±°é`ø\0\6ėa, Œ’ęĆ±čæ Øœ™˜˜ 0ąįąf!Ū° ĶmĶrk{Ē» ¢ų+++'^Ņ˚b·ˆbLOŹų[ž,óI!Ø{ †dpi ¬` ca \Ąē”!±I=8n<‰ĶD©łQˆqĮž>śÉĒ»>¤¢šlū\€²²²„œRžomo޳³×½ęŽńŹv{ōX“c[AˆyI<Ś”/ ė˜L0Ä0Ž#ǰ 9†[PS{\nļō¼å ų:źėėթ컬Rbé¢^QU„­  V¾&­hÄx“0»”ź@mŻ Öo'#,ä /ulp į`bŅĮ€žnfó0Ēņŗ½ Gŗ·nżėšHōN5ū— 1ńę×ŗ½]ŗLYšk6¼` €ąĻÜ„–‚Ąo4^Ģć@Ą#ę[ŽThimŅžžmDŗźėė'uŽa)“5455‡ u02»VÓŌŁf³U5 6Ż!ŲmvčŽ(ū*O” ōY&čłxŗūÄ€Į,Ėcpqó ĄėėN‚z4b–kTe‡¦-wŽygēeØ®9²ša˜ēuŖĻOOĖDš+ŻdµŲĄ²,€†ĆŠ› ÄĘC9ų[čžŗ,"ø“ź"”Öóœ«0Ϲ,Œšõt£¶®V”‰VINżōŽõ÷V Ø:yh īƒiÓ…ĢŒl¢wu!łśėPvķĒĮäåE¹§7P±{÷įwzC6“®Oœ8”ŒĖ„ęŚkÆåžzźńUY9ŁM¦ļp<Ē„9ŻŌåvŻ®4Ęfµc ĀīæļC48a§‡Ż‹:\+Üī‰™ŁĄaÕ¢l¤ŪGĀčéńѾ¾ŽdgW'£ėŗKG›š›·W8±_“"ż”ŅP}}½z”Ę4B˜ņņrŅŲŲhŗõŽ;ŠW,»ł^ĮbųYŁ‚% £³xū·ļ!%„`sYq±ŽE%ō–a0wVō‹Ti:E$”@0pŲøb49Š}•{©ßēµ²źČ'ĶĶm²ŖŠ¼¢DKKK“ōāŚhŅ–r!!‰3gĪŌŻqūņ…¹…šÅla¶żńC$¢ @2!Ćd6+9ŻŠŌ§×tńøĮ,Œį‹Ėƒ>%„T||¬nž†¢™Åz,]ŠpźĢÓsęĢŃ***(zśōé gśŅż„tĒgŪ@)]2sF1æūAųŚzFŒ%Hq J„ģéŁčŻŠ‘ĒDnŚ RÄ$Ŗ6b“o@ĀŽŗę^;5Me’ōĮõ:„TŸģHå²TVVr ažT¶h‰„óœ5•µćx’ń$¢1LŲ‹x4>!!Ėļü."²Žh<…DR…ŖR¤qIE(&#•°ra8v¼Z ’P°«ÖĢĢ,øŻnƂ²łB¦“ń’8ŽŪtMI©ĶÓŌ…–ŗ6$D Rbl)ąĢpāžgļFAIĀ¢ QReĀ ōG$Dā2$YEXL!Ļ-ą¾eӑfé(€hBŖQ“śE“õŠø¾l±ąv9Ÿ+++cæ6€Šó†äfgåāą§G†ß‹aāŠJ”,(½’¾V·‘hĪÉW=Ż! €Ą©øołtĢĪ·C§įø‚”:²„ö×÷”°`ŒFcŚmwܶ|ŖĆą)J×äēMću]Gćɦ1ßn;VžųV|’'kŃšŃÆöģT;:ŚŌL—łāo˜²\f“w“iŸ}ž‰ÖŽÖ¤’Ӓ<¬¹>™Ž±ŻZ“/UÓqMÉ,Ža³ž ¼¼|R;§<™cöīœģcGC'’  Ė`Ɯéųöź0gÉ,ˆqŸł© G 9¹Ólµžų:޵:­F„bc뫉‡EąŃČ}}ż[>ųŻS§OƼu„šōŗR4tEqš\Zż"RŖŽ戢™Å܉“5_>E‘‹­+"šˆ ĻÜ…Ņ…%0™M `’}É.o¼Žž·?ܾ㭲„óū{?„龞88–€R@ÕtL˲<]üĪ/ž÷ošVņĢ­·>ž·mżu~A–”-5=r{’І&_ ”N§ ŗ¦f™33„¾‰Āé%ī¬Čg ēėĖēĻ]@$)–ö&ŚŽŽ–GBšæ'šŽ®ż‡žīļķm„‰D¼©Üųī·śĆįPīāYŁŲSć#iÉģl„Ā!PF:zśggŚŌ/žuóĖ?žųŪ‘Hō©.ē ›Ķn˜=kŽ0}ś Ęn³ćč±*¤Rj ””Ē`ŗæ2J2łŸm­­Žó +Åb‡<ŽŹƒUĒvG%©‡Šā˜ŗdĖŪo}ŃÖŽzߊ²łÜļŽ?mØv`ĮвihjŖÕĀ‘ŲȲˆĮ²€B^(//’MqqńjŸ×ūCAnS5Õ®ėzmŻŁóÆŗŒĘČDĘ_Ą† !ß[»~½»½„E€Ä¤l6&šŸŸŸ:2A]¢$å×ėėėī.[“˜ūÖµ98\甕f!Ć)ąćŗ3JSKĖv›Ķ=vč·DŁ^^^žQww·Įét¦uõ÷ ĆDŽ;–ųzCĀ !A UlS4=ņČ'ž¼åõ~ŸĻkyhͼaƛÆ·²,œ>S_]TPšL׊O‰āŅI’”R$ Ö$Sž’€,%’ėpÕ”ųÜéøµ¬Ė`Aq>(u{{>„Æ¢¢ā’rFéœņ&žŖ_<÷÷GŽ"ūóŽŽvĖc’¼Šéé€Ļļ“<¼O&£—2źJčŖßŌoŚ“I•ņc_ķŁ™0 #Ųõ՗IO§gs 鸜ćĀ+”oäæšū?žīI–a_(ėļķ}gOåį7­Ćł}ūö}Ķ#‰é7n456zŅbz\„¢:{öģ„ĪūŠ’£_ 6ē;IEND®B`‚cinnamon-control-center-6.2.0/panels/color/icons/64x64/0000775000175000017500000000000014632072346021516 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/color/icons/64x64/cinnamon-preferences-color.png0000664000175000017500000001337314632072346027450 0ustar fabiofabio‰PNG  IHDR@@ŖiqŽsRGB®ĪébKGD’’’ ½§“ pHYs × ×B(›xtIMEŚ8ž@ōš{IDATxŚķZyx\Õu’ŻūŽ›}$Ķh³ĘŚlI–%ŪņĢ’°Ä†“|MSˆ[NCŚ“Mi¶†%$$ IŪŠ8MI Ņ4ā.)H$fńŠ7Ł–wI¶µYŅģófŽzļéo$ېҚĘn>Źł>ż”'ŻūŽłs~g¹xGŽ‘wä9288ié€Õ«ÆF{{ū’ņłÜ#¶m“ćŲ”LNžtźyccćŪ_łT*µŹq2 “J†I®ėҦ͛o;w”’’…õ‹ÅbڲL™xŽ2'H¦iŹL&cØiœ¹ˆæ­•ĻdŅ·m› “hxg- ļØ$Ć$r‡^yåÕÆĻnė ½Ķ­ÆgLӔ™Ń„“»@'wRĆkÉ4M™J§MÕ3;»Ļ«œ——%““H&“æ­ŖZĮĻJ'o¢ŠX·ągŃHÄ’äSOßPSüʐLN¼„—ŌŌŌĀļ÷DdåžGŒŒœ03AJI= \ß»mW0¾x>ūąäɓČ岊®ž3 ƒō¢~,N~k```Ł’d½¢šHhĢLƅ¢zŹ3\¬ō= ųX}}ŻE-ķķÕµ.WßlÆįįóÓéԚB”Š_,)Imų§oŻķ™ß}nĖēóėĒ!Ć4É4M²m›,Ė"]× “³īūߋ¼~ĶŠŠR©äJ˲Ød84ü(¹”Ü{źgä5P©¤“e™ōČcė?ѳdytjżöķŪ›7椄RÉ;t½¶,‹lŪ&Ó4É0L²,‹Ž|€æaŊsŠ¢\źŗ.Šū~ŒĀ+÷ĮĪO@*>ØŖ‰Užōū«ž 011ńx`Z¦¦&ØŖv5c Nį9ų1p-E› EK€k3 Ŗ`ēŸØknēe™\.0³”š€eMØétś.\fG£_S­Š‘%+ż©G0yBĮwˆGĒsź9@wēœ_ÖÜ‚ĀČü];ō_¬m–¦ ‹żé7ޘ?~üĦ֩Ŗr”$‚kīW` Ąˆƒ+!sĘjŖ« ōūFĘR”LNŽ“hŃ„N$ž g*×F_ę»ģGĆ+ńäč"ģĢß EŃĄ9§L6ÓW—h® ų\åœ@D(ęX ė·Ą8 a½ģw"wG% Oü)ģRŒ+4sfā®t:}xժ뢌±% ĀŲ†r˜Ryć2 s7BįPgM}}4NķŒD¢÷s®’åŲ:łe<>4‡Ż{@Į1D"104G®ēœķŻ×÷‹™‰¹Ņ/Ļ€³"łóŚųÖm{W}ČÆū üG~Uń”‘\X< ߊ/#tÅ砐CB©ŖŖā ¹£ó )Yõ©7—׌ŽU aĄ²L;j ó³ż™±·š÷Š€Ŗ)ąÜ[č:g)Ž[’\iāź÷_»2—ĻĢźéŃ懎Š9 }}żŅqœ Œł–ü!ĒS€1@a ¾ŖˆTT€m¾¹µĮĪ3Šėŗ` ‘@§ĮNSXPDž§łż~ŸåęŲĻĘ>„AēAÄ*Ä pęķC€ćŲh ]b.ŽŽŚ·’$ō³Qž¬ " ¹o`E«`ū¢䙓Eg€3…3ų4Įā č÷-‡3~`ŚÜD%Oe’  0éiD–ē’Œ!oŸĄ „ōĆšCį ĮĒ+ĖĖ%„ķC[Å5`Œ±—_Żø¾¹„Ńq-2Īi!ÄCSSĖ,ĖJĮ¶Čæņ+p\€"õS’*oŖr ¤ĘwWĀņRWźĮ”Z(Ś (jøš€¢Ōƒ«q01į„ō"R”jŒ3P@ĪP†ķ8čŽÜA„ÓéŅ_Ž|ū³RR6eŒ8ē„ĪrŸg ,|łĶp*[ ‰ƒŹŹ³Óā[e„`8ė©?ƒ(L‚k €)å rüpÓĄŌ™°DÆå>‡P( Eå`^ŗc€ōāœB +‚y±›ĄŲ+ÆnüvūģYŽ"7>0Bg«Ė[®œ2™ĢH h°Žn`īVĆ €³ÓøĢüQI0X%ųļ“Bq{ĮłéĮH Ž…mš- ƒ«€C9H0œV Ć,aa諘¾Œ&&'s=K–ÆloiŸ˜°G‡‡wĖóāw}õ+¹ˆ˜æó*ȹ€4Śˆ,Xų#`DPą—Yø[öž"ĄÓ²@8"ĘĮ}yp`ŒĆĒcąŠ@å Ip]‰.@Sä*{lżæ}yv[«m2‘~+Ź’Æ<FFG­ŽWß ‰_{1‚Ö8T>ełČ:Jl—ZüTØy©`wØ”€ ĪY$OqKf@$! × āŹś' p»vļ~qÕu¾½®¦v8k–&ķßCē€ćĒ£„„eś÷t: UĀ.¢pĻ2„T‚©g4ķŗS_&$P ž«Ģ=õŪYÜhŠŹĄĖ\2ķöR ä$a]\Y÷$üjŅ™“Ž8³ńI'#>Eź¶8wŻąTüŹ+/j”Pąr¹ģƅBžØ®( V10-„ČŸæ +Ü—r:Åk1ā±x$™LöŽŪ84|ā{[vīŗžÖĻ}6w|ń¦_æLNN¬ ŸPUõrĪē Ŗ V¶˜ČfĮ+*Ą8ƒ¾ž#ŠĘ÷BåÜ#FvŠ…‚Yų–L°Œp‚ęÄ@eå]W ą6撦o`(99D“*8AäLc`¦eA× 'ĘĒļ_¼xécæŅéŌ§żžĄMÓDDRӘĢēa½ų"œŽ^ȃ!Ą, Œ1°pØØO4C„”u$įg œJ ¦!X&Ą `Œ°Ł×ˆpPWl‘ƒRHX®‹é",Y…”u {AAcŌ:ŠšęŠ,®y?Āj ‚ŁÄ9gł\Žł«E=‹Öœć㨯Ÿdjņŗ` ų/>Ÿ?*„ Ņ4f<õŒ‡‚ܶ žÖV(~æēڌyłš,8÷˜‚ ˆö4ŌF¾P-x™ \ 8]@6įljp4ĶĖ‹®tQpR/–0¦AŒ¼½`ŗy8dx!Ā*s¾n§‘7rh ]€‰æĄEµ«!™Cš¦±L6mō÷żōE^ņŻ©s‡įįį7÷€L&½6Ž|BJIä÷³Ņŗu(­Y­T‚ZVZ©ÆŸ.R¦ŅˆĄėź^WßH²Ņ9Ūźu(Ŗ×żŲ•@’10ĄJĀAŚ“0¤ƅŸś“rųŲŅ€)ņe°§Ų•`Š ‘$ƒėŗŠd×4ż-V&ž.,RU•ķ?Š÷ļ‹.¾€ųoC X,W/æŒüĶ7Ć_,BółĄĖ–&)”44 ĢVg€Ąėź~õóhŠ| —ąTUPŌĄ+×V@—Żqa’ē †ČĮ•Ųė¾Ģ‘&Jnö ąĄ„éēTN®ćĀ/bųhŪwŠSó>˜f ÕÕ5‹/ß½k‡{śzõ ˆCinon†ģķiŚt’V„ˆ @ĀRśŻśõjœ(…QÜ~ *k{Į+zĮƒż`§ŅĘwłÆv?ćÆD€+]Ģō·¢>4 ‚+_©¾,€7 “ÉÜQ]]}—Æ„…jž}–Y›6”ų•Æ€ķß-Ą„œnŽNÓŅ«i§ž•=A•'ąĒ¾Ŗ6Œką+»®Ć8DɆRŗŠy eA”Żp}Ļž“Óś ‚$é…ĆnKå ˜Ž‰™¾łø~ĪŻ˜æ$„d›6mz¤£k®FÄé”žķæļā /¼æ¦¦v6bĮ ³vļ†ńŠCpžy¾Š ؑēåį#‹ÅE)s‚Äøʆx'ŅĮā•ļ’éb0‡[Y––|*Ą`¹6 ‘ƒī†[õ,ą›c CęąHÓSS]5!gCø„eńßNJ7”£ņ"X²DŲńĒF[’ų]ė}|s¼Ŗr²XTʎÜģž·\pŁ{µm/żĀ÷čśõŗų¢ æT[SŪŹ9'( c>¬ķŪįīŽ Ń×K&Aŗƒ%ąõuŲ0!q(ڈ8gP5P’µŠo”­£ AŸ ĪŻvAÄ \Ą•ÜŠ«hj݃¼;ŽQ£¶Ōą•ˆŖõØÖšŃ^Œ–šĢ½Ž“ !Hø.łÉs?½ļKw~ķ¹®ĪNG2wR‘ČīŚ9d'ßÜ.æürlŲ°Mõ¬¶„ĘæsŪFß]k¾~Ł•+V|“qfćū£ŃØĘ9÷l Ŗ ŠƽóÄ(±īė߇«[PÅK“ŠŖ@ hH+ŒU5€‹W"ƀ+å4Ćțśø _1 •Aßt¬IHrˆ1ʄė"M‹žĮŸ>żĢ3O~ē»ėvĢÓįJ‰”m»Ł¼•¶FŽōÓ¼yóŠ××wv•`żĀ9¬V©ōOžLĒGż_žź__|ÉEĖÆhhH,­ˆFŪb±X¦iŽįÉŠ8»ūqƒ”rÖ8ó’±pØzd äU’ŠŃŁ‚@¹’÷*KšB ĀDĪÄĒŽŪŒ–š Ą¶-šL&“ŁlvphxøwƆ—7®}ą_vĶéč 0P„y(\§āøµ÷Ą żZš”šźŁ¬®&ʵPĄ/ø8zÜo–ŠĮ±į½‘H$”Må°öóßFĄDEČ8GˆYØ ©p%Aøŗéž:;aŽģ]U82%?ߛ„½ū¢K¾ŃwģH¬«ķ­ß)xK Ž GĀb?ś×ŸĄ§łß@x` ŅȦs0m7Žŗc“łņŒ½. F“:žlE+ņ%¹’ć–œ:@óź ĘŠT<¾y‚ˆÕÖŌhO>öČKŒĪ+••U_“DōÜ£?ƒm8®xcaJAWŲøńó†ĻÆbx2Ćva;ސp\ Ó(Z.†' ŠT†O^Õ ÓvįJ I4Ķ`Œ†ķ" )ųįÖQ€= |r,y¢ŗ³grĪ<~ö­ŽF*|œs¶į©—”) Š…DFŽüOHī>óĶO¢ŖŗŒ1–‹’å¢P²‘Ó-äŠō’ Óra»žÉ+B*¾š{ķ^¹ģŠr©ėåĆŠTŽ_ö„Õńj<ōķo’‰ź Ļ9³ZŗP‹ß"„¤-/n$c^žÖsE8¶AÓ4Ń8'Ļ~óSE‚ӝZĄ§xs°éœĻąõū^9ģńGČļŠ  `8RB7\Ų®(ß*ah 6ō„@õĢ_šĒ}Ū·ųšŪZł9ąŽļüS(Ž,flē†]ЦŗDņš’l:ĆŠq퟿¹m5•#™œĢ8®"BeŲ» xĘŁ`yj Ŗ "8®ƒ‘Ń‘qĪ>¶¢ ×_܀dŽDް!$AJ 4•cėŃ,TĪX¢!Ńų»×^Ū®ŖÓĪūöoƕ—_yƒßē‡ū·öŗ1éĀ“Løjõ |uŻ_”{YŁ–»vnlmm[‘N„tWH4ĻØšfƒ§µ¶ "Bk¢ ®HNNŚs:ę\¹õµm?6,óš¢ō‡«ÕĀr\č¦GH ‡ĒtXŽD ćoųŠ5B‰ŗsĄüī  G?(„¤½[öAHE£„¶E³°ś¶ėš'žWüŽ„$\“ćcś½÷ŻwėŖė>ņéH<ž’$öøBbns HŹ×ĻL)ŠŁ‡+$ EżHm¢E^qŁ«|ųĮUC#CiĒ%¬ģ©„µ“½¬³ėČmHIx­?"¢ööö•{öķóϬØ<+Æ>«ė$Ŗ¦uK)Y0Ā'æöqĢ{W·WōI¶å°‰ÉqėՍ›žł37ßžhSs“ŁP_;q"ƒ“eYĄŲÅŻ³jńąsŽD§g RŠÅ"ę¶T—ļ 﩯«3Zf–~šż'ž¹ł37æųčśG>õ®eļŗ½aF"²Øµ’–ĢŖd gč=žŸœ…‚ĮŲ„@ÜWGūœp@&›žwĪ9Śŗg”sŃŽ‹¢®ćh’‘ƒ>üŠ=K.|÷ßóŽ›Mcä˜9==™t†GNüDŗ..īi†®ėČé&²ŗ…¬n!_4‘ĖšžÅ³ ¤Ą–­Ū6)7Kłز}“ŻŅؐ’Ę7ļ¾{NGgĖƏ|ļSčĶ p$”»1J]˜ƒ?kļšęš8«ņž¬{-Ū¶Ü_ƾ&›ĶŪ»oßK÷Ž’ĻĻ„f&Éd–Ļ„Š9sōšyśkddˆŖć5øż¾ēńJ_\ńŒ ]ĖŚ+pĻ-Wcbró]°lÖģÖć%}ņäTėŹšŗņźŖ``÷¦ķ¶īކ;n»åšī®ī÷UVTtōöæzó­_ü‡`80&eØÆw‹8't…EųT%šŪŖźjk@ :ŗ0SåEg÷¾Cæ² ;p°ļŃę¦Öė÷a¼ę„"Ž)YŅqϧ/ĒņłĶ“c׎ ūŲ'ž²"čß¹c{ńWķ³tÉBęŲLåĮpšŲĄ€?›J;»»B¾°Ļ6&śz_3ĪbčfĆv©±3F³†QdGåĮĆY zÓµx ‘h¼ał‚4×ų1YņŒTUpłŅŁ(š6{žłžG#FѕÖµĻŽ½Ąę:³ÄX"W|~?wM)śönµµó09هßH9ŚdH/źņÅ-ū©ūśµ4ļśū裗zI×uyąĄžŒŖźéYŗ¼6TūĶ»*ūæśńOŃ?xäV)%»bYfל‘Øāųķ‹ēūł/yW÷\‚ ½”ŹŽ®räČ”zQ—»öŠÖŽ#žõīĻ+ā‹ē/»0ŃŲŅüö».?%/æš4öīßóG®ć°Ž–:Ģok€$ɞzś?ÖtvvøŒĖĢšńowłåK?’ś±ćƒtüų1zņ©>žhn_ҳģĀó—,`ēū[Ų’ €J@­éčźö‡BSÄÉŻŪvŲoęĶ` G‹(®ń)$™&{ē®n{{;Ž=ŠwäyGĪ›ü'Ņ‘É. É:IEND®B`‚cinnamon-control-center-6.2.0/panels/color/icons/16x16/0000775000175000017500000000000014632072346021510 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/color/icons/16x16/cinnamon-preferences-color.png0000664000175000017500000000150514632072346027434 0ustar fabiofabio‰PNG  IHDRó’asBIT|dˆ pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›ī<tEXtAuthorLapo Calamandreiߑ*ŸIDAT8u“ohMqĘ?æsĪŻīYŪXöOžĢŸµ™m”Ō(ź°ɋQ^x#äß )Ś+^H!i‰¤QŹŻĢVMf\„)Ś—;qvf÷œÆw÷Z\Ļ»ßļy¾OOĻ÷÷S"B6„Ū[×+ÅuM©ķĖ‚²éT6ƒp8<ĶČååĀ ŗ¦ÓŻóŠNz£ +¬5Ń’ÜļlŪćzŽ©4Q9»*Yn^1Ž6‰¾Š ”rSS XĮfD!Ü{Ų–ńˆG‘xq]W\וįa[Āķ!7 åŠŚų8¦ßÄ>¤pN×#?3÷#ŽW:‡šøŸßo¢”Ó42hėh«M‹µŅ¼X”‘+cŠ•ŲĢ÷dś, Ć7źņ« @_j-Ś¢iŚĶšź:£° PéušŽÜÅ|…W‰¢<śs”ŠØdÉċʤ¤øŌˆ} ¾}ß÷E…ŪC²øa)Ę„Ė8gĻži·ŲĘ·ä=į½utśDܱ3ÜŚ)‡ LŚG×£NŒ±&’Yå;»‚«Æ7įŽYĻpÅnČ{ś—"5£Śīµn4 ­„¶¦>Ƭt²ś1ō“ G/2Š£wb—0ÆvåE~v®¬$ßo’ś…ēŃ^Ļ;Ø­h ^óF“‹#Ńg ąü‘śc”N-!įĖ#1ō“² ~¾9œkķąY¤'éŗÉÕĖ­•g4€@`õ‹t°ĮŸ)Ÿ^ʎꭙ°»VUR^ä'6ä¤ßŽņ)³ė` ŽćpāVó?}äū öƛ“ŅŒ8ˆˆB„øŒŅõvœHŸ««ęŗŪÖÖ냟cD¢½®ˆhŗ¦·,ˁ’¦™F‘… ņ}99T‘ł_hélÉjėl¾ēZ‹-=ųĘ\kĮā]Mf&kXmŽŗO«—’ōxī-8ϵŠs|‡A0tv1ŲŽÕņ˦¦&ȃ²d–Ōš!0: u“V‹Ķh¶Ū¾s9œœØÆyņŌé:·^§?Ę3œ­;YŻšMäŚ)p:›œ |67ožLX,Šž€[‰D”‘„¦•qłÓģŒÜŪų±Ś½y t©{qę‹ĻGF¦XĶ;õz!7/g®l³ŚA™†ŗOjǽżīžX·ńŌ  W zJ“8¢_īä1;É*efäĢä9Ż>UMĢ—L2ćg‰č"`L6KµY³s .\(„÷P\Š zF‚cKnźuŅį˜:•pi·!~üeŒ’9††päĻ—r³ēp0m¼>–œ¼ż’;‹Ęä!R\§²f>ź8Cht•œ¾)€¼¼¼cxÅćs)ŗĻØcˆW’ń}aŃs`Z`„A5ģv+zŌ·šÉČF„µ^D†C~mķ­QWŸēŻ”įš„›¢  +c!ŔŻObĖ‚ęn„Zł4L ŗ”ĖĪ<8!ŹōE@äg€€C”ü+Œ ųžhEłū»ZėėūoĄįpØ 5±¹ēāłˆšŻķąsļŸPķoAüųĖą &9HœO­›ą‡LćdV£¹„)z¶½ćՑĮĮʝt³_‚ęęę¢K¬"„{TÓ“•:€¼ģ|IL„ŪW 6rYEA÷ŠzØ|ˆ¼­B/Ę5?Ą¦s Pž5¢ ACÓéXx4Dx^×ŽæGضæ¤dCļuõõõ¢d1¾F-±˜-Ōj±ĖŁ AĄB!ŠŃQY@¢öEhīy:øé9ˆĶļ×¾ C̃8 #Ėų(ģŗåPāAx,ŗTP šĆćuG\®‹„1&,\VR²)\>ŒLVżƒŽųXnö#?†ząbµµˆ“¶‚Ųķ€Į0A+IV<č= ž  AÖI3£Ęõ{h,ˆÓ(†Õ>Ģēćö¤ÕX^Xjŗcį"ŌØłžĒyĄ¶+ ““5ś²gĻ™.užƒņĢ3`ŠrµI23īj«péé!PfZqqI.äށx(†c®+~ č…+Ļ'ā™ür$Eēć£cGB„O–%1ĘØ{»ßļży~Q‘^޳jy9āµµ n7_Q3²ŠfĶĀ€¢Įs! )lR“b Ö*„Čī+ $Ø WH)…ĻĄń†ÕĮ”£‹-J0HcØm©µB%£léōéiŗdū4Ål‚AŠ@LQ Y¬ØŖėDwū%Č6zID£0 9Ó ™%„£ ä§Ė(^ĄaœĀĄK° 鹘Ÿæ/ö&Ī÷œ×"ŠŅüžį#/}|šhcŒ~m öŽæHÓāOŁĢÖU„'3ģV;[ą(ŌĒ£Ź_}žĮ 9õø‚¹čŠpH¶a–ŒxbbŹŅl"Ö-›ŃPSW­śż^NÓąņł}5Nē…ź¶Žö¦Éäź­©‰^iĀ/ķįU7h"„p•*¶‰Fń7<§ÓļżĒÕ␖•†Jļ84 ų†¬/Č@·o¢o|#ć(?Շ +gƒ2Ŗ¹}ž7÷ģ­ü«NӆZZZBģšÓoŅQMMŽ"ĖæpĢ] Ū[öĘP:±CK²ĖKīƒö•ĻŹķYL³Nō e@»;„#gś±tq±˜–šņ䦍š››G®-žŖyÖjKYœąÄ§@5Š``¶’Ł£ˆh_÷+*+ĪDŠÕˆą˜ JN:ĄtfĻŹ@˜¬Ī¤%Ėfņ±h¬³­ć\÷MĄź‡^±s×Ī¢ŠšłāŖćµMŽ@ /Ålö¶ž>x矻ö\r]¼ķūwvsbķŠ9čéś<Öļ÷Պ„ mŽüŅ(€ŸnŻŗu›ÉlXŪ×ēkisvJ‚Š7Y-0Ęni½ńĪŁoļŽ„ØŖŹźŪ½,WŁĪ7_‹®ß°žq\>[neŻņŤlCY/eōŲ±Ŗ£±LÅяŽØEitž»Š4ٜßȦt7TǵŅK.× .Wß¦ąšš‘ź“õo %¹n9‰ŻŖd_]øĀĀāT””šSĶqŻÅäm’ˆi„L“YkIEND®B`‚cinnamon-control-center-6.2.0/panels/color/icons/22x22/0000775000175000017500000000000014632072346021502 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/color/icons/22x22/cinnamon-preferences-color.png0000664000175000017500000000277314632072346027436 0ustar fabiofabio‰PNG  IHDRÄ“l;sBIT|dˆ pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›ī<tEXtAuthorLapo Calamandreiߑ*UIDAT8•kL“WĒ’ē}_Ąöm_h …ZuE&eX¦x™bœ›ŁĘķ‹ĖLÜęmdqɶ3Ė–]’M³‹Y2nœKÜ"x āä>A.rӖR …R.½ŠėŪ³LB¢äłtĪ’—ó<Ļ’<‡PJ1×*¾S,DIaX_bYö77ė;œ»>×=§3ß>,)P(”[ׯŻ­TØöš”'ęә}ć›7ƧF² -a?-eY–ćb0“ö¹l!2~щ§Pżw•ßėÓ ‚fŅōl”Y!‘^ČŻ–ŪśDpYYŁb&*Ņ«]ø˜øŻ.æŪķāĄµJ½,m‰‰÷XwAžŌ5tY“ž!ūŠCčä2AAj6›ĀAˆś¼—ó,ĄÜLM8ńUu‚&’Ę{%4l3^ĈӹR©P!É X|"†Q!†QĀ ū}“čóMYvīŽ- fsrVʙ-ÖOKW'&i—,ŅEE+“ %"ƒ !`ü2ˆKxōÉć n0„Ćrž=ÄGeA"å1"Ę3ß¹×֚ZW[_i4%Ņ“J„jWZrj SQšł‹p·¶‚²,ø›Ą¦ŒN#čQ" "š$Ć<įĀĮOAé1čx#R—nŒÉ[¹ ·««÷ ¬aūHye‰kuÖ:9÷Ż÷N7R@”Źéœ4Œh•ĶÉ@GĀ&Ł:Œ‡¦]å`JœœīQŅ!l–EŃÕ¢‰żūl*R^Yņ#/•½µ\Ÿ!‘ö>@ø®ā½{ ¢ˆ~]ÅX„ “Ż =ø(?¤IÕp07Ą)²5ŠĒn†2² 7ŹKż«µšĢĻW HSSSŌčŲš^†Į—r¹ I×gš±B®Ÿ+EG}'C _˜€*³i&| ĄZ½ —«a¶”±©~Źf³aŅå9{łZɉšŠ g4CNWUUżāp:o'Ž9³‡:P[ŅA!ŠG$v:`5"V£…H)J[ģŠ%Čą“Ū"–žžö+•ļ±Zķ---“”R:c·y!”>£NHBŃékųšLz±qĒz“ŽŚ{š‚! Ž€0‚KµV$ė–2˦Ē¦ęęę śßŒ˜'ŚT[y^¶Ü·Ā14Ч )8ųõ~¬Žš–a0:įĒ2Č\‡‚ķ©Šk Žł0āeĮó2b`±m¶gf…Ó„R>F™Ø@Įńƒˆ¢`¶˜ÄhY›©_ˆ¶v¬J×Ā1ź@gg‡øĆĘ¾bŌ€eb…XV$ČPü88D.ö÷÷}ęõx¼Ī1' …&ü~æÕėń<»!39ęÜջؐ™Œš}]]]Mķ) ! •2!bµösmķmeO|Ņłłłƒ”Õ>4›Ž6ŻmŽłÅńVŻoļŽm2›č:ƒļęg#KŸ³ÉDnŻ®;rąķƋģC¶œÖö֏kk²ļ™zfƒÉ|_әs§¾‹UXµfA}Cßd6]ųõRŃķ55cséø¹6 ģ§ڧģĮ+W‹ßt{ÜWKŹo}ÓQ[;1Ÿ”Ņ’ˆĮ`ąe9_ü FŸué€ģ!IEND®B`‚cinnamon-control-center-6.2.0/panels/color/icons/256x256/0000775000175000017500000000000014632072346021664 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/color/icons/256x256/cinnamon-preferences-color.png0000664000175000017500000012717414632072346027623 0ustar fabiofabio‰PNG  IHDR\rØfsBIT|dˆ pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›ī<tEXtAuthorLapo Calamandreiߑ* IDATxœģ}yœ$U•īw—ˆČ„²–®Nŗ¦QADlGńŃ*Ž J“āŠč‡Į£ØM·e’(„š<ł|Ž;ļü·æPu!Īō4åsss=/ Ė„](”’ 5óÆ]’N?å± @”bןя *»?ŅöǁėŗXµjÕ_vŲ”ż$£Žė^,iĻ čné@—ÉōōęŽć®0Öhļžū ·CÖ=‰¼€Ųś#zŪP)}½å8v‰°ę²īŪßńö7*©¹Ī Ÿ¦=/ Ū„]&JŃ÷SJć9żJ}Ę.!*vż5e˜  Ō&?‰v…C†4^Ą‘‡v8!ʤćĪk/`]©—čVé@Éäää1Žć¬µÉævīææš?õõ‰å½±<„»P)}±åxvFĄqō÷÷Æ8÷­o;UsŹįœšyĻėUv±ō ‹„|˜1Nė¬üPŽõžéGbŸĖ#ؕžPaj?öžMĻ€ēÆ=ń­€rŒąĢöźŗYzŠ%²cĒŽ,cģ5ŗź„ ,iĢ’Źæ/±ī‘²SšÄž€žœ€™ ,”2ń-ǵēpĪqŠAÅē½čŧ¬”C)᩺€&'£'Oé@—H6ė½›1ž%dńųaģƒ)ėn@ĄŽ›Æ,~ :ł¹–‰Bd ˜ń2ōuÆł«·„p@:uJy&Sf•b‘®[·®éh=yŗKŗD”o15’qŽͱ’o üMŚ­4(  #XCI’$ jÕÉ+ZŽmøĪ9ĒĮŖU‡ž9%ą>”C§ĀļŸžfårYcO/ čé@ČÄÄÄĒq޶­æ”²…øÆ–>§Ży›łī°²€ öp¦> >ݚ4iFB8ēčė+ ¾åĶ’|B§„p^%<›Ķ²^J°ū¤] œÓó !1ł×N”¬ ¬üw:ļDńõ—ōķö1„” @X{ u’QøĮ9‡ć:XūüēŸEIĄ ą0Fyµź°^J°ū¤] „Š×iāv$’*„ÆØ[™mØÄź# ĢÖ±§€$c°0ńé–1Ų)AĪ8V®XqŠ”QB8„„»nYd`OŗD–ōĶ"‹ČŸzl{+ćććĒqĪWėųæ3łWŸł–®óo*ü“Å·ÅV~‘6Y.ü¬-DĄ9ņ¹\įŸžńĶ/ CŹ(§ŲĶC—³²?²d`||¼85UśŅŌŌäļgf¦ēgggf¦¦¦vLLģ¾q×®]>“yóń8ė¬8Ś%„ŠnøÉŽĆ’9‰żI¤ˆMä_å. |żéO—õMŽ—ŹŽ/̟źfæ0ŸĻŻ„Ļ-Yę+5%Pzą 0Z!Ń,?’LüI‘€–:MØW¤Ņ J‚eĒ<ꞌĪĢ@l4(—Ėųéõ׿ēņÆ|ż€V ń+ŖS…Bć BEa;vlżkƜ7;ŽóRĪy?„ ”QŠČ£2 ¦ŚeÕz±”õF•ŹĀŽŻć»Ī¾ą‚‹ī,•J²X,J–t3833ӛ]×]å8nĖź·ķÄ4»H@@B )Eį½ÕjõŪ·o’ÖÅ_\z:€Įäääd2Ž{Ēc\_Š”9ÆĻżåm ʒ)¾©ńķŜRĘcŅž€”@fłŃ·2Ż4Äl†XXXĄƒ?rćæ¼ē‚*ŠŖ$~Uq^Éų~@°~żz?¢¢lٲ%ćyĪY9ŪqœS9ēYĘĢĢI=…š‚=G¾BT«U,TŹ_ßś?/üųĒæ¹¹ææ!ęēēűĒ+– t-LNN^īyŽ9žēÅŹoÖ¼7ēd\<卓B@ˆ0 „¤l47ž·~łĖ_~åź«Æ®YØü]Ą™™éžēĄ¹Ji|~¶Ģn9¢rm2ĆϚōCضš ś›”$)ōļBÄ=Ėžń›Ō&ęZJ)Q­U±k×ŲŲŁoyĖ_K„j„±Š¬Ņj£AjœĻ6žXaĄĪŪĪ¢”æÓóܓ(å®n‘Ī`z&Ų^a|źV»Ś±¹ĖŅĀB„Éҽoųū7ž ‚ ¬V«”^9yT¢ĖA +`÷īŻ'e³ŁŪ=ĻcŽćÄ–Żœ‹BkcL±hˆŲ3R"‚šļ7®/•ę?ł’xöżķbAąĪÜÜ\Åђ8[&7Š ŻōĆ*걋}@Šöz˜:ówi~¤© ;Bó©ķLP«Õ077§.üą‡OųM“Ģ0`Ė–-+=Ļ{ēģMŽć 3Ę@%­Jo§NŪ]Ɩė!A`n~lząāw]xŃרē5äĢLŠh4‚„]™pēJ¦„eœv]qŲ«ā†a˜ ʘ®uĻdįyø®‡L&›ķėėŻźÕ+×_żĻ6^qÅo?üšĆ3k×®eėÖ­c0Ū€!.•ĘO'„8é¹’é7ØŽ %&$dŠÄžƇ2ۘKfÕč÷jÓßoŻ.R¦(@^uĘéė„,¤”œ3“ ˆJƒŸŅk³sēÖæ(ģČēsļÉårƞ—ēeń2pŻ(Œ‰=}σ ˆWIŽ“ŲD«Y.ķšÕ«/Z{Ā ¹µZčws¹ß±cėʔ§-];vģXĘ;¦™ģ_³YŒū‚ čøž Ēq‘Ėåśā…¾oģŚkæ’ļwĪ9ƒĒw[·n=+J/>•@@żŪ[i·ŲGmęŪ©)æö‘Uüßā{ˆĀ UИ’Ń"cŌ„ĮG¬^}*c’22JwėœÕėZÆ×Ÿ*å`;vl{W©4±³Æoągł|ž4×Ķ0£ų±ŅGG“R" Āų¾īI长Ļņ’IP2^&ūŖÓO?=`,“ÉųžRŹ`›7o¦ø¤{×Kģ:š<žrB±Ć~Ż1!„óĄBąpŁl™Lžē!“Ɇ†–½ėĢ?ÅÖo¼ž²sĪ9gxÓ¦MO9PŹÖ3.l³ 7R”åZaC |„-uå+@łJP~0(?$zæ”Ā—ƒšįh›ÖJ2 „Ē ÖīD3’Å01ö²įįć„d”†”±€2Ÿ×Y__6 ņ$-$ßµkĒ»Ē …žĖ²ŁÜ!®ėA+¾ĪyŹ–ŅļłyHŽ”H7¦yÓk/‹Åóf„p<•˹œs>U(°u£Ż»^b×€”² ­]ēŖ8é×0ućGQ}č&ČFeŸöÕ Äa‚= &“ÉD@ēer…žw¼āÆŲrżõ7žēyē·bƆ |ķŚµģÉĮŽ;²œó£Œņ·½a 0¾Ōč +€Ņ,÷LäÖž=h¦õ!h“.씲Œćø~üćÓŲÄŲæ¼ķßvƆ bķŚµrżš5{”Ņću˜“ę9Rćš3äÅų§ ¬Ķl„owPSo• H1Öńz˜Ł…žĀ‘R2ʤdDRxķ£‚NM­&gu,FFFŚnæmŪ¶c³Y÷Ŗl6æ–s'j=–(>!ˆź3Ś÷?l)lž»[Ź×c2ŲIj'9ĄÕEODA(Šį̳ŚīĖÜ' ˆ0ĝwÜu“’ H*•bÄTҾOŹŚÓŁ#Š=ݤ«ĄÄÓRŹ”’'Ł-pŌ©Ø^ Šōj8)ݐ ˆķ·”¾ķ6Ōnx°ā¹šŽ ņö&°¾ā¢céœsų¾JéĮ«]=ņĆžčö»ļŻųöĻ|ņ“›Ū“I×­“£££ €ŠĘŻņĄB_œT€œ°śzŠ.Nčģé©L„JSæ÷!üĶ`īšdJÅŻ‰(„ČårĖ•”T2F opV•Œė˜Rޱ±±!ņ‹ł|īM®ė2mńy[WO¢ ˆ*6Ļ]‡- 7`Śæ„z.ź? ¢©dTšD )pPīÄ6×#"•Ī-T*•ߎq÷NÅ9į‚„@˜„(EÄGųō•®"/Œ²’kŪ"“ 2GÆqr:M†¤&#ŗdÖ!§€½2€ŽÆ‡’ßĀŌ'ŽDé+Æ@żį’Žć˜„1ačĮd 2™ śū />ķä“7\}õ•Ÿ}ыž¼o ĄMśmˆĀŃŃŃ „t€ĶJT7‚@¤ęš§®ĄbÕęļĶ™Ŗ@$}•„¶…ŪŚl“x`/ćxās†™”” F9÷Y6ėSß÷Is«°±±ē8ߙĶõ½%“É2×Õ‰ŠLī~oŅwÕūpĖösqķ–“ń»ŁbVżĢ Į Ī)øĆąp Ę # Q[5J((Óc?rš•-ū޳LR! LMM=¾č`ŗTŗ ŒT*µļ™z~ =怯>)5+ĪĢ—g‘Ņ˜•ryōć˜÷ ŪnCł›ÆĘÄæ=óæś,TŲXtLģ%µ²Ł,²Ł,<Ļs†‡‹o’ŲĒŽ÷Č>sé«cĪŽl–µĖ<ėYG€.šž«ü&5߈)ęŁG4Õ8Ä|f~(Ö6tܖR Ź(^šü'™¤! ™pMź.ĮO<üĢŻ»ĒīĻåņ—g2ŁA×qį8NTugұ{¶ś Ģ\‹ėžųkÜ4özLˆ_ƒ9g‰Ņ;ś•q=6])=Õ„A[…ž¦ Oęœ ųA€mŪ·Å5Ń€€ŖA©Ŗ0¦ P(t•ėo¤+ࢋ.Śˆ°$„Š«ćځ@ö¹Æi)‹5ᣉ7ĄŒ`ĆĪ6æžĻ?€Ņ憙‘ó fwt—BLŠH\är9xž‡\.7|ųk®łĮ~pł‰‡’w]—›$TÜ ģŽķÄÆmŒ\Ēіd½ßĆćiœ›K Öe摎ŪRJĮ(Ć”‡¬|¦”ŒJÉ©# \—¤Ńh-[Žt^_ߊĘ\.’'R|;o±8æĪą·ć’†k15²ŁRtęR0ĪĄ™©QŠ o,?”ŃTqėɝŚrūڇaˆz½®®æįē?„( E©”1É|.š']׍ē‰tt)ŒhŌ7k/ s;ńõPŌ‰§» “ Ģūų',Cüī›˜ŗōY˜śę™§·vŸR*PJ“×#Ė— æį³łšś÷æ’żĒEwĖÄõ„šõtޘ(lݰ9ĪDĘ,y؟Ģćgˆ…„Jģl{žśļZᆆ†Ö(„g‚”2/ éi§Öwó-7’d``š ™LÖK+~2!k1½©†SøuēųįÖÓšxõ*H^w˜V|‡3ķī3NĮåĘā“hź/mQ~DõG¾®õ2Ä ¤k &&&¶=ņč–Bˆ”JJ©d!“œū’±²*•e±Xģ*Å7Ņ•€‘U«Õ®²óĮķ€f ĄŹ’rWŪŖd֜Q ›(ŒA6ØGnĄō§Ēō5o…X˜ģ8L!FKXąŗśśśxыNŗż;ß¹ģü+j.gƆ œRr,!:FÕcmaĀŹ§g%ĶaĮ^‹6ėÅ\3Q† J6% Œ”Pč[Ķ•"Jq"… ļ}ļ{_pŽyļøw ą•®ėF$KYżÅ?UÜ5ö1\·õtģl\ęp—;‰ĀsFĄĘ(% ,"OĶĢHÓ …ŲŖ@xXŽåŁćZŽ»’a€†ßĄ¶mŪnÕ'J„T†‚ɐ Ńh8r!“‘ž·MµĻq<ż„ėĄøX—^zé/…ģx±-xÜ«S@²#¤”%„üŃ+7ļ 0ėä}ßÅ䧎Įģu@Վc6“Qżp’0—˹‡¶źß®¹ęšėĪ8ćŒaĻ[åPJ2ēB¢€©}ÕT#ķ£Ūé½żµC¶ņ+¤Ā&3ĻĄÆŽžŽ$ź6¢ „( …Ā Å‘RŅĻ~źSļ^·ī“õõЦŸ‰õ÷Äī+bĆÄńĆ'Öasż» ŽÆ?Šń3?$jšAāŲžY{=<éz­„Õ¬ČœŅrl›{ ƒz7Żü«Ÿ* %„\Jį!2™Pxå²Ģd2 ]Xt!D¢fff¤ļ润vŠ÷Ā7AĀĢļnĶ…›ˆ”–[mHCX€@õ«! QCxĒQśä1(’ĻgÕ>)$„D£ŃˆĒjfŗ®‡ĮĮĮÓĪ;ļ¼ū®ŗźŅæp·Hi’h¶Aż”č\-·ßjŸ¤4aJa=!µē”5‹Fś …üé/{Åź«ÆųŹ·ŸóœćĪĶēūXkéībV_į”ékpķć§į”ŹW^Õ®>,¼!ō8ć›OIĢęSŖ-æ™ĢDšö­›ž(ŻłHG¼¦õüķ¹a€É©©± ļ±ū/¤ąR„”+|ßł|^°Ūā {###šżŚwuĖÆĪ@ūYž,}ӁØÄņxIņcB…ŲźE²3“‰0äp29xŽ‹ą®/cņ²¢¶é†Žć6ÓR2ĢårČf³čėė|Ę3žu ēœŁk’5‹“IĪž¤ÖvŁ÷KšIDƛ˜k'§ŏžhұŒ1ds9¼÷Żļüö”‡öģl.3üö÷:ÉīźF\æõ,ü¾üEHg^»÷&®ēĢŃŹ® =ķęS)=!±—¢ļ›ĆXē¢”ŌŹĶ1€•ł“ZĘajĀ0DąŲ¾cēm@"÷_H.¤rC‘‘”ēy²T*ÉQ’wņ] ŅŖŸ’ü¦ !|)©8Ļ~UŅ쀙’N&ćzśHóĀĒįšRˆŒĄÉĮÉ ‚2NޘEõ'ļÄō÷Ļ阔”)¢ń<ŁlŽć³7К’NGē™&üģsy²Bšõ'ŗ.RĢ”ł9—JB*]ģpł|žg28|ļ”_©w_Š;J’!›FĘń÷–ĆuÜ(Ę×®>£ś‡Fn>‰Ż|@'ōˆ¾q©č‘])ućO„€¢ógĪ]oź:~}Ūo®'"T„JI#÷Ÿ‡Rxa(jµšš<ÆkŻ K uĶ5×ų¾Ü­ojgč;é-V•›Ššŗå®YÆy/ĘŗÄ5ĢĖĮݬΐt‘Ż|3¦¾šŌm?x+S@ć8ń”c›…nŁNΤĖu­ń=%!€eˌ§dtK†³mN$ł¾™4e÷g\ĢźOÕÄŪž;żA9"מĮa²Ī0\ž‹b{¹÷4mķ#Å'±Ū–\C»Ö_J*¬é’ė–ńėo ‘fff&}ŪOB”TJʄtT(„ }?+ņł¼,‹2:Ļ®nŒ‹ŖŃØ}æŻl9[ųš`čČ8 hć ŲX0eOŒGąeAóĖA9"¶ŁĪÄiD•k’ 3?ü(‘^hƈ©°•]J{Ķ+aˆ©6 µßbé“M YN»ż¤¤k“… —į¶Żē#dSŗx‡SšØPǤń‰=5ĄāBØˆļ‰‚sKłŖ²XŻ’²Ö”›É?aˆ†ßĄö;ļŒ>W”Rɤ\pŗ”Čåa:‚ņ, IDAT„’ŗRł.ŒŒØG}ü;a¦x§9ōī³’*&ĢŻ’hr;hP Ü6×hŌGĶājś_ö’ Ø?Ö+XÓEn'õ  ™ōg@ŖØČ†qHżšŚŹß{3fzѓ;o9½Ń/q¼ęæc””E,ZŗmSŪūqFŒ»żļ÷“ߥÆĘŽŽ€Žƒq§ōhT±§Ż}£Ų†ą(8<:ÖĀš·ą¤ń”ŠŠÄ¤R"*3ĄńĆļhs=’°Ė|ģŽ½{×’ņ–‡… J *„dB.„+„ļ‡"“Ét½ūt1D¢F‹E5;;÷ļABˆĪaķ+‚õņ”ņŪ³ßģ“—õ É ^!ž[“1J¾gy±ņGÆäßĒŌ7ĻÜć܂Ž'¬Ŗ‰ņŚńśSńŚ1z÷ŚŅʽ€X"ī7»>„Ē*ßs$(' ŌŖÓęhR/ŖŚ‹6&Ä“vwą±APóȒ6X­ ē@/OØ(бbö9­§nY’F½Ž‡~čĒŃēŠDT(¤ 3_L ]ļžŻĄČˆ:ūģ³Gæ±#µ&@;2šåļ‡0lp“āŚöH“’]øł–żÅd!±<€x»¤¢Šęŗ{#¦.%ÄBūŹŗÅD‰j’¾D[ŅūI‰F›S‹ŸpUļø]' e7ļx;JįoĄ9Ü}ĪM½>a$VtSa~‡ł‡K‡“'I*ßo®I¤ģ:ö”4ĶDž=ųę–1ŚEWA`~~¾ńŻk~šc­üR2&…ķž×ė‘/•d·»’@—€q½ …‚ŖVėWģ 2‡ŸR<ŗ‘{āž›4Q,ęA€Ģ ądŚ v7Sæ&¤TäĪŚ”@<ļ ¼3_=Įī‡÷éœ j4›£lū¦‚ūršZXĀM;ތ ē$ŖÕ׳ņH”ĆGlį£" (k|KØBĄ4(Ö““ŚŽłērG¶/ž1ż:6?ńÄÓ3³ !BĶžK)¤R”p…š3”Čd¢ź?t·ūt9D¢F‹EuĒw|!|ߞXŅv†ą‹Ļ‡TzLŪĶU‘KI¬Šd'ŪńĄ©PĄśŠXĆ 4Ļ/ˆCsW¾¶cŖši)jĻ :`¦žnŽõV„tR»śó™ĻĢł~ć¦=ՙ÷ōfØĢ2lāR1o¦8­næ-ķ@»† ™Ę,  pdÕkĻAåžoļåÉf;x…„ānˆŗw;HÕ@Įlæøģ\ø ·īžg(V‰ā}盂ĆšŪ{Śź'ž¼ńŹ:ŁWķ č ĮŽŪŒŅG7V!% æ4Ü ĖZ‚µ„”"„ P(ØŻS„Od³¹WQJ‰ŻQ7%„Į9ńw|>(’XZ NŹ+čĻ÷u@‰Ø)QL(č÷± ш‹õ_^1» ż§`ńż³œĪ_Fū$zĄ „ke ¦8‰•½ÕSJD=z%RPJ&`hG;„B–<:;‚Må’ćį$.߄ԸüZõÓl¾ł|_Æ·‡öƗsQĘ¢T$ DāžÆpO…ĒŪ\cżCŌjUÜwļ}߈’”J) ćEB"Uؔół²ō¼īg’, ĄččØzćėßxO½^æŪ¬Ó)%8šŹ‹!Ż~MŖ¦‡Že€(Õ÷dļ®i­e‡q5”•!ŠŽĀ{¾±Ē4!AP„z ¬”Ź–²~ŚBrнž““ nŚ!.ɂŠ<)l”Ač(ÉÅ_{H‹Ą¦©+ńĄüW@cå·ęåå'¦-—‚“ÕoåœŖ\pŅgY’ČPIaH†?[Ńz]ķŲæ^Æc¢Tšüƕ߹‘¢@ˆbQģB!TXĖēE©TŠ{:.>²ī%T±X”ÓÓ3™E>U‡{D½<¼SŽ»’"Z[d‡¢½ķłļɑ6œ‚ł^;^Ąž\ĈßåŪ¾ŌqŸÜ;Ä)‚ŠAš…²R^ū"‹éEÖŽ”Pŗ`ĆzÕ 6Ša#`Kłx“r•f÷I¦ėFĶBbåO®Ģ¾e-šā*;ögČh€Yš#Ŗł—:ž?4sśœC[w™Šż«X’»õWD *)•P\…J©P* ”¾z] ,‰ŲßȒ39ht“Ø^żźWß^Æ×ī5ÓN;UöŸž~ˆlQ+>d† iõ ŚÜī½vW£/6Göz~Ö Cų·}µ~–삐ä<čŒŲõ fvąS!)ņ”ęACŚ^ĻRõ>Ü7ó™Ųņ3šöP¦É>Ķō›1ʎ’„]v&łc”÷WCā‚0©  <¼ą ÷·9G½33M{bb÷ōßśīOć¼?“B*'T„śś4ł·^OżķŗÖ_dI@"#j``@NL”>$„€Œ2훆rä_~"ėŸؓÖj£`mžŌ}ŗūŲC”Vå›å@ śóĮ»?5v€šŌnc]%O”Y² ŃX“WPHŽ«ŒįĪÉ‚0”Ó|‘ņ3cłŃŖüń¬Ė½ŽEԚ!µü ś $‹X Gę_‹,_Ö²Ocż}ßGµVÅļī½÷ŪBH)DØØŠäŸR*T@*“Šī’’‘%Ę X_(Ø×½ī¢›źõڃ{, zń; ś‡rsP<§' 5e’<É6žZÆ$r’˜ć€ē—ĮÉäPżé’ƒ˜Ę£’§t°ķXTŪAļ»(U¬”Ø>‡Bź»”Ŗį®ŅÅ Žå4JušĘ‘ņGn?”H„ųö{Ø"„·C %‰(õGeÖōŽ–]˜~„¦ģ·T*Ķ~ćW’ČXÉ˜ą ” )üįü2_D„æKĘśKb•r~~öbŻ[¾³}Æś8ą D"¬Œ’Šf ¢³°æb¬5vN€qŠü XnØćčīDAs?x¤Ÿ,pJXBPŚćŠ3OV:„Ž@yJ Ü9ń!6‡,ļCΆ˳Q“+ę'&²æL"ń¶Jg1t²‹~8ØĢAH‰c o§ķė8¤ŌM?Ŗ• 6l¼÷Ūś+„BŠr@`*’–łgdI€]xƹ璬Ѩ?†ÉśšöŖ3Fņ'œ 9ø&¶žvÓ½O“‚O…ž‘Ų­¦z’Q~„yq}5ÆÕqĢ_{^¬•„¦§žšŠH[ė'1®ä—ų‘Ņ%K§Ż=ńoØŖķ:ÆĻō¢©.ļ‡Ē–głŸ\š/-©čĢܟČeS2†<¬Ą ĖĻms~zRIŌu”&KsW|ūŪ#ĶÖ €@ö÷7bė’$†’“”%‘ØŃŃQ•/•äųų®wérN±xqŠ+/b°5Ü‹ģĄŽ aHn9ąä41}žšY€L?‚¹Ÿ\ É.¾&V$Cšy OŖ%8:7‚tX”PļpĄ}“_ŌŲ·ē2ń>%”0xt.ĶF'ōŌ(•(‘ųŽH„ŪĆ © „.žyīŠ;£:ˆV‘R!š}T*Üqēo/÷«Hb)YA †óóóbt“ø¤Č?#K P,åkŽsĮ-•JõöTYs*č3_•ö,Mųƒ„<’ŠZ[%”yOITĪõĄöß zļµp²Ļ‚"Ž5 ¦1ķļų¬øß¼Ä@żÉ;»«ė1Öø)®čcŒĘē]åGJršH’S£ü†ąŒ\½æčŸRPńd)śé1m~:kŠÕZ [·mŻü­«¾{ƒmż ½õ_•Ķ²ä ’Ų xšĮĻ ‚ĄßÓŖ3ƒó„™įT %āŅ÷v”Ąž q zž½”OœrK~„Mį@ć7_†(O€°֙6éüžŠh|óGf’$Épßō—ō¼ż(Ö'„Äõü͵Äøšč@ėŽ÷uh*ż^ŖÄõ79)%dØ „‡SžD‡STR š”Ėeõć_÷É8ļÅž:ž§„õ–.‘pĪ'>±}~~ökAÄ+Š“O ŗ(üĶē ¢å£Ķ”aćj‰nķw¬MHfpsÖgH)q\#½7­Ź ˜¬£|ćE üš0Ł„ z2ŗÖÄ-ŲYĀĮĘÉĖ X9®ģ‹Cųh MÆąpé č~VŪ®?ˆ‚R–ė/%””qĆ)Ž<֚öÓū"”@µZĮ¦¼å×·ßõ(!”"”Jʤ !!Ōj€`©[`‰@R¤½€/|įKj4ź“{źœ9ād°ē¼6IšP@YŠ[Dģ’ø×ęoH”4ŁKbM@KB=Ńt`‹°ģØ’{ fF¤ķö›sže+0¬×%½Q̇/­bf>5,ķ#mĪ}I›*½„õOY”0@ŽÅQżÆīø3]ōSGir²öÕÆė?“õ'JJ%' „śõ8ö–¼õ–(i.ąĒ7Ö'KSļ‚pėŠ žå'ęÖS†ŲE11°7u@rĆmOJ5+¾ńāę"HB@ÜT§…ˆ¬qīØ¦÷@ŠGÕ.]éĒ’øŸ6õ#Kżßr|Nśą\óŚJJł#`‰41®ōS–ņ™ĮÉ+?Ö~_‰*Õ*ī¾ēīoīŽ=Q"T”)”«žüP?„>€`ٲeKŽśK"Q£££rø\’š’pM„R¹oOż@ Æłxda"¦i v÷„ƒd‡MŅŪÖÖҧųՔ SÓ`DśG’RąęćļqLķ‘j‡ķC)ąaŅĮü¤'?Ń?&ןĢ9²’ǧ$ N:÷X0盲ü–ņė”ā9žR(ˆPḁ^t¶ŸµZ Ūwnßył×®ü> ;żJÉ€€PźJ}AHAØ'ż,mė,q0^@”PPs$|ģ±s|æ!ģ®»ķ@Ą[u"ų Ļ Ū Į~oµyG„‚dUžÖA›m­Ģ@ō;EŅG€Ļ+`ƉÉ=Ž€¤÷cR “š0ļę“å·¢2ßdÆdŸ }Ɂ·ćßuSv­Oō7 ³*“”:å7ÄNĄšWµžR¤üRJŌėuĢĶĻŖnøéS „DHɤ $ ”ś`Ģ ę-ėæ”•Xā`dttTLLČK>ųĮū¦§§ž#!Ā0\48ćĆPĖž‘ŌĄāŠ'[$a*#—ččöw[ƒHʰĘķÅāՊd„Õm7ćé„;€dūč½ÅćlŠRžh©mb¬?"÷œÄĒŚ[m᤭×&EB1駔&ü„TBBD¬?“ż8yåæ¶=†¹æ¾ļcaaļ½÷Ē’}ÓĶ÷!$”T*ĪC8H@}Ņ`¾*Ó` ĆįrYŒŽŽ.ÉŸfYņ`¼€5kÖČR©$Ļ<ó¬](—7ī)+B0ō¦’B˜-j>Ą*ŠA  įė®[Xg+·ØÅW }œd ˆ®6&ÖŚŚ<ķ©4µł±n&#7ū1•‡tœøOæĖõ'iŁ7ځ€Ó~¦­ā”© L¾?ŹĢ˜‰>”‚’^²ņ2ø¬Šŗ÷hÖ¢!Ŗµ*¶nŪŗķ3ŸżŅē¢ŃğR*$!õ a>@)y07w0ķ¾–ŗõ0222¢V­Z%ŠÅbxŪm·’m­V«. Šģ†ĪžĻĒ}S„ ڃx6źŪQ »n¬æA{ s6Čé¦ćķµ‘“’œÖóš EÉéӓx؞āKĢź»–ėƞD?‰²ķN^ŁŹ/“ę*Šū„$8ių#phs>ś$MĮĻää¤åU×¼_” ńǹ ‚€ŅŠÆÓ†ÆT9čļoˆ‰%Óīko䀻_@©T’ŸśŌ§vķŲµć|ß÷•ž0“Ų²bG ’ŗĖF¤ ø\io@QÄkµHū,M”%U ˜iĔįżh­@”“XśŲmW×É£²„Gå½±`ńüM®’žf8’ĒhĖÆ¤V~X=„ł ćމmV÷µ×$ō>Źóóøõ×·~ać½÷ķ"DHʘ’ 嫐ŌoDğ”2˜ŸŸė ė QĒ{¬Øzhų¦wżßNNĪüȬĖ×q).Ž'#sĘĒ‚Ä `ÖHU’J–„z²BšŒ¶årS$©BVĀqĀ‘Zó é“ZB˜aO€¬*9fx6Z…—ĘīæiQöÅX’½J2`ČĄśĄR~a”_Jū‡ Gd_Ū1ßo&ūč”_=ōŠ]ß¼ņšŸDII„Īł!Ō§”7 ń§żF–>ńgĖ‘Ø‘‘501!—I^|ń‡Ī­T+»„XĢ ŠZ’Žėąœt®® ˆųa)Rœ>(m÷ćj M±}ücˆĄØ6 ¼æi?͌d§cZślłUåL/ŲA“xŚirāy {‰}ń÷"ōa$ %iŹņ‹Čõņ …"?'Ļļ°OÕś Ōź5ŒĶ~įĖ_»D+搄JÉ£&ć J>­ŗž@†åˆų³å€€øiȚ5r~~^<üšĆÕū7=ųĘ „)0I}æiūĀKß rĢ_ TéP@(ŒCńLŖ@Ēu_»ŪÅģŃEā šąoé°æE”2®%€÷<”Ż\D4š~mˆ?“ih7ä=€@ģ1D.æŽG&Žł…LŚz©HłóähœrpēbŸx}æP V«©Ÿżü™(•jŗÅ7•Jń@@kųĘ|)Ż ^ƇK„Ļ’¾Ź±ŒŒØb±(æųÕÆuäa‡>'Āķ¾Ö̌CƒÆłŌŹu#Qe-0Ā Ś I,+מ0dMĒn‰ē£ßć” ăš½OyžmĀ{æĶŁ‹GeæžŃÅü:õ‡ŲķŠŹŪ,zœō“z ’äł•T $HŖ ?‘((YÄŗƒ?×ę"4C \.OÆ:dåźSN~ŃądÜčƒÄg>ó –E~$āĻr„;lóęĶĒf2ī õ|JłqŒ±£8g+”!Œ3PBŪ4 ± QģOEˆŁļ½Ų~‡nķķŗ`¹”¤Ń',²ĪbČ{t÷#ģ±+ŽO+ xĒ“r÷i“$]<ĄŠą”L/ŪM©X;lƒö±öōXÅĻ]„” ¼BYC=,C ]š ž:/=ō‹šéJl{~ąĆo4P«×QÆ×QoŌD­R›®V+ŪkõŚĆå…Ź}•ZåĪ®»aƆ õU«jĘż7#2c\ņŹ±äą±Ēó<Ļ;ƒ1öjĒį/aŒI)ezź*”’Ę“fĄŪwŽŪŠwøDs?»ņ÷#ą}Ć`œƒ+6Gā ŪŹHö ŚI“MģYX¬æŒŚš‡ < ’J”ƒQ„ˆnŒAL½®Y DB) ČQŌõbU/Ÿ“õę,5Š$ķgŸW‹Vå·­¾¹˜Ź|QE„¾Jéę¬R¢Ģ >DØ0@Ēi‡|„ģy6”pÓė_)…0 ¢ō”B ()źÖń²V«mÆÕ«·/T~¶cė×’ä'æ®XŽ@źL–" ,`Ū¶m{)ēōo\×YǹūLB)×é+šRvóČŚļmiåØÜł5„æ» "Y ŲöšH6»ČgRgķ¼„" $ó@’̃·2ńfāŚśęEĮø”Ŗ2Äoɐ^ч18\gØmżć>f‹ ½ƒ`¦óŚ„ƒ¹¾v3)$BŁ@µ1‡CŻW“]Šc1i×ö q!‘Œ'ÉØ¤X0ŠAˆ¹ł¹'µŚ­•Jõŗ[o½ż¦x 12rœ.1WĶ:§īWž®€-[¶ ŗ.ū'Ēq’ēüxJ™G(ŻxóP“»j#öywNŖE•ŠŹŃxäfŌnžØl$E:4ń@šÖč±-č¾A/,åę*ŖÉÉ~ srÓn­c6‡5Rˆf¼ Śac†ō£ŗ §Ц}¦®‘åį¤ŅD%æG.?¤i¼"u¼Æ  æ8,ūWxöŠ÷ņ¤Åxsö«ŠęJ“¦ a֒”R" C„"„Cz£T*Ģ/ĢždēöŻ’yłå—‹EÕŗ ŗĘĘĘr„Č7sĪß̘óĘ£”éõHéŪ¹ņķ}oĪyo”H2ģ~T~zX0Ÿtńö€„mM¹Ļ‹YRū°ōIÓRÅ\ĄÉCŃhę"".?ął¦ŲϾ„¤Ræ%E©?½¢DŠÖ5ńG,Õ·9v`żš²śJoĻčS€T†éWq?B†cĪĆŖĀKöź>ķ­Ų`Š ńø•‚RŒ„"D†SóåŁM³só߯¶eĒ7®øāŠé„OkXæ~½sŲa‡¼^)śVĻsO¦Œ¹ĘʳhbŠķņéŗ~c“.±ū.jÆņų͐˜Ēüµē‚Õ&ā"ڱG€čżŽ:1ø}Ė$uŠ\@)“\džgqfHĄ|¼Md±ĖŌM>Ķ─‰@U h“é韦w$)ļ‚(«sQņE)õŚ}Jčt„V~"3xž²`8ūģ–mžPb ˆ}/“ŅhƒAų‚ æF£.fgg6ĪĪ—Æ¾ķW·]9::ŗŠ ŗž–°sēĪc‡˜söĪŻ,cځęœĮX})VŹ'£šFڳž¤q( ˜’ń»€ŅƒiO "ćź>s *āēĢ>ŪĒ” Žć0NŠ]Åg* d^ ½*x³¢Zæ+wĖaH×Õ yZ‹y° IR-™Š Yń#w%^·W&V_*]Óo<Ćxań#Č;IæĆ?ö³i/ĮÖģMb1 žńż* ĮģģĢM»Ē'?žŃ~ōīB” 4ŒŲŠÓ žV0>¾ó,Ɯ Ēy>ēœhמÅÖ¾ł†Ų¤ĪžJjQūmBNM!,• §¦ Źe°eĖĄŠE°åĖAX穾•{¾’īo€Ézœ«Ć‹0”µ"t¤(ń4Ŗ • 0`~p49ŹŚ¾Iƒ€)įāa¾ ޱžĢ„SH&#”ŖU£ż®b01o,w?£J¹üˆI?…ƒ½ÓńÜåē“=kM*“˜oL L¢LĆeyō;ĖQšĀ€S§ķŚŁ®O»gdqßĖ/ķŻčgO Bų~FõF Ó3SLOO~žź+æ÷­M›6ł…BAY‹‰<-½‚?9lٲeŠó¼ Ēy›ćš"c 2óØžłN’^’m½$Æ6*šg`O¼WїM$•‰”DȞš€MĀü'×ćpe/«Ÿ3^™±Qże³¼W Ŗh$ĒnV|+˜Äś*šAöX“{øĀńĖŽ…jč扳 «>„š˜ƒ/kej˜mŒ”.«ńąSēbŻSN<8$‡eįŃ<²“ÅģŁæĻ8}ĪŠ"ĻEś“ŽršāšŒhņ0@½^‡ųhŌė˜/ĻĶOMN~ļĮ±ķŸüāĒ>½«X,ŹfÆąé2(•J}RŠO8Žó6Ī c ś‡Zn~”¾Qŗ|ĘĪĪ q×]šļ½ā‘G ĒĘ@Źe‹ÉŽÜ½hJ\źst°„€';(eŲęH!@?ŌŃ!h’0&‹~&Oi0ˆ>Ž?¤™Įȟ7;G¬o±'€¤0Ȁ€³®©©±bŃ6wį ‡2mż“ĀŸä\m­Ō¤ ¢!؄ T†7QÖžÓe½ę} jvWk(‹)('€P;ŌŃļźį|Y‰ŃBÅŌ‰– I6N*fM -`ČY…ƒ³ĻÄį…ńŒ”cŠ]Łę·ŠŸŚ3ŠĻ«-a Ńšįū Ōź5T+ įxiü‡ozģ‚ĻžóćOG ų£ĄśõėU«¹Ųu½wsīōQFĮ#kßLčķiEŸv"kUŌnøµ›o†xüqJ%Z«.źj“Ut`ō·Ž+ČfAółŌw”żW¹éW@fBØc§įō‡1)˜KϚ½šé‡āžV’&śCY‡3mĢm2P xV`ćĒ”pń_Īi“¬7ÓŻš)ž#Ņ*_ĶE÷%éŲ›ŠJB hV]I„JĻč«!¶ĻWŠ@UÄO41”Ö9 å£ĪtŽ‹T&“yœUŚHŌJ IDATź$&&”\ä1č¬Ās‡ĻĄI…¼;”œk3ÉŃęų,;å,„€ļūØ×kØÕj˜/Ļłcććß¾ėŽß~ą›ßüęģĄĄ€\³f|:ĮČ®]»Ž›ÉxpgČ (ē<„ų¦8c_Ę%vķBł?@ćę›!}Īšpģ¶J-ö½©’ŒłNō7wźżż€ėĘߑŃv±'€(Õ €ųčź SzŁ/ÓīŪ€@ĄÉ€f )åo'6{}@öÅMć¾æI0ļõ1{_Ńq©īń/4`Ģ«$$|1)_Zń•’Q%‰PJčM(…R„Š©Z][ņäD22ņ‹…§üQ`llģŸ‡ŌuŻ•œėSśÕV|ƒģŻxüß’åļ’‚ŪģŲ³¶”1šb1QnXʹč`½ZihĻ6śÜ:®"tٲÖg1ŽĶUJįĶńl²RzĮ‘3`Åz*Mh‡ HvY bĶciŽ…›@Hķ}8/؃D¢ļݭЀˣÜ“ūߜ:hŗ-¾\€”¾>„AP(™¬Óż.$0WÆ£T«!‘ÅG˜-˜ÖØŹy„¢Öž˜÷ŠXųD"܊ł Ų aŅ“śKõ°‚j0½Šˆ¢$0č‚göŸ†SV¼Ē Ś<ҶBŃ@Ą™a,⦤µzµZ333 »Ęv}žĒ?¼ņŅ[nYØ LČõkÖHü €ą cccÆåœ}ĘuŻ#Ē!ŽÓŖųa(öjŖ^Głź«Q¶n;ŌPcå õ<ŠĮĮ$•mŪlŁc‹ ¤@ĄžN»”ø.ŠßߞP): ²éŚĘ}Wd„GĻ‚ Ö5 ņ¢÷ŌɂdśZ”žZ³C8öFSšLĄ9<C`NrlāĖįpŖ—łbŒŠøæ@ĀDZ hŽ!rN+>4¹' ~ ­ųeßG©R…/%š=żfoF’­É׎^BYG5œėč‘)ėfŁNKRķżšŚ(٦!jØś3P‘Ź*™Ü+%uw¢!ē0¼Øųz¼|Õ¹Čw ›…sĪyt¾BŌė5TkUŌŖULĻLĻlßµõßæō¹Ė?æyóęp``ąŲ¹sē1žē|×q½µ&FjUü½wõ÷ߏņå—#øõVŠFCר‰Õ|gBX6 R(Dä•~€©mmš­ŗń 2؝ Ąl¤)ž7{ 69$aōƒ„bŅL|„k¦Įś}ó Œ€ē†S‹‡Ść¶ “ÉŲ " €÷Ā䤔SĢxyæFėü±…:œ¼ŅćŠ)=_VŹZdķ©„PØ&ėuŌ°éāYąklņ6uŻ£7€„ĄB0Łöš§7JĄ å,X^@’”P@ØĢ“É—"ąP29gĶófŹĮ3 §āōCĻDZĖ^ŚyL– ˆ{†!jõjµ*Ŗ• &J;ŻüųŪæüł/ß2??/ŠÅb“&Įžją»wļžwĻsĻēœ;ŒéoŽ‹öJń…Ąü•W¢ö½ļAmŻ+ŗ±öFéi“;Oūśbmvį›-zĖsŽĢ“’ĻŁ6 [,r>±ņ§¾nžX+m0XAxä,h.s2`™BĢ 0³K‰šAAYÆ*r’…ųĖ{JČrŻń—kėÆ+,­4›5x]h¤•^F±øT Ō‚¹Čā+ŌĆSµ:‚ ±š$ ­(„³,u:ŒjD X'Śü±é¢6]Œś‚$`{ P˜ów'·P%?*Ś‘4 aĄ@* šCń¢āėqĘaļ†ĒŪ…xX„Äŗw. CŌė5,,, ¼PV;¶o½į¶Ūī<÷æųÅTI—¢?ośŽ|c7dĖ5“QUÉHłČƒÓ^‚GśpŚAoĆ_qA‡‚$k˜Ńė”Q©TPšÜ]¾’¾ß½ö²ĖžóŽłeĖÄp¹,l¢š©§&&žXAißĻóęÜI¹ūŗG[ؗsރ”ƹ•/˜˜H¬=!Ś5µ¬½Mā”éw28ź8É=·¼€§āŹ‘Ąqö};ūųĶ×܄ˆ@€Ё„¹ĮŹy`Y”émbž Ś”’ōnā0@%Kœ ˆå€ó<ż½-2’×NuśOϤL®%ļD’LL/@ik*…²ßĄdmÕ°ŚāŹ7…ńŻ°½”…pRū¾”}ü” –|¦PöKķdGZł‡-!āyR“‡Y:ˆ—|^¹ś]`{č_Š RJTkUĢĻĻabb¼~Ēśßžyõׯ¾- ĆpnnN¬Zµ*īYųT‚ĄS»wßœĶę^ęŗ.4Łg–dŅĢžž¤ņ“Ÿ |ŁeĄ®]`$y ć~tŠVßÄ×)‚ļ’³÷Žqr]åŻų÷œsĖōmZՕ,[–›Œ±‘»-wL L $ä%É yß$@ ‰Ć›„’|ŽH8šBw Įvd\‚-¹ČMV—,­FŚ6ķ–S~œsī½3;+ķjWʒ½šŁŁ™{ϹsŸö}!m!720źŽ(źééė’|ŠĻb !”ż(—œ@2…xA r°ź‰Ä H-ū»%i~” p/Õ{‚ö#v]]ōc¦ž$ƒ6‰%Q‰šPåø #4ćR)p¢%kķū“ڼSŪō"œ|BE3’ą4©ķ‡@ÜęÄĻ„Œe 2—¦C ‚"ĄÕKž7®\ś[“,ŖN¢”¶ńL†Łm;¶ꦿ{]µ:ьcš0Ü !0k°{÷Ž+ŠÅņ]žēĆ7¦±õoEĶ’üOL|ö³ ;vLbś6pZ¾nKę8hŽžl‰ ¤v÷\‰“§Ļēœ!ū:D•Ä@(G ¾H>߉ $‚@2و¬T/ÅcμdĘ_ŅļŸ*Hb„޹Å")Јb4y¬xHzRėž0µüĮØÅ'«ÖÜ4Cu>.ĆTpe„X‡“Y™ßeśØL»ų [ˆ7} —,žÕCž?k Ōė5 ļĘĆėś»æü»ųźy!&&¢pٲxØÕšS!0릠Œ¹æB©Fłé1ėžū1|Żu˜ųЇ@wī„Ć„“~Ś€æ¬0°Œ’ uó5WdĒóĪ1%ßb¢ĪÓsXĢþīMä‘ß2€Ü‹€ó ‡‹ą!KB~É̤Ģo§‰`Té*B[’+„D¤$%)”³Ų„ĪŲ«6[ŲY«aēD £a€PSȀ„ĮY7ģbīĻ!Qrä„:€DS`W#ģŚ,.Ŗ4°J˜®k¶ūe@MīÅlū]üńĆÆĆśįļōüœó„o …" …śūūÆp(Ķ{”ęP©xžŽ–»k×.¶vķŚ9»Ā³¶•)ŹŌŌŪōŻ©ˆæōöä#ė×ó“Į±ą^Fė'éŗYĶĆ(]ż6:’ąH;KŒµŸKerēŃ@¦Rš›yČķ9Ø­¼ČĮē5€ž4ĻSŸH³ōʁqåB* *)8UŚÆ—:#. £LjL vāth÷vwŸ@‘Y+£ƒ9ā ¬³×;ó ™ü<ݼ½?UŪu¢‘™©‚|¾²éąĒ;’ļ?łŸ0T^ÕuBˆ$JP(ŃŪÓ{‚CiŽGrRŖˆ2ÕÓÓ#·lŁ¢Pk·aV~ÖW•2ē$ĘX$龞Ń/ {®ŗ üį‡SFĻ0?3?–łi£·…üFGŚx9Ȝ'»÷6« ó;ö#¦ {Ü'ĒēCī*‚×HN a,ƒšƒ&|©B ”Ķ8Āžf ;ĘDZc¢Ž‘V€Čą6„ >`„€Ź2„yBްvÜGЦqgČHV(äZ%ł)ęŗŁŁŠ  »[ńéĒÆĄ÷^¼ Ru·’­u]„R¹|Ś)§ ¹‚łĀu}B¤ė8Ž3>>ŸĪ•0+ `÷īŻC…B¾œ õu’ ģ¾ńFD=ĒüXF¶÷ĶŽŠę¹Õrʾ†i`GGś&y¹ĄTūµŲ‡‰-lŒˆR vAw! ! d…#˜_ĄžńćŠČmBØ"„RD„ÉFI¼1są uuķÕō™gvtdÆżt÷Üb™(‚żZT’žŠčC€«?Łń9lØž]żT¼ymĒ· ”R ę88唓ĪyęŁg‡”'D¹M׍{zö±jµ%ŁZ³{÷īY¾ü8 ة杜?ž#T’#P;v$/+Ćä6ōE(J3±[ćēc˜ŅNŸV&„õˆÓtöŃQ·ŠĮ¶z½Ų›«`Ō) Nó#[/€“ÆĮ)ģõö‚ų/Aåv€ČČ}µŪp•C|źŠ¢yhfU”3„iķ!Į Ö%M_KĘĀ„5?ķfSæo]yÓ$ęĻ®E‡%FöŒNøp %m4œ ź‰ƒ J±v­Ā,šĢJœ}öŁ­½Ć/ķ‘R-鬤ĖRīu«1ōӟbō3ŸAóė_×Ķ6\ŗ.ƒ€I I)˜ŃpöśQꛎ ŃŽsN3,M>lB‡³”I/&™×’އāąÅBväū1ā”Œ5qj%Ń" ĶZ E6"Ė`łł üTŠVåķüm€æ ІI‚•Ź\ŹI.p²ŒéÕr̆:ė*ęš*,“ŪĖĻaA-¦ˆL 5•ä (IqŽą;šĪ“?ŸuĻ$DæWg ņē?¶Q2FW NĢõhčµ(,#k|g–ūž5(…x’óx‰ė:°m»’Ģ6¤ā8ś?ń ”ŽśVŒ}źSė׃šę"%„1e-0hŁŽL!²‚łˆ €#|&dMGس3cP)…ax¾8»r}˜p‹™ÉĦÉI& 7 ¢ D…@ ZYńź`aˆŽ@¹{!żm€·@Ė.±ó²VYRå8 ­ćK‚#+d¦Ź2TŠ Ż|fCŁG©Żiźl‚” Ė gām+ž'öœ?å4v`ó8°_³Ł „:LRĀJdD}€ŒÆœ›}ĻZAų Ÿ+\+„Ōu唦‘€.7‚wŅI˜’o’†ąŃG1ńéOƒ?żt‚ü+ Z™^yĄ$lęµ,Yw∐>‡¦æ(„’P§-ŹZ#ŌƦÜvåzQw ŗD™hýme„hĶ©t}lĖń‡ŗÕ75øŗŠ{ Dpš ^PDęĮā„=p†”üķPŽNõtц!¤Q} s˜RÜ ›#a Ō¶¾¦īmŃ&Õńh’Õų’$9JĢ÷Wā-Ēż^;ļšC.RŻ)ŽcŌź5 ļŪ÷bŗļwŽĆõ'|ēĢĖ”—`xFAAHF£ńńqõš£~£ó½”R0µ Ą9ƒƒ³¾Łg->żéOüłŸźO˜ćü-!€ėzi’tĮ…"wūķhŽ}7źŸż,Ķm6R@Ņ:-°Y€¶ØĒš¼‰0Čhé#b Ģ„čņŠcĶųFY ±+ßé0PŠL[3Ūō$2™1¢ółA¢Zƒ`€ Õ„ēU’ Ą,¹P%HQu§¢rP$T ČH¼48 Ņ{Źœī™\Ś``įNaŠ™?0’sv "ŪŁ¬M­g˜öŽ22@—Ę··–=l1®[śøhŃō¦Y^QŹ0½Ž‘‘xjćÓ÷>ųĄ£€¢Ø ‚Ŗ€*'gW^apVWĄ€ļ¬Z„ž¹į­Ÿ’īwæ}|’Ą‡„pŻ“R ŪĀū`Tøā ®øžõæū;ČŻ»Ó^~0!8„S ŸIŹŌ$'rrŖ0pŠ*Ą)'!«H/¢“SŒ03K Į6RĄĘ¾„õĖt›nju¾1÷-s[“<»•:é€:+$ńśf£JOO{$SXD xJä‚8! bėŃa2Ź_ „§A©gAņOCŗ/(IR~jc ¶'™…v~)S}3u:Ž“uQģ9UęmJČ“±ˆł«1ĢŽ$µ:­$ć’ŗ(ØÄń†”ßĆeCæ1­bĀųPIgįz£‘‘xņé'7|łęÆ’Bˆ"”JB„äT ø²^&Ņv(ą“™]“n—i6‰DDĆždõźÕ €ū’ų^øhĮŸņ…¼ėŗp]Æ­5Ņt„Ę÷¾‡Ś¾ņŅKķ)Įś¼©5`~·.)—A …6 ‹%“ķö0¬„)ūtR—ė:éž7ļ‘*mņxq>ž.!ȗQ,ėóh¦ĻhūdßöČķ‚DAēé+%!¤Ą‹•…ą™RÕ”ć—Ću(‡&ø‹©•…Ö¦ĄB€p „j”)ź !X2’$Tn@²™‹Ö IĶŗ “܆ĢEŹŗG5¾ļŠ—?…I]%i¢,ą•|_$ւ€rQ± @hEō,AÅöCÖC嶤i³Plć-³“æ-˰€aPŌłžö Ū¹õęN^&@gAfpū"—1j¦#P"Ģ×eģą% ˆb8¾x.._üA¼nšM˜YĘ·‘1!¢0B³ÕÄųų6o~qĖmwüč’<¾įé­QR I…t©ŠņĮšB°V>†¾ļĒėÖ­“j–ččœdÕŖUcĢ-‹~Č’Į‡’×µ§æfÕMż}}Kr9ŽėĀs½Tbf‚@ÖėØ}õ«n¹Ų½»­zHĒBSßėėĖh Ō:P@×ö`ČüŽŁ¬S0×Õ= )d4fvĮ™ß“D'{|„’b^öž€qædöBč½y¾‹\>—ī?³æd!°;ōP U§€żÅAB“÷Š .˜‡8LC‰ŗAi{ 2  B “D !@"1 H ³¼ųs÷¤å¶iźlĶp›$Hå*@‹wł2 Õžēl—ą¬k•n"żc(ZhĘcÉ߬?Æ)dæĢqöĄ[qͲ”gŗó:"Fv¼X³ŁD­^ĆīŻ»kė{ä+ßśÖm·D Ā•TR¦„RŠN"įØ@(Õņ„lA9ŖŃʍ§ ą;r¶µs&Ö¬YCwķŚÅ,XąAą‡”ęJsš{æ÷ŽÓO;õĆ}żżƒł\ĪōGsŪĄÓ€¶ j7ß ±~=h³™ąÄ±ĮĮ„‰³½Ūrč³ƒlT”KˆÆķB@śūŪ„G6ō˜ģ'#Ld&za™sæWÄż}+PĶõ€_?Z?_ļ P)ĄisNŚōɒ  MńLŗōn)/FääŒ@āO/]>ĒapXy”” ķtYĘjD͘ƒsĆ)$XŠ 1€’„P,„t·C–œ*e¦ uhüģ™ŗŲšM9.ƒ®š@§vד‰Žf~!a|ėŚc†·xƙļ¦8JK*‡äp|įl\¶ųƒ8sš˜ e5¾”2™PÆ×±gxOcƏū[ß¾ć߃ ŒRRI(•R*į(ÅcB#ŹDHć8"ߏēE0<œ–/Ÿ«’ą9i’Å<Ļs¤”nE¾š<ßå̧”ä>žńß{ĻɧœōĮŽŽ¾ŽœŸK€BŚ‘_?£õ(…Ö}÷”uūķˆžs Z”ī‚@›_;ŁH€ĀŒū`ö‚ƒe5ŠMG}?y_šųd֟ev³Nū÷&qqļĄ‰x©0Č`šłķļfµ„Ąqņł<–±&m‡–“jKzīž”¶ö-GŪø]Ļ[8ˆR±Ē±Ń¢[„Łė“\4“qē AĢ“1åŅśÄD@!aĄZzÄ8 @ų› K÷¬f·¦…2EĘ)Č\cūŃŻz‘ķ‹H–e>«&’ÕjņÄõP€m镀zPhFcy|®Hūqbé"œ=xĪ|ć!»ūt£,ćs£h4źŲ»wO°aƓ·|ėÖ۾ڜhFWRRIQR*A™€+Ä1”4bœ‡±ļn†b±é”³…xxŽ pę%ż÷ˆń÷­ļm™\Ćzś5Ļ÷ąznj>g¬f•9~Öü—f"ĻØSĄ¾Ź"Ų°!ģź¤B¾œĒąą˜Cą˜™€z^*“ė¢Ļ¢3 ńäÄ Į"ä¦w "@[ N]»¤^ŗ(<™n ćn({.h .Tˆ&˾=9q›†ĻšüŖż Y÷%µdŅ‹W ×Y‚S{/Ē ށåå×įp©“ńĆ0D­^þź¾č©§žŗć»ß’ĮĶ##£-€(!ø¢FćSʄ”R(˜)ÅŌqB„4AĄ­éÆ÷õŹÖŅÕ«·Šå2+åÜUqģQĄURzŽ×ŪS)|äw?ō?WžøāĘJ¹’ĻץŽ›‹¦bl ­»īBōŌS[¶ĆĆ a˜ą‰5Š)ģėhwŚĢOJuk0“3y’Æn™Š|&" ÷,:{ż~Óy×Z'™½&X…‘9$½A rÅe jžmH@kž+l/ĶGč•u‰±=^ņ…”斡aT[ éhpbpŠ™(­˜ė‘_ŁV»ęxVćJcFė¶dʬ+‚$!@›@n3dļwVÓßÕ×,ŪąŠ^–@L ’M$ hę‹H"R_ ©H[ĶPā™˜ØRrčqcA~%–ĻĄk®FŸæ³!+|„‚ßĄÕų‰Ożä–ļ’č‹ūöUėWBE)•BHIJ)ī(Å#„FyGM †ćD½”ĘRJE·š˜ęęP©øé¦›Čŗuėč®]»XOOsĒQJ¹ „ܜ”^ß%Pī ĖėłĄūßżįć_~}O„Rņ}®ēéu™&!sE¢ZՃBŸz |óf`ļ^ VÓaE½“Ž™NŅ0³{½*×Õ¾¾I>JŒŌBdįB°å˱­w ī{vqČĶMM3Q‹Œ é°8 Ņ§P”łR>µ’ģŚŅ»\k]‹ž+‰H›ūŽO: Y#'0°`>ŠE? Śį vZ‘łfAD \ ĆO $ń³­¶U‰im¼ c©tz NˆÄÉĒ¢0š0†ƒMv£)Ęt—»C Ōā0mKĢz²V•ِ=`@V’|M>)¢ĒY‚…ł•XV:'õ\ˆyłćftßLEVŪ+(ĪĒzJp£Ł@µŗ/|ž…M÷ÜvĒ’y×®ŻcYO„”²ƒń=X)4Œ ĘŌć˜7›KxOĻ>;BlN™˜cŌ`k×®%[¶hk 22Ā\×uøś'ļJxŹW)ūļ’õ÷ŽpŹÉ'½{޼yĒņyxžŸ4K“8Į‘h÷„šMˆ}ū öļ‡Ų·jdr’~ȱ1 Vƒš˜šMØ(ń} TŅĄĄŲ‚ }}éO?Ųüł ¾0ńƒÆż;6ķJĀz©ÆotkĀd4õySW?‰ÅĻ(ņyß$E%Ū…É˜iO™øŪŹCˆ¼|ę|éń­9 ,^¶žĆR7€=-ˆh&Žb .-0š 2+Ō ›§;±   +ĘŠÆ?µŸ20iæGźžœ %P•dBpp.†š­ĘĒĒåę-›žxō±Ēæ~ׯ÷?fµ=!DB•JJ„RŠ3&b+1BĀ" s^äQ¤xæäĘ7NÕģŃž©čˆĪĢ `-Y³¦JŖÕ*­T*lbĀg® ‡q(øYAąā,;aØ’ļxŪ»—.]zĶąĄ¼!ß÷‰ēłp\sL7Ū#gLs“^»÷÷ć±{7¤ "ŃŁūÄLęÉFŚA°Ä®?)ĄĶ{š<×0ˆ1³„ B±³w9£ĘIEĵæ.Ń;Š‹žJ))“P ¹ęB¦§W ³pdŽm§üi‹@YÄAĮō&Š–€¶¤Šė>qAoæp(=Ö/ł³ę½’ŗÅ}Lj¢-ŹŪ;¼wßę-›v÷Ż÷cė¶ķ#mŒO©”ĘĒ—R ĒQ\Eą–ń•"1„NĹJæZ­Ź—{>ąĖ2øM¬]KÖT-b€Ė(g_xį²Ė.½ämK—-½¼æÆQĪĻĮ󼶙kٟ—“²ē»ćkwāŧ^4LoT&®Ÿ‹†ńÅ|؎;YŹśž”Qø9ŒŃł×Œ%°+?ˆf¾7‰»Ob\•2%cK†i`’‚øŠ?‘,׀“ÖŁMčuŒ>u ģł$T‚čĪėś|ó*ŽwéRø}Y@’¶e˜^ B-8O˜¾ŁlbļŽ=¶mŪv’Ļ~ōV›µ—Õö„J)•LJ!R»Jqų$V‰„T\)+E㨢x)ÄųųøųE ^&œ¬C¬Ž²…A@*• ”N>ļ2BĘ]JKN€¦[ Ō •r !åÄ”²Ė.}żŠ5k.|ėŅ%KÖōööĻ÷Ķ0Ēuį0§ ”"J鶚Å)HüµūS­S„V@‚d¬¬0ø€”šńŠ9†÷]ŗåü‘šŅ–³© O”Ū¢sĮ†!Ā D+h”ZŻ7¶mǶYæį¶‡Ö?ž@\ Ćō DYm/„ŒI”€X)O3?h,„≩Ÿ0ž|ń‹ ¼Ģ 9iA0>>N©µš¬ęōPź„”:PŹ„q(%NLˆĆ(gBPvÅeæś¬³®\²dńłżż'•Źå¼kRŽŪŠ4£…;\šĘ‡CZßśüw11VÓĢOˆy@l†_Źü‰9nµ’ Ī• ŹF»2-Į”‚"Ōa)õa¢²$;C¬mÓéw.„BsĄu±pį (£:=˜YIÓč\6$8-!cʓŒ[±dāhœ_I! 戹ÄÆ\†%żÓ(¼šźÜŒž1ėm™ŗZˇQ„( Ńjµ0>1īŽ»y×®Ż<µń¹{yōɁBDÓ[¦'4ÕöB*įH)¤«øb©Ļ±”’ Qę­b,²?;óĻ\«—! 9łA\ƒF£A]×uĻc¬AĘ“ˆhčPB‡SŹ%LĮ(„ģŚ«Æ<ķŒ×žzŁ¢‹Ī7oą„B”ą¹®§X@(ÓYwŚņfź>ģŻ9ŒÆ’Ķ7Ą(ƒć¹)ŚoriӔŽTłĪŹ銞:¾®S%¤’ˆ„ÄóóVĢ×ÓH:dÅZćv ˆR¦KŽ[Œ\΃ėP0JR+€f„äL¬€6³Śž+ń-żB@²ˆ)AcpŌj“žĖ±|ĆeŒÕœ€RĒqFāÄ%‘Ćcœka@…`’IJ©ĒnxÓµg._±ā¼¾ŽåRiY”Xœ_*óŽėh¦u]x® ×ó4°8 įł'6į{’|+pÅJIC}Ęǧ ÓdLžĆŠś–²Ś?Õ¬ö×7ø„ÄĶcwļRŹ2 EYó?{D$„J=E̟? ė(ōč0+Ģ”l†^Š[Lµ›ĪūŠ$Ö@{ü^’.@(\ ri§+¼ńĢA\rj÷ŗ“ĻŖ>ŽcDaˆ0 Åā8FĒØ7źĮųųÄž±ń±]££#[¶oŪõųƒ?äŃf³%:„(*¤ä„(J…¤‚JɘąBČ,Ó;B é+.¤ä9)yåETQÜÆÕäDæ(V«rppPŖW ć[zEKķQ5k֐Z­F¬{Šh4h>ŸgM×eN£įDŽĆ„‹‹)Ę8cœ2mp&%£LJ*£RJ „ČI+—W^{ʧ-]|Ź@ߥIóęĶ;~Ń¢EKśūś<Ēq§%æ~ųõŸ@I˜"Šb¹×s0IóŪfōu„ŒöOÓŽŪµ?W›z—ƒ;&aØ«łßyÜl‰”åK‘ó8Œ‚Q€–LDKݧéZ“…”źR¢«@©€z+FlAaĄA).:„oZ½čŠ—IéŽŗūŖĆńöŪ÷ģŽZ=pąÅ={÷¼šĢó›Ÿßµż„QkĪķĢRH ¢3õØRP*)RHG0&¤fxGĆō1ē"' <Źq‘‹"ØT*‰¶/—ĖjŻą śEłų‡¢W”°Dڹ¬]»–TU†ĖHOĻ>Ķår,ŠņŌqˆ9s‡9c1‹˜Ć™‚3N)s˜ V (Ē!RJŖ”"åRŃūāžļ-CK†<Ļ;¤ŲņĢV|ć¾ %`Ld=Ž„9Ź•"ŗ„ϖڵĘÄ5ą•2Ś’Ė愞„¦OI-€ƒ<#¤B±RÅóR+ ‹iD ±f"ŚNkäbj‰„±B+Ęd·aM.tØš«ēć’.¹Y’J"Ž"lݾµö‡ŸųäŪ«ūǚś/i&Q„E8Qœ¤~}–į¹`Ņq¤ąœJ&¤®w…Ģ)Ī9ω(ā"—‹D”E.W“Źe9•¶×{~å1ŪĖ4źff¤2@}ē;ߑėÖ­“7®ågUāŠ©’сåŠóZa±V‰Ņ¦¬³&ŠjĀq„D 0ŽX”7g ŚHS*“…“2ųć?üČ'śūūŲ4śüU_Śo~į»mĢÆ„¢ˆ'i½ö›ž‹o<éG—XśČŁ”€½e[£®™?ÉĪ›’TĘ%Ń]Ÿ˜@ņ ŲØT"|Ū{hv;Lˆ=&A$“ßĻØ¾¶ŌąÓUŠw>¾ĻģŖüøŠ«æo üž÷æ÷O@!„’9ąR$ęœD‚Ґ18 -©ŠR -ŚTi‚ņ"Ö Ž¬5„ JƆ¬³fNŹV±V.ŹåØFāsć×ņuėÖŁ“]Õq/æāčit£N«ø k×n$[L(1 —‘ĮĮ1Śh4hX.ÓRŠĄóX.Šhč8ĢēœĘŽĆ\īRįrŹbŹ~ó7ż W^uŁēz*½Äó¼I„ÉYj֛ųĀ'愠źa°f ¬…@@)A±\ŌQ‡YųūŻČęŗ·WżI% •Ā>·„}•E „MßüĻ\ŪæŗŒøXĢcŃā:¼˜€” é £¤Ć Ȅüf°/… TˆM;y Ь% ”sˆĀ‡®^>etĄbA`xx/n»żöĻ|ē{wÜ!„ĢQ\)‡KīH)‚2&g2f\ŗĀ±KE2ö<įs.Ļ“n«%[Å¢šk5Y,åßWÅjUęr9U.—Õŗuƒ xåkūntŌ€,M% ŖÕj‚š”!2P«Ń8 a¹AKA@£(OółˆĘ±OƾnĶü÷½ė?Ÿ7o~)ēēp0 @/|ņKÆNh` ¦Œ—h Mw2U…A©XœÜ÷0ČšFšóÆ$ѦŗĪ ņÆžė? īĢ̒̉’™PX¼tÅb,Į“FNz”Õ“<Ć“āH”%8’02)u¶ TZ} —|ōĶ'¢œėž'`Ć{µz Ūwl ’é‹_~×ÓĻlŚÄ1į4"„FŅS\*Å-³»‘')m*Ėšuߗ~=/s¹š,—Ėr×®]ŹśōڼŽV¦ĻŅQ)²t0aV ‘0 I£Ń Bō“’Ęß®[øpńźB¾˜ŒdžŠ¾ņW_ĆīĶ{’ʤ:ĮĒ ä6SĘ(?¢ ›x”?~P–łįm» %%æŲćWp 8„801»„A§ŖK”’PŠ#ēūX|ÜJŪ†“%™Ś žąB”I¶!ƒ¦³‘® ‰% 1²OńŃ7ƄėtߟR qctlĻ<óŌ¶OžŁg× Žtƒˆń”F„xEĀ÷}YĻē%QÅbQś¾ÆvķŚ„|ßWVĖk¦_„€›€£œé³tŌ €,‘É\œ°Ā¾š÷Ÿ\ŗōøO‹å¤āp*śžĶ·į釞MŠ~JlbŃärå¬Łļśryļ°÷ŅöTūé^ü š|ßq Ō5VÉTÉ?‡:”ѼRA))9.B¹T€Ć„mĄIŠLŅ™-I©Š E‚-t #÷’„!®d›XŲėį]{ĀŪŃ×) ģ?PÅż÷ß’ĶĻ}ńĖ.–'s­Ąć!§4.°ąev˜Šįͱ¦9¦@'u<°nõŠŅåVŹĒ÷}Bó·“īżĮżø÷¶ūŪ™ßśü  FėęóēŠyøī̇ˆ“™žę…nI?RIģČõa<ßPJ@;ś Lū¤¶–_RB*Ļs±tł2ģ² dV€R@3C?3BĄ>7f4}ø¹±X5TÄ{.Y:Å94Šl6°gĻKņ¶ŪnżļŽń£{]™kE9°F#l6›¼#9Ē~Łć³LņŠŒĢ©śŃžĮ˜7xK±Pt\ĻÓŚrŠ{vŪóŪń³ŪļK›efĄ>ż˜~h*Ą/l|ę]›Ūü~½2-«5ĢZ#Fs½š[’Łż ĪØl–O[ĀO†MĀqŗ©‡Ō#ŪĪc…ĄōĶ€ źdžĢ:’6æFŠŚź¢ ŚsØĪV|zg÷?w ė9l/‰\.žzÉ„—žķ Ė—Tb‡ipø\¦œsR.—³!»ĪŪę˜e~ą“dÉEŻŪÓ·Äv"D›–Ä9Ē÷¾t+€“ŖO7ĒH;łX {0“_)… čtŪiR³öÆ õ)¤Å3PąPŲQ4)Ū«Ńł™\żĮ¤›® ÉŁ ģŪ‡ ŒĶ¤[;COfš}ču¦BėŠB Œt©®I6”<ƒ°•R$®cŒܹa&Z¼ūΈQW*–14““÷moż•OAr€ėā ŠZ­–,ųXgųNzÕ€G}`Y„§÷·|?×düMõMßś•;Мh™Ō^¦Ķ~J’Ń\€f|{Ÿģv—R"hLOXÓæķµ¬Ö×ö ”Ā.§„˜éĢĆć6Ó’Ś)۔ĺ8€ī °g÷NS; ‘Š2ĄŹ&č*?’Éī›zÆQ,‰C[EmBĄ®Š ¢›•0¢K™„¾ņ_Ūr,×uP)Wpź)«ŽxÕež.„ļ)]Ēqœå2[³f pĢa×Q@ÆĖ•æZ,½l¼æ›ößōäf<³ž¹$>AFM›D½0=6B YkBšƒOøµZŌčüLÖō3ƒžz0’+·­'ŹOsUŻ)ײG  äIlzś„Ķ<+ Sįb×;łĄ­P"œKd…@*œˆ±Ģ÷BmSнcžkćž)ŽC@)ƒļēŠß×O×\rŃ_K—ūĀSJ¹Å*œjµJ×®]ūŖb~ąU"z蔫{zz/÷ż(Õ \7K/cÜņ•ŪSŠ4É|±7@ŚÓ4I)…V#@u7UŪC~égģ0ĢeĄ Ė“tc+œō ’™­©cHlećˆi?ÖČ^x.Ń}šT‘6F”2b£KĮO3ąÓœ ™RšŃHŒhJ’®—@g RJqדUŒÖćīG"ŽĆP,±bŊ“ßõĪ·¾ÕåĢBx® '—Ė9[¶lyÕYÆ@*½„/åóønšėßM|÷Ė· h„@RĻO2č¶=Śį…¼ģ9ƒf€ uüķ`d†ń­éƋe.zćŲy ”™3YD¦ćƍĪ”ŅVß$Į“Ōęį‘®?{”īå'Ņ =%Mč&‚`ӆ  $ŠÄ pĪ “ą $ķ¤¬£2¶•9ąP ‚Æ®Ū1õ …ļēŠSéÅź×žõ±žžŽ²®/ ‘7Žį ĘbJ:꥜GśxO„÷8ßĻ™>¤ė„ā<‹MOlnCżan.ɍמ;LŠĆ­zŠnkg›ćÆ’O»ż.X:ˆ³.z-ö5»ß2(2‡:gjķægĒ^<»ž9š˜#ŠxŅÕ×fū͵é?)x`s¤ˆæäZń:V¾vĪæź¼¶cŌA¦üÖ./#f{Ėf÷LR6Sh„ķ!¶3–Upö =h…\čÖ]H:śŲhF›%0ėėi]•,Ļ&)P±0›»GlŲ6Öõ„„č.N„b +O<ńĢ _öšõL gLŗ=ūö±WƒpL €BÉ’t>_š<Ļ?HŲOį{_¾Ö܏Z„Šé暲Ł~³&•ņ¦5ż³Y~H†zhzŃń‹pķ×LZw£%¼© ·’$evö MZt€X‹€M¾L#Ą5Ɲ3Ž«čzÓŗK …lõb"Śņ¦»ŽÉ@,”tķ5ZŒvgŒ€1Šo=ųŅŌG%®ē”·ŅG.ŗč‚()=å I‚Ē,s›[·n]oo„÷Żv¦ąTaæ-ĻnĆÖg¶gü~ Ø@†¬&œ5[eœž¬œ0Gf¢P ½ó{ńīßæ1żx†‘Fk­$æųS³S­GCāZšH ÄŲ;ZėźF½óā! 䥄Lšx ˜ŁJWd³IRö;„ ŅåyZńh„ĀX˜&­0iĀZ°48~öl÷b!J4P(±rÅŹÕžwöipinR§22ĀLĄ1ks TŹ’y±Xņ}Ļ„4) m'…ļß|»Év§‰ÉƔB³ÖŅLoCń³żŚĶ1²…3ZėŪ¼~ÓńĘ“öŹ—rųµægŹEūG­˜h„h…B%Į·9 ½Y©€0˜hE›ha¢"c“¦(ø€ß¼j9z .¤PmB@J;„ĆāVL‘Œ8¼„Zk"ā&Ř njż|F€ŪÖļņ4„ų¾Žž>rŃEž>”r””K¤tół<;Ö­€cjcėÖ­+õöõ¼ß;ņ’ŌƱgė€d|~cBK.Šj†‰²9\ž·ńš¶²^ØL­ÕģŹhžB%_’ų{Q(¦śęźĻA™ƒR`Šø&Ńö4ķą`ēEŸJ2č†A ŅÉĒę»LݘVfĄŻS ™CĮ÷}ōõö‘ó/8ūw!N§p¬FŽ-P*}Ą÷sIĪ7ķ’Ņö=Ų½ł„¤Ä&ū$ž¤a¬(ˆ6Ɲ?ŃśöŃjłÄN;ś&ćŖ”ĀŅ•CųĶ?żņÅÜ!ĻÄ1H“tŽ—ŻļÓG8ųńŪŽE@ O£–‡Q‚½įxœ¾¬ !tė.!m_æŌ%P\Ą<’ōµC‘n'ĘwĀ¢ ™3B^Ļõ–ĄśĶcmǰ†1X@±Pĉǯ¼øÆ§§L7k«cFü÷Æ{C¹TYä:iÜ_ˆN“UįĒßŗ Ieæ¹¹³)æ‰^% Q! ŗ§”v£¬&Kõ›@˜ßĪä39žÆ¹p~õ£ļ:hWā,¢¢ų’^?ŸF-?¼ėõCX³ŖBIp®€H)µKø?€RŅ>‰ļ'H'śoW¢L/A“„±Ó—™Ų€ˆŽę¤%ĆĄO6ģKOÕqLBu”ŠĄĄ {ķuW½§ ŸOq ZnjČŹós9Ųé>ŻL’f#Ąó¼J l÷ܤ-ڵ‘A3Dv/1M>„²æ 9ž²~/d2Ve2ü.}ó…øž}×ĶhŸūE݃¶ōvś·ĢĪ\€_9wt;o!T’# ė”.:Źpcr)Išż‹” Ą¶KƔ“ꀐ¤XˆŠ#^ ¦ŲÉ,•pʊ•7PBøŒR§^§NOĻ>¶ś“Ž pß}÷ VŹ•K\Ē…ėź^ńŻĢ’{nY—4åŠÉ#4Ńū¶ø„tqü[aG ƕVėۘ>T& Hi€>ėóė½ł×ÆĆ%×½~Ę{õ}§#Ü79æa6ŌÖ ÕīĶsיłķrΊ^üĘåĖĄØĪŠćB$Źŗ¶ļæĢTAjō4™ˆ”0æD#Œ;z j!$°M”ZL€$ŻŅo]æ·ūB ĄC.—ĆŅ„Ē-¼ä‚ Ī„„8D)—1āŌs96>>NcĖ 8&@.G?–ĖX.—Ó­¾&…žō-ōšŻh„ŲöųĖž3ņjŠÆ7l…šaĘŪL?k$I/Ę÷oū$¼œƒ÷|ōx͹«oÆ®c„OÖܘ«0`†ģeIĀ! žat8€ńæßøyŸA™tōµQI;TuXŹžZ§'„Å]„ž­ą4æ'EB4£ĘžŽ9` 0ƒĻõQ.•qÖėĪx?‰įĄ€|£Įé±V)xL€b¹ē½¾gÓ~;Ķ}³<ö³ĒŃo¦šžčξI}‰BWퟄ(ˆŠØ5“jÓh IDATü}ĖzÖXµZ?Õų:N/L†ß²“—āßžm,[1tŲ{-ųŚĀ±UqmķøęŒR+ åą†`i^ŁĆ'~y%N*źöŽĘÖPé0P™ä čóĘRŸ?•˜,Ņ­a`ŗ k‹€BHąĪĒfPŪ5čœK÷ј8€rcĪĄośvtųGG½xą{/+Kó]×M€“Nó_xąĒ?OĄ! ūh ”ˆķG?5)(šˆ£Qk„ŚŹ ūIŚ«TPģ3!>Ē£øīWÆÅ{’ÓBśF…‚‡¤óN{œqØŻ“& óėǜēĪźč#xĻ%KńŽK†ą2Ė ©§’f\ėBI(‘@Żh~•iÅŌu–ƒiB`§}k—Ąv ²aĮ‡_Ÿrū„Pxž‡ŽŽ~ē’KVßāP ' ŌÉåj¬18H׬Yó’ €W ¹¾÷~Ļõįyz OźKV_šˆcē‹»Ó:hmocĒŚ-'S²Qz³i7AÄõń:x̵Ÿoāūv\—Ų©™Ńń ńįæų-œuŃkēd愜—±>ڵįŌ;˜Ł£uéPČwŸÅ7Ó£Ÿ6TĀݰ+äō”.Į%’©?ö§ŽŅIML•™źĀ¬ @› °€uėˆéd-?FFėՉ(»¤äIH°XÄńĖ–_E œ˜‡Qź4sj5z,%õ X(^ćznRõ— żŁūāńž€āRI˜¤@žńĄ){£)}óŲēVŪ !Иh l…IL_š¬> ā\żöĖńėų^+ÅCģĀ`2ķ4UJ¾ž„R ɊsøiµŹBŃ&P:ČØ3‹»! „HĆ{é;åTĻ”ųĄĒį.cŚĒ·™‹kÄcn2M×”LZ1‹ĄŻöOĢFr 3MšJ@‰Āŗgöw ”!ŸĻchhŁIóTJ„h,Ą –€ĒHHšØwßw÷„Ry~÷Ž?©ļśŲ}PČ[&  ü³VA6!Å yo3óõ` .9šõ&źµ:„і\2€’łēÄyWœsˆčćq.E‚0@ĢĶŽ)„@„˜K= „©,x9ĖūŅųŽŹŲ©“”P.ųł˜DEhµšh☷#ūSŠ™Ė+ųÄ/Ÿˆåƒ>„Ø·bŒÕcD\芔4X“8‹łĶ#0ĆJ”^£µī²W‚ĄD}-öC žÜ61嚈IīéķeÆ?’‚_¢uŸy÷*\æz\G!6¹±©-ą\fĄBˆD ĶĄ4×D'‘LBšŲ¶)¢ČDzzŻĖ/æąJF9c”27rXęéąąŲ1į̬ū !×/üšēz$[öŪ-&¾łé­)*Œ4„«”J¤€Lš-@¤J­KJéŚ{Fpö„gįś÷]‡|1?­õ*˜\ś˜£ŽØc’žŖZ’Čś[¾ü/’ö9!„āœ+J©ŻĪy|BÖ¼ĻRĪwQĪ;Ø©yN2ēl“ŒĆ¹/­9ō™(NZ68łż”Tˆā££c»@!k­Vš¹śź^Żī7¬Ysé -Yź÷T*š}„ŚÖėŻŽ¦‰ąŚ×-Ą•gĢĒ-æ„ūžAĢ$ŃS©RÉ<›،{g[;š#„ĀĢ Hóž—FC4#Ž‚7™ !pC±XĉĒ­ōŽ‚Chą0³F# Q%nĄŃ:TōØ…|įĻėÖó/ż6?»­z Œ0“[ƒ9Onõ$ɤ-“Кߘ•®ļāŒóWįļŗ=ż=ÓZ§=¦Qb¢6;wLüčĪ’ü³»ļłŁ£QBÅ“T*1>>ńēü2©$€ī™w‹śKØķÖŻyˆ,“žxJ‡½fN©įl=źÄ P że/cį“_)-ŲFĘF·DB•J( žżŪ~|Ū¦·üüW~åśĻŸtāI'ō÷õ#Ÿ/€9̌\?øĶā:o»p ®[½·><Œ‡7"ŒØ2­ĄĢ,ō!¦ÓØA„Ž „šąó£øņ5‚M“N Īcٲågņy·„‘"ŌQ„8q¹L›Ćеk%ōhń£’ŽJpēwVVžtĀéŽćŌü_Ļ#šØ}Qk3‰l€K’›śØYRƒM=ƒe\ų†óqéuƇćNļ’„u1Ńl6166ŠĻ>żųĶ7’ū'ŒŒŌ9ø¢’Ję8BJ%8=0ņ$ēܤݼŠå‹{ńĀī ¤w¶2"Ķ›‡g•¶”Цæ‰`É`/¦bU„Ā(āźČf!ø¢ŒIE ā˜PÄĻmÜ“õƟ’Ģ›~ķ7~õ^wÖźwō÷ Šr© ĻóĮK»1„ ¾ƒw¾~ n¼x ī}f?ī~j?Ŗ‘Tha Ø©ńČ Ą^H%-“ip<²ylJ@ļłčļĻ]rń9’ōžuw)B‰ę„ ¶PŅ5ÕY—&…utT €bŃ»Ń÷sĢu;“ڽę6lJMyŽÓB =¾m}\źÓĄ °ģ¤!\qƬ:ū“­ĻšūB“Z-Ōė5ģܹsģ¾ļ’üm·żä®DėS&©£„RœSŠ„Ä/ģŚžˆͦ.»]µb!~ņšŽ$PAģϬ¼Ńö{X)“ZkىKū§Ü«qcŪ®ŻĻB”R‚ĮјFB*.Įēžé_žäņĖžūīeÆæä3'®XybOO/ ff#5cŪ¹J¬9m֜6›÷6pū£{ńĀž8˜Ņ‚ŃTĄ†„ūʆµ0ŲZm"ę ®3łÜ„PŻ3°Pĉ+–æįĒ?„’傰Љ'ėo4hķ(wŽJąēü7LYłg¾‚įŻUŒVĒĢ4`3aGŚWāF" ģ®Ź@§œu.Ė„˜·pŽŒÖ•5÷Ć0D£QGµZå?±įÖ’÷Æßüē0 c€()…¤ŒI„Ą9W 1!qD'|ā‰gʃ ÕRR­ŽN«OŌĻM2{Z°‘ÄŚ9< Ą2=± IR Ē׬˜ š˜żrÓ /l%ŗĄB2)¹PŠ ĘĆ“=`€B©gJ…G·Žįü•Ż;1Q3EhĮĀŧS*X¬”C u¼Ąaa¹L›ĆĆGµpT €œŸ?ŪqŻI£¾³ßĄs?—˜ÆRQP%!‰…ĒHšlC€ž}8uõÉ8’Źó°hŁ‚ÆĒŚBÄQŒfK›ūĻ>÷܆[nżį_=’¦½VėSJ%SŠ(NHL¢ˆ’P*)Bāz³¾‡óxT¾+3TJyr -n&r*šĘܝ)h…‚‚Į:+‰@ā5+» „ēo6›ÄQ”ÉįH„b®€øé8‘ŪjI.JÄq±ŹSžµo~ūk?¹óžŪŽqć/’ÉŖU§æipp>+—µ[ą0§Ż-8k•óŽ~Į¼ż‚%©ĒX÷LOl«aßD™ŗ Ö#e-xvwķ Ąó}Ģœ_.õźńˆpʈ27=04DÖT«dŻ“Æō+‹Ž:pū·—O]pņ’ä&µŚļ’mĻoOĢyj,’'Äéēž† Æ:ļ}ų¦"«ń-ŗß ZØ×jŲ¾s{uŻĻīū›’ųž‡:_JĮ 8$‹€(†RS4ō„Œ eĒ1oµš/ ĪWh7 {¤vA_[÷5Ūp bŠeōĆL,ĖüŅ<·-ēx]°e0Ž(Š06>ŗG¢(8'Ź…J¹h‰¦ēÅ9ʄ”¤ęå…ˆœ”ņĄqńł/}åcēœsĘWÆŗģŠæ:éēNķééE±P4ųM¶LSæö—\ÜpībÜp.P 8ī{öŻ2†Ż£”ŌƒmøŠtmī6B,%Ęņ…=SΒé]÷ż§$‘£(u”氁ZÖLdє¢U–ĄQ'ņMv™ėŗÄ&’“]ļĢÓ›wÕqbĒ”X²b1Ī8ļtœwå¹(2?jjc|Īźõ†‡‡›žxüŪ’ž·|-ŠbpHI%eLJ©„CgLʈIL€(¤$!‘*’H:åx< En|\atoG×H)A©źźŸ°ø[÷6*µD3žĢįį&"’„„Ż% ”§ü¤”abļŽ½O!BQŹ$•’_{_$Wu„łŻ{ßĖ„²²J*9Å¢BHBT˜„ĄŲmcLŁm¼m\ž¶§£=ĶtOĻø§ĒaGĢŽ™ ӞhÜć·gŗĒöŒglÓ^  VƒŪl Œem‰Ņ¾”Rµgę[ī=ēĢ÷²*%Ŗ$Ą”R~ D)+3_ę;ß9÷œļœćˆtŽ:Ɛ¦–.„ģīŻāFG©£«‹HkVŹ8Ń“ėžŻųŪßlüŌu×ä—\|ń—–Ÿµ|é¢īEČē;ń3š<óŖ‰Š9ķ? ķ? ”e<ńĀÖļ˜ÄČhĪ%ĖK™½cõ® Ć?ƒ3ĻXz©Öō DeŒQ”gĀ8«JĖjZŽ”QK“ŅŠŚ@©d§ŽŃÉæ8ŠŌźxė…ēąģ·.Ē9kVįÜ W#“[ø™å•`Öš)ÉģGaˆjµŠ£Ŗ6løó§wžó?MO×cĄ ³f„=a֊œÖž#X« c0¬1Q”eX0[8g§¦¦huo/”·ÓćcwÄq|“#š-s+/]…_­ß ķ5ƒŅ†ų¤“ÖŠ¼Ā{s¶z˜xEāä8cc‹žó’Ó`Ųŗuä1„”ƒhćDiĶ*öXK3ł¼t:Ä«śśøR©p„RįB”ĄZ3M²&0; vkzßO6tĻ]×öcŸ¾hMßæ[¾|Å鍈Ą÷30ĘĢå^„ŸĶłļæ°„÷_X‚cĮ‹ūg°e_/Ö°óP »×±¢4æŅQ!Ł(œõs]ĢF{ ŽM”Ż™[®ūŌP ęZŽXDĻö|5ÜMĻd3øéū_}]^o¶,Ęb‚³a`¦:ƒ÷Oox~Óķ?Zū“0 ݬį+#"B Š”ÖŽXY@YhCėXXY€bk¹Z nÉĢ õ÷÷sć*•J/æę‚±žÅK–p†ĆQølĶYˆ¢“u ĻĻĀó2š}o6‘¦“nÄ„‰č¦é<}ōZ2°ĄQr}ŽŲ9Dzųč{Ö̒٤ْÉɉč©õĻn„5k+6¬½˜µĪr„²ˆūū;×'ƒƒƒ222"SSK¹£cū¾Oœˆv"ā†~z×O†äŸļųäu×\wÉÅ~įģ³V.[Ō½łŽd3™“tųŹŖóĮÓ }½]čė=^æFŠT« 5|QlX‹ņ“{&’šv½:_Ó{y³Ńrą";윃sߟ?<~=Š(‰9Ų8NBżZūöļ›|nĆó?ŗū§IØoq„įkMPLŽČ)„c,t#ż{”'WŅykm…V Äåįaž„°” .Ąæ™ž\Åчs¹< ēOč]“z)~³åČX,  91Ž9ńū+øŲFĘNö, 3Ī*ubqńHĻŲ1 ¢0āƒ¶@Z§ C;Fč3õd8›Ż-C蛿Õ H„BR(x:›%=ęH)ķ Ä‰Hęε÷ßqēŚ_Żõ±kß÷ŃKūū’råņĖ»ŗŗŃŃQ@²ųÕKużæ?EūlÄgcT&Ę·yž("Öhd „ީΈ"U©TZ2ŠrpĶ5Ÿ|īŁē†«]]Ż¹\vvČĒėŃ ?Ū€$£O”œoėõfff°{÷®7m¾ćε÷ŽCĬ”f%G¾&rŹf ­B×Ū‘†ūÖZ‡eĖ\|č÷õõĶzEQJ)Üx#¦~vū/ā8üpŅ[oęµå¼s5~³éD{€0”čD '’hwgĆ¢cÕÕę s]sä÷® {xt3˜ abļ¾żĆJ9њXŒŲcķGŒńŖų¹œ4Źd ćPJ”\.3"ąhļ^īīīfĻóØŖµ³ėP±"ėßu÷CwŻu÷C÷]sõUWõ]tž «W­¾xq÷b]č,"—Ķ”ŃŅh÷}=Įˆ¢333Ų²qėć"¢D<å t¬HI'©8ŽU6»p«ō‰Œ–"€FėåÄųįotw/śĻł\™LZi^ŪĄü#Œž L ē,‚0DPÆćšŲįhūKŪ’õ£OÜśō³w$Y}'J)QڰsĆš ‹uh닲eEŲfElh­«•J®P©poįõ›=FƒĘMü,Š¢o3üJzxēyøłū„ēźö‡6ʁĒŃŚ6r™sĆL µW®™÷×%1ŌėulݼõēĢ$ššqäüN¾ļ“2Ęę$ņ”ó6`—¹ēžGøēžGY½Ŗ÷ō«Žż§ēÆ~ėGO?żŒīb±+e2šŒIóCæ;HŚä4SĘę-›×mݲm<~ZSŹ2+C¤@£=øÕŠRŠ0Ž’ųŽÆŽšgŸ’ŁLöÜE‹z µ†1ęØq`Ē|¦T –*ö˜@Ī!Œ"„a€z½Ž=ūöģaėÖµwß}ߌéé ,ˆ”h­Y#ĢBZ)mˆXœœÖmŹu+Ņm­]WWYkiĄåM›fŻģ1BEyąö]pњƒ==o9=ćg0ߎ¬ļįÜŽÅxa÷4D'…m•Ŗ^IK€J‰#łLŅw Éōtf±złŅ¾ Fl-Ę'Ęėæ}~Ėv„”8(1šX³qŽą(åņRiNVpÄsĢEG ˆø§§‡ĘĒĒļūع,ą“.x×2ŪGöīyiĒŠMZŁÆ}äƒųšŪ޶ęW®8§Æ««K är9$Ÿ™c3 _}6]ÕZ »÷ģ®ß>t×ß&’ā`”!ʊh-bŒä^¶€¦uŠRŠĄÄÄæ°mŪg …'ń¼ĪĪ"“ѳۀ¶«¹Ÿ&£'‚sQ!ŒŅlžĮvļŽóųSė‡ļyęhoƌ™Y‘!&&b߉ˆĖ@Y(ceEŖ.1ün×ÕQµq6›„M›ś82Ü?Ö5øajb]Ē×åó ÓŌÉ،«śĻʖŻĻ%ŸT÷ RqбéĻ•‚’Ę(²„D„J—žęüo.M$FQˆżū÷½˜<„4keÉy[ĻćB„ĀC„łµöMßϼĒJ‰ Rår3–¹ęēµ¶œĄg’Ž_=p÷/īš¾³–-[zÅ»ßń‰•gŸż‡ĖzĻZŻŻŻm:: ČåņČd20ŚĢź ŽG'ÕZ•Ź(yģ±’Y9<>ÅJ‰8ˆ6Ä¢ ĆęŖ‘LgFŅ(§eĪž “$ĄßŻōwžėĶ_¹‘Ežf‰³¦³P„ē{ŠM ”Ģ®äj2ś P­Veļž½»vīÜõȓO®æ÷…­#ž>¹”•L¤X)ĶD cˆ(IR9QÖ²°:,P·DE×0|k§)Žs²½æŸ·½rĆŸÅŠL}ęć?£ąŗ"!ʛ7pĶ•ąŪkŸM Ś*D54O"ĒL ŠdüHŒ?C ĀųлΛ’÷Rõ_Ō±gļž'9cD±ņĮˆ}Ņ:"Ü|ž?Ž>`pP**\,–tJĘc$£ŗEÄgĄß³’¾Ū~¼öŪ¤õ’)ŽŻ}ÕW\»źģģ=ė¬5‹-ņ Čåē"mtŚŲü”&‘8ŽQ™Į”Ź(Ö=µī—÷ŽūнJ餓 EĚ1åEˆ318P”Ė//½ŗļ÷j±÷ŪČØĖ.»ĢXk37ÜpĆe—\zŃ÷–±le”Š™äLRk½uQ7’9nļ¾½ŪFFv<üą#żāąžŹŌŃFÆ439%Ś""6†‰Ų#_ı/JYqÄģH)›‹;ČZø®®ˆ¦§§)—ĖÉšŖU }ųkŗ1”Rś–[n)|ąź÷īķ]žéČfēĪ!yŹ?śėb×”Źó”Œ­= q†^ø0-„™&Y0Ytd÷’Ćæž×[21źõFv¼${ó×>±gļĮ Ź’Ö‘@×a\“®wA6›µår™åXŻMó_ć…Õ@„¢*•Š.•Jz||Üų¾ļ…™Œ15å)%¾ÖÉ­‚§”õŒÖ†H›ī®bž}ļśŠźU+>Ņ»|łE=‹z2łd³É¹¤l:§(¢Ó3SŁ12ł`łŃ›)?±.1&8„TĢ‚ ƒø †ÅØÄ›śśCCÜjŠr@ĆK‹Eٹtė­·>÷ƵÅwń/nųė•gÆüó®®ī|##œfńłŠ”C‡U*[öģŻ³ī”xbr*„³ †Į§į}ĆÓ;'lŒ!b!O@¬”ƒvN1;ē‘8*ˆė\4ŁÓA…J…³ŁoźėK<Ž< ¾W{©O?żtż’·æķÉŅ[–¾7—Ķ„ .š 2 ńÆ»j žžöõPbęĪż"ŽÜ{ų2q½Ā9€ĘBĘU—®˜?T–$ū„vļŁõŅž‡'•RBJ³ÖÄŹ€TģČčXē’ć^|Ó±CCRNˆ@*&"žīé”%33:WĢ™éimØ{¢µ§Ņž}OąMNWķ]?æļNf³6_Ģe®z÷\µāģeWžV:żm„RiY”Pš-åĪ9LNMʛ·l~š¶Ūļžļõz)"a­Y!²pPŚBŪ KD®«+¢l¶Ōnz£Qą ††ŲZćĹčė_ūö-Z‡ß¼ā}ィ÷ĢeZk„>]yģ7럟šš:b±ŸRJąybɑFOD¬ČóA,Ī <ŒƒĒĪ„bßEEKaD£Å"ŖU^p¹aųÆŃćχ”!ąśėĒæWļ­æ·ŠY„1ŽQGłä%®’Ć‹š­Ÿ #&N’ĢP:‘ö%ažQšAŅ/©Š2 ż“I› ĘēÆyū¼ļ)ŃEjµ*¶oŪńˆ’óæ%›„ØØ^Ńł’x8Ģjtt”ŗ»»),mn¦C)Æ®”§Bķ)ĻčØA&ØĘńż<ō "}æ1¬½\.óö‹.øØ«{ŃRĻÓŁĆcć{~óŌš&øFNC‰¤ _ć”UZĒŚPÄŠqM©Ų„”³ÖR__ßń’ŗ',Z’Q@ßą =óĢ3*K=*(Ōu6ŹØĒ^÷<3m3š“!­“ĄH:f”hEL¤Óš^“E¤A;‡Ų'äĉXŅ`ēŖyźģ` ¢ˆ …ˆ«£Fw7Ƥ¼iÓ£ˆ^ߛ`Hzhńm«ĪYż‹-Īł¾ß¤ œ{™Œļአ—įįgöA˜ “ “„`Ŗœ“£I7‘>‡šģq@„±śĢn,?㨩ĘCE`ć“SSüčćėīQä!-ģ‰GJ<2¹˜0¾Ŗó’ń0€䑑F„¢ŠÉńĄņySgc€Ąˆö R2ykće,{ĀŠ>ńä³ė4‘ĻS̬!Jyéõ’R¬±Öā`=RQ¬8ņ‹\&cĆZÉ­XnE p-;He½½½T+Į‰ļĒŁ,…Ģ* _ Čph˜CmLČĘ„Ś˜Š0‡ž `‘@ ź¢T]”­+åÕ`LM“®iÕøjźZ×Ć0 ;;)ĶĒDd³Ł¬ķļļwĆĆĆT.— M%½×ÓųÓē’_|1®Œz, ‚“>?V’O®y{:t³éOźŻ!Ķ}©?sbŸFē_c»Ń§Žß4娾žļŲµc{„26MJ é$üg_³ø8Ž©P(p±X|Ż=£4€ ńšš0õõõēū~<66uvRh­ @ąHZy šIDATĄlźĘÄ5Ńŗ¦”WÓŚÕ ]M9ScAØŗa™½WHėˆÓ{…˜C–LĄ@@Y¾sa&“‰JZŪ%KfØQµhEļ“hĢEår™ÜNßGmŅtE¢X‘6ĘJ >ŸĀ0 £¢ €z]<ƦTT “®©¦{‘©)×X©z‡Rõs Ć0ŚēŪÄųW1€–Ėś–&ąHčļļwDdGółŲŌjQTTAP©ÕUŌDjuõÄqäā8\“hQH£]±ļū żGżł…7^kēĪīą”Ń‚ ĶŖ4RpżÕ#ē)°øTŹ›Aół©ēWs$I”b|žŚł“ Ģ‚:vģܱebbŖÖ’a"É9¢8Ī7‡’ox]¼™€$ĒŠÅ(ĒaĒA·ēÕ1{ÆdkJ5õnĻ«‡a‹ÅˆˆģŠpĆĆĆ“^Éo>“ģ ć@# ąß§śčØėķU+DQ¤¤štoļŽfå–ō÷wŹŠŠ;øÉφfŸ÷Møœ£!åRI>½’ą-笜¹®ŲY„g Ō<-ĀYßĆĒÆ<·?¼uÖ E8öŪ‚YÅ`B‰ńCļ8’ œ}ęĆ?Sļ?==… Ļnü f’”’š_;'9v!˜‚Joļļ|S•qĶß]RμCCsMcBcšĻččØr½½ Έ"äq ›oļ^éīīf²©©Ņs‚Üæ3ZNt,!0˜®nJ[5„¤.Ż|f<ā8ѾŲfįÓM·|uÚóŽv^w×¢“ū-yLó®‡1®żŅZķłPŚ‡Ņ‰:*}|ś3A؁ÉB±Å¾:ø 8r˜žšĀóŸ’/_¹łSŠˆEąHėČJy5 Ø[kß÷ćÄKž˜†rŌ>æWpÆ\ŠäN¼{äwĮI4pD©GłqēDE#ŗ)‹ršš”o.ļ­žC”£0Ūär4:r|źŖóńĆ_m†°†R’N ‚¤£Ć’gN¼æĄ„+.<óŽ_f—nټå@ )%’L’%Ī(§bq"EW(Dóv’Hxytp¼{儊_W“|`>Č«Ą›ż^_)Źå’üüŽ{’ßįƕé0 ÓAØó'ėžüś?@gŽ$[Ä”±ŻXfC’Äū#ž”ćK’ņ½ ¾6 # CŒv<üųm‰\:9ū³ē;qDā‚‚„J„Āåרž{3p2Ž+Æ'%œœ’‘‘wšą¾Õė58·šņ¬ļašż}MJ›j˜g_˜0ŠĪxĖĀ«ĪČjõ¶n{įéC‡*U"'š˜™ yĢÄ".Ī9ŹĪĢš™żoćwG›Z¬öp±(/m?|óääEq„…§ 7|ü謙ōœĻ˜)ż’dµ¹0Į׌/~īŖ_;ūajjėŸśķīž#­™P6Ėģ Dnŗ§‡Ž¬ģÆ mh%”Ė|ė­ß9øļĄŽ‡ėõ¹¤¾?ĻC=Ļąsŗp®Ė“³¾0„™aĀ._‰Ņ¢…G¤3źõ:^yi×śį ›%™™|_33»0,R”Rįr¹Ü2įmh4ę‚0H* DŸłą%8­+ ”Äų…,DyųĀg޳ą‹4†cLLLąŃǟųÉx4%ĢBžē98(e‰Ä…aų†JŪxżŠ&€B#X.•ä;ßłžī]»G~V­V(„š—Ÿy×ģ¤&‚8‹Ļ}čbtęēe-"‰÷Æ×°õÅ­/<łäoŸixc’É8¢”eĄvv²+/müžŃ&€VÄŠtwwó³[6’DZ±J†į1£€½{ ŽŃwfāż)ĘŹ3»šgŸ|ׂO/"Ćcćcxä׿žf³÷ń ¬ ²NÄAŠHž½Ŗ‘_mœh@‹”¬ZµŠoūŽmwīłŃĢĢ4Č-ĄWžā#Čg5“üĶæżČ‚“qŖæj­Š-/lŁøž©ē6Ļēż°Ņ_šük£Ń&€ÅP<óōĘ’T9|(8^.ą-‹;ńWt%>ūįKpފÓ|^ ŒBLLŒKłįĒžžHļ/³ŽŸ”²ÖZ×\śk‡’­‡“ŖąTA£?`ÕŖU|ēĘ.¾“ļ»oYRś÷¹l&;Ļ‘Ÿ¾ś2/ģ¬g½u·lzęŁē7oSŠDiĆZQ²EÅZĒēÜXO­Hw‰·æ5юZIpˆłŲC7=X ‚:ˆiĮ(ĢĖF‹ĻADĘĘ˃<ņĶ—{X„uģDœµÖ-™™”¶š§µŃ&€Es.ą‰_VŖ»v½ōµÉ©IÄQ„×āŒE’ øSӓxöłēݼeŪNRN“1äyā°Ģ·R¶IöŪöž-Œ6“8QĄ7æń­ÆļŽ»s[µ:ēģĖIą8«ńˆÕZ{öģ©ß~ē]_”hÖLÄ,’,Cix’ (õžmå_‹£M-Œę(`jj)mŽžā cㇹŌĮ“pBšhP:éwl| >ńÄ’š›Ŗ9QzNņ+ĄŽÕŖUķ³’I€6œhDwüÓĆ/¼°łcØõ“eXōђnĄ ƒćŲ°į¹-÷üüž»d 2³”YļoL,ZŪ†÷oåYųmĢ”M-Žę( R©šĶ7ż·æŚ“e敏(ŖµÄQG.Qr2#™įœElcTk3Ø>„›6ģūßßūį—%Ģij‰æ4ō—𲳫/[ꌎ’äĮI5šTEcnąĄĄ€Ž¢Č²Aö?üé¾~޹ē’ÉāÅ=^.—G6›…g<&BĒĆ:&''eĆĘēׯvūŻ;>19ĶL¬!Xg6‘/DtŻ9d2AĄžČóžŚxuhĄI„”Āą ¾`ófcŒń©PČ^żžw®9oõŖz–”.ėYÜsNW±« ØV«Q„rxĻĮу›·lŁö˧Ö?»Q)'DÉFd8å\Ģ> ²ĢAĆ(ŹŪžžN7Ō‚[pۘm8‰ ”Ņzo>oĢČt¦£Cē¬ęŒRyLöœ¾•geM¦kƦ­»!¢DD„æ'PJ˜˜—Ōū™ČcPEQ±XŒøV_…ÕʑhĄI„ę£Ąö(ņO‹ćŒµŁ¬ļG9ņ¼¬°—Q_k2ĢFKJJ)њ˜Ł œR66” cĻF¾µ”1&`‡W­b“½’I…vš$Bs»šiqģXߏ"ꎀ€”sHé2LO$h,KeAŖ³Ru›”Š·…™m†IāÆmü'ŚĄI†¹„ƒś‚ 6›®®.Ć̾ˆų5_¾gŒ!"a?b!ß'GDYfĄ6ž„ačśśśeævč’”œd˜3Š!ŽŌ×Gq»|>‡aę˜ń¼šŠüšh] µ­EĘU#Ļ«ŖČÆ9„źD„a1Ģd2qŪųO~“#€“ĶkŅt„RѵRI/™™ŃaXŌn‘U‹œ›ÕV«y6f\zzzØR©p©TāR©$éVäö˜ļ“m8‰ŃLƒƒƒŖR©Ø™™†”Š¢HįÜs“ݶ ŁlVr¹œ‹EI ¶ĖÆmü'/Śp ąåĖ0o7©Į¦6-ĄچŹ M§ŌB³ĄR“žŌB›ŚhćF» ŠF§0ŚŠF§0ŚŠF§0ŚŠF§0ŚŠF§0ŚŠF§0ŚŠF§0ŚŠF§0ŚŠF§0ŚŠF§0ž?¢reG9UĘŃIEND®B`‚cinnamon-control-center-6.2.0/panels/color/cc-color-panel.c0000664000175000017500000023560314632072346022563 0ustar fabiofabio/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- * * Copyright (C) 2010 Red Hat, Inc * Copyright (C) 2011 Richard Hughes * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA 02110-1335, USA. * */ #include #include #include #include #include #include #include "cc-color-panel.h" #include #define WID(b, w) (GtkWidget *) gtk_builder_get_object (b, w) CC_PANEL_REGISTER (CcColorPanel, cc_color_panel) #define COLOR_PANEL_PRIVATE(o) \ (G_TYPE_INSTANCE_GET_PRIVATE ((o), CC_TYPE_COLOR_PANEL, CcColorPanelPrivate)) struct _CcColorPanelPrivate { CdClient *client; CdDevice *current_device; CdSensor *sensor; GCancellable *cancellable; GDBusProxy *proxy; GSettings *settings; GtkBuilder *builder; GtkTreeStore *list_store_devices; GtkWidget *main_window; }; enum { GCM_PREFS_COLUMN_DEVICE_PATH, GCM_PREFS_COLUMN_SORT, GCM_PREFS_COLUMN_ICON, GCM_PREFS_COLUMN_TITLE, GCM_PREFS_COLUMN_DEVICE, GCM_PREFS_COLUMN_PROFILE, GCM_PREFS_COLUMN_STATUS, GCM_PREFS_COLUMN_STATUS_IMAGE, GCM_PREFS_COLUMN_TOOLTIP, GCM_PREFS_COLUMN_RADIO_ACTIVE, GCM_PREFS_COLUMN_RADIO_VISIBLE, GCM_PREFS_COLUMN_NUM_COLUMNS }; enum { GCM_PREFS_COMBO_COLUMN_TEXT, GCM_PREFS_COMBO_COLUMN_PROFILE, GCM_PREFS_COMBO_COLUMN_TYPE, GCM_PREFS_COMBO_COLUMN_NUM_COLUMNS }; typedef enum { GCM_PREFS_ENTRY_TYPE_PROFILE, GCM_PREFS_ENTRY_TYPE_IMPORT } GcmPrefsEntryType; #define GCM_SETTINGS_SCHEMA "org.cinnamon.settings-daemon.plugins.color" #define GCM_SETTINGS_RECALIBRATE_PRINTER_THRESHOLD "recalibrate-printer-threshold" #define GCM_SETTINGS_RECALIBRATE_DISPLAY_THRESHOLD "recalibrate-display-threshold" /* max number of devices and profiles to cause auto-expand at startup */ #define GCM_PREFS_MAX_DEVICES_PROFILES_EXPANDED 5 static void gcm_prefs_device_add_cb (GtkWidget *widget, CcColorPanel *prefs); static void gcm_prefs_combobox_add_profile (GtkWidget *widget, CdProfile *profile, GcmPrefsEntryType entry_type, GtkTreeIter *iter) { const gchar *id; GtkTreeModel *model; GtkTreeIter iter_tmp; GString *string; /* iter is optional */ if (iter == NULL) iter = &iter_tmp; /* use description */ if (entry_type == GCM_PREFS_ENTRY_TYPE_IMPORT) { /* TRANSLATORS: this is where the user can click and import a profile */ string = g_string_new (_("Other profile…")); } else { string = g_string_new (cd_profile_get_title (profile)); /* any source prefix? */ id = cd_profile_get_metadata_item (profile, CD_PROFILE_METADATA_DATA_SOURCE); if (g_strcmp0 (id, CD_PROFILE_METADATA_DATA_SOURCE_EDID) == 0) { /* TRANSLATORS: this is a profile prefix to signify the * profile has been auto-generated for this hardware */ g_string_prepend (string, _("Default: ")); } if (g_strcmp0 (id, CD_PROFILE_METADATA_DATA_SOURCE_STANDARD) == 0) { /* TRANSLATORS: this is a profile prefix to signify the * profile his a standard space like AdobeRGB */ g_string_prepend (string, _("Colorspace: ")); } if (g_strcmp0 (id, CD_PROFILE_METADATA_DATA_SOURCE_TEST) == 0) { /* TRANSLATORS: this is a profile prefix to signify the * profile is a test profile */ g_string_prepend (string, _("Test profile: ")); } } /* also add profile */ model = gtk_combo_box_get_model (GTK_COMBO_BOX(widget)); gtk_list_store_append (GTK_LIST_STORE(model), iter); gtk_list_store_set (GTK_LIST_STORE(model), iter, GCM_PREFS_COMBO_COLUMN_TEXT, string->str, GCM_PREFS_COMBO_COLUMN_PROFILE, profile, GCM_PREFS_COMBO_COLUMN_TYPE, entry_type, -1); g_string_free (string, TRUE); } static void gcm_prefs_default_cb (GtkWidget *widget, CcColorPanel *prefs) { CdProfile *profile; gboolean ret; GError *error = NULL; CcColorPanelPrivate *priv = prefs->priv; /* TODO: check if the profile is already systemwide */ profile = cd_device_get_default_profile (priv->current_device); if (profile == NULL) goto out; /* install somewhere out of $HOME */ ret = cd_profile_install_system_wide_sync (profile, priv->cancellable, &error); if (!ret) { g_warning ("failed to set profile system-wide: %s", error->message); g_error_free (error); goto out; } out: if (profile != NULL) g_object_unref (profile); } static void gcm_prefs_treeview_popup_menu (CcColorPanel *prefs, GtkWidget *treeview) { GtkWidget *menu, *menuitem; menu = gtk_menu_new (); /* TRANSLATORS: this is when the profile should be set for all users */ menuitem = gtk_menu_item_new_with_label (_("Set for all users")); g_signal_connect (menuitem, "activate", G_CALLBACK (gcm_prefs_default_cb), prefs); gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem); /* TRANSLATORS: this is when the profile should be set for all users */ menuitem = gtk_menu_item_new_with_label (_("Create virtual device")); g_signal_connect (menuitem, "activate", G_CALLBACK (gcm_prefs_device_add_cb), prefs); gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem); gtk_widget_show_all (menu); /* Note: gdk_event_get_time() accepts a NULL argument */ gtk_menu_popup (GTK_MENU (menu), NULL, NULL, NULL, NULL, 0, gdk_event_get_time (NULL)); } static gboolean gcm_prefs_treeview_popup_menu_cb (GtkWidget *treeview, CcColorPanel *prefs) { if (prefs->priv->current_device == NULL) return FALSE; gcm_prefs_treeview_popup_menu (prefs, treeview); return TRUE; /* we handled this */ } static GFile * gcm_prefs_file_chooser_get_icc_profile (CcColorPanel *prefs) { GtkWindow *window; GtkWidget *dialog; GFile *file = NULL; GtkFileFilter *filter; CcColorPanelPrivate *priv = prefs->priv; /* create new dialog */ window = GTK_WINDOW(gtk_builder_get_object (priv->builder, "dialog_assign")); /* TRANSLATORS: an ICC profile is a file containing colorspace data */ dialog = gtk_file_chooser_dialog_new (_("Select ICC Profile File"), window, GTK_FILE_CHOOSER_ACTION_OPEN, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, _("_Import"), GTK_RESPONSE_ACCEPT, NULL); gtk_file_chooser_set_current_folder (GTK_FILE_CHOOSER(dialog), g_get_home_dir ()); gtk_file_chooser_set_create_folders (GTK_FILE_CHOOSER(dialog), FALSE); gtk_file_chooser_set_local_only (GTK_FILE_CHOOSER(dialog), FALSE); /* setup the filter */ filter = gtk_file_filter_new (); gtk_file_filter_add_mime_type (filter, "application/vnd.iccprofile"); /* TRANSLATORS: filter name on the file->open dialog */ gtk_file_filter_set_name (filter, _("Supported ICC profiles")); gtk_file_chooser_add_filter (GTK_FILE_CHOOSER(dialog), filter); /* setup the all files filter */ filter = gtk_file_filter_new (); gtk_file_filter_add_pattern (filter, "*"); /* TRANSLATORS: filter name on the file->open dialog */ gtk_file_filter_set_name (filter, _("All files")); gtk_file_chooser_add_filter (GTK_FILE_CHOOSER(dialog), filter); /* did user choose file */ if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_ACCEPT) file = gtk_file_chooser_get_file (GTK_FILE_CHOOSER(dialog)); /* we're done */ gtk_widget_destroy (dialog); /* or NULL for missing */ return file; } typedef struct { GPtrArray *argv; guint xid; } ClosureData; static void free_data(ClosureData *data) { g_ptr_array_unref (data->argv); g_slice_free (ClosureData, data); } static void installer_finished_cb (gboolean success, gpointer user_data) { ClosureData *data = (ClosureData *)user_data; GError *error; gboolean ret; if (!success) { g_warning ("failed to install required component"); free_data (data); return; } error = NULL; ret = g_spawn_async (NULL, (gchar**) data->argv->pdata, NULL, 0, NULL, NULL, NULL, &error); free_data (data); if (!ret) { g_warning ("failed to run command: %s", error->message); g_error_free (error); } } static void gcm_prefs_install_component (guint xid, GPtrArray *argv) { ClosureData *data; data = g_slice_new(ClosureData); data->argv = argv; data->xid = xid; g_ptr_array_ref (data->argv); const gchar *to_install[2]; to_install[0] = "gnome-color-manager"; to_install[1] = NULL; gnome_installer_install_packages(to_install, (GnomeInstallerClientCallback) installer_finished_cb, data); } static void gcm_prefs_run_maybe_install (guint xid, gchar *filename, GPtrArray *argv) { gboolean ret; GError *error = NULL; ret = g_spawn_async (NULL, (gchar**) argv->pdata, NULL, 0, NULL, NULL, NULL, &error); if (!ret) { if ((error->domain == g_spawn_error_quark ()) && (error->code == G_SPAWN_ERROR_NOENT)) { gcm_prefs_install_component (xid, argv); } else { g_warning ("failed to run command: %s", error->message); } g_error_free (error); } } static void gcm_prefs_device_add_cb (GtkWidget *widget, CcColorPanel *prefs) { CcColorPanelPrivate *priv = prefs->priv; /* show ui */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "dialog_virtual")); gtk_widget_show (widget); gtk_window_set_transient_for (GTK_WINDOW (widget), GTK_WINDOW (priv->main_window)); /* clear entries */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "combobox_virtual_type")); gtk_combo_box_set_active (GTK_COMBO_BOX(widget), 0); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "entry_virtual_model")); gtk_entry_set_text (GTK_ENTRY (widget), ""); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "entry_virtual_manufacturer")); gtk_entry_set_text (GTK_ENTRY (widget), ""); } static gboolean gcm_prefs_is_profile_suitable_for_device (CdProfile *profile, CdDevice *device) { const gchar *data_source; CdProfileKind profile_kind_tmp; CdProfileKind profile_kind; CdColorspace profile_colorspace; CdColorspace device_colorspace = 0; gboolean ret = FALSE; CdDeviceKind device_kind; /* not the right colorspace */ device_colorspace = cd_device_get_colorspace (device); profile_colorspace = cd_profile_get_colorspace (profile); if (device_colorspace != profile_colorspace) goto out; /* not the correct kind */ device_kind = cd_device_get_kind (device); profile_kind_tmp = cd_profile_get_kind (profile); profile_kind = cd_device_kind_to_profile_kind (device_kind); if (profile_kind_tmp != profile_kind) goto out; /* ignore the colorspace profiles */ data_source = cd_profile_get_metadata_item (profile, CD_PROFILE_METADATA_DATA_SOURCE); if (g_strcmp0 (data_source, CD_PROFILE_METADATA_DATA_SOURCE_STANDARD) == 0) goto out; /* success */ ret = TRUE; out: return ret; } static gint gcm_prefs_combo_sort_func_cb (GtkTreeModel *model, GtkTreeIter *a, GtkTreeIter *b, gpointer user_data) { gint type_a, type_b; gchar *text_a; gchar *text_b; gint retval; /* get data from model */ gtk_tree_model_get (model, a, GCM_PREFS_COMBO_COLUMN_TYPE, &type_a, GCM_PREFS_COMBO_COLUMN_TEXT, &text_a, -1); gtk_tree_model_get (model, b, GCM_PREFS_COMBO_COLUMN_TYPE, &type_b, GCM_PREFS_COMBO_COLUMN_TEXT, &text_b, -1); /* prefer normal type profiles over the 'Other Profile...' entry */ if (type_a < type_b) retval = -1; else if (type_a > type_b) retval = 1; else retval = g_strcmp0 (text_a, text_b); g_free (text_a); g_free (text_b); return retval; } static gboolean gcm_prefs_combo_set_default_cb (gpointer user_data) { GtkWidget *widget = GTK_WIDGET (user_data); gtk_combo_box_set_active (GTK_COMBO_BOX (widget), 0); return FALSE; } static gboolean gcm_prefs_profile_exists_in_array (GPtrArray *array, CdProfile *profile) { CdProfile *profile_tmp; guint i; for (i = 0; i < array->len; i++) { profile_tmp = g_ptr_array_index (array, i); if (cd_profile_equal (profile, profile_tmp)) return TRUE; } return FALSE; } static void gcm_prefs_add_profiles_suitable_for_devices (CcColorPanel *prefs, GtkWidget *widget, GPtrArray *profiles) { CdProfile *profile_tmp; gboolean ret; GError *error = NULL; GPtrArray *profile_array = NULL; GtkTreeIter iter; GtkTreeModel *model; guint i; CcColorPanelPrivate *priv = prefs->priv; /* clear existing entries */ model = gtk_combo_box_get_model (GTK_COMBO_BOX (widget)); gtk_list_store_clear (GTK_LIST_STORE (model)); gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (model), GCM_PREFS_COMBO_COLUMN_TEXT, GTK_SORT_ASCENDING); gtk_tree_sortable_set_sort_func (GTK_TREE_SORTABLE (model), GCM_PREFS_COMBO_COLUMN_TEXT, gcm_prefs_combo_sort_func_cb, model, NULL); /* get profiles */ profile_array = cd_client_get_profiles_sync (priv->client, priv->cancellable, &error); if (profile_array == NULL) { g_warning ("failed to get profiles: %s", error->message); g_error_free (error); goto out; } /* add profiles of the right kind */ for (i = 0; i < profile_array->len; i++) { profile_tmp = g_ptr_array_index (profile_array, i); /* get properties */ ret = cd_profile_connect_sync (profile_tmp, priv->cancellable, &error); if (!ret) { g_warning ("failed to get profile: %s", error->message); g_error_free (error); goto out; } /* don't add any of the already added profiles */ if (profiles != NULL) { if (gcm_prefs_profile_exists_in_array (profiles, profile_tmp)) continue; } /* only add correct types */ ret = gcm_prefs_is_profile_suitable_for_device (profile_tmp, priv->current_device); if (!ret) continue; /* ignore profiles from other user accounts */ if (!cd_profile_has_access (profile_tmp)) continue; /* add */ gcm_prefs_combobox_add_profile (widget, profile_tmp, GCM_PREFS_ENTRY_TYPE_PROFILE, &iter); } /* add a import entry */ gcm_prefs_combobox_add_profile (widget, NULL, GCM_PREFS_ENTRY_TYPE_IMPORT, NULL); g_idle_add (gcm_prefs_combo_set_default_cb, widget); out: if (profile_array != NULL) g_ptr_array_unref (profile_array); } static void gcm_prefs_profile_add_cb (GtkWidget *widget, CcColorPanel *prefs) { const gchar *title; GPtrArray *profiles; CcColorPanelPrivate *priv = prefs->priv; /* add profiles of the right kind */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "combobox_profile")); profiles = cd_device_get_profiles (priv->current_device); gcm_prefs_add_profiles_suitable_for_devices (prefs, widget, profiles); /* set the title */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "label_assign_title")); switch (cd_device_get_kind (priv->current_device)) { case CD_DEVICE_KIND_DISPLAY: /* TRANSLATORS: this is the dialog title in the 'Add profile' UI */ title = _("Available Profiles for Displays"); break; case CD_DEVICE_KIND_SCANNER: /* TRANSLATORS: this is the dialog title in the 'Add profile' UI */ title = _("Available Profiles for Scanners"); break; case CD_DEVICE_KIND_PRINTER: /* TRANSLATORS: this is the dialog title in the 'Add profile' UI */ title = _("Available Profiles for Printers"); break; case CD_DEVICE_KIND_CAMERA: /* TRANSLATORS: this is the dialog title in the 'Add profile' UI */ title = _("Available Profiles for Cameras"); break; case CD_DEVICE_KIND_WEBCAM: /* TRANSLATORS: this is the dialog title in the 'Add profile' UI */ title = _("Available Profiles for Webcams"); break; default: /* TRANSLATORS: this is the dialog title in the 'Add profile' UI * where the device type is not recognised */ title = _("Available Profiles"); break; } gtk_label_set_label (GTK_LABEL (widget), title); /* show the dialog */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "dialog_assign")); gtk_widget_show (widget); gtk_window_set_transient_for (GTK_WINDOW (widget), GTK_WINDOW (priv->main_window)); if (profiles != NULL) g_ptr_array_unref (profiles); } static void gcm_prefs_profile_remove_cb (GtkWidget *widget, CcColorPanel *prefs) { GtkTreeIter iter; GtkTreeSelection *selection; GtkTreeModel *model; gboolean ret = FALSE; CdProfile *profile = NULL; GError *error = NULL; CcColorPanelPrivate *priv = prefs->priv; /* get the selected row */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "treeview_devices")); selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (widget)); if (!gtk_tree_selection_get_selected (selection, &model, &iter)) goto out; /* if the profile is default, then we'll have to make the first profile default */ gtk_tree_model_get (model, &iter, GCM_PREFS_COLUMN_PROFILE, &profile, -1); /* just remove it, the list store will get ::changed */ ret = cd_device_remove_profile_sync (priv->current_device, profile, priv->cancellable, &error); if (!ret) { g_warning ("failed to remove profile: %s", error->message); g_error_free (error); goto out; } out: if (profile != NULL) g_object_unref (profile); return; } static void gcm_prefs_make_profile_default_cb (GObject *object, GAsyncResult *res, gpointer user_data) { CdDevice *device = CD_DEVICE (object); gboolean ret = FALSE; GError *error = NULL; ret = cd_device_make_profile_default_finish (device, res, &error); if (!ret) { g_warning ("failed to set default profile on %s: %s", cd_device_get_id (device), error->message); g_error_free (error); } } static void gcm_prefs_profile_make_default_internal (CcColorPanel *prefs, GtkTreeModel *model, GtkTreeIter *iter_selected) { CdDevice *device; CdProfile *profile; CcColorPanelPrivate *priv = prefs->priv; /* get currentlt selected item */ gtk_tree_model_get (model, iter_selected, GCM_PREFS_COLUMN_DEVICE, &device, GCM_PREFS_COLUMN_PROFILE, &profile, -1); if (profile == NULL || device == NULL) goto out; /* just set it default */ g_debug ("setting %s default on %s", cd_profile_get_id (profile), cd_device_get_id (device)); cd_device_make_profile_default (device, profile, priv->cancellable, gcm_prefs_make_profile_default_cb, prefs); out: if (profile != NULL) g_object_unref (profile); if (device != NULL) g_object_unref (device); } static void gcm_prefs_profile_view_cb (GtkWidget *widget, CcColorPanel *prefs) { CdProfile *profile = NULL; GtkTreeIter iter; GtkTreeModel *model; GtkTreeSelection *selection; gchar *options = NULL; gchar *viewer_filename; GPtrArray *argv = NULL; guint xid; CcColorPanelPrivate *priv = prefs->priv; /* get the selected row */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "treeview_devices")); selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (widget)); if (!gtk_tree_selection_get_selected (selection, &model, &iter)) g_assert_not_reached (); /* get currentlt selected item */ gtk_tree_model_get (model, &iter, GCM_PREFS_COLUMN_PROFILE, &profile, -1); /* get xid */ xid = gdk_x11_window_get_xid (gtk_widget_get_window (GTK_WIDGET (priv->main_window))); viewer_filename = g_build_filename (BINDIR, "gcm-viewer", NULL); /* open up gcm-viewer as a info pane */ argv = g_ptr_array_new_with_free_func (g_free); g_ptr_array_add (argv, viewer_filename); g_ptr_array_add (argv, g_strdup ("--profile")); g_ptr_array_add (argv, g_strdup (cd_profile_get_id (profile))); g_ptr_array_add (argv, g_strdup ("--parent-window")); g_ptr_array_add (argv, g_strdup_printf ("%i", xid)); g_ptr_array_add (argv, NULL); gcm_prefs_run_maybe_install (xid, viewer_filename, argv); g_ptr_array_unref (argv); g_free (options); if (profile != NULL) g_object_unref (profile); } static void gcm_prefs_button_assign_cancel_cb (GtkWidget *widget, CcColorPanel *prefs) { CcColorPanelPrivate *priv = prefs->priv; widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "dialog_assign")); gtk_widget_hide (widget); } static void gcm_prefs_button_assign_ok_cb (GtkWidget *widget, CcColorPanel *prefs) { GtkTreeIter iter; GtkTreeModel *model; CdProfile *profile = NULL; gboolean ret = FALSE; GError *error = NULL; CcColorPanelPrivate *priv = prefs->priv; /* hide window */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "dialog_assign")); gtk_widget_hide (widget); /* get entry */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "combobox_profile")); ret = gtk_combo_box_get_active_iter (GTK_COMBO_BOX(widget), &iter); if (!ret) goto out; model = gtk_combo_box_get_model (GTK_COMBO_BOX(widget)); gtk_tree_model_get (model, &iter, GCM_PREFS_COMBO_COLUMN_PROFILE, &profile, -1); if (profile == NULL) { g_warning ("failed to get the active profile"); goto out; } /* just add it, the list store will get ::changed */ ret = cd_device_add_profile_sync (priv->current_device, CD_DEVICE_RELATION_HARD, profile, priv->cancellable, &error); if (!ret) { g_warning ("failed to add: %s", error->message); g_error_free (error); goto out; } /* make it default */ cd_device_make_profile_default (priv->current_device, profile, priv->cancellable, gcm_prefs_make_profile_default_cb, prefs); out: if (profile != NULL) g_object_unref (profile); } static gboolean gcm_prefs_profile_delete_event_cb (GtkWidget *widget, GdkEvent *event, CcColorPanel *prefs) { gcm_prefs_button_assign_cancel_cb (widget, prefs); return TRUE; } static void gcm_prefs_delete_cb (GtkWidget *widget, CcColorPanel *prefs) { gboolean ret = FALSE; GError *error = NULL; CcColorPanelPrivate *priv = prefs->priv; /* try to delete device */ ret = cd_client_delete_device_sync (priv->client, priv->current_device, priv->cancellable, &error); if (!ret) { g_warning ("failed to delete device: %s", error->message); g_error_free (error); } } static void gcm_prefs_treeview_renderer_toggled (GtkCellRendererToggle *cell, const gchar *path, CcColorPanel *prefs) { gboolean ret; GtkTreeModel *model; GtkTreeIter iter; CcColorPanelPrivate *priv = prefs->priv; model = GTK_TREE_MODEL (priv->list_store_devices); ret = gtk_tree_model_get_iter_from_string (model, &iter, path); if (!ret) return; gcm_prefs_profile_make_default_internal (prefs, model, &iter); } static void gcm_prefs_add_devices_columns (CcColorPanel *prefs, GtkTreeView *treeview) { GtkCellRenderer *renderer; GtkTreeViewColumn *column; CcColorPanelPrivate *priv = prefs->priv; gtk_tree_view_set_headers_visible (treeview, TRUE); /* --- column for device image and device title --- */ column = gtk_tree_view_column_new (); gtk_tree_view_column_set_expand (column, TRUE); /* TRANSLATORS: column for device list */ gtk_tree_view_column_set_title (column, _("Device")); /* image */ renderer = gtk_cell_renderer_pixbuf_new (); g_object_set (renderer, "stock-size", GTK_ICON_SIZE_MENU, NULL); gtk_tree_view_column_pack_start (column, renderer, FALSE); gtk_tree_view_column_add_attribute (column, renderer, "icon-name", GCM_PREFS_COLUMN_ICON); /* option */ renderer = gtk_cell_renderer_toggle_new (); g_signal_connect (renderer, "toggled", G_CALLBACK (gcm_prefs_treeview_renderer_toggled), prefs); g_object_set (renderer, "radio", TRUE, NULL); gtk_tree_view_column_pack_start (column, renderer, FALSE); gtk_tree_view_column_add_attribute (column, renderer, "active", GCM_PREFS_COLUMN_RADIO_ACTIVE); gtk_tree_view_column_add_attribute (column, renderer, "visible", GCM_PREFS_COLUMN_RADIO_VISIBLE); /* text */ renderer = gtk_cell_renderer_text_new (); gtk_tree_view_column_pack_start (column, renderer, TRUE); gtk_tree_view_column_add_attribute (column, renderer, "markup", GCM_PREFS_COLUMN_TITLE); gtk_tree_view_column_set_expand (column, TRUE); gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (priv->list_store_devices), GCM_PREFS_COLUMN_SORT, GTK_SORT_DESCENDING); gtk_tree_view_append_column (treeview, GTK_TREE_VIEW_COLUMN(column)); /* --- column for device status --- */ column = gtk_tree_view_column_new (); gtk_tree_view_column_set_expand (column, TRUE); /* TRANSLATORS: column for device list */ gtk_tree_view_column_set_title (column, _("Calibration")); /* image */ renderer = gtk_cell_renderer_pixbuf_new (); g_object_set (renderer, "stock-size", GTK_ICON_SIZE_MENU, NULL); gtk_tree_view_column_pack_start (column, renderer, FALSE); gtk_tree_view_column_add_attribute (column, renderer, "icon-name", GCM_PREFS_COLUMN_STATUS_IMAGE); /* text */ renderer = gtk_cell_renderer_text_new (); gtk_tree_view_column_pack_start (column, renderer, TRUE); gtk_tree_view_column_add_attribute (column, renderer, "markup", GCM_PREFS_COLUMN_STATUS); gtk_tree_view_column_set_expand (column, FALSE); gtk_tree_view_append_column (treeview, GTK_TREE_VIEW_COLUMN(column)); /* tooltip */ gtk_tree_view_set_tooltip_column (treeview, GCM_PREFS_COLUMN_TOOLTIP); } static void gcm_prefs_device_clicked (CcColorPanel *prefs, CdDevice *device) { GtkWidget *widget; CdDeviceMode device_mode; CcColorPanelPrivate *priv = prefs->priv; if (device == NULL) g_assert_not_reached (); /* get current device */ if (priv->current_device != NULL) g_object_unref (priv->current_device); priv->current_device = g_object_ref (device); /* we have a new device */ g_debug ("selected device is: %s", cd_device_get_id (device)); /* make sure selectable */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "combobox_profile")); gtk_widget_set_sensitive (widget, TRUE); /* can we delete this device? */ device_mode = cd_device_get_mode (priv->current_device); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "toolbutton_device_remove")); gtk_widget_set_visible (widget, device_mode == CD_DEVICE_MODE_VIRTUAL); } static void gcm_prefs_profile_clicked (CcColorPanel *prefs, CdProfile *profile, CdDevice *device) { GtkWidget *widget; CdDeviceRelation relation; CcColorPanelPrivate *priv = prefs->priv; /* get profile */ g_debug ("selected profile = %s", cd_profile_get_filename (profile)); /* find the profile relationship */ relation = cd_device_get_profile_relation_sync (device, profile, NULL, NULL); /* we can only remove hard relationships */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "toolbutton_profile_remove")); if (relation == CD_DEVICE_RELATION_HARD) { gtk_widget_set_tooltip_text (widget, ""); gtk_widget_set_sensitive (widget, TRUE); } else { /* TRANSLATORS: this is when an auto-added profile cannot be removed */ gtk_widget_set_tooltip_text (widget, _("Cannot remove automatically added profile")); gtk_widget_set_sensitive (widget, FALSE); } /* allow getting profile info */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "toolbutton_profile_view")); if (cd_profile_get_filename (profile) != NULL) { gtk_widget_set_sensitive (widget, TRUE); } else gtk_widget_set_sensitive (widget, FALSE); /* hide device specific stuff */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "toolbutton_device_remove")); gtk_widget_set_visible (widget, FALSE); } static void gcm_prefs_devices_treeview_clicked_cb (GtkTreeSelection *selection, CcColorPanel *prefs) { GtkTreeModel *model; GtkTreeIter iter; CdDevice *device = NULL; CdProfile *profile = NULL; GtkWidget *widget; CcColorPanelPrivate *priv = prefs->priv; /* get selection */ if (!gtk_tree_selection_get_selected (selection, &model, &iter)) return; gtk_tree_model_get (model, &iter, GCM_PREFS_COLUMN_DEVICE, &device, GCM_PREFS_COLUMN_PROFILE, &profile, -1); /* device actions */ if (device != NULL) gcm_prefs_device_clicked (prefs, device); if (profile != NULL) gcm_prefs_profile_clicked (prefs, profile, device); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "toolbutton_device_default")); gtk_widget_set_visible (widget, profile != NULL); if (profile) gtk_widget_set_sensitive (widget, !cd_profile_get_is_system_wide (profile)); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "toolbutton_device_add")); gtk_widget_set_visible (widget, FALSE); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "toolbutton_profile_add")); gtk_widget_set_visible (widget, device != NULL); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "toolbutton_profile_view")); gtk_widget_set_visible (widget, profile != NULL); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "toolbutton_profile_remove")); gtk_widget_set_visible (widget, profile != NULL); /* if no buttons then hide toolbar */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "toolbar_devices")); gtk_widget_set_visible (widget, profile != NULL || device != NULL); if (device != NULL) g_object_unref (device); if (profile != NULL) g_object_unref (profile); } static void gcm_prefs_treeview_row_activated_cb (GtkTreeView *tree_view, GtkTreePath *path, GtkTreeViewColumn *column, CcColorPanel *prefs) { GtkTreeModel *model; GtkTreeIter iter; gboolean ret; CcColorPanelPrivate *priv = prefs->priv; /* get the iter */ model = GTK_TREE_MODEL (priv->list_store_devices); ret = gtk_tree_model_get_iter (model, &iter, path); if (!ret) return; /* make this profile the default */ gcm_prefs_profile_make_default_internal (prefs, model, &iter); } static const gchar * gcm_prefs_device_kind_to_sort (CdDeviceKind kind) { if (kind == CD_DEVICE_KIND_DISPLAY) return "4"; if (kind == CD_DEVICE_KIND_SCANNER) return "3"; if (kind == CD_DEVICE_KIND_CAMERA) return "2"; if (kind == CD_DEVICE_KIND_PRINTER) return "1"; return "0"; } static gchar * gcm_device_get_title (CdDevice *device) { const gchar *model; const gchar *vendor; GString *string; /* try to get a nice string suitable for display */ vendor = cd_device_get_vendor (device); model = cd_device_get_model (device); string = g_string_new (""); if (vendor != NULL && model != NULL) { g_string_append_printf (string, "%s - %s", vendor, model); goto out; } /* just model */ if (model != NULL) { g_string_append (string, model); goto out; } /* just vendor */ if (vendor != NULL) { g_string_append (string, vendor); goto out; } /* fallback to id */ g_string_append (string, cd_device_get_id (device)); out: return g_string_free (string, FALSE); } static void gcm_prefs_set_combo_simple_text (GtkWidget *combo_box) { GtkCellRenderer *renderer; GtkListStore *store; store = gtk_list_store_new (GCM_PREFS_COMBO_COLUMN_NUM_COLUMNS, G_TYPE_STRING, CD_TYPE_PROFILE, G_TYPE_UINT); gtk_combo_box_set_model (GTK_COMBO_BOX (combo_box), GTK_TREE_MODEL (store)); g_object_unref (store); renderer = gtk_cell_renderer_text_new (); g_object_set (renderer, "ellipsize", PANGO_ELLIPSIZE_END, "wrap-mode", PANGO_WRAP_WORD_CHAR, NULL); gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo_box), renderer, TRUE); gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo_box), renderer, "text", GCM_PREFS_COMBO_COLUMN_TEXT, NULL); } static void gcm_prefs_profile_combo_changed_cb (GtkWidget *widget, CcColorPanel *prefs) { GFile *file = NULL; GError *error = NULL; gboolean ret; CdProfile *profile = NULL; GtkTreeIter iter; GtkTreeModel *model; GcmPrefsEntryType entry_type; CcColorPanelPrivate *priv = prefs->priv; /* no devices */ if (priv->current_device == NULL) return; /* no selection */ ret = gtk_combo_box_get_active_iter (GTK_COMBO_BOX(widget), &iter); if (!ret) return; /* get entry */ model = gtk_combo_box_get_model (GTK_COMBO_BOX(widget)); gtk_tree_model_get (model, &iter, GCM_PREFS_COMBO_COLUMN_TYPE, &entry_type, -1); /* import */ if (entry_type == GCM_PREFS_ENTRY_TYPE_IMPORT) { file = gcm_prefs_file_chooser_get_icc_profile (prefs); if (file == NULL) { g_warning ("failed to get ICC file"); gtk_combo_box_set_active (GTK_COMBO_BOX (widget), 0); /* if we've got no other existing profiles to choose, then * just close the assign dialog */ gtk_combo_box_get_active_iter (GTK_COMBO_BOX(widget), &iter); gtk_tree_model_get (model, &iter, GCM_PREFS_COMBO_COLUMN_TYPE, &entry_type, -1); if (entry_type == GCM_PREFS_ENTRY_TYPE_IMPORT) { widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "dialog_assign")); gtk_widget_hide (widget); } goto out; } profile = cd_client_import_profile_sync (priv->client, file, priv->cancellable, &error); if (profile == NULL) { g_warning ("failed to get imported profile: %s", error->message); g_error_free (error); goto out; } /* add to combobox */ gtk_list_store_append (GTK_LIST_STORE(model), &iter); gtk_list_store_set (GTK_LIST_STORE(model), &iter, GCM_PREFS_COMBO_COLUMN_PROFILE, profile, -1); gtk_combo_box_set_active_iter (GTK_COMBO_BOX (widget), &iter); } out: if (file != NULL) g_object_unref (file); if (profile != NULL) g_object_unref (profile); } static void gcm_prefs_sensor_coldplug (CcColorPanel *prefs) { GPtrArray *sensors; GError *error = NULL; gboolean ret; CcColorPanelPrivate *priv = prefs->priv; /* unref old */ if (priv->sensor != NULL) { g_object_unref (priv->sensor); priv->sensor = NULL; } /* no present */ sensors = cd_client_get_sensors_sync (priv->client, NULL, &error); if (sensors == NULL) { g_warning ("%s", error->message); g_error_free (error); goto out; } if (sensors->len == 0) goto out; /* save a copy of the sensor */ priv->sensor = g_object_ref (g_ptr_array_index (sensors, 0)); /* connect to the sensor */ ret = cd_sensor_connect_sync (priv->sensor, NULL, &error); if (!ret) { g_warning ("%s", error->message); g_error_free (error); goto out; } out: if (sensors != NULL) g_ptr_array_unref (sensors); } static void gcm_prefs_client_sensor_changed_cb (CdClient *client, CdSensor *sensor, CcColorPanel *prefs) { gcm_prefs_sensor_coldplug (prefs); } static const gchar * gcm_prefs_device_kind_to_icon_name (CdDeviceKind kind) { switch (kind) { case CD_DEVICE_KIND_DISPLAY: return "video-display"; case CD_DEVICE_KIND_SCANNER: return "scanner"; case CD_DEVICE_KIND_PRINTER: return "printer"; case CD_DEVICE_KIND_CAMERA: return "camera-photo"; case CD_DEVICE_KIND_WEBCAM: return "camera-web"; default: return "image-missing"; } } static GString * gcm_prefs_get_profile_age_as_string (CdProfile *profile) { const gchar *id; gint64 age; GString *string = NULL; if (profile == NULL) { /* TRANSLATORS: this is when there is no profile for the device */ string = g_string_new (_("No profile")); goto out; } /* don't show details for EDID, colorspace or test profiles */ id = cd_profile_get_metadata_item (profile, CD_PROFILE_METADATA_DATA_SOURCE); if (g_strcmp0 (id, CD_PROFILE_METADATA_DATA_SOURCE_EDID) == 0) goto out; if (g_strcmp0 (id, CD_PROFILE_METADATA_DATA_SOURCE_STANDARD) == 0) goto out; if (g_strcmp0 (id, CD_PROFILE_METADATA_DATA_SOURCE_TEST) == 0) goto out; /* days */ age = cd_profile_get_age (profile); if (age == 0) { string = g_string_new (NULL); goto out; } age /= 60 * 60 * 24; string = g_string_new (""); /* approximate years */ if (age > 365) { age /= 365; g_string_append_printf (string, ngettext ( "%i year", "%i years", age), (guint) age); goto out; } /* approximate months */ if (age > 30) { age /= 30; g_string_append_printf (string, ngettext ( "%i month", "%i months", age), (guint) age); goto out; } /* approximate weeks */ if (age > 7) { age /= 7; g_string_append_printf (string, ngettext ( "%i week", "%i weeks", age), (guint) age); goto out; } /* fallback */ g_string_append_printf (string, _("Less than 1 week")); out: return string; } static gchar * gcm_prefs_get_profile_created_for_sort (CdProfile *profile) { gint64 created; gchar *string = NULL; GDateTime *dt = NULL; /* get profile age */ created = cd_profile_get_created (profile); if (created == 0) goto out; dt = g_date_time_new_from_unix_utc (created); /* note: this is not shown in the UI, just used for sorting */ string = g_date_time_format (dt, "%Y%m%d"); out: if (dt != NULL) g_date_time_unref (dt); return string; } static gchar * gcm_prefs_get_profile_title (CcColorPanel *prefs, CdProfile *profile) { CdColorspace colorspace; const gchar *title; gchar *string; gboolean ret; GError *error = NULL; CcColorPanelPrivate *priv = prefs->priv; g_return_val_if_fail (profile != NULL, NULL); string = NULL; /* get properties */ ret = cd_profile_connect_sync (profile, priv->cancellable, &error); if (!ret) { g_warning ("failed to get profile: %s", error->message); g_error_free (error); goto out; } /* add profile description */ title = cd_profile_get_title (profile); if (title != NULL) { string = g_markup_escape_text (title, -1); goto out; } /* some meta profiles do not have ICC profiles */ colorspace = cd_profile_get_colorspace (profile); if (colorspace == CD_COLORSPACE_RGB) { string = g_strdup (C_("Colorspace fallback", "Default RGB")); goto out; } if (colorspace == CD_COLORSPACE_CMYK) { string = g_strdup (C_("Colorspace fallback", "Default CMYK")); goto out; } if (colorspace == CD_COLORSPACE_GRAY) { string = g_strdup (C_("Colorspace fallback", "Default Gray")); goto out; } /* fall back to ID, ick */ string = g_strdup (cd_profile_get_id (profile)); out: return string; } static void gcm_prefs_device_remove_profiles_phase1 (CcColorPanel *prefs, GtkTreeIter *parent) { GtkTreeIter iter; GtkTreeModel *model; gboolean ret; CcColorPanelPrivate *priv = prefs->priv; /* get first element */ model = GTK_TREE_MODEL (priv->list_store_devices); ret = gtk_tree_model_iter_children (model, &iter, parent); if (!ret) return; /* mark to be removed */ do { gtk_tree_store_set (priv->list_store_devices, &iter, GCM_PREFS_COLUMN_DEVICE_PATH, NULL, -1); } while (gtk_tree_model_iter_next (model, &iter)); } static void gcm_prefs_device_remove_profiles_phase2 (CcColorPanel *prefs, GtkTreeIter *parent) { GtkTreeIter iter; GtkTreeModel *model; gchar *id_tmp; gboolean ret; CcColorPanelPrivate *priv = prefs->priv; /* get first element */ model = GTK_TREE_MODEL (priv->list_store_devices); ret = gtk_tree_model_iter_children (model, &iter, parent); if (!ret) return; /* remove the other elements */ do { gtk_tree_model_get (model, &iter, GCM_PREFS_COLUMN_DEVICE_PATH, &id_tmp, -1); if (id_tmp == NULL) ret = gtk_tree_store_remove (priv->list_store_devices, &iter); else ret = gtk_tree_model_iter_next (model, &iter); g_free (id_tmp); } while (ret); } static GtkTreeIter * get_iter_for_profile (GtkTreeModel *model, CdProfile *profile, GtkTreeIter *parent) { const gchar *id; gboolean ret; GtkTreeIter iter; CdProfile *profile_tmp; /* get first element */ ret = gtk_tree_model_iter_children (model, &iter, parent); if (!ret) return NULL; /* remove the other elements */ id = cd_profile_get_id (profile); while (ret) { gtk_tree_model_get (model, &iter, GCM_PREFS_COLUMN_PROFILE, &profile_tmp, -1); if (g_strcmp0 (id, cd_profile_get_id (profile_tmp)) == 0) { g_object_unref (profile_tmp); return gtk_tree_iter_copy (&iter); } g_object_unref (profile_tmp); ret = gtk_tree_model_iter_next (model, &iter); } return NULL; } static void gcm_prefs_device_set_model_by_iter (CcColorPanel *prefs, CdDevice *device, GtkTreeIter *iter) { GString *status = NULL; const gchar *status_image = NULL; const gchar *tooltip = NULL; CdProfile *profile = NULL; gint age; GPtrArray *profiles = NULL; CdProfile *profile_tmp; guint i; gchar *title_tmp; GString *date_tmp; gchar *sort_tmp; GtkTreeIter iter_tmp; GtkTreeIter *iter_tmp_p; guint threshold = 0; gboolean ret; GError *error = NULL; CcColorPanelPrivate *priv = prefs->priv; /* set status */ profile = cd_device_get_default_profile (device); if (profile == NULL) { status = g_string_new (_("Uncalibrated")); g_string_prepend (status, ""); g_string_append (status, ""); tooltip = _("This device is not color managed."); goto skip; } /* get properties */ ret = cd_profile_connect_sync (profile, priv->cancellable, &error); if (!ret) { g_warning ("failed to get profile: %s", error->message); g_error_free (error); goto out; } /* ignore profiles from other user accounts */ if (!cd_profile_has_access (profile)) { /* only print the filename if it exists */ if (cd_profile_get_filename (profile) != NULL) { g_warning ("%s is not usable by this user", cd_profile_get_filename (profile)); } else { g_warning ("%s is not usable by this user", cd_profile_get_id (profile)); } goto out; } /* autogenerated printer defaults */ if (cd_device_get_kind (device) == CD_DEVICE_KIND_PRINTER && cd_profile_get_filename (profile) == NULL) { status = g_string_new (_("Uncalibrated")); g_string_prepend (status, ""); g_string_append (status, ""); tooltip = _("This device is using manufacturing calibrated data."); goto skip; } /* autogenerated profiles are crap */ if (cd_profile_get_kind (profile) == CD_PROFILE_KIND_DISPLAY_DEVICE && !cd_profile_get_has_vcgt (profile)) { status = g_string_new (_("Uncalibrated")); g_string_prepend (status, ""); g_string_append (status, ""); tooltip = _("This device does not have a profile suitable for whole-screen color correction."); goto skip; } /* yay! */ status = gcm_prefs_get_profile_age_as_string (profile); if (status == NULL) { status = g_string_new (_("Uncalibrated")); g_string_prepend (status, ""); g_string_append (status, ""); } /* greater than the calibration threshold for the device type */ age = cd_profile_get_age (profile); age /= 60 * 60 * 24; if (cd_device_get_kind (device) == CD_DEVICE_KIND_DISPLAY) { g_settings_get (priv->settings, GCM_SETTINGS_RECALIBRATE_DISPLAY_THRESHOLD, "u", &threshold); } else if (cd_device_get_kind (device) == CD_DEVICE_KIND_DISPLAY) { g_settings_get (priv->settings, GCM_SETTINGS_RECALIBRATE_PRINTER_THRESHOLD, "u", &threshold); } if (threshold > 0 && age > threshold) { status_image = "dialog-warning-symbolic"; tooltip = _("This device has an old profile that may no longer be accurate."); } skip: /* save to store */ gtk_tree_store_set (priv->list_store_devices, iter, GCM_PREFS_COLUMN_STATUS, status->str, GCM_PREFS_COLUMN_STATUS_IMAGE, status_image, GCM_PREFS_COLUMN_TOOLTIP, tooltip, -1); /* remove old profiles */ gcm_prefs_device_remove_profiles_phase1 (prefs, iter); /* add profiles */ profiles = cd_device_get_profiles (device); if (profiles == NULL) goto out; for (i = 0; i < profiles->len; i++) { profile_tmp = g_ptr_array_index (profiles, i); title_tmp = gcm_prefs_get_profile_title (prefs, profile_tmp); /* get profile age */ date_tmp = gcm_prefs_get_profile_age_as_string (profile_tmp); if (date_tmp == NULL) { /* TRANSLATORS: this is when the calibration profile age is not * specified as it has been autogenerated from the hardware */ date_tmp = g_string_new (_("Not specified")); g_string_prepend (date_tmp, ""); g_string_append (date_tmp, ""); } sort_tmp = gcm_prefs_get_profile_created_for_sort (profile_tmp); /* get an existing profile, or create a new one */ iter_tmp_p = get_iter_for_profile (GTK_TREE_MODEL (priv->list_store_devices), profile_tmp, iter); if (iter_tmp_p == NULL) gtk_tree_store_append (priv->list_store_devices, &iter_tmp, iter); gtk_tree_store_set (priv->list_store_devices, iter_tmp_p ? iter_tmp_p : &iter_tmp, GCM_PREFS_COLUMN_DEVICE, device, GCM_PREFS_COLUMN_PROFILE, profile_tmp, GCM_PREFS_COLUMN_DEVICE_PATH, cd_device_get_object_path (device), GCM_PREFS_COLUMN_SORT, sort_tmp, GCM_PREFS_COLUMN_STATUS, date_tmp->str, GCM_PREFS_COLUMN_TITLE, title_tmp, GCM_PREFS_COLUMN_RADIO_VISIBLE, TRUE, GCM_PREFS_COLUMN_RADIO_ACTIVE, i==0, -1); if (iter_tmp_p != NULL) gtk_tree_iter_free (iter_tmp_p); g_free (title_tmp); g_free (sort_tmp); g_string_free (date_tmp, TRUE); } /* remove old profiles that no longer exist */ gcm_prefs_device_remove_profiles_phase2 (prefs, iter); out: if (status != NULL) g_string_free (status, TRUE); if (profiles != NULL) g_ptr_array_unref (profiles); if (profile != NULL) g_object_unref (profile); } static void gcm_prefs_device_changed_cb (CdDevice *device, CcColorPanel *prefs) { const gchar *id; gboolean ret; gchar *id_tmp; GtkTreeIter iter; GtkTreeModel *model; CcColorPanelPrivate *priv = prefs->priv; /* get first element */ model = GTK_TREE_MODEL (priv->list_store_devices); ret = gtk_tree_model_get_iter_first (model, &iter); if (!ret) return; /* get the other elements */ id = cd_device_get_object_path (device); do { gtk_tree_model_get (model, &iter, GCM_PREFS_COLUMN_DEVICE_PATH, &id_tmp, -1); if (g_strcmp0 (id_tmp, id) == 0) { /* populate device */ gcm_prefs_device_set_model_by_iter (prefs, device, &iter); } g_free (id_tmp); } while (gtk_tree_model_iter_next (model, &iter)); } static void gcm_prefs_add_device (CcColorPanel *prefs, CdDevice *device) { gboolean ret; GError *error = NULL; CdDeviceKind kind; const gchar *icon_name; const gchar *id; gchar *sort = NULL; gchar *title = NULL; GtkTreeIter parent; CcColorPanelPrivate *priv = prefs->priv; /* get device properties */ ret = cd_device_connect_sync (device, priv->cancellable, &error); if (!ret) { g_warning ("failed to connect to the device: %s", error->message); g_error_free (error); goto out; } /* get icon */ kind = cd_device_get_kind (device); icon_name = gcm_prefs_device_kind_to_icon_name (kind); /* italic for non-connected devices */ title = gcm_device_get_title (device); /* create sort order */ sort = g_strdup_printf ("%s%s", gcm_prefs_device_kind_to_sort (kind), title); /* watch for changes to update the status icons */ g_signal_connect (device, "changed", G_CALLBACK (gcm_prefs_device_changed_cb), prefs); /* add to list */ id = cd_device_get_object_path (device); g_debug ("add %s to device list", id); gtk_tree_store_append (priv->list_store_devices, &parent, NULL); gtk_tree_store_set (priv->list_store_devices, &parent, GCM_PREFS_COLUMN_DEVICE, device, GCM_PREFS_COLUMN_DEVICE_PATH, id, GCM_PREFS_COLUMN_SORT, sort, GCM_PREFS_COLUMN_TITLE, title, GCM_PREFS_COLUMN_ICON, icon_name, -1); gcm_prefs_device_set_model_by_iter (prefs, device, &parent); out: g_free (sort); g_free (title); } static void gcm_prefs_remove_device (CcColorPanel *prefs, CdDevice *cd_device) { GtkTreeIter iter; GtkTreeModel *model; const gchar *id; gchar *id_tmp; gboolean ret; CdDevice *device_tmp; CcColorPanelPrivate *priv = prefs->priv; /* remove */ id = cd_device_get_object_path (cd_device); /* get first element */ model = GTK_TREE_MODEL (priv->list_store_devices); ret = gtk_tree_model_get_iter_first (model, &iter); if (!ret) return; /* get the other elements */ do { gtk_tree_model_get (model, &iter, GCM_PREFS_COLUMN_DEVICE_PATH, &id_tmp, -1); if (g_strcmp0 (id_tmp, id) == 0) { gtk_tree_model_get (model, &iter, GCM_PREFS_COLUMN_DEVICE, &device_tmp, -1); g_signal_handlers_disconnect_by_func (device_tmp, G_CALLBACK (gcm_prefs_device_changed_cb), prefs); gtk_tree_store_remove (GTK_TREE_STORE (model), &iter); g_free (id_tmp); g_object_unref (device_tmp); break; } g_free (id_tmp); } while (gtk_tree_model_iter_next (model, &iter)); } static void gcm_prefs_update_device_list_extra_entry (CcColorPanel *prefs) { CcColorPanelPrivate *priv = prefs->priv; gboolean ret; gchar *id_tmp; gchar *title = NULL; GtkTreeIter iter; /* select the first device */ ret = gtk_tree_model_get_iter_first (GTK_TREE_MODEL (priv->list_store_devices), &iter); if (!ret) { /* add the 'No devices detected' entry */ title = g_strdup_printf ("%s", _("No devices supporting color management detected")); gtk_tree_store_append (priv->list_store_devices, &iter, NULL); gtk_tree_store_set (priv->list_store_devices, &iter, GCM_PREFS_COLUMN_RADIO_VISIBLE, FALSE, GCM_PREFS_COLUMN_TITLE, title, -1); g_free (title); return; } /* remove the 'No devices detected' entry */ do { gtk_tree_model_get (GTK_TREE_MODEL (priv->list_store_devices), &iter, GCM_PREFS_COLUMN_DEVICE_PATH, &id_tmp, -1); if (id_tmp == NULL) { gtk_tree_store_remove (priv->list_store_devices, &iter); break; } g_free (id_tmp); } while (gtk_tree_model_iter_next (GTK_TREE_MODEL (priv->list_store_devices), &iter)); } static void gcm_prefs_device_added_cb (CdClient *client, CdDevice *device, CcColorPanel *prefs) { /* add the device */ gcm_prefs_add_device (prefs, device); /* ensure we're not showing the 'No devices detected' entry */ gcm_prefs_update_device_list_extra_entry (prefs); } static void gcm_prefs_changed_cb (CdClient *client, CdDevice *device, CcColorPanel *prefs) { g_debug ("changed: %s (doing nothing)", cd_device_get_id (device)); } static void gcm_prefs_device_removed_cb (CdClient *client, CdDevice *device, CcColorPanel *prefs) { GtkTreeIter iter; GtkTreeSelection *selection; GtkWidget *widget; gboolean ret; CcColorPanelPrivate *priv = prefs->priv; /* remove from the UI */ gcm_prefs_remove_device (prefs, device); /* ensure we showing the 'No devices detected' entry if required */ gcm_prefs_update_device_list_extra_entry (prefs); /* select the first device */ ret = gtk_tree_model_get_iter_first (GTK_TREE_MODEL (priv->list_store_devices), &iter); if (!ret) return; /* click it */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "treeview_devices")); gtk_tree_view_set_model (GTK_TREE_VIEW (widget), GTK_TREE_MODEL (priv->list_store_devices)); selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (widget)); gtk_tree_selection_select_iter (selection, &iter); } static gboolean gcm_prefs_tree_model_count_cb (GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, gpointer user_data) { guint *i = (guint *) user_data; (*i)++; return FALSE; } static void gcm_prefs_get_devices_cb (GObject *object, GAsyncResult *res, gpointer user_data) { CcColorPanel *prefs = (CcColorPanel *) user_data; CdClient *client = CD_CLIENT (object); CdDevice *device; GError *error = NULL; GPtrArray *devices; GtkTreePath *path; GtkWidget *widget; guint i; guint devices_and_profiles = 0; CcColorPanelPrivate *priv = prefs->priv; /* get devices and add them */ devices = cd_client_get_devices_finish (client, res, &error); if (devices == NULL) { g_warning ("failed to add connected devices: %s", error->message); g_error_free (error); goto out; } for (i = 0; i < devices->len; i++) { device = g_ptr_array_index (devices, i); gcm_prefs_add_device (prefs, device); } /* ensure we show the 'No devices detected' entry if empty */ gcm_prefs_update_device_list_extra_entry (prefs); /* set the cursor on the first device */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "treeview_devices")); path = gtk_tree_path_new_from_string ("0"); gtk_tree_view_set_cursor (GTK_TREE_VIEW (widget), path, NULL, FALSE); gtk_tree_path_free (path); /* if we have only a few devices and profiles expand the treeview * devices so they can all be seen */ gtk_tree_model_foreach (GTK_TREE_MODEL (priv->list_store_devices), gcm_prefs_tree_model_count_cb, &devices_and_profiles); if (devices_and_profiles <= GCM_PREFS_MAX_DEVICES_PROFILES_EXPANDED) gtk_tree_view_expand_all (GTK_TREE_VIEW (widget)); out: if (devices != NULL) g_ptr_array_unref (devices); } static void gcm_prefs_button_virtual_add_cb (GtkWidget *widget, CcColorPanel *prefs) { CdDeviceKind device_kind; CdDevice *device; const gchar *model; const gchar *manufacturer; gchar *device_id; GError *error = NULL; GHashTable *device_props; CcColorPanelPrivate *priv = prefs->priv; /* get device details */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "combobox_virtual_type")); device_kind = gtk_combo_box_get_active (GTK_COMBO_BOX(widget)) + 2; widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "entry_virtual_model")); model = gtk_entry_get_text (GTK_ENTRY (widget)); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "entry_virtual_manufacturer")); manufacturer = gtk_entry_get_text (GTK_ENTRY (widget)); /* create device */ device_id = g_strdup_printf ("%s-%s-%s", cd_device_kind_to_string (device_kind), manufacturer, model); device_props = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free); g_hash_table_insert (device_props, g_strdup ("Kind"), g_strdup (cd_device_kind_to_string (device_kind))); g_hash_table_insert (device_props, g_strdup ("Mode"), g_strdup (cd_device_mode_to_string (CD_DEVICE_MODE_VIRTUAL))); g_hash_table_insert (device_props, g_strdup ("Colorspace"), g_strdup (cd_colorspace_to_string (CD_COLORSPACE_RGB))); g_hash_table_insert (device_props, g_strdup ("Model"), g_strdup (model)); g_hash_table_insert (device_props, g_strdup ("Vendor"), g_strdup (manufacturer)); device = cd_client_create_device_sync (priv->client, device_id, CD_OBJECT_SCOPE_DISK, device_props, priv->cancellable, &error); if (device == NULL) { g_warning ("Failed to add create virtual device: %s", error->message); g_error_free (error); goto out; } out: g_hash_table_unref (device_props); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "dialog_virtual")); gtk_widget_hide (widget); g_free (device_id); } static void gcm_prefs_button_virtual_cancel_cb (GtkWidget *widget, CcColorPanel *prefs) { CcColorPanelPrivate *priv = prefs->priv; widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "dialog_virtual")); gtk_widget_hide (widget); } static gboolean gcm_prefs_virtual_delete_event_cb (GtkWidget *widget, GdkEvent *event, CcColorPanel *prefs) { gcm_prefs_button_virtual_cancel_cb (widget, prefs); return TRUE; } static const gchar * cd_device_kind_to_localised_string (CdDeviceKind device_kind) { if (device_kind == CD_DEVICE_KIND_DISPLAY) return C_("Device kind", "Display"); if (device_kind == CD_DEVICE_KIND_SCANNER) return C_("Device kind", "Scanner"); if (device_kind == CD_DEVICE_KIND_PRINTER) return C_("Device kind", "Printer"); if (device_kind == CD_DEVICE_KIND_CAMERA) return C_("Device kind", "Camera"); if (device_kind == CD_DEVICE_KIND_WEBCAM) return C_("Device kind", "Webcam"); return NULL; } static void gcm_prefs_setup_virtual_combobox (GtkWidget *widget) { guint i; const gchar *text; for (i=CD_DEVICE_KIND_SCANNER; ipriv; ret = cd_client_connect_finish (priv->client, res, &error); if (!ret) { g_warning ("failed to connect to colord: %s", error->message); g_error_free (error); return; } /* set calibrate button sensitivity */ gcm_prefs_sensor_coldplug (prefs); /* get devices */ cd_client_get_devices (priv->client, priv->cancellable, gcm_prefs_get_devices_cb, prefs); } static void gcm_prefs_window_realize_cb (GtkWidget *widget, CcColorPanel *prefs) { prefs->priv->main_window = gtk_widget_get_toplevel (widget); } static const char * cc_color_panel_get_help_uri (CcPanel *panel) { if (!g_strcmp0(g_getenv("XDG_CURRENT_DESKTOP"), "Unity")) return "help:ubuntu-help/color"; else return "help:gnome-help/color"; } static void cc_color_panel_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) { switch (property_id) { default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } } static void cc_color_panel_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) { switch (property_id) { default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } } static void cc_color_panel_dispose (GObject *object) { CcColorPanelPrivate *priv = CC_COLOR_PANEL (object)->priv; if (priv->settings) { g_object_unref (priv->settings); priv->settings = NULL; } if (priv->cancellable != NULL) { g_cancellable_cancel (priv->cancellable); g_object_unref (priv->cancellable); priv->cancellable = NULL; } if (priv->builder != NULL) { g_object_unref (priv->builder); priv->builder = NULL; } if (priv->client != NULL) { g_object_unref (priv->client); priv->client = NULL; } if (priv->current_device != NULL) { g_object_unref (priv->current_device); priv->current_device = NULL; } if (priv->sensor != NULL) { g_object_unref (priv->sensor); priv->sensor = NULL; } G_OBJECT_CLASS (cc_color_panel_parent_class)->dispose (object); } static void cc_color_panel_finalize (GObject *object) { G_OBJECT_CLASS (cc_color_panel_parent_class)->finalize (object); } static void cc_color_panel_class_init (CcColorPanelClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); CcPanelClass *panel_class = CC_PANEL_CLASS (klass); g_type_class_add_private (klass, sizeof (CcColorPanelPrivate)); panel_class->get_help_uri = cc_color_panel_get_help_uri; object_class->get_property = cc_color_panel_get_property; object_class->set_property = cc_color_panel_set_property; object_class->dispose = cc_color_panel_dispose; object_class->finalize = cc_color_panel_finalize; } static void cc_color_panel_init (CcColorPanel *prefs) { CcColorPanelPrivate *priv; GError *error = NULL; GtkStyleContext *context; GtkTreeSelection *selection; GtkWidget *widget; priv = prefs->priv = COLOR_PANEL_PRIVATE (prefs); priv->builder = gtk_builder_new (); gtk_builder_add_from_file (priv->builder, CINNAMONCC_UI_DIR "/color.ui", &error); if (error != NULL) { g_warning ("Could not load interface file: %s", error->message); g_error_free (error); return; } priv->cancellable = g_cancellable_new (); /* setup defaults */ priv->settings = g_settings_new (GCM_SETTINGS_SCHEMA); /* create list stores */ priv->list_store_devices = gtk_tree_store_new (GCM_PREFS_COLUMN_NUM_COLUMNS, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, CD_TYPE_DEVICE, CD_TYPE_PROFILE, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_BOOLEAN, G_TYPE_BOOLEAN); /* assign buttons */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "toolbutton_profile_add")); g_signal_connect (widget, "clicked", G_CALLBACK (gcm_prefs_profile_add_cb), prefs); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "toolbutton_profile_remove")); g_signal_connect (widget, "clicked", G_CALLBACK (gcm_prefs_profile_remove_cb), prefs); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "toolbutton_profile_view")); g_signal_connect (widget, "clicked", G_CALLBACK (gcm_prefs_profile_view_cb), prefs); /* create device tree view */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "treeview_devices")); gtk_tree_view_set_model (GTK_TREE_VIEW (widget), GTK_TREE_MODEL (priv->list_store_devices)); gtk_tree_view_set_enable_tree_lines (GTK_TREE_VIEW (widget), TRUE); gtk_tree_view_set_level_indentation (GTK_TREE_VIEW (widget), 0); selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (widget)); g_signal_connect (selection, "changed", G_CALLBACK (gcm_prefs_devices_treeview_clicked_cb), prefs); g_signal_connect (GTK_TREE_VIEW (widget), "row-activated", G_CALLBACK (gcm_prefs_treeview_row_activated_cb), prefs); g_signal_connect (GTK_TREE_VIEW (widget), "popup-menu", G_CALLBACK (gcm_prefs_treeview_popup_menu_cb), prefs); /* add columns to the tree view */ gcm_prefs_add_devices_columns (prefs, GTK_TREE_VIEW (widget)); /* force to be at least ~6 rows high */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "scrolledwindow_devices")); gtk_scrolled_window_set_min_content_height (GTK_SCROLLED_WINDOW (widget), 200); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "toolbutton_device_default")); g_signal_connect (widget, "clicked", G_CALLBACK (gcm_prefs_default_cb), prefs); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "toolbutton_device_remove")); g_signal_connect (widget, "clicked", G_CALLBACK (gcm_prefs_delete_cb), prefs); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "toolbutton_device_add")); g_signal_connect (widget, "clicked", G_CALLBACK (gcm_prefs_device_add_cb), prefs); /* make devices toolbar sexy */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "scrolledwindow_devices")); context = gtk_widget_get_style_context (widget); gtk_style_context_set_junction_sides (context, GTK_JUNCTION_BOTTOM); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "toolbar_devices")); context = gtk_widget_get_style_context (widget); gtk_style_context_add_class (context, GTK_STYLE_CLASS_INLINE_TOOLBAR); gtk_style_context_set_junction_sides (context, GTK_JUNCTION_TOP); /* set up virtual dialog */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "dialog_virtual")); g_signal_connect (widget, "delete-event", G_CALLBACK (gcm_prefs_virtual_delete_event_cb), prefs); g_signal_connect (widget, "drag-data-received", G_CALLBACK (gcm_prefs_virtual_drag_data_received_cb), prefs); gcm_prefs_setup_drag_and_drop (widget); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "button_virtual_add")); g_signal_connect (widget, "clicked", G_CALLBACK (gcm_prefs_button_virtual_add_cb), prefs); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "button_virtual_cancel")); g_signal_connect (widget, "clicked", G_CALLBACK (gcm_prefs_button_virtual_cancel_cb), prefs); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "combobox_virtual_type")); gcm_prefs_setup_virtual_combobox (widget); /* set up assign dialog */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "dialog_assign")); g_signal_connect (widget, "delete-event", G_CALLBACK (gcm_prefs_profile_delete_event_cb), prefs); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "button_assign_cancel")); g_signal_connect (widget, "clicked", G_CALLBACK (gcm_prefs_button_assign_cancel_cb), prefs); widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "button_assign_ok")); g_signal_connect (widget, "clicked", G_CALLBACK (gcm_prefs_button_assign_ok_cb), prefs); /* setup icc profiles list */ widget = GTK_WIDGET (gtk_builder_get_object (priv->builder, "combobox_profile")); gcm_prefs_set_combo_simple_text (widget); gtk_widget_set_sensitive (widget, FALSE); g_signal_connect (G_OBJECT (widget), "changed", G_CALLBACK (gcm_prefs_profile_combo_changed_cb), prefs); /* use a device client array */ priv->client = cd_client_new (); g_signal_connect (priv->client, "device-added", G_CALLBACK (gcm_prefs_device_added_cb), prefs); g_signal_connect (priv->client, "device-removed", G_CALLBACK (gcm_prefs_device_removed_cb), prefs); g_signal_connect (priv->client, "changed", G_CALLBACK (gcm_prefs_changed_cb), prefs); /* connect to colord */ cd_client_connect (priv->client, priv->cancellable, gcm_prefs_connect_cb, prefs); /* use the color sensor */ g_signal_connect (priv->client, "sensor-added", G_CALLBACK (gcm_prefs_client_sensor_changed_cb), prefs); g_signal_connect (priv->client, "sensor-removed", G_CALLBACK (gcm_prefs_client_sensor_changed_cb), prefs); widget = WID (priv->builder, "dialog-vbox1"); gtk_widget_reparent (widget, (GtkWidget *) prefs); g_signal_connect (widget, "realize", G_CALLBACK (gcm_prefs_window_realize_cb), prefs); } void cc_color_panel_register (GIOModule *module) { textdomain (GETTEXT_PACKAGE); bindtextdomain (GETTEXT_PACKAGE, LOCALE_DIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); cc_color_panel_register_type (G_TYPE_MODULE (module)); g_io_extension_point_implement (CC_SHELL_PANEL_EXTENSION_POINT, CC_TYPE_COLOR_PANEL, "color", 0); } cinnamon-control-center-6.2.0/panels/color/color-module.c0000664000175000017500000000214514632072346022357 0ustar fabiofabio/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- * * Copyright (C) 2010 Red Hat, Inc * Copyright (C) 2011 Richard Hughes * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA 02110-1335, USA. * * */ #include #include "cc-color-panel.h" #include void g_io_module_load (GIOModule *module) { /* register the panel */ cc_color_panel_register (module); } void g_io_module_unload (GIOModule *module) { } cinnamon-control-center-6.2.0/panels/color/color.ui0000664000175000017500000007050414632072346021273 0ustar fabiofabio False 5 False True center-on-parent True gnome-color-manager dialog True True dialog_prefs True False vertical 2 True False end gtk-cancel True True True False True False False 0 gtk-add True True True False True False False 1 False True end 0 True False 9 True False True False Available Profiles False False 0 False False 0 True False 5 False True 1 False True 1 button_assign_cancel button_assign_ok False 12 Color center preferences-system True False 15 vertical 12 True False 9 True False 0 Each device needs an up to date color profile to be color managed. True False False 0 True False True True 1 False False 0 True False True True in True True True True 0 True False False 1 True False False True False Add device True False True Add a virtual device False True False True 0 Delete device True False True Remove a device False True False True 1 Set for all users False True Set this profile for all users on this computer False True False True 2 True True False False True False Add profile True False False True False True 0 Remove profile False False True False True 1 View details False False True False True 2 False False True 1 False True 1 False 15 False True center-on-parent True gnome-color-manager dialog True True dialog_prefs True False vertical 2 True False end gtk-cancel True True True False True False False 0 gtk-add True True True False True False False 1 False True end 0 True False 9 True False 3 2 6 9 True False True False Device type: False True 0 GTK_FILL GTK_FILL True False 0 1 2 True False True False Manufacturer: False True 0 1 2 GTK_FILL GTK_FILL True False True False Model: False True 0 2 3 GTK_FILL GTK_FILL True True ā— 1 2 1 2 True True ā— 1 2 2 3 False False 0 True False 12 True False gtk-dialog-info 6 False True 0 True False True False Image files can be dragged on this window to auto-complete the above fields. True True True 0 False True 1 False False 1 True True 1 button_virtual_cancel button_virtual_add cinnamon-control-center-6.2.0/panels/color/cinnamon-color-panel.desktop0000664000175000017500000001715114632072346025223 0ustar fabiofabio[Desktop Entry] Exec=cinnamon-settings color Icon=cs-color Terminal=false Type=Application StartupNotify=true Categories=GTK;Settings;X-Cinnamon-Settings-Panel;HardwareSettings OnlyShowIn=X-Cinnamon; X-Cinnamon-Settings-Panel=color Name=Color Name[am]=į‰€įˆˆįˆ Name[ar]=Ų§Ł„Ł„ŁˆŁ† Name[ay]=Sami Name[az]=Tüs Name[be]=ŠšŠ¾Š»ŠµŃ€ Name[be@latin]=ŠšŠ¾Š»ŠµŃ€ Name[bg]=Š¦Š²ŃŃ‚ Name[bs]=Boja Name[cs]=Barva Name[cy]=Lliw Name[da]=Farve Name[de]=Farbe Name[el]=Ī§ĻĻ‰Ī¼Ī±Ļ„Ī¹ĻƒĪ¼ĻŒĻ‚ Name[en_CA]=Colour Name[en_GB]=Colour Name[eo]=Koloro Name[et]=VƤrv Name[eu]=Kolorea Name[fa]=رنگ Name[fi]=VƤri Name[fr]=Couleur Name[fr_CA]=Couleur Name[gd]=Dath Name[gl]=Cor Name[he]=צבע Name[hi]=रंग Name[hr]=Boja Name[hu]=SzĆ­n Name[id]=Warna Name[is]=Litur Name[it]=Colore Name[ja]=色 Name[ka]=įƒ¤įƒ”įƒ įƒ˜ Name[kab]=Ini Name[kk]=Түс Name[km]=įž–įžŽįŸŒ Name[ko]=ģƒ‰ź¹” Name[ku]=Reng Name[lt]=Spalva Name[lv]=Krāsa Name[ms]=Warna Name[nb]=Farge Name[nds]=Farbe Name[nl]=Kleur Name[nn]=Farge Name[pa]=ਰੰਗ Name[pl]=Kolor Name[pt]=Cor Name[pt_BR]=Cor Name[ro]=Culoare Name[ru]=Цвет Name[rue]=Цвіт Name[sc]=Colores Name[sk]=Farba Name[sl]=Barva Name[sq]=Ngjyra Name[sr]=Š‘Š¾Ń˜Š° Name[sr@latin]=Boja Name[sv]=FƤrg Name[ta]=ą®µą®£ąÆą®£ą®®ąÆ Name[tg]=Ранг Name[th]=ąøŖąøµ Name[tr]=Renk Name[uk]=ŠšŠ¾Š»Ń–Ń€ Name[ur]=رنگ Name[uz]=Rang Name[uz@cyrillic]=Rang Name[vi]=MĆ u sįŗÆc Name[zh_CN]=色彩 Name[zh_HK]=é”č‰² Name[zh_TW]=é”č‰² Comment=Color management settings Comment[am]=የ į‰€įˆˆįˆ įŠ įˆµį‰°į‹³į‹³įˆŖ įˆ›įˆ°įŠ“įŒƒ Comment[ar]=Ų„Ų¹ŲÆŲ§ŲÆŲ§ŲŖ Ų„ŲÆŲ§Ų±Ų© Ų§Ł„Ł„ŁˆŁ† Comment[ast]=Axustes de l'alministración de color Comment[ay]=Sami irpaw mayjachawi Comment[az]=Tüs yƶnətim quruluşları Comment[be]=ŠŠ°Š»Š°Š“Ń‹ ŠŗŠ¾Š»ŠµŃ€Š°Ńž Comment[be@latin]=ŠŠ°Š»Š°Š“Ń‹ ŠŗŠ¾Š»ŠµŃ€Š°Ńž Comment[bg]=ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠ° на цвета Comment[bs]=PodeÅ”avanja upravljanja bojom Comment[ca]=Ajusts de gestió del color Comment[ca@valencia]=ParĆ metres de gestió del color Comment[cs]=NastavenĆ­ sprĆ”vy barev Comment[cy]=Gosodiadau rheoli lliw Comment[da]=Farvestyringsindstillinger Comment[de]=Einstellungen der Farbverwaltung Comment[el]=Ī”Ļ…ĪøĪ¼ĪÆĻƒĪµĪ¹Ļ‚ για τη Ī“Ī¹Ī±Ļ‡ĪµĪÆĻĪ¹ĻƒĪ· χρωμάτων Comment[en_CA]=Colour management settings Comment[en_GB]=Colour management settings Comment[eo]=Ŝanĝi administrad-agordojn Comment[es]=Configuración de la gestión de color Comment[et]=VƤrvihalduse seaded Comment[eu]=Kolore-kudeaketaren ezarpenak Comment[fa]=ŲŖŁ†ŲøŪŒŁ…Ų§ŲŖ Ł…ŲÆŪŒŲ±ŪŒŲŖ رنگ Comment[fi]=VƤrien hallinta Comment[fr]=Gestion des couleurs Comment[fr_CA]=ParamĆØtres de gestion des couleurs Comment[gd]=Roghainnean stiùireadh nan dathan Comment[gl]=Axustes da xestión da cor Comment[he]=הגדרות ניהול צבע Comment[hi]=रंग ą¤Ŗą„ą¤°ą¤¬ą¤‚ą¤§ą¤Ø ą¤øą„‡ą¤Ÿą¤æą¤‚ą¤—ą„ą¤ø Comment[hr]=Postavke upravljanja bojom Comment[hu]=SzĆ­nkezelĆ©si beĆ”llĆ­tĆ”sok Comment[ia]=Configurationes del gestion de color Comment[id]=Pengaturan manajemen warna Comment[is]=Stillingar litastýringar Comment[it]=Impostazioni di gestione del colore Comment[ja]=č‰²ē®”ē†ć®čØ­å®š Comment[kab]=IÉ£ewwaren usefrek n yiniten Comment[kk]=Түстер Š±Š°ŃŅ›Š°Ń€Ńƒ Š±Š°ŠæŃ‚Š°ŃƒŠ»Š°Ń€Ń‹ Comment[ko]=ģƒ‰ ꓀리 설정 Comment[la]=Configuratio colorum Comment[lt]=Spalvų derinimo nustatymai Comment[lv]=Krāsu pārvaldÄ«bas iestatÄ«jumi Comment[ms]=Tetapan pengurusan warna Comment[nl]=Kleurbeheerinstellingen Comment[oc]=ParamĆØtres de gestion de las colors Comment[pa]=ਰੰਗ ąØ®ą©ˆąØØą©‡ąØœąØ®ą©ˆąØ‚ąØŸ ąØøą©ˆąØŸąØæą©°ąØ— Comment[pl]=Ustawienia zarządzania kolorami Comment[pt]=DefiniƧƵes da gestĆ£o de cores Comment[pt_BR]=ConfiguraƧƵes de gerenciamento de cores Comment[ro]=Setări gestiune culori Comment[ru]=ŠŠ°ŃŃ‚Ń€Š¾Š¹ŠŗŠø ŃƒŠæŃ€Š°Š²Š»ŠµŠ½ŠøŃ цветом Comment[sk]=Nastavenia sprĆ”vy farieb Comment[sl]=Nastavitve upravljanja barv Comment[sq]=Parametrat e menaxhimit tĆ« ngjyrĆ«s Comment[sr]=ПоГешавања ŃƒŠæŃ€Š°Š²Ń™Š°ŃšŠ° бојом Comment[sr@latin]=PodeÅ”avanja upravljanja bojom Comment[sv]=InstƤllningar fƶr fƤrghantering Comment[ta]=நிற ą®®ąÆ‡ą®²ą®¾ą®£ąÆą®®ąÆˆ ą®…ą®®ąÆˆą®ŖąÆą®ŖąÆą®•ą®³ąÆ Comment[tg]=Танзимоти ŠøŠ“Š¾Ń€Š°ŠŗŃƒŠ½ŠøŠø ранг Comment[th]=ąø•ąø±ą¹‰ąø‡ąø„ą¹ˆąø²ąøąø²ąø£ąøˆąø±ąø”ąøąø²ąø£ąøŖąøµ Comment[tr]=Renk yƶnetimi ayarları Comment[uk]=ŠŠ°Š»Š°ŃˆŃ‚ŃƒŠ²Š°Š½Š½Ń ŠŗŠµŃ€ŃƒŠ²Š°Š½Š½Ń ŠŗŠ¾Š»ŃŒŠ¾Ń€Š¾Š¼ Comment[ur]=رنگ کے انتظام کی ترتیبات Comment[uz]=Ranglarni boshqarish moslamalari Comment[uz@cyrillic]=Ranglarni boshqarish moslamalari Comment[vi]=Thiįŗæt đặt quįŗ£n lý mĆ u sįŗÆc Comment[zh_CN]=色彩箔理设置 Comment[zh_HK]=é”č‰²ē®”ē†čØ­å®š Comment[zh_TW]=é”č‰²ē®”ē†čØ­å®š Keywords=Color;ICC;Profile;Calibrate;Printer;Display; Keywords[be]=колер;ŠæŃ€Š¾Ń„Ń–Š»ŃŒ;ŠŗŠ°Š»Ń–Š±Ń€Š¾ŃžŠŗŠ°;прынтар;Š“Ń‹ŃŠæŠ»ŃŠ¹; Keywords[be@latin]=колер;ŠæŃ€Š¾Ń„Ń–Š»ŃŒ;ŠŗŠ°Š»Ń–Š±Ń€Š¾ŃžŠŗŠ°;прынтар;Š“Ń‹ŃŠæŠ»ŃŠ¹; Keywords[ca]=Color;ICC;Perfil;Calibrar;Impressora;Pantalla; Keywords[ca@valencia]=Color;ICC;Perfil;Calibrar;Impressora;Pantalla; Keywords[cs]=Barva;ICC;profil;kalibrace;tisk;displeje; Keywords[cy]=Lliw;ICC;Proffil;Calibro;Argraffydd;Dangosydd; Keywords[da]=Farve;ICC;Profil;Kalibrere;Printer;SkƦrm; Keywords[de]=Color;ICC;Profile;Calibrate;Printer;Display;Farbe;Kalibrieren;Drucker;Bildschirm;Anzeige; Keywords[el]=Ī§ĻĻŽĪ¼Ī±;ICC;Προφίλ;Ī’Ī±ĪøĪ¼ĪæĪ½ĻŒĪ¼Ī·ĻƒĪ·;Εκτυπωτής;Οθόνη; Keywords[en_GB]=Colour;ICC;Profile;Calibrate;Printer;Display; Keywords[eo]=Koloro;ICC;Profilo;Kalibri;Presilo;Ekrano; Keywords[es]=Color;ICC;Perfil;Calibrar;Impresora;Pantalla; Keywords[et]=VƤrv;ICC;profiil;kalibreerimine;printer;ekraan; Keywords[eu]=Kolorea;ICC;Profila;Kalibratu;Inprimagailua;Pantaila; Keywords[fa]=Ų±Ł†ŚÆŲŒ ICC ، Ł¾Ų±ŁˆŁŲ§ŪŒŁ„ŲŒ Ś©Ų§Ł„ŪŒŲØŲ±Ł‡ Ś©Ų±ŲÆŁ†ŲŒ Ł¾Ų±ŪŒŁ†ŲŖŲ±ŲŒ Ł†Ł…Ų§ŪŒŲ“ŚÆŲ±; Keywords[fi]=VƤri;ICC;Profiili;Kalibrointi;Tulostin;NƤyttƶ; Keywords[fr]=Couleur;ICC;Profil;Calibrer;Imprimante;Affichage; Keywords[fr_CA]=Couleur;ICC;Profil;Calibrer;Imprimante;Affichage; Keywords[he]=צבע;ICC;×¤×Ø×•×¤×™×œ;כיול;×ž×“×¤×”×Ŗ;תצוגה; Keywords[hr]=Boja;ICC;Profil;Kalibracija;Pisač;Zaslon; Keywords[hu]=SzĆ­n;ICC;SzĆ­nek;ProfilozĆ”s;KalibrĆ”lĆ”s;Nyomtató;Kijelző;Color;Profile;Calibrate;Printer;Display; Keywords[ia]=Color;ICC;Profilo;Calibrar;Imprimitor;Visualisation; Keywords[id]=Warna;ICC;Profil;Kalibrasi;Printer;Tampilan; Keywords[is]=Litur;ICC;Litasniư;Kvarưa;Prentari;SkjĆ”r; Keywords[it]=Colore;ICC;Profilo;Calibrazione;Stampante;Schermo; Keywords[ja]=Color;ICC;Profile;Calibrate;Printer;Display;ć‚«ćƒ©ćƒ¼;色;ćƒ—ćƒ­ćƒ•ć‚”ć‚¤ćƒ«;ć‚­ćƒ£ćƒŖćƒ–ćƒ¬ćƒ¼ć‚·ćƒ§ćƒ³;較正;ćƒ—ćƒŖćƒ³ć‚æćƒ¼;ćƒ‡ć‚£ć‚¹ćƒ—ćƒ¬ć‚¤; Keywords[ko]=ģƒ‰ģƒ;ICC;ķ”„ė”œķ•„;볓정;프린터;ė””ģŠ¤ķ”Œė ˆģ“; Keywords[nl]=Kleur;ICC;Profiel;Calibreren;Printer;Beeldscherm; Keywords[oc]=Color;ICC;Perfil;Calibrar;Imprimenta;Afichatge; Keywords[pl]=Kolor;ICC;Profil;Kalibracja;Drukarka;Wyświetlacz; Keywords[pt]=Cor;ICC;Perfil;Calibrar;Impressora;EcrĆ£; Keywords[pt_BR]=Cor;ICC;Perfil;Calibrar;Impressora;Exibir; Keywords[ro]=Culoare;ICC;Profil;Calibrare;Imprimantă;Afișare; Keywords[ru]=Цвет;ICC;ŠŸŃ€Š¾Ń„ŠøŠ»ŃŒ;ŠšŠ°Š»ŠøŠ±Ń€Š¾Š²Š°Ń‚ŃŒ;ŠŸŃ€ŠøŠ½Ń‚ŠµŃ€;Экран; Keywords[rue]=Цвіт;ICC;ŠŸŃ€Š¾Ń„Ń–Š»;ŠœŃƒŃŃ‚Ń€Š¾Š²Š°Ń‚Šø;ŠŸŃ€Ń–Š½Ń‚ŠµŃ€;Екран; Keywords[sk]=Farba;ICC;Profil;KalibrĆ”cia;Tlačiareň;Displej; Keywords[sl]=Barva;ICC;profil;kalibriraj;tiskalnik;zaslon; Keywords[sv]=FƤrg;ICC;Profil;Kalibrera;Skrivare;SkƤrm; Keywords[tr]=Renk;ICC;Profil;Kalibrasyon;Yazıcı;Gƶrüntü; Keywords[uk]=ŠšŠ¾Š»Ń–Ń€;ICC;ŠŸŃ€Š¾Ń„Ń–Š»ŃŒ;ŠšŠ°Š»Ń–Š±Ń€ŃƒŠ²Š°Š½Š½Ń;ŠŸŃ€ŠøŠ½Ń‚ŠµŃ€;Дисплей; Keywords[uz]=Rang;ICC;Profil;Kalibrlash;Printer;Displey; Keywords[uz@cyrillic]=Rang;ICC;Profil;Kalibrlash;Printer;Displey; cinnamon-control-center-6.2.0/panels/color/cc-color-panel.h0000664000175000017500000000376414632072346022571 0ustar fabiofabio/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- * * Copyright (C) 2010 Red Hat, Inc * Copyright (C) 2011 Richard Hughes * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA 02110-1335, USA. * */ #ifndef _CC_COLOR_PANEL_H #define _CC_COLOR_PANEL_H #include G_BEGIN_DECLS #define CC_TYPE_COLOR_PANEL cc_color_panel_get_type() #define CC_COLOR_PANEL(obj) \ (G_TYPE_CHECK_INSTANCE_CAST ((obj), \ CC_TYPE_COLOR_PANEL, CcColorPanel)) #define CC_COLOR_PANEL_CLASS(klass) \ (G_TYPE_CHECK_CLASS_CAST ((klass), \ CC_TYPE_COLOR_PANEL, CcColorPanelClass)) #define CC_IS_COLOR_PANEL(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \ CC_TYPE_COLOR_PANEL)) #define CC_IS_COLOR_PANEL_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE ((klass), \ CC_TYPE_COLOR_PANEL)) #define CC_COLOR_PANEL_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), \ CC_TYPE_COLOR_PANEL, CcColorPanelClass)) typedef struct _CcColorPanel CcColorPanel; typedef struct _CcColorPanelClass CcColorPanelClass; typedef struct _CcColorPanelPrivate CcColorPanelPrivate; struct _CcColorPanel { CcPanel parent; CcColorPanelPrivate *priv; }; struct _CcColorPanelClass { CcPanelClass parent_class; }; GType cc_color_panel_get_type (void) G_GNUC_CONST; void cc_color_panel_register (GIOModule *module); G_END_DECLS #endif /* _CC_COLOR_PANEL_H */ cinnamon-control-center-6.2.0/panels/display/0000775000175000017500000000000014632072346020137 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/display/meson.build0000664000175000017500000000204714632072346022304 0ustar fabiofabiosources = files( 'cc-display-panel.c', 'cc-display-arrangement.c', 'cc-display-config.c', 'cc-display-config-dbus.c', 'cc-display-config-manager-dbus.c', 'cc-display-config-manager.c', 'cc-display-settings.c', 'cc-display-labeler.c', 'display-module.c' ) resource_data = files( 'cc-display-panel.ui', 'cc-display-settings.ui' ) sources += gnome.compile_resources( 'cc-display-resources', 'display.gresource.xml', c_name: 'cc_display', dependencies: resource_data, export: true ) deps = [ colord, cinn_desktop, math, upower_glib_dep, cinn_desktop, libx11, glib ] install_data('org.cinnamon.control-center.display.gschema.xml', install_dir: join_paths(get_option('datadir'), 'glib-2.0', 'schemas') ) panel_display = shared_library( 'display', link_with: libcinnamon_control_center, sources: sources, include_directories: [ rootInclude ], dependencies: deps, install: true, install_dir: panels_dir ) install_data( 'cinnamon-display-panel.desktop', install_dir: desktop_dir ) subdir('icons') cinnamon-control-center-6.2.0/panels/display/display-arrangement.css0000664000175000017500000000131714632072346024621 0ustar fabiofabio .display-arrangement { background-color: #8b8b8b; } .display-arrangement.monitor { border: solid 1px @borders; margin: 0px 0px 1px 1px; background: @theme_bg_color; padding: 0.4em; } .display-arrangement.monitor.primary { border-bottom: 0.4em solid black; } .display-arrangement.monitor:selected { border: solid .2em black; } .display-arrangement.monitor.primary:selected { border-top: solid .2em black; border-left: solid .2em black; border-right: solid .2em black; border-bottom: 0.4em solid black; } .display-arrangement.monitor-label { font-size: larger; font-weight: bold; border-radius: 0.3em; padding-right: 0.2em; padding-left: 0.2em; color: #fff; background: #000; } cinnamon-control-center-6.2.0/panels/display/cc-display-panel.h0000664000175000017500000000340214632072346023434 0ustar fabiofabio/* * Copyright (C) 2010 Intel, Inc * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * * Author: Thomas Wood * */ #pragma once #include G_BEGIN_DECLS #define CC_TYPE_DISPLAY_PANEL (cc_display_panel_get_type ()) #define CC_DISPLAY_PANEL(obj) \ (G_TYPE_CHECK_INSTANCE_CAST ((obj), \ CC_TYPE_DISPLAY_PANEL, CcDisplayPanel)) #define CC_DISPLAY_PANEL_CLASS(klass) \ (G_TYPE_CHECK_CLASS_CAST ((klass), \ CC_TYPE_DISPLAY_PANEL, CcDisplayPanelClass)) #define CC_IS_DISPLAY_PANEL(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \ CC_TYPE_DISPLAY_PANEL)) #define CC_IS_DISPLAY_PANEL_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE ((klass), \ CC_TYPE_DISPLAY_PANEL)) #define CC_DISPLAY_PANEL_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), \ CC_TYPE_DISPLAY_PANEL, CcDisplayPanelClass)) typedef struct _CcDisplayPanel CcDisplayPanel; typedef struct _CcDisplayPanelClass CcDisplayPanelClass; typedef struct _CcDisplayPanelPrivate CcDisplayPanelPrivate; struct _CcDisplayPanelClass { CcPanelClass parent_class; }; GType cc_display_panel_get_type (void) G_GNUC_CONST; void cc_display_panel_register (GIOModule *module); G_END_DECLS cinnamon-control-center-6.2.0/panels/display/cc-display-config-dbus.c0000664000175000017500000014376014632072346024544 0ustar fabiofabio/* * Copyright (C) 2017 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * */ #include #include #include "cc-display-config-dbus.h" #define MODE_BASE_FORMAT "siiddad" #define MODE_FORMAT "(" MODE_BASE_FORMAT "a{sv})" #define MODES_FORMAT "a" MODE_FORMAT #define MONITOR_SPEC_FORMAT "(ssss)" #define MONITOR_FORMAT "(" MONITOR_SPEC_FORMAT MODES_FORMAT "a{sv})" #define MONITORS_FORMAT "a" MONITOR_FORMAT #define LOGICAL_MONITOR_MONITORS_FORMAT "a" MONITOR_SPEC_FORMAT #define LOGICAL_MONITOR_FORMAT "(iidub" LOGICAL_MONITOR_MONITORS_FORMAT "a{sv})" #define LOGICAL_MONITORS_FORMAT "a" LOGICAL_MONITOR_FORMAT #define CURRENT_STATE_FORMAT "(u" MONITORS_FORMAT LOGICAL_MONITORS_FORMAT "a{sv})" typedef enum _CcDisplayModeFlags { MODE_PREFERRED = 1 << 0, MODE_CURRENT = 1 << 1, MODE_INTERLACED = 1 << 2, } CcDisplayModeFlags; struct _CcDisplayModeDBus { CcDisplayMode parent_instance; char *id; int width; int height; double refresh_rate; double preferred_scale; GArray *supported_scales; guint32 flags; }; G_DEFINE_TYPE (CcDisplayModeDBus, cc_display_mode_dbus, CC_TYPE_DISPLAY_MODE) static gboolean cc_display_mode_dbus_equal (const CcDisplayModeDBus *m1, const CcDisplayModeDBus *m2) { if (!m1 && !m2) return TRUE; else if (!m1 || !m2) return FALSE; return m1->width == m2->width && m1->height == m2->height && m1->refresh_rate == m2->refresh_rate && (m1->flags & MODE_INTERLACED) == (m2->flags & MODE_INTERLACED); } static void cc_display_mode_dbus_get_resolution (CcDisplayMode *pself, int *w, int *h) { CcDisplayModeDBus *self = CC_DISPLAY_MODE_DBUS (pself); if (w) *w = self->width; if (h) *h = self->height; } static const double * cc_display_mode_dbus_get_supported_scales (CcDisplayMode *pself) { CcDisplayModeDBus *self = CC_DISPLAY_MODE_DBUS (pself); return (const double *) self->supported_scales->data; } static double cc_display_mode_dbus_get_preferred_scale (CcDisplayMode *pself) { CcDisplayModeDBus *self = CC_DISPLAY_MODE_DBUS (pself); return self->preferred_scale; } static gboolean cc_display_mode_dbus_is_supported_scale (CcDisplayMode *pself, double scale) { CcDisplayModeDBus *self = CC_DISPLAY_MODE_DBUS (pself); guint i; for (i = 0; i < self->supported_scales->len; i++) if (g_array_index (self->supported_scales, double, i) == scale) return TRUE; return FALSE; } static gboolean cc_display_mode_dbus_is_interlaced (CcDisplayMode *pself) { CcDisplayModeDBus *self = CC_DISPLAY_MODE_DBUS (pself); return !!(self->flags & MODE_INTERLACED); } static int cc_display_mode_dbus_get_freq (CcDisplayMode *pself) { CcDisplayModeDBus *self = CC_DISPLAY_MODE_DBUS (pself); return self->refresh_rate; } static double cc_display_mode_dbus_get_freq_f (CcDisplayMode *pself) { CcDisplayModeDBus *self = CC_DISPLAY_MODE_DBUS (pself); return self->refresh_rate; } static void cc_display_mode_dbus_init (CcDisplayModeDBus *self) { self->supported_scales = g_array_new (TRUE, TRUE, sizeof (double)); } static void cc_display_mode_dbus_finalize (GObject *object) { CcDisplayModeDBus *self = CC_DISPLAY_MODE_DBUS (object); g_free (self->id); g_array_free (self->supported_scales, TRUE); G_OBJECT_CLASS (cc_display_mode_dbus_parent_class)->finalize (object); } static void cc_display_mode_dbus_class_init (CcDisplayModeDBusClass *klass) { GObjectClass *gobject_class = G_OBJECT_CLASS (klass); CcDisplayModeClass *parent_class = CC_DISPLAY_MODE_CLASS (klass); gobject_class->finalize = cc_display_mode_dbus_finalize; parent_class->get_resolution = cc_display_mode_dbus_get_resolution; parent_class->get_supported_scales = cc_display_mode_dbus_get_supported_scales; parent_class->get_preferred_scale = cc_display_mode_dbus_get_preferred_scale; parent_class->is_interlaced = cc_display_mode_dbus_is_interlaced; parent_class->get_freq = cc_display_mode_dbus_get_freq; parent_class->get_freq_f = cc_display_mode_dbus_get_freq_f; } static CcDisplayModeDBus * cc_display_mode_dbus_new (GVariant *variant) { double d; g_autoptr(GVariantIter) scales_iter = NULL; g_autoptr(GVariant) properties_variant = NULL; gboolean is_current; gboolean is_preferred; gboolean is_interlaced; CcDisplayModeDBus *self = g_object_new (CC_TYPE_DISPLAY_MODE_DBUS, NULL); g_variant_get (variant, "(" MODE_BASE_FORMAT "@a{sv})", &self->id, &self->width, &self->height, &self->refresh_rate, &self->preferred_scale, &scales_iter, &properties_variant); while (g_variant_iter_next (scales_iter, "d", &d)) g_array_append_val (self->supported_scales, d); if (!g_variant_lookup (properties_variant, "is-current", "b", &is_current)) is_current = FALSE; if (!g_variant_lookup (properties_variant, "is-preferred", "b", &is_preferred)) is_preferred = FALSE; if (!g_variant_lookup (properties_variant, "is-interlaced", "b", &is_interlaced)) is_interlaced = FALSE; if (is_current) self->flags |= MODE_CURRENT; if (is_preferred) self->flags |= MODE_PREFERRED; if (is_interlaced) self->flags |= MODE_INTERLACED; return self; } #define CC_TYPE_DISPLAY_LOGICAL_MONITOR (cc_display_logical_monitor_get_type ()) G_DECLARE_FINAL_TYPE (CcDisplayLogicalMonitor, cc_display_logical_monitor, CC, DISPLAY_LOGICAL_MONITOR, GObject) struct _CcDisplayLogicalMonitor { GObject parent_instance; int x; int y; double scale; CcDisplayRotation rotation; gboolean primary; GHashTable *monitors; }; G_DEFINE_TYPE (CcDisplayLogicalMonitor, cc_display_logical_monitor, G_TYPE_OBJECT) static gboolean cc_display_logical_monitor_equal (const CcDisplayLogicalMonitor *m1, const CcDisplayLogicalMonitor *m2) { if (!m1 && !m2) return TRUE; else if (!m1 || !m2) return FALSE; return m1->x == m2->x && m1->y == m2->y && m1->scale == m2->scale && m1->rotation == m2->rotation && m1->primary == m2->primary; } static void cc_display_logical_monitor_init (CcDisplayLogicalMonitor *self) { self->scale = 1.0; self->monitors = g_hash_table_new (NULL, NULL); } static void cc_display_logical_monitor_finalize (GObject *object) { CcDisplayLogicalMonitor *self = CC_DISPLAY_LOGICAL_MONITOR (object); g_warn_if_fail (g_hash_table_size (self->monitors) == 0); g_clear_pointer (&self->monitors, g_hash_table_destroy); G_OBJECT_CLASS (cc_display_logical_monitor_parent_class)->finalize (object); } static void cc_display_logical_monitor_class_init (CcDisplayLogicalMonitorClass *klass) { GObjectClass *gobject_class = G_OBJECT_CLASS (klass); gobject_class->finalize = cc_display_logical_monitor_finalize; } typedef enum _CcDisplayMonitorUnderscanning { UNDERSCANNING_UNSUPPORTED = 0, UNDERSCANNING_DISABLED, UNDERSCANNING_ENABLED } CcDisplayMonitorUnderscanning; struct _CcDisplayMonitorDBus { CcDisplayMonitor parent_instance; CcDisplayConfigDBus *config; gchar *connector_name; gchar *vendor_name; gchar *product_name; gchar *product_serial; gchar *display_name; int width_mm; int height_mm; gboolean builtin; CcDisplayMonitorUnderscanning underscanning; int max_width; int max_height; GList *modes; CcDisplayMode *current_mode; CcDisplayMode *preferred_mode; CcDisplayLogicalMonitor *logical_monitor; }; G_DEFINE_TYPE (CcDisplayMonitorDBus, cc_display_monitor_dbus, CC_TYPE_DISPLAY_MONITOR) static void register_logical_monitor (CcDisplayConfigDBus *self, CcDisplayLogicalMonitor *logical_monitor); static void cc_display_config_dbus_set_primary (CcDisplayConfigDBus *self, CcDisplayMonitorDBus *new_primary); static void cc_display_config_dbus_unset_primary (CcDisplayConfigDBus *self, CcDisplayMonitorDBus *old_primary); static void cc_display_config_dbus_ensure_non_offset_coords (CcDisplayConfigDBus *self); static void cc_display_config_dbus_append_right (CcDisplayConfigDBus *self, CcDisplayLogicalMonitor *monitor); static void cc_display_config_dbus_make_linear (CcDisplayConfigDBus *self); static const char * cc_display_monitor_dbus_get_display_name (CcDisplayMonitor *pself) { CcDisplayMonitorDBus *self = CC_DISPLAY_MONITOR_DBUS (pself); if (self->display_name) return self->display_name; return self->connector_name; } static const char * cc_display_monitor_dbus_get_connector_name (CcDisplayMonitor *pself) { CcDisplayMonitorDBus *self = CC_DISPLAY_MONITOR_DBUS (pself); return self->connector_name; } static gboolean cc_display_monitor_dbus_is_builtin (CcDisplayMonitor *pself) { CcDisplayMonitorDBus *self = CC_DISPLAY_MONITOR_DBUS (pself); return self->builtin; } static gboolean cc_display_monitor_dbus_is_primary (CcDisplayMonitor *pself) { CcDisplayMonitorDBus *self = CC_DISPLAY_MONITOR_DBUS (pself); if (self->logical_monitor) return self->logical_monitor->primary; return FALSE; } static void cc_display_monitor_dbus_set_primary (CcDisplayMonitor *pself, gboolean primary) { CcDisplayMonitorDBus *self = CC_DISPLAY_MONITOR_DBUS (pself); if (primary) cc_display_config_dbus_set_primary (self->config, self); else cc_display_config_dbus_unset_primary (self->config, self); } static gboolean cc_display_monitor_dbus_is_active (CcDisplayMonitor *pself) { CcDisplayMonitorDBus *self = CC_DISPLAY_MONITOR_DBUS (pself); return self->logical_monitor != NULL; } static void cc_display_monitor_dbus_set_logical_monitor (CcDisplayMonitorDBus *self, CcDisplayLogicalMonitor *logical_monitor) { gboolean was_primary = FALSE; if (self->logical_monitor) { was_primary = self->logical_monitor->primary; if (was_primary) cc_display_config_dbus_unset_primary (self->config, self); g_hash_table_remove (self->logical_monitor->monitors, self); g_object_unref (self->logical_monitor); } self->logical_monitor = logical_monitor; if (self->logical_monitor) { g_hash_table_add (self->logical_monitor->monitors, self); g_object_ref (self->logical_monitor); /* unset primary with NULL will select this monitor if it is the only one.*/ if (was_primary) cc_display_config_dbus_set_primary (self->config, self); else cc_display_config_dbus_unset_primary (self->config, NULL); } } static void cc_display_monitor_dbus_set_active (CcDisplayMonitor *pself, gboolean active) { CcDisplayMonitorDBus *self = CC_DISPLAY_MONITOR_DBUS (pself); if (!self->current_mode && active) { if (self->preferred_mode) self->current_mode = self->preferred_mode; else if (self->modes) self->current_mode = (CcDisplayMode *) self->modes->data; else g_warning ("Couldn't find a mode to activate monitor at %s", self->connector_name); } if (!self->logical_monitor && active) { CcDisplayLogicalMonitor *logical_monitor; logical_monitor = g_object_new (CC_TYPE_DISPLAY_LOGICAL_MONITOR, NULL); cc_display_monitor_dbus_set_logical_monitor (self, logical_monitor); cc_display_config_dbus_append_right (self->config, logical_monitor); register_logical_monitor (self->config, logical_monitor); } else if (self->logical_monitor && !active) { cc_display_monitor_dbus_set_logical_monitor (self, NULL); } g_signal_emit_by_name (self, "active"); } static CcDisplayRotation cc_display_monitor_dbus_get_rotation (CcDisplayMonitor *pself) { CcDisplayMonitorDBus *self = CC_DISPLAY_MONITOR_DBUS (pself); if (self->logical_monitor) return self->logical_monitor->rotation; return CC_DISPLAY_ROTATION_NONE; } static void cc_display_monitor_dbus_set_rotation (CcDisplayMonitor *pself, CcDisplayRotation rotation) { CcDisplayMonitorDBus *self = CC_DISPLAY_MONITOR_DBUS (pself); if (!self->logical_monitor) return; if (self->logical_monitor->rotation != rotation) { self->logical_monitor->rotation = rotation; g_signal_emit_by_name (self, "rotation"); } } static gboolean cc_display_monitor_dbus_supports_rotation (CcDisplayMonitor *pself, CcDisplayRotation rotation) { return TRUE; } static void cc_display_monitor_dbus_get_physical_size (CcDisplayMonitor *pself, int *w, int *h) { CcDisplayMonitorDBus *self = CC_DISPLAY_MONITOR_DBUS (pself); if (w) *w = self->width_mm; if (h) *h = self->height_mm; } static void cc_display_monitor_dbus_get_geometry (CcDisplayMonitor *pself, int *x, int *y, int *w, int *h) { CcDisplayMonitorDBus *self = CC_DISPLAY_MONITOR_DBUS (pself); CcDisplayMode *mode = NULL; if (self->logical_monitor) { if (x) *x = self->logical_monitor->x; if (y) *y = self->logical_monitor->y; } else { if (x) *x = -1; if (y) *y = -1; } if (self->current_mode) mode = self->current_mode; else if (self->preferred_mode) mode = self->preferred_mode; else if (self->modes) mode = CC_DISPLAY_MODE (self->modes->data); if (mode) cc_display_mode_get_resolution (mode, w, h); else { g_warning ("Monitor at %s has no modes?", self->connector_name); if (w) *w = -1; if (h) *h = -1; } } static CcDisplayMode * cc_display_monitor_dbus_get_mode (CcDisplayMonitor *pself) { CcDisplayMonitorDBus *self = CC_DISPLAY_MONITOR_DBUS (pself); return self->current_mode; } static CcDisplayMode * cc_display_monitor_dbus_get_preferred_mode (CcDisplayMonitor *pself) { CcDisplayMonitorDBus *self = CC_DISPLAY_MONITOR_DBUS (pself); return self->preferred_mode; } static guint32 cc_display_monitor_dbus_get_id (CcDisplayMonitor *pself) { return 0; } static GList * cc_display_monitor_dbus_get_modes (CcDisplayMonitor *pself) { CcDisplayMonitorDBus *self = CC_DISPLAY_MONITOR_DBUS (pself); return self->modes; } static gboolean cc_display_monitor_dbus_supports_underscanning (CcDisplayMonitor *pself) { CcDisplayMonitorDBus *self = CC_DISPLAY_MONITOR_DBUS (pself); return self->underscanning != UNDERSCANNING_UNSUPPORTED; } static gboolean cc_display_monitor_dbus_get_underscanning (CcDisplayMonitor *pself) { CcDisplayMonitorDBus *self = CC_DISPLAY_MONITOR_DBUS (pself); return self->underscanning == UNDERSCANNING_ENABLED; } static void cc_display_monitor_dbus_set_underscanning (CcDisplayMonitor *pself, gboolean underscanning) { CcDisplayMonitorDBus *self = CC_DISPLAY_MONITOR_DBUS (pself); if (self->underscanning == UNDERSCANNING_UNSUPPORTED) return; if (underscanning) self->underscanning = UNDERSCANNING_ENABLED; else self->underscanning = UNDERSCANNING_DISABLED; } static CcDisplayMode * cc_display_monitor_dbus_get_closest_mode (CcDisplayMonitorDBus *self, CcDisplayModeDBus *mode) { CcDisplayModeDBus *best = NULL; GList *l; for (l = self->modes; l != NULL; l = l->next) { CcDisplayModeDBus *similar = l->data; if (similar->width != mode->width || similar->height != mode->height) continue; if (similar->refresh_rate == mode->refresh_rate && (similar->flags & MODE_INTERLACED) == (mode->flags & MODE_INTERLACED)) { best = similar; break; } /* There might be a better heuristic. */ if (!best || best->refresh_rate < similar->refresh_rate) { best = similar; continue; } } return CC_DISPLAY_MODE (best); } static void cc_display_monitor_dbus_set_mode (CcDisplayMonitor *pself, CcDisplayMode *new_mode) { CcDisplayMonitorDBus *self = CC_DISPLAY_MONITOR_DBUS (pself); CcDisplayMode *mode; g_return_if_fail (new_mode != NULL); mode = cc_display_monitor_dbus_get_closest_mode (self, CC_DISPLAY_MODE_DBUS (new_mode)); self->current_mode = mode; if (!cc_display_mode_dbus_is_supported_scale (mode, cc_display_monitor_get_scale (pself))) cc_display_monitor_set_scale (pself, cc_display_mode_get_preferred_scale (mode)); g_signal_emit_by_name (self, "mode"); } static void cc_display_monitor_dbus_set_position (CcDisplayMonitor *pself, int x, int y) { CcDisplayMonitorDBus *self = CC_DISPLAY_MONITOR_DBUS (pself); if (self->logical_monitor) { gboolean notify = FALSE; if (self->logical_monitor->x != x || self->logical_monitor->y != y) notify = TRUE; self->logical_monitor->x = x; self->logical_monitor->y = y; if (notify) g_signal_emit_by_name (self, "position-changed"); } } static double cc_display_monitor_dbus_get_scale (CcDisplayMonitor *pself) { CcDisplayMonitorDBus *self = CC_DISPLAY_MONITOR_DBUS (pself); if (self->logical_monitor) return self->logical_monitor->scale; return 1.0; } static void cc_display_monitor_dbus_set_scale (CcDisplayMonitor *pself, double scale) { CcDisplayMonitorDBus *self = CC_DISPLAY_MONITOR_DBUS (pself); if (!self->current_mode) return; if (!cc_display_mode_dbus_is_supported_scale (self->current_mode, scale)) return; if (!self->logical_monitor) return; if (self->logical_monitor->scale != scale) { self->logical_monitor->scale = scale; g_signal_emit_by_name (self, "scale"); } } static void cc_display_monitor_dbus_init (CcDisplayMonitorDBus *self) { self->underscanning = UNDERSCANNING_UNSUPPORTED; self->max_width = G_MAXINT; self->max_height = G_MAXINT; } static void cc_display_monitor_dbus_finalize (GObject *object) { CcDisplayMonitorDBus *self = CC_DISPLAY_MONITOR_DBUS (object); g_free (self->connector_name); g_free (self->vendor_name); g_free (self->product_name); g_free (self->product_serial); g_free (self->display_name); g_list_foreach (self->modes, (GFunc) g_object_unref, NULL); g_clear_pointer (&self->modes, g_list_free); if (self->logical_monitor) { g_hash_table_remove (self->logical_monitor->monitors, self); g_object_unref (self->logical_monitor); } G_OBJECT_CLASS (cc_display_monitor_dbus_parent_class)->finalize (object); } static void cc_display_monitor_dbus_class_init (CcDisplayMonitorDBusClass *klass) { GObjectClass *gobject_class = G_OBJECT_CLASS (klass); CcDisplayMonitorClass *parent_class = CC_DISPLAY_MONITOR_CLASS (klass); gobject_class->finalize = cc_display_monitor_dbus_finalize; parent_class->get_display_name = cc_display_monitor_dbus_get_display_name; parent_class->get_connector_name = cc_display_monitor_dbus_get_connector_name; parent_class->is_builtin = cc_display_monitor_dbus_is_builtin; parent_class->is_primary = cc_display_monitor_dbus_is_primary; parent_class->set_primary = cc_display_monitor_dbus_set_primary; parent_class->is_active = cc_display_monitor_dbus_is_active; parent_class->set_active = cc_display_monitor_dbus_set_active; parent_class->get_rotation = cc_display_monitor_dbus_get_rotation; parent_class->set_rotation = cc_display_monitor_dbus_set_rotation; parent_class->supports_rotation = cc_display_monitor_dbus_supports_rotation; parent_class->get_physical_size = cc_display_monitor_dbus_get_physical_size; parent_class->get_geometry = cc_display_monitor_dbus_get_geometry; parent_class->get_mode = cc_display_monitor_dbus_get_mode; parent_class->get_preferred_mode = cc_display_monitor_dbus_get_preferred_mode; parent_class->get_id = cc_display_monitor_dbus_get_id; parent_class->get_modes = cc_display_monitor_dbus_get_modes; parent_class->supports_underscanning = cc_display_monitor_dbus_supports_underscanning; parent_class->get_underscanning = cc_display_monitor_dbus_get_underscanning; parent_class->set_underscanning = cc_display_monitor_dbus_set_underscanning; parent_class->set_mode = cc_display_monitor_dbus_set_mode; parent_class->set_position = cc_display_monitor_dbus_set_position; parent_class->get_scale = cc_display_monitor_dbus_get_scale; parent_class->set_scale = cc_display_monitor_dbus_set_scale; } static void construct_modes (CcDisplayMonitorDBus *self, GVariantIter *modes) { CcDisplayModeDBus *mode; while (TRUE) { g_autoptr(GVariant) variant = NULL; if (!g_variant_iter_next (modes, "@"MODE_FORMAT, &variant)) break; mode = cc_display_mode_dbus_new (variant); self->modes = g_list_prepend (self->modes, mode); if (mode->flags & MODE_PREFERRED) self->preferred_mode = CC_DISPLAY_MODE (mode); if (mode->flags & MODE_CURRENT) self->current_mode = CC_DISPLAY_MODE (mode); } } static CcDisplayMonitorDBus * cc_display_monitor_dbus_new (GVariant *variant, CcDisplayConfigDBus *config) { CcDisplayMonitorDBus *self = g_object_new (CC_TYPE_DISPLAY_MONITOR_DBUS, NULL); gchar *s1, *s2, *s3, *s4; g_autoptr(GVariantIter) modes = NULL; g_autoptr(GVariantIter) props = NULL; self->config = config; g_variant_get (variant, MONITOR_FORMAT, &s1, &s2, &s3, &s4, &modes, &props); self->connector_name = s1; self->vendor_name = s2; self->product_name = s3; self->product_serial = s4; construct_modes (self, modes); while (TRUE) { const char *s; g_autoptr(GVariant) v = NULL; if (!g_variant_iter_next (props, "{&sv}", &s, &v)) break; if (g_str_equal (s, "width-mm")) { g_variant_get (v, "i", &self->width_mm); } else if (g_str_equal (s, "height-mm")) { g_variant_get (v, "i", &self->height_mm); } else if (g_str_equal (s, "is-underscanning")) { gboolean underscanning = FALSE; g_variant_get (v, "b", &underscanning); if (underscanning) self->underscanning = UNDERSCANNING_ENABLED; else self->underscanning = UNDERSCANNING_DISABLED; } else if (g_str_equal (s, "max-screen-size")) { g_variant_get (v, "ii", &self->max_width, &self->max_height); } else if (g_str_equal (s, "is-builtin")) { g_variant_get (v, "b", &self->builtin); } else if (g_str_equal (s, "display-name")) { g_variant_get (v, "s", &self->display_name); } } return self; } typedef enum _CcDisplayLayoutMode { CC_DISPLAY_LAYOUT_MODE_LOGICAL = 1, CC_DISPLAY_LAYOUT_MODE_PHYSICAL = 2, CC_DISPLAY_LAYOUT_MODE_GLOBAL_UI_LOGICAL = 3 } CcDisplayLayoutMode; typedef enum _CcDisplayConfigMethod { CC_DISPLAY_CONFIG_METHOD_VERIFY = 0, CC_DISPLAY_CONFIG_METHOD_TEMPORARY = 1, CC_DISPLAY_CONFIG_METHOD_PERSISTENT = 2 } CcDisplayConfigMethod; struct _CcDisplayConfigDBus { CcDisplayConfig parent_instance; GVariant *state; GDBusConnection *connection; int min_width; int min_height; guint32 serial; gboolean supports_mirroring; gboolean supports_changing_layout_mode; gboolean global_scale_required; CcDisplayLayoutMode layout_mode; gint legacy_ui_scale; GList *monitors; CcDisplayMonitorDBus *primary; GHashTable *logical_monitors; GList *clone_modes; }; G_DEFINE_TYPE (CcDisplayConfigDBus, cc_display_config_dbus, CC_TYPE_DISPLAY_CONFIG) enum { PROP_0, PROP_STATE, PROP_CONNECTION, }; static GList * cc_display_config_dbus_get_monitors (CcDisplayConfig *pself) { CcDisplayConfigDBus *self = CC_DISPLAY_CONFIG_DBUS (pself); return self->monitors; } static GVariant * build_monitors_variant (GHashTable *monitors) { GVariantBuilder builder; GHashTableIter iter; CcDisplayMonitorDBus *monitor; g_variant_builder_init (&builder, G_VARIANT_TYPE_ARRAY); g_hash_table_iter_init (&iter, monitors); while (g_hash_table_iter_next (&iter, (void **) &monitor, NULL)) { GVariantBuilder props_builder; CcDisplayModeDBus *mode_dbus; if (!monitor->current_mode) continue; g_variant_builder_init (&props_builder, G_VARIANT_TYPE ("a{sv}")); g_variant_builder_add (&props_builder, "{sv}", "underscanning", g_variant_new_boolean (monitor->underscanning == UNDERSCANNING_ENABLED)); mode_dbus = CC_DISPLAY_MODE_DBUS (monitor->current_mode); g_variant_builder_add (&builder, "(ss@*)", monitor->connector_name, mode_dbus->id, g_variant_builder_end (&props_builder)); } return g_variant_builder_end (&builder); } static GVariant * build_logical_monitors_parameter (CcDisplayConfigDBus *self) { GVariantBuilder builder; GHashTableIter iter; CcDisplayLogicalMonitor *logical_monitor; g_variant_builder_init (&builder, G_VARIANT_TYPE ("a(iiduba(ssa{sv}))")); g_hash_table_iter_init (&iter, self->logical_monitors); while (g_hash_table_iter_next (&iter, (void **) &logical_monitor, NULL)) g_variant_builder_add (&builder, "(iidub@*)", logical_monitor->x, logical_monitor->y, logical_monitor->scale, logical_monitor->rotation, logical_monitor->primary, build_monitors_variant (logical_monitor->monitors)); return g_variant_builder_end (&builder); } static GVariant * build_apply_parameters (CcDisplayConfigDBus *self, CcDisplayConfigMethod method) { GVariantBuilder props_builder; g_variant_builder_init (&props_builder, G_VARIANT_TYPE ("a{sv}")); if (self->supports_changing_layout_mode) g_variant_builder_add (&props_builder, "{sv}", "layout-mode", g_variant_new_uint32 (self->layout_mode)); return g_variant_new ("(uu@*@*)", self->serial, method, build_logical_monitors_parameter (self), g_variant_builder_end (&props_builder)); } static gboolean config_apply (CcDisplayConfigDBus *self, CcDisplayConfigMethod method, GError **error) { g_autoptr(GVariant) retval = NULL; cc_display_config_dbus_ensure_non_offset_coords (self); retval = g_dbus_connection_call_sync (self->connection, "org.cinnamon.Muffin.DisplayConfig", "/org/cinnamon/Muffin/DisplayConfig", "org.cinnamon.Muffin.DisplayConfig", "ApplyMonitorsConfig", build_apply_parameters (self, method), NULL, G_DBUS_CALL_FLAGS_NO_AUTO_START, -1, NULL, error); return retval != NULL; } static gboolean cc_display_config_dbus_is_applicable (CcDisplayConfig *pself) { CcDisplayConfigDBus *self = CC_DISPLAY_CONFIG_DBUS (pself); g_autoptr(GError) error = NULL; if (!config_apply (self, CC_DISPLAY_CONFIG_METHOD_VERIFY, &error)) { g_warning ("Config not applicable: %s", error->message); return FALSE; } else { return TRUE; } } static CcDisplayMonitorDBus * monitor_from_spec (CcDisplayConfigDBus *self, const gchar *connector, const gchar *vendor, const gchar *product, const gchar *serial) { GList *l; for (l = self->monitors; l != NULL; l = l->next) { CcDisplayMonitorDBus *m = l->data; if (g_str_equal (m->connector_name, connector) && g_str_equal (m->vendor_name, vendor) && g_str_equal (m->product_name, product) && g_str_equal (m->product_serial, serial)) return m; } return NULL; } static gboolean cc_display_config_dbus_equal (CcDisplayConfig *pself, CcDisplayConfig *pother) { CcDisplayConfigDBus *self = CC_DISPLAY_CONFIG_DBUS (pself); CcDisplayConfigDBus *other = CC_DISPLAY_CONFIG_DBUS (pother); GList *l; g_return_val_if_fail (pself, FALSE); g_return_val_if_fail (pother, FALSE); if (self->layout_mode != other->layout_mode) return FALSE; cc_display_config_dbus_ensure_non_offset_coords (self); cc_display_config_dbus_ensure_non_offset_coords (other); for (l = self->monitors; l != NULL; l = l->next) { CcDisplayMonitorDBus *m1 = l->data; CcDisplayMonitorDBus *m2 = monitor_from_spec (other, m1->connector_name, m1->vendor_name, m1->product_name, m1->product_serial); if (!m2) return FALSE; if (m1->underscanning != m2->underscanning) return FALSE; if (!cc_display_logical_monitor_equal (m1->logical_monitor, m2->logical_monitor)) return FALSE; /* Modes should not be compared if both monitors have no logical monitor. */ if (m1->logical_monitor == NULL && m2->logical_monitor == NULL) continue; if (!cc_display_mode_dbus_equal (CC_DISPLAY_MODE_DBUS (m1->current_mode), CC_DISPLAY_MODE_DBUS (m2->current_mode))) return FALSE; } return TRUE; } static void cc_display_config_dbus_set_primary (CcDisplayConfigDBus *self, CcDisplayMonitorDBus *new_primary) { if (self->primary == new_primary) return; if (!new_primary->logical_monitor) return; if (self->primary && self->primary->logical_monitor) { self->primary->logical_monitor->primary = FALSE; g_signal_emit_by_name (self->primary, "primary"); } self->primary = new_primary; self->primary->logical_monitor->primary = TRUE; g_signal_emit_by_name (self->primary, "primary"); g_signal_emit_by_name (self, "primary"); } static void cc_display_config_dbus_unset_primary (CcDisplayConfigDBus *self, CcDisplayMonitorDBus *old_primary) { GList *l; if (self->primary != old_primary) return; for (l = self->monitors; l != NULL; l = l->next) { CcDisplayMonitorDBus *monitor = l->data; if (monitor->logical_monitor && monitor != old_primary) { cc_display_config_dbus_set_primary (self, monitor); break; } } if (self->primary == old_primary) self->primary = NULL; } static gboolean cc_display_config_dbus_is_cloning (CcDisplayConfig *pself) { CcDisplayConfigDBus *self = CC_DISPLAY_CONFIG_DBUS (pself); guint n_active_monitors = 0; GList *l; for (l = self->monitors; l != NULL; l = l->next) if (cc_display_monitor_is_active (CC_DISPLAY_MONITOR (l->data))) n_active_monitors += 1; return n_active_monitors > 1 && g_hash_table_size (self->logical_monitors) == 1; } static void cc_display_config_dbus_set_cloning (CcDisplayConfig *pself, gboolean clone) { CcDisplayConfigDBus *self = CC_DISPLAY_CONFIG_DBUS (pself); gboolean is_cloning = cc_display_config_is_cloning (pself); CcDisplayLogicalMonitor *logical_monitor; GList *l; if (clone && !is_cloning) { logical_monitor = g_object_new (CC_TYPE_DISPLAY_LOGICAL_MONITOR, NULL); for (l = self->monitors; l != NULL; l = l->next) cc_display_monitor_dbus_set_logical_monitor (CC_DISPLAY_MONITOR_DBUS (l->data), logical_monitor); register_logical_monitor (self, logical_monitor); } else if (!clone && is_cloning) { for (l = self->monitors; l != NULL; l = l->next) { logical_monitor = g_object_new (CC_TYPE_DISPLAY_LOGICAL_MONITOR, NULL); cc_display_monitor_dbus_set_logical_monitor (CC_DISPLAY_MONITOR_DBUS (l->data), logical_monitor); register_logical_monitor (self, logical_monitor); } cc_display_config_dbus_make_linear (self); } } static GList * cc_display_config_dbus_get_cloning_modes (CcDisplayConfig *pself) { CcDisplayConfigDBus *self = CC_DISPLAY_CONFIG_DBUS (pself); return self->clone_modes; } static gboolean cc_display_config_dbus_apply (CcDisplayConfig *pself, GError **error) { CcDisplayConfigDBus *self = CC_DISPLAY_CONFIG_DBUS (pself); return config_apply (self, CC_DISPLAY_CONFIG_METHOD_PERSISTENT, error); } static gboolean cc_display_config_dbus_is_layout_logical (CcDisplayConfig *pself) { CcDisplayConfigDBus *self = CC_DISPLAY_CONFIG_DBUS (pself); return self->layout_mode == CC_DISPLAY_LAYOUT_MODE_LOGICAL || self->layout_mode == CC_DISPLAY_LAYOUT_MODE_GLOBAL_UI_LOGICAL; } static gboolean cc_display_config_dbus_layout_use_ui_scale (CcDisplayConfig *pself) { CcDisplayConfigDBus *self = CC_DISPLAY_CONFIG_DBUS (pself); return self->layout_mode == CC_DISPLAY_LAYOUT_MODE_GLOBAL_UI_LOGICAL; } static gint cc_display_config_dbus_get_legacy_ui_scale (CcDisplayConfig *pself) { CcDisplayConfigDBus *self = CC_DISPLAY_CONFIG_DBUS (pself); return self->legacy_ui_scale; } static gboolean is_scaled_mode_allowed (CcDisplayConfigDBus *self, CcDisplayMode *pmode, double scale) { gint width, height; CcDisplayModeDBus *mode = CC_DISPLAY_MODE_DBUS (pmode); if (!cc_display_mode_dbus_is_supported_scale (pmode, scale)) return FALSE; /* Do the math as if the monitor is always in landscape mode. */ width = round (mode->width / scale); height = round (mode->height / scale); return (MAX (width, height) >= self->min_width && MIN (width, height) >= self->min_height); } static gboolean is_scale_allowed_by_active_monitors (CcDisplayConfigDBus *self, CcDisplayMode *mode, double scale) { GList *l; for (l = self->monitors; l != NULL; l = l->next) { CcDisplayMonitorDBus *m = CC_DISPLAY_MONITOR_DBUS (l->data); if (!cc_display_monitor_is_active (CC_DISPLAY_MONITOR (m))) continue; if (!is_scaled_mode_allowed (self, m->current_mode, scale)) return FALSE; if (!is_scaled_mode_allowed (self, mode, scale)) return FALSE; } return TRUE; } static void cc_display_config_dbus_set_minimum_size (CcDisplayConfig *pself, int width, int height) { CcDisplayConfigDBus *self = CC_DISPLAY_CONFIG_DBUS (pself); g_assert (width >= 0 && height >= 0); self->min_width = width; self->min_height = height; } static gboolean cc_display_config_dbus_is_scaled_mode_valid (CcDisplayConfig *pself, CcDisplayMode *mode, double scale) { CcDisplayConfigDBus *self = CC_DISPLAY_CONFIG_DBUS (pself); if (self->global_scale_required || cc_display_config_is_cloning (pself)) return is_scale_allowed_by_active_monitors (self, mode, scale); return is_scaled_mode_allowed (self, mode, scale); } static void cc_display_config_dbus_init (CcDisplayConfigDBus *self) { self->serial = 0; self->supports_mirroring = TRUE; self->supports_changing_layout_mode = FALSE; self->global_scale_required = FALSE; self->layout_mode = CC_DISPLAY_LAYOUT_MODE_LOGICAL; self->logical_monitors = g_hash_table_new (NULL, NULL); } static void gather_clone_modes (CcDisplayConfigDBus *self) { guint n_monitors = g_list_length (self->monitors); CcDisplayMonitorDBus *monitor; GList *l; if (n_monitors < 2) return; monitor = self->monitors->data; for (l = monitor->modes; l != NULL; l = l->next) { CcDisplayModeDBus *mode = l->data; gboolean valid = TRUE; GList *ll; for (ll = self->monitors->next; ll != NULL; ll = ll->next) { CcDisplayMonitorDBus *other_monitor = ll->data; if (!cc_display_monitor_dbus_get_closest_mode (other_monitor, mode)) { valid = FALSE; break; } } if (valid) self->clone_modes = g_list_prepend (self->clone_modes, mode); } } static void remove_logical_monitor (gpointer data, GObject *object) { CcDisplayConfigDBus *self = CC_DISPLAY_CONFIG_DBUS (data); g_hash_table_remove (self->logical_monitors, object); } static void register_logical_monitor (CcDisplayConfigDBus *self, CcDisplayLogicalMonitor *logical_monitor) { g_hash_table_add (self->logical_monitors, logical_monitor); g_object_weak_ref (G_OBJECT (logical_monitor), remove_logical_monitor, self); g_object_unref (logical_monitor); } static void apply_global_scale_requirement (CcDisplayConfigDBus *self, CcDisplayMonitor *monitor) { GList *l; double scale = cc_display_monitor_get_scale (monitor); for (l = self->monitors; l != NULL; l = l->next) { CcDisplayMonitor *m = l->data; if (m != monitor) cc_display_monitor_set_scale (m, scale); } } static void construct_monitors (CcDisplayConfigDBus *self, GVariantIter *monitors, GVariantIter *logical_monitors) { while (TRUE) { CcDisplayMonitorDBus *monitor; g_autoptr(GVariant) variant = NULL; if (!g_variant_iter_next (monitors, "@"MONITOR_FORMAT, &variant)) break; monitor = cc_display_monitor_dbus_new (variant, self); self->monitors = g_list_prepend (self->monitors, monitor); if (self->global_scale_required) g_signal_connect_object (monitor, "scale", G_CALLBACK (apply_global_scale_requirement), self, G_CONNECT_SWAPPED); } while (TRUE) { g_autoptr(GVariant) variant = NULL; CcDisplayLogicalMonitor *logical_monitor; g_autoptr(GVariantIter) monitor_specs = NULL; const gchar *s1, *s2, *s3, *s4; gboolean primary; if (!g_variant_iter_next (logical_monitors, "@"LOGICAL_MONITOR_FORMAT, &variant)) break; logical_monitor = g_object_new (CC_TYPE_DISPLAY_LOGICAL_MONITOR, NULL); g_variant_get (variant, LOGICAL_MONITOR_FORMAT, &logical_monitor->x, &logical_monitor->y, &logical_monitor->scale, &logical_monitor->rotation, &primary, &monitor_specs, NULL); while (g_variant_iter_next (monitor_specs, "(&s&s&s&s)", &s1, &s2, &s3, &s4)) { CcDisplayMonitorDBus *m = monitor_from_spec (self, s1, s2, s3, s4); if (!m) { g_warning ("Couldn't find monitor given spec: %s, %s, %s, %s", s1, s2, s3, s4); continue; } cc_display_monitor_dbus_set_logical_monitor (m, logical_monitor); } if (g_hash_table_size (logical_monitor->monitors) > 0) { if (primary) { CcDisplayMonitorDBus *m = NULL; GHashTableIter iter; g_hash_table_iter_init (&iter, logical_monitor->monitors); g_hash_table_iter_next (&iter, (void **) &m, NULL); cc_display_config_dbus_set_primary (self, m); } } else { g_warning ("Got an empty logical monitor, ignoring"); } register_logical_monitor (self, logical_monitor); } gather_clone_modes (self); } static void cc_display_config_dbus_constructed (GObject *object) { CcDisplayConfigDBus *self = CC_DISPLAY_CONFIG_DBUS (object); g_autoptr(GVariantIter) monitors = NULL; g_autoptr(GVariantIter) logical_monitors = NULL; g_autoptr(GVariantIter) props = NULL; g_variant_get (self->state, CURRENT_STATE_FORMAT, &self->serial, &monitors, &logical_monitors, &props); while (TRUE) { const char *s; g_autoptr(GVariant) v = NULL; if (!g_variant_iter_next (props, "{&sv}", &s, &v)) break; if (g_str_equal (s, "supports-mirroring")) { g_variant_get (v, "b", &self->supports_mirroring); } else if (g_str_equal (s, "supports-changing-layout-mode")) { g_variant_get (v, "b", &self->supports_changing_layout_mode); } else if (g_str_equal (s, "global-scale-required")) { g_variant_get (v, "b", &self->global_scale_required); } else if (g_str_equal (s, "legacy-ui-scaling-factor")) { g_variant_get (v, "i", &self->legacy_ui_scale); } else if (g_str_equal (s, "layout-mode")) { guint32 u = 0; g_variant_get (v, "u", &u); if (u >= CC_DISPLAY_LAYOUT_MODE_LOGICAL && u <= CC_DISPLAY_LAYOUT_MODE_GLOBAL_UI_LOGICAL) self->layout_mode = u; } } construct_monitors (self, monitors, logical_monitors); G_OBJECT_CLASS (cc_display_config_dbus_parent_class)->constructed (object); } static void cc_display_config_dbus_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec) { CcDisplayConfigDBus *self = CC_DISPLAY_CONFIG_DBUS (object); switch (prop_id) { case PROP_STATE: self->state = g_value_dup_variant (value); break; case PROP_CONNECTION: self->connection = g_value_dup_object (value); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); } } static void cc_display_config_dbus_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec) { CcDisplayConfigDBus *self = CC_DISPLAY_CONFIG_DBUS (object); switch (prop_id) { case PROP_STATE: g_value_set_variant (value, self->state); break; case PROP_CONNECTION: g_value_set_object (value, self->connection); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); } } static void cc_display_config_dbus_finalize (GObject *object) { CcDisplayConfigDBus *self = CC_DISPLAY_CONFIG_DBUS (object); g_clear_pointer (&self->state, g_variant_unref); g_clear_object (&self->connection); g_list_foreach (self->monitors, (GFunc) g_object_unref, NULL); g_clear_pointer (&self->monitors, g_list_free); g_clear_pointer (&self->logical_monitors, g_hash_table_destroy); g_clear_pointer (&self->clone_modes, g_list_free); G_OBJECT_CLASS (cc_display_config_dbus_parent_class)->finalize (object); } static void cc_display_config_dbus_class_init (CcDisplayConfigDBusClass *klass) { GObjectClass *gobject_class = G_OBJECT_CLASS (klass); CcDisplayConfigClass *parent_class = CC_DISPLAY_CONFIG_CLASS (klass); GParamSpec *pspec; gobject_class->constructed = cc_display_config_dbus_constructed; gobject_class->set_property = cc_display_config_dbus_set_property; gobject_class->get_property = cc_display_config_dbus_get_property; gobject_class->finalize = cc_display_config_dbus_finalize; parent_class->get_monitors = cc_display_config_dbus_get_monitors; parent_class->is_applicable = cc_display_config_dbus_is_applicable; parent_class->equal = cc_display_config_dbus_equal; parent_class->apply = cc_display_config_dbus_apply; parent_class->is_cloning = cc_display_config_dbus_is_cloning; parent_class->set_cloning = cc_display_config_dbus_set_cloning; parent_class->get_cloning_modes = cc_display_config_dbus_get_cloning_modes; parent_class->is_layout_logical = cc_display_config_dbus_is_layout_logical; parent_class->is_scaled_mode_valid = cc_display_config_dbus_is_scaled_mode_valid; parent_class->set_minimum_size = cc_display_config_dbus_set_minimum_size; parent_class->layout_use_ui_scale = cc_display_config_dbus_layout_use_ui_scale; parent_class->get_legacy_ui_scale = cc_display_config_dbus_get_legacy_ui_scale; pspec = g_param_spec_variant ("state", "GVariant", "GVariant", G_VARIANT_TYPE (CURRENT_STATE_FORMAT), NULL, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_CONSTRUCT_ONLY); g_object_class_install_property (gobject_class, PROP_STATE, pspec); pspec = g_param_spec_object ("connection", "GDBusConnection", "GDBusConnection", G_TYPE_DBUS_CONNECTION, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | G_PARAM_CONSTRUCT_ONLY); g_object_class_install_property (gobject_class, PROP_CONNECTION, pspec); } static gint sort_x_axis (gconstpointer a, gconstpointer b) { const CcDisplayLogicalMonitor *ma = a; const CcDisplayLogicalMonitor *mb = b; return ma->x - mb->x; } static gint sort_y_axis (gconstpointer a, gconstpointer b) { const CcDisplayLogicalMonitor *ma = a; const CcDisplayLogicalMonitor *mb = b; return ma->y - mb->y; } static void add_x_delta (gpointer d1, gpointer d2) { CcDisplayLogicalMonitor *m = d1; int delta = GPOINTER_TO_INT (d2); m->x += delta; } static gboolean logical_monitor_is_rotated (CcDisplayLogicalMonitor *lm) { switch (lm->rotation) { case CC_DISPLAY_ROTATION_90: case CC_DISPLAY_ROTATION_270: case CC_DISPLAY_ROTATION_90_FLIPPED: case CC_DISPLAY_ROTATION_270_FLIPPED: return TRUE; default: return FALSE; } } static double get_maximum_scale (CcDisplayConfig *config) { GList *outputs, *l; double max_scale = 1.0; outputs = cc_display_config_get_monitors (config); for (l = outputs; l; l = l->next) { CcDisplayMonitor *output = l->data; if (!cc_display_monitor_is_useful (output)) continue; max_scale = MAX (max_scale, cc_display_monitor_get_scale (output)); } return max_scale; } static int logical_monitor_width (CcDisplayLogicalMonitor *lm) { CcDisplayMonitorDBus *monitor; CcDisplayModeDBus *mode; GHashTableIter iter; int width; g_hash_table_iter_init (&iter, lm->monitors); g_hash_table_iter_next (&iter, (void **) &monitor, NULL); mode = CC_DISPLAY_MODE_DBUS (monitor->current_mode); if (logical_monitor_is_rotated (lm)) width = mode ? mode->height : 0; else width = mode ? mode->width : 0; if (monitor->config->layout_mode == CC_DISPLAY_LAYOUT_MODE_LOGICAL) return round (width / lm->scale); if (monitor->config->layout_mode == CC_DISPLAY_LAYOUT_MODE_GLOBAL_UI_LOGICAL) { double max_scale = get_maximum_scale(CC_DISPLAY_CONFIG (monitor->config)); return round ((width * ceil (max_scale)) / lm->scale); } else return width; } static void add_y_delta (gpointer d1, gpointer d2) { CcDisplayLogicalMonitor *m = d1; int delta = GPOINTER_TO_INT (d2); m->y += delta; } static void cc_display_config_dbus_ensure_non_offset_coords (CcDisplayConfigDBus *self) { GList *x_axis, *y_axis; CcDisplayLogicalMonitor *m; if (g_hash_table_size (self->logical_monitors) == 0) return; x_axis = g_hash_table_get_keys (self->logical_monitors); x_axis = g_list_sort (x_axis, sort_x_axis); y_axis = g_hash_table_get_keys (self->logical_monitors); y_axis = g_list_sort (y_axis, sort_y_axis); m = x_axis->data; if (m->x != 0) g_list_foreach (x_axis, add_x_delta, GINT_TO_POINTER (- m->x)); m = y_axis->data; if (m->y != 0) g_list_foreach (y_axis, add_y_delta, GINT_TO_POINTER (- m->y)); g_list_free (x_axis); g_list_free (y_axis); } static void cc_display_config_dbus_append_right (CcDisplayConfigDBus *self, CcDisplayLogicalMonitor *monitor) { GList *x_axis; CcDisplayLogicalMonitor *last; if (g_hash_table_size (self->logical_monitors) == 0) { monitor->x = 0; monitor->y = 0; return; } x_axis = g_hash_table_get_keys (self->logical_monitors); x_axis = g_list_sort (x_axis, sort_x_axis); last = g_list_last (x_axis)->data; monitor->x = last->x + logical_monitor_width (last); monitor->y = last->y; g_list_free (x_axis); } static void cc_display_config_dbus_make_linear (CcDisplayConfigDBus *self) { CcDisplayLogicalMonitor *primary; GList *logical_monitors, *l; int x; if (self->primary && self->primary->logical_monitor) { primary = self->primary->logical_monitor; primary->x = primary->y = 0; x = logical_monitor_width (primary); } else { primary = NULL; x = 0; } logical_monitors = g_hash_table_get_keys (self->logical_monitors); for (l = logical_monitors; l != NULL; l = l->next) { CcDisplayLogicalMonitor *m = l->data; if (m == primary) continue; m->x = x; m->y = 0; x += logical_monitor_width (m); } g_list_free (logical_monitors); } cinnamon-control-center-6.2.0/panels/display/icons/0000775000175000017500000000000014632072346021252 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/display/icons/scalable/0000775000175000017500000000000014632072346023020 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/display/icons/scalable/cinnamon-preferences-desktop-display.svg0000664000175000017500000004573714632072346032774 0ustar fabiofabio image/svg+xml Change Resolution Jakub Steiner display resolution video Andreas Nilsson Luca Ferretti <elle.uca@libero.it> http://www.gnome.org cinnamon-control-center-6.2.0/panels/display/icons/meson.build0000664000175000017500000000040414632072346023412 0ustar fabiofabiodisplay_icon_sizes = [ '16x16', '22x22', '24x24', '32x32', 'scalable' ] foreach size : display_icon_sizes install_subdir(size, strip_directory: true, install_dir: get_option('datadir') / 'icons' / 'hicolor' / size / 'apps', ) endforeach cinnamon-control-center-6.2.0/panels/display/icons/24x24/0000775000175000017500000000000014632072346022035 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/display/icons/24x24/cinnamon-preferences-desktop-display.png0000664000175000017500000000161514632072346031761 0ustar fabiofabio‰PNG  IHDRąw=ųbKGDłC» pHYs × ×B(›xtIMEÖ !˜“HIDATHǽ–Mh\U€æwļ}“`BŅ,ŠDœ]¬Ī®;Akˆ6”E7œ-FŠ„OźJQ1”“ˆÅ.ŗĢB:ş¬ĮV‘i”ZH©““³Čß»3oīqńī¼™$ƟśąpĪ{¼{¾ósļyžĒ+øoN£čä×I’¼z0’!ßĻF;åū| [·Ŗ©sZ¦Īi±¶!q\ߖX[—ååÕ$ŠN €iįœ/¹r”›7O=½ķŠÆLOė–¬³ņ…"_¼5Ī7×ßM‹(āuHGu„­ƒ”üķdĒ; ZF§ĒZ­L¾PdxßGˆ"~Ī„÷"āµļ;ünXkSC"Āź½‹ä E^Ü÷1"ē"Į!Ī­·q[Dœ×MaaöfyéńO,z/Npā.…Öc»5Ą˜0ŠLÓ%`aö rč‰OĮI;Kē²’­,/Q­V™›ŸŪȚÜÕÕå×:€‰«o0ĀöBFųŒ ?ŅH:Ö։浬ōZ©­3h:Ƒ'ϬĖäš3§¹w÷.KKKŌmŒR ķEy@+ĄæĪĄ7tĻ#»QZćœCiC˜ĖAcŠ|”H‰q>æ8Į?O—M8—p{~Žž]Cō āęėō?ō  ¼ĢŹÆŁ9) Mü­ćœZ^ŸA.—i2ķ<üvł”?Ošk“ļųhæ<ī#( Mlyāė®—©ÆxÖ“w‘įŃēQJ’§ńśŻĮ¶ŻA«öŖÆóCØT®288ø#c“R©ljņh¹|ét¹|i'?£«ų¦g­Tzū—½{4ĘŠ)JiĀ0DkĶĢĢĢOĒŽ½w`ƒst®»)t÷öö†'N|0iL8Š××·k’ž§“R­µw u[OO’˜,.VļX[Ǝ½óœwŽ,`MGōŻ@ĻŃ£c GŽNśūūĶæ©Ćšš Ų]«ÕÖÖVļDŃń‡}ĄÉŗm 4}œ=ū„ŁFĶ[kjĄŹĘ„>‹®zØń¢}tM/ĪkėeŋõČ}’Uł¶Ś¾čdŒ6ĢIEND®B`‚cinnamon-control-center-6.2.0/panels/display/icons/16x16/0000775000175000017500000000000014632072346022037 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/display/icons/16x16/cinnamon-preferences-desktop-display.png0000664000175000017500000000114514632072346031761 0ustar fabiofabio‰PNG  IHDRó’abKGDłC» pHYs × ×B(›xtIMEÖ 6± ÷ņIDAT8Ė•’ĻkA†ŸMš&”±I!£ęāQ VZü āAŌC’²…@`iÄS©˜@õšāMAň`ՋUšmŚ”=ˆøkµjgzŲ$Ø©Ę¾šĮĢĄ÷š¾ß7ą+Qƚŗ^55;”œ™¹ü°ÕjMĄ,ٜM½ZÖw—’jŽF£„ēySS§łŗ8 @6gæ(—ƕߊZńķÓm²9›W·vs®rųÆĶ÷ļŌüJ)’U+“Ö¬¬‘ĶŁĢåĖÜx~¶ÆłĮ£…ŽYX–ģ8Ų­i.­õ g]ūg  }›h­1 ĮŚr«ā¹ķv»: ü]ż ń¾xh…RŠŌŽ=¤÷§HH Ə:ŁœĶłÉ›Ūŗ”śÉ‡ÕįÄ$įä šÆ_2œ<ÅŠ®“¼{ZŁ"{ō&«/®ƒ†7O*™ļ;‚· Ą`.’¬0§¤»«Bģō'cüzqœŅŅųųX³ŃX9&„@J‰iš½Źdöµēēk+ŽSū-ĄōōE[)I„R£±Ų(¦)0M „DĖ’Aąˆć”ņŽS¬ō†čGŠWŠÅ‚N$’Įx<žyd$ęF"7 ¹–e¹¦)]­ ³Pø €rŸ€Ré’ ujĀĄś&ķИ­IEND®B`‚cinnamon-control-center-6.2.0/panels/display/icons/32x32/0000775000175000017500000000000014632072346022033 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/display/icons/32x32/cinnamon-preferences-desktop-display.png0000664000175000017500000000310214632072346031750 0ustar fabiofabio‰PNG  IHDR szzōbKGD’’’ ½§“tIMEÖ  jéV†äIDATX…½–kp”ÕĒļy÷Źn’+ q"ĘTA.– PŃŃNUd“g:#żÖĪtŹū”ŌQÉLū„T¦ĆL/c[ŌQTŹŲ*BBj  H0”Ėl"…ÉBĀfwóŽĪ釯l6ŁĶÅŹųŸ9³ļyęœēł?·³dįOĻė[łš!²7šĘė{;<ū’ŲŽļė" ģڵĖkKćweńŸ~Æféj†"H·#õņ[nб„ać‡oźń§ŚŌ~Óą(ó¹¶onÜÖŲOĖŖG©¬9Ééļęī÷PÓšķy+Wjī3š¦y#‘Ė[Ž>°’%ąiWJ(¾Æt÷J*«ØdĶęķōtī 2pĘ{~ī“‘\+¹25!…RP[['\B#yżCź–µ°°¬šžŽ`p¬•ØuēŒjGbY&ńx2-™J#‹@~"Ą™‘'1N¼Ē•ČyīZ’žĄB’#š×³~Ėč9ŗąµĖ\ŒmĘQ cÜ ‘LL&±m#‚3RO#izč~˜³‘ žy`77®GńÆĒÄIœbÕ½[inŖ¢±h/FüCCC\½v•X,–1žém;s H=0ÅsÉ Wb~šõ M„Ā÷a&Ī‘ˆžƒ„«(-[Œ§ūŽĖ‘Kęņkö(„@ILĖŹ¬h¼˜Eįäéky’÷HŹš¶æ~„`Šaͦļ²fłZėzš3“[sE@””D*(l{2wJ)’¶M×@+µĆIĘ_fEėŹ«ŪHÜčķ VoxŒ…}]:9vžf`ÖäPJ¢”J¢©$–¾=É|zJƒ¾ORUūW~ 31@|ų0w¬£tQ~O'=Ć\­ŹŅ?ŅA×›kG„#B:"ß9©—Eą+ ćņV”ø¤™µ·į;ö7ĪE¢æt{ځ¹R J9t½»“š·£¤ƒR’¾“ēi×””ƒ’’³§ -/O’œ;;LØiŸŸ‹²¬aA«7>AĮ‰NJ]:Ó:s ” ‰ķ8ųK¢¢>Ģ‚Ņj©‚¬\z•@Ł¢ŒĒ•ć×)¬,ŹxTeß¤Øŗ0õ-cU"Uć+Z·P\rŠB߇ |śEėŸÉ%066††äż}ķH„”kż½zę ®9ōĻŚ ‡žć"k/3{]HĪ~’Ū`ŗ\īł1>WN% Yµõ –ebŪ¹-4µxŌ4y¾W>ŸLĆåŅ …–Ó3°g’€ćؾśśey.ż?˜}6ÓuŽe“¤ń“ß¼ōėßś|ŽŁ›öĮ7L…|ę1UģüÕĪÖO{Ouµ„[¼.— Ē:Bt]G×u„ŠŅæ©ż±ī®DĶāŹÕĻ>ūó¾¹ōĻś_`&“›C”ŁÜÜ<Ř®ėhډl2:7F¢rdtō~`Ny#ŠŃѱÄćÓ_@ÓīšVóĄę- Tv4MĖZ „Č“ŪĘāqžz`Eæm[GQćĻķŲŃ><™‰ˆī}åĻ=RJu+‹ÅTĒ/_ų;P äŒÕŁ)p“jĪ‚”/†ī¼„Ūķ™é”˜¦†hJ€1@bł@:%R:ŽW^{õ+Ÿ_ZwNʧ ܤĀä<¤ę…/7O…Lė°Hq²ŠŁ”UćӉä}ž %t¾šnIEND®B`‚cinnamon-control-center-6.2.0/panels/display/icons/22x22/0000775000175000017500000000000014632072346022031 5ustar fabiofabiocinnamon-control-center-6.2.0/panels/display/icons/22x22/cinnamon-preferences-desktop-display.png0000664000175000017500000000154214632072346031754 0ustar fabiofabio‰PNG  IHDRÄ“l;bKGD’’’ ½§“ pHYs × ×B(›xtIMEÖ "żŠ„ēļIDAT8Ė­”OhWĄóŽ›M0!b¢B‘®R µī­g’„ع"ķU…ī‚•¦ˆāŠ=µŚbA/zš˜CQŠ’SSØ¶Čź!ŲZB,›Šī!ĘģģĪ~_óvv× HȃoŽīĢo~ļ›÷=HFĄ: X<{=Žć/öeæć—ŁāzqoÅāY;’sg³ȍVQÕµYPÆĒsēĪ[ ¢ ›Ės’f7_^üdĶŖ÷§§-€ˆ¢jśG6—ēŅWüüų›¤ņŖ>€¶}må @U¹}g*½ĒT« XUX©Ü&›Ė3¼ć{TUÆ*"É\UżO­9ÆUĻ$ĘQ2SAUyõāŁ\ž;~@UUAT¤óY VoÜUfŸ¦šƒžGS[¢ˆz°$/«U£Õ`ēĀLĆļˆ€…ŁSų”?‚hkU"ii–_.Q.—™›Ÿė;€®®.’Œ¤[mņįFøĀų?qó1źqL½^#ŠjT«+ii­1«›ąö1ņŃ€óŃŻ—yńü9KKKŌ¢*ʬćĮM±Nc’”¶¼æ c-"‚±Ž0“śÆdsy LpįÖHŅ oĘ"1’ĶĻѳqˆžC<}ņ˜žĶŸ³aą3ž”¤ū¼04łVhƼLŒ3™ hƒłG7@įÆ{}XM$švߛ𦅔É7vhMz°sŽm{1ʶśžŚ÷ī¾ÖuCk‚Ī]Q*=dppp]޵R©”›GĖė|m+7m§ …±?·o’`Š9G{c Ćk-333æŸ8ńķ§ÆA&0t÷öö†§OŸ™r.čėėŪøk×ĒÖ‹µÖC¬måééßāÅÅņ³(Ŗ•ĒĒæŽć”u r޲č9~||įšįŃøææß½Ėz‡‡÷;`S„RXYyõ¬X<µÕ‹ĘM@Ć[sõź5·†š6ŸyØĖ͇޺«-‡že·õ6 āsäcŁGÄ’„tŪ4·† IEND®B`‚cinnamon-control-center-6.2.0/panels/display/cc-display-config-manager.h0000664000175000017500000000256114632072346025217 0ustar fabiofabio/* * Copyright (C) 2016 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * */ #pragma once #include #include "cc-display-config.h" G_BEGIN_DECLS #define CC_TYPE_DISPLAY_CONFIG_MANAGER (cc_display_config_manager_get_type ()) G_DECLARE_DERIVABLE_TYPE (CcDisplayConfigManager, cc_display_config_manager, CC, DISPLAY_CONFIG_MANAGER, GObject) struct _CcDisplayConfigManagerClass { GObjectClass parent_class; CcDisplayConfig * (*get_current) (CcDisplayConfigManager *self); }; CcDisplayConfig * cc_display_config_manager_get_current (CcDisplayConfigManager *self); void _cc_display_config_manager_emit_changed (CcDisplayConfigManager *self); G_END_DECLS cinnamon-control-center-6.2.0/panels/display/cc-display-arrangement.c0000664000175000017500000010204514632072346024636 0ustar fabiofabio/* cc-display-arrangement.c * * Copyright (C) 2007, 2008, 2017 Red Hat, Inc. * Copyright (C) 2013 Intel, Inc. * * Written by: Benjamin Berg * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ #include #include "cc-display-arrangement.h" #include "cc-display-config.h" #include "cc-display-labeler.h" struct _CcDisplayArrangement { GtkDrawingArea object; CcDisplayConfig *config; cairo_matrix_t to_widget; cairo_matrix_t to_actual; gboolean drag_active; CcDisplayMonitor *selected_output; CcDisplayMonitor *prelit_output; /* Starting position of cursor inside the monitor. */ gdouble drag_anchor_x; gdouble drag_anchor_y; guint major_snap_distance; }; typedef struct _CcDisplayArrangement CcDisplayArrangement; enum { PROP_0, PROP_CONFIG, PROP_SELECTED_OUTPUT, PROP_LAST }; typedef enum { SNAP_DIR_NONE = 0, SNAP_DIR_X = 1 << 0, SNAP_DIR_Y = 1 << 1, SNAP_DIR_BOTH = (SNAP_DIR_X | SNAP_DIR_Y), } SnapDirection; typedef struct { cairo_matrix_t to_widget; guint major_snap_distance; gdouble dist_x; gdouble dist_y; gint mon_x; gint mon_y; SnapDirection snapped; } SnapData; #define MARGIN_PX 0 #define MARGIN_MON 0.66 #define MAJOR_SNAP_DISTANCE 25 #define MINOR_SNAP_DISTANCE 5 #define MIN_OVERLAP 25 G_DEFINE_TYPE (CcDisplayArrangement, cc_display_arrangement, GTK_TYPE_DRAWING_AREA) static GParamSpec *props[PROP_LAST]; static void apply_rotation_to_geometry (CcDisplayMonitor *output, int *w, int *h) { CcDisplayRotation rotation; rotation = cc_display_monitor_get_rotation (output); if ((rotation == CC_DISPLAY_ROTATION_90) || (rotation == CC_DISPLAY_ROTATION_270)) { int tmp; tmp = *h; *h = *w; *w = tmp; } } /* get_geometry */ static void get_scaled_geometry (CcDisplayConfig *config, CcDisplayMonitor *output, double max_scale, int *x, int *y, int *w, int *h) { if (cc_display_monitor_is_active (output)) { cc_display_monitor_get_geometry (output, x, y, w, h); } else { cc_display_monitor_get_geometry (output, x, y, NULL, NULL); CcDisplayMode *mode = cc_display_monitor_get_preferred_mode(output); if (!mode) mode = CC_DISPLAY_MODE (cc_display_monitor_get_modes(output)->data); cc_display_mode_get_resolution (mode, w, h); } if (cc_display_config_is_layout_logical (config)) { double scale = cc_display_monitor_get_scale (output); if (cc_display_config_layout_use_ui_scale (config)) scale /= ceil (max_scale); *w = round (*w / scale); *h = round (*h / scale); } apply_rotation_to_geometry (output, w, h); } static void get_bounding_box (CcDisplayConfig *config, gint *x1, gint *y1, gint *x2, gint *y2, gint *max_w, gint *max_h) { GList *outputs, *l; gdouble max_scale; g_assert (x1 && y1 && x2 && y2); *x1 = *y1 = G_MAXINT; *x2 = *y2 = G_MININT; *max_w = 0; *max_h = 0; max_scale = cc_display_config_get_maximum_scaling (config); outputs = cc_display_config_get_monitors (config); for (l = outputs; l; l = l->next) { CcDisplayMonitor *output = l->data; int x, y, w, h; if (!cc_display_monitor_is_useful (output)) continue; get_scaled_geometry (config, output, max_scale, &x, &y, &w, &h); *x1 = MIN (*x1, x); *y1 = MIN (*y1, y); *x2 = MAX (*x2, x + w); *y2 = MAX (*y2, y + h); *max_w = MAX (*max_w, w); *max_h = MAX (*max_h, h); } } static void monitor_get_drawing_rect (CcDisplayArrangement *self, CcDisplayMonitor *output, gint *x1, gint *y1, gint *x2, gint *y2) { gdouble x, y; gdouble max_scale; max_scale = cc_display_config_get_maximum_scaling (self->config); get_scaled_geometry (self->config, output, max_scale, x1, y1, x2, y2); /* get_scaled_geometry returns the width and height */ *x2 = *x1 + *x2; *y2 = *y1 + *y2; x = *x1; y = *y1; cairo_matrix_transform_point (&self->to_widget, &x, &y); *x1 = round (x); *y1 = round (y); x = *x2; y = *y2; cairo_matrix_transform_point (&self->to_widget, &x, &y); *x2 = round (x); *y2 = round (y); } static void get_snap_distance (SnapData *snap_data, gint mon_x, gint mon_y, gint new_x, gint new_y, gdouble *dist_x, gdouble *dist_y) { gdouble local_dist_x, local_dist_y; local_dist_x = ABS (mon_x - new_x); local_dist_y = ABS (mon_y - new_y); cairo_matrix_transform_distance (&snap_data->to_widget, &local_dist_x, &local_dist_y); if (dist_x) *dist_x = local_dist_x; if (dist_y) *dist_y = local_dist_y; } static void maybe_update_snap (SnapData *snap_data, gint mon_x, gint mon_y, gint new_x, gint new_y, SnapDirection snapped, SnapDirection major_axis, gint minor_unlimited) { SnapDirection update_snap = SNAP_DIR_NONE; gdouble dist_x, dist_y; gdouble dist; get_snap_distance (snap_data, mon_x, mon_y, new_x, new_y, &dist_x, &dist_y); dist = MAX (dist_x, dist_y); /* Snap by the variable max snap distance on the major axis, ensure the * minor axis is below the minimum snapping distance (often just zero). */ switch (major_axis) { case SNAP_DIR_X: if (dist_x > snap_data->major_snap_distance) return; if (dist_y > MINOR_SNAP_DISTANCE) { if (new_y > mon_y && minor_unlimited <= 0) return; if (new_y < mon_y && minor_unlimited >= 0) return; } break; case SNAP_DIR_Y: if (dist_y > snap_data->major_snap_distance) return; if (dist_x > MINOR_SNAP_DISTANCE) { if (new_x > mon_x && minor_unlimited <= 0) return; if (new_x < mon_x && minor_unlimited >= 0) return; } break; default: g_assert_not_reached(); } if (snapped == SNAP_DIR_BOTH) { if (snap_data->snapped == SNAP_DIR_NONE) update_snap = SNAP_DIR_BOTH; /* Update, if this is closer on the main axis. */ if (((major_axis == SNAP_DIR_X) && (dist_x < snap_data->dist_x)) || ((major_axis == SNAP_DIR_Y) && (dist_y < snap_data->dist_y))) { update_snap = SNAP_DIR_BOTH; } /* Also update if we were only snapping in one direction earlier and it * is better or equally good. */ if ((snap_data->snapped == SNAP_DIR_X && (dist <= snap_data->dist_x)) || (snap_data->snapped == SNAP_DIR_Y && (dist <= snap_data->dist_y))) { update_snap = SNAP_DIR_BOTH; } /* Also allow a minor axis to be added if the first axis remains identical. */ if (((snap_data->snapped == SNAP_DIR_X) && (major_axis == SNAP_DIR_X) && (new_x == snap_data->mon_x)) || ((snap_data->snapped == SNAP_DIR_Y) && (major_axis == SNAP_DIR_Y) && (new_y == snap_data->mon_y))) { update_snap = SNAP_DIR_BOTH; } } else if (snapped == SNAP_DIR_X) { if (dist_x < snap_data->dist_x || (snap_data->snapped & SNAP_DIR_X) == SNAP_DIR_NONE) update_snap = SNAP_DIR_X; } else if (snapped == SNAP_DIR_Y) { if (dist_y < snap_data->dist_y || (snap_data->snapped & SNAP_DIR_Y) == SNAP_DIR_NONE) update_snap = SNAP_DIR_Y; } else { g_assert_not_reached (); } if (update_snap & SNAP_DIR_X) { snap_data->dist_x = dist_x; snap_data->mon_x = new_x; snap_data->snapped = snap_data->snapped | SNAP_DIR_X; } if (update_snap & SNAP_DIR_Y) { snap_data->dist_y = dist_y; snap_data->mon_y = new_y; snap_data->snapped = snap_data->snapped | SNAP_DIR_Y; } } static void find_best_snapping (CcDisplayConfig *config, CcDisplayMonitor *snap_output, SnapData *snap_data) { GList *outputs, *l; gint x1, y1, x2, y2; gint w, h; double max_scale; g_assert (snap_data != NULL); max_scale = cc_display_config_get_maximum_scaling (config); get_scaled_geometry (config, snap_output, max_scale, &x1, &y1, &w, &h); x2 = x1 + w; y2 = y1 + h; #define OVERLAP(_s1, _s2, _t1, _t2) ((_s1) <= (_t2) && (_t1) <= (_s2)) outputs = cc_display_config_get_monitors (config); for (l = outputs; l; l = l->next) { CcDisplayMonitor *output = l->data; gint _x1, _y1, _x2, _y2, _h, _w; gint bottom_snap_pos; gint top_snap_pos; gint left_snap_pos; gint right_snap_pos; gdouble dist_x, dist_y; gdouble max_scale; gdouble tmp; if (output == snap_output) continue; if (!cc_display_monitor_is_useful (output)) continue; max_scale = cc_display_config_get_maximum_scaling (config); get_scaled_geometry (config, output, max_scale, &_x1, &_y1, &_w, &_h); _x2 = _x1 + _w; _y2 = _y1 + _h; top_snap_pos = _y1 - h; bottom_snap_pos = _y2; left_snap_pos = _x1 - w; right_snap_pos = _x2; dist_y = 9999; /* overlap on the X axis */ if (OVERLAP (x1, x2, _x1, _x2)) { get_snap_distance (snap_data, x1, y1, x1, top_snap_pos, NULL, &dist_y); get_snap_distance (snap_data, x1, y1, x1, bottom_snap_pos, NULL, &tmp); dist_y = MIN(dist_y, tmp); } dist_x = 9999; /* overlap on the Y axis */ if (OVERLAP (y1, y2, _y1, _y2)) { get_snap_distance (snap_data, x1, y1, left_snap_pos, y1, &dist_x, NULL); get_snap_distance (snap_data, x1, y1, right_snap_pos, y1, &tmp, NULL); dist_x = MIN(dist_x, tmp); } /* We only snap horizontally or vertically to an edge of the same monitor */ if (dist_y < dist_x) { maybe_update_snap (snap_data, x1, y1, x1, top_snap_pos, SNAP_DIR_Y, SNAP_DIR_Y, 0); maybe_update_snap (snap_data, x1, y1, x1, bottom_snap_pos, SNAP_DIR_Y, SNAP_DIR_Y, 0); } else if (dist_x < 9999) { maybe_update_snap (snap_data, x1, y1, left_snap_pos, y1, SNAP_DIR_X, SNAP_DIR_X, 0); maybe_update_snap (snap_data, x1, y1, right_snap_pos, y1, SNAP_DIR_X, SNAP_DIR_X, 0); } /* Left/right edge identical on the top */ maybe_update_snap (snap_data, x1, y1, _x1, top_snap_pos, SNAP_DIR_BOTH, SNAP_DIR_Y, 0); maybe_update_snap (snap_data, x1, y1, _x2 - w, top_snap_pos, SNAP_DIR_BOTH, SNAP_DIR_Y, 0); /* Left/right edge identical on the bottom */ maybe_update_snap (snap_data, x1, y1, _x1, bottom_snap_pos, SNAP_DIR_BOTH, SNAP_DIR_Y, 0); maybe_update_snap (snap_data, x1, y1, _x2 - w, bottom_snap_pos, SNAP_DIR_BOTH, SNAP_DIR_Y, 0); /* Top/bottom edge identical on the left */ maybe_update_snap (snap_data, x1, y1, left_snap_pos, _y1, SNAP_DIR_BOTH, SNAP_DIR_X, 0); maybe_update_snap (snap_data, x1, y1, left_snap_pos, _y2 - h, SNAP_DIR_BOTH, SNAP_DIR_X, 0); /* Top/bottom edge identical on the right */ maybe_update_snap (snap_data, x1, y1, right_snap_pos, _y1, SNAP_DIR_BOTH, SNAP_DIR_X, 0); maybe_update_snap (snap_data, x1, y1, right_snap_pos, _y2 - h, SNAP_DIR_BOTH, SNAP_DIR_X, 0); /* If snapping is infinite, then add snapping points with minimal overlap * to prevent detachment. * This is similar to the above but simply re-defines the snapping pos * to have only minimal overlap */ if (snap_data->major_snap_distance == G_MAXUINT) { /* Hanging over the left/right edge on the top */ maybe_update_snap (snap_data, x1, y1, _x1 - w + MIN_OVERLAP, top_snap_pos, SNAP_DIR_BOTH, SNAP_DIR_Y, 1); maybe_update_snap (snap_data, x1, y1, _x2 - MIN_OVERLAP, top_snap_pos, SNAP_DIR_BOTH, SNAP_DIR_Y, -1); /* Left/right edge identical on the bottom */ maybe_update_snap (snap_data, x1, y1, _x1 - w + MIN_OVERLAP, bottom_snap_pos, SNAP_DIR_BOTH, SNAP_DIR_Y, 1); maybe_update_snap (snap_data, x1, y1, _x2 - MIN_OVERLAP, bottom_snap_pos, SNAP_DIR_BOTH, SNAP_DIR_Y, -1); /* Top/bottom edge identical on the left */ maybe_update_snap (snap_data, x1, y1, left_snap_pos, _y1 - h + MIN_OVERLAP, SNAP_DIR_BOTH, SNAP_DIR_X, 1); maybe_update_snap (snap_data, x1, y1, left_snap_pos, _y2 - MIN_OVERLAP, SNAP_DIR_BOTH, SNAP_DIR_X, -1); /* Top/bottom edge identical on the right */ maybe_update_snap (snap_data, x1, y1, right_snap_pos, _y1 - h + MIN_OVERLAP, SNAP_DIR_BOTH, SNAP_DIR_X, 1); maybe_update_snap (snap_data, x1, y1, right_snap_pos, _y2 - MIN_OVERLAP, SNAP_DIR_BOTH, SNAP_DIR_X, -1); } } #undef OVERLAP } static void cc_display_arrangement_update_matrices (CcDisplayArrangement *self) { GtkAllocation allocation; gdouble scale, scale_h, scale_w; gint x1, y1, x2, y2, max_w, max_h; g_assert (self->config); /* Do not update the matrices while the user is dragging things around. */ if (self->drag_active) return; get_bounding_box (self->config, &x1, &y1, &x2, &y2, &max_w, &max_h); gtk_widget_get_allocation (GTK_WIDGET (self), &allocation); scale_h = (gdouble) (allocation.width - 2 * MARGIN_PX) / (x2 - x1 + max_w * 2 * MARGIN_MON); scale_w = (gdouble) (allocation.height - 2 * MARGIN_PX) / (y2 - y1 + max_h * 2 * MARGIN_MON); scale = MIN (scale_h, scale_w); cairo_matrix_init_identity (&self->to_widget); cairo_matrix_translate (&self->to_widget, allocation.width / 2.0, allocation.height / 2.0); cairo_matrix_scale (&self->to_widget, scale, scale); cairo_matrix_translate (&self->to_widget, - (x1 + x2) / 2.0, - (y1 + y2) / 2.0); self->to_actual = self->to_widget; cairo_matrix_invert (&self->to_actual); } static CcDisplayMonitor* cc_display_arrangement_find_monitor_at (CcDisplayArrangement *self, gint x, gint y) { g_autoptr(GList) outputs = NULL; GList *l; outputs = g_list_copy (cc_display_config_get_monitors (self->config)); if (self->selected_output) outputs = g_list_prepend (outputs, self->selected_output); for (l = outputs; l; l = l->next) { CcDisplayMonitor *output = l->data; gint x1, y1, x2, y2; if (!cc_display_monitor_is_usable (output)) continue; if (!cc_display_monitor_is_active (output)) { cc_display_monitor_get_disabled_geometry (output, &x1, &y1, &x2, &y2); } else { monitor_get_drawing_rect (self, output, &x1, &y1, &x2, &y2); } if (x >= x1 && x <= x2 && y >= y1 && y <= y2) return output; } return NULL; } static void cc_display_arrangement_update_cursor (CcDisplayArrangement *self, gboolean dragable) { g_autoptr(GdkCursor) cursor = NULL; GdkWindow *window; if (dragable) cursor = gdk_cursor_new_for_display (gtk_widget_get_display (GTK_WIDGET (self)), GDK_FLEUR); else cursor = NULL; window = gtk_widget_get_window (GTK_WIDGET (self)); if (window) gdk_window_set_cursor (window, cursor); } static void on_output_changed_cb (CcDisplayArrangement *self, CcDisplayMonitor *output) { if (cc_display_config_count_useful_monitors (self->config) > 2) self->major_snap_distance = MAJOR_SNAP_DISTANCE; else self->major_snap_distance = G_MAXUINT; gtk_widget_queue_draw (GTK_WIDGET (self)); } static gint sort_outputs_by_disabled (gconstpointer a, gconstpointer b) { CcDisplayMonitor *ma = CC_DISPLAY_MONITOR ((gpointer) a); CcDisplayMonitor *mb = CC_DISPLAY_MONITOR ((gpointer) b); if (!cc_display_monitor_is_active (ma) && cc_display_monitor_is_active (mb)) return -1; if (cc_display_monitor_is_active (ma) && !cc_display_monitor_is_active (mb)) return 1; return cc_display_monitor_get_ui_number ((gpointer) a) < cc_display_monitor_get_ui_number ((gpointer) b) ? -1 : 1; } static gboolean cc_display_arrangement_draw (GtkWidget *widget, cairo_t *cr) { CcDisplayArrangement *self = CC_DISPLAY_ARRANGEMENT (widget); GtkStyleContext *context = gtk_widget_get_style_context (widget); g_autoptr(GList) outputs = NULL; GList *l; gint last_disabled_x = 0; if (!self->config) return FALSE; cc_display_arrangement_update_matrices (self); gtk_style_context_save (context); gtk_style_context_add_class (context, "display-arrangement"); cairo_save (cr); gtk_render_background (context, cr, 0, 0, gtk_widget_get_allocated_width (widget), gtk_widget_get_allocated_height (widget)); cairo_restore (cr); /* Draw in reverse order so that hit detection matches visual. Also pull * the selected output to the back. */ outputs = g_list_copy (cc_display_config_get_monitors (self->config)); outputs = g_list_sort (outputs, (GCompareFunc) sort_outputs_by_disabled); if (cc_display_monitor_is_active (self->selected_output)) { outputs = g_list_remove (outputs, self->selected_output); if (self->selected_output != NULL) outputs = g_list_prepend (outputs, self->selected_output); } outputs = g_list_reverse (outputs); for (l = outputs; l; l = l->next) { CcDisplayMonitor *output = l->data; GtkStateFlags state = GTK_STATE_FLAG_NORMAL; GtkBorder border, padding, margin; GdkRGBA bg_rgba; gint x1, y1, x2, y2; gint w, h; gint ui_number, color_index; if (!cc_display_monitor_is_usable (output)) continue; gtk_style_context_save (context); cairo_save (cr); gtk_style_context_add_class (context, "monitor"); if (output == self->selected_output) state |= GTK_STATE_FLAG_SELECTED; if (output == self->prelit_output) state |= GTK_STATE_FLAG_PRELIGHT; gtk_style_context_set_state (context, state); if (cc_display_monitor_is_primary (output) || cc_display_config_is_cloning (self->config)) gtk_style_context_add_class (context, "primary"); monitor_get_drawing_rect (self, output, &x1, &y1, &x2, &y2); w = x2 - x1; h = y2 - y1; if (!cc_display_monitor_is_active (output)) { h = 50; w = h * 1.77; cairo_translate (cr, last_disabled_x, 0); cc_display_monitor_set_disabled_geometry (output, last_disabled_x, 0, w, h); last_disabled_x += w; } else { cairo_translate (cr, x1, y1); } gtk_style_context_get_margin (context, state, &margin); cairo_translate (cr, margin.left, margin.top); w -= margin.left + margin.right; h -= margin.top + margin.bottom; cairo_save (cr); /* Set in cc-display-panel.c */ ui_number = cc_display_monitor_get_ui_number (output); color_index = ui_number - 1; // ui_numbers start at 1, our color index is 0-based. gchar *rgba_str; g_signal_emit_by_name (G_OBJECT (widget), "get-output-color", color_index, &rgba_str); if (gdk_rgba_parse (&bg_rgba, rgba_str)) { if (!cc_display_monitor_is_active (output)) { bg_rgba.alpha = 0.35; } gdk_cairo_set_source_rgba (cr, &bg_rgba); } g_free (rgba_str); cairo_rectangle (cr, 0, 0, w, h); cairo_fill (cr); cairo_restore (cr); gtk_render_frame (context, cr, 0, 0, w, h); gtk_style_context_get_border (context, state, &border); gtk_style_context_get_padding (context, state, &padding); w -= border.left + border.right + padding.left + padding.right; h -= border.top + border.bottom + padding.top + padding.bottom; cairo_translate (cr, border.left + padding.left, border.top + padding.top); if (ui_number > 0) { PangoLayout *layout; PangoFontDescription *font = NULL; g_autofree gchar *number_str = NULL; PangoRectangle extents; GdkRGBA color; gdouble text_width, text_padding; gtk_style_context_add_class (context, "monitor-label"); gtk_style_context_remove_class (context, "monitor"); gtk_style_context_get_border (context, state, &border); gtk_style_context_get_padding (context, state, &padding); gtk_style_context_get_margin (context, state, &margin); cairo_translate (cr, margin.left, margin.top); number_str = g_strdup_printf ("%d", ui_number); gtk_style_context_get (context, state, "font", &font, NULL); layout = gtk_widget_create_pango_layout (GTK_WIDGET (self), number_str); pango_layout_set_font_description (layout, font); pango_font_description_free (font); pango_layout_get_extents (layout, NULL, &extents); h = (extents.height - extents.y) / PANGO_SCALE; text_width = (extents.width - extents.x) / PANGO_SCALE; w = MAX (text_width, h - padding.left - padding.right); text_padding = w - text_width; w += border.left + border.right + padding.left + padding.right; h += border.top + border.bottom + padding.top + padding.bottom; gtk_render_background (context, cr, 0, 0, w, h); gtk_render_frame (context, cr, 0, 0, w, h); cairo_translate (cr, border.left + padding.left, border.top + padding.top); cairo_translate (cr, extents.x + text_padding / 2, 0); gtk_style_context_get_color (context, state, &color); gdk_cairo_set_source_rgba (cr, &color); gtk_render_layout (context, cr, 0, 0, layout); g_object_unref (layout); } gtk_style_context_restore (context); cairo_restore (cr); } gtk_style_context_restore (context); return TRUE; } static gboolean cc_display_arrangement_button_press_event (GtkWidget *widget, GdkEventButton *event) { CcDisplayArrangement *self = CC_DISPLAY_ARRANGEMENT (widget); CcDisplayMonitor *output; gdouble event_x, event_y; gint mon_x, mon_y; if (!self->config) return FALSE; /* Only handle normal presses of the left mouse button. */ if (event->button != 1 || event->type != GDK_BUTTON_PRESS) return FALSE; g_return_val_if_fail (self->drag_active == FALSE, FALSE); output = cc_display_arrangement_find_monitor_at (self, event->x, event->y); if (!output) return FALSE; if (!cc_display_monitor_is_active (output)) { cc_display_arrangement_set_selected_output (self, output); return FALSE; } event_x = event->x; event_y = event->y; cairo_matrix_transform_point (&self->to_actual, &event_x, &event_y); cc_display_monitor_get_geometry (output, &mon_x, &mon_y, NULL, NULL); cc_display_arrangement_set_selected_output (self, output); if (cc_display_config_count_useful_monitors (self->config) > 1) { self->drag_active = TRUE; self->drag_anchor_x = event_x - mon_x; self->drag_anchor_y = event_y - mon_y; } return TRUE; } static gboolean cc_display_arrangement_button_release_event (GtkWidget *widget, GdkEventButton *event) { CcDisplayArrangement *self = CC_DISPLAY_ARRANGEMENT (widget); CcDisplayMonitor *output; if (!self->config) return FALSE; /* Only handle left mouse button */ if (event->button != 1) return FALSE; if (!self->drag_active) return FALSE; self->drag_active = FALSE; output = cc_display_arrangement_find_monitor_at (self, event->x, event->y); cc_display_arrangement_update_cursor (self, output != NULL); /* And queue a redraw to recenter everything */ gtk_widget_queue_draw (widget); g_signal_emit_by_name (G_OBJECT (widget), "updated"); return TRUE; } static gboolean cc_display_arrangement_motion_notify_event (GtkWidget *widget, GdkEventMotion *event) { CcDisplayArrangement *self = CC_DISPLAY_ARRANGEMENT (widget); gdouble event_x, event_y; gint mon_x, mon_y; SnapData snap_data; if (!self->config) return FALSE; if (cc_display_config_count_useful_monitors (self->config) <= 1) return FALSE; if (!self->drag_active) { CcDisplayMonitor *output; output = cc_display_arrangement_find_monitor_at (self, event->x, event->y); if (output != NULL && !cc_display_monitor_is_active (output)) return FALSE; cc_display_arrangement_update_cursor (self, output != NULL); if (self->prelit_output != output) gtk_widget_queue_draw (widget); self->prelit_output = output; return FALSE; } g_assert (self->selected_output); event_x = event->x; event_y = event->y; cairo_matrix_transform_point (&self->to_actual, &event_x, &event_y); mon_x = round (event_x - self->drag_anchor_x); mon_y = round (event_y - self->drag_anchor_y); /* The monitor is now at the location as if there was no snapping whatsoever. */ snap_data.snapped = SNAP_DIR_NONE; snap_data.mon_x = mon_x; snap_data.mon_y = mon_y; snap_data.dist_x = 0; snap_data.dist_y = 0; snap_data.to_widget = self->to_widget; snap_data.major_snap_distance = self->major_snap_distance; cc_display_monitor_set_position (self->selected_output, mon_x, mon_y); find_best_snapping (self->config, self->selected_output, &snap_data); cc_display_monitor_set_position (self->selected_output, snap_data.mon_x, snap_data.mon_y); return TRUE; } static void cc_display_arrangement_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec) { CcDisplayArrangement *self = CC_DISPLAY_ARRANGEMENT (object); switch (prop_id) { case PROP_CONFIG: g_value_set_object (value, self->config); break; case PROP_SELECTED_OUTPUT: g_value_set_object (value, self->selected_output); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); } } static void cc_display_arrangement_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec) { CcDisplayArrangement *obj = CC_DISPLAY_ARRANGEMENT (object); switch (prop_id) { case PROP_CONFIG: cc_display_arrangement_set_config (obj, g_value_get_object (value)); break; case PROP_SELECTED_OUTPUT: cc_display_arrangement_set_selected_output (obj, g_value_get_object (value)); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); } } static void cc_display_arrangement_finalize (GObject *object) { CcDisplayArrangement *self = CC_DISPLAY_ARRANGEMENT (object); g_clear_object (&self->config); G_OBJECT_CLASS (cc_display_arrangement_parent_class)->finalize (object); } static void cc_display_arrangement_class_init (CcDisplayArrangementClass *klass) { GObjectClass *gobject_class = G_OBJECT_CLASS (klass); GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass); gobject_class->finalize = cc_display_arrangement_finalize; gobject_class->get_property = cc_display_arrangement_get_property; gobject_class->set_property = cc_display_arrangement_set_property; widget_class->draw = cc_display_arrangement_draw; widget_class->button_press_event = cc_display_arrangement_button_press_event; widget_class->button_release_event = cc_display_arrangement_button_release_event; widget_class->motion_notify_event = cc_display_arrangement_motion_notify_event; props[PROP_CONFIG] = g_param_spec_object ("config", "Display Config", "The display configuration to work with", CC_TYPE_DISPLAY_CONFIG, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); props[PROP_SELECTED_OUTPUT] = g_param_spec_object ("selected-output", "Selected Output", "The output that is currently selected on the configuration", CC_TYPE_DISPLAY_MONITOR, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS); g_object_class_install_properties (gobject_class, PROP_LAST, props); g_signal_new ("updated", CC_TYPE_DISPLAY_ARRANGEMENT, G_SIGNAL_RUN_LAST, 0, NULL, NULL, NULL, G_TYPE_NONE, 0); g_signal_new ("get-output-color", CC_TYPE_DISPLAY_ARRANGEMENT, G_SIGNAL_RUN_LAST, 0, NULL, NULL, NULL, G_TYPE_STRING, 1, G_TYPE_INT); } static void cc_display_arrangement_init (CcDisplayArrangement *self) { /* XXX: Do we need to listen to touch events here? */ gtk_widget_add_events (GTK_WIDGET (self), GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_POINTER_MOTION_MASK); self->major_snap_distance = MAJOR_SNAP_DISTANCE; } CcDisplayArrangement* cc_display_arrangement_new (CcDisplayConfig *config) { return g_object_new (CC_TYPE_DISPLAY_ARRANGEMENT, "config", config, NULL); } CcDisplayConfig* cc_display_arrangement_get_config (CcDisplayArrangement *self) { return self->config; } void cc_display_arrangement_set_config (CcDisplayArrangement *self, CcDisplayConfig *config) { const gchar *signals[] = { "rotation", "mode", "primary", "active", "scale", "position-changed", "is-usable" }; GList *outputs, *l; guint i; if (self->config) { outputs = cc_display_config_get_monitors (self->config); for (l = outputs; l; l = l->next) { CcDisplayMonitor *output = l->data; g_signal_handlers_disconnect_by_data (output, self); } } g_clear_object (&self->config); self->drag_active = FALSE; /* Listen to all the signals */ if (config) { self->config = g_object_ref (config); outputs = cc_display_config_get_monitors (self->config); for (l = outputs; l; l = l->next) { CcDisplayMonitor *output = l->data; for (i = 0; i < G_N_ELEMENTS (signals); ++i) g_signal_connect_object (output, signals[i], G_CALLBACK (on_output_changed_cb), self, G_CONNECT_SWAPPED); } } cc_display_arrangement_set_selected_output (self, NULL); g_object_notify_by_pspec (G_OBJECT (self), props[PROP_CONFIG]); } CcDisplayMonitor* cc_display_arrangement_get_selected_output (CcDisplayArrangement *self) { return self->selected_output; } void cc_display_arrangement_set_selected_output (CcDisplayArrangement *self, CcDisplayMonitor *output) { g_return_if_fail (self->drag_active == FALSE); /* XXX: Could check that it actually belongs to the right config object. */ self->selected_output = output; gtk_widget_queue_draw (GTK_WIDGET (self)); g_object_notify_by_pspec (G_OBJECT (self), props[PROP_SELECTED_OUTPUT]); } void cc_display_config_snap_output (CcDisplayConfig *config, CcDisplayMonitor *output) { SnapData snap_data; gint x, y, w, h; gdouble max_scale; if (!cc_display_monitor_is_useful (output)) return; if (cc_display_config_count_useful_monitors (config) <= 1) return; max_scale = cc_display_config_get_maximum_scaling (config); get_scaled_geometry (config, output, max_scale, &x, &y, &w, &h); snap_data.snapped = SNAP_DIR_NONE; snap_data.mon_x = x; snap_data.mon_y = y; snap_data.dist_x = 0; snap_data.dist_y = 0; cairo_matrix_init_identity (&snap_data.to_widget); snap_data.major_snap_distance = G_MAXUINT; find_best_snapping (config, output, &snap_data); cc_display_monitor_set_position (output, snap_data.mon_x, snap_data.mon_y); } cinnamon-control-center-6.2.0/panels/display/org.cinnamon.control-center.display.gschema.xml0000664000175000017500000000050514632072346031260 0ustar fabiofabio false no longer used - see org.cinnamon.muffin:experimental-features cinnamon-control-center-6.2.0/panels/display/cc-display-panel.c0000664000175000017500000012262714632072346023442 0ustar fabiofabio/* * Copyright (C) 2007, 2008 Red Hat, Inc. * Copyright (C) 2013 Intel, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * */ #include #include "cc-display-panel.h" #include #include #include #include #include #include #include #ifdef GDK_WINDOWING_WAYLAND #include #endif #include #include "cc-display-config-manager-dbus.h" #include "cc-display-config.h" #include "cc-display-arrangement.h" #include "cc-display-resources.h" #include "cc-display-settings.h" #include "cc-display-labeler.h" /* The minimum supported size for the panel * Note that WIDTH is assumed to be the larger size and we accept portrait * mode too effectively (in principle we should probably restrict the rotation * setting in that case). */ #define MINIMUM_WIDTH 740 #define MINIMUM_HEIGHT 530 #define PANEL_PADDING 32 #define SECTION_PADDING 32 #define HEADING_PADDING 12 #define WID(s) GTK_WIDGET (gtk_builder_get_object (self->builder, s)) typedef enum { CC_DISPLAY_CONFIG_JOIN, CC_DISPLAY_CONFIG_CLONE, CC_DISPLAY_CONFIG_INVALID_NONE, } CcDisplayConfigType; #define CC_DISPLAY_CONFIG_LAST_VALID CC_DISPLAY_CONFIG_CLONE struct _CcDisplayPanel { CcPanel parent_instance; CcDisplayConfigManager *manager; CcDisplayConfig *current_config; CcDisplayMonitor *current_output; GDBusProxy *cinnamon_proxy; gint rebuilding_counter; CcDisplayArrangement *arrangement; CcDisplaySettings *settings; guint focus_id; UpClient *up_client; gboolean lid_is_closed; guint sensor_watch_id; GDBusProxy *iio_sensor_proxy; gboolean has_accelerometer; GtkBuilder *builder; GtkWidget *apply_button; GtkWidget *defaults_button; GtkWidget *cancel_button; GtkListStore *output_selection_list; GdkRGBA *palette; gint n_outputs; GtkWidget *arrangement_frame; GtkWidget *arrangement_bin; GtkWidget *config_type_join; GtkWidget *config_type_mirror; GtkWidget *config_type_revealer; GtkWidget *display_settings_frame; GtkWidget *output_enabled_switch; GtkWidget *output_selection_combo; GtkWidget *primary_display_toggle; GtkWidget *stack_switcher; GCancellable *cancellable; GSettings *muffin_settings; CcDisplayLabeler *labeler; }; CC_PANEL_REGISTER (CcDisplayPanel, cc_display_panel) #ifdef GDK_WINDOWING_WAYLAND #define WAYLAND_SESSION() (GDK_IS_WAYLAND_DISPLAY (gdk_display_get_default())) #else #define WAYLAND_SESSION() (FALSE) #endif static void update_bottom_buttons (CcDisplayPanel *panel); static void apply_current_configuration (CcDisplayPanel *self); static void reset_current_config (CcDisplayPanel *panel); static void rebuild_ui (CcDisplayPanel *panel); static void regenerate_palette (CcDisplayPanel *panel, gint n_outputs); static void set_current_output (CcDisplayPanel *panel, CcDisplayMonitor *output, gboolean force); static gchar *get_color_string_for_output (CcDisplayPanel *panel, gint index); static gchar *get_output_color (GObject *source, gint index, CcDisplayPanel *self); static CcDisplayConfigType config_get_current_type (CcDisplayPanel *panel) { guint n_active_outputs; GList *outputs, *l; outputs = cc_display_config_get_ui_sorted_monitors (panel->current_config); n_active_outputs = 0; for (l = outputs; l; l = l->next) { CcDisplayMonitor *output = l->data; if (cc_display_monitor_is_useful (output)) n_active_outputs += 1; } if (n_active_outputs == 0) return CC_DISPLAY_CONFIG_INVALID_NONE; if (cc_display_config_is_cloning (panel->current_config)) return CC_DISPLAY_CONFIG_CLONE; return CC_DISPLAY_CONFIG_JOIN; } static CcDisplayConfigType cc_panel_get_selected_type (CcDisplayPanel *panel) { if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (panel->config_type_join))) return CC_DISPLAY_CONFIG_JOIN; else if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (panel->config_type_mirror))) return CC_DISPLAY_CONFIG_CLONE; else g_assert_not_reached (); } static void config_ensure_of_type (CcDisplayPanel *panel, CcDisplayConfigType type) { CcDisplayConfigType current_type = config_get_current_type (panel); GList *outputs, *l; CcDisplayMonitor *current_primary = NULL; gdouble old_primary_scale = -1; /* Do not do anything if the current detected configuration type is * identitcal to what we expect. */ if (type == current_type) return; reset_current_config (panel); outputs = cc_display_config_get_ui_sorted_monitors (panel->current_config); for (l = outputs; l; l = l->next) { CcDisplayMonitor *output = l->data; if (cc_display_monitor_is_primary (output)) { current_primary = output; old_primary_scale = cc_display_monitor_get_scale (current_primary); break; } } switch (type) { case CC_DISPLAY_CONFIG_JOIN: g_debug ("Creating new join or single config"); /* Enable all usable outputs * Note that this might result in invalid configurations as we * we might not be able to drive all attached monitors. */ cc_display_config_set_cloning (panel->current_config, FALSE); if (g_list_length (outputs) == 1) { for (l = outputs; l; l = l->next) { CcDisplayMonitor *output = l->data; /* Select the current primary output as the active one */ if (cc_display_monitor_is_primary (output)) { cc_display_monitor_set_active (output, TRUE); cc_display_monitor_set_mode (output, cc_display_monitor_get_preferred_mode (output)); set_current_output (panel, output, FALSE); } else { cc_display_monitor_set_active (output, FALSE); cc_display_monitor_set_mode (output, cc_display_monitor_get_preferred_mode (output)); } } gtk_widget_set_sensitive (panel->output_enabled_switch, FALSE); } else { for (l = outputs; l; l = l->next) { CcDisplayMonitor *output = l->data; gdouble scale; CcDisplayMode *mode; mode = cc_display_monitor_get_preferred_mode (output); /* If the monitor was active, try using the current scale, otherwise * try picking the preferred scale. */ if (cc_display_monitor_is_active (output)) scale = cc_display_monitor_get_scale (output); else scale = cc_display_mode_get_preferred_scale (mode); /* If we cannot use the current/preferred scale, try to fall back to * the previously scale of the primary monitor instead. * This is not guaranteed to result in a valid configuration! */ if (!cc_display_config_is_scaled_mode_valid (panel->current_config, mode, scale)) { if (current_primary && cc_display_config_is_scaled_mode_valid (panel->current_config, mode, old_primary_scale)) scale = old_primary_scale; } cc_display_monitor_set_active (output, cc_display_monitor_is_usable (output)); cc_display_monitor_set_mode (output, mode); cc_display_monitor_set_scale (output, scale); } gtk_widget_set_sensitive (panel->output_enabled_switch, TRUE); } break; case CC_DISPLAY_CONFIG_CLONE: { g_debug ("Creating new clone config"); gdouble scale; GList *modes = cc_display_config_get_cloning_modes (panel->current_config); gint bw, bh; CcDisplayMode *best = NULL; /* Turn on cloning and select the best mode we can find by default */ cc_display_config_set_cloning (panel->current_config, TRUE); while (modes) { CcDisplayMode *mode = modes->data; gint w, h; cc_display_mode_get_resolution (mode, &w, &h); if (best == NULL || (bw*bh < w*h)) { best = mode; cc_display_mode_get_resolution (best, &bw, &bh); } modes = modes->next; } /* Take the preferred scale by default, */ scale = cc_display_mode_get_preferred_scale (best); /* but prefer the old primary scale if that is valid. */ if (current_primary && cc_display_config_is_scaled_mode_valid (panel->current_config, best, old_primary_scale)) scale = old_primary_scale; for (l = outputs; l; l = l->next) { CcDisplayMonitor *output = l->data; cc_display_monitor_set_mode (output, best); cc_display_monitor_set_scale (output, scale); } gtk_widget_set_sensitive (panel->output_enabled_switch, FALSE); } break; default: g_assert_not_reached (); } rebuild_ui (panel); } static void cc_panel_set_selected_type (CcDisplayPanel *panel, CcDisplayConfigType type) { switch (type) { case CC_DISPLAY_CONFIG_JOIN: gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (panel->config_type_join), TRUE); break; case CC_DISPLAY_CONFIG_CLONE: gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (panel->config_type_mirror), TRUE); break; default: g_assert_not_reached (); } config_ensure_of_type (panel, type); } static void hide_labels_dbus (CcDisplayPanel *self) { if (!self->cinnamon_proxy) return; g_dbus_proxy_call (self->cinnamon_proxy, "HideMonitorLabels", NULL, G_DBUS_CALL_FLAGS_NONE, -1, NULL, NULL, NULL); } static void show_labels_dbus (CcDisplayPanel *self) { GList *outputs, *l; GVariantBuilder builder; gint number = 0; if (!self->cinnamon_proxy || !self->current_config) return; outputs = cc_display_config_get_ui_sorted_monitors (self->current_config); if (!outputs) return; g_variant_builder_init (&builder, G_VARIANT_TYPE_TUPLE); g_variant_builder_open (&builder, G_VARIANT_TYPE_ARRAY); gint color_index = 0; for (l = outputs, color_index = 0; l != NULL; l = l->next, color_index++) { CcDisplayMonitor *output = l->data; number = cc_display_monitor_get_ui_number (output); if (number == 0) continue; GVariant *var; g_autofree gchar *color_str = get_color_string_for_output (self, color_index); var = g_variant_new ("(ibss)", number, cc_display_config_is_cloning (self->current_config), cc_display_monitor_get_display_name (output), color_str); g_variant_builder_add (&builder, "{sv}", cc_display_monitor_get_connector_name (output), var); } g_variant_builder_close (&builder); if (number < 1) { g_variant_builder_clear (&builder); return; } g_dbus_proxy_call (self->cinnamon_proxy, "ShowMonitorLabels", g_variant_builder_end (&builder), G_DBUS_CALL_FLAGS_NONE, -1, NULL, NULL, NULL); } static void hide_labels (CcDisplayPanel *self) { if (WAYLAND_SESSION ()) { hide_labels_dbus (self); } else { if (self->labeler) { cc_display_labeler_hide (self->labeler); } } } static void show_labels (CcDisplayPanel *self) { if (WAYLAND_SESSION ()) { show_labels_dbus (self); } else { if (self->labeler) { cc_display_labeler_hide (self->labeler); g_object_unref (self->labeler); } self->labeler = cc_display_labeler_new (self->current_config); g_signal_connect_object (self->labeler, "get-output-color", G_CALLBACK (get_output_color), self, 0); cc_display_labeler_show (self->labeler); } } static void widget_visible_changed (GtkWidget *widget, gpointer user_data) { CcDisplayPanel *self = CC_DISPLAY_PANEL (widget); if (gtk_widget_get_visible (widget) && self->current_config != NULL) { show_labels (self); } else { hide_labels (self); } } static void ensure_monitor_labels (CcDisplayPanel *self) { widget_visible_changed (GTK_WIDGET (self), self); } static void cc_display_panel_dispose (GObject *object) { CcDisplayPanel *self = CC_DISPLAY_PANEL (object); if (self->sensor_watch_id > 0) { g_bus_unwatch_name (self->sensor_watch_id); self->sensor_watch_id = 0; } g_clear_object (&self->iio_sensor_proxy); g_clear_object (&self->manager); g_clear_object (&self->current_config); g_clear_object (&self->up_client); g_clear_object (&self->cinnamon_proxy); g_clear_object (&self->muffin_settings); g_clear_object (&self->labeler); g_clear_pointer (&self->palette, g_free); g_clear_object (&self->output_selection_list); g_clear_object (&self->builder); g_signal_handlers_disconnect_by_func (self, widget_visible_changed, NULL); G_OBJECT_CLASS (cc_display_panel_parent_class)->dispose (object); } static void on_arrangement_selected_ouptut_changed_cb (CcDisplayPanel *panel) { set_current_output (panel, cc_display_arrangement_get_selected_output (panel->arrangement), FALSE); } static void on_monitor_settings_updated_cb (CcDisplayPanel *panel, CcDisplayMonitor *monitor, CcDisplaySettings *settings) { if (monitor) cc_display_config_snap_output (panel->current_config, monitor); update_bottom_buttons (panel); } static void on_config_type_toggled_cb (CcDisplayPanel *panel, GtkRadioButton *btn) { CcDisplayConfigType type; if (panel->rebuilding_counter > 0) return; if (!panel->current_config) return; if (!gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (btn))) return; type = cc_panel_get_selected_type (panel); config_ensure_of_type (panel, type); } static void on_output_enabled_active_changed_cb (CcDisplayPanel *panel) { gboolean active; if (!panel->current_output) return; active = gtk_switch_get_active (GTK_SWITCH (panel->output_enabled_switch)); if (cc_display_monitor_is_active (panel->current_output) == active) return; cc_display_monitor_set_active (panel->current_output, active); /* Prevent the invalid configuration of disabling the last monitor * by switching on a different one. */ if (config_get_current_type (panel) == CC_DISPLAY_CONFIG_INVALID_NONE) { GList *outputs, *l; outputs = cc_display_config_get_ui_sorted_monitors (panel->current_config); for (l = outputs; l; l = l->next) { CcDisplayMonitor *output = CC_DISPLAY_MONITOR (l->data); if (output == panel->current_output) continue; if (!cc_display_monitor_is_usable (output)) continue; cc_display_monitor_set_active (output, TRUE); cc_display_monitor_set_primary (output, TRUE); break; } } /* Changing the active state requires a UI rebuild. */ rebuild_ui (panel); } static void on_output_selection_combo_changed_cb (CcDisplayPanel *panel) { GtkTreeIter iter; g_autoptr(CcDisplayMonitor) output = NULL; if (!panel->current_config) return; if (!gtk_combo_box_get_active_iter (GTK_COMBO_BOX (panel->output_selection_combo), &iter)) return; gtk_tree_model_get (GTK_TREE_MODEL (panel->output_selection_list), &iter, 1, &output, -1); set_current_output (panel, output, FALSE); } static void primary_display_toggle_toggled_cb (GtkToggleButton *button, CcDisplayPanel *panel) { if (panel->rebuilding_counter > 0) return; if (cc_display_monitor_is_primary (panel->current_output)) { return; } cc_display_monitor_set_primary (panel->current_output, TRUE); // rebuild_ui (panel); update_bottom_buttons (panel); gtk_widget_set_sensitive (GTK_WIDGET (button), FALSE); } static void cc_display_panel_constructed (GObject *object) { G_OBJECT_CLASS (cc_display_panel_parent_class)->constructed (object); } static void cc_display_panel_class_init (CcDisplayPanelClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); object_class->constructed = cc_display_panel_constructed; object_class->dispose = cc_display_panel_dispose; } static void set_current_output (CcDisplayPanel *panel, CcDisplayMonitor *output, gboolean force) { GtkTreeIter iter; gboolean changed; GList *outputs; /* Note, this function is also called if the internal UI needs updating after a rebuild. */ changed = (output != panel->current_output); if (!changed && !force) return; panel->rebuilding_counter++; panel->current_output = output; outputs = cc_display_config_get_ui_sorted_monitors (panel->current_config); if (panel->current_output) { gtk_switch_set_active (GTK_SWITCH (panel->output_enabled_switch), cc_display_monitor_is_active (panel->current_output)); gtk_widget_set_sensitive (GTK_WIDGET (panel->output_enabled_switch), cc_display_monitor_is_usable (panel->current_output) && config_get_current_type (panel) == CC_DISPLAY_CONFIG_JOIN && g_list_length (outputs) > 1); gtk_widget_set_sensitive (GTK_WIDGET (panel->primary_display_toggle), !cc_display_monitor_is_primary (panel->current_output) && cc_display_monitor_is_active (panel->current_output)); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (panel->primary_display_toggle), cc_display_monitor_is_primary (panel->current_output)); } else { gtk_switch_set_active (GTK_SWITCH (panel->output_enabled_switch), FALSE); gtk_widget_set_sensitive (GTK_WIDGET (panel->output_enabled_switch), FALSE); gtk_widget_set_sensitive (GTK_WIDGET (panel->primary_display_toggle), FALSE); } gtk_tree_model_get_iter_first (GTK_TREE_MODEL (panel->output_selection_list), &iter); while (gtk_list_store_iter_is_valid (panel->output_selection_list, &iter)) { g_autoptr(CcDisplayMonitor) o = NULL; gtk_tree_model_get (GTK_TREE_MODEL (panel->output_selection_list), &iter, 1, &o, -1); if (o == panel->current_output) { gtk_combo_box_set_active_iter (GTK_COMBO_BOX (panel->output_selection_combo), &iter); break; } gtk_tree_model_iter_next (GTK_TREE_MODEL (panel->output_selection_list), &iter); } if (changed) { cc_display_settings_set_selected_output (panel->settings, panel->current_output); cc_display_arrangement_set_selected_output (panel->arrangement, panel->current_output); } panel->rebuilding_counter--; } static void rebuild_ui (CcDisplayPanel *panel) { guint n_outputs, n_active_outputs, n_usable_outputs; GList *outputs, *l; CcDisplayConfigType type; gboolean cloned = FALSE; gint index = 0; panel->rebuilding_counter++; gtk_list_store_clear (panel->output_selection_list); if (!panel->current_config) { panel->rebuilding_counter--; return; } cloned = config_get_current_type (panel); n_active_outputs = 0; n_usable_outputs = 0; outputs = cc_display_config_get_ui_sorted_monitors (panel->current_config); regenerate_palette (panel, g_list_length (outputs)); ensure_monitor_labels (panel); for (l = outputs, index = 0; l; l = l->next, index++) { GtkTreeIter iter; CcDisplayMonitor *output = l->data; GdkPixbuf *pixbuf; GdkRGBA color; guint32 pixel = 0; const gchar *label; pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE, 8, 20, 20); gchar *color_string = get_color_string_for_output (panel, index); gdk_rgba_parse (&color, color_string); g_free (color_string); pixel = pixel + ((int) (color.red * 255) << 24); pixel = pixel + ((int) (color.green * 255) << 16); pixel = pixel + ((int) (color.blue * 255) << 8); pixel = pixel + ((int) (color.alpha * 255)); if (cloned) { label = _("Mirrored Displays"); } else { label = cc_display_monitor_get_ui_number_name (output); } gdk_pixbuf_fill (pixbuf, pixel); gtk_list_store_append (panel->output_selection_list, &iter); gtk_list_store_set (panel->output_selection_list, &iter, 0, label, 1, output, 2, pixbuf, -1); g_object_unref (pixbuf); if (!cc_display_monitor_is_usable (output)) continue; n_usable_outputs += 1; if (cc_display_monitor_is_active (output)) { /* Ensure that an output is selected; note that this doesn't ensure * the selected output is any useful (i.e. when switching types). */ if (!panel->current_output || !cc_display_monitor_is_active (panel->current_output)) set_current_output (panel, output, FALSE); n_active_outputs++; } } /* Sync the rebuild lists/buttons */ set_current_output (panel, panel->current_output, TRUE); n_outputs = g_list_length (outputs); type = config_get_current_type (panel); if (n_outputs == 2 && n_usable_outputs == 2 && n_active_outputs == 2) { /* We only show the top chooser with two monitors that are * both usable (i.e. two monitors incl. internal and lid not closed). * In this case, the arrangement widget is shown if we are in JOIN mode. */ if (type > CC_DISPLAY_CONFIG_LAST_VALID) type = CC_DISPLAY_CONFIG_JOIN; gtk_revealer_set_reveal_child (GTK_REVEALER (panel->config_type_revealer), TRUE); } else { /* We have 1 monitor, or 2+ including active and inactive. In this case there is no chooser, */ gtk_revealer_set_reveal_child (GTK_REVEALER (panel->config_type_revealer), FALSE); /* Mirror is also invalid as it cannot be configured using this UI. */ if (type == CC_DISPLAY_CONFIG_CLONE || type > CC_DISPLAY_CONFIG_LAST_VALID) type = CC_DISPLAY_CONFIG_JOIN; } cc_panel_set_selected_type (panel, type); gtk_widget_set_sensitive (GTK_WIDGET (panel->output_selection_combo), n_outputs > 1 && !cloned); panel->rebuilding_counter--; update_bottom_buttons (panel); } static void reset_current_config (CcDisplayPanel *panel) { CcDisplayConfig *current; CcDisplayConfig *old; GList *outputs, *l; g_debug ("Resetting current config!"); /* We need to hold on to the config until all display references are dropped. */ old = panel->current_config; panel->current_output = NULL; current = cc_display_config_manager_get_current (panel->manager); // Cinnamon could be restarting if (current == NULL) return; cc_display_config_set_minimum_size (current, MINIMUM_WIDTH, MINIMUM_HEIGHT); panel->current_config = current; gtk_list_store_clear (panel->output_selection_list); if (panel->current_config) { outputs = cc_display_config_get_ui_sorted_monitors (panel->current_config); for (l = outputs; l; l = l->next) { CcDisplayMonitor *output = l->data; /* Mark any builtin monitor as unusable if the lid is closed. */ if (cc_display_monitor_is_builtin (output) && panel->lid_is_closed) cc_display_monitor_set_usable (output, FALSE); } } cc_display_arrangement_set_config (panel->arrangement, panel->current_config); cc_display_settings_set_config (panel->settings, panel->current_config); set_current_output (panel, NULL, FALSE); g_clear_object (&old); update_bottom_buttons (panel); } static void on_screen_changed (CcDisplayPanel *panel) { if (!panel->manager) return; reset_current_config (panel); rebuild_ui (panel); if (!panel->current_config) return; } static void update_bottom_buttons (CcDisplayPanel *panel) { gboolean config_equal; g_autoptr(CcDisplayConfig) applied_config = NULL; if (!panel->current_config) { return; } applied_config = cc_display_config_manager_get_current (panel->manager); config_equal = cc_display_config_equal (panel->current_config, applied_config); if (config_equal) { gtk_widget_set_sensitive (panel->apply_button, FALSE); gtk_widget_set_sensitive (panel->cancel_button, FALSE); } else { gtk_widget_set_sensitive (panel->apply_button, cc_display_config_is_applicable (panel->current_config)); gtk_widget_set_sensitive (panel->cancel_button, TRUE); } } static void apply_current_configuration (CcDisplayPanel *self) { g_autoptr(GError) error = NULL; cc_display_config_apply (self->current_config, &error); /* re-read the configuration */ on_screen_changed (self); if (error) g_warning ("Error applying configuration: %s", error->message); } static void cc_display_panel_up_client_changed (UpClient *client, GParamSpec *pspec, CcDisplayPanel *self) { gboolean lid_is_closed; lid_is_closed = up_client_get_lid_is_closed (client); if (lid_is_closed != self->lid_is_closed) { self->lid_is_closed = lid_is_closed; on_screen_changed (self); } } static void update_has_accel (CcDisplayPanel *self) { g_autoptr(GVariant) v = NULL; if (self->iio_sensor_proxy == NULL) { g_debug ("Has no accelerometer"); self->has_accelerometer = FALSE; cc_display_settings_set_has_accelerometer (self->settings, self->has_accelerometer); return; } v = g_dbus_proxy_get_cached_property (self->iio_sensor_proxy, "HasAccelerometer"); if (v) { self->has_accelerometer = g_variant_get_boolean (v); } else { self->has_accelerometer = FALSE; } cc_display_settings_set_has_accelerometer (self->settings, self->has_accelerometer); g_debug ("Has %saccelerometer", self->has_accelerometer ? "" : "no "); } static void sensor_proxy_properties_changed_cb (GDBusProxy *proxy, GVariant *changed_properties, GStrv invalidated_properties, CcDisplayPanel *self) { GVariantDict dict; g_variant_dict_init (&dict, changed_properties); if (g_variant_dict_contains (&dict, "HasAccelerometer")) update_has_accel (self); } static void sensor_proxy_appeared_cb (GDBusConnection *connection, const gchar *name, const gchar *name_owner, gpointer user_data) { CcDisplayPanel *self = user_data; g_debug ("SensorProxy appeared"); self->iio_sensor_proxy = g_dbus_proxy_new_sync (connection, G_DBUS_PROXY_FLAGS_NONE, NULL, "net.hadess.SensorProxy", "/net/hadess/SensorProxy", "net.hadess.SensorProxy", NULL, NULL); g_return_if_fail (self->iio_sensor_proxy); g_signal_connect (self->iio_sensor_proxy, "g-properties-changed", G_CALLBACK (sensor_proxy_properties_changed_cb), self); update_has_accel (self); } static void sensor_proxy_vanished_cb (GDBusConnection *connection, const gchar *name, gpointer user_data) { CcDisplayPanel *self = user_data; g_debug ("SensorProxy vanished"); g_clear_object (&self->iio_sensor_proxy); update_has_accel (self); } static void cinnamon_proxy_ready (GObject *source_object, GAsyncResult *res, gpointer user_data) { CcDisplayPanel *self = CC_DISPLAY_PANEL (user_data); GError *error = NULL; self->cinnamon_proxy = g_dbus_proxy_new_finish (res, &error); if (self->cinnamon_proxy == NULL) { g_critical ("Can't connect to Cinnamon, monitor labeler will be unavailable: %s", error->message); g_clear_error (&error); } } static void session_bus_ready (GObject *source, GAsyncResult *res, CcDisplayPanel *self) { GDBusConnection *bus; g_autoptr(GError) error = NULL; bus = g_bus_get_finish (res, &error); if (!bus) { if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) { g_warning ("Failed to get session bus: %s", error->message); } return; } self->manager = cc_display_config_manager_dbus_new (); g_signal_connect_object (self->manager, "changed", G_CALLBACK (on_screen_changed), self, G_CONNECT_SWAPPED); if (WAYLAND_SESSION ()) { g_dbus_proxy_new (bus, G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START | G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES | G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS, NULL, "org.Cinnamon", "/org/Cinnamon", "org.Cinnamon", NULL, (GAsyncReadyCallback) cinnamon_proxy_ready, self); } } static void experimental_features_changed (CcDisplayPanel *self) { on_monitor_settings_updated_cb (self, self->current_output, self->settings); } static void apply_button_clicked_cb (GtkWidget *widget, gpointer user_data) { apply_current_configuration (CC_DISPLAY_PANEL (user_data)); } static void cancel_button_clicked_cb (GtkWidget *widget, gpointer user_data) { on_screen_changed (CC_DISPLAY_PANEL (user_data)); } static void config_file_deleted (GObject *xml, GAsyncResult *res, gpointer user_data) { GError *error = NULL; if (!g_file_delete_finish (G_FILE (xml), res, &error)) { if (error != NULL) { g_warning ("Problem deleting ~/.config/cinnamon-monitors.xml: %s", error->message); g_clear_error (&error); } return; } g_spawn_command_line_async ("cinnamon-dbus-command RestartCinnamon 0", NULL); } static gboolean reset_to_defaults (gpointer data) { CcDisplayPanel *panel = CC_DISPLAY_PANEL (data); gchar *path = g_build_filename (g_get_user_config_dir (), "cinnamon-monitors.xml", NULL); GFile *xml = g_file_new_for_path (path); g_free (path); g_file_delete_async (xml, G_PRIORITY_DEFAULT, NULL, (GAsyncReadyCallback) (config_file_deleted), panel); g_object_unref (xml); return G_SOURCE_REMOVE; } static void defaults_button_clicked_cb (GtkWidget *widget, gpointer user_data) { GtkWidget *dialog_w, *w; GtkBox *box; GtkDialog *dialog; gint response; dialog_w = gtk_dialog_new (); dialog = GTK_DIALOG (dialog_w); gtk_window_set_transient_for (GTK_WINDOW (dialog_w), GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (user_data)))); gtk_window_set_default_size (GTK_WINDOW (dialog_w), 300, -1); gtk_window_set_title (GTK_WINDOW (dialog_w), _("Confirm reset to defaults")); gtk_dialog_add_buttons(dialog, _("Cancel"), GTK_RESPONSE_NO, _("Continue"), GTK_RESPONSE_YES, NULL); gtk_dialog_set_default_response(dialog, GTK_RESPONSE_NO); w = gtk_dialog_get_widget_for_response(dialog, GTK_RESPONSE_YES); gtk_style_context_add_class (gtk_widget_get_style_context (w), GTK_STYLE_CLASS_DESTRUCTIVE_ACTION); box = GTK_BOX (gtk_dialog_get_content_area (dialog)); gtk_container_set_border_width (GTK_CONTAINER (box), 15); gtk_box_set_spacing (box, 6); w = gtk_image_new_from_icon_name ("dialog-warning", GTK_ICON_SIZE_DIALOG); gtk_box_pack_start (box, w, FALSE, FALSE, 6); w = gtk_label_new (_("This will remove all existing display configurations and reset the current layout.")); gtk_box_pack_start (box, w, FALSE, FALSE, 0); gtk_widget_show_all (dialog_w); response = gtk_dialog_run (dialog); gtk_widget_destroy (dialog_w); if (response == GTK_RESPONSE_YES) { g_timeout_add (500, (GSourceFunc) reset_to_defaults, user_data); } } static void regenerate_palette (CcDisplayPanel *panel, gint n_outputs) { /* The idea is that we go around an hue color wheel. We want to start * at red, go around to green/etc. and stop at blue. * */ double start_hue; double end_hue; int i; g_clear_pointer (&panel->palette, g_free); panel->palette = g_new (GdkRGBA, n_outputs); start_hue = 0.0; /* red */ end_hue = 2.0/3; /* blue */ for (i = 0; i < n_outputs; i++) { double h, s, v; double r, g, b; h = start_hue + (end_hue - start_hue) / n_outputs * i; s = 0.6; v = 1.0; gtk_hsv_to_rgb (h, s, v, &r, &g, &b); panel->palette[i].red = r; panel->palette[i].green = g; panel->palette[i].blue = b; panel->palette[i].alpha = 1.0; } panel->n_outputs = n_outputs; } static gchar * get_color_string_for_output (CcDisplayPanel *panel, gint index) { if (index < 0 || index > panel->n_outputs - 1) { return g_strdup ("white"); } return gdk_rgba_to_string (&panel->palette[index]); } static gchar * get_output_color (GObject *source, gint index, CcDisplayPanel *self) { return get_color_string_for_output (self, index); } static void cc_display_panel_init (CcDisplayPanel *self) { g_autoptr(GtkCssProvider) provider = NULL; GtkCellRenderer *renderer; g_resources_register (cc_display_get_resource ()); self->builder = gtk_builder_new_from_resource ("/org/cinnamon/control-center/display/cc-display-panel.ui"); gtk_container_add (GTK_CONTAINER (self), WID ("toplevel")); self->arrangement_frame = WID ("arrangement_frame"); self->arrangement_bin = WID ("arrangement_bin"); self->config_type_revealer = WID ("config_type_revealer"); self->config_type_join = WID ("config_type_join"); self->config_type_mirror = WID ("config_type_mirror"); self->display_settings_frame = WID ("display_settings_frame"); self->output_enabled_switch = WID ("output_enabled_switch"); self->output_selection_combo = WID ("output_selection_combo"); self->primary_display_toggle = WID ("primary_display_toggle"); self->stack_switcher = WID ("stack_switcher"); self->apply_button = WID ("apply_button"); self->cancel_button = WID ("cancel_button"); self->defaults_button = WID ("defaults_button"); gtk_builder_add_callback_symbol (self->builder, "on_config_type_toggled_cb", G_CALLBACK (on_config_type_toggled_cb)); gtk_builder_add_callback_symbol (self->builder, "on_output_enabled_active_changed_cb", G_CALLBACK (on_output_enabled_active_changed_cb)); gtk_builder_add_callback_symbol (self->builder, "on_output_selection_combo_changed_cb", G_CALLBACK (on_output_selection_combo_changed_cb)); gtk_builder_add_callback_symbol (self->builder, "primary_display_toggle_toggled_cb", G_CALLBACK (primary_display_toggle_toggled_cb)); gtk_builder_add_callback_symbol (self->builder, "apply_button_clicked_cb", G_CALLBACK (apply_button_clicked_cb)); gtk_builder_add_callback_symbol (self->builder, "cancel_button_clicked_cb", G_CALLBACK (cancel_button_clicked_cb)); gtk_builder_add_callback_symbol (self->builder, "defaults_button_clicked_cb", G_CALLBACK (defaults_button_clicked_cb)); gtk_builder_connect_signals (self->builder, self); self->muffin_settings = g_settings_new ("org.cinnamon.muffin"); g_signal_connect_swapped (self->muffin_settings, "changed::experimental-features", G_CALLBACK (experimental_features_changed), self); self->arrangement = cc_display_arrangement_new (NULL); gtk_widget_show (GTK_WIDGET (self->arrangement)); gtk_widget_set_size_request (GTK_WIDGET (self->arrangement), 400, 175); gtk_container_add (GTK_CONTAINER (self->arrangement_bin), GTK_WIDGET (self->arrangement)); g_signal_connect_object (self->arrangement, "updated", G_CALLBACK (update_bottom_buttons), self, G_CONNECT_SWAPPED); g_signal_connect_object (self->arrangement, "notify::selected-output", G_CALLBACK (on_arrangement_selected_ouptut_changed_cb), self, G_CONNECT_SWAPPED); g_signal_connect_object (self->arrangement, "get-output-color", G_CALLBACK (get_output_color), self, 0); self->settings = cc_display_settings_new (); gtk_widget_show (GTK_WIDGET (self->settings)); gtk_container_add (GTK_CONTAINER (self->display_settings_frame), GTK_WIDGET (self->settings)); g_signal_connect_object (self->settings, "updated", G_CALLBACK (on_monitor_settings_updated_cb), self, G_CONNECT_SWAPPED); self->output_selection_list = gtk_list_store_new (3, G_TYPE_STRING, CC_TYPE_DISPLAY_MONITOR, GDK_TYPE_PIXBUF); gtk_combo_box_set_model (GTK_COMBO_BOX (self->output_selection_combo), GTK_TREE_MODEL (self->output_selection_list)); gtk_cell_layout_clear (GTK_CELL_LAYOUT (self->output_selection_combo)); renderer = gtk_cell_renderer_pixbuf_new (); gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (self->output_selection_combo), renderer, FALSE); gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (self->output_selection_combo), renderer, "pixbuf", 2); gtk_cell_renderer_set_visible (renderer, TRUE); renderer = gtk_cell_renderer_text_new (); gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (self->output_selection_combo), renderer, TRUE); gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (self->output_selection_combo), renderer, "text", 0); gtk_cell_renderer_set_visible (renderer, TRUE); g_object_set (renderer, "xpad", 6, NULL); self->up_client = up_client_new (); if (up_client_get_lid_is_present (self->up_client)) { g_signal_connect (self->up_client, "notify::lid-is-closed", G_CALLBACK (cc_display_panel_up_client_changed), self); cc_display_panel_up_client_changed (self->up_client, NULL, self); } else g_clear_object (&self->up_client); self->cancellable = g_cancellable_new (); g_bus_get (G_BUS_TYPE_SESSION, self->cancellable, (GAsyncReadyCallback) session_bus_ready, self); self->sensor_watch_id = g_bus_watch_name (G_BUS_TYPE_SYSTEM, "net.hadess.SensorProxy", G_BUS_NAME_WATCHER_FLAGS_NONE, sensor_proxy_appeared_cb, sensor_proxy_vanished_cb, self, NULL); provider = gtk_css_provider_new (); gtk_css_provider_load_from_resource (provider, "/org/cinnamon/control-center/display/display-arrangement.css"); gtk_style_context_add_provider_for_screen (gdk_screen_get_default (), GTK_STYLE_PROVIDER (provider), GTK_STYLE_PROVIDER_PRIORITY_APPLICATION); g_signal_connect (GTK_WIDGET (self), "show", G_CALLBACK (widget_visible_changed), NULL); g_signal_connect (GTK_WIDGET (self), "hide", G_CALLBACK (widget_visible_changed), NULL); } void cc_display_panel_register (GIOModule *module) { textdomain (GETTEXT_PACKAGE); bindtextdomain (GETTEXT_PACKAGE, LOCALE_DIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); cc_display_panel_register_type (G_TYPE_MODULE (module)); g_io_extension_point_implement (CC_SHELL_PANEL_EXTENSION_POINT, CC_TYPE_DISPLAY_PANEL, "display", 0); } cinnamon-control-center-6.2.0/panels/display/cc-display-labeler.h0000664000175000017500000000272414632072346023751 0ustar fabiofabio/* gnome-rr-labeler.h - Utility to label monitors to identify them * while they are being configured. * * Copyright 2008, Novell, Inc. * * This file is part of the Gnome Library. * * The Gnome Library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * The Gnome Library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with the Gnome Library; see the file COPYING.LIB. If not, * write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. * * Author: Federico Mena-Quintero */ #pragma once // #define GNOME_DESKTOP_USE_UNSTABLE_API #include "cc-display-config.h" G_BEGIN_DECLS #define CC_TYPE_DISPLAY_LABELER (cc_display_labeler_get_type ()) G_DECLARE_FINAL_TYPE (CcDisplayLabeler, cc_display_labeler, CC, DISPLAY_LABELER, GObject) CcDisplayLabeler *cc_display_labeler_new (CcDisplayConfig *config); void cc_display_labeler_show (CcDisplayLabeler *labeler); void cc_display_labeler_hide (CcDisplayLabeler *labeler); G_END_DECLScinnamon-control-center-6.2.0/panels/display/cc-display-panel.ui0000664000175000017500000005060614632072346023632 0ustar fabiofabio True False 12 12 12 12 4 4 video-joined-displays-symbolic 2 True False 12 12 12 12 4 4 view-mirror-symbolic 2 550 True False vertical True False crossfade 500 True False never True False none True False True vertical 6 True False 0 none True False vertical True False 0 none True False False True 0 Display Arrangement False True 0 True False 20 20 0 none True False vertical 6 True False 6 True False True False True 0 Set as Primary True True True False True 1 True True end center False True 2 False True 0 True False 0 none False True 1 Display Configuration False True 1 True False 20 20 True False vertical 6 True False False True 0 True False center Join Displays True True False image-join-displays True True False True True 0 Mirror True True False image-mirror True False config_type_join True True 1 False True 1 False True 4 displays Displays False True 0 True False 6 10 start Reset to Defaults True True True True True 0 Cancel changes True True True True True end 1 True Apply True True True True True end 2 True False True end 1 True False stack cinnamon-control-center-6.2.0/panels/display/cc-display-labeler.c0000664000175000017500000003242314632072346023743 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- * * cc-rr-labeler.c - Utility to label monitors to identify them * while they are being configured. * * Copyright 2008, Novell, Inc. * * This file is part of the Gnome Library. * * The Gnome Library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * The Gnome Library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with the Gnome Library; see the file COPYING.LIB. If not, * write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. * * Author: Federico Mena-Quintero */ #include #include #include #include #include #include #include #include #include "cc-display-labeler.h" typedef struct { CcDisplayConfig *config; int num_outputs; GtkWidget **windows; GdkScreen *screen; Atom workarea_atom; } CcDisplayLabelerPrivate; struct _CcDisplayLabeler { GObject parent; CcDisplayLabelerPrivate *priv; }; G_DEFINE_TYPE_WITH_PRIVATE (CcDisplayLabeler, cc_display_labeler, G_TYPE_OBJECT) enum { PROP_0, PROP_CONFIG, PROP_LAST }; static void cc_display_labeler_finalize (GObject *object); static GdkFilterReturn screen_xevent_filter (GdkXEvent *xevent, GdkEvent *event, CcDisplayLabeler *labeler) { XEvent *xev; xev = (XEvent *) xevent; if (xev->type == PropertyNotify && xev->xproperty.atom == labeler->priv->workarea_atom) { /* update label positions */ if (labeler->priv->windows != NULL) { cc_display_labeler_hide (labeler); cc_display_labeler_show (labeler); } } return GDK_FILTER_CONTINUE; } static void cc_display_labeler_init (CcDisplayLabeler *labeler) { GdkWindow *gdkwindow; labeler->priv = cc_display_labeler_get_instance_private (labeler); labeler->priv->workarea_atom = XInternAtom (GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()), "_NET_WORKAREA", True); labeler->priv->screen = gdk_screen_get_default (); gdkwindow = gdk_screen_get_root_window (labeler->priv->screen); gdk_window_add_filter (gdkwindow, (GdkFilterFunc) screen_xevent_filter, labeler); gdk_window_set_events (gdkwindow, gdk_window_get_events (gdkwindow) | GDK_PROPERTY_CHANGE_MASK); } static void cc_display_labeler_set_property (GObject *gobject, guint property_id, const GValue *value, GParamSpec *param_spec) { CcDisplayLabeler *self = CC_DISPLAY_LABELER (gobject); switch (property_id) { case PROP_CONFIG: self->priv->config = CC_DISPLAY_CONFIG (g_value_dup_object (value)); return; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (gobject, property_id, param_spec); } } static void cc_display_labeler_class_init (CcDisplayLabelerClass *klass) { GObjectClass *object_class; object_class = (GObjectClass *) klass; object_class->set_property = cc_display_labeler_set_property; object_class->finalize = cc_display_labeler_finalize; g_object_class_install_property (object_class, PROP_CONFIG, g_param_spec_object ("config", "Configuration", "RandR configuration to label", CC_TYPE_DISPLAY_CONFIG, G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB)); g_signal_new ("get-output-color", CC_TYPE_DISPLAY_LABELER, G_SIGNAL_RUN_LAST, 0, NULL, NULL, NULL, G_TYPE_STRING, 1, G_TYPE_INT); } static void cc_display_labeler_finalize (GObject *object) { CcDisplayLabeler *labeler; GdkWindow *gdkwindow; labeler = CC_DISPLAY_LABELER (object); gdkwindow = gdk_screen_get_root_window (labeler->priv->screen); gdk_window_remove_filter (gdkwindow, (GdkFilterFunc) screen_xevent_filter, labeler); if (labeler->priv->config != NULL) { g_object_unref (labeler->priv->config); } if (labeler->priv->windows != NULL) { cc_display_labeler_hide (labeler); g_free (labeler->priv->windows); } G_OBJECT_CLASS (cc_display_labeler_parent_class)->finalize (object); } static int count_outputs (CcDisplayConfig *config) { int i; GList *outputs = cc_display_config_get_ui_sorted_monitors (config); i = g_list_length (outputs); return i; } static void rounded_rectangle (cairo_t *cr, gint x, gint y, gint width, gint height, gint x_radius, gint y_radius) { gint x1, x2; gint y1, y2; gint xr1, xr2; gint yr1, yr2; x1 = x; x2 = x1 + width; y1 = y; y2 = y1 + height; x_radius = MIN (x_radius, width / 2.0); y_radius = MIN (y_radius, width / 2.0); xr1 = x_radius; xr2 = x_radius / 2.0; yr1 = y_radius; yr2 = y_radius / 2.0; cairo_move_to (cr, x1 + xr1, y1); cairo_line_to (cr, x2 - xr1, y1); cairo_curve_to (cr, x2 - xr2, y1, x2, y1 + yr2, x2, y1 + yr1); cairo_line_to (cr, x2, y2 - yr1); cairo_curve_to (cr, x2, y2 - yr2, x2 - xr2, y2, x2 - xr1, y2); cairo_line_to (cr, x1 + xr1, y2); cairo_curve_to (cr, x1 + xr2, y2, x1, y2 - yr2, x1, y2 - yr1); cairo_line_to (cr, x1, y1 + yr1); cairo_curve_to (cr, x1, y1 + yr2, x1 + xr2, y1, x1 + xr1, y1); cairo_close_path (cr); } #define LABEL_WINDOW_EDGE_THICKNESS 1 #define LABEL_WINDOW_PADDING 12 #define LABEL_CORNER_RADIUS 0 #define LABEL_WINDOW_MARGIN 5 static void label_draw_background_and_frame (GtkWidget *widget, cairo_t *cr) { GdkRGBA rgba; GtkAllocation allocation; gchar *rgba_str; rgba_str = g_object_get_data (G_OBJECT (widget), "rgba"); gtk_widget_get_allocation (widget, &allocation); cairo_save (cr); cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE); /* edge outline */ cairo_set_source_rgba (cr, 0, 0, 0, 1.0); rounded_rectangle (cr, LABEL_WINDOW_EDGE_THICKNESS / 2.0, LABEL_WINDOW_EDGE_THICKNESS / 2.0, allocation.width - LABEL_WINDOW_EDGE_THICKNESS, allocation.height - LABEL_WINDOW_EDGE_THICKNESS, LABEL_CORNER_RADIUS, LABEL_CORNER_RADIUS); cairo_set_line_width (cr, LABEL_WINDOW_EDGE_THICKNESS); cairo_stroke (cr); /* fill */ gdk_rgba_parse (&rgba, rgba_str); rgba.alpha = 0.90; gdk_cairo_set_source_rgba (cr, &rgba); rounded_rectangle (cr, LABEL_WINDOW_EDGE_THICKNESS, LABEL_WINDOW_EDGE_THICKNESS, allocation.width - LABEL_WINDOW_EDGE_THICKNESS * 2, allocation.height - LABEL_WINDOW_EDGE_THICKNESS * 2, LABEL_CORNER_RADIUS - LABEL_WINDOW_EDGE_THICKNESS / 2.0, LABEL_CORNER_RADIUS - LABEL_WINDOW_EDGE_THICKNESS / 2.0); cairo_fill (cr); cairo_restore (cr); } static gboolean label_window_draw_event_cb (GtkWidget *widget, cairo_t *cr, gpointer data) { /* clear any content */ cairo_save (cr); cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE); cairo_set_source_rgba (cr, 0, 0, 0, 0); cairo_paint (cr); cairo_restore (cr); gtk_widget_shape_combine_region (widget, NULL); label_draw_background_and_frame (widget, cr); return FALSE; } static void position_window (CcDisplayLabeler *labeler, CcDisplayMonitor *output, GtkWidget *window) { GdkDisplay *display; GdkRectangle workarea; int i; display = gdk_display_get_default (); for (i = 0; i < gdk_display_get_n_monitors (display); i++) { GdkMonitor *monitor = gdk_display_get_monitor (display, i); if (g_strcmp0 (gdk_monitor_get_model (monitor), cc_display_monitor_get_connector_name (output)) == 0) { gdk_monitor_get_workarea (monitor, &workarea); gtk_window_move (GTK_WINDOW (window), workarea.x + LABEL_WINDOW_MARGIN, workarea.y + LABEL_WINDOW_MARGIN); break; } } } static void label_window_realize_cb (GtkWidget *widget) { cairo_region_t *region; /* make the whole window ignore events */ region = cairo_region_create (); gtk_widget_input_shape_combine_region (widget, region); cairo_region_destroy (region); gtk_widget_shape_combine_region (widget, NULL); } static void label_window_composited_changed_cb (GtkWidget *widget, CcDisplayLabeler *labeler) { if (gtk_widget_get_realized (widget)) gtk_widget_shape_combine_region (widget, NULL); } static GtkWidget * create_label_window (CcDisplayLabeler *labeler, CcDisplayMonitor *output, gchar *rgba_str, gint num) { GtkWidget *window; GtkWidget *widget; char *str; const char *display_name, *output_name; GdkRGBA black = { 0, 0, 0, 1.0 }; int x, y; GdkScreen *screen; GdkVisual *visual; window = gtk_window_new (GTK_WINDOW_POPUP); gtk_window_set_resizable (GTK_WINDOW (window), FALSE); gtk_widget_set_app_paintable (window, TRUE); screen = gtk_widget_get_screen (window); visual = gdk_screen_get_rgba_visual (screen); if (visual != NULL) gtk_widget_set_visual (window, visual); gtk_container_set_border_width (GTK_CONTAINER (window), LABEL_WINDOW_PADDING + LABEL_WINDOW_EDGE_THICKNESS); /* This is semi-dangerous. The color is part of the labeler->palette * array. Note that in cc_display_labeler_finalize(), we are careful to * free the palette only after we free the windows. */ g_object_set_data_full (G_OBJECT (window), "rgba", rgba_str, (GDestroyNotify) g_free); g_signal_connect (window, "draw", G_CALLBACK (label_window_draw_event_cb), labeler); g_signal_connect (window, "realize", G_CALLBACK (label_window_realize_cb), labeler); g_signal_connect (window, "composited-changed", G_CALLBACK (label_window_composited_changed_cb), labeler); if (cc_display_config_is_cloning (labeler->priv->config)) { /* Translators: this is the feature where what you see on your * laptop's screen is the same as your external projector. * Here, "Mirrored" is being used as an adjective. For example, * the Spanish translation could be "Pantallas en Espejo". */ display_name = _("Mirrored Displays"); str = g_strdup_printf ("%s", display_name); } else { display_name = cc_display_monitor_get_display_name (output); output_name = cc_display_monitor_get_connector_name (output); str = g_strdup_printf ("%d %s\n%s", num, display_name, output_name); } widget = gtk_label_new (NULL); gtk_label_set_markup (GTK_LABEL (widget), str); gtk_label_set_justify (GTK_LABEL (widget), GTK_JUSTIFY_CENTER); g_free (str); gtk_widget_override_color (widget, gtk_widget_get_state_flags (widget), &black); gtk_container_add (GTK_CONTAINER (window), widget); cc_display_monitor_get_geometry (output, &x, &y, NULL, NULL); position_window (labeler, output, window); gtk_widget_show_all (window); return window; } /** * cc_display_labeler_new: * @config: Configuration of the screens to label * * Create a GUI element that will display colored labels on each connected monitor. * This is useful when users are required to identify which monitor is which, e.g. for * for configuring multiple monitors. * The labels will be shown by default, use cc_display_labeler_hide to hide them. * * Returns: A new #CcDisplayLabeler */ CcDisplayLabeler * cc_display_labeler_new (CcDisplayConfig *config) { g_return_val_if_fail (CC_IS_DISPLAY_CONFIG (config), NULL); return g_object_new (CC_TYPE_DISPLAY_LABELER, "config", config, NULL); } /** * cc_display_labeler_show: * @labeler: A #CcDisplayLabeler * * Show the labels. */ void cc_display_labeler_show (CcDisplayLabeler *labeler) { gint i; gboolean created_window_for_clone; GList *outputs, *l; g_return_if_fail (CC_IS_DISPLAY_LABELER (labeler)); if (labeler->priv->windows != NULL) return; labeler->priv->num_outputs = count_outputs (labeler->priv->config); labeler->priv->windows = g_new (GtkWidget *, labeler->priv->num_outputs); created_window_for_clone = FALSE; outputs = cc_display_config_get_ui_sorted_monitors (labeler->priv->config); for (l = outputs, i = 0; l != NULL; l = l->next, i++) { CcDisplayMonitor *output = CC_DISPLAY_MONITOR (l->data); if (!created_window_for_clone) { gchar *rgba_str; g_signal_emit_by_name (G_OBJECT (labeler), "get-output-color", i, &rgba_str); labeler->priv->windows[i] = create_label_window (labeler, output, rgba_str, i + 1); if (cc_display_config_is_cloning (labeler->priv->config)) created_window_for_clone = TRUE; } else labeler->priv->windows[i] = NULL; } } /** * cc_display_labeler_hide: * @labeler: A #CcDisplayLabeler * * Hide ouput labels. */ void cc_display_labeler_hide (CcDisplayLabeler *labeler) { int i; CcDisplayLabelerPrivate *priv; g_return_if_fail (CC_IS_DISPLAY_LABELER (labeler)); priv = labeler->priv; if (priv->windows == NULL) return; for (i = 0; i < priv->num_outputs; i++) if (priv->windows[i] != NULL) { gtk_widget_destroy (priv->windows[i]); priv->windows[i] = NULL; } g_free (priv->windows); priv->windows = NULL; } cinnamon-control-center-6.2.0/panels/display/cc-display-config-manager-dbus.c0000664000175000017500000001675314632072346026155 0ustar fabiofabio/* * Copyright (C) 2017 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * */ #include "cc-display-config-dbus.h" #include "cc-display-config-manager-dbus.h" #include struct _CcDisplayConfigManagerDBus { CcDisplayConfigManager parent_instance; GCancellable *cancellable; GDBusConnection *connection; guint monitors_changed_id; guint muffin_watch_id; GVariant *current_state; }; G_DEFINE_TYPE (CcDisplayConfigManagerDBus, cc_display_config_manager_dbus, CC_TYPE_DISPLAY_CONFIG_MANAGER) static CcDisplayConfig * cc_display_config_manager_dbus_get_current (CcDisplayConfigManager *pself) { CcDisplayConfigManagerDBus *self = CC_DISPLAY_CONFIG_MANAGER_DBUS (pself); if (!self->current_state) return NULL; return g_object_new (CC_TYPE_DISPLAY_CONFIG_DBUS, "state", self->current_state, "connection", self->connection, NULL); } static void got_current_state (GObject *object, GAsyncResult *result, gpointer data) { CcDisplayConfigManagerDBus *self; GVariant *variant; g_autoptr(GError) error = NULL; variant = g_dbus_connection_call_finish (G_DBUS_CONNECTION (object), result, &error); if (!variant) { if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) { self = CC_DISPLAY_CONFIG_MANAGER_DBUS (data); g_clear_pointer (&self->current_state, g_variant_unref); _cc_display_config_manager_emit_changed (CC_DISPLAY_CONFIG_MANAGER (data)); g_warning ("Error calling GetCurrentState: %s", error->message); } return; } self = CC_DISPLAY_CONFIG_MANAGER_DBUS (data); g_clear_pointer (&self->current_state, g_variant_unref); self->current_state = variant; _cc_display_config_manager_emit_changed (CC_DISPLAY_CONFIG_MANAGER (self)); } static void get_current_state (CcDisplayConfigManagerDBus *self) { g_dbus_connection_call (self->connection, "org.cinnamon.Muffin.DisplayConfig", "/org/cinnamon/Muffin/DisplayConfig", "org.cinnamon.Muffin.DisplayConfig", "GetCurrentState", NULL, NULL, G_DBUS_CALL_FLAGS_NO_AUTO_START, -1, self->cancellable, got_current_state, self); } static void monitors_changed (GDBusConnection *connection, const gchar *sender_name, const gchar *object_path, const gchar *interface_name, const gchar *signal_name, GVariant *parameters, gpointer data) { CcDisplayConfigManagerDBus *self = CC_DISPLAY_CONFIG_MANAGER_DBUS (data); get_current_state (self); } static void muffin_vanished_cb (GDBusConnection *connection, const gchar *name, gpointer user_data) { CcDisplayConfigManagerDBus *self = user_data; g_debug ("Muffin vanished"); g_clear_pointer (&self->current_state, g_variant_unref); _cc_display_config_manager_emit_changed (CC_DISPLAY_CONFIG_MANAGER (user_data)); } static void muffin_appeared_cb (GDBusConnection *connection, const gchar *name, const gchar *name_owner, gpointer user_data) { CcDisplayConfigManagerDBus *self = user_data; g_debug ("Muffin appeared"); get_current_state (self); } static void bus_gotten (GObject *object, GAsyncResult *result, gpointer data) { CcDisplayConfigManagerDBus *self; GDBusConnection *connection; g_autoptr(GError) error = NULL; connection = g_bus_get_finish (result, &error); if (!connection) { if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) { _cc_display_config_manager_emit_changed (CC_DISPLAY_CONFIG_MANAGER (data)); g_warning ("Error obtaining DBus connection: %s", error->message); } return; } self = CC_DISPLAY_CONFIG_MANAGER_DBUS (data); self->connection = connection; self->monitors_changed_id = g_dbus_connection_signal_subscribe (self->connection, "org.cinnamon.Muffin.DisplayConfig", "org.cinnamon.Muffin.DisplayConfig", "MonitorsChanged", "/org/cinnamon/Muffin/DisplayConfig", NULL, G_DBUS_SIGNAL_FLAGS_NONE, monitors_changed, self, NULL); self->muffin_watch_id = g_bus_watch_name_on_connection (self->connection, "org.cinnamon.Muffin.DisplayConfig", G_BUS_NAME_WATCHER_FLAGS_NONE, muffin_appeared_cb, muffin_vanished_cb, self, NULL); get_current_state (self); } static void cc_display_config_manager_dbus_init (CcDisplayConfigManagerDBus *self) { self->cancellable = g_cancellable_new (); g_bus_get (G_BUS_TYPE_SESSION, self->cancellable, bus_gotten, self); } static void cc_display_config_manager_dbus_finalize (GObject *object) { CcDisplayConfigManagerDBus *self = CC_DISPLAY_CONFIG_MANAGER_DBUS (object); g_cancellable_cancel (self->cancellable); g_clear_object (&self->cancellable); if (self->monitors_changed_id && self->connection) g_dbus_connection_signal_unsubscribe (self->connection, self->monitors_changed_id); if (self->muffin_watch_id && self->connection) g_bus_unwatch_name (self->muffin_watch_id); g_clear_object (&self->connection); g_clear_pointer (&self->current_state, g_variant_unref); G_OBJECT_CLASS (cc_display_config_manager_dbus_parent_class)->finalize (object); } static void cc_display_config_manager_dbus_class_init (CcDisplayConfigManagerDBusClass *klass) { GObjectClass *gobject_class = G_OBJECT_CLASS (klass); CcDisplayConfigManagerClass *parent_class = CC_DISPLAY_CONFIG_MANAGER_CLASS (klass); gobject_class->finalize = cc_display_config_manager_dbus_finalize; parent_class->get_current = cc_display_config_manager_dbus_get_current; } CcDisplayConfigManager * cc_display_config_manager_dbus_new (void) { return g_object_new (CC_TYPE_DISPLAY_CONFIG_MANAGER_DBUS, NULL); } cinnamon-control-center-6.2.0/panels/display/cc-display-settings.c0000664000175000017500000006654614632072346024212 0ustar fabiofabio/* cc-display-settings.c * * Copyright (C) 2007, 2008, 2018, 2019 Red Hat, Inc. * Copyright (C) 2013 Intel, Inc. * * Written by: Benjamin Berg * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ #include #include #include "cc-display-settings.h" #include "cc-display-config.h" #define MAX_SCALE_BUTTONS 6 #define WID(s) GTK_WIDGET (gtk_builder_get_object (self->builder, s)) struct _CcDisplaySettings { GtkBin parent_instance; gboolean updating; guint idle_udpate_id; gboolean has_accelerometer; CcDisplayConfig *config; CcDisplayMonitor *selected_output; GtkListStore *orientation_list; GtkListStore *refresh_rate_list; GtkListStore *resolution_list; GtkBuilder *builder; GtkWidget *orientation_combo; GtkWidget *refresh_rate_combo; GtkWidget *resolution_combo; GtkWidget *scale_bbox; GtkWidget *scale_row; GtkWidget *scale_label; GtkWidget *underscanning_row; GtkWidget *underscanning_switch; GSettings *muffin_settings; }; typedef struct _CcDisplaySettings CcDisplaySettings; enum { PROP_0, PROP_HAS_ACCELEROMETER, PROP_CONFIG, PROP_SELECTED_OUTPUT, PROP_LAST }; G_DEFINE_TYPE (CcDisplaySettings, cc_display_settings, GTK_TYPE_BIN) static GParamSpec *props[PROP_LAST]; static void on_scale_btn_active_changed_cb (GtkWidget *widget, GParamSpec *pspec, CcDisplaySettings *self); static gboolean should_show_rotation (CcDisplaySettings *self) { gboolean supports_rotation; supports_rotation = cc_display_monitor_supports_rotation (self->selected_output, CC_DISPLAY_ROTATION_90 | CC_DISPLAY_ROTATION_180 | CC_DISPLAY_ROTATION_270); /* Doesn't support rotation at all */ if (!supports_rotation) return FALSE; /* We can always rotate displays that aren't builtin */ if (!cc_display_monitor_is_builtin (self->selected_output)) return TRUE; /* Only offer rotation if there's no accelerometer */ return !self->has_accelerometer; } static const gchar * string_for_rotation (CcDisplayRotation rotation) { switch (rotation) { case CC_DISPLAY_ROTATION_NONE: case CC_DISPLAY_ROTATION_180_FLIPPED: return C_("Display rotation", "Landscape"); case CC_DISPLAY_ROTATION_90: case CC_DISPLAY_ROTATION_270_FLIPPED: return C_("Display rotation", "Portrait Right"); case CC_DISPLAY_ROTATION_270: case CC_DISPLAY_ROTATION_90_FLIPPED: return C_("Display rotation", "Portrait Left"); case CC_DISPLAY_ROTATION_180: case CC_DISPLAY_ROTATION_FLIPPED: return C_("Display rotation", "Landscape (flipped)"); } return ""; } static const gchar * make_aspect_string (gint width, gint height) { int ratio; const gchar *aspect = NULL; /* We use a number of Unicode characters below: * ∶ is U+2236 RATIO *   is U+2009 THIN SPACE, * Ɨ is U+00D7 MULTIPLICATION SIGN */ if (width && height) { if (width > height) ratio = width * 10 / height; else ratio = height * 10 / width; switch (ratio) { case 13: aspect = "4∶3"; break; case 16: aspect = "16∶10"; break; case 17: aspect = "16∶9"; break; case 23: aspect = "21∶9"; break; case 12: aspect = "5∶4"; break; /* This catches 1.5625 as well (1600x1024) when maybe it shouldn't. */ case 15: aspect = "3∶2"; break; case 18: aspect = "9∶5"; break; case 10: aspect = "1∶1"; break; } } return aspect; } static char * make_resolution_string (CcDisplayMode *mode) { const char *interlaced = cc_display_mode_is_interlaced (mode) ? "i" : ""; const char *aspect; int width, height; cc_display_mode_get_resolution (mode, &width, &height); aspect = make_aspect_string (width, height); if (aspect != NULL) return g_strdup_printf ("%d × %d%s (%s)", width, height, interlaced, aspect); else return g_strdup_printf ("%d × %d%s", width, height, interlaced); } static gchar * get_frequency_string (CcDisplayMode *mode) { return g_strdup_printf (_("%.2lf Hz"), cc_display_mode_get_freq_f (mode)); } static double round_scale_for_ui (double scale) { /* Keep in sync with mutter */ return round (scale*4)/4; } static gchar * make_scale_string (gdouble scale) { return g_strdup_printf ("%d %%", (int) (round_scale_for_ui (scale)*100)); } static gint sort_modes_by_area_desc (CcDisplayMode *a, CcDisplayMode *b) { gint wa, ha, wb, hb; gint res; cc_display_mode_get_resolution (a, &wa, &ha); cc_display_mode_get_resolution (b, &wb, &hb); /* Prefer wide screen if the size is equal */ res = wb*hb - wa*ha; if (res == 0) return wb - wa; return res; } static gboolean cc_display_settings_rebuild_ui (CcDisplaySettings *self) { GList *modes; GList *item; gint width, height; CcDisplayMode *current_mode; GtkRadioButton *group = NULL; gint buttons = 0; const gdouble *scales, *scale; self->idle_udpate_id = 0; if (!self->config || !self->selected_output) { gtk_widget_set_sensitive (self->orientation_combo, FALSE); gtk_widget_set_sensitive (self->refresh_rate_combo, FALSE); gtk_widget_set_sensitive (self->resolution_combo, FALSE); gtk_widget_set_sensitive (self->scale_row, FALSE); gtk_widget_set_sensitive (self->underscanning_row, FALSE); return G_SOURCE_REMOVE; } g_object_freeze_notify ((GObject*) self->orientation_combo); g_object_freeze_notify ((GObject*) self->refresh_rate_combo); g_object_freeze_notify ((GObject*) self->resolution_combo); g_object_freeze_notify ((GObject*) self->underscanning_switch); cc_display_monitor_get_geometry (self->selected_output, NULL, NULL, &width, &height); /* Selecte the first mode we can find if the monitor is disabled. */ current_mode = cc_display_monitor_get_mode (self->selected_output); if (current_mode == NULL) current_mode = cc_display_monitor_get_preferred_mode (self->selected_output); if (current_mode == NULL) { modes = cc_display_monitor_get_modes (self->selected_output); /* Lets assume that a monitor always has at least one mode. */ g_assert (modes); current_mode = CC_DISPLAY_MODE (modes->data); } if (should_show_rotation (self)) { guint i; CcDisplayRotation rotations[] = { CC_DISPLAY_ROTATION_NONE, CC_DISPLAY_ROTATION_90, CC_DISPLAY_ROTATION_270, CC_DISPLAY_ROTATION_180 }; gtk_widget_set_sensitive (self->orientation_combo, TRUE); gtk_list_store_clear (self->orientation_list); for (i = 0; i < G_N_ELEMENTS (rotations); i++) { if (!cc_display_monitor_supports_rotation (self->selected_output, rotations[i])) continue; GtkTreeIter iter; gtk_list_store_append (self->orientation_list, &iter); gtk_list_store_set (self->orientation_list, &iter, 0, string_for_rotation (rotations[i]), 1, rotations[i], -1); if (cc_display_monitor_get_rotation (self->selected_output) == rotations[i]) gtk_combo_box_set_active_iter (GTK_COMBO_BOX (self->orientation_combo), &iter); } } else { gtk_widget_set_sensitive (self->orientation_combo, FALSE); } /* Only show refresh rate if we are not in cloning mode. */ if (!cc_display_config_is_cloning (self->config)) { GList *item; gdouble freq; freq = cc_display_mode_get_freq_f (current_mode); modes = g_list_copy (cc_display_monitor_get_modes (self->selected_output)); modes = g_list_reverse (modes); gtk_list_store_clear (self->refresh_rate_list); for (item = modes; item != NULL; item = item->next) { gint w, h; CcDisplayMode *mode = CC_DISPLAY_MODE (item->data); cc_display_mode_get_resolution (mode, &w, &h); if (w != width || h != height) continue; GtkTreeIter iter; gtk_list_store_append (self->refresh_rate_list, &iter); gchar *rate_string = get_frequency_string (mode); gtk_list_store_set (self->refresh_rate_list, &iter, 0, rate_string, 1, mode, -1); g_free (rate_string); /* At some point we used to filter very close resolutions, * but we don't anymore these days. */ if (freq == cc_display_mode_get_freq_f (mode)) gtk_combo_box_set_active_iter (GTK_COMBO_BOX (self->refresh_rate_combo), &iter); } g_list_free (modes); /* Show if we have more than one frequency to choose from. */ gtk_widget_set_sensitive (self->refresh_rate_combo, gtk_tree_model_iter_n_children (GTK_TREE_MODEL (self->refresh_rate_list), NULL) > 1); } else { gtk_widget_set_sensitive (self->refresh_rate_combo, FALSE); } if (cc_display_config_is_cloning (self->config)) modes = g_list_copy (cc_display_config_get_cloning_modes (self->config)); else modes = g_list_copy (cc_display_monitor_get_modes (self->selected_output)); gtk_list_store_clear (self->resolution_list); modes = g_list_reverse (modes); GList *unique_resolutions = g_list_prepend (NULL, current_mode); GList *l; for (item = modes; item != NULL; item = item->next) { gint w, h; CcDisplayMode *mode = CC_DISPLAY_MODE (item->data); /* Exclude unusable low resolutions */ if (!cc_display_config_is_scaled_mode_valid (self->config, mode, 1.0)) continue; cc_display_mode_get_resolution (mode, &w, &h); gint ins = 0; for (l = unique_resolutions; l != NULL; l = l->next, ins++) { CcDisplayMode *m = l->data; gint cmp; cmp = sort_modes_by_area_desc (mode, m); if (cmp < 0) break; /* Don't insert if it is already in the list */ if (cmp == 0) { ins = -1; break; } } if (ins >= 0) { unique_resolutions = g_list_insert (unique_resolutions, mode, ins); } } g_list_free (modes); for (l = unique_resolutions; l != NULL; l = l->next) { GtkTreeIter iter; gchar *resolution_string; gtk_list_store_append (self->resolution_list, &iter); resolution_string = make_resolution_string (l->data); gtk_list_store_set (self->resolution_list, &iter, 0, resolution_string, 1, l->data, -1); g_free (resolution_string); if (current_mode == l->data) { gtk_combo_box_set_active_iter (GTK_COMBO_BOX (self->resolution_combo), &iter); } } gtk_widget_set_sensitive (self->resolution_combo, gtk_tree_model_iter_n_children (GTK_TREE_MODEL (self->resolution_list), NULL) > 1); g_list_free (unique_resolutions); /* Scale row is usually shown. */ gtk_container_foreach (GTK_CONTAINER (self->scale_bbox), (GtkCallback) gtk_widget_destroy, NULL); scales = cc_display_mode_get_supported_scales (current_mode); for (scale = scales; *scale != 0.0; scale++) { g_autofree gchar *scale_str = NULL; GtkWidget *scale_btn; if (!cc_display_config_is_scaled_mode_valid (self->config, current_mode, *scale) && cc_display_monitor_get_scale (self->selected_output) != *scale) continue; scale_str = make_scale_string (*scale); scale_btn = gtk_radio_button_new_with_label_from_widget (group, scale_str); if (!group) group = GTK_RADIO_BUTTON (scale_btn); gtk_toggle_button_set_mode (GTK_TOGGLE_BUTTON (scale_btn), FALSE); g_object_set_data_full (G_OBJECT (scale_btn), "scale", g_memdup (scale, sizeof (gdouble)), g_free); gtk_widget_show (scale_btn); gtk_container_add (GTK_CONTAINER (self->scale_bbox), scale_btn); g_signal_connect_object (scale_btn, "notify::active", G_CALLBACK (on_scale_btn_active_changed_cb), self, 0); if (cc_display_monitor_get_scale (self->selected_output) == *scale) gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (scale_btn), TRUE); buttons += 1; if (buttons >= MAX_SCALE_BUTTONS) break; } gtk_widget_set_sensitive (self->scale_row, buttons > 1); if (cc_display_config_get_fractional_scaling (self->config)) { gtk_label_set_text (GTK_LABEL (self->scale_label), _("Monitor scale")); } else { gtk_label_set_text (GTK_LABEL (self->scale_label), _("User interface scale")); } gtk_widget_set_visible (self->underscanning_row, cc_display_monitor_supports_underscanning (self->selected_output) && !cc_display_config_is_cloning (self->config)); gtk_switch_set_active (GTK_SWITCH (self->underscanning_switch), cc_display_monitor_get_underscanning (self->selected_output)); self->updating = TRUE; g_object_thaw_notify ((GObject*) self->orientation_combo); g_object_thaw_notify ((GObject*) self->refresh_rate_combo); g_object_thaw_notify ((GObject*) self->resolution_combo); g_object_thaw_notify ((GObject*) self->underscanning_switch); self->updating = FALSE; return G_SOURCE_REMOVE; } static void on_output_changed_cb (CcDisplaySettings *self, GParamSpec *pspec, CcDisplayMonitor *output) { /* Do this frmo an idle handler, because otherwise we may create an * infinite loop triggering the notify::selected-index from the * combo rows. */ if (self->idle_udpate_id) return; self->idle_udpate_id = g_idle_add ((GSourceFunc) cc_display_settings_rebuild_ui, self); } static void on_orientation_selection_changed_cb (GtkComboBox *box, GParamSpec *pspec, CcDisplaySettings *panel) { if (panel->updating) return; GtkTreeIter iter; if (gtk_combo_box_get_active_iter (box, &iter)) { CcDisplayRotation rotation; gtk_tree_model_get (GTK_TREE_MODEL (panel->orientation_list), &iter, 1, &rotation, -1); cc_display_monitor_set_rotation (panel->selected_output, rotation); g_signal_emit_by_name (G_OBJECT (panel), "updated", panel->selected_output); } } static void on_refresh_rate_selection_changed_cb (GtkComboBox *box, GParamSpec *pspec, CcDisplaySettings *panel) { GtkTreeIter iter; if (panel->updating) return; if (gtk_combo_box_get_active_iter (box, &iter)) { g_autoptr(CcDisplayMode) mode = NULL; gtk_tree_model_get (GTK_TREE_MODEL (panel->refresh_rate_list), &iter, 1, &mode, -1); cc_display_monitor_set_mode (panel->selected_output, mode); g_signal_emit_by_name (G_OBJECT (panel), "updated", panel->selected_output); } } static void on_resolution_selection_changed_cb (GtkComboBox *box, GParamSpec *pspec, CcDisplaySettings *panel) { GtkTreeIter iter; if (panel->updating) return; if (gtk_combo_box_get_active_iter (box, &iter)) { g_autoptr(CcDisplayMode) mode = NULL; gtk_tree_model_get (GTK_TREE_MODEL (panel->resolution_list), &iter, 1, &mode, -1); /* This is the only row that can be changed when in cloning mode. */ if (!cc_display_config_is_cloning (panel->config)) cc_display_monitor_set_mode (panel->selected_output, mode); else cc_display_config_set_mode_on_all_outputs (panel->config, mode); g_signal_emit_by_name (G_OBJECT (panel), "updated", panel->selected_output); } } static void on_scale_btn_active_changed_cb (GtkWidget *widget, GParamSpec *pspec, CcDisplaySettings *self) { gdouble scale; if (self->updating) return; if (!gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget))) return; scale = *(gdouble*) g_object_get_data (G_OBJECT (widget), "scale"); cc_display_monitor_set_scale (self->selected_output, scale); g_signal_emit_by_name (G_OBJECT (self), "updated", self->selected_output); } static void on_underscanning_switch_active_changed_cb (GtkWidget *widget, GParamSpec *pspec, CcDisplaySettings *self) { if (self->updating) return; cc_display_monitor_set_underscanning (self->selected_output, gtk_switch_get_active (GTK_SWITCH (self->underscanning_switch))); g_signal_emit_by_name (G_OBJECT (self), "updated", self->selected_output); } static void cc_display_settings_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec) { CcDisplaySettings *self = CC_DISPLAY_SETTINGS (object); switch (prop_id) { case PROP_HAS_ACCELEROMETER: g_value_set_boolean (value, cc_display_settings_get_has_accelerometer (self)); break; case PROP_CONFIG: g_value_set_object (value, self->config); break; case PROP_SELECTED_OUTPUT: g_value_set_object (value, self->selected_output); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); } } static void cc_display_settings_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec) { CcDisplaySettings *self = CC_DISPLAY_SETTINGS (object); switch (prop_id) { case PROP_HAS_ACCELEROMETER: cc_display_settings_set_has_accelerometer (self, g_value_get_boolean (value)); break; case PROP_CONFIG: cc_display_settings_set_config (self, g_value_get_object (value)); break; case PROP_SELECTED_OUTPUT: cc_display_settings_set_selected_output (self, g_value_get_object (value)); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); } } static void cc_display_settings_finalize (GObject *object) { CcDisplaySettings *self = CC_DISPLAY_SETTINGS (object); g_clear_object (&self->config); g_clear_object (&self->orientation_list); g_clear_object (&self->refresh_rate_list); g_clear_object (&self->resolution_list); g_clear_object (&self->builder); if (self->idle_udpate_id) g_source_remove (self->idle_udpate_id); self->idle_udpate_id = 0; G_OBJECT_CLASS (cc_display_settings_parent_class)->finalize (object); } static void cc_display_settings_class_init (CcDisplaySettingsClass *klass) { GObjectClass *gobject_class = G_OBJECT_CLASS (klass); gobject_class->finalize = cc_display_settings_finalize; gobject_class->get_property = cc_display_settings_get_property; gobject_class->set_property = cc_display_settings_set_property; props[PROP_HAS_ACCELEROMETER] = g_param_spec_boolean ("has-accelerometer", "Has Accelerometer", "If an accelerometre is available for the builtin display", FALSE, G_PARAM_READWRITE | G_PARAM_EXPLICIT_NOTIFY | G_PARAM_STATIC_STRINGS); props[PROP_CONFIG] = g_param_spec_object ("config", "Display Config", "The display configuration to work with", CC_TYPE_DISPLAY_CONFIG, G_PARAM_READWRITE | G_PARAM_EXPLICIT_NOTIFY | G_PARAM_STATIC_STRINGS); props[PROP_SELECTED_OUTPUT] = g_param_spec_object ("selected-output", "Selected Output", "The output that is currently selected on the configuration", CC_TYPE_DISPLAY_MONITOR, G_PARAM_READWRITE | G_PARAM_EXPLICIT_NOTIFY | G_PARAM_STATIC_STRINGS); g_object_class_install_properties (gobject_class, PROP_LAST, props); g_signal_new ("updated", CC_TYPE_DISPLAY_SETTINGS, G_SIGNAL_RUN_LAST, 0, NULL, NULL, NULL, G_TYPE_NONE, 1, CC_TYPE_DISPLAY_MONITOR); } static void cc_display_settings_init (CcDisplaySettings *self) { self->builder = gtk_builder_new_from_resource ("/org/cinnamon/control-center/display/cc-display-settings.ui"); gtk_container_add (GTK_CONTAINER (self), WID ("display_settings_toplevel")); self->orientation_combo = WID ("orientation_combo"); self->refresh_rate_combo = WID ("refresh_rate_combo"); self->resolution_combo = WID ("resolution_combo"); self->scale_bbox = WID ("scale_bbox");; self->scale_row = WID ("scale_row"); self->scale_label = WID ("scale_label"); self->underscanning_row = WID ("underscanning_row"); self->underscanning_switch = WID ("underscanning_switch"); gtk_builder_add_callback_symbol (self->builder, "on_orientation_selection_changed_cb", G_CALLBACK (on_orientation_selection_changed_cb)); gtk_builder_add_callback_symbol (self->builder, "on_refresh_rate_selection_changed_cb", G_CALLBACK (on_refresh_rate_selection_changed_cb)); gtk_builder_add_callback_symbol (self->builder, "on_resolution_selection_changed_cb", G_CALLBACK (on_resolution_selection_changed_cb)); gtk_builder_add_callback_symbol (self->builder, "on_underscanning_switch_active_changed_cb", G_CALLBACK (on_underscanning_switch_active_changed_cb)); GtkCellRenderer *renderer; self->updating = TRUE; self->orientation_list = gtk_list_store_new (2, G_TYPE_STRING, G_TYPE_INT); gtk_combo_box_set_model (GTK_COMBO_BOX (self->orientation_combo), GTK_TREE_MODEL (self->orientation_list)); gtk_cell_layout_clear (GTK_CELL_LAYOUT (self->orientation_combo)); renderer = gtk_cell_renderer_text_new (); gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (self->orientation_combo), renderer, TRUE); gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (self->orientation_combo), renderer, "text", 0, NULL); gtk_cell_renderer_set_visible (renderer, TRUE); self->refresh_rate_list = gtk_list_store_new (2, G_TYPE_STRING, CC_TYPE_DISPLAY_MODE); gtk_combo_box_set_model (GTK_COMBO_BOX (self->refresh_rate_combo), GTK_TREE_MODEL (self->refresh_rate_list)); gtk_cell_layout_clear (GTK_CELL_LAYOUT (self->refresh_rate_combo)); renderer = gtk_cell_renderer_text_new (); gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (self->refresh_rate_combo), renderer, TRUE); gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (self->refresh_rate_combo), renderer, "text", 0, NULL); gtk_cell_renderer_set_visible (renderer, TRUE); self->resolution_list = gtk_list_store_new (2, G_TYPE_STRING, CC_TYPE_DISPLAY_MODE); gtk_combo_box_set_model (GTK_COMBO_BOX (self->resolution_combo), GTK_TREE_MODEL (self->resolution_list)); gtk_cell_layout_clear (GTK_CELL_LAYOUT (self->resolution_combo)); renderer = gtk_cell_renderer_text_new (); gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (self->resolution_combo), renderer, TRUE); gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (self->resolution_combo), renderer, "text", 0, NULL); gtk_cell_renderer_set_visible (renderer, TRUE); gtk_builder_connect_signals (self->builder, self); self->updating = FALSE; } CcDisplaySettings* cc_display_settings_new (void) { return g_object_new (CC_TYPE_DISPLAY_SETTINGS, NULL); } gboolean cc_display_settings_get_has_accelerometer (CcDisplaySettings *settings) { return settings->has_accelerometer; } void cc_display_settings_set_has_accelerometer (CcDisplaySettings *self, gboolean has_accelerometer) { self->has_accelerometer = has_accelerometer; cc_display_settings_rebuild_ui (self); g_object_notify_by_pspec (G_OBJECT (self), props[PROP_CONFIG]); } CcDisplayConfig* cc_display_settings_get_config (CcDisplaySettings *self) { return self->config; } void cc_display_settings_set_config (CcDisplaySettings *self, CcDisplayConfig *config) { const gchar *signals[] = { "rotation", "mode", "scale", "is-usable", "active" }; GList *outputs, *l; guint i; if (self->config) { outputs = cc_display_config_get_monitors (self->config); for (l = outputs; l; l = l->next) { CcDisplayMonitor *output = l->data; g_signal_handlers_disconnect_by_data (output, self); } } g_clear_object (&self->config); self->config = g_object_ref (config); /* Listen to all the signals */ if (self->config) { outputs = cc_display_config_get_monitors (self->config); for (l = outputs; l; l = l->next) { CcDisplayMonitor *output = l->data; for (i = 0; i < G_N_ELEMENTS (signals); ++i) g_signal_connect_object (output, signals[i], G_CALLBACK (on_output_changed_cb), self, G_CONNECT_SWAPPED); } } cc_display_settings_set_selected_output (self, NULL); g_object_notify_by_pspec (G_OBJECT (self), props[PROP_CONFIG]); } CcDisplayMonitor* cc_display_settings_get_selected_output (CcDisplaySettings *self) { return self->selected_output; } void cc_display_settings_set_selected_output (CcDisplaySettings *self, CcDisplayMonitor *output) { self->selected_output = output; cc_display_settings_rebuild_ui (self); g_object_notify_by_pspec (G_OBJECT (self), props[PROP_SELECTED_OUTPUT]); } cinnamon-control-center-6.2.0/panels/display/cc-display-settings.h0000664000175000017500000000363714632072346024207 0ustar fabiofabio/* -*- mode: c; style: linux -*- * * Copyright (C) 2019 Red Hat, Inc. * * Written by: Benjamin Berg * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ #pragma once #include #include "cc-display-config.h" G_BEGIN_DECLS #define CC_TYPE_DISPLAY_SETTINGS cc_display_settings_get_type () G_DECLARE_FINAL_TYPE (CcDisplaySettings, cc_display_settings, CC, DISPLAY_SETTINGS, GtkBin); CcDisplaySettings* cc_display_settings_new (void); gboolean cc_display_settings_get_has_accelerometer (CcDisplaySettings *settings); void cc_display_settings_set_has_accelerometer (CcDisplaySettings *settings, gboolean has_accelerometer); CcDisplayConfig* cc_display_settings_get_config (CcDisplaySettings *settings); void cc_display_settings_set_config (CcDisplaySettings *settings, CcDisplayConfig *config); CcDisplayMonitor* cc_display_settings_get_selected_output (CcDisplaySettings *settings); void cc_display_settings_set_selected_output (CcDisplaySettings *settings, CcDisplayMonitor *output); G_END_DECLS cinnamon-control-center-6.2.0/panels/display/cc-display-settings.ui0000664000175000017500000001751014632072346024370 0ustar fabiofabio True True vertical 6 True False False True 0 True False 6 12 True False Resolution 1 0 0 100 True False True 1 0 2 True False Refresh Rate 1 0 1 True False Rotation 1 0 2 100 True False True 1 2 2 100 True False True 1 1 2 100 True False True False center True True expand False True end 0 1 3 2 True False User interface scale 1 0 3 False True 1 True False 6 12 True False Adjust for TV 1 0 0 True True end center True 1 0 2 False True 2 cinnamon-control-center-6.2.0/panels/display/display.gresource.xml0000664000175000017500000000047514632072346024331 0ustar fabiofabio cc-display-panel.ui cc-display-settings.ui display-arrangement.css cinnamon-control-center-6.2.0/panels/display/cc-display-config.c0000664000175000017500000006122614632072346023605 0ustar fabiofabio/* * Copyright (C) 2016 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * */ #define MUFFIN_SCHEMA "org.cinnamon.muffin" #define MUFFIN_EXPERIMENTAL_FEATURES_KEY "experimental-features" #define MUFFIN_FEATURE_FRACTIONAL_SCALING_X11 "x11-randr-fractional-scaling" #define MUFFIN_FEATURE_FRACTIONAL_SCALING_WAYLAND "scale-monitor-framebuffer" #include #include #include #include "cc-display-config.h" #ifdef GDK_WINDOWING_WAYLAND #include #endif #ifdef GDK_WINDOWING_X11 #include #endif static const double known_diagonals[] = { 12.1, 13.3, 15.6 }; static char * diagonal_to_str (double d) { int i; for (i = 0; i < G_N_ELEMENTS (known_diagonals); i++) { double delta; delta = fabs(known_diagonals[i] - d); if (delta < 0.1) return g_strdup_printf ("%0.1lf\"", known_diagonals[i]); } return g_strdup_printf ("%d\"", (int) (d + 0.5)); } static char * make_display_size_string (int width_mm, int height_mm) { char *inches = NULL; if (width_mm > 0 && height_mm > 0) { double d = sqrt (width_mm * width_mm + height_mm * height_mm); inches = diagonal_to_str (d / 25.4); } return inches; } static char * make_output_ui_name (CcDisplayMonitor *output) { int width_mm, height_mm; g_autofree char *size = NULL; cc_display_monitor_get_physical_size (output, &width_mm, &height_mm); size = make_display_size_string (width_mm, height_mm); if (size) return g_strdup_printf ("%s (%s)", cc_display_monitor_get_display_name (output), size); else return g_strdup_printf ("%s", cc_display_monitor_get_display_name (output)); } G_DEFINE_TYPE (CcDisplayMode, cc_display_mode, G_TYPE_OBJECT) static void cc_display_mode_init (CcDisplayMode *self) { } static void cc_display_mode_class_init (CcDisplayModeClass *klass) { } void cc_display_mode_get_resolution (CcDisplayMode *self, int *w, int *h) { return CC_DISPLAY_MODE_GET_CLASS (self)->get_resolution (self, w, h); } const double * cc_display_mode_get_supported_scales (CcDisplayMode *self) { return CC_DISPLAY_MODE_GET_CLASS (self)->get_supported_scales (self); } double cc_display_mode_get_preferred_scale (CcDisplayMode *self) { return CC_DISPLAY_MODE_GET_CLASS (self)->get_preferred_scale (self); } gboolean cc_display_mode_is_interlaced (CcDisplayMode *self) { return CC_DISPLAY_MODE_GET_CLASS (self)->is_interlaced (self); } int cc_display_mode_get_freq (CcDisplayMode *self) { return CC_DISPLAY_MODE_GET_CLASS (self)->get_freq (self); } double cc_display_mode_get_freq_f (CcDisplayMode *self) { return CC_DISPLAY_MODE_GET_CLASS (self)->get_freq_f (self); } struct _CcDisplayMonitorPrivate { int ui_number; gchar *ui_name; gchar *ui_number_name; gboolean is_usable; GdkRectangle disabled_rect; }; typedef struct _CcDisplayMonitorPrivate CcDisplayMonitorPrivate; G_DEFINE_TYPE_WITH_PRIVATE (CcDisplayMonitor, cc_display_monitor, G_TYPE_OBJECT) static void cc_display_monitor_init (CcDisplayMonitor *self) { CcDisplayMonitorPrivate *priv = cc_display_monitor_get_instance_private (self); priv->ui_number = 0; priv->ui_name = NULL; priv->ui_number_name = NULL; priv->is_usable = TRUE; } static void cc_display_monitor_finalize (GObject *object) { CcDisplayMonitor *self = CC_DISPLAY_MONITOR (object); CcDisplayMonitorPrivate *priv = cc_display_monitor_get_instance_private (self); g_clear_pointer (&priv->ui_name, g_free); g_clear_pointer (&priv->ui_number_name, g_free); G_OBJECT_CLASS (cc_display_monitor_parent_class)->finalize (object); } static void cc_display_monitor_class_init (CcDisplayMonitorClass *klass) { GObjectClass *gobject_class = G_OBJECT_CLASS (klass); gobject_class->finalize = cc_display_monitor_finalize; g_signal_new ("rotation", CC_TYPE_DISPLAY_MONITOR, G_SIGNAL_RUN_LAST, 0, NULL, NULL, NULL, G_TYPE_NONE, 0); g_signal_new ("mode", CC_TYPE_DISPLAY_MONITOR, G_SIGNAL_RUN_LAST, 0, NULL, NULL, NULL, G_TYPE_NONE, 0); g_signal_new ("primary", CC_TYPE_DISPLAY_MONITOR, G_SIGNAL_RUN_LAST, 0, NULL, NULL, NULL, G_TYPE_NONE, 0); g_signal_new ("active", CC_TYPE_DISPLAY_MONITOR, G_SIGNAL_RUN_LAST, 0, NULL, NULL, NULL, G_TYPE_NONE, 0); g_signal_new ("scale", CC_TYPE_DISPLAY_MONITOR, G_SIGNAL_RUN_LAST, 0, NULL, NULL, NULL, G_TYPE_NONE, 0); g_signal_new ("position-changed", CC_TYPE_DISPLAY_MONITOR, G_SIGNAL_RUN_LAST, 0, NULL, NULL, NULL, G_TYPE_NONE, 0); g_signal_new ("is-usable", CC_TYPE_DISPLAY_MONITOR, G_SIGNAL_RUN_LAST, 0, NULL, NULL, NULL, G_TYPE_NONE, 0); } const char * cc_display_monitor_get_display_name (CcDisplayMonitor *self) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->get_display_name (self); } const char * cc_display_monitor_get_connector_name (CcDisplayMonitor *self) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->get_connector_name (self); } gboolean cc_display_monitor_is_builtin (CcDisplayMonitor *self) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->is_builtin (self); } gboolean cc_display_monitor_is_primary (CcDisplayMonitor *self) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->is_primary (self); } void cc_display_monitor_set_primary (CcDisplayMonitor *self, gboolean primary) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->set_primary (self, primary); } gboolean cc_display_monitor_is_active (CcDisplayMonitor *self) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->is_active (self); } void cc_display_monitor_set_active (CcDisplayMonitor *self, gboolean active) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->set_active (self, active); } CcDisplayRotation cc_display_monitor_get_rotation (CcDisplayMonitor *self) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->get_rotation (self); } void cc_display_monitor_set_rotation (CcDisplayMonitor *self, CcDisplayRotation rotation) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->set_rotation (self, rotation); } gboolean cc_display_monitor_supports_rotation (CcDisplayMonitor *self, CcDisplayRotation r) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->supports_rotation (self, r); } void cc_display_monitor_get_physical_size (CcDisplayMonitor *self, int *w, int *h) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->get_physical_size (self, w, h); } void cc_display_monitor_get_geometry (CcDisplayMonitor *self, int *x, int *y, int *w, int *h) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->get_geometry (self, x, y, w, h); } void cc_display_monitor_get_disabled_geometry (CcDisplayMonitor *self, int *x1, int *y1, int *x2, int *y2) { CcDisplayMonitorPrivate *priv = cc_display_monitor_get_instance_private (self); *x1 = priv->disabled_rect.x; *y1 = priv->disabled_rect.y; *x2 = priv->disabled_rect.x + priv->disabled_rect.width; *y2 = priv->disabled_rect.y + priv->disabled_rect.height; } void cc_display_monitor_set_disabled_geometry (CcDisplayMonitor *self, int x, int y, int w, int h) { CcDisplayMonitorPrivate *priv = cc_display_monitor_get_instance_private (self); priv->disabled_rect.x = x; priv->disabled_rect.y = y; priv->disabled_rect.width = w; priv->disabled_rect.height = h; } CcDisplayMode * cc_display_monitor_get_mode (CcDisplayMonitor *self) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->get_mode (self); } CcDisplayMode * cc_display_monitor_get_preferred_mode (CcDisplayMonitor *self) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->get_preferred_mode (self); } guint32 cc_display_monitor_get_id (CcDisplayMonitor *self) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->get_id (self); } GList * cc_display_monitor_get_modes (CcDisplayMonitor *self) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->get_modes (self); } gboolean cc_display_monitor_supports_underscanning (CcDisplayMonitor *self) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->supports_underscanning (self); } gboolean cc_display_monitor_get_underscanning (CcDisplayMonitor *self) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->get_underscanning (self); } void cc_display_monitor_set_underscanning (CcDisplayMonitor *self, gboolean underscanning) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->set_underscanning (self, underscanning); } void cc_display_monitor_set_mode (CcDisplayMonitor *self, CcDisplayMode *m) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->set_mode (self, m); } void cc_display_monitor_set_position (CcDisplayMonitor *self, int x, int y) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->set_position (self, x, y); } double cc_display_monitor_get_scale (CcDisplayMonitor *self) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->get_scale (self); } void cc_display_monitor_set_scale (CcDisplayMonitor *self, double s) { return CC_DISPLAY_MONITOR_GET_CLASS (self)->set_scale (self, s); } gboolean cc_display_monitor_is_useful (CcDisplayMonitor *self) { CcDisplayMonitorPrivate *priv = cc_display_monitor_get_instance_private (self); return priv->is_usable && cc_display_monitor_is_active (self); } gboolean cc_display_monitor_is_usable (CcDisplayMonitor *self) { CcDisplayMonitorPrivate *priv = cc_display_monitor_get_instance_private (self); return priv->is_usable; } void cc_display_monitor_set_usable (CcDisplayMonitor *self, gboolean is_usable) { CcDisplayMonitorPrivate *priv = cc_display_monitor_get_instance_private (self); priv->is_usable = is_usable; g_signal_emit_by_name (self, "is-usable"); } gint cc_display_monitor_get_ui_number (CcDisplayMonitor *self) { CcDisplayMonitorPrivate *priv = cc_display_monitor_get_instance_private (self); return priv->ui_number; } const char * cc_display_monitor_get_ui_name (CcDisplayMonitor *self) { CcDisplayMonitorPrivate *priv = cc_display_monitor_get_instance_private (self); return priv->ui_name; } const char * cc_display_monitor_get_ui_number_name (CcDisplayMonitor *self) { CcDisplayMonitorPrivate *priv = cc_display_monitor_get_instance_private (self); return priv->ui_number_name; } char * cc_display_monitor_dup_ui_number_name (CcDisplayMonitor *self) { CcDisplayMonitorPrivate *priv = cc_display_monitor_get_instance_private (self); return g_strdup (priv->ui_number_name); } static void cc_display_monitor_set_ui_info (CcDisplayMonitor *self, gint ui_number, gchar *ui_name) { CcDisplayMonitorPrivate *priv = cc_display_monitor_get_instance_private (self); priv->ui_number = ui_number; g_free (priv->ui_name); priv->ui_name = ui_name; priv->ui_number_name = g_strdup_printf ("%d\u2003%s", ui_number, ui_name); } struct _CcDisplayConfigPrivate { GList *ui_sorted_monitors; GSettings *muffin_settings; gboolean fractional_scaling; gboolean fractional_scaling_pending_disable; }; typedef struct _CcDisplayConfigPrivate CcDisplayConfigPrivate; G_DEFINE_TYPE_WITH_PRIVATE (CcDisplayConfig, cc_display_config, G_TYPE_OBJECT) static const char * get_fractional_scaling_key (void) { GdkDisplay *display; display = gdk_display_get_default (); #if defined(GDK_WINDOWING_X11) if (GDK_IS_X11_DISPLAY (display)) return MUFFIN_FEATURE_FRACTIONAL_SCALING_X11; #endif /* GDK_WINDOWING_X11 */ #if defined(GDK_WINDOWING_WAYLAND) if (GDK_IS_WAYLAND_DISPLAY (display)) return MUFFIN_FEATURE_FRACTIONAL_SCALING_WAYLAND; #endif /* GDK_WINDOWING_WAYLAND */ g_return_val_if_reached (NULL); } static gboolean get_fractional_scaling_active (CcDisplayConfig *self) { CcDisplayConfigPrivate *priv = cc_display_config_get_instance_private (self); g_auto(GStrv) features = NULL; const char *key = get_fractional_scaling_key (); g_return_val_if_fail (key, FALSE); features = g_settings_get_strv (priv->muffin_settings, MUFFIN_EXPERIMENTAL_FEATURES_KEY); return g_strv_contains ((const gchar **) features, key); } static void set_fractional_scaling_active (CcDisplayConfig *self, gboolean enable) { CcDisplayConfigPrivate *priv = cc_display_config_get_instance_private (self); g_auto(GStrv) existing_features = NULL; gboolean have_fractional_scaling = FALSE; g_autoptr(GVariantBuilder) builder = NULL; const char *key = get_fractional_scaling_key (); /* Add or remove the fractional scaling feature from muffin */ existing_features = g_settings_get_strv (priv->muffin_settings, MUFFIN_EXPERIMENTAL_FEATURES_KEY); builder = g_variant_builder_new (G_VARIANT_TYPE ("as")); for (int i = 0; existing_features[i] != NULL; i++) { if (g_strcmp0 (existing_features[i], key) == 0) { if (enable) have_fractional_scaling = TRUE; else continue; } g_variant_builder_add (builder, "s", existing_features[i]); } if (enable && !have_fractional_scaling && key) g_variant_builder_add (builder, "s", key); g_settings_set_value (priv->muffin_settings, MUFFIN_EXPERIMENTAL_FEATURES_KEY, g_variant_builder_end (builder)); } static void cc_display_config_init (CcDisplayConfig *self) { CcDisplayConfigPrivate *priv = cc_display_config_get_instance_private (self); priv->ui_sorted_monitors = NULL; /* No need to connect to the setting, as we'll get notified by mutter */ priv->muffin_settings = g_settings_new (MUFFIN_SCHEMA); priv->fractional_scaling = get_fractional_scaling_active (self); } static void cc_display_config_constructed (GObject *object) { CcDisplayConfig *self = CC_DISPLAY_CONFIG (object); CcDisplayConfigPrivate *priv = cc_display_config_get_instance_private (self); GList *monitors = cc_display_config_get_monitors (self); GList *item; gint ui_number = 1; for (item = monitors; item != NULL; item = item->next) { CcDisplayMonitor *monitor = item->data; if (cc_display_monitor_is_builtin (monitor)) priv->ui_sorted_monitors = g_list_prepend (priv->ui_sorted_monitors, monitor); else priv->ui_sorted_monitors = g_list_append (priv->ui_sorted_monitors, monitor); } for (item = priv->ui_sorted_monitors; item != NULL; item = item->next) { CcDisplayMonitor *monitor = item->data; char *ui_name; ui_name = make_output_ui_name (monitor); cc_display_monitor_set_ui_info (monitor, ui_number, ui_name); ui_number += 1; } } static void cc_display_config_finalize (GObject *object) { CcDisplayConfig *self = CC_DISPLAY_CONFIG (object); CcDisplayConfigPrivate *priv = cc_display_config_get_instance_private (self); g_list_free (priv->ui_sorted_monitors); g_clear_object (&priv->muffin_settings); G_OBJECT_CLASS (cc_display_config_parent_class)->finalize (object); } static void cc_display_config_class_init (CcDisplayConfigClass *klass) { GObjectClass *gobject_class = G_OBJECT_CLASS (klass); g_signal_new ("primary", CC_TYPE_DISPLAY_CONFIG, G_SIGNAL_RUN_LAST, 0, NULL, NULL, NULL, G_TYPE_NONE, 0); gobject_class->constructed = cc_display_config_constructed; gobject_class->finalize = cc_display_config_finalize; } GList * cc_display_config_get_monitors (CcDisplayConfig *self) { g_return_val_if_fail (CC_IS_DISPLAY_CONFIG (self), NULL); return CC_DISPLAY_CONFIG_GET_CLASS (self)->get_monitors (self); } GList * cc_display_config_get_ui_sorted_monitors (CcDisplayConfig *self) { CcDisplayConfigPrivate *priv = cc_display_config_get_instance_private (self); g_return_val_if_fail (CC_IS_DISPLAY_CONFIG (self), NULL); return priv->ui_sorted_monitors; } int cc_display_config_count_useful_monitors (CcDisplayConfig *self) { CcDisplayConfigPrivate *priv = cc_display_config_get_instance_private (self); GList *outputs, *l; guint count = 0; g_return_val_if_fail (CC_IS_DISPLAY_CONFIG (self), 0); outputs = priv->ui_sorted_monitors; for (l = outputs; l != NULL; l = l->next) { CcDisplayMonitor *output = l->data; if (!cc_display_monitor_is_useful (output)) continue; else count++; } return count; } gboolean cc_display_config_is_applicable (CcDisplayConfig *self) { g_return_val_if_fail (CC_IS_DISPLAY_CONFIG (self), FALSE); return CC_DISPLAY_CONFIG_GET_CLASS (self)->is_applicable (self); } void cc_display_config_set_mode_on_all_outputs (CcDisplayConfig *config, CcDisplayMode *mode) { GList *outputs, *l; g_return_if_fail (CC_IS_DISPLAY_CONFIG (config)); outputs = cc_display_config_get_monitors (config); for (l = outputs; l; l = l->next) { CcDisplayMonitor *output = l->data; cc_display_monitor_set_mode (output, mode); cc_display_monitor_set_position (output, 0, 0); } } gboolean cc_display_config_equal (CcDisplayConfig *self, CcDisplayConfig *other) { CcDisplayConfigPrivate *spriv = cc_display_config_get_instance_private (self); CcDisplayConfigPrivate *opriv = cc_display_config_get_instance_private (other); g_return_val_if_fail (CC_IS_DISPLAY_CONFIG (self), FALSE); g_return_val_if_fail (CC_IS_DISPLAY_CONFIG (other), FALSE); if (spriv->fractional_scaling_pending_disable != opriv->fractional_scaling_pending_disable) return FALSE; return CC_DISPLAY_CONFIG_GET_CLASS (self)->equal (self, other); } gboolean cc_display_config_apply (CcDisplayConfig *self, GError **error) { CcDisplayConfigPrivate *priv = cc_display_config_get_instance_private (self); if (!CC_IS_DISPLAY_CONFIG (self)) { g_warning ("Cannot apply invalid configuration"); g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED, "Cannot apply invalid configuration"); return FALSE; } if (priv->fractional_scaling_pending_disable) { set_fractional_scaling_active (self, FALSE); priv->fractional_scaling_pending_disable = FALSE; } return CC_DISPLAY_CONFIG_GET_CLASS (self)->apply (self, error); } gboolean cc_display_config_is_cloning (CcDisplayConfig *self) { g_return_val_if_fail (CC_IS_DISPLAY_CONFIG (self), FALSE); return CC_DISPLAY_CONFIG_GET_CLASS (self)->is_cloning (self); } void cc_display_config_set_cloning (CcDisplayConfig *self, gboolean clone) { g_return_if_fail (CC_IS_DISPLAY_CONFIG (self)); return CC_DISPLAY_CONFIG_GET_CLASS (self)->set_cloning (self, clone); } GList * cc_display_config_get_cloning_modes (CcDisplayConfig *self) { g_return_val_if_fail (CC_IS_DISPLAY_CONFIG (self), NULL); return CC_DISPLAY_CONFIG_GET_CLASS (self)->get_cloning_modes (self); } gboolean cc_display_config_is_layout_logical (CcDisplayConfig *self) { g_return_val_if_fail (CC_IS_DISPLAY_CONFIG (self), FALSE); return CC_DISPLAY_CONFIG_GET_CLASS (self)->is_layout_logical (self); } void cc_display_config_set_minimum_size (CcDisplayConfig *self, int width, int height) { g_return_if_fail (CC_IS_DISPLAY_CONFIG (self)); CC_DISPLAY_CONFIG_GET_CLASS (self)->set_minimum_size (self, width, height); } gint cc_display_config_get_legacy_ui_scale (CcDisplayConfig *self) { return CC_DISPLAY_CONFIG_GET_CLASS (self)->get_legacy_ui_scale (self); } static gboolean scale_value_is_fractional (double scale) { return (int) scale != scale; } gboolean cc_display_config_is_scaled_mode_valid (CcDisplayConfig *self, CcDisplayMode *mode, double scale) { CcDisplayConfigPrivate *priv = cc_display_config_get_instance_private (self); g_return_val_if_fail (CC_IS_DISPLAY_CONFIG (self), FALSE); g_return_val_if_fail (CC_IS_DISPLAY_MODE (mode), FALSE); if (priv->fractional_scaling_pending_disable && scale_value_is_fractional (scale)) return FALSE; return CC_DISPLAY_CONFIG_GET_CLASS (self)->is_scaled_mode_valid (self, mode, scale); } gboolean cc_display_config_layout_use_ui_scale (CcDisplayConfig *self) { return CC_DISPLAY_CONFIG_GET_CLASS (self)->layout_use_ui_scale (self); } double cc_display_config_get_maximum_scaling (CcDisplayConfig *self) { GList *outputs, *l; double max_scale = 1.0; outputs = cc_display_config_get_monitors (self); for (l = outputs; l; l = l->next) { CcDisplayMonitor *output = l->data; if (!cc_display_monitor_is_useful (output)) continue; max_scale = MAX (max_scale, cc_display_monitor_get_scale (output)); } return max_scale; } static gboolean set_monitors_scaling_to_preferred_integers (CcDisplayConfig *self) { GList *l; gboolean any_changed = FALSE; for (l = cc_display_config_get_monitors (self); l; l = l->next) { CcDisplayMonitor *monitor = l->data; gdouble monitor_scale = cc_display_monitor_get_scale (monitor); if (scale_value_is_fractional (monitor_scale)) { CcDisplayMode *preferred_mode; double preferred_scale; double *saved_scale; preferred_mode = cc_display_monitor_get_preferred_mode (monitor); preferred_scale = cc_display_mode_get_preferred_scale (preferred_mode); cc_display_monitor_set_scale (monitor, preferred_scale); any_changed = TRUE; saved_scale = g_new (double, 1); *saved_scale = monitor_scale; g_object_set_data_full (G_OBJECT (monitor), "previous-fractional-scale", saved_scale, g_free); } else { g_signal_emit_by_name (monitor, "scale"); } } return any_changed; } static void reset_monitors_scaling_to_selected_values (CcDisplayConfig *self) { GList *l; for (l = cc_display_config_get_monitors (self); l; l = l->next) { CcDisplayMonitor *monitor = l->data; gdouble *saved_scale; saved_scale = g_object_get_data (G_OBJECT (monitor), "previous-fractional-scale"); if (saved_scale) { cc_display_monitor_set_scale (monitor, *saved_scale); g_object_set_data (G_OBJECT (monitor), "previous-fractional-scale", NULL); } else { g_signal_emit_by_name (monitor, "scale"); } } } void cc_display_config_set_fractional_scaling (CcDisplayConfig *self, gboolean enabled) { CcDisplayConfigPrivate *priv = cc_display_config_get_instance_private (self); if (priv->fractional_scaling == enabled) return; priv->fractional_scaling = enabled; if (priv->fractional_scaling) { if (priv->fractional_scaling_pending_disable) { priv->fractional_scaling_pending_disable = FALSE; reset_monitors_scaling_to_selected_values (self); } if (!get_fractional_scaling_active (self)) set_fractional_scaling_active (self, enabled); } else { priv->fractional_scaling_pending_disable = TRUE; if (!set_monitors_scaling_to_preferred_integers (self)) { gboolean disable_now = FALSE; if (cc_display_config_layout_use_ui_scale (self)) { disable_now = G_APPROX_VALUE (cc_display_config_get_legacy_ui_scale (self), cc_display_config_get_maximum_scaling (self), DBL_EPSILON); } if (disable_now) { priv->fractional_scaling_pending_disable = FALSE; reset_monitors_scaling_to_selected_values (self); set_fractional_scaling_active (self, enabled); } } } } gboolean cc_display_config_get_fractional_scaling (CcDisplayConfig *self) { CcDisplayConfigPrivate *priv = cc_display_config_get_instance_private (self); return priv->fractional_scaling; } cinnamon-control-center-6.2.0/panels/display/cc-display-arrangement.h0000664000175000017500000000376114632072346024650 0ustar fabiofabio/* -*- mode: c; style: linux -*- * * Copyright (C) 2017 Red Hat, Inc. * * Written by: Benjamin Berg * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ #pragma once #include #include "cc-display-config.h" G_BEGIN_DECLS #define CC_TYPE_DISPLAY_ARRANGEMENT cc_display_arrangement_get_type () G_DECLARE_FINAL_TYPE (CcDisplayArrangement, cc_display_arrangement, CC, DISPLAY_ARRANGEMENT, GtkDrawingArea); CcDisplayArrangement* cc_display_arrangement_new (CcDisplayConfig *config); CcDisplayConfig* cc_display_arrangement_get_config (CcDisplayArrangement *self); void cc_display_arrangement_set_config (CcDisplayArrangement *self, CcDisplayConfig *config); CcDisplayMonitor* cc_display_arrangement_get_selected_output (CcDisplayArrangement *arr); void cc_display_arrangement_set_selected_output (CcDisplayArrangement *arr, CcDisplayMonitor *output); /* This is a bit of an odd-ball, but it currently makes sense to have it with * the arrangement widget where the snapping code lives. */ void cc_display_config_snap_output (CcDisplayConfig *config, CcDisplayMonitor *output); G_END_DECLS cinnamon-control-center-6.2.0/panels/display/cc-display-config-manager-dbus.h0000664000175000017500000000225314632072346026150 0ustar fabiofabio/* * Copyright (C) 2017 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * */ #pragma once #include #include "cc-display-config-manager.h" G_BEGIN_DECLS #define CC_TYPE_DISPLAY_CONFIG_MANAGER_DBUS (cc_display_config_manager_dbus_get_type ()) G_DECLARE_FINAL_TYPE (CcDisplayConfigManagerDBus, cc_display_config_manager_dbus, CC, DISPLAY_CONFIG_MANAGER_DBUS, CcDisplayConfigManager) CcDisplayConfigManager * cc_display_config_manager_dbus_new (void); G_END_DECLS cinnamon-control-center-6.2.0/panels/display/display-module.c0000664000175000017500000000200514632072346023230 0ustar fabiofabio/* * Copyright (C) 2010 Intel, Inc * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA 02110-1335, USA. * * Author: Thomas Wood * */ #include "cc-display-panel.h" #include void g_io_module_load (GIOModule *module) { /* register the panel */ cc_display_panel_register (module); } void g_io_module_unload (GIOModule *module) { } cinnamon-control-center-6.2.0/panels/display/cc-display-config.h0000664000175000017500000003606514632072346023615 0ustar fabiofabio/* * Copyright (C) 2016 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * */ #pragma once #include G_BEGIN_DECLS /* * GNOME Control Center display configuration system: * * The display configuration system consists of multiple concepts: * * CcDisplayConfig: * * Configuration instance, read from mutter using the * org.cinnamon.Muffin.DisplayConfig D-Bus API. Contains information about the * current configuration. Can be copied, to create a representation of a * configuration at a given time, and applied, applying any changes that has * been made to the objects associated with the configuration. * * CcDisplayConfig provides a list of all known "monitors" known to the * compositor. It does not know about ports without any monitors connected, * nor low level details about monitors, such as tiling etc. * * CcDisplayMonitor: * * A high level representation of a connected monitor. A monitor have details * associated with it, some which can be altered. Each CcDisplayMonitor * instance is associated with a single CcDisplayConfig instance. All * alteration to a monitor is cached and not applied until * cc_display_config_apply() is called on the corresponding CcDisplayConfig * object. * * CcDisplayMode: * * A monitor mode, including resolution, refresh rate, and scale. Each monitor * will have a list of possible modes. * */ typedef enum _CcDisplayRotation { CC_DISPLAY_ROTATION_NONE, CC_DISPLAY_ROTATION_90, CC_DISPLAY_ROTATION_180, CC_DISPLAY_ROTATION_270, CC_DISPLAY_ROTATION_FLIPPED, CC_DISPLAY_ROTATION_90_FLIPPED, CC_DISPLAY_ROTATION_180_FLIPPED, CC_DISPLAY_ROTATION_270_FLIPPED, } CcDisplayRotation; #define CC_TYPE_DISPLAY_MODE (cc_display_mode_get_type ()) G_DECLARE_DERIVABLE_TYPE (CcDisplayMode, cc_display_mode, CC, DISPLAY_MODE, GObject) struct _CcDisplayModeClass { GObjectClass parent_class; void (*get_resolution) (CcDisplayMode *self, int *w, int *h); const double* (*get_supported_scales) (CcDisplayMode *self); double (*get_preferred_scale) (CcDisplayMode *self); gboolean (*is_interlaced) (CcDisplayMode *self); int (*get_freq) (CcDisplayMode *self); double (*get_freq_f) (CcDisplayMode *self); }; #define CC_TYPE_DISPLAY_MONITOR (cc_display_monitor_get_type ()) G_DECLARE_DERIVABLE_TYPE (CcDisplayMonitor, cc_display_monitor, CC, DISPLAY_MONITOR, GObject) struct _CcDisplayMonitorClass { GObjectClass parent_class; guint32 (*get_id) (CcDisplayMonitor *self); const char* (*get_display_name) (CcDisplayMonitor *self); const char* (*get_connector_name) (CcDisplayMonitor *self); gboolean (*is_builtin) (CcDisplayMonitor *self); gboolean (*is_primary) (CcDisplayMonitor *self); void (*set_primary) (CcDisplayMonitor *self, gboolean primary); gboolean (*is_active) (CcDisplayMonitor *self); void (*set_active) (CcDisplayMonitor *self, gboolean a); CcDisplayRotation (*get_rotation) (CcDisplayMonitor *self); void (*set_rotation) (CcDisplayMonitor *self, CcDisplayRotation r); gboolean (*supports_rotation) (CcDisplayMonitor *self, CcDisplayRotation r); void (*get_physical_size) (CcDisplayMonitor *self, int *w, int *h); void (*get_geometry) (CcDisplayMonitor *self, int *x, int *y, int *w, int *h); gboolean (*supports_underscanning) (CcDisplayMonitor *self); gboolean (*get_underscanning) (CcDisplayMonitor *self); void (*set_underscanning) (CcDisplayMonitor *self, gboolean u); CcDisplayMode* (*get_mode) (CcDisplayMonitor *self); CcDisplayMode* (*get_preferred_mode) (CcDisplayMonitor *self); GList* (*get_modes) (CcDisplayMonitor *self); void (*set_mode) (CcDisplayMonitor *self, CcDisplayMode *m); void (*set_position) (CcDisplayMonitor *self, int x, int y); double (*get_scale) (CcDisplayMonitor *self); void (*set_scale) (CcDisplayMonitor *self, double s); }; #define CC_TYPE_DISPLAY_CONFIG (cc_display_config_get_type ()) G_DECLARE_DERIVABLE_TYPE (CcDisplayConfig, cc_display_config, CC, DISPLAY_CONFIG, GObject) struct _CcDisplayConfigClass { GObjectClass parent_class; GList* (*get_monitors) (CcDisplayConfig *self); gboolean (*is_applicable) (CcDisplayConfig *self); gboolean (*equal) (CcDisplayConfig *self, CcDisplayConfig *other); gboolean (*apply) (CcDisplayConfig *self, GError **error); gboolean (*is_cloning) (CcDisplayConfig *self); void (*set_cloning) (CcDisplayConfig *self, gboolean clone); GList* (*get_cloning_modes) (CcDisplayConfig *self); gboolean (*is_layout_logical) (CcDisplayConfig *self); void (*set_minimum_size) (CcDisplayConfig *self, int width, int height); gboolean (*is_scaled_mode_valid) (CcDisplayConfig *self, CcDisplayMode *mode, double scale); gboolean (*layout_use_ui_scale) (CcDisplayConfig *self); gint (*get_legacy_ui_scale) (CcDisplayConfig *self); }; GList* cc_display_config_get_monitors (CcDisplayConfig *config); GList* cc_display_config_get_ui_sorted_monitors (CcDisplayConfig *config); int cc_display_config_count_useful_monitors (CcDisplayConfig *config); gboolean cc_display_config_is_applicable (CcDisplayConfig *config); gboolean cc_display_config_equal (CcDisplayConfig *config, CcDisplayConfig *other); gboolean cc_display_config_apply (CcDisplayConfig *config, GError **error); gboolean cc_display_config_is_cloning (CcDisplayConfig *config); void cc_display_config_set_cloning (CcDisplayConfig *config, gboolean clone); GList* cc_display_config_get_cloning_modes (CcDisplayConfig *config); void cc_display_config_set_mode_on_all_outputs (CcDisplayConfig *config, CcDisplayMode *mode); gboolean cc_display_config_is_layout_logical (CcDisplayConfig *self); void cc_display_config_set_minimum_size (CcDisplayConfig *self, int width, int height); gboolean cc_display_config_is_scaled_mode_valid (CcDisplayConfig *self, CcDisplayMode *mode, double scale); gboolean cc_display_config_layout_use_ui_scale (CcDisplayConfig *self); gint cc_display_config_get_legacy_ui_scale (CcDisplayConfig *self); double cc_display_config_get_maximum_scaling (CcDisplayConfig *self); void cc_display_config_set_fractional_scaling (CcDisplayConfig *self, gboolean enabled); gboolean cc_display_config_get_fractional_scaling (CcDisplayConfig *self); const char* cc_display_monitor_get_display_name (CcDisplayMonitor *monitor); gboolean cc_display_monitor_is_active (CcDisplayMonitor *monitor); void cc_display_monitor_set_active (CcDisplayMonitor *monitor, gboolean active); const char* cc_display_monitor_get_connector_name (CcDisplayMonitor *monitor); CcDisplayRotation cc_display_monitor_get_rotation (CcDisplayMonitor *monitor); void cc_display_monitor_set_rotation (CcDisplayMonitor *monitor, CcDisplayRotation r); gboolean cc_display_monitor_supports_rotation (CcDisplayMonitor *monitor, CcDisplayRotation rotation); void cc_display_monitor_get_physical_size (CcDisplayMonitor *monitor, int *w, int *h); gboolean cc_display_monitor_is_builtin (CcDisplayMonitor *monitor); gboolean cc_display_monitor_is_primary (CcDisplayMonitor *monitor); void cc_display_monitor_set_primary (CcDisplayMonitor *monitor, gboolean primary); guint32 cc_display_monitor_get_id (CcDisplayMonitor *monitor); gboolean cc_display_monitor_supports_underscanning (CcDisplayMonitor *monitor); gboolean cc_display_monitor_get_underscanning (CcDisplayMonitor *monitor); void cc_display_monitor_set_underscanning (CcDisplayMonitor *monitor, gboolean underscanning); CcDisplayMode* cc_display_monitor_get_mode (CcDisplayMonitor *monitor); void cc_display_monitor_get_geometry (CcDisplayMonitor *monitor, int *x, int *y, int *width, int *height); void cc_display_monitor_get_disabled_geometry (CcDisplayMonitor *monitor, int *x, int *y, int *width, int *height); void cc_display_monitor_set_disabled_geometry (CcDisplayMonitor *monitor, int x, int y, int width, int height); GList* cc_display_monitor_get_modes (CcDisplayMonitor *monitor); CcDisplayMode* cc_display_monitor_get_preferred_mode (CcDisplayMonitor *monitor); double cc_display_monitor_get_scale (CcDisplayMonitor *monitor); void cc_display_monitor_set_scale (CcDisplayMonitor *monitor, double s); void cc_display_monitor_set_mode (CcDisplayMonitor *monitor, CcDisplayMode *mode); void cc_display_monitor_set_position (CcDisplayMonitor *monitor, int x, int y); gboolean cc_display_monitor_is_useful (CcDisplayMonitor *monitor); gboolean cc_display_monitor_is_usable (CcDisplayMonitor *monitor); void cc_display_monitor_set_usable (CcDisplayMonitor *monitor, gboolean is_usable); int cc_display_monitor_get_ui_number (CcDisplayMonitor *monitor); const char* cc_display_monitor_get_ui_name (CcDisplayMonitor *monitor); const char* cc_display_monitor_get_ui_number_name (CcDisplayMonitor *monitor); char* cc_display_monitor_dup_ui_number_name (CcDisplayMonitor *monitor); void cc_display_mode_get_resolution (CcDisplayMode *mode, int *width, int *height); const double* cc_display_mode_get_supported_scales (CcDisplayMode *self); double cc_display_mode_get_preferred_scale (CcDisplayMode *self); gboolean cc_display_mode_is_interlaced (CcDisplayMode *mode); int cc_display_mode_get_freq (CcDisplayMode *mode); double cc_display_mode_get_freq_f (CcDisplayMode *mode); G_END_DECLS cinnamon-control-center-6.2.0/panels/display/cc-display-config-dbus.h0000664000175000017500000000270414632072346024541 0ustar fabiofabio/* * Copyright (C) 2017 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * */ #pragma once #include #include "cc-display-config.h" G_BEGIN_DECLS #define CC_TYPE_DISPLAY_MODE_DBUS (cc_display_mode_dbus_get_type ()) G_DECLARE_FINAL_TYPE (CcDisplayModeDBus, cc_display_mode_dbus, CC, DISPLAY_MODE_DBUS, CcDisplayMode) #define CC_TYPE_DISPLAY_MONITOR_DBUS (cc_display_monitor_dbus_get_type ()) G_DECLARE_FINAL_TYPE (CcDisplayMonitorDBus, cc_display_monitor_dbus, CC, DISPLAY_MONITOR_DBUS, CcDisplayMonitor) #define CC_TYPE_DISPLAY_CONFIG_DBUS (cc_display_config_dbus_get_type ()) G_DECLARE_FINAL_TYPE (CcDisplayConfigDBus, cc_display_config_dbus, CC, DISPLAY_CONFIG_DBUS, CcDisplayConfig) G_END_DECLS cinnamon-control-center-6.2.0/panels/display/cinnamon-display-panel.desktop0000664000175000017500000002517414632072346026105 0ustar fabiofabio[Desktop Entry] Exec=cinnamon-settings display Icon=cs-display Terminal=false Type=Application StartupNotify=true Categories=GTK;Settings;HardwareSettings;X-Cinnamon-Settings-Panel; OnlyShowIn=X-Cinnamon; X-Cinnamon-Settings-Panel=display Name=Display Name[am]=įˆ›įˆ³į‹« Name[ar]=العرض Name[ast]=Pantalla Name[ay]=UƱjachawi Name[az]=Gƶstərmə Name[be]=Š”Ń‹ŃŠæŠ»ŃŠ¹ Name[be@latin]=Š”Ń‹ŃŠæŠ»ŃŠ¹ Name[bg]=Екран Name[ca]=Pantalla Name[ca@valencia]=Pantalla Name[cs]=Displej Name[cy]=Dangosydd Name[da]=SkƦrm Name[de]=Bildschirm Name[el]=Προβολή Name[eo]=Montri Name[es]=Visualización Name[et]=Kuva Name[eu]=Pantaila Name[fa]=ŲµŁŲ­Ł‡ā€ŒŁ†Ł…Ų§ŪŒŲ“ Name[fi]=NƤyttƶ Name[fr]=Affichage Name[fr_CA]=Ɖcran Name[gd]=Uidheam-taisbeanaidh Name[gl]=Pantalla Name[he]=צג Name[hi]=ą¤”ą¤æą¤øą„ą¤Ŗą„ą¤²ą„‡ Name[hr]=Zaslon Name[hu]=Kijelző Name[ia]=Schermo Name[id]=Tampilan Name[ie]=Monitor Name[is]=SkjĆ”r Name[it]=Monitor Name[ja]=ćƒ‡ć‚£ć‚¹ćƒ—ćƒ¬ć‚¤ Name[ka]=įƒ“įƒ įƒįƒ˜įƒ” įƒ©įƒ•įƒ”įƒœįƒ”įƒ‘įƒ Name[kab]=Sken Name[kk]=Дисплей Name[ko]=ė””ģŠ¤ķ”Œė ˆģ“ Name[ku]=Nîşandan Name[la]=Ostenditor Name[lt]=Ekranas Name[nds]=Bildschirm Name[nl]=Beeldscherm Name[oc]=Afichar Name[pl]=Ekran Name[pt]=EcrĆ£ Name[pt_BR]=Monitor Name[ro]=Afișare Name[ru]=ŠœŠ¾Š½ŠøŃ‚Š¾Ń€ Name[rue]=Дісплей Name[sc]=Ischermu Name[sk]=Obrazovka Name[sl]=Zaslon Name[sq]=Ekrani Name[sr]=ŠŸŃ€ŠøŠŗŠ°Š· Name[sr@latin]=Ekran Name[sv]=SkƤrm Name[ta]=ą®•ą®¾ą®£ąÆą®Ŗą®æ Name[th]=ąøˆąø­ą¹ąøŖąø”ąø‡ąøœąø„ Name[tr]=Ekran Name[uk]=Дисплей Name[ur]=ŚˆŲ³Ł¾Ł„Ū’ Name[uz]=Ekran Name[uz@cyrillic]=Ekran Name[vi]=Hiển thị Name[zh_CN]=显示 Name[zh_HK]=锯示器 Name[zh_TW]=锯示器 Comment=Change resolution and position of monitors and projectors Comment[am]=የ įˆžįŠ’į‰°įˆ­ įˆŖį‹žįˆŠįˆ½įŠ•: ቦታ įŠ„įŠ“ įˆ›įˆ³į‹« įˆ˜į‰€į‹ØįˆŖį‹« Comment[ar]=تغيير الدقة ووضع الؓاؓات ŁˆŲ£Ų¬Ł‡Ų²Ų© العرض Comment[ast]=Camuda la resolución y posición de los monitores y proyeutores Comment[ay]=Munituranaka ukhamaraki uƱtayirinaka (proyectores) ukan qawqha ch'aqanakanisa ukhamaraki kawkhans uskuta uk mayjachaƱa Comment[az]=Gƶstərənlərin, işgƶstərənlərin Ƨƶzünürlüyünü, yerini dəyiş Comment[be]=Š—Š¼ŃŠ½Ń–Ń†ŃŒ разрозненне і ŠæŠ°Š·Ń–Ń†Ń‹ŃŽ Š¼Š°Š½Ń–Ń‚Š¾Ń€Š°Ńž і ŠæŃ€Š°ŠµŠŗŃ‚Š°Ń€Š°Ńž Comment[be@latin]=Š—Š¼ŃŠ½Ń–Ń†ŃŒ разрозненне і ŠæŠ°Š·Ń–Ń†Ń‹ŃŽ Š¼Š°Š½Ń–Ń‚Š¾Ń€Š°Ńž і ŠæŃ€Š°ŠµŠŗŃ‚Š°Ń€Š°Ńž Comment[bg]=ŠŸŃ€Š¾Š¼ŃŠ½Š° на разГелителната способност Šø положението на екраните Šø проекторите Comment[bs]=Promijeni rezoluciju i poziciju monitora i projektora Comment[ca]=Canvieu la resolució i la posició dels monitors i projectors Comment[ca@valencia]=Canvieu la resolució i la posició dels monitors i projectors Comment[cs]=Změnit rozliÅ”enĆ­ a polohu monitorÅÆ a projektorÅÆ Comment[cy]=Newid cydraniad a safle dangosyddion a thaflynyddion Comment[da]=Ɔndr oplĆøsning og placering af skƦrme og projektorer Comment[de]=Auflƶsung und Anordnung der Bildschirme und Projektoren Ƥndern Comment[el]=Αλλαγή της Ī±Ī½Ī±Ī»ĻĻƒĪ·Ļ‚ και της ĪøĪ­ĻƒĪ·Ļ‚ των ĪæĪøĪæĪ½ĻŽĪ½ και του προτζέκτορα Comment[eo]=Ŝanĝi distingivon kaj posicion de ekranoj kaj projekciiloj Comment[es]=Cambie la resolución y la posición de monitores y proyectores Comment[et]=Kuvarite ja projektorite eraldusvƵime ja asukoha muutmine Comment[eu]=Aldatu pantaila eta proiektagailuen bereizmena eta posizioa Comment[fa]=تغییر وضوح و Ł…ŁˆŁ‚Ų¹ŪŒŲŖ Ł†Ł…Ų§ŪŒŲ“ŚÆŲ± و پروژکتور ها Comment[fi]=Muuta nƤyttƶjen ja heitinten tarkkuutta ja sijoittelua Comment[fr]=Modifier la rĆ©solution et la position des Ć©crans et projecteurs Comment[fr_CA]=Modifier la rĆ©solution et la position des Ć©crans et projecteurs Comment[gd]=Atharraich dùmhlachd-bhreacaidh agus ionad nam monatairean agus nam proiseactaran Comment[gl]=Cambiar a resolución e a posición dos monitores e proxectores Comment[he]=שינוי הפרדה והמיקום של הצגים ×•×”×ž×§×Ø× ×™× Comment[hi]=ą¤®ą„‰ą¤Øą¤æą¤Ÿą¤° ą¤ą¤µą¤‚ ą¤Ŗą„ą¤°ą„‹ą¤œą„‡ą¤•ą„ą¤Ÿą¤° ą¤¹ą„‡ą¤¤ą„ ą¤°ą„‡ą¤œą„‹ą¤²ą„ą¤¶ą¤Ø व ą¤øą„ą¤„ą¤æą¤¤ą¤æ ą¤¬ą¤¦ą¤²ą„‡ą¤‚ Comment[hr]=Promijenite razlučivost i položaj zaslona i projektora Comment[hu]=Kijelzők Ć©s projektorok felbontĆ”sĆ”nak Ć©s elhelyezĆ©sĆ©nek módosĆ­tĆ”sa Comment[ia]=Cambiar le resolution e le position de monitores e projectores Comment[id]=Ubah resolusi dan posisi monitor dan projektor Comment[ie]=Cambiar un resolution e position de monitores e projectores Comment[is]=Breyttu upplausn og stƶưu skjĆ”a og myndvarpa Comment[it]=Cambia la risoluzione e la posizione dei monitor e dei proiettori Comment[ja]=ćƒ¢ćƒ‹ć‚æćƒ¼ć‚„ćƒ—ćƒ­ć‚øć‚§ć‚Æć‚æćƒ¼ć®č§£åƒåŗ¦ćØä½ē½®ć‚’å¤‰ę›“ć—ć¾ć™ Comment[kab]=Beddel tabadut d wadeg n iferdisen n yimagaren Comment[kk]=ŠœŠ¾Š½ŠøŃ‚Š¾Ń€Š¼ŠµŠ½ проекторГың ŃŠŗŃ€Š°Š½ рұқсатын және Š¾Ń€Š½Š°Š»Š°ŃŃƒŃ‹Š½ Ó©Š·Š³ŠµŃ€Ń‚Ńƒ Comment[ko]=ėŖØė‹ˆķ„° ė° ķ”„ė”œģ ķ„°ģ˜ ķ•“ģƒė„ģ™€ ģœ„ģ¹˜ė„¼ ė°”źæ‰ė‹ˆė‹¤ Comment[lt]=Pakeisti ekranų ar projektorių raiÅ”ką ir poziciją Comment[lv]=MainÄ«t monitoru un projektoru izŔķirtspēju un izvietojumu Comment[ms]=Ubah resolusi dan kedudukan monitor dan projektor Comment[nds]=Ƅnderung der Auflƶsung und Position für Monitore und Projektoren Comment[nl]=Resolutie en positie van beeldschermen en projectoren wijzigen Comment[oc]=Modificar la resolucion e la posicion dels ecrans e projectors Comment[pl]=Zmiana rozdzielczości i położenia monitorów oraz projektorów Comment[pt]=Alterar resolução e posição dos monitores e projetores Comment[pt_BR]=Mudar a resolução e posição dos monitores e projetores Comment[ro]=Schimbați rezoluția și poziția monitoarelor și a proiectoarelor Comment[ru]=Š˜Š·Š¼ŠµŠ½ŠøŃ‚ŃŒ Ń€Š°Š·Ń€ŠµŃˆŠµŠ½ŠøŠµ Šø ŠæŠ¾Š·ŠøŃ†ŠøŃŽ мониторов, проекторов Comment[sk]=ZmeniÅ„ rozlĆ­Å”enie a pozĆ­ciu monitorov a projektorov Comment[sl]=Spremeni ločljivost in položaj zaslonov in projektorjev Comment[sq]=Ndrysho rezolucionin dhe pozicionin e monitorĆ«ve dhe projektorĆ«ve Comment[sr]=ŠŸŃ€Š¾Š¼ŠµŠ½ŠøŃ‚Šµ Ń€Š°Š·Š¼ŠµŃ€Ńƒ Šø места екрана Šø ŠæŃ€Š¾Ń˜ŠµŠŗŃ‚Š¾Ń€Š° Comment[sr@latin]=Promenite rezoluciju i mesta ekrana i projektora Comment[sv]=Ƅndra upplƶsning och position fƶr skƤrmar och projektorer Comment[tg]=Тағйир ГоГани возеҳӣ ва Š¼Š°Š²Ņ›ŠµŠøŃŃ‚Šø мониторҳо ва проекторҳо Comment[th]=ą¹€ąø›ąø„ąøµą¹ˆąø¢ąø™ąø„ąø§ąø²ąø”ąø„ąø°ą¹€ąø­ąøµąø¢ąø”ą¹ąø„ąø°ąø•ąø³ą¹ąø«ąø™ą¹ˆąø‡ąø‚ąø­ąø‡ąøˆąø­ąø ąø²ąøžą¹ąø„ąø°ą¹€ąø„ąø£ąø·ą¹ˆąø­ąø‡ąø‰ąø²ąø¢ Comment[tr]=Monitƶr ve projektƶr Ƨƶzünürlüğü ve konumunu değiştir Comment[uk]=Змінити Ń€Š¾Š·Š“Ń–Š»ŃŒŠ½Ń–ŃŃ‚ŃŒ і Ń€Š¾Š·Ń‚Š°ŃˆŃƒŠ²Š°Š½Š½Ń моніторів та проєкторів Comment[ur]=Ł…Ų§Ł†ŪŒŁ¹Ų±ŁˆŚŗ اور پراجیکٹروں کی Ų±ŪŒŲ²ŁˆŁ„ŁˆŲ“Ł† اور Ł¾ŁˆŲ²ŪŒŲ“Ł† ŲŖŲØŲÆŪŒŁ„ کریں Comment[uz]=Monitorlar va proektorlar uchun ruxsat berilgan parametrlar (resolution) va ularning joyini oā€˜zgartirish Comment[uz@cyrillic]=Monitorlar va proektorlar uchun ruxsat berilgan parametrlar (resolution) va ularning joyini oā€˜zgartirish Comment[vi]=Đổi độ phĆ¢n giįŗ£i vĆ  vị trĆ­ mĆ n hƬnh/mĆ”y chiįŗæu Comment[zh_CN]=ę›“ę”¹ę˜¾ē¤ŗå™Øå’ŒęŠ•å½±ä»Ŗēš„åˆ†č¾ØēŽ‡å’Œä½ē½® Comment[zh_HK]=č®Šę›“é”Æē¤ŗå™Øčˆ‡ęŠ•å½±ę©Ÿēš„č§£åƒåŗ¦å’Œä½ē½® Comment[zh_TW]=č®Šę›“é”Æē¤ŗå™Øčˆ‡ęŠ•å½±ę©Ÿēš„č§£ęžåŗ¦čˆ‡ä½ē½® Keywords=Panel;Projector;xrandr;Screen;Resolution;Refresh; Keywords[be]=ŠæŠ°Š½ŃŠ»ŃŒ;праектар;xrandr;ŃŠŗŃ€Š°Š½;памер;разрозненне;Ń€Š°Š·Š“Š·ŃŠ»ŃŠ»ŃŒŠ½Š°ŃŃ†ŃŒ;Š°Š±Š½Š°Š²Ń–Ń†ŃŒ; Keywords[be@latin]=ŠæŠ°Š½ŃŠ»ŃŒ;праектар;xrandr;ŃŠŗŃ€Š°Š½;памер;разрозненне;Ń€Š°Š·Š“Š·ŃŠ»ŃŠ»ŃŒŠ½Š°ŃŃ†ŃŒ;Š°Š±Š½Š°Š²Ń–Ń†ŃŒ; Keywords[ca]=Panell;Projector;Xrandr;Pantalla;Resolució;Actualitzar; Keywords[ca@valencia]=Panell;Projector;Xrandr;Pantalla;Resolució;Actualitzar; Keywords[cs]=Panel;projektor;xrandr;obrazovka;rozliÅ”enĆ­;obnovenĆ­; Keywords[cy]=Panel;Taflunydd;xrandr;Sgrin;Cydraniad;Adnewyddu; Keywords[da]=Panel;Projektor;xrandr;SkƦrm;OplĆøsning;Genopfrisk;GenindlƦs; Keywords[de]=Panel;Projector;xrandr;Screen;Resolution;Refresh;Paneel;Projektor;xrandr;Bildschirm;Auflƶsung;Aktualisieren;Auffrischen; Keywords[el]=Πίνακας;Προβολέας;xrandr;Οθόνη;Ī‘Ī½Ī¬Ī»Ļ…ĻƒĪ·;Ī‘Ī½Ī±Ī½Ī­Ļ‰ĻƒĪ·; Keywords[eo]=Panelo;Projekciilo;xrandr;Ekrano;Distingivo;Aktualigi; Keywords[es]=Panel;Proyector;xrandr;Pantalla;Resolución;Refresco; Keywords[et]=Paneel;projektor;xrandr;ekraan;eraldusvƵime;vƤrskendus; Keywords[eu]=Panela;Proiektagailua;xrandr;Pantaila;Bereizmena;Freskatu; Keywords[fa]=Ł¾Ł†Ł„ŲŒ پروژکتور، xrandr، ŲµŁŲ­Ł‡ŲŒ وضوح، ŲŖŲ§Ų²Ł‡ā€ŒŲ³Ų§Ų²ŪŒ; Keywords[fi]=Paneeli;Projektori;xrandr;NƤyttƶ;Resoluutio;Virkistys; Keywords[fr]=Paneau;Projecteur;xrandr;Ecran;RĆ©solution;Raffraichir; Keywords[fr_CA]=Paneau;Projecteur;xrandr;Ecran;RĆ©solution;Raffraichir; Keywords[he]=לוח;×ž×§×Ø×Ÿ;xrandr;צג;הפרדה;×Ø×¢× ×•×Ÿ; Keywords[hr]=Panel;Projektor;xrandr;Zaslon;Razlučivost;Osvježavanje; Keywords[hu]=Panel;Projektor;xrandr;KĆ©pernyő;FelbontĆ”s;FrissĆ­tĆ©s;Monitor;Ɖjszakai;fĆ©ny;redshift;szĆ­n;napkelte;napnyugta;Panel;Projector;xrandr;Screen;Resolution;Refresh; Keywords[ia]=Panello;Projector;xrandr;Schermo;Resolution;Refrescar; Keywords[id]=Panel;Proyektor;xrandr;Layar;Resolusi;Segarkan; Keywords[is]=Panell;SkjĆ”varpi;xrandr;SkjĆ”r;Upplausn;UppfƦrslutƭưni; Keywords[it]=Pannello;Proiettore;xrandr;Schermo;Risoluzione;Refresh; Keywords[ja]=Panel;Projector;xrandr;Screen;Resolution;Refresh;ćƒ‘ćƒćƒ«;ćƒ—ćƒ­ć‚øć‚§ć‚Æć‚æćƒ¼;ć‚¹ć‚ÆćƒŖćƒ¼ćƒ³;ē”»é¢;č§£åƒåŗ¦;ćƒŖćƒ•ćƒ¬ćƒƒć‚·ćƒ„; Keywords[ko]=ķŒØė„;ķ”„ė”œģ ķ„°;xrandr;화멓;ķ•“ģƒė„;새딜 고침; Keywords[nl]=Paneel;Projector;xrandr;Scherm;Resolutie;Verversen; Keywords[oc]=PanĆØl;Projector;Xrandr;Ecran;Resolucion;Actualizar; Keywords[pl]=Panel;Projektor;xrandr;Ekran;Rozdzielczość;Odświeżanie; Keywords[pt]=Painel;Projetor;xrandr;EcrĆ£;Resolução;Atualizar; Keywords[pt_BR]=Painel;Projetor;xrandr;Tela;Resolução;Atualizar; Keywords[ro]=Panou;proiector;xrandr;ecran;rezoluție;reĆ®mprospătare; Keywords[ru]=Панель;ŠŸŃ€Š¾ŠµŠŗŃ‚Š¾Ń€;xrandr;Экран;Š Š°Š·Ń€ŠµŃˆŠµŠ½ŠøŠµ;ŠžŠ±Š½Š¾Š²ŠøŃ‚ŃŒ; Keywords[sk]=Panel;Projektor;xrandr;Obrazovka;RozlĆ­Å”enie;ObnoviÅ„; Keywords[sl]=PloŔča;projektor;xrandr;zaslon;ločljivost;osveževanje; Keywords[sv]=Panel;Projektor;xrandr;SkƤrm;Upplƶsning;Uppdatera; Keywords[tr]=Panel;Projektƶr;xrandr;Ekran;Ƈƶzünürlük;Tazeleme; Keywords[uk]=Панель;ŠŸŃ€Š¾ŠµŠŗŃ‚Š¾Ń€;xrandr;Екран;Š Š¾Š·Š“Ń–Š»ŃŒŠ½Š° Š·Š“Š°Ń‚Š½Ń–ŃŃ‚ŃŒ;ŠžŠ½Š¾Š²ŠøŃ‚Šø; Keywords[uz]=Panel;Proyektor;xrandr;Ekran;Ruxsat;Yangilash; Keywords[uz@cyrillic]=Panel;Proyektor;xrandr;Ekran;Ruxsat;Yangilash; cinnamon-control-center-6.2.0/panels/display/cc-display-config-manager.c0000664000175000017500000000344714632072346025216 0ustar fabiofabio/* * Copyright (C) 2016 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * */ #include "cc-display-config-manager.h" G_DEFINE_TYPE (CcDisplayConfigManager, cc_display_config_manager, G_TYPE_OBJECT) enum { CONFIG_MANAGER_CHANGED, N_CONFIG_MANAGER_SIGNALS, }; static guint config_manager_signals[N_CONFIG_MANAGER_SIGNALS] = { 0 }; static void cc_display_config_manager_init (CcDisplayConfigManager *self) { } static void cc_display_config_manager_class_init (CcDisplayConfigManagerClass *klass) { config_manager_signals[CONFIG_MANAGER_CHANGED] = g_signal_new ("changed", CC_TYPE_DISPLAY_CONFIG_MANAGER, G_SIGNAL_RUN_LAST, 0, NULL, NULL, g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); } void _cc_display_config_manager_emit_changed (CcDisplayConfigManager *self) { g_signal_emit (self, config_manager_signals[CONFIG_MANAGER_CHANGED], 0); } CcDisplayConfig * cc_display_config_manager_get_current (CcDisplayConfigManager *self) { return CC_DISPLAY_CONFIG_MANAGER_GET_CLASS (self)->get_current (self); } cinnamon-control-center-6.2.0/ChangeLog0000664000175000017500003037646314632072346017010 0ustar fabiofabio# Generated by Makefile. Do not edit. commit d303d9f36064c5dcf523c5a545a6542e635bbf3d Author: Bastien Nocera Date: Wed Nov 14 12:52:56 2012 +0100 3.6.3 NEWS | 20 +++++++++++++++++--- configure.ac | 2 +- 2 files changed, 18 insertions(+), 4 deletions(-) commit 05f19e36a4b0c7516858126250a8d1a5af46b9a0 Author: Bastien Nocera Date: Wed Nov 14 13:07:23 2012 +0100 build: Fix distcheck Left-over files from update-icon-cache shouldn't be created in the first place when running distcheck. Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 001156637a858969eee45e868a03a294c559093b Author: Debarshi Ray Date: Sat Nov 10 18:48:25 2012 +0100 bluetooth: Align the device list with the all settings button Fixes: https://bugzilla.gnome.org/688055 panels/bluetooth/bluetooth.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 7a22f0605c5099079828d0cffbdf6698fa1fe8f0 Author: Debarshi Ray Date: Sat Nov 10 18:42:01 2012 +0100 online-accounts: Align the accounts list with the all settings button Fixes: https://bugzilla.gnome.org/668312 panels/online-accounts/online-accounts.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit b23aef0aef77c3844c6a665713c68f96b20fb628 Author: Debarshi Ray Date: Fri Nov 9 19:12:46 2012 +0100 online-accounts: Don't preselect the first item when adding an account Fixes: https://bugzilla.gnome.org/687875 panels/online-accounts/cc-online-accounts-add-account-dialog.c | 4 ++++ 1 file changed, 4 insertions(+) commit 725aecc9e38c8a817aa62d676ced466aeeeeb8f1 Author: Bastien Nocera Date: Fri Nov 9 11:32:52 2012 +0100 network: Avoid type clashes with the Bluetooth panel Done with: sed -i -e 's/RfkillGlib/CcRfkillGlib/g' \ -e 's/RFKILL_GLIB/CC_RFKILL_GLIB/g' \ -e 's/rfkill_glib/cc_rfkill_glib/g' \ -e 's/RFKILL_TYPE_GLIB/CC_RFKILL_TYPE_GLIB/g' \ rfkill-glib.[ch] cc-network-panel.c This would need to be done when we reset the copy/paste from gnome-bluetooth. panels/network/cc-network-panel.c | 10 ++++---- panels/network/rfkill-glib.c | 48 +++++++++++++++++++-------------------- panels/network/rfkill-glib.h | 44 +++++++++++++++++------------------ 3 files changed, 51 insertions(+), 51 deletions(-) commit 7aef2fb307a9ff9c32fbe9dc6bc36e1eef5e72ab Author: Bastien Nocera Date: Fri Nov 9 11:16:07 2012 +0100 network: Make sure Airplane mode switch everything off And not just wireless. We need to use /dev/rfkill directly to make sure that all the devices (3G, GPS, Bluetooth, etc.) get switched off correctly when airplane mode is on. https://bugzilla.gnome.org/show_bug.cgi?id=675778 panels/network/Makefile.am | 5 +- panels/network/cc-network-panel.c | 94 ++++++++++-- panels/network/rfkill-glib.c | 299 ++++++++++++++++++++++++++++++++++++++ panels/network/rfkill-glib.h | 65 +++++++++ panels/network/rfkill.h | 107 ++++++++++++++ 5 files changed, 560 insertions(+), 10 deletions(-) commit 627238003890e18069b90e8e2935f9548bf96f98 Author: Bastien Nocera Date: Fri Nov 9 10:20:29 2012 +0100 network: Make sure flight mode is always visible Because it's not just about disabling the network, it needs to disable a host of other wireless devices, and those need to be blocked even if you end up plugging them into your computer. panels/network/cc-network-panel.c | 54 +-------------------------------------- 1 file changed, 1 insertion(+), 53 deletions(-) commit c8837d2650c8558492e8f3aeb2362c7a7118c517 Author: Bastien Nocera Date: Thu Nov 8 18:52:28 2012 +0100 bluetooth: Use spinner when connecting Rather than having an unusable switch (which wouldn't represent the real state of the connection), show a spinner until the connection is finished doing. panels/bluetooth/bluetooth.ui | 2 +- panels/bluetooth/cc-bluetooth-panel.c | 30 ++++++++++++++++++++++++++---- 2 files changed, 27 insertions(+), 5 deletions(-) commit f299846ba76a8c2d712414b9380dc4adfc1a545a Author: Bastien Nocera Date: Thu Nov 8 18:36:33 2012 +0100 bluetooth: Simplify ->finalize panels/bluetooth/cc-bluetooth-panel.c | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) commit d309183dd352cef5e075070caaac8ac050b4d11d Author: Bastien Nocera Date: Thu Nov 8 18:31:07 2012 +0100 bluetooth: Fix main switch acting bizarrely The only time we were looking at the powered state of the adapter is when the killswitch state was changing. Except that we're fast enough that bluetoothd didn't have time to power up the adapter, so its state was unpowered, which we would set the switch to. The switch was off, the adapter was on. We fix that problem by tracking the powered state of the adapter separately. https://bugzilla.redhat.com/show_bug.cgi?id=841881 panels/bluetooth/cc-bluetooth-panel.c | 32 +++++++++++++++++++++++++------- 1 file changed, 25 insertions(+), 7 deletions(-) commit 68917676a077ad36ae3c7570afe3789bdd6fea65 Author: Bastien Nocera Date: Thu Nov 8 18:11:47 2012 +0100 bluetooth: Add UI code for a spinner during the connection panels/bluetooth/bluetooth.ui | 45 ++++++++++++++++++++++++++++++++++++++----- 1 file changed, 40 insertions(+), 5 deletions(-) commit 2dc30a08d5a4844c1f9028356c44440d2be62eaf Author: Bastien Nocera Date: Thu Nov 8 18:00:03 2012 +0100 bluetooth: Remove unused variable panels/bluetooth/cc-bluetooth-panel.c | 2 -- 1 file changed, 2 deletions(-) commit f9f6e7525e55059361ca15dbda7826105eb3fdbc Author: Bastien Nocera Date: Thu Nov 8 17:56:26 2012 +0100 bluetooth: Avoid possible loops when Connection fails If we switch "Connection" on via the switch, the disabling on failure will create a loop where it always tries to connect again. Break that loop. panels/bluetooth/cc-bluetooth-panel.c | 46 ++++++++++++++++++++++++++++++++--- 1 file changed, 42 insertions(+), 4 deletions(-) commit 80c1f5a79da01091f93eb48ed686192781852efe Author: Marek Kasik Date: Thu Oct 18 11:35:14 2012 +0200 printers: Resolve symlink when passing a PPD to CUPS root is not able to resolve symlinks in /tmp/ created by ordinary users because of a new policy and PPDs got from CUPS are symlinks to /etc/cups/ppd/* placed to /tmp/. Since we need to pass PPD file of original printer to CUPS when renaming a printer we resolve given symlink and pass original filename to the CUPS. panels/printers/pp-utils.c | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) commit 8f3733dfca5ceb1d9862dbe2aa6137a57277dee6 Author: Bastien Nocera Date: Thu Nov 8 09:02:38 2012 +0100 NEWS: Prepare for release Last updated item is: d2e70f2d45d5460296d027c44e0e3aa86078329c NEWS | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) commit d2e70f2d45d5460296d027c44e0e3aa86078329c Author: Bastien Nocera Date: Mon Nov 5 09:35:13 2012 +0100 region: Fix possible crasher on startup When the X11Variant localed property was empty, variants[i] was being checked even though only variants[0] was defined (an empty string). ==17035== Invalid read of size 8 ==17035== at 0x26B9529A: on_localed_properties_changed (gnome-region-panel-system.c:339) ==17035== by 0x26B95546: localed_proxy_ready (gnome-region-panel-system.c:381) ==17035== by 0x8CA2589: g_simple_async_result_complete (gsimpleasyncresult.c:775) ==17035== by 0x8CA25BB: complete_in_idle_cb (gsimpleasyncresult.c:787) ==17035== by 0x94B8ED4: g_idle_dispatch (gmain.c:4806) ==17035== by 0x94B6890: g_main_dispatch (gmain.c:2715) ==17035== by 0x94B7440: g_main_context_dispatch (gmain.c:3219) ==17035== by 0x94B7623: g_main_context_iterate (gmain.c:3290) ==17035== by 0x94B76E7: g_main_context_iteration (gmain.c:3351) ==17035== by 0x8CDB1A1: g_application_run (gapplication.c:1620) ==17035== by 0x4083C6: main (control-center.c:256) ==17035== Address 0x13b92e18 is 0 bytes after a block of size 8 alloc'd ==17035== at 0x4A0883C: malloc (vg_replace_malloc.c:270) ==17035== by 0x94BE97B: standard_malloc (gmem.c:85) ==17035== by 0x94BEA04: g_malloc (gmem.c:159) ==17035== by 0x94BED2F: g_malloc_n (gmem.c:400) ==17035== by 0x94DB26A: g_strsplit (gstrfuncs.c:2281) ==17035== by 0x26B95169: on_localed_properties_changed (gnome-region-panel-system.c:319) ==17035== by 0x26B95546: localed_proxy_ready (gnome-region-panel-system.c:381) ==17035== by 0x8CA2589: g_simple_async_result_complete (gsimpleasyncresult.c:775) ==17035== by 0x8CA25BB: complete_in_idle_cb (gsimpleasyncresult.c:787) ==17035== by 0x94B8ED4: g_idle_dispatch (gmain.c:4806) ==17035== by 0x94B6890: g_main_dispatch (gmain.c:2715) ==17035== by 0x94B7440: g_main_context_dispatch (gmain.c:3219) panels/region/gnome-region-panel-system.c | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) commit 28bcf96598ed63a50235f4908d67a10d5c22be85 Author: Bastien Nocera Date: Mon Nov 5 09:34:37 2012 +0100 common: Quiet valgrind when checking lang codeset panels/common/gdm-languages.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit a9718601b62ef411e384a0eb332c10dd7accf97f Author: Pavol Klačanský Date: Sun Nov 4 11:27:58 2012 +0100 Updated slovak translation po/sk.po | 7268 ++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 4190 insertions(+), 3078 deletions(-) commit 59cd59945102e783557e81d872cd95c17eba1b38 Author: Jeremy Bicha Date: Fri Nov 2 21:04:11 2012 -0400 keyboard: Point help to more specific page https://bugzilla.gnome.org/show_bug.cgi?id=687486 panels/keyboard/cc-keyboard-panel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit c251e5962b510ca3b2869f4835078271e0460144 Author: Jeremy Bicha Date: Fri Nov 2 20:50:42 2012 -0400 shell: Add F1 accelerator to show help https://bugzilla.gnome.org/show_bug.cgi?id=687485 shell/control-center.c | 3 +++ 1 file changed, 3 insertions(+) commit 07b76034f8cb26acf5d172cf5e40975b975c1f9b Author: Changwoo Ryu Date: Sat Nov 3 01:34:33 2012 +0900 Updated Korean translation po/ko.po | 151 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 74 insertions(+), 77 deletions(-) commit ad25b22e16bf2dacf0a157d0bfcb3c8d591d9055 Author: Jeremy Bicha Date: Wed Oct 31 06:46:28 2012 -0400 Show Printers & Region panels in Unity but hide Background Ubuntu plans to fork a separate Appearance panel this cycle so that Gnomebuntu can use the GNOME Background panel. I believe Ubuntu will try to use the Printers and Region & Language panels instead of system-config-printer & language-selector https://bugzilla.gnome.org/show_bug.cgi?id=687258 panels/background/gnome-background-panel.desktop.in.in | 2 +- panels/printers/gnome-printers-panel.desktop.in.in | 2 +- panels/region/gnome-region-panel.desktop.in.in | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) commit bf820b005f3ca9af74e26b7ef615ce37734885b0 Author: Sweta Kothari Date: Mon Oct 29 12:07:21 2012 +0530 Updated gujarati file po/gu.po | 43 +++++++++++++++++++++++++++---------------- 1 file changed, 27 insertions(+), 16 deletions(-) commit 1302e9c43cbbdd6ccd4384b71653b222229ec200 Author: SeĆ”n de BĆŗrca Date: Fri Oct 26 13:23:23 2012 -0600 Updated Irish translation. po/ga.po | 6440 ++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 3770 insertions(+), 2670 deletions(-) commit 32bfab1e526166f03f79132723cd98b2184fb0e8 Author: Bastien Nocera Date: Mon Oct 22 16:14:59 2012 +0200 3.6.2 NEWS | 21 +++++++++++++++++++++ configure.ac | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) commit e7722d9eea8f77334954c20b33e0234e16aaccb4 Author: Ondrej Holy Date: Fri Oct 19 10:12:58 2012 +0200 user-accounts: fix wrong sensitivity of the autologin combo https://bugzilla.gnome.org/show_bug.cgi?id=686383 panels/user-accounts/um-user-panel.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 600ad0176bf4b20eaef8cbe78ecfee85c0ee0d19 Author: Olivier Fourdan Date: Fri Oct 19 15:41:43 2012 +0200 wacom: Update from gnome-settings-daemon panels/wacom/gsd-wacom-device.c | 61 +++++++++++++++++++++++++++++++++-------- panels/wacom/gsd-wacom-device.h | 2 ++ 2 files changed, 52 insertions(+), 11 deletions(-) commit b9b2f6a91fa45bcd387d468daf5d48c8343aa8b9 Author: Stef Walter Date: Thu Oct 18 18:37:24 2012 +0200 user-accounts: Don't have domains twice in the drop down If we discover domains again, don't add them twice to the drop down and confuse the user. This is especially important if we receive two realms from realmd for the same domain for use with different clients (ie: sssd/winbind). We only want to offer the first choice https://bugzilla.gnome.org/show_bug.cgi?id=686397 panels/user-accounts/um-account-dialog.c | 34 ++++++++++++++++++++++++++++---- 1 file changed, 30 insertions(+), 4 deletions(-) commit c16278d484d4d2f43da29b24dc4e20ddc3f8456c Author: Stef Walter Date: Thu Oct 18 18:40:00 2012 +0200 user-accounts: Set timeouts on all realmd interface proxies Without this, we can get timeout problems during joining a domain. This is a regression from when we refactored UmRealmManager to use GDBusObjectManagerClient. Make sure to call g_dbus_proxy_set_default_timeout() on all realmd interface proxies whenever they show up. https://bugzilla.gnome.org/show_bug.cgi?id=686390 panels/user-accounts/um-realm-manager.c | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) commit 24421985d74dac4f1531e66a2b8a86ae783efbb7 Author: Stef Walter Date: Fri Oct 19 10:55:02 2012 +0200 background: Fix compilation error Related to: https://bugzilla.redhat.com/show_bug.cgi?id=866973 panels/background/cc-background-panel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit d5af7612603a57983d06a277e9ac57709563c140 Author: Stef Walter Date: Sat Oct 6 12:17:21 2012 -0400 user-accounts: Remove the realmd version check The idea is that the realmd DBus API will remain stable from now on, so remove the version check. It was broken anyway. https://bugzilla.gnome.org/show_bug.cgi?id=685616 panels/user-accounts/um-realm-manager.c | 167 +++++++++++++++++--------------- 1 file changed, 91 insertions(+), 76 deletions(-) commit 32937d2b27fd4816cec88c20b4d5c88518c3af8a Author: Matthias Clasen Date: Tue Oct 16 14:36:16 2012 -0400 network: Fix 8021x connections We were always throwing away requests to connect to 8021x APs, due to missing braces. https://bugzilla.gnome.org/show_bug.cgi?id=686244 panels/network/cc-network-panel.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) commit e3a42c6ba87e4fe28479dd3bd65cdde22208f199 Author: Bastien Nocera Date: Wed Oct 17 09:38:05 2012 +0200 background: Fix crash when exiting panel too quickly The background capture would still be on-going, and we would crash poking at the now gone panel. https://bugzilla.redhat.com/show_bug.cgi?id=866973 panels/background/cc-background-panel.c | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) commit 38b7e045f1d439ea81429d5b414008960575c62b Author: Bastien Nocera Date: Wed Oct 17 09:37:10 2012 +0200 background: Handle copy cancellation correctly Make sure to avoid poking at the panel when the file copy is cancelled. panels/background/cc-background-panel.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) commit 8a27842d73ac265d56e22c8146d102967ded049e Author: Andreas Nesdal Date: Tue Oct 16 20:58:10 2012 +0200 Updated Norwegian Nynorsk translation (sync with Ubuntu) po/nn.po | 7646 +++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 4264 insertions(+), 3382 deletions(-) commit 78257521ed083529668f3bedf858441c5aaf17bf Author: Stef Walter Date: Sat Oct 6 13:01:03 2012 -0400 user-accounts: Recognize that some kerberos domains cannot be joined realmd supports discovering generic kerberos domains, which cannot be joined. https://bugzilla.gnome.org/show_bug.cgi?id=685618 panels/user-accounts/um-realm-manager.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) commit e581b12786e9424ea1dddc62787f5df823041b94 Author: Sweta Kothari Date: Mon Oct 15 17:19:09 2012 +0530 Updated gujarati file po/gu.po | 355 +++++++++++++++++++++++++-------------------------------------- 1 file changed, 140 insertions(+), 215 deletions(-) commit cf065fb8f420c2d6cda63838f60af7b577165dc7 Author: Ask H. Larsen Date: Mon Oct 15 06:35:16 2012 +0200 Updated Danish translation po/da.po | 328 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 164 insertions(+), 164 deletions(-) commit 242f2b268a43ee6c1db6a9aca4d7d1cf837ae627 Author: Kjartan Maraas Date: Sat Oct 13 12:33:43 2012 +0200 Updated Norwegian bokmĆ„l translation po/nb.po | 702 ++++++++++++++++++++++++++++++--------------------------------- 1 file changed, 330 insertions(+), 372 deletions(-) commit bb94a0166a6f764efd4b8ec0718f21254498d9ad Author: Arash Mousavi Date: Sat Oct 13 10:17:00 2012 +0330 L10N: Updated Persian translation po/fa.po | 729 +++++++++++++++++++++++++-------------------------------------- 1 file changed, 293 insertions(+), 436 deletions(-) commit 5fc63896eed325a297fef2a1daff4e6d755bfdd6 Author: Bastien Nocera Date: Thu Oct 11 13:13:32 2012 +0200 screen: Don't print a warning with no backlight device panels/screen/cc-screen-panel.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit fc7c41f4293a1d3e37c45eb6f2d95cd80dd52edc Author: Bastien Nocera Date: Tue Jun 12 18:22:28 2012 +0100 screen: Avoid accessing destroyed panel When we cancel the Brightness calls because the panel is getting destroyed, we shouldn't try to access panel widgets. https://bugzilla.gnome.org/show_bug.cgi?id=677963 panels/screen/cc-screen-panel.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) commit d4f24d6608a056da3addb51fbd0d80a373e66404 Author: Stef Walter Date: Sat Oct 6 12:27:34 2012 -0400 user-accounts: Complete discover on failure When realmd discovery doesn't return a domain, complete the discovery appropriately. Previously we would never complete. https://bugzilla.gnome.org/show_bug.cgi?id=685617 panels/user-accounts/um-realm-manager.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit e5b58ed51dbd19005d096aa48011d432d90f8dba Author: Gabor Kelemen Date: Mon Oct 8 23:33:54 2012 +0200 Remove excess colon from Hungarian translation po/hu.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit b8df7443f53e99249cb55d31b75fde755783ea08 Author: Gabor Kelemen Date: Mon Oct 8 22:57:14 2012 +0200 Use better wording in Hungarian translation po/hu.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 6d8ac68f7ee0fe69f70056841799a12dd70ac6eb Author: Bastien Nocera Date: Mon Oct 8 18:55:14 2012 +0200 3.6.1 NEWS | 44 ++++++++++++++++++++++++++++++++++++++++++++ configure.ac | 2 +- 2 files changed, 45 insertions(+), 1 deletion(-) commit aef03317e81b358d0fc0c26e58bcad8334d11a17 Author: Bastien Nocera Date: Mon Oct 8 18:18:49 2012 +0200 background: Fix distcheck panels/background/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 8f0091c2c9c313ef360d022c2786bf512b3bcb7a Author: Rui Matos Date: Mon Oct 8 17:40:26 2012 +0200 region: Add the Marathi phonetic input source to the white list https://bugzilla.gnome.org/show_bug.cgi?id=685721 panels/region/gnome-region-panel-input.c | 1 + 1 file changed, 1 insertion(+) commit a9ba8f9bc4197ce53b58a29ccb74dac747d9598d Author: Wouter Bolsterlee Date: Sat Oct 6 15:07:52 2012 +0200 Updated Dutch translation po/nl.po | 3597 ++++++++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 2305 insertions(+), 1292 deletions(-) commit 841ce5ace6b2699546b9ac37806ec09bbb093819 Author: Khoem Sokhem Date: Wed Oct 3 17:41:03 2012 +0200 [l10n] Added Khmer translation po/LINGUAS | 1 + po/km.po | 5784 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 5785 insertions(+) commit c35850649175044aa8d93e217d48884f49ac37fb Author: Bastien Nocera Date: Wed Oct 3 14:49:23 2012 +0200 network: Verify command-line arguments To avoid invalid bug reports ;) panels/network/cc-network-panel.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) commit ea0f359e4df4cdeb07c82e88469274002819852b Author: Matthias Clasen Date: Sun Sep 30 21:14:36 2012 -0400 network: Use a regular button for 'Connect to Hidden' The treeview is not really up to this level of custom UI. https://bugzilla.gnome.org/show_bug.cgi?id=684819 panels/network/net-device-wifi.c | 44 ++++++-------------------------------- panels/network/network-wifi.ui | 46 ++++++++++++++++++++++++++++++++-------- 2 files changed, 44 insertions(+), 46 deletions(-) commit 3e32d858a1880fb0abc428b10c125cfe180d7c77 Author: Rui Matos Date: Mon Oct 1 16:42:22 2012 +0200 region: Add inscript2 m17n keymaps to the whitelist https://bugzilla.gnome.org/show_bug.cgi?id=684854 panels/region/gnome-region-panel-input.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) commit c7677010a0d4f5e9fdfc82b216b866d5b51dca75 Author: Rui Matos Date: Sat Sep 29 19:47:38 2012 +0200 region: Repopulate input sources chooser when IBus becomes available Otherwise the IBus sources wouldn't be available in the chooser until it was closed and re-opened. https://bugzilla.gnome.org/show_bug.cgi?id=684874 panels/region/gnome-region-panel-input.c | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) commit fb6c89f45a3c73d34de4cf0c8d381bce301176f1 Author: Daiki Ueno Date: Thu Sep 27 17:46:40 2012 +0900 region: build IBus setup app filename only from the engine prefix There are 84 m17n engines in the whitelist and they all use ibus-setup-m17n. To reduce the number of .desktop files, this patch uses the prefix before the first ":" to construct the .desktop filename and set IBUS_ENGINE_NAME envvar to let the setup app know the actual engine ID. https://bugzilla.gnome.org/show_bug.cgi?id=684935 panels/region/gnome-region-panel-input.c | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) commit 42d835b3ce92188fc9f01d0461b53b6f44f67160 Author: Matthias Clasen Date: Tue Oct 2 15:11:59 2012 +0200 network: Further refinements to out-of-range avoidance panels/network/net-device-wifi.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) commit 75086eb149079ae9f1818774d8b3f73ecab62120 Author: Bastien Nocera Date: Tue Oct 2 14:55:59 2012 +0200 network: Fix WPA Enterprise connection not working https://bugzilla.gnome.org/show_bug.cgi?id=685207 panels/network/net-device-wifi.c | 52 +++++++++++++++++++++++++++++++++++----- 1 file changed, 46 insertions(+), 6 deletions(-) commit 7e708ae52c48a1b1dcc240f0007c5066cec0a19b Author: Bastien Nocera Date: Tue Oct 2 12:33:15 2012 +0200 network: Scope correctly the connection variable panels/network/net-device-wifi.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit e7e02390b6b4506a002f48b5d20b40d3270d0902 Author: Bastien Nocera Date: Tue Oct 2 12:28:58 2012 +0200 network: Add debug for connection activation failures panels/network/net-device-wifi.c | 6 ++++++ 1 file changed, 6 insertions(+) commit 6264fea2fe06d3ee06279b1aba14109d149fcdcf Author: Matthias Clasen Date: Sat Sep 29 19:35:23 2012 -0400 Don't try to activate out-of-range connections It is not going to work... https://bugzilla.gnome.org/show_bug.cgi?id=684824 panels/network/net-device-wifi.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) commit 446f7cf0272f5ba88790c012cde193c393246f07 Author: Bastien Nocera Date: Tue Oct 2 08:57:38 2012 +0200 network: Fix parenting of the broadband wizard By showing the wizard in an idle by default, or waiting until the shell is visible. panels/network/network-dialogs.c | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) commit aceaf347a93f3a8dd2a53a9a8457c6d53a1c5100 Author: Bastien Nocera Date: Mon Oct 1 23:05:41 2012 +0200 network: Show the network dialogues after showing the shell To avoid confusing the hell out of Mutter, we should show the parented dialogue _after_ showing the parent itself. https://bugzilla.gnome.org/show_bug.cgi?id=684927 panels/network/network-dialogs.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit 3c973b587deec0570f743af83699c567ee15eea1 Author: Bastien Nocera Date: Mon Oct 1 23:05:29 2012 +0200 network: Add debug for argv handling panels/network/cc-network-panel.c | 4 ++++ 1 file changed, 4 insertions(+) commit d941ca15af9799efbba55bc62ee5a4f1a0668dae Author: Bastien Nocera Date: Mon Oct 1 23:03:54 2012 +0200 network: Fix possible incorrect exit of the loop A bug fix for the Proxy page handling panels/network/cc-network-panel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 813843cf85bffd66af4421dcfec35487487edacf Author: Bastien Nocera Date: Mon Oct 1 21:16:05 2012 +0200 network: Fix possible crasher when handling argv prop When looking for a matching device, we might end up checking for the proxy page's nm-device, which it obviously doesn't have. panels/network/cc-network-panel.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) commit 9dcf8cbfef005d4a473504b687588f93eb88ebed Author: Bastien Nocera Date: Thu Sep 27 12:41:56 2012 +0200 region: Remove dead button The button hasn't ever been hooked to anything. Let's remove it. https://bugzilla.gnome.org/show_bug.cgi?id=684864 panels/region/gnome-region-panel.ui | 15 --------------- 1 file changed, 15 deletions(-) commit 2a24b5978e51bfcc5e9431a319ae481eac830a73 Author: Bastien Nocera Date: Mon Oct 1 09:32:18 2012 +0200 common: Fix list-languages build panels/common/list-languages.c | 1 + 1 file changed, 1 insertion(+) commit 5b6385067d89f6b2262ad7da3bd13b928ccc36e9 Author: Bastien Nocera Date: Sun Sep 30 05:40:56 2012 +0200 background: Fix clearing too much from the background panels/background/cc-background-panel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit fbddd14a454cebfff6c2203abb0715b31d8ad2d1 Author: Bastien Nocera Date: Sun Sep 30 05:39:08 2012 +0200 common: Add i18n support to language test app panels/common/list-languages.c | 6 ++++++ 1 file changed, 6 insertions(+) commit 1522b3909a3beb95628773472fab9498d383c9f8 Author: Tom Tryfonidis Date: Sat Sep 29 14:52:30 2012 +0300 Fixes for Greek translation po/el.po | 87 ++++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 43 insertions(+), 44 deletions(-) commit 4b30021a97f7385eaffea209e269134e7a8ad1ef Author: Bastien Nocera Date: Fri Sep 28 13:35:28 2012 +0200 network: Top-align the back button in wifi panels panels/network/network-wifi.ui | 61 ++++++++++++++++++++++++++---------------- 1 file changed, 38 insertions(+), 23 deletions(-) commit ccc3f0bf3ce8927cd62d9ddf208e6b1b1f1ca16d Author: Bastien Nocera Date: Fri Sep 28 11:44:19 2012 +0200 network: Don't resize the panel or the wifi list panels/network/cc-network-panel.c | 6 ++++-- panels/network/net-device-wifi.c | 1 + panels/network/network-wifi.ui | 5 ++++- 3 files changed, 9 insertions(+), 3 deletions(-) commit 194d28ae5002444e5d2495f4681bb18dd171cde9 Author: Bastien Nocera Date: Fri Sep 28 11:24:11 2012 +0200 network: Simplify access to the device treeview panels/network/cc-network-panel.c | 31 +++++++++---------------------- 1 file changed, 9 insertions(+), 22 deletions(-) commit a11ad3bed1a2df01fb1a292eda4925927164fbda Author: Bastien Nocera Date: Thu Sep 27 21:07:53 2012 +0200 network: Handle argv property every time it changes Newer version of network-manager-applet required to avoid the run-time warnings though. https://bugzilla.gnome.org/show_bug.cgi?id=684983 panels/network/cc-network-panel.c | 123 +++++++++++++++++++++++++++----------- 1 file changed, 88 insertions(+), 35 deletions(-) commit f49261bb8d0728f77c45a287c4fc9c94aaa7a494 Author: Jakub Steiner Date: Fri Aug 24 16:25:53 2012 +0200 background: use a lighter texture for solid colors. https://bugzilla.gnome.org/show_bug.cgi?id=682612 panels/background/Makefile.am | 5 +++++ panels/background/bg-colors-source.c | 2 +- panels/background/noise-texture-light.png | Bin 0 -> 69136 bytes 3 files changed, 6 insertions(+), 1 deletion(-) commit 97af01b56f7fdbb979e4484c8c38a8d08935b9fb Author: Bastien Nocera Date: Fri Sep 28 01:31:02 2012 +0200 background: Fix preview when primary is not the leftmost https://bugzilla.gnome.org/show_bug.cgi?id=684985 panels/background/cc-background-panel.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) commit 4c237034747e34bcc5d18f98d6111470e5eea69d Author: Bastien Nocera Date: Thu Sep 27 22:39:12 2012 +0200 network: Remove g_print() debug panels/network/net-device-wifi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 2ab1f2172338608f5b95858d46c05b71cf46b438 Author: Bastien Nocera Date: Thu Sep 27 22:12:52 2012 +0200 datetime: Update current time when tz changes https://bugzilla.gnome.org/show_bug.cgi?id=665137 panels/datetime/cc-datetime-panel.c | 4 ++++ 1 file changed, 4 insertions(+) commit f4a8e0a73c2dc01bcaa8545fa399b944239f4201 Author: Bastien Nocera Date: Thu Sep 27 20:37:01 2012 +0200 background: Add debug to get_screenshot_async() https://bugzilla.gnome.org/show_bug.cgi?id=684985 panels/background/cc-background-panel.c | 3 +++ 1 file changed, 3 insertions(+) commit 112edc7cf72f34b6fc0b43ce714b3228f0b86699 Author: Bastien Nocera Date: Thu Sep 27 20:36:35 2012 +0200 background: Capture the primary monitor Not monitor 0. https://bugzilla.gnome.org/show_bug.cgi?id=684985 panels/background/cc-background-panel.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) commit dc559e3a9953ccef8f01802031375a722164c458 Author: Bastien Nocera Date: Thu Sep 27 20:26:50 2012 +0200 network: Clean up all args when done handling them panels/network/cc-network-panel.c | 14 +++++++------- panels/network/network-dialogs.c | 2 ++ 2 files changed, 9 insertions(+), 7 deletions(-) commit 38cbe1fb1674bc4a152398683c2592b4be477004 Author: Bastien Nocera Date: Thu Sep 27 20:22:57 2012 +0200 network: Add function to clean up the argv property panels/network/cc-network-panel.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) commit 5ae3d6b01aeda595f6a02454141f2c3be9ed673a Author: Bastien Nocera Date: Thu Sep 27 16:11:55 2012 +0200 wacom: Bump the required version of g-s-d So that GSD_WACOM_ACTION_TYPE_SWITCH_MONITOR is available. https://bugzilla.gnome.org/show_bug.cgi?id=684952 configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 287b0b917ab1e8182a2f8da0d60c6210d5ce296b Author: Bastien Nocera Date: Thu Sep 27 12:43:39 2012 +0200 region: Fix possibly uninitialised variable panels/region/gnome-region-panel-system.c | 1 + 1 file changed, 1 insertion(+) commit 3d7e215024afd4b94c86a2328f6f07d71fbd9302 Author: Bastien Nocera Date: Wed Sep 26 18:34:49 2012 +0200 mouse: Reset test area to the bottom at every try This prevents window resizes from making the first visit to the mouse test area one that doesn't scroll all the way to the bottom. 1. Open System Settings 2. Open a panel that's smaller than the mouse one (eg. Background) 3. Back to overview 4. Open Mouse panel, click on test button https://bugzilla.gnome.org/show_bug.cgi?id=684817 panels/mouse/cc-mouse-panel.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) commit f48db43be9e3642040070c7f733580f15da41fa1 Author: Bastien Nocera Date: Wed Sep 26 17:25:28 2012 +0200 common: Add more debug for select_current_language() panels/common/cc-common-language.c | 10 ++++++++++ 1 file changed, 10 insertions(+) commit 7181ca7c95b4fa9c08a02afbd95e4e17d196f133 Author: Cosimo Cecchi Date: Tue Sep 25 17:47:04 2012 -0400 user-panel: make the autologin cell renderer follow state Since it renders a symbolic icon, let it follow the state, so it takes the selected text color when the row is selected https://bugzilla.gnome.org/show_bug.cgi?id=684828 panels/user-accounts/um-user-panel.c | 1 + 1 file changed, 1 insertion(+) commit 89bb6457a2d9382deb4d37bfafc8636e8d3f2ca8 Author: Timur Zhamakeev Date: Wed Sep 26 22:28:56 2012 +0600 Updated Kyrgyz translation po/ky.po | 245 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 125 insertions(+), 120 deletions(-) commit 420240840a4c5f271342e12af34bc4ea1e968dbd Author: Cosimo Cecchi Date: Tue Sep 25 17:38:31 2012 -0400 printers: don't override search entry's icon name GtkSearchEntry already gets it right; this icon should be symbolic and there's no need to override it. https://bugzilla.gnome.org/show_bug.cgi?id=684827 panels/printers/new-printer-dialog.ui | 1 - 1 file changed, 1 deletion(-) commit cc07f54956614b0e4e04957c248e20e5061276ce Author: Timur Zhamakeev Date: Wed Sep 26 12:52:35 2012 +0600 Updated Kyrgyz translation po/ky.po | 308 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 159 insertions(+), 149 deletions(-) commit 5115a8ba7a0b9446588e545aab58e80c3739c0a1 Author: Daniel Korostil Date: Wed Sep 26 08:49:32 2012 +0300 Added uk translation po/uk.po | 12394 +++++++++++++++++++++++++++++++------------------------------ 1 file changed, 6207 insertions(+), 6187 deletions(-) commit d1afdf4dd11c01b20704ebe304e6d07dc667a78c Author: Chao-Hsiung Liao Date: Wed Sep 26 11:51:49 2012 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) po/zh_HK.po | 193 +++++++++++++++++++++++++++++++----------------------------- po/zh_TW.po | 193 +++++++++++++++++++++++++++++++----------------------------- 2 files changed, 198 insertions(+), 188 deletions(-) commit b3287e1b971db4955f2914be9f6ff69a89ad99dd Author: Bastien Nocera Date: Tue Sep 25 21:23:57 2012 +0200 shell: Fix entering the same panel twice Manually this time. https://bugzilla.gnome.org/show_bug.cgi?id=684812 shell/cinnamon-control-center.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit a6cb76eff8984a263cd6bbb18fe962cb5ae658b5 Author: Timur Zhamakeev Date: Tue Sep 25 23:27:38 2012 +0600 Added Kyrgyz translation po/ky.po | 734 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 381 insertions(+), 353 deletions(-) commit 4abdc131c9725d116157c85f515cfab2f6b14b4a Author: Rui Matos Date: Fri Sep 21 22:24:50 2012 +0200 Revert "region: Create a source from the X layout in use when setting is empty" This reverts commit 1e0192555b686f24d084903d4ce70b5534af6260. https://bugzilla.gnome.org/show_bug.cgi?id=684584 panels/region/gnome-region-panel-input.c | 48 ------------------------------- panels/region/gnome-region-panel-input.h | 2 -- panels/region/gnome-region-panel-system.c | 6 ---- 3 files changed, 56 deletions(-) commit 52387c58bea62059b4c99d1c7c176ba1d1281117 Author: Matthias Clasen Date: Sat Sep 22 13:32:24 2012 -0400 network: RTL flipping for details arrow https://bugzilla.gnome.org/show_bug.cgi?id=684604 panels/network/net-device-wifi.c | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) commit fb8b858cba020c850e09f65f9b4d83adecface3a Author: Matthias Clasen Date: Sat Sep 22 23:04:02 2012 -0400 sound: Flip the input level bar in RTL languages https://bugzilla.gnome.org/show_bug.cgi?id=684603 panels/sound/gvc-level-bar.c | 9 +++++++++ 1 file changed, 9 insertions(+) commit 2c8b16ed64e410482818e4a4bb245442fb51b1eb Author: Timur Zhamakeev Date: Tue Sep 25 16:19:56 2012 +0600 Added ky to LINGUAS po/LINGUAS | 1 + 1 file changed, 1 insertion(+) commit 70d405aaf602a440beb60e0133763fe29fa91f01 Author: Timur Zhamakeev Date: Tue Sep 25 16:19:36 2012 +0600 Added Kyrgyz translation po/ky.po | 5183 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 5183 insertions(+) commit 4a993e753a898899a6cc05dbbcc222ef6fe5cbae Author: Bastien Nocera Date: Mon Sep 24 11:37:56 2012 +0200 online-accounts: Remove unneeded signal disconnections Those signals will not be emitted anymore, as the objects that could emit them will be destroyed. Fixes a warning on exit, as panel->accounts_treeview is already destroyed when we get there. https://bugzilla.gnome.org/show_bug.cgi?id=684702 panels/online-accounts/cc-online-accounts-panel.c | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) commit 8f3c5793bba8c152549535b5d2716766aeb1b91f Author: Bastien Nocera Date: Tue Sep 25 10:47:48 2012 +0200 3.6.0 NEWS | 17 +++++++++++++++++ configure.ac | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) commit fdbcda8233ef7438e6bc0a28ab34e4cda9dbed0b Author: Petr Kovar Date: Mon Sep 24 22:03:45 2012 +0200 Update Czech translation po/cs.po | 26 +++++++++++--------------- 1 file changed, 11 insertions(+), 15 deletions(-) commit a80b3d75c501a08acbbd97406bd21d2926c72b42 Author: Matthias Clasen Date: Sat Sep 22 14:08:29 2012 -0400 users: Don't ask for the old password when none is set This prevents passwordless users (common on live cd setups) from setting a password. https://bugzilla.gnome.org/show_bug.cgi?id=684492 panels/user-accounts/um-password-dialog.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) commit 752bfc47aa776233c3aba1e38e04383719122926 Author: Petr Kovar Date: Mon Sep 24 16:01:31 2012 +0200 Update Czech translation by Adam Matousek Review by Lucas Lommer. po/cs.po | 3204 +++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 1896 insertions(+), 1308 deletions(-) commit f85347c5d05ea0500c8dbba88a8e024702b49601 Author: Alexandre Franke Date: Mon Sep 24 13:15:37 2012 +0200 Update French translation po/fr.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) commit 5198f7a5d05346b88bb17e3d3721f215e1508d5e Author: Mattias PƵldaru Date: Mon Sep 24 10:54:07 2012 +0300 [l10n] Updated Estonian translation po/et.po | 2174 ++++++++++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 1491 insertions(+), 683 deletions(-) commit cea712cc2191717d396c24b368eff3ff8369796e Author: Timo Jyrinki Date: Mon Sep 24 09:29:00 2012 +0300 Finnish translation update by Jiri Grƶnroos po/fi.po | 138 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 68 insertions(+), 70 deletions(-) commit 154349ba08f3a65c33865cf7855ed2705c654c58 Author: Anita Reitere Date: Mon Sep 24 01:18:00 2012 +0300 Updated Latvian translation po/lv.po | 4367 ++++++++++++++++++++++++++++++++++++++------------------------ 1 file changed, 2659 insertions(+), 1708 deletions(-) commit d345f2e799560ceb31d9b987a1b389035ad488af Author: Mario BlƤttermann Date: Sun Sep 23 14:40:37 2012 +0200 [l10n] Updated German translation po/de.po | 436 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 218 insertions(+), 218 deletions(-) commit c4f6c714632932e3ee9e12370974410df63143b7 Author: Theppitak Karoonboonyanan Date: Sun Sep 23 16:25:39 2012 +0700 Updated Thai translation po/th.po | 132 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 68 insertions(+), 64 deletions(-) commit eaa0edee70cdda9310016e63042f8dfc6a14429e Author: Carles Ferrando Date: Sun Sep 23 01:26:38 2012 +0200 [l10n]Updated Catalan (Valencian) translation po/ca@valencia.po | 3685 +++++++++++++++++++++++++++++++++-------------------- 1 file changed, 2311 insertions(+), 1374 deletions(-) commit 62328d03d5cb1579a0fdbb957d8c58848c6a793d Author: Joan Duran Date: Sun Sep 23 01:26:26 2012 +0200 [l10n] Updated Catalan translation po/ca.po | 3710 +++++++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 2324 insertions(+), 1386 deletions(-) commit c2c69fb93e5abafe3a163d603c475f9d62a13878 Author: Cheng Lu Date: Sat Sep 22 21:22:44 2012 +0400 update Simplified Chinese (zh_CN) translation po/zh_CN.po | 1921 ++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 1040 insertions(+), 881 deletions(-) commit f00a1cb6450140d0adb02782c0d8c0cac407a7c1 Author: Yuri Myasoedov Date: Sat Sep 22 21:22:44 2012 +0400 Updated Russian translation po/ru.po | 268 ++++++++++++++++++--------------------------------------------- 1 file changed, 77 insertions(+), 191 deletions(-) commit c3d00a6c44f56292d3541bc489899d379a5132b4 Author: Matthias Clasen Date: Fri Sep 21 16:07:46 2012 -0400 Make connecting to Enterprise WPA work again gnome-shell relies on being able to call cinnamon-control-center network connect-8021x-wifi This was broken in the big refactoring of the wifi panel last cycle. Bring it back. panels/network/cc-network-panel.c | 20 ++++++++++---------- panels/network/net-device-wifi.c | 11 ----------- panels/network/network-dialogs.c | 13 ++++++++++++- panels/network/network-dialogs.h | 2 +- 4 files changed, 23 insertions(+), 23 deletions(-) commit 1218fff1cc1b0c2453d6d7dd668b54b3a412fd82 Author: Yaron Shahrabani Date: Sat Sep 22 14:58:10 2012 +0300 Updated Hebrew translation. po/he.po | 349 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 183 insertions(+), 166 deletions(-) commit f82d1246dac6746fad0ddc6fd8715485ef463925 Author: Bruce Cowan Date: Sat Sep 22 11:22:09 2012 +0100 Updated British English translation po/en_GB.po | 68 +++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 37 insertions(+), 31 deletions(-) commit 867125c816075b1a15094132ef4b25ca1443f0c6 Author: Seong-ho Cho Date: Sat Sep 22 18:21:38 2012 +0900 Updated Korean translation po/ko.po | 171 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 88 insertions(+), 83 deletions(-) commit c8b4efd10bd05697ce66987085fcca6097c04f18 Author: Bastien Nocera Date: Tue Sep 18 13:26:28 2012 +0200 region: Switch to the input sources section When clicking on the link. https://bugzilla.gnome.org/show_bug.cgi?id=684280 panels/region/gnome-region-panel-input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 35029d6b17bc12f8d7d7bcdd8e6dd7b8befc7bf4 Author: Aurimas Černius Date: Fri Sep 21 20:50:56 2012 +0300 Updated Lithuanian translation po/lt.po | 131 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 65 insertions(+), 66 deletions(-) commit 03ceb2dfea6e06e95e23e88bc97e1b98b4d1523b Author: Ihar Hrachyshka Date: Fri Sep 21 20:04:43 2012 +0300 Updated Belarusian translation. po/be.po | 129 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 66 insertions(+), 63 deletions(-) commit 8dd9ec4b2da2929908422ea5bad8c953185740cb Author: Daniel Mustieles Date: Fri Sep 21 17:52:01 2012 +0200 Updated Spanish translation po/es.po | 120 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 62 insertions(+), 58 deletions(-) commit ff96fb22c1f709b51f230f8d5b00f3371c0ceacd Author: ManojKumar Giri Date: Fri Sep 21 20:30:06 2012 +0530 Updated translation for Odia. po/or.po | 657 +++++++++++++++++++++++++++++---------------------------------- 1 file changed, 306 insertions(+), 351 deletions(-) commit 65ed1ca9ef922072add434454a4606637d59ed01 Author: Ani Peter Date: Fri Sep 21 19:42:11 2012 +0530 Updated Malayalam file po/ml.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) commit f7ae60f058bf170945a2b24045755f77a70b5f00 Author: Ani Peter Date: Fri Sep 21 19:39:09 2012 +0530 Updated Malayalam file po/ml.po | 259 +++++++++++++++++++++------------------------------------------ 1 file changed, 85 insertions(+), 174 deletions(-) commit 558a231fc6854ff72ee8560a90a488628a863fdd Author: Ani Peter Date: Fri Sep 21 19:36:24 2012 +0530 Updated Malayalam file po/ml.po | 6167 ++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 3415 insertions(+), 2752 deletions(-) commit 93af763f32afa66373e0fd82d0d2f8de27fa5401 Author: ManojKumar Giri Date: Fri Sep 21 17:41:04 2012 +0530 Updated translation for Odia. po/or.po | 64 ++++++++++------------------------------------------------------ 1 file changed, 10 insertions(+), 54 deletions(-) commit 024f2c49fb5c4d39f0c6a8c3d9b037fb23af1db2 Author: Sweta Kothari Date: Fri Sep 21 12:42:45 2012 +0530 Updated gujarati file po/gu.po | 72 ++++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) commit cbab0b66ec90061ecf1e15726f4a272672ef6857 Author: Duarte Loreto Date: Thu Sep 20 22:15:52 2012 +0100 Updated Portuguese translation po/pt.po | 122 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 64 insertions(+), 58 deletions(-) commit 876d41b141ee102fc383369459827101af406e69 Author: Bastien Nocera Date: Thu Sep 20 20:58:28 2012 +0200 shell: Pass args to existing panels When re-activating the same panel, we could destroy and recreate the panel, or better reuse the panel, and set the new argv (usually to switch pages). Since we're changing the "argv" property of panels to not be construct- only anymore, we reviewed the panels for potential memory leaks as well. https://bugzilla.gnome.org/show_bug.cgi?id=684490 shell/cc-panel.c | 2 +- shell/cinnamon-control-center.c | 29 +++++++++++++++++++++++------ 2 files changed, 24 insertions(+), 7 deletions(-) commit ab435aa9e18f550e6926e06ab08e71282a9d442b Author: Bastien Nocera Date: Thu Sep 20 20:51:14 2012 +0200 shell: Rename current_panel to current_panel_box So that we can use current_panel for the current panel, not for the container parent of the panel. https://bugzilla.gnome.org/show_bug.cgi?id=684490 shell/cinnamon-control-center.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) commit ca8d78e6201ba07d7b8546f62b1becd16e97f3da Author: Shankar Prasad Date: Fri Sep 21 01:14:06 2012 +0530 Updated kn translation po/kn.po | 511 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 249 insertions(+), 262 deletions(-) commit 74751e874eae8778b0d382440edb73809af5d015 Author: ŠœŠøŃ€Š¾ŃŠ»Š°Š² ŠŠøŠŗŠ¾Š»ŠøŃ› Date: Thu Sep 20 20:58:04 2012 +0200 Updated Serbian translation po/sr.po | 134 +++++++++++++++++++++++++++++---------------------------- po/sr@latin.po | 134 +++++++++++++++++++++++++++++---------------------------- 2 files changed, 136 insertions(+), 132 deletions(-) commit 67d9f3a4b4655f41abfd538264a3dc0efc542bfc Author: Gabor Kelemen Date: Thu Sep 20 14:39:55 2012 +0200 Updated Hungarian translation po/hu.po | 66 ++++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 35 insertions(+), 31 deletions(-) commit 44bfa9d31fc5b138e859bbe30e6ffd38a6c2a86a Author: Sweta Kothari Date: Thu Sep 20 15:16:16 2012 +0530 Updated gujarati file po/gu.po | 955 +++++++++++++++++++++++++-------------------------------------- 1 file changed, 385 insertions(+), 570 deletions(-) commit 45b2689f6bde5018bd1d18a2ba350cbaa598f9b9 Author: Tom Tryfonidis Date: Thu Sep 20 11:09:42 2012 +0300 Updated Greek translation po/el.po | 134 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 68 insertions(+), 66 deletions(-) commit 0dfb1e2725c4b3adc2796a0de29d76068b5028d9 Author: Alexandre Franke Date: Thu Sep 20 09:11:52 2012 +0200 Update French translation po/fr.po | 127 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 65 insertions(+), 62 deletions(-) commit 7fc288302f07fe0ed6ccc821893cdc603e2b2989 Author: Sandeep Sheshrao Shedmake Date: Thu Sep 20 11:47:34 2012 +0530 Updated Marathi Translations po/mr.po | 122 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 62 insertions(+), 60 deletions(-) commit c9344e5f416adb5a116a1e67bdd67fdb7ed8098e Author: Khaled Hosny Date: Thu Sep 20 06:40:53 2012 +0200 Updated Arabic translation po/ar.po | 69 +++++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 38 insertions(+), 31 deletions(-) commit 5b776981f38674d2bc0f5fd48cad687a76133f77 Author: Praveen Illa Date: Wed Sep 19 23:25:14 2012 +0530 Updated Telugu Translation po/te.po | 3809 ++++++++++++++++++++++++++++++++++++++------------------------ 1 file changed, 2357 insertions(+), 1452 deletions(-) commit 6782f962a5299e8c67630123718146e6934a83f4 Author: Alexander Shopov Date: Wed Sep 19 20:45:31 2012 +0300 Updated Bulgarian translation po/bg.po | 125 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 66 insertions(+), 59 deletions(-) commit 9973d617496bae90e79f6c569a3f0cb82fddb59c Author: Noriko Mizumoto Date: Thu Sep 20 01:12:15 2012 +0900 [l10n] Update Japanese translation po/ja.po | 1273 +++++++++++++++++++++++++++++--------------------------------- 1 file changed, 595 insertions(+), 678 deletions(-) commit d02c7c0338ff3146737bb9023fd9761ade7ed10c Author: A S Alam Date: Wed Sep 19 21:40:57 2012 +0530 update Punjabi Translation po/pa.po | 134 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 68 insertions(+), 66 deletions(-) commit 27f7319073955d42e5fec01266121e1c34909621 Author: Rafael Ferreira Date: Wed Sep 19 10:04:01 2012 -0300 Updated Brazilian Portuguese Translation po/pt_BR.po | 101 ++++++++++++++++++++++++++++++------------------------------ 1 file changed, 50 insertions(+), 51 deletions(-) commit 2406c3a4e9b7e1443350e9b4d6d08e39193fb3ae Author: Dr.T.Vasudevan Date: Wed Sep 19 17:51:00 2012 +0530 updated Tamil translation po/ta.po | 343 ++++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 183 insertions(+), 160 deletions(-) commit 4d3bf50f1f8bfbe0425d1aab7e6aa0124890ffd6 Author: Rajesh Ranjan Date: Wed Sep 19 16:55:22 2012 +0530 hindi update po/hi.po | 40 +++++++++++++++++++--------------------- 1 file changed, 19 insertions(+), 21 deletions(-) commit 80b89a87ff75c915d9b0940af8589bc299cb9ab5 Author: Rajesh Ranjan Date: Wed Sep 19 14:17:15 2012 +0530 hindi update po/hi.po | 465 ++++++++++++++++++++++----------------------------------------- 1 file changed, 164 insertions(+), 301 deletions(-) commit e3defaa82e3b82a2303c81b659d0b586b57b8eed Author: Matej Urbančič Date: Wed Sep 19 09:03:44 2012 +0200 Updated Slovenian translation po/sl.po | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) commit 742a3cecd4d0bb4bb4b42a3b58e61ba8030e665d Author: Nilamdyuti Goswami Date: Wed Sep 19 12:06:41 2012 +0530 Assamese translation updated po/as.po | 137 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 69 insertions(+), 68 deletions(-) commit 9228ddc36e09a167ff4cab2707b14e5187dcf101 Author: Andika Triwidada Date: Wed Sep 19 10:37:38 2012 +0700 Updated Indonesian translation po/id.po | 134 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 68 insertions(+), 66 deletions(-) commit 50ae0268666a8fae2a175001427015bc7a0dc0fd Author: Fran DiĆ©guez Date: Wed Sep 19 02:52:04 2012 +0200 Updated Galician translations po/gl.po | 131 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 68 insertions(+), 63 deletions(-) commit 25973a1ea4d75a41921bc986b9e182ac87254233 Author: Piotr Drąg Date: Wed Sep 19 01:14:11 2012 +0200 Updated Polish translation po/pl.po | 137 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 71 insertions(+), 66 deletions(-) commit 5f27eb0cec5efd3da76fae8a8bfbb1bedf01656a Author: Bastien Nocera Date: Wed Sep 19 00:52:24 2012 +0200 power: Make Tip translatable https://bugzilla.gnome.org/show_bug.cgi?id=684309 panels/power/cc-power-panel.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) commit 491234c533adecf83abe03fa298e1e76639bdc4e Author: Bastien Nocera Date: Tue Sep 18 19:01:36 2012 +0200 keyboard: Handle arguments for the shortcuts tab So it's possible to switch directly to a section of the shortcuts tab, rather than have users look for particular sections when redirected there through a link. https://bugzilla.gnome.org/show_bug.cgi?id=684280 panels/keyboard/cc-keyboard-panel.c | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) commit 22e31eb3f7c946cdf987f6fc38ef616bd82dd46e Author: Bastien Nocera Date: Tue Sep 18 19:01:06 2012 +0200 keyboard: Add ability to switch to a shortcuts section With some new API. https://bugzilla.gnome.org/show_bug.cgi?id=684280 panels/keyboard/keyboard-shortcuts.c | 78 +++++++++++++++++++++++++++++++++--- panels/keyboard/keyboard-shortcuts.h | 1 + 2 files changed, 73 insertions(+), 6 deletions(-) commit 968618ef8b0206971addf6924abc63b6d37795ba Author: Bastien Nocera Date: Tue Sep 18 18:57:50 2012 +0200 keyboard: Add unique IDs for each shortcuts section Rather than relying on comparison of translated strings. https://bugzilla.gnome.org/show_bug.cgi?id=684280 panels/keyboard/keyboard-shortcuts.c | 37 ++++++++++++++++++++---------------- 1 file changed, 21 insertions(+), 16 deletions(-) commit d150446139a601276b3868260fa77fc31191ef69 Author: Matej Urbančič Date: Tue Sep 18 21:08:31 2012 +0200 Updated Slovenian translation po/sl.po | 96 +++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 50 insertions(+), 46 deletions(-) commit c3c0f2a3e54e00555666c05ad2d4a41ffbf3f7c4 Author: Piotr Drąg Date: Tue Sep 18 18:39:52 2012 +0200 Mark string as translatable panels/network/network-wifi.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 486d17039b0c8da44732b2e90ad717f585ffc841 Author: Daniel Mustieles Date: Tue Sep 18 16:35:36 2012 +0200 Updated Spanish translation po/es.po | 42 +++++++++++++++++++----------------------- 1 file changed, 19 insertions(+), 23 deletions(-) commit 5b6c95500b74c88e83b3c3452d6055d12e65ceb6 Author: Rajesh Ranjan Date: Tue Sep 18 17:23:19 2012 +0530 hindi update po/hi.po | 4290 ++++++++++++++++++++++++++++++++++++++------------------------ 1 file changed, 2624 insertions(+), 1666 deletions(-) commit a3cda9a3daa9d93a4c7044d820e15f1f00d97e1d Author: Gabor Kelemen Date: Tue Sep 18 10:04:28 2012 +0200 Updated Hungarian translation po/hu.po | 1041 +++++++++++--------------------------------------------------- 1 file changed, 183 insertions(+), 858 deletions(-) commit ff34f7e29b6e4e20ea7995a47b6ce0ea2a7b918d Author: Sandeep Sheshrao Shedmake Date: Tue Sep 18 13:33:00 2012 +0530 Updated Marathi Translations po/mr.po | 248 ++++++++++++++++++++++++++++----------------------------------- 1 file changed, 111 insertions(+), 137 deletions(-) commit c8bb4c8fbed5382e58dfbb0706d767d3c11433fe Author: Chris Leonard Date: Mon Sep 17 20:45:52 2012 +0100 Updated British English translation po/en_GB.po | 572 +++++++++++++++++++++++++++++------------------------------- 1 file changed, 281 insertions(+), 291 deletions(-) commit 9648fae3beb793b6e0aab1cd727e25ec3012cd53 Author: Chris Leonard Date: Mon Sep 17 20:42:58 2012 +0100 Updated British English translation po/en_GB.po | 34 +++++++++++++++++++++++++++------- 1 file changed, 27 insertions(+), 7 deletions(-) commit d2209c3542cc762f76461cf88ee3b01a9ee85754 Author: Khaled Hosny Date: Mon Sep 17 20:43:41 2012 +0200 Updated Arabic translation po/ar.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) commit e846becec0ba60170325a2e0db0d7fc091c9a070 Author: Khaled Hosny Date: Mon Sep 17 20:31:04 2012 +0200 Updated Arabic translation po/ar.po | 357 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 187 insertions(+), 170 deletions(-) commit 5a23d99ce95c707ce326ff6c9f75cc9e3175f058 Author: Bastien Nocera Date: Mon Sep 17 19:49:36 2012 +0200 3.5.92 NEWS | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ configure.ac | 2 +- 2 files changed, 54 insertions(+), 1 deletion(-) commit 95fb453d879b00f98c2e7cc13eb988ca48b2ae13 Author: Bastien Nocera Date: Mon Sep 17 12:33:51 2012 +0100 user-accounts: Disable password changing for remote users Works-around: https://bugs.freedesktop.org/show_bug.cgi?id=55002 See also: https://bugzilla.gnome.org/show_bug.cgi?id=681866#c11 panels/user-accounts/um-user-panel.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit 0721469d566e1005415c974c8cfd29ad718497cd Author: Stef Walter Date: Mon Sep 17 14:19:53 2012 +0200 user-accounts: Default LocalAccount property to TRUE When loading properties from the AccountsService we may encounter an implementation that does not yet have the LocalAccount property, so set the LocalAccount property to TRUE by default to make things work correctly in the above case. https://bugzilla.gnome.org/show_bug.cgi?id=684207 panels/user-accounts/um-user.c | 3 +++ 1 file changed, 3 insertions(+) commit 0882d9131823dc34f2b8aa70d91961422e54c408 Author: Theppitak Karoonboonyanan Date: Mon Sep 17 22:31:57 2012 +0700 Updated Thai translation po/th.po | 5257 +++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 3128 insertions(+), 2129 deletions(-) commit 531c568645ba3ba21a8b600f8b7ab35925748d0b Author: Djavan Fagundes Date: Mon Sep 17 10:05:34 2012 -0300 Updated Brazilian Portuguese translation by Rafael Ferreira and myself po/pt_BR.po | 5061 +++++++++++++++++++++++++++++++++++------------------------ 1 file changed, 3003 insertions(+), 2058 deletions(-) commit 31a293bc08d2ac5fe3b0a8c9e8cb06b1d3b9d432 Author: Stef Walter Date: Mon Sep 17 10:32:23 2012 +0200 user-accounts: Fix memory leak of realm list https://bugzilla.gnome.org/show_bug.cgi?id=684188 panels/user-accounts/um-realm-manager.c | 1 + 1 file changed, 1 insertion(+) commit 65aaaf9d0451ba076ee7d8f09e7a472dc9926024 Author: Stef Walter Date: Mon Sep 3 16:16:42 2012 +0200 user-accounts: Add debug messages to user creation and realm procedures https://bugzilla.gnome.org/show_bug.cgi?id=684185 panels/user-accounts/um-account-dialog.c | 27 +++++++++++++++++ panels/user-accounts/um-realm-manager.c | 52 +++++++++++++++++++++++++++----- 2 files changed, 72 insertions(+), 7 deletions(-) commit 09e62d679c9f16fe05d476773632c3761510c92d Author: Stef Walter Date: Mon Sep 17 10:42:31 2012 +0200 user-accounts: Relicense UmRealmManager to GPLv2+ And update the 'Written By' of UmRealmManager https://bugzilla.gnome.org/show_bug.cgi?id=683420 panels/user-accounts/um-realm-manager.c | 5 ++--- panels/user-accounts/um-realm-manager.h | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) commit b4251d847be7d25ffcdb28b85fbdef42a542222e Author: Daiki Ueno Date: Thu Sep 13 10:15:46 2012 +0900 region: move Amharic in IBus engine whitelist Move Amharic input method to non-trivial unconfirmed section. https://bugzilla.gnome.org/show_bug.cgi?id=683697 panels/region/gnome-region-panel-input.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit e09ca1074c1ed585d1379980f83a2ae191618080 Author: Daiki Ueno Date: Tue Sep 11 10:38:17 2012 +0900 region: add non-trivial IBus engines to whitelist Add non-trivial IBus engines such as transliteration based ones. Though these engines have not yet confirmed by local language users, it would be probably safe to leave them. https://bugzilla.gnome.org/show_bug.cgi?id=683697 panels/region/gnome-region-panel-input.c | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) commit bd5105d7f61d2e536d981991c6d94cc9f86fb7d1 Author: Daiki Ueno Date: Tue Sep 11 10:13:26 2012 +0900 region: whitelist IBus engines with no XKB equiv Some IBus engines don't have XKB equivalents, so need to be whitelisted to be usable. https://bugzilla.gnome.org/show_bug.cgi?id=683697 panels/region/gnome-region-panel-input.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) commit ab43e935a5c4fc1824acaf9d9357be22be438657 Author: Daiki Ueno Date: Tue Sep 11 09:56:35 2012 +0900 region: add wubi and erbi to IBus engine whitelist wubi and erbi (both from ibus-table) are popular stroke based input methods for inputing Simplified Chinese and Traditional Chinese. A local user said that wubi covers at least 20% of the Simplified Chinese users. erbi is similar to wubi and getting popular because of easiness to learn. https://bugzilla.gnome.org/show_bug.cgi?id=683697 panels/region/gnome-region-panel-input.c | 2 ++ 1 file changed, 2 insertions(+) commit 521bcadd512f81a4c103f03177ced7c59049aae7 Author: Daiki Ueno Date: Thu Sep 13 10:03:37 2012 +0900 region: remove Farsi item from IBus engine whitelist m17n:fa:isiri is removed from IBus engine whitelist, since it has XKB equivalent. https://bugzilla.gnome.org/show_bug.cgi?id=683697 panels/region/gnome-region-panel-input.c | 3 --- 1 file changed, 3 deletions(-) commit 89007c64ff3a7584bc0e79c80910c6e22a244c1f Author: Daiki Ueno Date: Tue Sep 11 09:51:50 2012 +0900 region: mark Vietnamese IBus engine whitelist as confirmed A local user confirmed that the Vietnamese whitelist items cover 90% of the language users, thus it is now marked as "confirmed". https://bugzilla.gnome.org/show_bug.cgi?id=683697 panels/region/gnome-region-panel-input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit a61f0654b98357283ef68bea6d827aabc0a2779e Author: Benjamin Berg Date: Sun Sep 16 17:09:45 2012 -0400 display: Fix coordinate calculations https://bugzilla.gnome.org/show_bug.cgi?id=681475 panels/display/scrollarea.c | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) commit bfca71076d654f91190b2349ad481aff9490c148 Author: Matthias Clasen Date: Sun Sep 16 16:15:22 2012 -0400 users: Fix a typo One translatable string contained the typo 'enterpise logins', where it should have said 'enterprise logins'. Pointed out in https://bugzilla.gnome.org/show_bug.cgi?id=684122 This commit updates the msgid in all .po files, so translations should not be negatively affected by this string change. panels/user-accounts/data/account-dialog.ui | 2 +- po/ar.po | 2 +- po/as.po | 2 +- po/be.po | 2 +- po/bg.po | 2 +- po/da.po | 2 +- po/de.po | 2 +- po/el.po | 2 +- po/en_GB.po | 4 ++-- po/es.po | 2 +- po/fa.po | 2 +- po/fi.po | 2 +- po/fr.po | 2 +- po/gl.po | 2 +- po/gu.po | 2 +- po/he.po | 2 +- po/hu.po | 2 +- po/id.po | 2 +- po/ja.po | 2 +- po/kn.po | 2 +- po/ko.po | 2 +- po/lt.po | 2 +- po/mr.po | 2 +- po/nb.po | 2 +- po/or.po | 2 +- po/pa.po | 2 +- po/pl.po | 2 +- po/pt.po | 2 +- po/ru.po | 2 +- po/sl.po | 2 +- po/sr.po | 2 +- po/sr@latin.po | 2 +- po/ta.po | 2 +- po/uk.po | 2 +- po/vi.po | 2 +- po/zh_CN.po | 2 +- po/zh_HK.po | 2 +- po/zh_TW.po | 2 +- 38 files changed, 39 insertions(+), 39 deletions(-) commit f251788f9ae4fb0a9dac84c4999d6bc11c3cc192 Author: Matthias Clasen Date: Sun Sep 16 15:46:25 2012 -0400 region: Fix a layout problem on the system tab The Format: row was being pushed to the bottom, and when the input sources value was longer on the one side than the other, the horizontal alignment was broken. panels/region/gnome-region-panel.ui | 13 +++++++++++++ 1 file changed, 13 insertions(+) commit 914e8b25629dbb1c8da83926098ecd7de9c2242f Author: Bastien Nocera Date: Thu Sep 13 01:23:38 2012 +0100 region: Handle input sources in the system tab Unfortunately we don't have a way yet to make gsettings system wide defaults so we are just using the localed API to export the XKB input sources and ignore the IBus ones. https://bugzilla.gnome.org/show_bug.cgi?id=683875 panels/region/gnome-region-panel-input.c | 2 +- panels/region/gnome-region-panel-input.h | 2 + panels/region/gnome-region-panel-system.c | 157 +++++++++++++++++++++++++++++- 3 files changed, 155 insertions(+), 6 deletions(-) commit 77700f82ffa623d9776ac5b3ab69a7f996b9c21b Author: Seong-ho Cho Date: Mon Sep 17 01:35:00 2012 +0900 Updated Korean translation po/ko.po | 3626 +++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 2037 insertions(+), 1589 deletions(-) commit 8083977272c04107ec6f3f4c5d306517f05f45dc Author: Daniel Mustieles Date: Sun Sep 16 13:19:38 2012 +0200 Updated Spanish translation po/es.po | 201 +++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 111 insertions(+), 90 deletions(-) commit f5c0dda9eb8add1618f8f6da58135229c363c47a Author: Chao-Hsiung Liao Date: Sun Sep 16 12:22:50 2012 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) po/zh_HK.po | 294 ++++++++++++++++++++++++++++++++---------------------------- po/zh_TW.po | 294 ++++++++++++++++++++++++++++++++---------------------------- 2 files changed, 312 insertions(+), 276 deletions(-) commit c69d46cc4e098baaada0c40a6b61ec7cd24e889a Author: Ask H. Larsen Date: Sun Sep 16 02:04:10 2012 +0200 Updated Danish translation po/da.po | 5055 ++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 2983 insertions(+), 2072 deletions(-) commit e4907262773b42cb0a295c7f18f281e3d97f3479 Author: Matej Urbančič Date: Sat Sep 15 22:48:26 2012 +0200 Updated Slovenian translation po/sl.po | 156 +++++++++++++++++++++++---------------------------------------- 1 file changed, 56 insertions(+), 100 deletions(-) commit c063f854176e6ee2cf9a821972723dd7ff759fd6 Author: Matej Urbančič Date: Sat Sep 15 22:13:56 2012 +0200 Updated Slovenian translation po/sl.po | 409 +++++++++++++++++++++++++++++---------------------------------- 1 file changed, 186 insertions(+), 223 deletions(-) commit 08f57a1b6644e5c7a6249dae309f1c00d1bb5d71 Author: Timo Jyrinki Date: Sat Sep 15 22:51:27 2012 +0300 Finnish translation update by Jiri Grƶnroos po/fi.po | 459 ++++++++++++++++++++++----------------------------------------- 1 file changed, 160 insertions(+), 299 deletions(-) commit d4e00f6ced184577be50ce918956450e3e2b9201 Author: Duarte Loreto Date: Sat Sep 15 19:41:33 2012 +0100 Updated Portuguese translation po/pt.po | 204 ++++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 110 insertions(+), 94 deletions(-) commit 8cdcc1eb433571c03841db9fdc949d69d971c92f Author: Yuri Myasoedov Date: Sat Sep 15 15:39:39 2012 +0400 Updated Russian translation po/ru.po | 154 ++++++++++++++++++++++++++------------------------------------- 1 file changed, 64 insertions(+), 90 deletions(-) commit 9b9dfc9ebd01791a211dfdaedb562e2d8fb3ba65 Author: Ivaylo Valkov Date: Sat Sep 15 09:37:14 2012 +0300 Updated Bulgarian translation po/bg.po | 3392 +++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 2007 insertions(+), 1385 deletions(-) commit f52d6c35137d46fa136cce1ebdb23342d93647eb Author: Andika Triwidada Date: Sat Sep 15 11:54:12 2012 +0700 Updated Indonesian translation po/id.po | 274 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 141 insertions(+), 133 deletions(-) commit 56744d801bd80b2cbb10885f6156dd527f9ae793 Author: Yuri Myasoedov Date: Fri Sep 14 20:38:53 2012 +0400 Updated Russian translation po/ru.po | 2912 +++++++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 1842 insertions(+), 1070 deletions(-) commit b68b6d84cd01eff2517aed27c57b6471a65294d5 Author: Debarshi Ray Date: Fri Sep 14 13:38:06 2012 +0200 online-accounts: Get rid of extra "Add Account" label Back in the day when titles were not shown for modal dialogs we added the big "Add Account" label. Now that modal dialogs have titles, we don't need it anymore. Fixes: https://bugzilla.gnome.org/684013 .../online-accounts/cc-online-accounts-add-account-dialog.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) commit 5f6391059273bdf7309763a26ab499d9da7a7b0d Author: Ihar Hrachyshka Date: Fri Sep 14 13:21:57 2012 +0300 Updated Belarusian translation. po/be.po | 258 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 135 insertions(+), 123 deletions(-) commit 932a23ba308b9c009d76bc0949dc9856f23714c4 Author: ŠœŠøŃ€Š¾ŃŠ»Š°Š² ŠŠøŠŗŠ¾Š»ŠøŃ› Date: Fri Sep 14 09:44:45 2012 +0200 Updated Serbian translation po/sr.po | 279 ++++++++++++++++++++++++++++++--------------------------- po/sr@latin.po | 279 ++++++++++++++++++++++++++++++--------------------------- 2 files changed, 298 insertions(+), 260 deletions(-) commit 24f21af498e78965708f757ea7eafdfd7944c972 Author: Alexandre Franke Date: Fri Sep 14 09:32:55 2012 +0200 Update French translation po/fr.po | 3120 +++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 1850 insertions(+), 1270 deletions(-) commit 8b036a133f5270c8a558463c63b13b86909d4919 Author: A S Alam Date: Fri Sep 14 07:24:20 2012 +0530 update Punjabi Translation po/pa.po | 190 ++++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 102 insertions(+), 88 deletions(-) commit 1e0192555b686f24d084903d4ce70b5534af6260 Author: Rui Matos Date: Thu Sep 13 16:20:29 2012 +0200 region: Create a source from the X layout in use when setting is empty We don't want to show an empty input sources list so we create a source from the current X layout in case the setting is empty. https://bugzilla.gnome.org/show_bug.cgi?id=683879 panels/region/gnome-region-panel-input.c | 48 ++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) commit fb6881d53b6487c3503e352b0bf0356faf6b637a Author: Rui Matos Date: Sat Sep 8 18:25:50 2012 +0200 region: Handle the case of an empty input sources list We would end up in an endless loop on update. https://bugzilla.gnome.org/show_bug.cgi?id=683879 panels/region/gnome-region-panel-input.c | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) commit ff5767b9cb56ec30b89be6d7dde47bf623373a23 Author: Fran DiĆ©guez Date: Fri Sep 14 00:12:31 2012 +0200 Updated Galician translations po/gl.po | 185 ++++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 100 insertions(+), 85 deletions(-) commit 100c87519aa9a99d721855b3aa35457212eb1040 Author: Aurimas Černius Date: Thu Sep 13 22:37:21 2012 +0300 Updated Lithuanian translation po/lt.po | 263 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 135 insertions(+), 128 deletions(-) commit 75f76aa453ffd3de23e0c4e506ca3151645614cc Author: Daniel Korostil Date: Thu Sep 13 20:11:53 2012 +0300 uk update po/uk.po | 9144 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 4572 insertions(+), 4572 deletions(-) commit d2e56f2bd6a14b2f497220061af4c238ebfcf293 Author: Daniel Korostil Date: Thu Sep 13 20:06:35 2012 +0300 uk update po/uk.po | 5069 ++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 2983 insertions(+), 2086 deletions(-) commit d2b5c1cbfa137193557c446d3a49774c13056a9b Author: Nilamdyuti Goswami Date: Thu Sep 13 21:04:26 2012 +0530 Assamese translation updated po/as.po | 205 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 104 insertions(+), 101 deletions(-) commit 941dd0ead5fb2df239d47866876caa3a08b95511 Author: Piotr Drąg Date: Thu Sep 13 17:02:36 2012 +0200 Updated Polish translation po/pl.po | 267 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 138 insertions(+), 129 deletions(-) commit 44fff9996a762299ac792d739eba43aefc2f6c55 Author: Tom Tryfonidis Date: Thu Sep 13 18:02:27 2012 +0300 Updated Greek translation po/el.po | 187 +++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 103 insertions(+), 84 deletions(-) commit 98040db22a6450d7d782b8f63d83f6d86a870683 Author: Matthias Clasen Date: Sat Sep 8 23:33:24 2012 -0400 network: No selection in the wifi list Set the selection mode to none, to avoid a meaningless and distracting blue selection in the wifi list. panels/network/network-wifi.ui | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit 794b89d561b20a7237509f581ac431a09b6265e6 Author: Matthias Clasen Date: Sat Sep 8 23:29:15 2012 -0400 network: Handle activation in the wifi list better Instead of manually handling button release events on the treeview, use activatable cell renderers for the ssid text and for the arrow, and connect to activate signals for them. We use cell area focus-sibling technology to make the keynav in the list just have focus locations for the ssid and the arrow. This makes the details pages reachable by keynav, which was not the case before. panels/network/net-device-wifi.c | 203 ++++++++++++++++++++------------------- 1 file changed, 106 insertions(+), 97 deletions(-) commit 24968aad71ddd32edd5213f7eef925a180bfaf25 Author: Matthias Clasen Date: Sat Sep 8 23:28:10 2012 -0400 network: Add cell renderers These are activatable variants of text and pixbuf cell renderers. They emit an 'activate' signal when clicked or activated by keyboard. panels/network/Makefile.am | 4 ++ panels/network/panel-cell-renderer-pixbuf.c | 82 +++++++++++++++++++++++++++++ panels/network/panel-cell-renderer-pixbuf.h | 61 +++++++++++++++++++++ panels/network/panel-cell-renderer-text.c | 82 +++++++++++++++++++++++++++++ panels/network/panel-cell-renderer-text.h | 61 +++++++++++++++++++++ 5 files changed, 290 insertions(+) commit 292c8b9fe68bad03186c9bc22acfdeecb2aa731b Author: Matthias Clasen Date: Sat Sep 8 23:32:21 2012 -0400 network: Don't override cell renderer properties The mode cell renderer had a property named 'mode', which clashed with the GtkCellRenderer property of that name, which confused the treeview keynav. Rename the new property to ap-mode. panels/network/net-device-wifi.c | 2 +- panels/network/panel-cell-renderer-mode.c | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) commit 701fb2846ff8c8705e7df3e284b57d34acc0aeff Author: Matthias Clasen Date: Sat Sep 8 21:37:47 2012 -0400 network: Avoid critical warnings Remove the reference to the new longer existing viewport_list widget, and be more careful about getting a NMRemoteSettings object when calculating the last used time. panels/network/net-device-wifi.c | 106 +++++++++++++++++++-------------------- 1 file changed, 51 insertions(+), 55 deletions(-) commit 36958cbf84325805ee16f74a04362239f607e9ff Author: Matthias Clasen Date: Sat Sep 8 21:17:47 2012 -0400 network: Improve the wifi list appearance Use non-symbolic icons for the arrow, and add padding around the arrow and the check mark. https://bugzilla.gnome.org/show_bug.cgi?id=682270 panels/network/net-device-wifi.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit a04445ebd75d48ab25489647c096eca137ad538a Author: Matthias Clasen Date: Sat Sep 8 21:17:24 2012 -0400 network: Remove one more reference to the subnet widgets panels/network/panel-common.c | 5 ----- 1 file changed, 5 deletions(-) commit 7882874a14b62dfbaf93aa05a698e0007c79344f Author: Matthias Clasen Date: Sat Sep 8 21:13:19 2012 -0400 network: Remove a reference to a no-longer existing widget panels/network/network-wired.ui | 1 - 1 file changed, 1 deletion(-) commit 63fd710f8334b2c24d84a5722754c98c378e0594 Author: Matthias Clasen Date: Sat Sep 8 20:26:11 2012 -0400 network: Small tweak for vpn page Make selectable labels on the vpn page focusable as well. panels/network/network-vpn.ui | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) commit aec8cdd7f19374b265d0d5ccd2700a9ab8eaf9e1 Author: Matthias Clasen Date: Sat Sep 8 20:24:48 2012 -0400 network: Don't show subnet for wired either We don't show it for wifi details, and it is causing ugly warnings from the setting code. At the same time, make all selectable labels on the wired page focusable as well, to be consistent with wifi. panels/network/network-wired.ui | 51 ++++++++--------------------------------- panels/network/panel-common.c | 7 ------ 2 files changed, 9 insertions(+), 49 deletions(-) commit 17e3c23cd5d75cc89341a22cb54ee6f484d6261b Author: Matthias Clasen Date: Sat Sep 8 20:10:26 2012 -0400 network: Remove references to no-longer existing widgets And also make sure the initial focus on the details page is always on the back button. panels/network/net-device-wifi.c | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) commit 75d815ded3903734f0ae25bc0eecb401bd225beb Author: Matthias Clasen Date: Sat Sep 8 19:48:36 2012 -0400 network: Remove the saved-ap tab Saved connections without an access point are now shown in the same tab as all the others. panels/network/net-device-wifi.c | 22 +--- panels/network/network-wifi.ui | 249 --------------------------------------- 2 files changed, 2 insertions(+), 269 deletions(-) commit 18248493d51ab12081b81a43694869cdbc95c4a0 Author: Matthias Clasen Date: Sat Sep 8 19:41:31 2012 -0400 network: Remove an unused object from the ui file panels/network/network-wifi.ui | 5 ----- 1 file changed, 5 deletions(-) commit 32c29a3f253b13910912b3529d3ddfccc02c9f91 Author: Matthias Clasen Date: Sat Sep 8 19:35:15 2012 -0400 network: Only show 'Out of range' when appropriate Showing it whenever we have a saved connection goes wrong for all items where we have both an ap and a saved connection. Also, use the same details page for out-of-range saved connections. panels/network/net-device-wifi.c | 42 ++++++++++++++++++---------------------- panels/network/network-wifi.ui | 10 ++++++---- 2 files changed, 25 insertions(+), 27 deletions(-) commit 3871d52947120c4b08e3898ae6e0e5ab0294898b Author: Matthias Clasen Date: Sat Sep 8 19:06:28 2012 -0400 network: Make 'Connect to hidden' work again panels/network/net-device-wifi.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) commit f10a29b10f5ae2fbf681481d400ec44393092c59 Author: Matthias Clasen Date: Sat Sep 8 18:15:53 2012 -0400 network: Make all values selectable and focusable Also, sort them so that the focus chain makes sense. panels/network/network-wifi.ui | 287 ++++++++++++++++++++--------------------- 1 file changed, 143 insertions(+), 144 deletions(-) commit 78e9ed9ceacb0b09cbe4eda35261dc66b4d8222e Author: Matthias Clasen Date: Sat Sep 8 17:49:25 2012 -0400 network: Say 'never' when the connection hasn't been used Nicer to say 'Last used: never', then to show nothing. panels/network/net-device-wifi.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit 16011384efe4ad5841be067b2856060c949f87b3 Author: Matthias Clasen Date: Sat Sep 8 17:47:01 2012 -0400 network: Say 'today' instead of '0 days ago' 'Last used: 0 days ago' is odd. Also, say 'yesterday' instead of '1 day ago'. panels/network/net-device-wifi.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) commit f6aff65e6434a92dddcbc43dd3dfc815fdc253dc Author: Matthias Clasen Date: Sat Sep 8 17:44:05 2012 -0400 network: Add a 'Last used' item Copy the 'Last used' item for non-active, in-range access points. This is another step towards using the same details page for all aps and connections. panels/network/net-device-wifi.c | 10 ++ panels/network/network-wifi.ui | 279 ++++++++++++++++++++++----------------- 2 files changed, 166 insertions(+), 123 deletions(-) commit ab045fcc0b9a48267a4c61ed9918a51407b1171d Author: Matthias Clasen Date: Sat Sep 8 17:30:37 2012 -0400 network: Add a period to the disconnect warning panels/network/net-device-wifi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 1ba197468b76e935608b6b3af5a7c4ae2a7f6c8a Author: Matthias Clasen Date: Sat Sep 8 17:29:46 2012 -0400 network: Add a 'Connect' button When showing details of a non-active access point, replace the 'Disconnect' button with a 'Connect' button. panels/network/net-device-wifi.c | 60 +++++++++++++++++++++-- panels/network/network-wifi.ui | 102 +++++++++++++++++++++++++-------------- 2 files changed, 122 insertions(+), 40 deletions(-) commit 518efcda09cc492792732dca04b2124c43c3b154 Author: Matthias Clasen Date: Sat Sep 8 16:58:14 2012 -0400 network: Start handling disconnected APs correctly When showing the details for an in-range, but not active access point, we were just always showing details for the currently active connection. This commit starts to sort things apart. panels/network/net-device-wifi.c | 120 ++++++++++++++++++++++++--------------- panels/network/network-wifi.ui | 28 ++++----- panels/network/panel-common.c | 10 ++++ panels/network/panel-common.h | 1 + 4 files changed, 94 insertions(+), 65 deletions(-) commit bcbc6d1aafbb26f6379e0448da16539afcab8d53 Author: Matthias Clasen Date: Sat Sep 8 16:11:29 2012 -0400 network: Remove unused object from ui file The liststore for wifi connections is now defined in network-wifi.ui, the object in network.ui is a leftover. panels/network/network.ui | 18 ------------------ 1 file changed, 18 deletions(-) commit 69a823f9a9a2ea986de293b48c779391ac4ad0bd Author: Matthias Clasen Date: Sat Sep 8 15:41:18 2012 -0400 network: Rename a function 'Connect to hidden' is not really an access point. Update the function name to reflect that. Also, update the translator comment to be more to the point. panels/network/net-device-wifi.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) commit ac67290cb7cf2f0830afd39350d5e501c7d1d0d9 Author: Matthias Clasen Date: Sat Sep 8 15:25:31 2012 -0400 network: Make the 'Settings...' buttons work properly The code was assuming that 'editing' always means editing the currently active connection. With the new design of the wifi details tabs, that is no longer the case, we want to be able to edit non-active connections. This commit makes it so. panels/network/net-device-wifi.c | 48 +++++++++++++++++++++++++++++++++++----- 1 file changed, 42 insertions(+), 6 deletions(-) commit 56a0be042243d250c32c98c448b20049f56bc7c3 Author: Matthias Clasen Date: Sat Sep 8 15:24:39 2012 -0400 network: Add more buttons Make the details pages for in-range and out-of-range aps more similar, by adding 'Forget Network' and 'Settings...' buttons to both. This is a step towards using the same details page for all aps and connections. panels/network/network-wifi.ui | 127 +++++++++++++++++++++++++++-------------- 1 file changed, 84 insertions(+), 43 deletions(-) commit 31dade6279e9b23f77d37beb013921f009be0168 Author: Matthias Clasen Date: Sat Sep 8 14:23:36 2012 -0400 network: Mark all rows representing saved connections as such When we find a saved connection among the access points already in the list, we forget to mark it as saved, so the arrow to go to the details page is not shown. panels/network/net-device-wifi.c | 1 + 1 file changed, 1 insertion(+) commit ec629b73ad5e2b29eb49992861b0c46faf58b7b4 Author: Matthias Clasen Date: Sat Sep 8 14:22:17 2012 -0400 network: Add a separator before the arrow when needed The separator is giving a hint that there are two clickable areas in the row. https://bugzilla.gnome.org/show_bug.cgi?id=682270 panels/network/Makefile.am | 2 + panels/network/net-device-wifi.c | 57 ++++++++++- panels/network/panel-cell-renderer-separator.c | 130 +++++++++++++++++++++++++ panels/network/panel-cell-renderer-separator.h | 62 ++++++++++++ 4 files changed, 250 insertions(+), 1 deletion(-) commit 7ef84e87e9728587aea5fd3cf80031c5b1a894c1 Author: Matthias Clasen Date: Thu Sep 13 01:19:35 2012 -0400 mouse: Fix accessible labels for switches in mouse panel Setting mnemonic-widget on the labels makes orca read out meaningful text for the switches. https://bugzilla.gnome.org/show_bug.cgi?id=683703 panels/mouse/gnome-mouse-properties.ui | 1 + 1 file changed, 1 insertion(+) commit 828e896e12a31427e6e56f855365bfca2ff151dc Author: Matthias Clasen Date: Thu Sep 13 01:18:55 2012 -0400 bluetooth: Fix accessible labels for switches in bluetooth panel Setting mnemonic-widget on the labels makes orca read out meaningful text for the switches. https://bugzilla.gnome.org/show_bug.cgi?id=683703 panels/bluetooth/bluetooth.ui | 2 ++ 1 file changed, 2 insertions(+) commit 1db660c410769930eef6d043e36e3e13f4267a96 Author: Matthias Clasen Date: Thu Sep 13 00:40:32 2012 -0400 screen: Make notification checkbox focusable This was certainly just an oversight, but it makes the checkbox essentially nonaccessible. panels/screen/screen.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 539d78cb63e542b6d0e060c9d2e41ea817701458 Author: Matthias Clasen Date: Thu Sep 13 06:28:44 2012 -0400 universal access: Fix labels for switches in zoom options Setting mnemonic-widget on the labels makes orca read out meaningful text for the switches. https://bugzilla.gnome.org/show_bug.cgi?id=683703 panels/universal-access/zoom-options.ui | 10 ++++++++++ 1 file changed, 10 insertions(+) commit 4e24e944ebed97cf9ca7e813267b6ffbb1fa7090 Author: Matthias Clasen Date: Thu Sep 13 06:26:24 2012 -0400 Universal access: Fix up whitespace in zoom options dialog https://bugzilla.gnome.org/show_bug.cgi?id=683544 panels/universal-access/zoom-options.ui | 56 ++++++++++++++++----------------- 1 file changed, 27 insertions(+), 29 deletions(-) commit d5a186d26c3bf4f9af9eab6c786b44e45ca82f3a Author: Matthias Clasen Date: Thu Sep 13 00:38:46 2012 -0400 universal access: Fix accessible labels for switches Setting mnemonic-widget on the labels makes orca read out meaningful text for the switches. https://bugzilla.gnome.org/show_bug.cgi?id=683703 panels/universal-access/uap.ui | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) commit 4f59a4aee657b11aa11fe23f74cea8a570725083 Author: Tom Tryfonidis Date: Thu Sep 13 13:15:55 2012 +0300 Updated Greek translation po/el.po | 185 ++++++++++++++++++++++++++++++--------------------------------- 1 file changed, 87 insertions(+), 98 deletions(-) commit e0c68028be17a5a102c699620f08486616027f62 Author: Daniel Mustieles Date: Thu Sep 13 09:46:00 2012 +0200 Updated Spanish translation po/es.po | 99 ++++++++++++++++++++++++++++++---------------------------------- 1 file changed, 47 insertions(+), 52 deletions(-) commit 8679167492daf471e2bb81dbae82ecc565fe4177 Author: Ville-Pekka Vainio Date: Wed Sep 12 22:31:31 2012 +0300 Finnish translation update by Jiri Grƶnroos po/fi.po | 3883 ++++++++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 2490 insertions(+), 1393 deletions(-) commit 5186ae767c343a349637a992eed578994eaac144 Author: ManojKumar Giri Date: Wed Sep 12 20:31:03 2012 +0530 Updated translation for Odia. po/or.po | 3976 ++++++++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 2584 insertions(+), 1392 deletions(-) commit 885f44c1c8bd56de99477d6721e9440e901bb432 Author: Shankar Prasad Date: Wed Sep 12 18:43:01 2012 +0530 Updated kn translation po/kn.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit e9c6aefeb70db2238d8281415ed192c63885fb79 Author: Shankar Prasad Date: Wed Sep 12 18:39:18 2012 +0530 Updated kn translation po/kn.po | 78 ++++++++++++++++++++++++++++++---------------------------------- 1 file changed, 36 insertions(+), 42 deletions(-) commit c4544a8a470b3dd3cc396b77f5416f2fa8024845 Author: Shankar Prasad Date: Wed Sep 12 16:31:35 2012 +0530 Updated kn translation po/kn.po | 82 +++++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 48 insertions(+), 34 deletions(-) commit d06250b1bab3f25de55c5d43e0344a6b36550f11 Author: Sandeep Sheshrao Shedmake Date: Wed Sep 12 15:44:41 2012 +0530 Updated Marathi Translations po/mr.po | 1906 ++++++++++++++++++++++++++++---------------------------------- 1 file changed, 866 insertions(+), 1040 deletions(-) commit 2a88736cf61395b731b3d3f8f9615ec11248d004 Author: Bastien Nocera Date: Wed Sep 12 10:24:19 2012 +0100 wacom: Add link to wacom docs And not the generic control-center docs. https://bugzilla.gnome.org/show_bug.cgi?id=675471#c40 panels/wacom/cc-wacom-panel.c | 9 +++++++++ 1 file changed, 9 insertions(+) commit 2ebf2ecad24df1567380d30b2d2929aa63e9fc90 Author: Bastien Nocera Date: Wed Sep 12 10:23:39 2012 +0100 wacom: Bump g-s-d requirement For the new action type. configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 083c19d5528f5c765a2990e9a8c13e45563c1fbb Author: Bastien Nocera Date: Wed Sep 12 09:44:00 2012 +0100 wacom: Bump minimum libwacom req to 0.6 configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 1384bb5ecea83fce78a1a7451e86ac09f6b76cd9 Author: A S Alam Date: Wed Sep 12 07:20:56 2012 +0530 update Punjabi Translation po/pa.po | 382 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 186 insertions(+), 196 deletions(-) commit eebb95d2f7a7697324518cab64d9cd1418ca6855 Author: Nilamdyuti Goswami Date: Tue Sep 11 20:46:30 2012 +0530 Assamese translation updated po/as.po | 782 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 408 insertions(+), 374 deletions(-) commit 3550944c489d3d73be2f409765f7895e2f828128 Author: Nguyį»…n ThĆ”i Ngį»c Duy Date: Tue Sep 11 21:04:02 2012 +0700 Updated Vietnamese translation po/vi.po | 26 ++++++++------------------ 1 file changed, 8 insertions(+), 18 deletions(-) commit 34da50157175abbb569b408d745aa11168e82621 Author: Nguyį»…n ThĆ”i Ngį»c Duy Date: Tue Sep 11 21:01:25 2012 +0700 po/vi.po: import from Damned Lies po/vi.po | 438 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 232 insertions(+), 206 deletions(-) commit 1eb906515fe100bb3193ed29ceda616266f5ebd4 Author: Marek Kasik Date: Thu Sep 6 14:06:01 2012 +0200 printers: Use GPLv2+ for files created by Marek Kasik This commit is related to the bug #683420. panels/printers/pp-cups.c | 2 +- panels/printers/pp-cups.h | 2 +- panels/printers/pp-host.c | 2 +- panels/printers/pp-host.h | 2 +- panels/printers/pp-ipp-option-widget.c | 2 +- panels/printers/pp-ipp-option-widget.h | 2 +- panels/printers/pp-jobs-dialog.c | 2 +- panels/printers/pp-jobs-dialog.h | 2 +- panels/printers/pp-maintenance-command.c | 2 +- panels/printers/pp-maintenance-command.h | 2 +- panels/printers/pp-new-printer-dialog.c | 2 +- panels/printers/pp-new-printer-dialog.h | 2 +- panels/printers/pp-new-printer.c | 2 +- panels/printers/pp-new-printer.h | 2 +- panels/printers/pp-options-dialog.c | 2 +- panels/printers/pp-options-dialog.h | 2 +- panels/printers/pp-ppd-option-widget.c | 2 +- panels/printers/pp-ppd-option-widget.h | 2 +- panels/printers/pp-ppd-selection-dialog.c | 2 +- panels/printers/pp-ppd-selection-dialog.h | 2 +- panels/printers/pp-utils.c | 2 +- panels/printers/pp-utils.h | 2 +- 22 files changed, 22 insertions(+), 22 deletions(-) commit fde7b55ce3902d2772a0ecf046f6f544f78dd2ac Author: Shankar Prasad Date: Tue Sep 11 18:33:16 2012 +0530 Updated kn translation po/kn.po | 1685 ++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 857 insertions(+), 828 deletions(-) commit 52dca977990e4e5194378bcaac957b7a3843a501 Author: Sweta Kothari Date: Tue Sep 11 16:58:13 2012 +0530 Updated gujarati file po/gu.po | 4074 ++++++++++++++++++++++++++++++++++++++------------------------ 1 file changed, 2518 insertions(+), 1556 deletions(-) commit e2d852c58390a8d2d9b730620b3a2ddd919402e4 Author: Nguyį»…n ThĆ”i Ngį»c Duy Date: Mon Sep 10 21:25:01 2012 +0700 Updated Vietnamese translation po/vi.po | 54 +++++++++++++++++++----------------------------------- 1 file changed, 19 insertions(+), 35 deletions(-) commit 0a0bc59afacc08fe0ec6378a7171eb3fdb549fe3 Author: Bastien Nocera Date: Mon Sep 10 14:55:04 2012 +0100 printers: Avoid redefinition of UserResponseCallback It was declared to be the same value in all three headers, which causes problems with old version of GCC. https://bugzilla.gnome.org/show_bug.cgi?id=683696 panels/printers/pp-jobs-dialog.h | 3 +-- panels/printers/pp-options-dialog.h | 3 +-- panels/printers/pp-ppd-selection-dialog.h | 2 -- panels/printers/pp-utils.h | 2 ++ 4 files changed, 4 insertions(+), 6 deletions(-) commit 312a5dfe874483ebfd59c960b804e70086ac4519 Author: William Jon McCann Date: Mon Sep 10 09:42:24 2012 -0400 Set pixbuf renderer stock size to 32 so emblems render at 16px https://bugzilla.gnome.org/show_bug.cgi?id=682123 panels/background/cc-background-chooser-dialog.c | 6 ++++++ 1 file changed, 6 insertions(+) commit 35219123286cfcf08452ef49e2c6a578fd1fd1f3 Author: Fran DiĆ©guez Date: Mon Sep 10 15:06:37 2012 +0200 Updated Galician translations po/gl.po | 108 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 56 insertions(+), 52 deletions(-) commit f2e54f77feb22cd021ba8676878594f81169ec8d Author: Duarte Loreto Date: Mon Sep 10 01:11:43 2012 +0100 Updated Portuguese translation po/pt.po | 3754 ++++++++++++++++++++++++++++++++++++++------------------------ 1 file changed, 2312 insertions(+), 1442 deletions(-) commit 8af69625d3373809ffb5e603e69c6979e5e67247 Author: Daiki Ueno Date: Tue Aug 28 14:04:34 2012 +0900 region: Use ibus_get_language_name() to get a language from its code ibus_engine_desc_get_language() may return an empty string or language codes that gdm_get_language_from_name() doesn't understand. Use ibus_get_language_name() instead to handle such cases properly. This also allows us to use the same method in gnome-shell to get consistent display strings. https://bugzilla.gnome.org/show_bug.cgi?id=682851 panels/region/gnome-region-panel-input.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) commit 830c1aa5a2df1d4a5a37656b3ee5ec86117d9c97 Author: Arash Mousavi Date: Sat Sep 8 15:28:58 2012 +0430 l10n: Updated Persian translation po/fa.po | 5085 +++++++++++++++++++++++++++++++++++++++++--------------------- 1 file changed, 3413 insertions(+), 1672 deletions(-) commit 014f153dcfdc0ff62a4d8a3a5a0f336ead1f7fb8 Author: Gabor Kelemen Date: Sat Sep 8 00:03:33 2012 +0200 Updated Hungarian translation po/hu.po | 5194 +++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 3146 insertions(+), 2048 deletions(-) commit 5f353fa2b6d44a4be4e601b25f712e73736cd4c2 Author: Michael Terry Date: Fri Sep 7 15:37:42 2012 -0400 power: Use GCancellable better, to avoid a crash https://bugzilla.gnome.org/show_bug.cgi?id=683533 panels/power/cc-power-panel.c | 37 ++++++++++++++++++++++--------------- 1 file changed, 22 insertions(+), 15 deletions(-) commit 11d808953933143bb272730a417322c8161e7f3d Author: Aurimas Černius Date: Fri Sep 7 20:33:36 2012 +0300 Updated Lithuanian translation po/lt.po | 251 +++++++++++++++++++++++++++------------------------------------ 1 file changed, 106 insertions(+), 145 deletions(-) commit 3406a950b6bd5e023e9d348adb5e20ea7df46a60 Author: Ihar Hrachyshka Date: Fri Sep 7 19:29:17 2012 +0300 Updated Belarusian translation. po/be.po | 999 ++++++++++++++++++++++++++++++--------------------------------- 1 file changed, 476 insertions(+), 523 deletions(-) commit ec35ef91d6e5f863ac4e2c6ec2cb4f68d0b72c11 Author: Yaron Shahrabani Date: Fri Sep 7 16:19:00 2012 +0300 Updated Hebrew translation. po/he.po | 536 ++++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 289 insertions(+), 247 deletions(-) commit 12a319875a96b01e8f717880371a6e462a51fcb9 Author: Bastien Nocera Date: Tue Aug 28 16:27:19 2012 +0100 bluetooth: Don't break the custom widgets on connect We used to destroy and recreate the custom widgets whenever any of the properties changed. Now we make sure that the custom widgets are only destroyed and recreated when the device selected is a different one. This fixes NetworkManager's Bluetooth plugins getting destroyed because the Connected property changed, as it was trying to connect to the device. https://bugzilla.gnome.org/show_bug.cgi?id=681456 panels/bluetooth/cc-bluetooth-panel.c | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) commit ba7171a57972cf7cd3189ac006aad492db302a9c Author: Matthias Clasen Date: Thu Sep 6 19:17:21 2012 -0400 Set a window title on the add printer dialog Otherwise, it shows up as cinnamon-control-center, which is ugly. panels/printers/new-printer-dialog.ui | 1 + 1 file changed, 1 insertion(+) commit 299530a7a6f9a3ebb028a4c1e9ae02e0b2c5b651 Author: Matthias Clasen Date: Thu Sep 6 19:12:19 2012 -0400 Set a window title on the add network dialog Otherwise, it shows up as cinnamon-control-center, which is ugly. panels/network/network.ui | 1 + 1 file changed, 1 insertion(+) commit cd0363d3f59d7d53d28188bef3479073f724d1ce Author: Matthias Clasen Date: Thu Sep 6 19:10:37 2012 -0400 Set a window title on the hotspot dialog Set a blank title on the hotspot dialog, otherwise it shows up as cinnamon-control-center, which is ugly. panels/network/network-wifi.ui | 1 + 1 file changed, 1 insertion(+) commit a955ec4152584f208c4e4e26bf58a1a4d285ce7a Author: Matthias Clasen Date: Thu Sep 6 07:43:05 2012 -0400 Switch files created by me to GPLv2+ This matches the rest of the control-center code base. https://bugzilla.gnome.org/show_bug.cgi?id=683420 panels/common/cc-common-language.c | 2 +- panels/common/cc-common-language.h | 2 +- panels/common/cc-language-chooser.c | 2 +- panels/common/cc-language-chooser.h | 2 +- panels/user-accounts/pw-utils.c | 2 +- panels/user-accounts/pw-utils.h | 2 +- panels/user-accounts/um-account-dialog.c | 2 +- panels/user-accounts/um-account-dialog.h | 2 +- panels/user-accounts/um-account-type.c | 2 +- panels/user-accounts/um-account-type.h | 2 +- panels/user-accounts/um-crop-area.c | 2 +- panels/user-accounts/um-editable-button.c | 2 +- panels/user-accounts/um-editable-button.h | 2 +- panels/user-accounts/um-editable-combo.c | 2 +- panels/user-accounts/um-editable-combo.h | 2 +- panels/user-accounts/um-password-dialog.c | 2 +- panels/user-accounts/um-password-dialog.h | 2 +- panels/user-accounts/um-photo-dialog.c | 2 +- panels/user-accounts/um-photo-dialog.h | 2 +- panels/user-accounts/um-user-manager.c | 2 +- panels/user-accounts/um-user-manager.h | 2 +- panels/user-accounts/um-user-module.c | 2 +- panels/user-accounts/um-user-panel.c | 2 +- panels/user-accounts/um-user-panel.h | 2 +- panels/user-accounts/um-utils.c | 2 +- panels/user-accounts/um-utils.h | 2 +- shell/cc-editable-entry.c | 2 +- shell/cc-editable-entry.h | 2 +- 28 files changed, 28 insertions(+), 28 deletions(-) commit 611cc74c14881fb019b43fe176ff004a3ab10b25 Author: Christian Kirbach Date: Fri Sep 7 00:07:21 2012 +0200 Updated German translation po/de.po | 2536 ++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 1206 insertions(+), 1330 deletions(-) commit 8d5a43a0878a6ecfdbb4224750b2faf565d4a9bb Author: ŠœŠøŃ€Š¾ŃŠ»Š°Š² ŠŠøŠŗŠ¾Š»ŠøŃ› Date: Thu Sep 6 22:54:31 2012 +0200 Updated Serbian translation po/sr.po | 51 +++++++++++++-------------------------------------- po/sr@latin.po | 51 +++++++++++++-------------------------------------- 2 files changed, 26 insertions(+), 76 deletions(-) commit 406b1f4b74570a4497683efa33d37db238a004bd Author: Piotr Drąg Date: Thu Sep 6 21:49:33 2012 +0200 Fix Slovenian translation po/sl.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 19d04d6dff5c49f3076ccc98e6bf3e97b2c2c004 Author: Matej Urbančič Date: Thu Sep 6 21:09:39 2012 +0200 Updated Slovenian translation po/sl.po | 2605 +++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 1545 insertions(+), 1060 deletions(-) commit 226a0af02893d83faee0faeba40c8ebb6a443b5e Author: Daniel Mustieles Date: Thu Sep 6 18:26:14 2012 +0200 Updated Spanish translation po/es.po | 288 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 143 insertions(+), 145 deletions(-) commit c1857b0f9c80434890679ace83865db5d2565fa6 Author: Benjamin Berg Date: Wed Aug 8 21:49:00 2012 +0200 display: Fix mouse events not working in preview We need to save event areas with the correct transformation. The following things need to be take into account: * Current cairo matrix (translations) * Widget allocation because it is painting on the parents widgets window * Cairo device offset, which GTK+ sets (but not for a full window redraw) https://bugzilla.gnome.org/show_bug.cgi?id=681475 panels/display/scrollarea.c | 34 +++++++++++++++++++++++++++------- 1 file changed, 27 insertions(+), 7 deletions(-) commit 72cce6b89f7013a9004ddd3b240c823155cc49ce Author: Andika Triwidada Date: Thu Sep 6 16:00:01 2012 +0700 Updated Indonesian translation po/id.po | 65 ++++++++-------------------------------------------------------- 1 file changed, 8 insertions(+), 57 deletions(-) commit 4130be13b55fdf1f6d7d76c2f7b928a4f3fcf2c4 Author: Dirgita Date: Thu Sep 6 15:57:42 2012 +0700 Updated Indonesian translation po/id.po | 323 +++++++++++++++++++++++++++++---------------------------------- 1 file changed, 147 insertions(+), 176 deletions(-) commit 3e86bed190ae912778ff8b1b6dd3f3d552168a30 Author: Tom Tryfonidis Date: Thu Sep 6 02:37:48 2012 +0300 Updated Greek translation po/el.po | 282 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 144 insertions(+), 138 deletions(-) commit 954b530d37fe5070fc64d508d3498fc4218c66d4 Author: Piotr Drąg Date: Wed Sep 5 21:07:06 2012 +0200 Updated Polish translation \m/ I kinda miss the easter egg GEGL Invaders game. po/pl.po | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) commit eee381abddf230a2518ff49e745eab4903ed0d45 Author: Florian Müllner Date: Wed Aug 22 19:28:41 2012 +0200 mouse: Add penta-click test in addition to double-click Clicking anything five times should obviously bring up an image (by Jakub Steiner) of a five-legged goat :-) https://bugzilla.gnome.org/show_bug.cgi?id=682492 panels/mouse/Makefile.am | 1 + panels/mouse/double-click-gegl.png | Bin 0 -> 9568 bytes panels/mouse/gnome-mouse-test.c | 93 +- panels/mouse/scroll-test-gegl.svg | 1781 ++++++++++++++++++++++++++++++++++++ 4 files changed, 1861 insertions(+), 14 deletions(-) commit 49797e8ae2753bacc74b86cd28be250ff93a62cc Author: Stefano Facchini Date: Wed Sep 5 19:34:19 2012 +0200 printers: Add missing definition of HAVE_CUPS_1_6 Commit 1532d7ef forgot to actually define HAVE_CUPS_1_6 when building against CUPS 1.6 https://bugzilla.gnome.org/show_bug.cgi?id=683441 panels/printers/pp-maintenance-command.c | 4 ++++ 1 file changed, 4 insertions(+) commit dbff39026baac85e96ad1fa38bbd95ba68680a11 Author: Jakub Steiner Date: Sat Sep 1 00:31:34 2012 +0200 background: Use a varied color palette The original palette for color selection was a bit flat. The new selection includes 9 "fun" colors that are highly saturated and people would be initialy drawn to select, as well as 6 colors that are more appropriate wallpapers and are good to use for extended periods of time. https://bugzilla.gnome.org/show_bug.cgi?id=682556 panels/background/bg-colors-source.c | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) commit eaacb99d5feae22fb6b2794b318fc303962e0cf9 Author: Matthias Clasen Date: Tue Jul 24 12:27:19 2012 -0400 user-accounts: Use GStreamer 1.0 Just changing the versions in configure.ac seems to make cheese build fine against gstreamer 1.0. https://bugzilla.gnome.org/show_bug.cgi?id=680538 configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 1913cc212644b1464a595d2799e6300465c1fcc9 Author: Chao-Hsiung Liao Date: Wed Sep 5 19:58:30 2012 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) po/zh_HK.po | 850 +++++++++++++++++++++++++++++++---------------------------- po/zh_TW.po | 852 ++++++++++++++++++++++++++++++++---------------------------- 2 files changed, 900 insertions(+), 802 deletions(-) commit 1cd19d0f472c48108d35222fd74ae316a37fdace Author: ŠœŠøŃ€Š¾ŃŠ»Š°Š² ŠŠøŠŗŠ¾Š»ŠøŃ› Date: Wed Sep 5 10:02:43 2012 +0200 Updated Serbian translation po/sr.po | 1261 ++++++++++++++++++++++++++++++-------------------------- po/sr@latin.po | 1261 ++++++++++++++++++++++++++++++-------------------------- 2 files changed, 1354 insertions(+), 1168 deletions(-) commit dd18ab17d44c5981b8f4e74c33ce58202bee9758 Author: Khaled Hosny Date: Wed Sep 5 07:18:57 2012 +0200 Updated Arabic translation po/ar.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 753f9472dcf4ec53f68bb45bfa1e083f7f950755 Author: Khaled Hosny Date: Wed Sep 5 07:15:38 2012 +0200 Updated Arabic translation po/ar.po | 256 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 126 insertions(+), 130 deletions(-) commit 9e4566b1f5cac101eeaedba97bf29763a0c33bfe Author: Piotr Drąg Date: Wed Sep 5 00:24:11 2012 +0200 Updated Polish translation po/pl.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 3bff79d8210453e31ec30a4d69df1a7e546da3ec Author: Bastien Nocera Date: Tue Sep 4 21:51:58 2012 +0100 3.5.91 NEWS | 44 ++++++++++++++++++++++++++++++++++++++++++++ configure.ac | 2 +- 2 files changed, 45 insertions(+), 1 deletion(-) commit 503a9104ed10970cc492ecee1820b0b59cce56f0 Author: Bastien Nocera Date: Tue Sep 4 21:34:35 2012 +0100 build: Bump dependencies for keyboard panel changes We want the "show all the input sources" setting to work. configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit ef4d5c57431128c3746f9b1d614786be9ff80776 Author: Fran DiĆ©guez Date: Tue Sep 4 22:37:32 2012 +0200 Updated Galician translations po/gl.po | 267 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 132 insertions(+), 135 deletions(-) commit edba26d342b2cdc51049b657791bfe741e1dbfe5 Author: Dr.T.Vasudevan Date: Tue Sep 4 21:08:26 2012 +0530 updated Tamil translation po/ta.po | 255 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 124 insertions(+), 131 deletions(-) commit 13319e391ada514809762a442c2ffa8c462b4a7e Author: Dr.T.Vasudevan Date: Tue Sep 4 21:04:36 2012 +0530 updated Tamil translation po/ta.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 7bdfb4017edbd54a2be1dfbfbc726b009429b025 Author: Dr.T.Vasudevan Date: Tue Sep 4 20:58:29 2012 +0530 updated Tamil translation po/ta.po | 3620 ++++++++++++++++++++++++++++++++++++++------------------------ 1 file changed, 2254 insertions(+), 1366 deletions(-) commit 9d46f8393c0074cbc65c1c4b62e3996fd5b6b255 Author: Rui Matos Date: Tue Sep 4 14:43:42 2012 +0200 region: Expand the supported IBus engines whitelist Thanks to Daiki Ueno for assembling the list. https://bugzilla.gnome.org/show_bug.cgi?id=682313 panels/region/gnome-region-panel-input.c | 130 ++++++++++++++++++++++++++++++- 1 file changed, 129 insertions(+), 1 deletion(-) commit 42e8783376c89f3a8ed04c30d763f6d52614703d Author: Piotr Drąg Date: Tue Sep 4 15:00:49 2012 +0200 Updated Polish translation po/pl.po | 174 +++++++++++++++++++++++---------------------------------------- 1 file changed, 62 insertions(+), 112 deletions(-) commit a0ad46365fa96b7159ab16dede4b5e39b1346750 Author: Marek Kasik Date: Mon Sep 3 21:35:21 2012 +0200 printers: Remove redundant functions Remove functions which are not used anymore. (#683229) panels/printers/pp-utils.c | 1216 -------------------------------------------- panels/printers/pp-utils.h | 11 - 2 files changed, 1227 deletions(-) commit 45ba8e89e86397df912e07df14d76373f1c7e7af Author: Marek Kasik Date: Mon Sep 3 21:25:59 2012 +0200 printers: Redesign of new printer dialog This commit implements design changes from https://live.gnome.org/Design/SystemSettings/Printers. The new printer dialog gets informations about connected devices from CUPS server asynchronously and separately for each backend now. Entering an address into the entry and pressing the icon inside the entry or enter starts to detect printers on the entered host. Entering a text which is a substring of a name of a device or its location filters the list to contain just devicess with the string in it (e.g. Canon will keep devices with "Canon" in their name). The PpNewPrinterDialog is regular object now. It emits signal "pre-response" when dialog is closed and a printer is being added and signal "response" when the new printer was added, addition of the new printer failed or the dialog was cancelled. This commit removes FirewallD support from new printer dialog. (#683229) panels/printers/cc-printers-panel.c | 390 ++++- panels/printers/new-printer-dialog.ui | 448 ++--- panels/printers/pp-new-printer-dialog.c | 2900 ++++++++++++------------------- panels/printers/pp-new-printer-dialog.h | 39 +- 4 files changed, 1641 insertions(+), 2136 deletions(-) commit 9428b7a641052f164a4d7f1b78958ecf931e01f5 Author: Marek Kasik Date: Mon Sep 3 21:18:58 2012 +0200 printers: Set longer timeouts Set longer timeouts for GetBestDrivers, PrinterAddOption and PrinterAddOptionDefault. These can take more time than already specified timeouts. (#683229) panels/printers/pp-utils.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) commit c34e282babfc6e7d90c9f9a832c186b2c8a3288f Author: Marek Kasik Date: Mon Sep 3 21:16:06 2012 +0200 printers: Return after callback Return from get_ppds_attribute_async() right after callback was called. Otherwise the callback could be called twice. (#683229) panels/printers/pp-utils.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit dea424dbeeaabb46cb0a5e9d950371c837babb6e Author: Marek Kasik Date: Mon Sep 3 20:44:32 2012 +0200 printers: Add PpNewPrinter object for installation of new printer PpNewPrinter contains asynchronous method for installation of new printer. The new printer is specified by given parameters (e.g. name, device-id, device-uri, ppd-name, info, location, ...). (#683229) panels/printers/Makefile.am | 2 + panels/printers/pp-new-printer.c | 1444 ++++++++++++++++++++++++++++++++++++++ panels/printers/pp-new-printer.h | 66 ++ 3 files changed, 1512 insertions(+) commit 6f8b9e88254cb01879ff4a9891b123eb8270b488 Author: Marek Kasik Date: Mon Sep 3 20:33:21 2012 +0200 printers: Allow printer_get_ppd_async() to get PPD from remote host Adds host_name and port parameters to printer_get_ppd_async(). If host_name is NULL then it gets the PPD from local CUPS server. (#683229) panels/printers/pp-options-dialog.c | 2 ++ panels/printers/pp-ppd-option-widget.c | 2 ++ panels/printers/pp-utils.c | 23 ++++++++++++++++++++++- panels/printers/pp-utils.h | 2 ++ 4 files changed, 28 insertions(+), 1 deletion(-) commit 869555455795d688ec0c520df0bba9ae6ba3c12b Author: Marek Kasik Date: Mon Sep 3 20:27:04 2012 +0200 printers: Make get_paper_size_from_locale() available to other source files Export get_paper_size_from_locale() in pp-utils.h. (#683229) panels/printers/pp-utils.c | 2 +- panels/printers/pp-utils.h | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) commit 1532d7ef1af7790c7eda92ae2fff1179230fd6d0 Author: Marek Kasik Date: Mon Sep 3 20:18:47 2012 +0200 printers: Add PpMaintenanceCommand object for execution of commands PpMaintenanceCommand object contains asynchronous method which executes given CUPS maintenance command (e.g. "AutoConfigure"). (#683229) panels/printers/Makefile.am | 2 + panels/printers/pp-maintenance-command.c | 325 +++++++++++++++++++++++++++++++ panels/printers/pp-maintenance-command.h | 69 +++++++ 3 files changed, 396 insertions(+) commit 142d2c65b4fa01100d7cc8d6f6ca856c94d07182 Author: Marek Kasik Date: Mon Sep 3 20:04:38 2012 +0200 printers: Add PpHost object for listing print devices This commit adds PpHost object which represents a remote host from which we want to get printers. It contains asynchronous method for enumerating printers list from the host using CUPS' SNMP backend and method for enumerating printers list directly from the remote CUPS server running on the host. (#683229) panels/printers/Makefile.am | 2 + panels/printers/pp-host.c | 459 ++++++++++++++++++++++++++++++++++++++++++++ panels/printers/pp-host.h | 82 ++++++++ panels/printers/pp-utils.h | 4 +- 4 files changed, 546 insertions(+), 1 deletion(-) commit 0cb0dab3778d75c3edec5b6de956ee70ddb026b5 Author: Marek Kasik Date: Mon Sep 3 19:50:31 2012 +0200 printers: Add async method for listing print devices This commit adds asynchronous function get_cups_devices_async() which sequentially executes CUPS' backends and returns found devices by a callback. (#683229) panels/printers/pp-utils.c | 286 +++++++++++++++++++++++++++++++++++++++++++++ panels/printers/pp-utils.h | 29 +++++ 2 files changed, 315 insertions(+) commit 5a2794a7fefaebe7c3467136a27ad8c9facda747 Author: Marek Kasik Date: Mon Sep 3 21:46:50 2012 +0200 printers: Add PpCups object for getting destinations PpCups object represents local CUPS server. It contains asynchronous method for getting printers installed on the server. It is an asynchronous version of cupsGetDests(). (#683229) panels/printers/Makefile.am | 2 + panels/printers/pp-cups.c | 125 ++++++++++++++++++++++++++++++++++++++++++++ panels/printers/pp-cups.h | 71 +++++++++++++++++++++++++ 3 files changed, 198 insertions(+) commit cc2e15a592b34be022bb649e18fe397c31214cb4 Author: Marek Kasik Date: Mon Sep 3 21:43:14 2012 +0200 printers: Move common constants to pp-utils.h Move constants which are used in more than one source file to pp-utils.h. (#683229) panels/printers/pp-new-printer-dialog.c | 8 -------- panels/printers/pp-utils.c | 6 ------ panels/printers/pp-utils.h | 8 ++++++++ 3 files changed, 8 insertions(+), 14 deletions(-) commit 1f76a739e3e0a79190b036fc890fdaac1a6b8c16 Author: Marek Kasik Date: Mon Sep 3 19:11:28 2012 +0200 printers: Include missing header has to be included in pp-utils.h because there are functions in pp-utils.h which accepts types defined in the cups.h as their parameters. (#683229) panels/printers/pp-utils.h | 1 + 1 file changed, 1 insertion(+) commit 2a87480f2654fa18cd683497fe2a569f732dab68 Author: Rui Matos Date: Mon Sep 3 01:36:20 2012 +0200 region: Honor the 'show-all-sources' gsettings key This setting overrides our supported IBus engines whitelist and makes us show every engine installed on the system when enabled. https://bugzilla.gnome.org/show_bug.cgi?id=682313 panels/region/gnome-region-panel-input.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 72bf4895558173dcfbdeead2175fd619fc2264e8 Author: Bruce Cowan Date: Tue Sep 4 12:09:17 2012 +0100 Updated British English translation po/en_GB.po | 3710 ++++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 2288 insertions(+), 1422 deletions(-) commit dd256f265b1a94d6466034e7933196e4668b81a1 Author: Piotr Drąg Date: Mon Sep 3 21:53:45 2012 +0200 Updated Polish translation po/pl.po | 55 +++++++++++++++++++++++++++++++------------------------ 1 file changed, 31 insertions(+), 24 deletions(-) commit f0be9146d418d7db8dce6826134e8e7ab15af911 Author: Federico Mena Quintero Date: Mon Sep 3 14:07:29 2012 -0500 displays: bgo#592412 - Make 'Mirrored Displays' string consistent with GnomeRRLabeler We had 'Mirror displays' as a command in the control center, but 'Mirror screens' as a description in GnomeRRLabeler. Now we have 'Mirrored Displays' as a description of the current state. Signed-off-by: Federico Mena Quintero panels/display/cc-display-panel.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) commit 7171520e72f633b905e9b6ea8afa48adada8d4ea Author: Rui Matos Date: Sat Aug 25 21:23:23 2012 +0200 region: Use the async IBus engines getter https://bugzilla.gnome.org/show_bug.cgi?id=683035 panels/region/gnome-region-panel-input.c | 63 +++++++++++++++++++++++++++----- 1 file changed, 54 insertions(+), 9 deletions(-) commit 0703d545a5d82f0748d30d898659a340d78684bf Author: William Jon McCann Date: Tue Aug 21 23:16:33 2012 -0400 datetime: make the map insensitive when the panel is locked https://bugzilla.gnome.org/show_bug.cgi?id=672445 panels/datetime/Makefile.am | 43 ++++++++++++++++- panels/datetime/cc-timezone-map.c | 72 +++++++++++++++++++++++----- panels/datetime/data/bg_dim.png | Bin 0 -> 95862 bytes panels/datetime/data/timezone_-10_dim.png | Bin 0 -> 5139 bytes panels/datetime/data/timezone_-11_dim.png | Bin 0 -> 4815 bytes panels/datetime/data/timezone_-1_dim.png | Bin 0 -> 4953 bytes panels/datetime/data/timezone_-2_dim.png | Bin 0 -> 2670 bytes panels/datetime/data/timezone_-3.5_dim.png | Bin 0 -> 995 bytes panels/datetime/data/timezone_-3_dim.png | Bin 0 -> 8773 bytes panels/datetime/data/timezone_-4.5_dim.png | Bin 0 -> 1527 bytes panels/datetime/data/timezone_-4_dim.png | Bin 0 -> 9836 bytes panels/datetime/data/timezone_-5.5_dim.png | Bin 0 -> 859 bytes panels/datetime/data/timezone_-5_dim.png | Bin 0 -> 12224 bytes panels/datetime/data/timezone_-6_dim.png | Bin 0 -> 8833 bytes panels/datetime/data/timezone_-7_dim.png | Bin 0 -> 7868 bytes panels/datetime/data/timezone_-8_dim.png | Bin 0 -> 4261 bytes panels/datetime/data/timezone_-9.5_dim.png | Bin 0 -> 859 bytes panels/datetime/data/timezone_-9_dim.png | Bin 0 -> 4972 bytes panels/datetime/data/timezone_0_dim.png | Bin 0 -> 7074 bytes panels/datetime/data/timezone_10.5_dim.png | Bin 0 -> 844 bytes panels/datetime/data/timezone_10_dim.png | Bin 0 -> 8395 bytes panels/datetime/data/timezone_11.5_dim.png | Bin 0 -> 868 bytes panels/datetime/data/timezone_11_dim.png | Bin 0 -> 6744 bytes panels/datetime/data/timezone_12.75_dim.png | Bin 0 -> 846 bytes panels/datetime/data/timezone_12_dim.png | Bin 0 -> 3935 bytes panels/datetime/data/timezone_13_dim.png | Bin 0 -> 876 bytes panels/datetime/data/timezone_14_dim.png | Bin 0 -> 4150 bytes panels/datetime/data/timezone_1_dim.png | Bin 0 -> 10187 bytes panels/datetime/data/timezone_2_dim.png | Bin 0 -> 8709 bytes panels/datetime/data/timezone_3.5_dim.png | Bin 0 -> 1781 bytes panels/datetime/data/timezone_3_dim.png | Bin 0 -> 9877 bytes panels/datetime/data/timezone_4.5_dim.png | Bin 0 -> 1385 bytes panels/datetime/data/timezone_4_dim.png | Bin 0 -> 2754 bytes panels/datetime/data/timezone_5.5_dim.png | Bin 0 -> 3405 bytes panels/datetime/data/timezone_5.75_dim.png | Bin 0 -> 1596 bytes panels/datetime/data/timezone_5_dim.png | Bin 0 -> 8117 bytes panels/datetime/data/timezone_6.5_dim.png | Bin 0 -> 1675 bytes panels/datetime/data/timezone_6_dim.png | Bin 0 -> 4678 bytes panels/datetime/data/timezone_7_dim.png | Bin 0 -> 7972 bytes panels/datetime/data/timezone_8.75_dim.png | Bin 0 -> 7064 bytes panels/datetime/data/timezone_8_dim.png | Bin 0 -> 9378 bytes panels/datetime/data/timezone_9.5_dim.png | Bin 0 -> 1611 bytes panels/datetime/data/timezone_9_dim.png | Bin 0 -> 8383 bytes 43 files changed, 103 insertions(+), 12 deletions(-) commit ca987eefa277d0a2db0371cedc6aa96820eafffc Author: Daniel Mustieles Date: Mon Sep 3 15:58:32 2012 +0200 Updated Spanish translation po/es.po | 48 +++++++++++++++++++++++++++++++++++++----------- 1 file changed, 37 insertions(+), 11 deletions(-) commit baa6139536bdf8eedf5cc49be87b0bb472904441 Author: Aurimas Černius Date: Sun Sep 2 15:54:24 2012 +0300 Updated Lithuanian translation po/lt.po | 44 +++++++++++++++++++++++++++++++++----------- 1 file changed, 33 insertions(+), 11 deletions(-) commit 2f62ee3ca32b266dc905a9baecc5c2b120f7fc89 Author: Kjartan Maraas Date: Sun Sep 2 11:12:52 2012 +0200 Updated Norwegian bokmĆ„l translation po/nb.po | 250 +++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 139 insertions(+), 111 deletions(-) commit 1043d7c741e9f122f2969dc1249793fb8952391f Author: A S Alam Date: Sun Sep 2 09:57:23 2012 +0530 update Punjabi Translation po/pa.po | 462 +++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 255 insertions(+), 207 deletions(-) commit bf6cff639f6618105ca32c94ccf8c629c5724b69 Author: Nguyį»…n ThĆ”i Ngį»c Duy Date: Sat Sep 1 21:07:54 2012 +0700 Updated Vietnamese translation po/vi.po | 52 ++++++++++++++++++++++------------------------------ 1 file changed, 22 insertions(+), 30 deletions(-) commit 62082e8bfdb3b75e0167677b1342c67b7f9d6ab7 Author: Nguyį»…n ThĆ”i Ngį»c Duy Date: Sat Sep 1 20:42:24 2012 +0700 po/vi: import from Damned Lies po/vi.po | 535 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 265 insertions(+), 270 deletions(-) commit 26638cdc7cd8dce50f48d90c64541534269c0951 Author: Fran DiĆ©guez Date: Sat Sep 1 12:38:18 2012 +0200 Updated Galician translations po/gl.po | 135 ++++++--------------------------------------------------------- 1 file changed, 11 insertions(+), 124 deletions(-) commit 041245eeff3646f1cc7027fbea37d95bcf062ea8 Author: Piotr Drąg Date: Fri Aug 31 21:52:39 2012 +0200 Updated Polish translation po/pl.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 41a79d6a35d18e9293fb6326cfac803d92b61f81 Author: Matthias Clasen Date: Fri Aug 31 15:10:45 2012 -0400 Fix big editable labels The code we used to match the entry and label font size and weight broke down with the latest CSS improvements in GTK+. Use a new GtkEntry api for this instead. The GTK+ requirement has been bumped to 3.5.13. configure.ac | 2 +- shell/cc-editable-entry.c | 36 +----------------------------------- 2 files changed, 2 insertions(+), 36 deletions(-) commit cc6734e5c12f859330eb8a8f4b67cfb854cff8c4 Author: Fran DiĆ©guez Date: Fri Aug 31 20:58:20 2012 +0200 Updated Galician translations po/gl.po | 29 +++++++++++++++++++++++++++-- 1 file changed, 27 insertions(+), 2 deletions(-) commit 2231b3dacc23e91c44ff48c9127d13c7fdb62857 Author: Tom Tryfonidis Date: Fri Aug 31 17:56:06 2012 +0300 Updated Greek translation po/el.po | 2304 +++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 1316 insertions(+), 988 deletions(-) commit 08c06849aa669847003d391aac60bc4946f3b113 Author: Andika Triwidada Date: Fri Aug 31 10:33:14 2012 +0700 Updated Indonesian translation po/id.po | 1281 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 650 insertions(+), 631 deletions(-) commit 4c761c29750ccb2bbdb3a210436b0ac883d354bb Author: Khaled Hosny Date: Thu Aug 30 22:21:43 2012 +0200 Updated Arabic translation po/ar.po | 263 ++++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 152 insertions(+), 111 deletions(-) commit 23ce2dbea7ea7341220eb63b4ace34afb64b988b Author: Piotr Drąg Date: Thu Aug 30 18:13:48 2012 +0200 Updated Polish translation po/pl.po | 50 ++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 38 insertions(+), 12 deletions(-) commit a73aa77465351cad1da54d9cfb6278bdb1a970df Author: Piotr Drąg Date: Thu Aug 30 17:08:52 2012 +0200 Updated POTFILES.in po/POTFILES.in | 1 + 1 file changed, 1 insertion(+) commit 42b6a0138a730415a3eb6ee1b80ec9bc8c98946f Author: Fran DiĆ©guez Date: Thu Aug 30 14:20:19 2012 +0200 Updated Galician translations po/gl.po | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) commit 936c188bf04a4cddc49308435948e530523d7718 Author: Ondrej Holy Date: Wed Aug 29 12:44:55 2012 +0200 mouse: Widget allocated size fallback https://bugzilla.gnome.org/show_bug.cgi?id=579135 panels/mouse/gnome-mouse-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 1f68f46d74f29403d518be8793f240abcda0ecad Author: Ondrej Holy Date: Wed Aug 29 09:33:16 2012 +0200 mouse: Reset timeouts id to zero https://bugzilla.gnome.org/show_bug.cgi?id=579135 panels/mouse/gnome-mouse-test.c | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) commit 1cf9c9b078b1068276d4ec548b84b42ac3c6295c Author: Ondrej Holy Date: Thu Aug 23 15:10:19 2012 +0200 mouse: New testing area according to mockup https://bugzilla.gnome.org/show_bug.cgi?id=579135 panels/mouse/Makefile.am | 12 +- panels/mouse/double-click-maybe.png | Bin 4643 -> 0 bytes panels/mouse/double-click-off.png | Bin 4751 -> 0 bytes panels/mouse/double-click-on.png | Bin 6360 -> 0 bytes panels/mouse/gnome-mouse-test.c | 197 +++- panels/mouse/gnome-mouse-test.ui | 78 +- panels/mouse/scroll-test.svg | 1960 +++++++++++++++++++++++++++++++++++ 7 files changed, 2182 insertions(+), 65 deletions(-) commit 419a0481a33cf708c25e944b0d223ffe4fd0b096 Author: Aurimas Černius Date: Wed Aug 29 22:36:19 2012 +0300 Updated Lithuanian translation po/lt.po | 629 ++++++++++++++++++++++++++++++--------------------------------- 1 file changed, 300 insertions(+), 329 deletions(-) commit c4f19cdf22f688efe157a7d7b197142788a4a9f5 Author: Daniel Mustieles Date: Wed Aug 29 17:01:52 2012 +0200 Updated Spanish translation po/es.po | 396 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 206 insertions(+), 190 deletions(-) commit 8198d2602cae1acf5784ab7bae8f29c443f90ab3 Author: Fran DiĆ©guez Date: Wed Aug 29 00:41:28 2012 +0200 Updated Galician translations po/gl.po | 1172 ++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 610 insertions(+), 562 deletions(-) commit 3b87bfd1c0ee55b25e41a475a9d14cf0fe5e325d Author: Piotr Drąg Date: Tue Aug 28 18:54:04 2012 +0200 Updated Polish translation po/pl.po | 298 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 151 insertions(+), 147 deletions(-) commit 8b7fd5787f9bf9d9d9c29f01df9da50cacbcf91b Author: Bastien Nocera Date: Tue Aug 28 16:47:20 2012 +0100 universal-access: Remove unused object One less thing for translators to translate. panels/universal-access/uap.ui | 23 ----------------------- 1 file changed, 23 deletions(-) commit 8c921b2dd4071aa96f27a8d1ecb7edb95f928577 Author: Jiro Matsuzawa Date: Tue Aug 28 23:17:22 2012 +0900 network: add translation context for Wifi security https://bugzilla.gnome.org/show_bug.cgi?id=682876 panels/network/net-device-wifi.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) commit 41584b6e5bef9c175872f0247a7690682e3628d5 Author: Jiro Matsuzawa Date: Tue Aug 28 23:58:06 2012 +0900 universal-access: add translation context for Zoom https://bugzilla.gnome.org/show_bug.cgi?id=682876 panels/universal-access/zoom-options.ui | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit ce53dc7fd95528fa3069991e55d859e4a9145b21 Author: Jiro Matsuzawa Date: Tue Aug 28 21:43:02 2012 +0900 wacom: add translation context for Wacom action type https://bugzilla.gnome.org/show_bug.cgi?id=682876 panels/wacom/cc-wacom-page.c | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) commit 658083fffa95a8787baf734f5b87d1a7e0cff2dc Author: Rui Matos Date: Sun Aug 26 16:55:11 2012 +0200 region: Don't use IBus if running in fallback mode In fallback mode we don't want to touch IBus since the gnome-shell UI isn't there to provide the full integrated user experience. We expect users to continue using existing IBus UIs in fallback mode. https://bugzilla.gnome.org/show_bug.cgi?id=682864 panels/region/gnome-region-panel-input.c | 45 ++++++++++++++++++++++++-------- 1 file changed, 34 insertions(+), 11 deletions(-) commit dee8e0917abdc2ec9b33baf571b944508ae42447 Author: Rui Matos Date: Sun Aug 26 15:33:24 2012 +0200 region: Use a filter model on input sources This allows us to hide some entries which for whatever reason we can't display without removing them from gsettings. This reverts commit 54835c8f4486309c1517a7f71735fbdd7e098c5f. This reverts commit 953cc81b0f07c0e5f4e1f34a139efafe6d61fea1. This reverts commit ab0594239c5e43b3a14a0cf40ab2cce039a17a53. This reverts commit 03f08fd36c059c17f3af723ca29e0ad931fc6a26. https://bugzilla.gnome.org/show_bug.cgi?id=682864 panels/region/gnome-region-panel-input.c | 125 ++++++++++++++++++++++++------- 1 file changed, 100 insertions(+), 25 deletions(-) commit 14dde72dfe2205629b0db17aa5ba239b31ced284 Author: Ondrej Holy Date: Thu Aug 23 16:50:33 2012 +0200 mouse: Fix of bad radio spacing in RTL. https://bugzilla.gnome.org/show_bug.cgi?id=669961 panels/mouse/gnome-mouse-properties.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 3e5cdb6fce45e1ce3cce4801ef36df3abcbc8fc8 Author: Ondrej Holy Date: Thu Aug 23 14:34:59 2012 +0200 mouse: Switch left/right radios according text direction. https://bugzilla.gnome.org/show_bug.cgi?id=669961 panels/mouse/gnome-mouse-properties.c | 2 ++ panels/mouse/gnome-mouse-properties.ui | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) commit b0dcb2985742292947e5f44422de50a7a1bc5de3 Author: Bastien Nocera Date: Thu Aug 23 15:37:11 2012 +0100 sound: The angry flower read the comments again panels/sound/gvc-mixer-control.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) commit 5b8509088cdd8e8d8bfe832f9b64aa8b1b27faf3 Author: Bastien Nocera Date: Thu Aug 23 15:30:35 2012 +0100 sound: Spell "Can't" properly in debug panels/sound/gvc-mixer-dialog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit f9f9f38a969990c10c0891542fea316ad985d928 Author: Kjartan Maraas Date: Tue Aug 28 07:35:05 2012 +0200 Updated Norwegian bokmĆ„l translation po/nb.po | 195 ++++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 105 insertions(+), 90 deletions(-) commit 058edd5922378576484c6ea6a09d7cbd943d9a38 Author: Nilamdyuti Goswami Date: Mon Aug 27 23:48:44 2012 +0530 Implemented FUEL entries to Assamese translation po/as.po | 128 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 64 insertions(+), 64 deletions(-) commit 33a628be07d6032e8787d77e50056370a757c730 Author: Jiro Matsuzawa Date: Mon Aug 27 23:58:05 2012 +0900 [l10n] Update Japanese translation po/ja.po | 1598 +++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 893 insertions(+), 705 deletions(-) commit 39c1ecab054977edff77f89263b7be176516a505 Author: Nilamdyuti Goswami Date: Mon Aug 27 13:47:11 2012 +0530 Assamese translation updated po/as.po | 957 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 496 insertions(+), 461 deletions(-) commit 46b269eb8bd79e8f9e36f62fdef0e6e002c59477 Author: Yaron Shahrabani Date: Sun Aug 26 11:13:07 2012 +0300 Updated Hebrew translation. po/he.po | 2296 ++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 1345 insertions(+), 951 deletions(-) commit cec48ff08a2e6c6eb705db20fa5923d9e32f7a28 Author: Yaron Shahrabani Date: Thu Jul 12 19:11:11 2012 +0300 Updated Hebrew translation. po/he.po | 777 ++++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 450 insertions(+), 327 deletions(-) commit 1a53ec676284175093e38202457a1a7eb956bff4 Author: Khaled Hosny Date: Sun Aug 26 05:15:08 2012 +0200 Updated Arabic translation po/ar.po | 443 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 223 insertions(+), 220 deletions(-) commit 4d80e477763742d0dc06ac57e308a0662773018c Author: Giovanni Campagna Date: Sat Apr 14 01:51:35 2012 +0200 system info: set related mime types when changing preferred apps Setting the preferred music or video app only changed the handler for ogg audio/video, leaving an inconsistent state where the previous (system default) app would be used for other images, audio and video formats. Instead make it so that when the user changes his preferences, the application becomes the default for all mime types in the same group that it supports. Nothing changes if configuration is modified externally (e.g. by hand or through nautilus): expose as preferred app the one that is configured to handle the primary content type. https://bugzilla.gnome.org/show_bug.cgi?id=674084 panels/info/cc-info-panel.c | 102 ++++++++++++++++++++++++++++---------------- 1 file changed, 66 insertions(+), 36 deletions(-) commit 98137cc4e63aa022ee4cb6dd96e1c3526b49a4e6 Author: Piotr Drąg Date: Fri Aug 24 04:32:21 2012 +0200 Updated Polish translation po/pl.po | 3275 +++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 1950 insertions(+), 1325 deletions(-) commit 74b09b6edad57d23dd0c608e8cb0827a8ceaaec6 Author: Daniel Mustieles Date: Thu Aug 23 17:40:29 2012 +0200 Updated Spanish translation po/es.po | 467 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 243 insertions(+), 224 deletions(-) commit f4c3d190bc5210418b65a6fe5c398cf99068eb91 Author: Bastien Nocera Date: Thu Aug 23 14:22:19 2012 +0100 display: Avoid possible warning on exit (cinnamon-control-center:8728): GLib-GObject-WARNING **: invalid (NULL) pointer instance (cinnamon-control-center:8728): GLib-GObject-CRITICAL **: g_signal_handler_disconnect: assertion `G_TYPE_CHECK_INSTANCE (instance)' failed panels/display/cc-display-panel.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) commit 570bafaf6b2ae0d24d921a9b34811cb3ef4fd005 Author: Zan Dobersek Date: Thu Apr 5 08:11:23 2012 +0200 user-accounts: Fix match icon not updating in some cases Check the new password matching after focusing out either entries. Validate the content of the verify password entry after focusing out either the new password entry or the verify entry. Previously the user could mistype his new password in the new password entry, but when it was corrected, the verify entry would still be indicating that the confirmation password did not match when it did. https://bugzilla.gnome.org/show_bug.cgi?id=668844 panels/user-accounts/um-password-dialog.c | 49 +++++++++++++++++++++---------- 1 file changed, 33 insertions(+), 16 deletions(-) commit af8a6440756ce3845b94c685918f8959968e6dd0 Author: Bastien Nocera Date: Wed Aug 22 16:31:59 2012 +0100 user-accounts: Fix login keyring password not getting updated By passing the environment down to passwed rather than an empty one. This means that passwd's PAM modules will be able to access the session D-Bus, for the gnome-keyring PAM module to change the keyring password for example. https://bugzilla.gnome.org/show_bug.cgi?id=616703 panels/user-accounts/run-passwd.c | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) commit b682a3c6e936a889436e53c81250a826dd1f8504 Author: Javier Jardón Date: Tue Aug 14 20:34:51 2012 +0900 common: Add Arabic as a common language https://bugzilla.gnome.org/show_bug.cgi?id=671530 panels/common/cc-common-language.c | 3 +++ 1 file changed, 3 insertions(+) commit 0e2b4a9600cf9c82c021baa034beecf067f6fbc4 Author: Bastien Nocera Date: Thu Mar 8 13:54:30 2012 +0100 common: Add Russian as a common language https://bugzilla.gnome.org/show_bug.cgi?id=671530 panels/common/cc-common-language.c | 3 +++ 1 file changed, 3 insertions(+) commit d1cfd2b0f367c944854e9aa3156cd78fe27e7415 Author: Dominique Leuenberger Date: Mon Jul 23 16:45:59 2012 +0200 build: Update COPYING with new mailing address https://bugzilla.gnome.org/show_bug.cgi?id=680456 COPYING | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) commit 8f1b6d678755a0497c1abc34a626b77f95cfa099 Author: Dan Winship Date: Wed Aug 22 09:23:03 2012 -0400 network: don't try to activate slave connections https://bugzilla.gnome.org/show_bug.cgi?id=682469 panels/network/net-device.c | 43 +++++++++++++++++++++++++++++++++++-------- 1 file changed, 35 insertions(+), 8 deletions(-) commit 8df1069f7dedc31886acc04ae744cd052926472d Author: Dan Winship Date: Wed Aug 22 09:22:03 2012 -0400 network: fix wired/mobile activation You have to pass the NMDevice to nm_client_activate_connection() for a device-specific connection. This got broken at some point in the rewrites since 3.4. https://bugzilla.gnome.org/show_bug.cgi?id=682469 panels/network/net-device-mobile.c | 5 +++-- panels/network/net-device-wired.c | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) commit ecdb1d847794b43dc0d1ae3b107d811fe52e5846 Author: Dan Winship Date: Wed Aug 22 09:00:35 2012 -0400 network: ignore unrecognized device types rather than showing a blank line in the device-type list that doesn't do anything. https://bugzilla.gnome.org/show_bug.cgi?id=678210 panels/network/cc-network-panel.c | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) commit 20a980d6ca8d4e40d62d9add1c3745ba403cf08a Author: Colin Walters Date: Wed Aug 22 09:42:18 2012 -0400 Fix missing = panels/common/cc-common-language.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 4d62e05fb088d64c3133912f0995a42157b8e968 Author: Matthias Clasen Date: Wed Aug 22 14:15:04 2012 +0100 common: Add Policykit rules for hostname setting Allow setting the computer's pretty hostname if the user is an admin. https://bugzilla.gnome.org/show_bug.cgi?id=679281 panels/common/Makefile.am | 5 +++++ panels/common/cinnamon-control-center.rules | 8 ++++++++ 2 files changed, 13 insertions(+) commit d2aa0ce5d8c93e777d201da779f13802e5249c95 Author: Jasper St. Pierre Date: Thu Jul 12 17:26:03 2012 -0400 common: Fix memory leaks in language sorting https://bugzilla.gnome.org/show_bug.cgi?id=679836 panels/common/cc-common-language.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) commit e730edb6cc4a5477be9608bf6798ac747558f0f0 Author: Kjartan Maraas Date: Wed Aug 22 14:10:21 2012 +0200 Updated Norwegian bokmĆ„l translation po/nb.po | 1384 ++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 761 insertions(+), 623 deletions(-) commit ddf8c56caf3ba9bb68884840c398e6485c107cfd Author: Rico Tzschichholz Date: Wed Aug 22 12:52:29 2012 +0200 background: Add missing include bg_pictures_source_get_*_path is defined in bg-pictures-source.h panels/background/cc-background-panel.c | 2 ++ 1 file changed, 2 insertions(+) commit 03a88bbba537e3360bfaed3b6f89f2f0d4420187 Author: Bastien Nocera Date: Wed Aug 22 10:38:34 2012 +0100 mouse: Remove unused variable panels/mouse/cc-mouse-panel.c | 1 - 1 file changed, 1 deletion(-) commit 905b7f999c52f7ca064a01fa5e5dee9ef7d71649 Author: Bastien Nocera Date: Wed Aug 22 10:37:34 2012 +0100 mouse: Remove italics from test page https://bugzilla.gnome.org/show_bug.cgi?id=682397 NEWS | 1 + panels/mouse/gnome-mouse-test.ui | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) commit 51c06e781d69e73ce866bacc010fb1bf21eaebd0 Author: Nguyį»…n ThĆ”i Ngį»c Duy Date: Wed Aug 22 15:01:14 2012 +0700 Updated Vietnamese translation po/vi.po | 263 +++++++++++++++++++++++++-------------------------------------- 1 file changed, 103 insertions(+), 160 deletions(-) commit 26f65ccd57345a8ff0abfdef047f008271389763 Author: Nguyį»…n ThĆ”i Ngį»c Duy Date: Wed Aug 22 14:42:52 2012 +0700 po/vi: imported from Damned Lies po/vi.po | 2494 ++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 1467 insertions(+), 1027 deletions(-) commit eaef6e5d50140fd7ff9803f79c71e6ccfca18838 Author: Jasper St. Pierre Date: Tue Aug 14 17:14:10 2012 -0300 um-user: Use GdkCairo operations to draw on the pixbuf Remove a bunch of bit twiddling code. https://bugzilla.gnome.org/show_bug.cgi?id=682391 panels/user-accounts/um-user.c | 139 ++--------------------------------------- 1 file changed, 4 insertions(+), 135 deletions(-) commit 36d09e19176c73183d1f47b546dbfa6b327ec92c Author: A S Alam Date: Wed Aug 22 07:14:22 2012 +0530 update Punjabi Translation po/pa.po | 717 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 363 insertions(+), 354 deletions(-) commit 9538df6ba1da6353396ff901f8cfdafe2351d978 Author: Aurimas Černius Date: Tue Aug 21 23:11:39 2012 +0300 Updated Lithuanian translation po/lt.po | 1722 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 857 insertions(+), 865 deletions(-) commit e87c564cdbf7810e0c15b40ed680d9c8bc6734b5 Author: FrĆ©dĆ©ric PĆ©ters Date: Tue Aug 21 22:05:35 2012 +0200 printers: remove blank class_finalize function panels/printers/cc-printers-panel.c | 5 ----- 1 file changed, 5 deletions(-) commit b0e7a5efa819525bf6709ac3a009b12bb145d601 Author: Ray Strode Date: Tue Aug 21 14:29:22 2012 -0400 panels: add register macro Bastien says he doesn't like the blank class_finalize functions in every panel and he would like a wrapper macro to hide them. This commit does that. panels/background/cc-background-panel.c | 7 +------ panels/bluetooth/cc-bluetooth-panel.c | 7 +------ panels/color/cc-color-panel.c | 7 +------ panels/datetime/cc-datetime-panel.c | 8 +------- panels/display/cc-display-panel.c | 7 +------ panels/info/cc-info-panel.c | 7 +------ panels/keyboard/cc-keyboard-panel.c | 7 +------ panels/mouse/cc-mouse-panel.c | 7 +------ panels/network/cc-network-panel.c | 7 +------ panels/online-accounts/cc-online-accounts-panel.c | 7 +------ panels/power/cc-power-panel.c | 7 +------ panels/printers/cc-printers-panel.c | 2 +- panels/region/cc-region-panel.c | 7 +------ panels/screen/cc-screen-panel.c | 7 +------ panels/sound/cc-sound-panel.c | 7 +------ panels/universal-access/cc-ua-panel.c | 7 +------ panels/user-accounts/um-user-panel.c | 7 +------ panels/wacom/cc-wacom-panel.c | 7 +------ shell/cc-panel.h | 14 ++++++++++++++ 19 files changed, 32 insertions(+), 104 deletions(-) commit 0c1a76df6ac1d12b23f911c07607b19e51f167f8 Author: Bastien Nocera Date: Tue Aug 21 18:41:25 2012 +0100 3.5.90 NEWS | 43 +++++++++++++++++++++++++++++++++++++++++++ configure.ac | 2 +- 2 files changed, 44 insertions(+), 1 deletion(-) commit 3bf8bcf3f8a357f0c33f1f790852c42eec954483 Author: Ray Strode Date: Tue Aug 21 13:29:46 2012 -0400 online-accounts: set up finalize handler at class init time It was being set up at class finalization time, which is too late. Fixes crash when switching from panel to shell and back (and then try to interact with the switches). https://bugzilla.gnome.org/show_bug.cgi?id=682379 panels/online-accounts/cc-online-accounts-panel.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) commit 06ede122abd90194eff4275ed1b97cd9bfa1902e Author: Debarshi Ray Date: Tue Aug 21 17:23:50 2012 +0200 online-accounts: Don't show spurious "No online accounts configured" Programmatically deleting or inserting a row into a GtkTreeModel implementation does not change the selection on the GtkTreeView even if it is in browse mode (see GTK+ documentation). So, we need to connect to the model's row-deleted and row-inserted signals and adjust the selection ourselves. Fixes: https://bugzilla.gnome.org/682175 panels/online-accounts/cc-online-accounts-panel.c | 69 ++++++++++++++++++++++- 1 file changed, 68 insertions(+), 1 deletion(-) commit 7b20a3d0f30601353c9ae510b4a884a89c6cd4d1 Author: Khaled Hosny Date: Tue Aug 21 18:56:26 2012 +0200 Updated Arabic translation po/ar.po | 701 ++++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 382 insertions(+), 319 deletions(-) commit 44f742659e5d039327009364e6b53071bcbe8212 Author: Bastien Nocera Date: Tue Aug 21 15:23:43 2012 +0100 common: Add more debug to list-languages panels/common/list-languages.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) commit 8c7632e66e410c03579a9caa9abf695e36bf51fb Author: Bastien Nocera Date: Tue Aug 21 17:40:30 2012 +0100 sound: Avoid use-after-free of destroyed streams When switching between 2 outputs that share the same device with different connector types, the old stream is destroyed, and a new one with the new connector type created. We were generating warnings because the old stream was destroyed, and we were trying to access it. Instead we should remove the reference to that old stream from the GvcLevelBars used for output and input levels. panels/sound/gvc-mixer-dialog.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) commit e34dd3bb83dfbda6c130c5851453082bc8f2b16a Author: Bastien Nocera Date: Tue Aug 21 17:33:18 2012 +0100 sound: Fix incorrectly documented return type gvc_mixer_control_get_stream_from_device returns a GvcMixerStream, not a container that contains one of those. panels/sound/gvc-mixer-control.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 4513207bfb7801868f84ff3524f0d46f4f9b40a9 Author: David Henningsson Date: Fri Jul 13 14:47:44 2012 +0200 sound: Remove hardware tab Since the output and input tabs now offer the possibility to select profile, we can remove the hardware tab completely. https://bugzilla.gnome.org/show_bug.cgi?id=674831 panels/sound/gvc-mixer-dialog.c | 312 ---------------------------------------- 1 file changed, 312 deletions(-) commit ac2a8ced05324c2a97332fb0f61efd0a9c2c5365 Author: David Henningsson Date: Fri Jul 13 13:54:45 2012 +0200 sound: Move "Test speakers" to the output tab Test speakers will now test the speakers of the active output on the output tab. https://bugzilla.gnome.org/show_bug.cgi?id=674831 panels/sound/gvc-mixer-dialog.c | 80 ++++++++++++++++++++++++++++++++--------- 1 file changed, 63 insertions(+), 17 deletions(-) commit db8ee1eabe4f719f494e16813609e9054cc44806 Author: David Henningsson Date: Fri Jun 22 11:36:35 2012 +0200 sound: Make speaker test work for sinks without card By speaker-test taking a stream/sink instead of card as parameter, it can be used for outputs that don't have cards (e g network sinks). https://bugzilla.gnome.org/show_bug.cgi?id=674831 panels/sound/gvc-speaker-test.c | 91 ++++++++++------------------------------- panels/sound/gvc-speaker-test.h | 2 +- 2 files changed, 23 insertions(+), 70 deletions(-) commit b3fe98e7c1eca17ef8e2e728e44a9a42edd0e149 Author: David Henningsson Date: Tue Jul 10 17:45:27 2012 +0200 sound: Make the dialog UI use GvcMixerUIDevice The input and output treeview now represent GvcMixerUIDevices, not sinks and sources. Also turn the connector combobox into a profile combobox. https://bugzilla.gnome.org/show_bug.cgi?id=674831 panels/sound/gvc-mixer-dialog.c | 1054 +++++++++++++++++++++------------------ 1 file changed, 579 insertions(+), 475 deletions(-) commit a2e515ea39e136ed19c52e3572da64f5dc6944a7 Author: Olivier Fourdan Date: Tue Jun 26 11:06:07 2012 +0200 wacom: add different action types to mapping dialog https://bugzilla.gnome.org/show_bug.cgi?id=679067 panels/wacom/cc-wacom-mapping-panel.c | 4 +- panels/wacom/cc-wacom-page.c | 181 +++++++++++++++++++++++++++++++--- 2 files changed, 172 insertions(+), 13 deletions(-) commit 8d8cf753528e991578d01203f440fd482fb41060 Author: Olivier Fourdan Date: Tue Aug 21 17:59:36 2012 +0200 wacom: Update from gnome-settings-daemon panels/wacom/gsd-input-helper.c | 13 +++++++++++++ panels/wacom/gsd-input-helper.h | 2 ++ panels/wacom/gsd-wacom-device.c | 14 +++++++------- panels/wacom/gsd-wacom-device.h | 3 +++ 4 files changed, 25 insertions(+), 7 deletions(-) commit 29c49c9a48cd258dc1361648a83f01ee74a5cd0c Author: Chao-Hsiung Liao Date: Tue Aug 21 19:27:54 2012 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) po/zh_HK.po | 271 ++++++++++++++++++++++++++++++++---------------------------- po/zh_TW.po | 271 ++++++++++++++++++++++++++++++++---------------------------- 2 files changed, 286 insertions(+), 256 deletions(-) commit 349cdb533fde7180fe4609ab13ebe81104ab4c1c Author: Piotr Drąg Date: Mon Aug 20 21:50:51 2012 +0200 Updated POTFILES.in po/POTFILES.in | 3 +++ 1 file changed, 3 insertions(+) commit 3b1238a5568cfa3f623702c919153ca8aadf6133 Author: Daniel Mustieles Date: Mon Aug 20 20:46:47 2012 +0200 Updated Spanish translation po/es.po | 283 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 142 insertions(+), 141 deletions(-) commit 544a8ff8896da9361f22cf515ab3587404d828a1 Author: Ondrej Holy Date: Mon Aug 20 19:49:07 2012 +0200 mouse: Add mouse test toggle https://bugzilla.gnome.org/show_bug.cgi?id=677206 panels/mouse/Makefile.am | 8 +++- panels/mouse/cc-mouse-panel.c | 98 +++++++++++++++++++++++++++++++++++++++---- 2 files changed, 96 insertions(+), 10 deletions(-) commit 7981d4423a35ca6dcebabe8571abd92aa28b317d Author: Ondrej Holy Date: Mon Aug 20 19:24:03 2012 +0200 mouse: Add mouse test window https://bugzilla.gnome.org/show_bug.cgi?id=677206 panels/mouse/Makefile.am | 10 ++ panels/mouse/gnome-mouse-test.c | 171 +++++++++++++++++++++++++++++++++++ panels/mouse/gnome-mouse-test.h | 27 ++++++ panels/mouse/gnome-mouse-test.ui | 70 ++++++++++++++ panels/mouse/test-gnome-mouse-test.c | 44 +++++++++ 5 files changed, 322 insertions(+) commit 278c89fdce5e5351192652079386c29d806128f4 Author: Ondrej Holy Date: Mon Aug 20 14:50:44 2012 +0200 mouse: Show mouse section only if mouse is present https://bugzilla.gnome.org/show_bug.cgi?id=677206 panels/mouse/gnome-mouse-properties.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) commit 7929e550f1eacccf804403b748879377f68d29d5 Author: Ondrej Holy Date: Thu Aug 9 15:34:51 2012 +0200 mouse: Add natural scroll toggle https://bugzilla.gnome.org/show_bug.cgi?id=677206 panels/mouse/gnome-mouse-properties.c | 3 +++ panels/mouse/gnome-mouse-properties.ui | 24 +++++++++++++++++++++++- 2 files changed, 26 insertions(+), 1 deletion(-) commit 9f76e8966104b361ffc6474dfe5a04e64989a323 Author: Ondrej Holy Date: Thu Aug 9 15:16:05 2012 +0200 mouse: Sensitivity and acceleration sliders merge https://bugzilla.gnome.org/show_bug.cgi?id=677206 panels/mouse/gnome-mouse-properties.c | 54 +++++---- panels/mouse/gnome-mouse-properties.ui | 205 +++------------------------------ 2 files changed, 43 insertions(+), 216 deletions(-) commit a6262b0ad448c25e656ab08aaf1c423abfd01c12 Author: Ondrej Holy Date: Thu Aug 9 14:11:52 2012 +0200 mouse: Reorganize widgets according to mockup https://bugzilla.gnome.org/show_bug.cgi?id=677206 panels/mouse/gnome-mouse-properties.c | 181 +---- panels/mouse/gnome-mouse-properties.ui | 1233 +++++++++++--------------------- 2 files changed, 439 insertions(+), 975 deletions(-) commit a41624305039f7d3e0503e72ea63268da8b80242 Author: Ray Strode Date: Mon Aug 20 13:52:49 2012 -0400 user-accounts: fix crash for incompatible realmd version The version property may not be available if realmd is version 0.1 (which lacked the property) or if other properties changed signatures (causing gdbus to fail to load cache any property) This commit fixes a crash where property is NULL in those cases. panels/user-accounts/um-realm-manager.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit daa8b098a434809baaf92441b43d09c750953e15 Author: Bastien Nocera Date: Mon Aug 20 15:53:55 2012 +0100 mouse: Update from gnome-settings-daemon panels/mouse/gsd-input-helper.c | 37 +++++++++++++++++++++++++++++++------ panels/mouse/gsd-input-helper.h | 2 ++ 2 files changed, 33 insertions(+), 6 deletions(-) commit 8947021b3eb76d6b8cbdc317552e6cd858baef7f Author: Bastien Nocera Date: Mon Aug 20 15:43:41 2012 +0100 build: Check news before release configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 978ab40f3eb6e4ec2a632941cd8f879919aa2e02 Author: Rui Matos Date: Tue Jul 31 18:27:17 2012 +0200 keyboard: Add common XKB options to the Typing shortcuts section Both the compose key and the 3rd level chooser are common and useful enough to expose in the control center. Since these shortcuts are a small pre-defined set of only modifier keys we present them in combo cell renderers. https://bugzilla.gnome.org/show_bug.cgi?id=682069 configure.ac | 8 +- panels/keyboard/Makefile.am | 2 + panels/keyboard/cc-keyboard-option.c | 449 +++++++++++++++++++++++++++++++++++ panels/keyboard/cc-keyboard-option.h | 48 ++++ panels/keyboard/keyboard-shortcuts.c | 291 ++++++++++++++++++----- 5 files changed, 736 insertions(+), 62 deletions(-) commit 4e0bc86e5b665519980aa562d3a3311a73c2066a Author: Rui Matos Date: Sat Aug 18 19:18:51 2012 +0200 keyboard: Rename the Input Sources shortcuts section to Typing This way we can add more typing related keybindings here. https://bugzilla.gnome.org/show_bug.cgi?id=682069 panels/keyboard/01-input-sources.xml.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit a24f221eeb69879aebaa90fb1dfaed6849a96d5e Author: Rui Matos Date: Thu Aug 16 19:30:08 2012 +0200 keyboard: Introduce a BINDING_GROUP_SEPARATOR type for the separator This way we can control the shortcut section separator position in case we introduce other types. https://bugzilla.gnome.org/show_bug.cgi?id=682069 panels/keyboard/cc-keyboard-item.h | 1 + panels/keyboard/keyboard-shortcuts.c | 40 +++++++++++------------------------- 2 files changed, 13 insertions(+), 28 deletions(-) commit 71978a802e10f076a577bbc66a9a6f89dc906caa Author: Chao-Hsiung Liao Date: Mon Aug 20 23:13:40 2012 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) po/zh_HK.po | 421 ++++++++++++++++++++++++++++++++++-------------------------- po/zh_TW.po | 421 ++++++++++++++++++++++++++++++++++-------------------------- 2 files changed, 478 insertions(+), 364 deletions(-) commit 56b2d3221819952c67e6034ed9be327e748ac191 Author: Piotr Drąg Date: Mon Aug 20 15:46:36 2012 +0200 Updated Polish translation po/pl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit b8a919fccbf7751e1b692979a398175d3c500d7d Author: Daniel Mustieles Date: Mon Aug 20 14:16:23 2012 +0200 Updated Spanish translation po/es.po | 304 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 153 insertions(+), 151 deletions(-) commit 3aab3eb358805c1b7a06c5a54b04ceaff2cc06b8 Author: Stef Walter Date: Fri Aug 17 16:58:10 2012 +0200 user-accounts: Update for realmd DBus interface changes * DBus interface was reviewed and there were several things added to make it more generic and useful for other realm types. * Use ObjectManager to track objects in realmd. This facilitates using realmd with the way it now uses multiple interfaces on objects. https://bugzilla.gnome.org/show_bug.cgi?id=682185 panels/user-accounts/Makefile.am | 4 +- .../user-accounts/data/org.freedesktop.realmd.xml | 645 ++++++++++++++++++--- ...org.gnome.controlcenter.user-accounts.policy.in | 2 +- panels/user-accounts/um-account-dialog.c | 68 ++- panels/user-accounts/um-realm-manager.c | 501 +++++++--------- panels/user-accounts/um-realm-manager.h | 13 +- 6 files changed, 837 insertions(+), 396 deletions(-) commit 6b2557f1b3380119d06848cc4c84f064780480cd Author: Sebastian Keller Date: Mon Aug 20 10:50:08 2012 +0100 network: Improve wifi layout - Increase size of the window - Remove killswitch and hotspot buttons from scrollview Signed-off-by: Richard Hughes panels/network/network-wifi.ui | 154 ++++++++++++++++++++--------------------- 1 file changed, 76 insertions(+), 78 deletions(-) commit 21c6fccc129c052899a4e8c4bd830041bcb6fce6 Author: Piotr Drąg Date: Sun Aug 19 18:35:37 2012 +0200 Updated Polish translation po/pl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 99a99b7f13b2df41aa883e30f60701e18ad36cc1 Author: A S Alam Date: Sun Aug 19 15:08:33 2012 +0530 Update Punjabi Translation po/pa.po | 437 ++++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 249 insertions(+), 188 deletions(-) commit 7ffbf3bc5eb4d65510040465177c5525d1ca6a6c Author: Ihar Hrachyshka Date: Sun Aug 19 00:46:09 2012 +0300 Updated Belarusian translation. po/be.po | 1296 +++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 685 insertions(+), 611 deletions(-) commit 7dd80f829fe092e25d8e8c8bb64eb467c30db3be Author: Matthew Barnes Date: Wed Aug 8 17:04:39 2012 +0200 online-accounts: Open specific account through command-line Bump required GOA version to 3.5.90 for goa_client_lookup_by_id. Fixes: https://bugzilla.gnome.org/680458 configure.ac | 2 +- panels/online-accounts/cc-online-accounts-panel.c | 66 +++++++++++++++++++++++ 2 files changed, 67 insertions(+), 1 deletion(-) commit db2ff0fe5210f1fd752b1b035b99277fb0b56fc7 Author: Bastien Nocera Date: Wed Aug 15 16:56:21 2012 +0100 keyboard: Clarify screenshot actions And explain that it saves directly to the Pictures directory. https://bugzilla.gnome.org/show_bug.cgi?id=681849 panels/keyboard/01-screenshot.xml.in | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) commit f217fa286af37fbd040a3d9a98922d02929bc2de Author: Stef Walter Date: Tue Aug 14 18:34:22 2012 +0200 user-accounts: Change behavior/display of panel for remote accounts * Hide the automatic-login and fingerprint widgets * Insensitive account type and real name widgets https://bugzilla.gnome.org/show_bug.cgi?id=681770 panels/user-accounts/um-user-panel.c | 51 +++++++++++++++++++++++++----------- 1 file changed, 36 insertions(+), 15 deletions(-) commit 251a189cfc47b38df14e4ca515f0643973d08668 Author: Stef Walter Date: Tue Aug 14 18:33:30 2012 +0200 user-accounts: Add um_user_is_local_account() method * Use new LocalAccount property in accountsservice to add the um_user_is_local_account() method. https://bugzilla.gnome.org/show_bug.cgi?id=681770 panels/user-accounts/um-user.c | 12 ++++++++++++ panels/user-accounts/um-user.h | 1 + 2 files changed, 13 insertions(+) commit a2149736cdb72cde857d568cff04f29d45478183 Author: Stef Walter Date: Tue Aug 14 17:23:28 2012 +0200 user-accounts: Display the username in list * By displaying the username we get the unix user name for local accounts, and the full login name for remote accounts. * Can now differentiate between accounts with the same display 'real' name. * Can see the full login identity of remote accounts. https://bugzilla.gnome.org/show_bug.cgi?id=681767 panels/user-accounts/um-user-panel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit f5502645ff683b3be9f661929591ed7f5aeef764 Author: Rui Matos Date: Mon Aug 13 23:20:48 2012 +0200 keyboard: Remove unused shortcut treeview sorting code Since the shortcut treeview doesn't have visible headers the sorting code isn't needed. https://bugzilla.gnome.org/show_bug.cgi?id=681794 panels/keyboard/keyboard-shortcuts.c | 71 +----------------------------------- 1 file changed, 2 insertions(+), 69 deletions(-) commit 7bce5758c8facf21be012c815f60fdb720515e97 Author: Rui Matos Date: Mon Aug 13 22:02:36 2012 +0200 keyboard: Fix adding the section separator after the first time The separator would only get added the first time the keyboard panel was opened. https://bugzilla.gnome.org/show_bug.cgi?id=681788 panels/keyboard/keyboard-shortcuts.c | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) commit 923f27950a960a4e94c95c2db78ab9e89647e382 Author: Bastien Nocera Date: Sat Aug 18 18:32:34 2012 +0100 user-accounts: Fix crash on startup Due to badly installed PolicyKit files. https://bugzilla.gnome.org/show_bug.cgi?id=681763 panels/user-accounts/um-user-panel.c | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) commit 0651abd7fb24278426222d9620591a3d70079693 Author: Rui Matos Date: Mon Aug 13 21:53:11 2012 +0200 keyboard: Plug a memory leak https://bugzilla.gnome.org/show_bug.cgi?id=681787 panels/keyboard/keyboard-shortcuts.c | 2 ++ 1 file changed, 2 insertions(+) commit 3f76a97915643522eeac207c17f2d62960271bad Author: Stef Walter Date: Tue Aug 14 17:04:41 2012 +0200 user-accounts: Create the add account dialog on demand * Creating the add account dialog as the panel gets created means that realmd is invoked, network discovery is done and so on. Not optimal. * We also don't really need to cache the account dialog, and can create a new one for each [+] click. https://bugzilla.gnome.org/show_bug.cgi?id=681852 panels/user-accounts/um-user-panel.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) commit 36fa8bf9b76efc6eba11dec503743aa09547451b Author: Stef Walter Date: Tue Aug 14 18:43:18 2012 +0200 user-accounts: Consistent capitalization of 'Account Type' https://bugzilla.gnome.org/show_bug.cgi?id=681771 panels/user-accounts/data/user-accounts-dialog.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 6baadbf8271c09a737ef4463c4e9bc1503425ae8 Author: Bastien Nocera Date: Sat Aug 18 18:10:44 2012 +0100 mouse: Remove dead code panels/mouse/gnome-mouse-properties.c | 27 ++------------------------- 1 file changed, 2 insertions(+), 25 deletions(-) commit e7d6514a11605dd115ae35cec59a99526e310715 Author: Bastien Nocera Date: Sat Aug 18 16:09:24 2012 +0100 shell: Only link to clutter-gtk with cheese support configure.ac | 5 ++--- shell/Makefile.am | 6 ++++-- shell/cinnamon-control-center.c | 4 ++++ 3 files changed, 10 insertions(+), 5 deletions(-) commit 69b2a05b255a7b9e5623ee6007636671b596286c Author: Bastien Nocera Date: Sat Aug 18 16:09:01 2012 +0100 shell: Remove CcNotebook https://bugzilla.gnome.org/show_bug.cgi?id=682127 shell/Makefile.am | 7 - shell/cc-notebook.c | 566 ------------------------------------------- shell/cc-notebook.h | 70 ------ shell/cinnamon-control-center.c | 1 - shell/test-notebook.c | 92 ------- 5 files changed, 736 deletions(-) commit 10c00125f4ce4f8fad1c11556f85bfd46c222289 Author: Bastien Nocera Date: Sat Aug 18 16:03:19 2012 +0100 shell: Drop panel transitions They're not finished and don't match what the designers would want. https://bugzilla.gnome.org/show_bug.cgi?id=682127 shell/cinnamon-control-center.c | 30 +++++++++++++----------------- shell/shell.ui | 3 ++- 2 files changed, 15 insertions(+), 18 deletions(-) commit 72fd5636e5f769d887796caaf450efeaa139ec9b Author: Bastien Nocera Date: Sat Aug 18 16:02:39 2012 +0100 shell: Add GtkNotebook helper functions https://bugzilla.gnome.org/show_bug.cgi?id=682127 shell/cinnamon-control-center.c | 57 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) commit 2a01afe25d7ca42cdd8291df58111b385ba57fec Author: ŠœŠøŃ€Š¾ŃŠ»Š°Š² ŠŠøŠŗŠ¾Š»ŠøŃ› Date: Sat Aug 18 07:47:58 2012 +0200 Updated Serbian translation po/sr.po | 152 +++++++++++++++++++++++++++------------------------------ po/sr@latin.po | 152 +++++++++++++++++++++++++++------------------------------ 2 files changed, 146 insertions(+), 158 deletions(-) commit b7e549165bb2f0ba0c45862ce7353ed2cebee183 Author: Piotr Drąg Date: Sat Aug 18 00:25:50 2012 +0200 Updated POTFILES.in po/POTFILES.in | 1 + 1 file changed, 1 insertion(+) commit 4ee558bdc8374fd1093904096d05a417734daebc Author: William Jon McCann Date: Wed Aug 15 21:12:07 2012 -0400 background: Update the preview when the settings change They may be change from outside (eg. Nautilus). https://bugzilla.gnome.org/show_bug.cgi?id=676539 panels/background/cc-background-panel.c | 66 ++++++++++++++------------------- 1 file changed, 28 insertions(+), 38 deletions(-) commit 18b3486a064e45d77526f8f270231283087c17c3 Author: William Jon McCann Date: Fri Aug 10 18:52:12 2012 -0400 background: Remove sheen overlay The metaphor was valid when we used a monitor to display the preview but now it doesn't work. There is no glass to reflect light. It distracts from the preview and may look like a defect. https://bugzilla.gnome.org/show_bug.cgi?id=676539 panels/background/Makefile.am | 3 +-- panels/background/cc-background-panel.c | 19 ------------------- panels/background/display-overlay.png | Bin 6700 -> 0 bytes 3 files changed, 1 insertion(+), 21 deletions(-) commit 79ec684fa4912a1e5bff17ce11b036cef4a298aa Author: William Jon McCann Date: Tue May 22 11:34:20 2012 -0400 background: New background panel design Implement a new design for the wallpaper selection. https://bugzilla.gnome.org/show_bug.cgi?id=676539 panels/background/Makefile.am | 6 +- panels/background/background.ui | 352 ++----- panels/background/bg-colors-source.c | 61 +- panels/background/bg-flickr-source.c | 2 +- panels/background/bg-pictures-source.c | 2 +- panels/background/bg-source.h | 4 +- panels/background/bg-wallpapers-source.c | 2 +- panels/background/cc-background-chooser-dialog.c | 335 ++++++ panels/background/cc-background-chooser-dialog.h | 60 ++ panels/background/cc-background-panel.c | 1194 ++++++---------------- panels/background/display-base.png | Bin 22374 -> 0 bytes panels/background/display-overlay.png | Bin 9549 -> 6700 bytes 12 files changed, 824 insertions(+), 1194 deletions(-) commit c2987d8cdee89be5209b1bc4c8af108bcb0f7dcb Author: Bastien Nocera Date: Fri Aug 17 17:47:43 2012 +0100 printers: Check that cups-config exists Before using it. configure.ac | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) commit 7483b80b14aa48637c5f68c2298be1c93d905328 Author: ŠœŠøŃ€Š¾ŃŠ»Š°Š² ŠŠøŠŗŠ¾Š»ŠøŃ› Date: Fri Aug 17 12:11:22 2012 +0200 Updated Serbian translation po/sr.po | 309 +++++++++++++++++++++++++++++++++------------------------ po/sr@latin.po | 309 +++++++++++++++++++++++++++++++++------------------------ 2 files changed, 360 insertions(+), 258 deletions(-) commit d3571a0b597d0846a1203892becdc1115edc41b0 Author: Shankar Prasad Date: Fri Aug 17 12:08:55 2012 +0530 Updated kn translation po/kn.po | 3638 +++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 2036 insertions(+), 1602 deletions(-) commit b523cb386055b8d8c68f62922432841f5eb66170 Author: Shankar Prasad Date: Fri Aug 17 11:58:17 2012 +0530 Updated kn translation po/kn.po | 3634 +++++++++++++++++++++++++++----------------------------------- 1 file changed, 1600 insertions(+), 2034 deletions(-) commit bc76ba093d0d00cc29ae3ac3ded9c297bf7c7def Author: Shankar Prasad Date: Fri Aug 17 10:46:41 2012 +0530 Updated kn translation po/kn.po | 369 ++++++++++++++++++++++++++------------------------------------- 1 file changed, 149 insertions(+), 220 deletions(-) commit 11abc4ad1c7a09fa6ac433b57c6e2e9ce9d4647d Author: Shankar Prasad Date: Fri Aug 17 07:57:26 2012 +0530 Updated kn translation po/kn.po | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) commit 9a5d3c267b9017a7b17558c07eb6ea7e1770a5d2 Author: Reşat SABIQ Date: Thu Aug 16 19:25:18 2012 -0500 Minor update for Crimean Tatar/Turkish translation po/crh.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit d8d5cf447e330e9506cb8dd8f4563b0f52ad0cf2 Author: Reşat SABIQ Date: Thu Aug 16 19:03:25 2012 -0500 Updated Crimean Tatar (Crimean Turkish) translation po/crh.po | 2701 ++++++++++++++++++++++++++++++------------------------------- 1 file changed, 1349 insertions(+), 1352 deletions(-) commit 5e6bf1972ef94084609335a941c130c58ee3796a Author: Fran DiĆ©guez Date: Fri Aug 17 01:33:53 2012 +0200 Updated Galician translations po/gl.po | 2091 +++++--------------------------------------------------------- 1 file changed, 144 insertions(+), 1947 deletions(-) commit c6e7235d5ecc61450077b2ed9dd5bcc64ebedf04 Author: Daniel Mustieles Date: Thu Aug 16 16:10:03 2012 +0200 Updated Spanish translation po/es.po | 307 ++++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 176 insertions(+), 131 deletions(-) commit 1585d18edfbeeee99b5b60ca8b65a8bfd1e61bde Author: Nilamdyuti Goswami Date: Thu Aug 16 18:39:26 2012 +0530 Assamese translation updated po/as.po | 312 ++++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 179 insertions(+), 133 deletions(-) commit b106468e01e7ef6be5b7784808f152318a8ba925 Author: Bastien Nocera Date: Wed Aug 15 19:05:17 2012 +0100 universal-access: Fix deprecation warnings Related to GtkColorButton https://bugzilla.gnome.org/show_bug.cgi?id=676817 panels/universal-access/zoom-options.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) commit 131a5ce94764658a6d5733fb50c24f17299b0f29 Author: Alejandro PiƱeiro Date: Wed Aug 15 17:02:42 2012 +0200 universal-access: Split the zoom dialog options Split dialogue into 3 tabs: * Magnifier * Crosshair * Color Effects and add a global zoom switch for easy access. https://bugzilla.gnome.org/show_bug.cgi?id=676817 panels/universal-access/zoom-options.c | 12 +- panels/universal-access/zoom-options.ui | 1519 +++++++++++++++++-------------- 2 files changed, 837 insertions(+), 694 deletions(-) commit 2d6161d45b09518b76cabc0567690d13cf5a02a1 Author: Joseph Scheuhammer Date: Fri Jul 27 15:50:41 2012 -0400 universal-access: Add zoom shader options Add 'Color effects' section to zoom options dialogue: - a toggle for inversion (White on black) - a slider for brightness - a slider for contrast - a slider for grey scale https://bugzilla.gnome.org/show_bug.cgi?id=676817 panels/universal-access/zoom-options.c | 126 +++++++- panels/universal-access/zoom-options.ui | 492 ++++++++++++++++++++++++++++---- 2 files changed, 565 insertions(+), 53 deletions(-) commit cda48dbf6ba0a0105ffc445d57395a301fbfc1db Author: Shankar Prasad Date: Tue Aug 14 17:51:22 2012 +0530 Updated kn translation po/kn.po | 161 ++++++++++++++++++++++++--------------------------------------- 1 file changed, 62 insertions(+), 99 deletions(-) commit c4f4272f7c6ff23aa6b09dec6c862b08cda8fc01 Author: Stef Walter Date: Mon Aug 13 10:59:47 2012 +0200 bluetooth: Require gnome-bluetooth 3.5.5 * Due to API change in gnome-bluetooth commit 1c39fbaeaf782597857216430906a74865e7661b where there were changes like s/KILLSWITCH_STATE/BLUETOOTH_KILLSWITCH_STATE/ https://bugzilla.gnome.org/show_bug.cgi?id=681734 configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 65b09049d88447d89e7c323a667870e3fd538548 Author: Fran DiĆ©guez Date: Tue Aug 14 11:43:44 2012 +0200 Updated Galician translations po/gl.po | 564 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 296 insertions(+), 268 deletions(-) commit c6b24ba94ba55b04c6df9d761ea2f7cd60b7f9d9 Author: Shankar Prasad Date: Mon Aug 13 15:04:53 2012 +0530 Updated kn translation po/kn.po | 3545 ++++++++++++++++++++++++++++++++++++++------------------------ 1 file changed, 2157 insertions(+), 1388 deletions(-) commit 5b9d311c2d36bd224a6b4f552650e5a1b2372c47 Author: A S Alam Date: Mon Aug 13 07:25:30 2012 +0530 Update Punjabi Translation po/pa.po | 692 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 352 insertions(+), 340 deletions(-) commit c693e4f33f0658d7a010b5199bfe3391f2656fa0 Author: Chao-Hsiung Liao Date: Sun Aug 12 23:01:55 2012 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) po/zh_HK.po | 778 +++++++++++++++++++++++++++++--------------------------- po/zh_TW.po | 834 ++++++++++++++++++++++++++++++++---------------------------- 2 files changed, 837 insertions(+), 775 deletions(-) commit 9745f93922c5793b78c018eb27f5ed0b594207f8 Author: Khaled Hosny Date: Sun Aug 12 12:50:19 2012 +0200 Updated Arabic translation po/ar.po | 822 +++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 461 insertions(+), 361 deletions(-) commit e959be7e869d08ff041a3de4cebfbf8965e1ad9e Author: Sandeep Sheshrao Shedmake Date: Sat Aug 11 19:52:45 2012 +0530 Updated Marathi Translations po/mr.po | 9390 +++++++++++++++++++++++++++++++++++++++++++------------------- 1 file changed, 6589 insertions(+), 2801 deletions(-) commit 621d05e65acf397906cd124ebee7808a60b4fbf4 Author: Dirgita Date: Sat Aug 11 04:31:35 2012 +0700 Updated Indonesian translation po/id.po | 485 ++++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 291 insertions(+), 194 deletions(-) commit 71db59d9a2b881b941df03e04eeb910f029822cf Author: Marek Kasik Date: Thu Aug 9 14:23:49 2012 +0200 printers: Remove obsoleted notebook page This commit removes the notebook page which consists old printer options. It was replaced by separate dialog. panels/printers/cc-printers-panel.c | 20 ---- panels/printers/printers.ui | 182 +----------------------------------- 2 files changed, 4 insertions(+), 198 deletions(-) commit 0f5eae643b186162c1397e1b05b5aa19e144f77e Author: Bastien Nocera Date: Wed Aug 8 17:20:52 2012 +0100 3.5.6 NEWS | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ configure.ac | 2 +- 2 files changed, 49 insertions(+), 1 deletion(-) commit 54f5a8c7c6661ad6e7565f038a4e829d199b9d03 Author: Daniel Mustieles Date: Wed Aug 8 17:07:24 2012 +0200 Updated Spanish translation po/es.po | 370 +++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 215 insertions(+), 155 deletions(-) commit fa5e27d3209fa15eb6096ef975f305e6032ac037 Author: Jiri Popelka Date: Wed Aug 8 14:33:25 2012 +0200 Use CUPS-1.6 IPP API getter/setter functions. CUPS 1.6 makes various structures private and introduces these ippGet and ippSet functions for all of the fields in these structures. http://www.cups.org/str.php?L3928 We define our own accessors when building against CUPS < 1.6. (#679759) (modified by Marek Kasik) panels/printers/cc-printers-panel.c | 20 ++- panels/printers/pp-new-printer-dialog.c | 10 +- panels/printers/pp-utils.c | 277 ++++++++++++++++++-------------- 3 files changed, 183 insertions(+), 124 deletions(-) commit ec2fc6d8b6aeb9d1faf42911e675224a4d152ba9 Author: Stef Walter Date: Wed Aug 8 09:33:07 2012 +0200 user-accounts: Remove needless console output https://bugzilla.gnome.org/show_bug.cgi?id=680892 panels/user-accounts/um-realm-manager.c | 1 - 1 file changed, 1 deletion(-) commit 4e67ecc45651729e2bcff40fac420098cdf41449 Author: Stef Walter Date: Wed Aug 8 09:30:35 2012 +0200 user-accounts: Cleanup GVariant usage * Don't call g_variant_ref_sink() unnecessarily. * Don't call g_variant_new_variant() unnecessarily. https://bugzilla.gnome.org/show_bug.cgi?id=680892 panels/user-accounts/um-account-dialog.c | 4 +--- panels/user-accounts/um-realm-manager.c | 9 ++------- 2 files changed, 3 insertions(+), 10 deletions(-) commit f28736ce17d5430510fb08e722f96809f627e50e Author: Nilamdyuti Goswami Date: Wed Aug 8 12:51:32 2012 +0530 Assamese translation updated po/as.po | 525 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 259 insertions(+), 266 deletions(-) commit fe25e2302e96483b32d67787f41d2342c1776ec1 Author: ŠœŠøŃ€Š¾ŃŠ»Š°Š² ŠŠøŠŗŠ¾Š»ŠøŃ› Date: Wed Aug 8 07:20:46 2012 +0200 Updated Serbian translation po/sr.po | 363 +++++++++++++++++++++++++++++++++------------------------ po/sr@latin.po | 363 +++++++++++++++++++++++++++++++++------------------------ 2 files changed, 424 insertions(+), 302 deletions(-) commit 478c6af97d6b1f99134ec9d864aa19b430eb4ca0 Author: Matthias Clasen Date: Wed Aug 8 01:14:58 2012 -0400 network: Make only the list background white panels/network/net-device-wifi.c | 5 +++++ 1 file changed, 5 insertions(+) commit 96682e13684d7b0e3fd17a63635006b86bb9b53e Author: Matthias Clasen Date: Wed Aug 8 00:32:34 2012 -0400 network: Put the ssid in the detail page header panels/network/net-device-wifi.c | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) commit 901ad8c94105993b5522968ddffd2bf9cd42823f Author: Matthias Clasen Date: Wed Aug 8 00:20:04 2012 -0400 network: Cosmetic fixes Mark a few strings as translatable, and rename 'Options' to 'Settings' to match the mockups. panels/network/network-wifi.ui | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 61a5c180ecc4acec1d74cb02c573660572cd32e0 Author: Matthias Clasen Date: Wed Aug 8 00:16:37 2012 -0400 network: Don't make the options button insensitive We always want to be able to go there. panels/network/net-device-wifi.c | 8 -------- 1 file changed, 8 deletions(-) commit 0e70a56f9e713b266f5f523cf03e5e44959f4423 Author: Matthias Clasen Date: Tue Aug 7 23:44:22 2012 -0400 Trivial: Add a missing space panels/network/net-device-wifi.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit e76472c5483eec908f926a6fe9ec6012959978df Author: Matthias Clasen Date: Tue Aug 7 23:40:47 2012 -0400 network: Improve the hotspot dialog Change the hotspot dialog to match the mockups more closely. panels/network/net-device-wifi.c | 80 ++++++++++--------------- panels/network/network-wifi.ui | 122 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 152 insertions(+), 50 deletions(-) commit 637bd5183bb91b0ad029ef59af7b9d578bb1e906 Author: Matthias Clasen Date: Wed Aug 1 20:37:13 2012 +0200 info: change 'other media action' mnemonic Use the A instead of the o. There are no conflicts, and using the first character as mnemonic is better. https://bugzilla.gnome.org/show_bug.cgi?id=681211 panels/info/info.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 5fc4b1809b41c5acc7622df02744aba8dff91639 Author: Matthias Clasen Date: Wed Aug 1 20:36:04 2012 +0200 info: Fix mnemonic activation for 'other media action' The mnemonic was pointing at a box, which is not activatable. https://bugzilla.gnome.org/show_bug.cgi?id=681211 panels/info/cc-info-panel.c | 6 ++++++ panels/info/info.ui | 3 +-- 2 files changed, 7 insertions(+), 2 deletions(-) commit 34caef89ef89d63548572621ed4a2166b49eee1a Author: Matthias Clasen Date: Wed Aug 1 20:25:28 2012 +0200 info: replace one GtkTable instance by GtkGrid https://bugzilla.gnome.org/show_bug.cgi?id=681211 panels/info/info.ui | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) commit a8662e4261fbd6edaf2ed42b503964e164d54ee9 Author: Matthias Clasen Date: Wed Aug 1 20:16:21 2012 +0200 info: Use GtkBox instead of GtkHBox/GtkVBox https://bugzilla.gnome.org/show_bug.cgi?id=681211 panels/info/info.ui | 48 ++++++++++++++++++++++++++++++++---------------- 1 file changed, 32 insertions(+), 16 deletions(-) commit d06f19b903935ccbbaf736efc2513fa0f376f9de Author: Piotr Drąg Date: Tue Aug 7 23:45:02 2012 +0200 Updated POTFILES.in po/POTFILES.in | 2 ++ 1 file changed, 2 insertions(+) commit b5e0cc29e91441b73ae86a8700c9c57b143863e8 Author: ŠœŠøŃ€Š¾ŃŠ»Š°Š² ŠŠøŠŗŠ¾Š»ŠøŃ› Date: Tue Aug 7 23:32:33 2012 +0200 Updated Serbian translation po/sr.po | 276 +++++++++++++++++++++++++-------------------------------- po/sr@latin.po | 276 +++++++++++++++++++++++++-------------------------------- 2 files changed, 240 insertions(+), 312 deletions(-) commit 96d58bf995d180f43fc8861f50880b7a41d36a26 Author: Andika Triwidada Date: Wed Aug 8 03:58:28 2012 +0700 Updated Indonesian translation po/id.po | 6526 ++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 3761 insertions(+), 2765 deletions(-) commit 6a068261a67fe0f4308056a0b3676ad325598ae4 Author: Daniel Mustieles Date: Tue Aug 7 21:02:46 2012 +0200 Updated Spanish translation po/es.po | 264 ++++++++++++++++++++++++++++----------------------------------- 1 file changed, 119 insertions(+), 145 deletions(-) commit 15bcc03b4063bad9c3f338ca5fd37e21c0ced779 Author: Cyrus Lien Date: Tue Aug 7 14:23:21 2012 +0800 display: Do not add preferred mode to drop down in clone mode. Use preferred resolution to switch to mirror mode will popup error messages if preferred resolution is not a common resolution. https://bugzilla.gnome.org/show_bug.cgi?id=680969 panels/display/cc-display-panel.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) commit c3e71b49277e1e12bccd65b8575aa847862e6868 Author: Matthias Clasen Date: Tue Aug 7 10:19:18 2012 -0400 network: Don't show shared connections in the wifi list A shared connection is the leftover of an inactive hotspot. We don't want to show these in the list. panels/network/net-device-wifi.c | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) commit 9db6b3c5f531578b06d80ae286609fa8468d5c34 Author: Matthias Clasen Date: Tue Aug 7 09:58:29 2012 -0400 Trivial: fix a typo panels/user-accounts/um-account-dialog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit c6d8b9c8252cbf4e439cad0a225b841b2189fec0 Author: Marek Kasik Date: Tue Aug 7 14:09:33 2012 +0200 printers: Place jobs to separate dialog This commit places list of jobs to separate dialog. The dialog is updated through calling of pp_jobs_dialog_update() from "Printers" panel because the panel is already subscribed to cups notifications. panels/printers/Makefile.am | 7 +- panels/printers/cc-printers-panel.c | 446 ++++------------------------- panels/printers/jobs-dialog.ui | 183 ++++++++++++ panels/printers/pp-jobs-dialog.c | 541 ++++++++++++++++++++++++++++++++++++ panels/printers/pp-jobs-dialog.h | 42 +++ panels/printers/pp-utils.c | 265 ++++++++++++++++++ panels/printers/pp-utils.h | 26 ++ panels/printers/printers.ui | 154 +--------- 8 files changed, 1122 insertions(+), 542 deletions(-) commit 439b75fcea59101c02b378388f14b502dc6baea9 Author: Marek Kasik Date: Tue Aug 7 12:28:05 2012 +0200 printers: Return accidentally removed code Return implementation of get_help_uri() which was accidentally removed. panels/printers/cc-printers-panel.c | 7 +++++++ 1 file changed, 7 insertions(+) commit ed1c9becf7bdd80b2d18a8635819240f9ab3579e Author: Richard Hughes Date: Tue Aug 7 09:19:23 2012 +0100 network: If a hotspot is already connected at startup then don't show the AP list panels/network/net-device-wifi.c | 39 +++++++++++++++++++++++++++------------ 1 file changed, 27 insertions(+), 12 deletions(-) commit a6b2db1e178d1f82409966a8ffa772955eea3525 Author: Marek Kasik Date: Tue Aug 7 11:54:11 2012 +0200 printers: Cancel async operations properly Don't call callbacks of async functions called from Printers panel if they were cancelled. User data are not valid in that case (rhbz#845496). panels/printers/cc-printers-panel.c | 90 ++++++++++++++++++++++++++++++------- panels/printers/pp-utils.c | 31 ++++++++++--- panels/printers/pp-utils.h | 5 ++- 3 files changed, 103 insertions(+), 23 deletions(-) commit aa867311c2ef48ee13d6dc9acf6d446fbdc1e21b Author: Nilamdyuti Goswami Date: Tue Aug 7 14:54:47 2012 +0530 Assamese translation updated po/as.po | 1303 +++++++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 826 insertions(+), 477 deletions(-) commit 3fa35643fa5c3371a1d699d496b03a167f6732b3 Author: Chao-Hsiung Liao Date: Tue Aug 7 15:10:48 2012 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) po/zh_HK.po | 765 +++++++++++++++++++++++++++++++------------------------- po/zh_TW.po | 819 ++++++++++++++++++++++++++++++++---------------------------- 2 files changed, 865 insertions(+), 719 deletions(-) commit fdad89f85205a37707649ea70514ae34774f33ce Author: Colin Walters Date: Mon Aug 6 18:19:24 2012 -0400 build: Add --disable-documentation option For embedded systems, it's pointless to build the docs if they're not going to be used/shown. Also, for gnome-ostree right now I don't have the Docbook infrastructure set up. Makefile.am | 5 ++++- configure.ac | 12 +++++++++++- 2 files changed, 15 insertions(+), 2 deletions(-) commit 576d6ba04dc89406bd0e62ca7be23f05a9e2d489 Author: Matthias Clasen Date: Mon Aug 6 14:34:51 2012 -0400 screen: Keep 'show notifications' sensitive Even when automatic screen locking is disabled, the user can still manually lock the screen, and may want to control whether notifications show up in that case or not. panels/screen/cc-screen-panel.c | 6 ------ 1 file changed, 6 deletions(-) commit 1f4aeb1d05c24af428294b5955d36456d0a3544e Author: Stef Walter Date: Tue Jul 31 09:17:34 2012 +0200 user-panel: Update to new DBus interface for realmd 0.6 * In particular support of different credential methods and better hints for different owners of those credentials, so we can prompt more cleanly. * Less abstraction in the realmd interfaces https://bugzilla.gnome.org/show_bug.cgi?id=680892 .../user-accounts/data/org.freedesktop.realmd.xml | 101 ++++++------ panels/user-accounts/um-account-dialog.c | 47 ++++-- panels/user-accounts/um-realm-manager.c | 169 ++++++++++++++++----- panels/user-accounts/um-realm-manager.h | 16 +- 4 files changed, 224 insertions(+), 109 deletions(-) commit 6ee1e694df965c92ed8f5e16bc5067f59a845ae2 Author: ŠœŠøŃ€Š¾ŃŠ»Š°Š² ŠŠøŠŗŠ¾Š»ŠøŃ› Date: Sun Aug 5 12:18:44 2012 +0200 Updated Serbian translation po/sr.po | 479 ++++++++++++++++++++++++++++++++++----------------------- po/sr@latin.po | 479 ++++++++++++++++++++++++++++++++++----------------------- 2 files changed, 568 insertions(+), 390 deletions(-) commit dfede0780038d6aae840ef059c6efff0060876d4 Author: Matthias Clasen Date: Sat Aug 4 12:50:05 2012 -0400 Add a man page The main purpose of this man page is to document which options can be given to individual panels. https://bugzilla.gnome.org/show_bug.cgi?id=680547 Makefile.am | 4 +- configure.ac | 3 + man/Makefile.am | 19 +++ man/cinnamon-control-center.xml | 308 +++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 332 insertions(+), 2 deletions(-) commit 45bd60108f8f4648b5b85efe556d419b29a32487 Author: Cheng Lu Date: Sat Aug 4 14:54:05 2012 +0800 Update Chinese simplified translation for ui po/zh_CN.po | 1508 ++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 876 insertions(+), 632 deletions(-) commit c272aa5eb572012b0aa5da4c63a76d4b310cbaa8 Author: Marek Kasik Date: Thu Aug 2 11:47:39 2012 +0200 printers: Don't restrict PPD list Don't restrict PPD list to PPDs with DeviceIDs only. Extend dictionary of manufacturers names. panels/printers/cc-printers-panel.c | 8 +- panels/printers/pp-utils.c | 158 ++++++++++++++++++++++++------------ 2 files changed, 112 insertions(+), 54 deletions(-) commit 1cffa8e206e7fb9f4a0dbab05c3a810b15ee2879 Author: Stef Walter Date: Tue Jul 31 09:14:52 2012 +0200 user-panel: Fix memory leak of UmRealmManager https://bugzilla.gnome.org/show_bug.cgi?id=680890 panels/user-accounts/um-realm-manager.c | 2 ++ 1 file changed, 2 insertions(+) commit fb6833e57ab92cea99cc1af13a7c6b8db77ba900 Author: Stef Walter Date: Tue Jul 31 09:08:04 2012 +0200 user-panel: Strip remote dbus error before showing error * GDBus transfers dbus error codes in the error->message so strip that out before display https://bugzilla.gnome.org/show_bug.cgi?id=680889 panels/user-accounts/um-account-dialog.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) commit e707b83dc5033f44bdfb2c37596e2b2bf6588be1 Author: Fran DiĆ©guez Date: Tue Jul 31 01:46:02 2012 +0200 Updated Galician translations po/gl.po | 131 ++++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 76 insertions(+), 55 deletions(-) commit 4386dcadfa86fd3520cd18f4095a5b687aa50b3e Author: Daniel Mustieles Date: Mon Jul 30 16:53:22 2012 +0200 Updated Spanish translation po/es.po | 147 +++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 81 insertions(+), 66 deletions(-) commit 68405bcf376b2187ffa7c9b0c0db29fe6135a157 Author: Daniel Mustieles Date: Mon Jul 30 12:48:16 2012 +0200 Updated Spanish translation po/es.po | 295 ++++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 177 insertions(+), 118 deletions(-) commit d282d37e92f3735b042e8ee7a4468e6e289b0064 Author: Richard Hughes Date: Mon Jul 30 10:05:41 2012 +0100 network: Fix a Gtk warning introduced recently due to a mnemonic widget name panels/network/network-wifi.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit c0d771c277bda0ba73ab308d4c3013601e04bd3a Author: Richard Hughes Date: Mon Jul 30 10:03:04 2012 +0100 network: Don't show a blank name server label in the IP overview panels/network/panel-common.c | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) commit 763788894c4383894d638b6764507da4b036705a Author: Richard Hughes Date: Mon Jul 30 09:59:13 2012 +0100 network: Don't show the NULL address in the IP overview panels/network/panel-common.c | 2 ++ 1 file changed, 2 insertions(+) commit ae5acbe421159fc559746713d56e6c18a84cca6d Author: Richard Hughes Date: Mon Jul 30 09:53:38 2012 +0100 network: Show hotspot details in a new sub-frame to match the mockup panels/network/net-device-wifi.c | 123 ++++++++-------- panels/network/network-wifi.ui | 304 ++++++++++++++++++++++++++++----------- 2 files changed, 285 insertions(+), 142 deletions(-) commit 14011dac11840c2894d2d3eb0e964317091b11af Author: Richard Hughes Date: Mon Jul 30 09:49:40 2012 +0100 network: Cleanup coding style to match the rest of the file panels/network/net-device-wifi.c | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) commit 240e3b0598926d0411bcf258a92e055b94e36966 Author: Richard Hughes Date: Mon Jul 30 09:45:44 2012 +0100 network: Do not show the start hotspot button if the user has no permissions panels/network/net-device-wifi.c | 9 +++++++++ 1 file changed, 9 insertions(+) commit 5b35fb719c0527ee96af7af01afdeecec08f37e9 Author: Richard Hughes Date: Mon Jul 30 08:57:55 2012 +0100 network: Re-enable the hidden network functionality panels/network/net-device-wifi.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit f7af831ff62e7975cb2b5128d3e9536ca079b3d8 Author: Richard Hughes Date: Mon Jul 30 08:53:43 2012 +0100 network: Make the hidden network UI match the new mockups panels/network/net-device-wifi.c | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) commit 26432f180f33bd8163b410b069a64d709a989306 Author: Fran DiĆ©guez Date: Mon Jul 30 02:09:41 2012 +0200 Updated Galician translations po/gl.po | 1240 +++++++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 774 insertions(+), 466 deletions(-) commit 051766d4827655be0211ffd20fcbbfd0aa82f249 Author: Matthias Clasen Date: Fri Jul 27 22:37:46 2012 +0200 network: Remove nonexisting widget from size group This was causing warnings. panels/network/network.ui | 3 --- 1 file changed, 3 deletions(-) commit 5b1491ba0c253bfaf3300eeea29b19b9c026d53b Author: Cosimo Cecchi Date: Sun Jul 29 11:35:24 2012 +0200 network: don't set 'dim-label' in the section It should be set among the normal properties. https://bugzilla.gnome.org/show_bug.cgi?id=680773 panels/network/network-wifi.ui | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 2ad1d5461a08d9c761b4c66b9d237680b71639b0 Author: Cosimo Cecchi Date: Sun Jul 29 11:34:57 2012 +0200 network: add a shadow to the wireless scrolled window https://bugzilla.gnome.org/show_bug.cgi?id=680773 panels/network/network-wifi.ui | 1 + 1 file changed, 1 insertion(+) commit 1c762ace213c95f7111aa047617de7abd1078ddf Author: A S Alam Date: Sat Jul 28 07:07:29 2012 +0530 update Punjabi Translation po/pa.po | 1331 +++++++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 836 insertions(+), 495 deletions(-) commit b05de99a0be85ae4abaf437a9a10b6397f535320 Merge: fbe6756 5c5c538 Author: Richard Hughes Date: Fri Jul 27 16:20:37 2012 +0100 Merge branch 'network-wifi-rework' commit 5c5c538ebed771db16d51159a1f065b2b0aa8821 Author: Richard Hughes Date: Fri Jul 27 16:19:18 2012 +0100 network: Don't show the speed and security when the wifi device is deactivated panels/network/net-device-wifi.c | 50 +++++++++++++--------------------------- 1 file changed, 16 insertions(+), 34 deletions(-) commit 7cca78437db4bbbea291d2b915c6926dc6f26e78 Author: Richard Hughes Date: Fri Jul 27 14:12:18 2012 +0100 network: Forget the last selected network when the button is clicked Before we were deleting the connection currently bound to the device... panels/network/net-device-wifi.c | 99 ++++++++++++++++++++++++++++------------ 1 file changed, 70 insertions(+), 29 deletions(-) commit 1aa2ed94919a9d2e4278dd2e0f2248e6b905d199 Author: Richard Hughes Date: Fri Jul 27 11:49:54 2012 +0100 network: Show detailed information about saved wireless connections panels/network/net-device-wifi.c | 109 +++++++++++++++--- panels/network/network-wifi.ui | 237 ++++++++++++++++++++++++++++++++++++--- 2 files changed, 317 insertions(+), 29 deletions(-) commit fbe6756c6f2104d78854da927b96c3d88cd31a2e Author: Rico Tzschichholz Date: Fri Jul 27 09:06:47 2012 +0200 configure: fix build with --disable-ibus https://bugzilla.gnome.org/show_bug.cgi?id=680133 configure.ac | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) commit c1201537cdb0b8b9d304e072d6f20658126dcfef Author: ŠœŠøŃ€Š¾ŃŠ»Š°Š² ŠŠøŠŗŠ¾Š»ŠøŃ› Date: Thu Jul 26 23:16:22 2012 +0200 Updated Serbian translation po/sr.po | 7366 +++++++++++++++++++++++++++++++++++++------------------- po/sr@latin.po | 7366 +++++++++++++++++++++++++++++++++++++------------------- 2 files changed, 9786 insertions(+), 4946 deletions(-) commit 8776700a73f68ac00bf23d846c9158f8e6c1ce35 Author: Bastien Nocera Date: Thu Jul 26 17:54:03 2012 +0200 bluetooth: Update for killswitch API change panels/bluetooth/cc-bluetooth-panel.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) commit 9a10722da21096501a45af13e6191971465bf799 Author: Richard Hughes Date: Thu Jul 26 15:41:25 2012 +0100 network: Show the wireless speed as a seporate line in the details ...to match the mockup. panels/network/net-device-wifi.c | 19 +++++++++---------- panels/network/network-wifi.ui | 34 +++++++++++++++++++++++++++++----- 2 files changed, 38 insertions(+), 15 deletions(-) commit a0f69c0809aff8c717b6d7548c280ec9c3e1af8c Author: Richard Hughes Date: Thu Jul 26 14:46:53 2012 +0100 network: Don't crash when showing active APs that are not valid UTF8 There doesn't appear to be any standard saying you have to have ASCII/UTF-8 access point names... panels/network/net-device-wifi.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) commit f14b5501444faec72809b84706cc490b081218e8 Author: Richard Hughes Date: Thu Jul 26 14:43:54 2012 +0100 network: Only show the disconnect button when a device is fully activated panels/network/net-device-wifi.c | 5 +++++ 1 file changed, 5 insertions(+) commit 9441a74e8a289f80a0542b1c665f766837328001 Author: Richard Hughes Date: Thu Jul 26 14:43:17 2012 +0100 network: Add another panel for future hotspot information panels/network/network-wifi.ui | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) commit 38ea1cdefd6fce444a409bde4706a09ebabcd373 Author: Richard Hughes Date: Thu Jul 26 14:29:57 2012 +0100 network: Add network strength to the details panel panels/network/net-device-wifi.c | 2 -- 1 file changed, 2 deletions(-) commit 6b526f121319b78e56423d41cbe1ae143077a8aa Author: Richard Hughes Date: Thu Jul 26 14:29:38 2012 +0100 network: Add network strength to the details panel panels/network/net-device-wifi.c | 22 ++++++++++++++++++++++ panels/network/network-wifi.ui | 34 +++++++++++++++++++++++++++++----- 2 files changed, 51 insertions(+), 5 deletions(-) commit e7319edc9b61bf9ca667a8d1f3b1ad7e04f43706 Author: Richard Hughes Date: Thu Jul 26 14:23:31 2012 +0100 network: Add saved connections to the wireless network list panels/network/net-device-wifi.c | 160 ++++++++++++++++++++++++-- panels/network/network-wifi.ui | 4 + panels/network/panel-cell-renderer-security.c | 4 +- panels/network/panel-cell-renderer-signal.c | 2 +- 4 files changed, 157 insertions(+), 13 deletions(-) commit 5c11b6f94bd9518f449419e089143d7467ff6e2c Author: Richard Hughes Date: Thu Jul 26 13:47:09 2012 +0100 network: Only show the details arrow for active connections panels/network/net-device-wifi.c | 46 +++++++++++++++++++++++++++++++++++++--- 1 file changed, 43 insertions(+), 3 deletions(-) commit 391815c2c19d833eeb61fc7e4e617c1e416ae17a Author: Richard Hughes Date: Thu Jul 26 13:38:55 2012 +0100 network: split the wireless panel into a network list and details panel panels/network/net-device-wifi.c | 322 +++++++++++++++++++++++++++------------ panels/network/network-wifi.ui | 223 ++++++++++++++++++--------- 2 files changed, 372 insertions(+), 173 deletions(-) commit 22323ad6c6974891ff6680811d8f316b88e42e1d Author: Richard Hughes Date: Thu Jul 26 09:58:53 2012 +0100 network: Start to split up the network panel into different views to match the new mockup panels/network/net-device-wifi.c | 8 +- panels/network/network-wifi.ui | 932 +++++++++++++++++++++------------------ 2 files changed, 502 insertions(+), 438 deletions(-) commit 2bbd94094251f5b5aa2a632866974dfbca0bbd2c Author: ŠœŠøŃ€Š¾ŃŠ»Š°Š² ŠŠøŠŗŠ¾Š»ŠøŃ› Date: Thu Jul 26 09:49:49 2012 +0200 Updated Serbian translation po/sr.po | 7015 ++++++++++++++++++++------------------------------------ po/sr@latin.po | 7015 ++++++++++++++++++++------------------------------------ 2 files changed, 4960 insertions(+), 9070 deletions(-) commit 3e827ce3342681d61fc272bf1949d8aaa7717ec6 Author: Jiro Matsuzawa Date: Wed Jul 25 22:38:15 2012 +0900 [l10n] Update Japanese translation po/ja.po | 1331 ++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 777 insertions(+), 554 deletions(-) commit 556e2cf4e3e41b625774a8deddf19f82a3fb274b Author: Tom Tryfonidis Date: Tue Jul 24 18:35:41 2012 +0300 Updated Greek translation po/el.po | 4839 ++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 2673 insertions(+), 2166 deletions(-) commit c4db04f8a53548738a4fe665f56ea59e91aa92b5 Author: Dominique Leuenberger Date: Mon Jul 23 15:56:53 2012 +0200 configure: We require ibus version 1.4.99 or newer (1.5 unstable) https://bugzilla.gnome.org/show_bug.cgi?id=680133 configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit f9e052eea0703e0e5d7e33fada7d7d2920f2d3d7 Author: Dominique Leuenberger Date: Mon Jul 23 15:04:58 2012 +0200 configure: Bump GTK+ requirement to 3.5.8: first version to bring GtkLevelBar. https://bugzilla.gnome.org/show_bug.cgi?id=680133 configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 3c1d245cbc3061194c5db4d3442c3fb08bae221d Author: Piotr Drąg Date: Mon Jul 23 22:34:14 2012 +0200 Updated POTFILES.in po/POTFILES.in | 2 ++ 1 file changed, 2 insertions(+) commit 12799fdb19feea7cd53425ef9cfe877911c4b0f3 Author: Kjartan Maraas Date: Mon Jul 23 12:38:08 2012 +0200 Updated Norwegian bokmĆ„l translation po/nb.po | 1077 +++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 603 insertions(+), 474 deletions(-) commit 125da078891c703be1fd52e305599a848145a5bc Author: Richard Hughes Date: Mon Jul 23 10:43:02 2012 +0100 network: Remove some dead code from the conversion panels/network/cc-network-panel.c | 110 +++++++------------------------------- 1 file changed, 19 insertions(+), 91 deletions(-) commit 08532a3a86e2a8ee6621c857281cf9a06bc77545 Author: Richard Hughes Date: Mon Jul 23 10:14:31 2012 +0100 network: Prevent a crash when a device is removed and then re-added panels/network/net-device.c | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) commit b06bb9e5f36a26f99506c2ef0d284885b3ba6e08 Author: Richard Hughes Date: Fri Jul 20 12:05:10 2012 +0100 network: Split the wifi device from the .c and .ui file panels/network/Makefile.am | 3 + panels/network/cc-network-panel.c | 2483 ++++++------------------------------- panels/network/net-device-wifi.c | 1538 +++++++++++++++++++++++ panels/network/net-device-wifi.h | 58 + panels/network/network-wifi.ui | 525 ++++++++ panels/network/network.ui | 520 -------- 6 files changed, 2475 insertions(+), 2652 deletions(-) commit a70b3f2c8e3b9c88c72e67793a82f7de006890dd Author: Khaled Hosny Date: Sun Jul 22 23:45:39 2012 +0200 Updated Arabic translation po/ar.po | 300 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 157 insertions(+), 143 deletions(-) commit 5366d1188e212d472905ac325df9a4c03eb711a9 Author: Matthias Clasen Date: Sun Jul 22 13:00:18 2012 -0400 info: Check PackageKit version at runtime The previous patch made use use PackageKit 0.8 API. This patch adds a version check that keeps the info panel from crashing when it finds an older PackageKit at runtime. panels/info/cc-info-panel.c | 32 +++++++++++++++++++++++++++----- 1 file changed, 27 insertions(+), 5 deletions(-) commit 76add03e25d87da3c99b1ad1b29081b9195f8d69 Author: Matthias Clasen Date: Sun Jul 22 12:59:15 2012 -0400 info: Adapt to PackageKit API breakage PackageKit 0.8.x has broken several APIs that we are using here. panels/info/cc-info-panel.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 2b3a82b5ce1908099253148fb5fdfa4d03ed9585 Author: Daniel Mustieles Date: Sat Jul 21 18:44:55 2012 +0200 Updated Spanish translation po/es.po | 332 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 163 insertions(+), 169 deletions(-) commit cb6f427798e48d7672e9d608fb614f31b2f43453 Author: Piotr Drąg Date: Sat Jul 21 01:05:18 2012 +0200 Updated POTFILES.in po/POTFILES.in | 4 ++++ 1 file changed, 4 insertions(+) commit aee6325cf22156d274cfb02e2b2c6766cc6b13ce Author: Richard Hughes Date: Fri Jul 20 11:43:05 2012 +0100 network: Add a missing file for the mobile broadband UI panels/network/network-mobile.ui | 378 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 378 insertions(+) commit de8993eddbbea7a67e5de590913ce4563363b256 Author: Richard Hughes Date: Fri Jul 20 09:28:26 2012 +0100 network: Allow NetObjects to get the main panel object so they can show modal dialogs panels/network/cc-network-panel.c | 2 ++ panels/network/net-device-mobile.c | 5 +++-- panels/network/net-object.c | 22 ++++++++++++++++++++++ panels/network/net-object.h | 3 +++ 4 files changed, 30 insertions(+), 2 deletions(-) commit 26b5169beeb7045b77b871cb8aa81d5637c1c025 Author: Richard Hughes Date: Fri Jul 20 09:21:57 2012 +0100 network: Split the mobile broadband device from the .c and .ui file panels/network/Makefile.am | 3 + panels/network/cc-network-panel.c | 343 +--------------------- panels/network/net-device-mobile.c | 570 +++++++++++++++++++++++++++++++++++++ panels/network/net-device-mobile.h | 59 ++++ panels/network/network.ui | 420 --------------------------- 5 files changed, 636 insertions(+), 759 deletions(-) commit 62b8a4c8bbca007eb6514771baa4e3eea94e93e7 Author: Richard Hughes Date: Fri Jul 20 09:08:53 2012 +0100 network: Add a NetObject->edit vfunc for the different devices to use panels/network/net-device-wired.c | 15 +-------------- panels/network/net-device.c | 23 +++++++++++++++++++++++ panels/network/net-object.c | 8 ++++++++ panels/network/net-object.h | 2 ++ panels/network/net-vpn.c | 8 ++++++++ 5 files changed, 42 insertions(+), 14 deletions(-) commit a808633484695fbe245f5797108123c749985e5a Author: Richard Hughes Date: Wed Jul 18 15:08:07 2012 +0100 network: Split the wired device from the .c and .ui file panels/network/Makefile.am | 3 + panels/network/cc-network-panel.c | 165 +++-------------- panels/network/net-device-wired.c | 271 ++++++++++++++++++++++++++++ panels/network/net-device-wired.h | 58 ++++++ panels/network/network-wired.ui | 366 ++++++++++++++++++++++++++++++++++++++ panels/network/network.ui | 360 ------------------------------------- 6 files changed, 726 insertions(+), 497 deletions(-) commit 5644bd6e6291278e3829cbb0c2a04e0a1d2fcd21 Author: Richard Hughes Date: Wed Jul 18 14:57:26 2012 +0100 network: Add panel_set_device_widgets() to the widget common code We can use this from the different NetDevice types, and once all the devices are converted to actual NetDeviceFoo-style objects we can remove the legacy code in cc-network-panel.c panels/network/panel-common.c | 172 +++++++++++++++++++++++++++++++++++++++++- panels/network/panel-common.h | 2 + 2 files changed, 172 insertions(+), 2 deletions(-) commit 1e4b0649f497e3969c73ac20e27a25df1886b435 Author: Matthias Clasen Date: Thu Jul 19 21:36:20 2012 -0400 region: Handle being opened twice gracefully When the going from the region panel to the overview and back, the input methods in the list loose their display names. What is happening is that we recreate the ibus object, but the second time around it is already connected since ibus uses a shared singleton connection internally. Thus, the ::connected signal is never emitted, and we don't fetch the engines. Work around this by checking if the newly created ibus object is already connected, and directly calling fetch_ibus_engines if it is. To make this work, we have to set up the treeview with its model earlier. panels/region/gnome-region-panel-input.c | 39 +++++++++++++++++--------------- 1 file changed, 21 insertions(+), 18 deletions(-) commit 0af48c80a95f9ca6ceca0b1b65e0a17b96fcb4f3 Author: Matthias Clasen Date: Thu Jul 19 21:34:18 2012 -0400 region: Make the code more robust update_ibus_active_sources may very well be called with an empty treeview. The code that iterates over the model was assuming that there is at least one item. Fix that by checking the return value of gtk_tree_model_get_iter_first(). panels/region/gnome-region-panel-input.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) commit b807656dbb8db5bb0e61d2de47004be9a616f07a Author: Ihar Hrachyshka Date: Thu Jul 19 22:58:20 2012 +0300 Updated Belarusian translation. po/be.po | 600 +++++++++++++++++++++++++++++++++++++++++++++------------------ 1 file changed, 428 insertions(+), 172 deletions(-) commit 06554439b7243aa3625d52ad8fe41ed621d3ac3c Author: Olivier Fourdan Date: Wed Jul 18 14:23:29 2012 +0200 wacom: Do calibration for the selected tool only As different tools may have different resolutions (e.g. touch vs. stylus on tablets which support both). https://bugzilla.gnome.org/show_bug.cgi?id=680114 panels/wacom/calibrator/gui_gtk.c | 13 +++++++++++++ panels/wacom/calibrator/gui_gtk.h | 1 + panels/wacom/calibrator/main.c | 3 ++- panels/wacom/cc-wacom-page.c | 14 +++++++++++++- 4 files changed, 29 insertions(+), 2 deletions(-) commit f004ecb17d826ef4389ebe0d2f8ca5c34eb6392d Author: Olivier Fourdan Date: Wed Jul 18 15:17:36 2012 +0200 wacom: Fix critical warning after calibration g_variant_new_array() creates a floating reference and g_settings_set_value() consumes it, so don't unref the GVariant ourselves. https://bugzilla.gnome.org/show_bug.cgi?id=680171 panels/wacom/cc-wacom-page.c | 1 - 1 file changed, 1 deletion(-) commit d37487ffa52d7294b186c75562e2753513426e6b Author: Tobias Endrigkeit Date: Wed Jul 18 21:48:29 2012 +0200 Updated German translation po/de.po | 2714 ++++++++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 1740 insertions(+), 974 deletions(-) commit 20f85e38b742d7976cea10de5f910a91b05d5648 Author: Chao-Hsiung Liao Date: Wed Jul 18 09:34:45 2012 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) po/zh_HK.po | 594 +++++++++++++++++++++++++++++++++++++++++++----------------- po/zh_TW.po | 594 +++++++++++++++++++++++++++++++++++++++++++----------------- 2 files changed, 848 insertions(+), 340 deletions(-) commit 21d93f184c192a73b6984d320a7b432c92bbc8eb Author: Aurimas Černius Date: Tue Jul 17 22:19:40 2012 +0300 Updated Lithuanian translation po/lt.po | 1592 +++++++++++++++++++++++++++++--------------------------------- 1 file changed, 754 insertions(+), 838 deletions(-) commit fad7dcba736a2b3a3e873d442475fdd3c17e4b23 Author: Bastien Nocera Date: Tue Jul 17 19:09:17 2012 +0100 3.5.5 NEWS | 36 ++++++++++++++++++++++++++++++++++++ configure.ac | 2 +- 2 files changed, 37 insertions(+), 1 deletion(-) commit 00c51443ae596b7e024b175e8c9f047c42fe5738 Author: Richard Hughes Date: Tue Jul 17 16:15:13 2012 +0100 network: Add some more widget setting common code panels/network/panel-common.c | 20 ++++++++++++++++++++ panels/network/panel-common.h | 3 +++ 2 files changed, 23 insertions(+) commit f4c13e835b72c8f3f274000663390932c0f74462 Author: Richard Hughes Date: Tue Jul 17 16:00:40 2012 +0100 network: Move setting the device header pairs to common panel code This is yet another step to splitting out the other devices types. panels/network/net-vpn.c | 84 +++++++++++-------------------------------- panels/network/network-vpn.ui | 52 +++++++++++++-------------- panels/network/panel-common.c | 34 ++++++++++++++++++ panels/network/panel-common.h | 4 +++ 4 files changed, 85 insertions(+), 89 deletions(-) commit 95d0a2e537e02fcd880bf70f7d607a74145f06b9 Author: Giovanni Campagna Date: Tue Jul 10 16:17:15 2012 +0200 screen: add "Show Notifications" setting Add a checkbox to control the visibility of notifications when the screen is locked. https://bugzilla.gnome.org/show_bug.cgi?id=658660 panels/screen/cc-screen-panel.c | 12 ++++++++++++ panels/screen/screen.ui | 30 +++++++++++++++++++++++++++--- 2 files changed, 39 insertions(+), 3 deletions(-) commit 7e5654bf484c2e1d47eb3e29658a03320f44643f Author: Richard Hughes Date: Tue Jul 17 14:13:31 2012 +0100 network: Fix a trivial GTK warning at startup about a missing widget panels/network/network.ui | 1 - 1 file changed, 1 deletion(-) commit 6de161617a324b49332de624b037a3d8f6132ad7 Author: Richard Hughes Date: Tue Jul 17 14:13:08 2012 +0100 network: Fix the VPN information my setting the connection at object construction time panels/network/cc-network-panel.c | 1 + panels/network/net-vpn.c | 73 +++++++++++++++++++++++++++++++++++++-- panels/network/net-vpn.h | 2 -- 3 files changed, 71 insertions(+), 5 deletions(-) commit 04dc515aa51b0a105a9675dacd8fd0ad40ce6d7f Author: Khaled Hosny Date: Tue Jul 17 13:26:56 2012 +0200 Updated Arabic translation po/ar.po | 824 ++++++++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 528 insertions(+), 296 deletions(-) commit 89a815a6f95ff3d6846b8eec63c0095f1a5ef652 Author: Daniel Mustieles Date: Tue Jul 17 12:04:18 2012 +0200 Updated Spanish translation po/es.po | 364 +++++++++++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 285 insertions(+), 79 deletions(-) commit 96f7cbae9064592eb4717a9ae2bd913750ce6c9d Author: Richard Hughes Date: Mon Jul 16 17:37:18 2012 +0100 network: Return success from panel_set_notebook_page_for_object() This is so we can run the panel with both old-style and new-style NetDevices whilst we are migrating the device kinds. panels/network/cc-network-panel.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) commit e72194482e3eb718a42615fa9e6bd52025a15ad2 Author: Richard Hughes Date: Mon Jul 16 17:35:56 2012 +0100 network: Remove some unused code panels/network/cc-network-panel.c | 24 ------------------------ 1 file changed, 24 deletions(-) commit 3c2a09294cb6fc237f5f780b2f37adc8c113d12c Author: Richard Hughes Date: Mon Jul 16 17:34:24 2012 +0100 network: Set the device properties at construct time We need this for more complicated devices that need to contact other daemons, for instance ModemManager. panels/network/cc-network-panel.c | 31 ++++++++++++++++++------------- panels/network/net-device.c | 10 ---------- panels/network/net-device.h | 2 -- panels/network/net-object.c | 31 ++++--------------------------- panels/network/net-object.h | 3 --- panels/network/net-vpn.c | 11 ----------- panels/network/net-vpn.h | 1 - 7 files changed, 22 insertions(+), 67 deletions(-) commit cd765a1267b01c843fdf10ad122e4b8daab973c2 Author: Richard Hughes Date: Mon Jul 16 17:28:09 2012 +0100 network: Export net_device_get_find_connection() so it can be used by future network devices panels/network/cc-network-panel.c | 168 ++------------------------------------ panels/network/net-device.c | 167 +++++++++++++++++++++++++++++++++++++ panels/network/net-device.h | 1 + 3 files changed, 177 insertions(+), 159 deletions(-) commit 5d17320817bc26418d9e07745affba50ec680e11 Author: Richard Hughes Date: Mon Jul 16 17:22:56 2012 +0100 network: Add a GObject nm-device property for NetDevice panels/network/net-device.c | 65 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 64 insertions(+), 1 deletion(-) commit f9e2828f77bb2a03b6bdc27e249f4fa7ed59c565 Author: Richard Hughes Date: Mon Jul 16 17:15:43 2012 +0100 network: Add a NMRemoteSettings property to NetObject for future use panels/network/net-object.c | 22 ++++++++++++++++++++++ panels/network/net-object.h | 2 ++ 2 files changed, 24 insertions(+) commit b48fc1b65c5781a4da1fe51941d02daa2c9abc9a Author: Richard Hughes Date: Mon Jul 16 17:14:01 2012 +0100 network: Add a GCancellable property to NetObject for future use panels/network/net-object.c | 23 ++++++++++++++++++++++- panels/network/net-object.h | 1 + 2 files changed, 23 insertions(+), 1 deletion(-) commit 7fcc4666ac8fce4cb0d8599b0b921f75097358e2 Author: Richard Hughes Date: Tue Jul 17 10:21:13 2012 +0100 network: Set the correct page when using mobile broadband devices panels/network/cc-network-panel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 64150f145890143316fa3aefbbd322f3698369de Author: Matthias Clasen Date: Tue Jul 17 00:00:16 2012 -0400 Avoid losing the selection When the active input sources list is changed in any way (add or remove or reorder a source), we write the list to the setting, and then we get a changed signal for the setting, and rebuild the list from the setting. Doing so loses the selection, unless we take extra precaution to keep it. https://bugzilla.gnome.org/show_bug.cgi?id=680027 panels/region/gnome-region-panel-input.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) commit 54835c8f4486309c1517a7f71735fbdd7e098c5f Author: Matthias Clasen Date: Mon Jul 16 23:59:03 2012 -0400 Remove one more leftover reference to a filter model The active input sources are no longer stored in a filter model. Also, use gtk_list_store_insert_with_values for atomic insertion. panels/region/gnome-region-panel-input.c | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) commit ee32c358f1f7da62f9876e38a010f72eb2323ab1 Author: Bastien Nocera Date: Mon Jul 16 18:05:04 2012 +0100 shell: Don't handle shortcuts with excess modifiers Ctrl+Alt+W shouldn't be handled the same way as Ctrl+W. https://bugzilla.gnome.org/show_bug.cgi?id=675475 shell/cinnamon-control-center.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) commit 1fdfa6bc32077ff246cc8531e01d690327467602 Author: Olivier Fourdan Date: Thu Jul 5 15:36:10 2012 +0200 wacom: show calibration success by drawing an "emblem-ok-symbolic" icon when calibration is successful https://bugzilla.gnome.org/show_bug.cgi?id=668610 panels/wacom/calibrator/gui_gtk.c | 108 +++++++++++++++++++++++++++++++++++--- 1 file changed, 101 insertions(+), 7 deletions(-) commit 953cc81b0f07c0e5f4e1f34a139efafe6d61fea1 Author: Matthias Clasen Date: Mon Jul 16 12:07:39 2012 -0400 Region: Remove references to a no-longer-existing filter model There was some code left around for dealing with a filter model, but we don't have the active input sources in a filtered list anymore. This was leading to crashes when removing or rearranging input sources. panels/region/gnome-region-panel-input.c | 36 ++++++-------------------------- 1 file changed, 6 insertions(+), 30 deletions(-) commit 3b4f577652bf0544a2070df5ea473ba08b926ab0 Author: Bastien Nocera Date: Mon Jul 16 17:03:36 2012 +0100 shell: Fix not being able to assign Ctrl+Q to a shortcut Because the shell window was capturing it before the key editing cell had a change to get to it. s/g_signal_connect/g_signal_connect_after/ https://bugzilla.gnome.org/show_bug.cgi?id=671448 shell/cinnamon-control-center.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit ab0594239c5e43b3a14a0cf40ab2cce039a17a53 Author: Bastien Nocera Date: Mon Jul 16 16:40:15 2012 +0100 region: Fix compilation failure A use of the removed tree_view_get_actual_model() crept in. panels/region/gnome-region-panel-input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit bf710914becf8f228ed38cf8d9b3c7c075df65b1 Author: Piotr Drąg Date: Mon Jul 16 17:49:55 2012 +0200 Updated POTFILES.in po/POTFILES.in | 6 ++++++ 1 file changed, 6 insertions(+) commit 5dd45a964d062dc2f7a066c00247bfe062f2a7f4 Author: Daniel Mustieles Date: Mon Jul 16 16:43:23 2012 +0200 Updated Spanish translation po/es.po | 608 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 321 insertions(+), 287 deletions(-) commit 661019dadcdfe08a7d184c37a881fafea254a10e Author: Bastien Nocera Date: Mon Jul 16 15:24:23 2012 +0100 region: Remove unneeded signal blockers The value isn't going to change from under us, as the settings object is in delayed mode. panels/region/gnome-region-panel-input.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) commit 3579d7bb970376a0a9d8616f334d23e7f71202af Author: Rui Matos Date: Mon Jul 2 03:30:12 2012 +0200 region: Try to keep the current input source when modifying the list When modifying the input sources list the currently active source's index might change. We must change the current setting accordingly to keep it active. https://bugzilla.gnome.org/show_bug.cgi?id=662489 panels/region/gnome-region-panel-input.c | 62 ++++++++++++++++++++++++++------ 1 file changed, 51 insertions(+), 11 deletions(-) commit 49f7d379bc38aeeeb84cf98571d34a1a0ba28423 Author: Rui Matos Date: Mon Jul 2 04:05:09 2012 +0200 region: Fix a couple of memory leaks Unref the GSettings object and build the GnomeXkbInfo only once. There's no need to free and keep rebuilding the latter since it doesn't keep any state and is a bit expensive to build. https://bugzilla.gnome.org/show_bug.cgi?id=662489 panels/region/gnome-region-panel-input.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 03f08fd36c059c17f3af723ca29e0ad931fc6a26 Author: Bastien Nocera Date: Mon Jul 16 15:15:28 2012 +0100 region: Never hide items from view If IBus is unavailable to get the input source's display name, just show the ID instead, and populate the display name when we get a change (eg. when fetching the input sources from IBus is done). panels/region/gnome-region-panel-input.c | 70 ++++++-------------------------- 1 file changed, 13 insertions(+), 57 deletions(-) commit 5e737900b0df98aa5c6aac9fc0b83fff9f454692 Author: Rui Matos Date: Mon Jul 2 03:39:10 2012 +0200 region: Wire up the input source settings button For XKB input sources the settings button remains unsensitive. For IBus sources we make it sensitive and launch the engine's setup tool on clicked if there is one. https://bugzilla.gnome.org/show_bug.cgi?id=662489 panels/region/gnome-region-panel-input.c | 115 ++++++++++++++++++++++++++++--- 1 file changed, 104 insertions(+), 11 deletions(-) commit 412e53079f051c7358f0200c38cd5957dc082e94 Author: Rui Matos Date: Tue May 22 19:14:40 2012 +0200 region: Add IBus input sources We query IBus for the available engines and present them alongside XKB layouts. https://bugzilla.gnome.org/show_bug.cgi?id=662489 configure.ac | 22 +- panels/region/gnome-region-panel-input.c | 356 ++++++++++++++++++++++++++++--- 2 files changed, 348 insertions(+), 30 deletions(-) commit 7ae3027b472422cdae47c09dd0420b297dacf089 Author: Marek Kasik Date: Mon Jul 16 15:25:10 2012 +0200 printer: Add "Options" dialog Add Options dialog which allows users to set more options than current dialog. The dialog reads printer's PPD file and add its options to the dialog together with some preselected IPP options (#678637). All operations in the dialog are asynchronous. During implementation of this, the option for setting allowed users was removed because this is not suitable for this panel (the option is intended for administrators). panels/printers/Makefile.am | 7 + panels/printers/cc-printers-panel.c | 343 ++---------- panels/printers/options-dialog.ui | 182 ++++++ panels/printers/pp-ipp-option-widget.c | 605 ++++++++++++++++++++ panels/printers/pp-ipp-option-widget.h | 70 +++ panels/printers/pp-options-dialog.c | 984 +++++++++++++++++++++++++++++++++ panels/printers/pp-options-dialog.h | 42 ++ panels/printers/pp-ppd-option-widget.c | 624 +++++++++++++++++++++ panels/printers/pp-ppd-option-widget.h | 63 +++ panels/printers/pp-utils.c | 285 ++++++++++ panels/printers/pp-utils.h | 25 + 11 files changed, 2937 insertions(+), 293 deletions(-) commit e61ec214b06fb1b9a82abb42e076f51ef6c2ee76 Author: Richard Hughes Date: Mon Jul 16 14:08:25 2012 +0100 network: Ensure to install the VPN .ui file panels/network/Makefile.am | 1 + 1 file changed, 1 insertion(+) commit dd7479caeace07e44d72cd310753a87a44e3e578 Author: Marek Kasik Date: Mon Jul 16 11:10:02 2012 +0200 printers: Allow users to change printer's PPD file This commit adds popup window which when activated allows user to select PPD from local database of installed PPDs, select directly PPD from filesystem or select one from 3 recommended PPDs (#678637). The popup is activated by clicking on model field (the panel has to be unlocked). It starts to search for the best PPDs available immediately after its popup. All operations are asynchronous. panels/printers/Makefile.am | 15 +- panels/printers/cc-printers-panel.c | 641 ++++++++++- panels/printers/pp-ppd-selection-dialog.c | 444 ++++++++ panels/printers/pp-ppd-selection-dialog.h | 46 + panels/printers/pp-utils.c | 1635 +++++++++++++++++++++++++++++ panels/printers/pp-utils.h | 90 ++ panels/printers/ppd-selection-dialog.ui | 206 ++++ panels/printers/printers.ui | 75 +- 8 files changed, 3119 insertions(+), 33 deletions(-) commit 1b3e877ef2e1e35ab4f33fea83ffb422286dbf88 Author: Cosimo Cecchi Date: Mon Jun 11 09:58:07 2012 -0400 shell: remove CcStrengthBar Panels are all ported to GtkLevelBar instead. https://bugzilla.gnome.org/show_bug.cgi?id=679984 shell/Makefile.am | 2 - shell/cc-strength-bar.c | 395 ------------------------------------------------ shell/cc-strength-bar.h | 69 --------- 3 files changed, 466 deletions(-) commit dfe03a1173f2c1d5cae8db948bfd57a0e193ecf4 Author: Cosimo Cecchi Date: Mon Jun 11 09:57:31 2012 -0400 user-accounts: port to GtkLevelBar This also adds another out parameter to pw_strength(), which is a discrete indication of the password strength (to be used with GtkLevelBar). The advantage of having such a parameter back from pw_strength() is that we can make sure the fill value and the hint string change at the same time, for better consistency. https://bugzilla.gnome.org/show_bug.cgi?id=679984 panels/user-accounts/data/password-dialog.ui | 8 +++++++- panels/user-accounts/pw-utils.c | 30 ++++++++++++++++++---------- panels/user-accounts/pw-utils.h | 3 ++- panels/user-accounts/um-password-dialog.c | 9 ++++----- panels/user-accounts/um-user-panel.c | 2 -- 5 files changed, 33 insertions(+), 19 deletions(-) commit b05591b1654c391f6d4aa113525b70ca736f68a0 Author: Cosimo Cecchi Date: Mon Jun 11 09:56:49 2012 -0400 power: port to GtkLevelBar https://bugzilla.gnome.org/show_bug.cgi?id=679984 panels/power/cc-power-panel.c | 32 ++++++++++---------------------- panels/power/power.ui | 4 ++-- 2 files changed, 12 insertions(+), 24 deletions(-) commit 38411a0d461540c9cd7a851ff13220786fef6dba Author: Ihar Hrachyshka Date: Sun Jul 15 12:10:30 2012 +0300 Updated Belarusian translation. po/be.po | 735 ++++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 417 insertions(+), 318 deletions(-) commit 59c159da2b6e4174aafbf3e0d73ea744eb5b560c Author: Chao-Hsiung Liao Date: Sat Jul 14 13:54:46 2012 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) po/zh_HK.po | 465 ++++++++++++++++++++++++++--------------------------------- po/zh_TW.po | 467 ++++++++++++++++++++++++++---------------------------------- 2 files changed, 402 insertions(+), 530 deletions(-) commit 118d5c276d1236b29d66f7fd3761aa7b317c381f Author: Piotr Drąg Date: Thu Jul 12 22:23:22 2012 +0200 Updated POTFILES.in po/POTFILES.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) commit 0a98c5a921225055af230dcf218e52c99035134d Author: Richard Hughes Date: Thu Jul 12 17:29:47 2012 +0100 network: Provide a vfunc for refreshing a NetObject panels/network/net-device.c | 1 + panels/network/net-object.c | 8 ++++++++ panels/network/net-object.h | 2 ++ panels/network/net-vpn.c | 8 ++++++++ 4 files changed, 19 insertions(+) commit 8384a0b741728c33c6a84003fc6efde4ec91161c Author: Richard Hughes Date: Thu Jul 12 16:58:11 2012 +0100 network: Split the VPN parts from the .c and .ui file panels/network/cc-network-panel.c | 189 ++------------------- panels/network/net-vpn.c | 273 ++++++++++++++++++++++++++++--- panels/network/net-vpn.h | 7 - panels/network/network-vpn.ui | 336 ++++++++++++++++++++++++++++++++++++++ panels/network/network.ui | 313 ----------------------------------- 5 files changed, 603 insertions(+), 515 deletions(-) commit ddabc6049f8aaf7e7123970ee289a1d8af309332 Author: Richard Hughes Date: Thu Jul 12 16:55:20 2012 +0100 network: Add a vfunc so a NetObject can be deleted We will only support this for VPN 'devices' but it seemed a cleaner abstraction this way. panels/network/net-object.c | 8 ++++++++ panels/network/net-object.h | 2 ++ 2 files changed, 10 insertions(+) commit eeecc61d0583023dd40fcc295432cab1e50a3ca0 Author: Richard Hughes Date: Thu Jul 12 16:35:06 2012 +0100 network: Share a NMClient instance between NetObjects Creating a NMClient is expensive and slow. This will be used in future code. panels/network/cc-network-panel.c | 1 + panels/network/net-object.c | 31 +++++++++++++++++++++++++++++++ panels/network/net-object.h | 4 ++++ 3 files changed, 36 insertions(+) commit c26e14518ea66491dba2c2dcf356bbab865f68ef Author: Richard Hughes Date: Thu Jul 12 14:07:54 2012 +0100 network: Split the proxy parts from the .c and .ui file A source file with 4k lines of code is not understandable, and the glade file was becoming quite a challenge for glade. To add more features we need to split things up just to keep them maintainable. This is the first patch that just splits out the proxy bits. Other device types will follow in the next few days. panels/network/Makefile.am | 6 +- panels/network/cc-network-panel.c | 353 +++++-------------------------- panels/network/net-device.c | 4 +- panels/network/net-object.c | 20 ++ panels/network/net-object.h | 17 +- panels/network/net-proxy.c | 388 ++++++++++++++++++++++++++++++++++ panels/network/net-proxy.h | 59 ++++++ panels/network/network-proxy.ui | 427 ++++++++++++++++++++++++++++++++++++++ panels/network/network.ui | 415 ------------------------------------ po/POTFILES.in | 2 + 10 files changed, 975 insertions(+), 716 deletions(-) commit 298489ee167486c0ca808805c699e73843b09356 Author: Richard Hughes Date: Thu Jul 12 14:00:40 2012 +0100 network: Add a boolean 'removable' property to NetObject for future use Also add GObject getters and setters for the other two properties. panels/network/net-object.c | 99 +++++++++++++++++++++++++++++++++++++++++++++ panels/network/net-object.h | 3 ++ 2 files changed, 102 insertions(+) commit a995cfac99e0642517268b5ba2552cadb15a962a Author: Bastien Nocera Date: Wed Jul 11 16:35:38 2012 +0100 build: Require PulseAudio 2.0 for the sound changes configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 89fbf2b35bfef9d56e9109745f040158a5594b60 Author: Bastien Nocera Date: Wed Jul 11 16:26:28 2012 +0100 sound: Use PulseAudio's implementation of pa_cvolume_set_position() panels/sound/gvc-balance-bar.c | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) commit 3cf252f4f0874276804f0c64c3c194ed42995d02 Author: Bastien Nocera Date: Wed Jul 11 16:24:53 2012 +0100 sound: Remove support code for older PulseAudio our define of PA_VOLUME_UI_MAX was only needed for PA 0.9.22 and older. panels/sound/gvc-mixer-control.c | 5 ----- 1 file changed, 5 deletions(-) commit 1dfd464a5907a1aa8b241790ffe5b7f8f31e505f Author: Conor Curran Date: Wed Jul 11 16:19:24 2012 +0100 sound: Add support for GvcMixerUIDevices in GvcMixerControl https://bugzilla.gnome.org/show_bug.cgi?id=674831 panels/sound/gvc-mixer-control.c | 1116 +++++++++++++++++++++++++++++++++++++- panels/sound/gvc-mixer-control.h | 60 +- 2 files changed, 1138 insertions(+), 38 deletions(-) commit 3201240eeecb935d7eab985230d6104e6a5188a9 Author: Bastien Nocera Date: Wed Jul 11 15:28:44 2012 +0100 sound: Add more debug panels/sound/gvc-mixer-control.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) commit 2a567809a24e6a55b2b88e47225971e61b7aaf71 Author: Conor Curran Date: Wed Jul 11 13:43:07 2012 +0100 sound: Add "available" member to GvcMixerStreamPort https://bugzilla.gnome.org/show_bug.cgi?id=674831 panels/sound/gvc-mixer-stream.h | 1 + 1 file changed, 1 insertion(+) commit 6135c964a7dba0792ef9be7365383667667ed657 Author: Bastien Nocera Date: Wed Jul 11 13:37:56 2012 +0100 sound: Add gvc_mixer_ui_device_get_active_profile() helper https://bugzilla.gnome.org/show_bug.cgi?id=674831 panels/sound/gvc-mixer-ui-device.c | 45 ++++++++++++++++++++++++-------------- panels/sound/gvc-mixer-ui-device.h | 1 + 2 files changed, 29 insertions(+), 17 deletions(-) commit 0489296c33edff1408f897eac768b5576e543650 Author: Bastien Nocera Date: Wed Jul 11 13:18:14 2012 +0100 sound: Fix indentation panels/sound/gvc-mixer-ui-device.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) commit e32a02e2dda8432572075e9134a9a04abdbecbae Author: Conor Curran Date: Wed Jul 11 12:49:20 2012 +0100 sound: Make sort_profiles public And rename it to gvc_mixer_card_profile_compare() https://bugzilla.gnome.org/show_bug.cgi?id=674831 panels/sound/gvc-mixer-card.c | 15 ++++++++++----- panels/sound/gvc-mixer-card.h | 3 +++ 2 files changed, 13 insertions(+), 5 deletions(-) commit e5e7080e4e8e4e8dc5662216d9e5daa9b04bef66 Author: Conor Curran Date: Wed Jul 4 15:26:52 2012 +0200 sound: Add get_gicon() function to GvcMixerCard https://bugzilla.gnome.org/show_bug.cgi?id=674831 panels/sound/gvc-mixer-card.c | 18 ++++++++++++++++++ panels/sound/gvc-mixer-card.h | 2 ++ 2 files changed, 20 insertions(+) commit 4da83052d2c3e237795d64af588ceec9fd0b3cbe Author: Bastien Nocera Date: Wed Jul 11 12:25:31 2012 +0100 sound: Indentation in gvc-mixer-card.h panels/sound/gvc-mixer-card.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) commit fd75ccd894e11951c7149b918759c2e3f87cb97c Author: Conor Curran Date: Fri Jun 8 13:03:58 2012 +0100 sound: Expose ports in GvcMixerCard https://bugzilla.gnome.org/show_bug.cgi?id=674831 panels/sound/gvc-mixer-card.c | 32 ++++++++++++++++++++++++++++++++ panels/sound/gvc-mixer-card.h | 15 ++++++++++++++- 2 files changed, 46 insertions(+), 1 deletion(-) commit db6afc826644f522c4d985083deb6a5b31910a2f Author: Conor Curran Date: Fri Jun 8 12:45:22 2012 +0100 sound: Add new UIDevice object GvcMixerUIDevice objects correspond to an item on either the input or output tab - typically "Headphones", "Speaker", "Internal Mic" etc. https://bugzilla.gnome.org/show_bug.cgi?id=674831 panels/sound/Makefile.am | 2 + panels/sound/gvc-mixer-ui-device.c | 645 +++++++++++++++++++++++++++++++++++++ panels/sound/gvc-mixer-ui-device.h | 81 +++++ 3 files changed, 728 insertions(+) commit e2a75e76c2c4380c1312157f6623efd464d89a28 Author: Bastien Nocera Date: Wed Jul 11 11:21:18 2012 +0100 sound: Remove unused eol parameter panels/sound/gvc-mixer-control.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) commit 4d4aab542af24f47393526b40926f8ba6ad6630a Author: Bastien Nocera Date: Wed Jul 11 11:06:34 2012 +0100 Revert "Brightness & Lock: add Show Notifications setting" This reverts commit 11ad5954c62d3ac083d0a2cde3fd7d3db07c059e. Committed in error panels/screen/cc-screen-panel.c | 12 ------------ panels/screen/screen.ui | 42 +++-------------------------------------- 2 files changed, 3 insertions(+), 51 deletions(-) commit ca29f85201dbd9de72a863e2d67fa198e452db35 Author: David Henningsson Date: Tue Jul 10 17:51:39 2012 +0200 sound: Fixup "set default source" patch The previous commit introduced a segfault due to referencing a NULL pointer. https://bugzilla.gnome.org/show_bug.cgi?id=674925 panels/sound/gvc-mixer-control.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 0d4aa158d8a164aa6d6c688a79b5cc021539c53a Author: Bastien Nocera Date: Tue Jul 10 16:17:04 2012 +0100 build: Require newer gsettings-desktop-schemas configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 11ad5954c62d3ac083d0a2cde3fd7d3db07c059e Author: Giovanni Campagna Date: Tue Jul 10 16:17:15 2012 +0200 Brightness & Lock: add Show Notifications setting Add a switch to control the visibility of notifications when the screen is locked. https://bugzilla.gnome.org/show_bug.cgi?id=658660 panels/screen/cc-screen-panel.c | 12 ++++++++++++ panels/screen/screen.ui | 42 ++++++++++++++++++++++++++++++++++++++--- 2 files changed, 51 insertions(+), 3 deletions(-) commit 7d426ffda37c7ad205b96d3721f6dd27582ae78b Author: Colin Walters Date: Tue Jul 10 17:54:38 2012 -0400 build: Adjust previous patch to be what was intended configure.ac | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) commit e939825c6dc79accb8a00b66d519718a8b71487f Author: Colin Walters Date: Tue Jul 10 17:31:52 2012 -0400 build: Fix previous commit configure.ac | 1 + 1 file changed, 1 insertion(+) commit 1b26ec14e916296300126a82bf660913baf006a6 Author: Žygimantas Beručka Date: Tue Jul 10 18:50:47 2012 +0300 Updated Lithuanian translation po/lt.po | 2620 ++++++++++++++++++++++++++++++++++++++------------------------ 1 file changed, 1623 insertions(+), 997 deletions(-) commit 484b35ec7721c62c313b4cc01eae153908ec4c60 Author: Giovanni Campagna Date: Thu Jun 14 22:55:58 2012 +0200 build: Don't check for gsettings-desktop-schemas in each panel It is already in the common modules, no need to repeat it. https://bugzilla.gnome.org/show_bug.cgi?id=658660 configure.ac | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) commit 80aac59a25f0deb59ae837ac29dd55abe9380745 Author: Kjartan Maraas Date: Mon Jul 9 14:55:01 2012 +0200 Updated Norwegian bokmĆ„l translation po/nb.po | 601 +++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 358 insertions(+), 243 deletions(-) commit 4eee8fab7c364565c7ebde7ab2a0da3cf237be3f Author: Nilamdyuti Goswami Date: Fri Jul 6 14:55:33 2012 +0530 Assamese translation reviewed po/as.po | 453 ++++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 260 insertions(+), 193 deletions(-) commit 836755f593a3e31b6d22a0ef21e08937170970af Author: Olivier Fourdan Date: Thu Jul 5 18:27:56 2012 +0200 wacom: Update from gnome-settings-daemon panels/wacom/gsd-wacom-device.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit fcc40582482b37865c301065cbd73109b0dc9363 Author: Khaled Hosny Date: Thu Jul 5 16:52:24 2012 +0200 Updated Arabic translation po/ar.po | 202 +++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 111 insertions(+), 91 deletions(-) commit 3083fda606bce5ce09662a16911262b4f4958c81 Author: Olivier Fourdan Date: Tue Jul 3 13:59:08 2012 +0200 wacom: Destroy display mapping dialogue on unplug https://bugzilla.gnome.org/show_bug.cgi?id=679159 panels/wacom/cc-wacom-page.c | 7 +++++++ 1 file changed, 7 insertions(+) commit 13b64e04867a06468051c570467b22e57d237853 Author: Rui Matos Date: Tue Jul 3 15:25:46 2012 +0200 keyboard: Plug a GSettings object leak Also, rename the variable holding it since there are other 'settings' variables in the same file. https://bugzilla.gnome.org/show_bug.cgi?id=679328 panels/keyboard/keyboard-shortcuts.c | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) commit f2df6d7fbbb41cee78b94a7c2d3dc331168433b7 Author: Rico Tzschichholz Date: Tue Jul 3 13:54:38 2012 +0200 user-accounts: Fix build with -Werror=format-security panels/user-accounts/um-account-dialog.c | 2 +- panels/user-accounts/um-realm-manager.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) commit 1612735104832e90efd00b8ac4557679877dfe76 Author: Olivier Fourdan Date: Wed May 16 16:56:28 2012 +0200 wacom: apply display rotation to device When an output is mapped to a device, match the device rotation with the output (bug #676170) panels/wacom/cc-wacom-mapping-panel.c | 11 +++++++++++ panels/wacom/cc-wacom-page.c | 28 ++++++++++++++++++++++++++-- 2 files changed, 37 insertions(+), 2 deletions(-) commit 62f34db3327dfeeaa7cc73bd1083169d6c0d78eb Author: Olivier Fourdan Date: Tue Jul 3 11:49:36 2012 +0200 wacom: Update from gnome-settings-daemon panels/wacom/gsd-wacom-device.c | 76 +++++++++++++++++++++++++++++++++++++++++ panels/wacom/gsd-wacom-device.h | 5 +++ 2 files changed, 81 insertions(+) commit b761b7d7c4f9cbdef9dea979d4892f6210675589 Author: Daniel Mustieles Date: Mon Jul 2 17:29:22 2012 +0200 Updated Spanish translation po/es.po | 151 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 77 insertions(+), 74 deletions(-) commit a46eff6f8ca2137330c3302caa2c6d8623e2e3dd Author: Nguyį»…n ThĆ”i Ngį»c Duy Date: Sun Jul 1 10:50:32 2012 +0700 Updated Vietnamese translation po/vi.po | 301 ++++++++++++++++++++++----------------------------------------- 1 file changed, 105 insertions(+), 196 deletions(-) commit 8444760f3a0e92d323a0024d7de7014595184bf0 Author: Nguyį»…n ThĆ”i Ngį»c Duy Date: Sun Jul 1 10:31:57 2012 +0700 po/vi: import from Damned Lies po/vi.po | 2344 +++++++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 1487 insertions(+), 857 deletions(-) commit a4d0923108412d602d9c32405b27b6edd2ef598d Author: Cheng-Chia Tseng Date: Sat Jun 30 23:04:53 2012 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) po/zh_HK.po | 3899 ++++++++++++++++++++++++++++++++-------------------------- po/zh_TW.po | 3907 +++++++++++++++++++++++++++++++++-------------------------- 2 files changed, 4420 insertions(+), 3386 deletions(-) commit 75e74cc09b5965ff80f41c25458ff24b6e333891 Author: Matthias Clasen Date: Wed Jun 13 23:18:39 2012 -0400 network: Use g_clear_object where appropriate Signed-off-by: Richard Hughes panels/network/cc-network-panel.c | 33 ++++++++++----------------------- 1 file changed, 10 insertions(+), 23 deletions(-) commit b154ebd1d639cb74ae98d2ba31a1eab3df9f1bc2 Author: Matthias Clasen Date: Wed Jun 13 23:20:53 2012 -0400 network: Remove redundant returns https://bugzilla.gnome.org/show_bug.cgi?id=678158 Signed-off-by: Richard Hughes panels/network/cc-network-panel.c | 2 -- 1 file changed, 2 deletions(-) commit 31cd509a7502a7df9c6236554a99e1b9abf6c4b2 Author: Matthias Clasen Date: Wed Jun 27 22:42:19 2012 -0400 network: Sort access points by strength Keep the active network at the top, and 'Other' at the bottom. the other access points are sorted by strength now. https://bugzilla.gnome.org/show_bug.cgi?id=678505 Signed-off-by: Richard Hughes panels/network/cc-network-panel.c | 54 +++++++++++++++++++++++++++++---------- panels/network/network.ui | 2 ++ 2 files changed, 42 insertions(+), 14 deletions(-) commit dcb34090cc5b258dcec19f88306d2119e4c57c29 Author: Matthias Clasen Date: Wed Jun 27 23:02:02 2012 -0400 network: avoid crashes due to leftover signal handlers The libnm objects can survive the disposal of the network panel. If we don't disconnect the signal handlers on them, bad things can happen. Use g_signal_connect_object to tie the life-cycle of the signal handlers to the panel. https://bugzilla.gnome.org/show_bug.cgi?id=677969 Signed-off-by: Richard Hughes panels/network/cc-network-panel.c | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) commit 6689012eb8881c548fbca52c2ac09c7511e7deae Author: Richard Hughes Date: Thu Jun 28 12:17:18 2012 +0100 network: Show multiple connections in the mobile broadband panel Resolves: https://bugzilla.gnome.org/show_bug.cgi?id=647170 panels/network/cc-network-panel.c | 137 ++++++++++++++++++++++++++++++++++++++ panels/network/network.ui | 40 +++++++++++ 2 files changed, 177 insertions(+) commit f0b88883d028f43deb09d21dcec95920d4f64b64 Author: Richard Hughes Date: Thu Jun 28 13:42:44 2012 +0100 network: Increase the amount of debugging for mobile-bb panels/network/cc-network-panel.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) commit 59b7500fb64e907fef101ef5607d721e04b0ebe2 Author: Richard Hughes Date: Thu Jun 28 13:41:29 2012 +0100 network: Don't try to show a wizard that failed to setup This fixes a critical warning when mobile-broadband-provider-info isn't installed into the correct prefix. panels/network/network-dialogs.c | 8 ++++++++ 1 file changed, 8 insertions(+) commit fd059a2d1447d6ec32f818dae7668933f2145848 Author: Richard Hughes Date: Thu Jun 28 13:40:08 2012 +0100 network: Don't try to set the mobile broadband speed widgets This fixes a critical warning when using mobile broadband adaptors. panels/network/cc-network-panel.c | 6 ------ 1 file changed, 6 deletions(-) commit fe69f4f1355ae7816d601bb11c155904d9dd86fe Author: David Henningsson Date: Fri Apr 27 11:15:52 2012 +0200 sound: Move running input streams when default source is changed When changing the default input source, active recording streams are not moved. This patch will fix that, which will make input and output behaviour consistent. As a bonus, it will not destroy pulseaudio's input database when changing default sink anymore. https://bugzilla.gnome.org/show_bug.cgi?id=674925 panels/sound/gvc-mixer-control.c | 58 +++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 9 deletions(-) commit 49e3d8b4ce824e8c98bbf1d343055bac8df4ed87 Author: Bastien Nocera Date: Wed Jun 27 10:58:32 2012 +0100 wacom: Update from gnome-settings-daemon panels/wacom/gsd-wacom-device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 4cdaf4e022497334cfb28e828630f9c88534d4bd Author: Daniel Mustieles Date: Tue Jun 26 21:56:05 2012 +0200 Updated Spanish translation po/es.po | 73 +++++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 42 insertions(+), 31 deletions(-) commit 953da26d6876ecf3da9fd1841df2bc5f08a0d774 Author: Bastien Nocera Date: Tue Jun 26 16:39:14 2012 +0100 3.5.4 NEWS | 7 +++++++ configure.ac | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) commit ba5aea5ef72d463eb92f434e68f2faa09bd86eb6 Author: Bastien Nocera Date: Tue Jun 26 16:33:45 2012 +0100 wacom: Update from gnome-settings-daemon panels/wacom/gsd-wacom-device.c | 66 +++++++++++++++++++++-------------------- 1 file changed, 34 insertions(+), 32 deletions(-) commit 206e365eeac7165984f0dc8170cf6ed4ba44ab57 Author: Matej Urbančič Date: Tue Jun 26 09:13:13 2012 +0200 Updated Slovenian translation po/sl.po | 121 +++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 71 insertions(+), 50 deletions(-) commit cfa3aaed0fda99a8bfe3cb169e43992c2141560a Author: Bastien Nocera Date: Mon Jun 25 19:01:07 2012 +0100 3.5.3 NEWS | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) commit 0b029d61e3970e447718a0303455de40c5487068 Author: Noriko Mizumoto Date: Tue Jun 26 00:49:08 2012 +0900 [l10n] Update Japanese translation po/ja.po | 2403 +++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 1442 insertions(+), 961 deletions(-) commit 25708e9c8e395c465be8e9643127b3b43ef4ffb7 Author: Bastien Nocera Date: Mon Jun 25 16:35:41 2012 +0100 sound: Make sure the event sound stream stays unmuted Apply mute changes to the stream straight away so that we don't get a race with gvc_mixer_event_role_push_volume(). See https://bugs.freedesktop.org/show_bug.cgi?id=51413 for details. https://bugzilla.gnome.org/show_bug.cgi?id=677478 panels/sound/gvc-mixer-event-role.c | 4 ++++ 1 file changed, 4 insertions(+) commit 8138227ae3961cc6b39e17ddcb3465107970bbc3 Author: Debarshi Ray Date: Wed Jun 20 14:15:38 2012 +0200 online-accounts: Improve the layout when there is no configured account Use a GtkButton instead of a GtkLabel to incite the user to configure a new account, and insensitize the GtkBox on the left. Fixes: https://bugzilla.gnome.org/672421 panels/online-accounts/cc-online-accounts-panel.c | 49 ++++++++++++- panels/online-accounts/online-accounts.ui | 84 +++++++++++++++++++---- 2 files changed, 115 insertions(+), 18 deletions(-) commit bb531687ca957072470a5851c499993fe056ea85 Author: Matthias Clasen Date: Mon Mar 19 22:11:00 2012 +0000 sound: Fix mouse scrolls on sliders Use gdk_event_get_scroll_deltas() to get the scroll direction. https://bugzilla.gnome.org/show_bug.cgi?id=671724 panels/sound/gvc-balance-bar.c | 43 +++++++++++++++++++++++++---------- panels/sound/gvc-channel-bar.c | 42 ++++++++++++++++++++++++++-------- panels/sound/gvc-channel-bar.h | 4 ++-- panels/sound/gvc-stream-status-icon.c | 2 +- 4 files changed, 66 insertions(+), 25 deletions(-) commit 75cc274a3b62011958f749eb52be4b977ea152e7 Author: Bastien Nocera Date: Mon Jun 25 13:33:04 2012 +0100 sound: Fix use of deprecated gtk_vscale_new() panels/sound/gvc-channel-bar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 9859ffbc27aca0a4f1a58412233498cdf846da70 Author: Bastien Nocera Date: Mon Jun 25 13:32:36 2012 +0100 sound: Remove left-click behaviour work-around https://bugzilla.gnome.org/show_bug.cgi?id=678598 panels/sound/gvc-channel-bar.c | 12 ------------ 1 file changed, 12 deletions(-) commit dd2e8ed5676b2045497e25247049c57b2ddba4d9 Author: Fran DiĆ©guez Date: Sun Jun 24 22:44:38 2012 +0200 Updated Galician translations po/gl.po | 353 ++++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 192 insertions(+), 161 deletions(-) commit a5aeae889963216dac91ca8867e9cea2f67c13b8 Author: Wylmer Wang Date: Sat Jun 23 17:09:05 2012 +0800 update Simplified Chinese (zh_CN) translation po/zh_CN.po | 2140 +++++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 1345 insertions(+), 795 deletions(-) commit 973adfa43b953fd52063404224952b4c55ea98b6 Author: Stef Walter Date: Thu Jun 14 17:10:31 2012 +0200 user-accounts: Update the realmd dbus interface to latest The changes in the realmd dbus interface are futureproofing to support cancellation. In addition during this time of interface flux, check the daemon version number to make sure we can talk to it. https://bugzilla.gnome.org/show_bug.cgi?id=678105 .../user-accounts/data/org.freedesktop.realmd.xml | 23 +++++++++ panels/user-accounts/um-account-dialog.c | 2 +- panels/user-accounts/um-realm-manager.c | 55 ++++++++++++++++++++-- 3 files changed, 76 insertions(+), 4 deletions(-) commit 7ed7628ba6a6f6934b8e93a97e6f20e8ba876462 Author: Gabor Kelemen Date: Thu Jun 21 22:35:42 2012 +0200 Insert soft hyphen characters into long panel names po/hu.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 0f4f7b797dfdcf9a88bbdcc0b1d5839487008f7e Author: Khaled Hosny Date: Thu Jun 21 21:32:11 2012 +0200 Updated Arabic translation po/ar.po | 118 ++++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 64 insertions(+), 54 deletions(-) commit c920ba6d4f7ce56d2e240929278f46ddd791b54a Author: Debarshi Ray Date: Wed Jun 20 15:35:45 2012 +0200 online-accounts: The treeview should be in BROWSE mode and not SINGLE This ensures that if there are configured accounts, then atleast one of them will stay selected. Fixes: https://bugzilla.gnome.org/672421 panels/online-accounts/online-accounts.ui | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit 03ccd9d7806b350e36a5c9bc70edf5a3c8f5169c Author: Daniel Mustieles Date: Thu Jun 21 12:30:37 2012 +0200 Updated Spanish translation po/es.po | 118 +++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 66 insertions(+), 52 deletions(-) commit 4db702151377804043ca6b71184096d4441bf6e3 Author: Bastien Nocera Date: Thu Jun 21 10:36:08 2012 +0100 shell: Fix search results not appearing Introduced in commit d382c42e5ce9b834456b8cda80bddea65b0639c1 by some overeager code removal. https://bugzilla.gnome.org/show_bug.cgi?id=678514 shell/cinnamon-control-center.c | 1 + 1 file changed, 1 insertion(+) commit fd3afa8d4f64d942f2da42fde7504dbd519a2ce1 Author: Jasper St. Pierre Date: Tue Jun 12 17:53:08 2012 -0400 shell: Handle non-existant panels more gracefully If we're at the overview screen and try to launch a non-existant panel, we shouldn't remove the scroll view. https://bugzilla.gnome.org/show_bug.cgi?id=677980 shell/cinnamon-control-center.c | 40 +++++++++++++++------------------------- 1 file changed, 15 insertions(+), 25 deletions(-) commit 8c9a1eec336f9687aff079f6322b12bfc550f852 Author: Matthias Clasen Date: Tue Jun 12 15:22:33 2012 -0400 Be robust against extraneous signal emissions It seems that we are occasionally get duplicate ClutterTimeline::completed emissions. Make the code robust against that. https://bugzilla.gnome.org/show_bug.cgi?id=677946 shell/cc-notebook.c | 1 + 1 file changed, 1 insertion(+) commit 651431dd839702f36c46a8dfe0702471b9b3b145 Author: Debarshi Ray Date: Mon Apr 16 20:22:42 2012 +0200 online-accounts: We might have an object even when the error is set Fixes: https://bugzilla.gnome.org/674165 panels/online-accounts/cc-online-accounts-panel.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) commit 6339c1819a2ae81c831b5d22ba2a431b2af49657 Author: Bastien Nocera Date: Wed Jun 20 13:28:22 2012 +0100 wacom: Bump required gnome-desktop version As needed for gnome_rr_output_get_ids_from_edid() configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 4f935ad4bdc59692239fb023fb8723fd7a5bf629 Author: Luca Ferretti Date: Thu May 31 00:33:11 2012 +0200 backgrounds: add translation context for background sytles panels/background/background.ui | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) commit 9d002d98fdd338593dc08718f62932327d81e5a2 Author: Luca Ferretti Date: Thu May 31 00:32:02 2012 +0200 universal-access: add translator context for Zoom label panels/universal-access/uap.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 22ea414271a6037d4c14ca16602e73367b1a5be3 Author: Olivier Fourdan Date: Tue Jun 19 15:42:45 2012 +0200 wacom: Update from gnome-settings-daemon panels/wacom/gsd-wacom-device.c | 294 +++++++++++++++++++++++----------------- panels/wacom/gsd-wacom-device.h | 1 + 2 files changed, 172 insertions(+), 123 deletions(-) commit 4bbd27ad257a58fbcdb4bf011975350de6be2b22 Author: Sasi Bhushan Boddepalli Date: Tue Jun 19 18:00:03 2012 +0530 Updated Telugu Translation po/te.po | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) commit dd10dac5b3a9aa6c6d18ef5adf391aa47b1ee838 Author: A S Alam Date: Tue Jun 19 07:41:19 2012 +0530 Update Punjabi Translation po/pa.po | 553 +++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 328 insertions(+), 225 deletions(-) commit 9be10b2f6419deb8ccf8beff5da76125e2998690 Author: Matej Urbančič Date: Mon Jun 18 21:08:52 2012 +0200 Updated Slovenian translation po/sl.po | 843 ++++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 487 insertions(+), 356 deletions(-) commit 9386e13aa8009b7beec1418de2791acd5e41c289 Author: Daniel Mustieles Date: Mon Jun 18 14:04:52 2012 +0200 Updated Spanish translation po/es.po | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) commit 806b3e0e13ec63edeb5f635e67dc5a2cd798bd62 Author: Thomas Bechtold Date: Tue Jun 12 00:56:37 2012 +0200 network: Find connections specific MAC address set Resolves: https://bugzilla.gnome.org/show_bug.cgi?id=677899 Signed-off-by: Richard Hughes panels/network/cc-network-panel.c | 180 ++++++++++++++++++++++++++++++++------ 1 file changed, 154 insertions(+), 26 deletions(-) commit e9288acf1c4954dd7cf2f8ac4865a145d426085f Author: Bastien Nocera Date: Mon Jun 18 11:04:19 2012 +0100 sound: Add audio keyword https://bugzilla.gnome.org/show_bug.cgi?id=678303 panels/sound/data/gnome-sound-panel.desktop.in.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit a94f98985130cd61c3ba0d7ef896ea8bb7bf4cb5 Author: Khaled Hosny Date: Sun Jun 17 13:24:33 2012 +0200 Updated Arabic translation po/ar.po | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) commit 43cf067cf2fedc4b0a29a5796bde915c3a708d5f Author: Stef Walter Date: Fri Jun 15 18:45:41 2012 +0200 user-accounts: Use the symbolic error icon in entries Use the symbolic error icon when entries as indication when entries don't validate. https://bugzilla.gnome.org/show_bug.cgi?id=678178 panels/user-accounts/um-utils.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit a9ebbaa4a89e155ea92ab4cd8a95b32bb0bf8b60 Author: Matthias Clasen Date: Fri Jun 15 07:40:56 2012 -0400 users: Set the right toolbar-style on the inline toolbar While running in a bare X server, I noticed the inline toolbar here showing its labels, while all the other inline toolbars in other panels stayed nice and icon-only. The reason is that they explicitly set the toolbar-style to 'icons'. Do the same here. https://bugzilla.gnome.org/show_bug.cgi?id=678157 panels/user-accounts/data/user-accounts-dialog.ui | 1 + 1 file changed, 1 insertion(+) commit 27e8c650af5b3e7a8eab73242939cf7be854ccdc Author: Piotr Drąg Date: Fri Jun 15 20:00:12 2012 +0200 Updated POTFILES.in po/POTFILES.in | 1 + 1 file changed, 1 insertion(+) commit dd9493821cea68e9607eb1220c0785e30ff071b4 Author: Matthias Clasen Date: Fri Jun 15 11:40:27 2012 -0400 screen: Fix the build Move the on_signal callback below the functions that it is using. panels/screen/cc-screen-panel.c | 54 ++++++++++++++++++++--------------------- 1 file changed, 27 insertions(+), 27 deletions(-) commit a1abae0375cb24e27e6cee055ab55ae170b99ee1 Author: Cosimo Cecchi Date: Fri Jun 15 11:04:11 2012 -0400 online-accounts: make "Add Account" label bigger and centered So it's consistent with the User Accounts panel. https://bugzilla.gnome.org/show_bug.cgi?id=678174 panels/online-accounts/cc-online-accounts-add-account-dialog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit b40c1fb2cfcfe70f7c84d7c825d99f7cb4c23f00 Author: Cosimo Cecchi Date: Fri Jun 15 11:01:52 2012 -0400 online-accounts: fix alignment with closing button https://bugzilla.gnome.org/show_bug.cgi?id=678174 .../cc-online-accounts-add-account-dialog.c | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) commit 99047ec0f5db72e1d6fa3d8fc6844b555d23413b Author: Cosimo Cecchi Date: Fri Jun 15 10:37:10 2012 -0400 user-accounts: fix right alignment of controls with actions The controls are not perfectly right-aligned with the action buttons at the bottom; this is because the action area has a border of 6px and the control box of 10px. Fix it, and at the same time add another 6px of spacing at the bottom between the control box and the action box. https://bugzilla.gnome.org/show_bug.cgi?id=678173 panels/user-accounts/data/account-dialog.ui | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 2e2ad76e59866ff616640ca7ab6b1b5f47646c9e Author: Cosimo Cecchi Date: Fri Jun 15 10:22:14 2012 -0400 region: Input Sources tab has a different spacing The first two tabs have 12px, make this 12px too. https://bugzilla.gnome.org/show_bug.cgi?id=678168 panels/region/gnome-region-panel.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 7ab09177e12b6041ca9a681c0739ffa40b6e1f57 Author: Giovanni Campagna Date: Fri Jun 8 23:01:10 2012 +0200 screen: Fix for gnome-settings-daemon changes g-s-d changed its DBus interface, and that made all external changes to brightness invisible to the panel. Update accordingly. https://bugzilla.gnome.org/show_bug.cgi?id=662117 panels/screen/cc-screen-panel.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) commit c8e9d70679f8a311fbf4a0a5da51006a89d2decb Author: Khaled Hosny Date: Fri Jun 15 12:56:46 2012 +0200 Updated Arabic translation po/ar.po | 325 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 164 insertions(+), 161 deletions(-) commit 59661162bd016bae52435028be66fb5f425f8091 Author: Daniel Mustieles Date: Fri Jun 15 12:10:40 2012 +0200 Updated Spanish translation po/es.po | 96 +++++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 52 insertions(+), 44 deletions(-) commit a70e50f268cd70c3f504d0ec6cbc905a4af34931 Author: Stef Walter Date: Thu Jun 14 14:22:18 2012 +0200 user-accounts: Combine realmd permissions into panel unlock Create a new policy file for the admin actions of the user accounts panel, combining the relevant actions of accountsservice and realmd. https://bugzilla.gnome.org/show_bug.cgi?id=678098 panels/user-accounts/Makefile.am | 11 +++++++++++ .../org.gnome.controlcenter.user-accounts.policy.in | 21 +++++++++++++++++++++ panels/user-accounts/um-user-panel.c | 2 +- 3 files changed, 33 insertions(+), 1 deletion(-) commit ea048cce8a0d49e24ff97942acaba47dc89396bf Author: Cosimo Cecchi Date: Thu Jun 14 11:12:30 2012 -0400 user-accounts: avoid horizontal resizing when switching local/enterprise Pack labels and controls in horizontal size groups, so we don't resize the dialog horizontally when switching between the local and enterprise pages. https://bugzilla.gnome.org/show_bug.cgi?id=678104 panels/user-accounts/data/account-dialog.ui | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) commit 6e8ddbaeeadfb02c924eae58ab8965adb0eee2f1 Author: Sebastien Bacher Date: Mon Mar 5 13:47:46 2012 +0100 info: Add software media to "other media" dialogue https://bugzilla.gnome.org/show_bug.cgi?id=671358 panels/info/cc-info-panel.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit cb359701923296502bc38cc4102607485b3a42a5 Author: Sebastien Bacher Date: Mon Mar 5 16:16:56 2012 +0100 info: Add title for the "other media" dialog https://bugzilla.gnome.org/show_bug.cgi?id=671374 panels/info/cc-info-panel.c | 1 + 1 file changed, 1 insertion(+) commit 978aa81a2c2ab18f2f3cbc79ea4dd30e91e9c867 Author: Olivier Fourdan Date: Thu May 3 14:04:20 2012 +0200 wacom: Cancel calibration if window loses focus Make the calibrator window stay above other windows and cancel calibration if/when the calibrator loses input focus. https://bugzilla.gnome.org/show_bug.cgi?id=675354 panels/wacom/calibrator/gui_gtk.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) commit 46186a5f0227602ae0af1103ef1927926b794328 Author: Jon McCann Date: Wed Mar 28 15:10:32 2012 -0400 background: Escape wallpaper filename before display https://bugzilla.gnome.org/show_bug.cgi?id=673015 panels/background/cc-background-panel.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 38d693b1c8c3a8245f339d14961432c6073f4191 Author: Daniel Mustieles Date: Thu Jun 14 13:48:46 2012 +0200 Updated Spanish translation po/es.po | 160 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 81 insertions(+), 79 deletions(-) commit 4a76728978cc36f131db09d71ab62121196eca25 Author: Stef Walter Date: Tue Jun 12 17:17:46 2012 +0200 user-accounts: Set high DBus timeouts for managing realms Enrolling the machine, or discovering realms can take a long time. We don't want DBus timeouts. https://bugzilla.gnome.org/show_bug.cgi?id=677953 panels/user-accounts/um-realm-manager.c | 2 ++ 1 file changed, 2 insertions(+) commit f6838df0c5a5702362b90ed781dbdf581b49b45d Author: Matthias Clasen Date: Wed Jun 13 22:28:46 2012 -0400 network: Make buttons stay put When switching between devices, the Options buttons were jumping up and down. This patch makes them stay put in the lower right corner. The patch also removes a bunch of glade placeholder gunk from the ui file. https://bugzilla.gnome.org/show_bug.cgi?id=677054 Signed-off-by: Richard Hughes panels/network/network.ui | 43 +++++++++++-------------------------------- 1 file changed, 11 insertions(+), 32 deletions(-) commit 9efba451dc8f3de47669251b12996b084b157cb8 Author: Matthias Clasen Date: Wed Jun 13 21:53:12 2012 -0400 network: Make ap list more similar to the shell menu Sort the strength and security indicators in the combo box popup to be in the same order as the shell menu. https://bugzilla.gnome.org/show_bug.cgi?id=677788 Signed-off-by: Richard Hughes panels/network/cc-network-panel.c | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) commit 398ca18a71e2f8e7c85c071bbc1d9c2e630b10f4 Author: Matthias Clasen Date: Wed Jun 13 22:01:04 2012 -0400 network: Sort Wireless first This is the most common case, and is the page we want to end up on when we're coming from the shell menu. https://bugzilla.gnome.org/show_bug.cgi?id=677791 Signed-off-by: Richard Hughes panels/network/panel-common.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) commit df77ca0883e965c25c1f5623bb4c9f8d9ef0508d Author: Matthias Clasen Date: Wed Jun 13 22:47:29 2012 -0400 network: Add mnemonic for Airplane mode This was lost when the airplane mode switch moved up to the top. https://bugzilla.gnome.org/show_bug.cgi?id=671879 Signed-off-by: Richard Hughes panels/network/cc-network-panel.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) commit 22fd0deddae9f997ef9660ed54ab4fb3cec060eb Author: Matthias Clasen Date: Wed Jun 13 22:46:59 2012 -0400 network: Add mnemonics The Create dialog was missing mnemonics for several controls. https://bugzilla.gnome.org/show_bug.cgi?id=671879 Signed-off-by: Richard Hughes panels/network/network.ui | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) commit fd8ca81f8b39b90a65f071c1bbbf6fae310270a3 Author: Matthias Clasen Date: Wed Jun 13 22:56:04 2012 -0400 network: Add a mnemonic for 'Forget Network' https://bugzilla.gnome.org/show_bug.cgi?id=671879 Signed-off-by: Richard Hughes panels/network/network.ui | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit d66e2be977ae9f6cd373e1172c3e1f19a599ad8e Author: Fran DiĆ©guez Date: Thu Jun 14 01:00:35 2012 +0200 Updated Galician translations po/gl.po | 341 +++++++++++++++++++++++++++++++++++++++------------------------ 1 file changed, 211 insertions(+), 130 deletions(-) commit a43eef3ebb33a637851a8b1a7f6afd670642ee1c Author: Nilamdyuti Goswami Date: Wed Jun 13 19:05:56 2012 +0530 Assamese translation reviewed po/as.po | 2750 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 1355 insertions(+), 1395 deletions(-) commit 2589fcfb19683c9d02da835deab9d4a1c45c2c4e Author: Stef Walter Date: Tue Jun 12 17:17:01 2012 +0200 user-accounts: Properly fill the join prompt dialog When prompting users for administrative domain credentials, correctly fill the dialog the first time the prompt is shown. https://bugzilla.gnome.org/show_bug.cgi?id=677954 panels/user-accounts/um-account-dialog.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) commit e6b49fa28dd2e9fd8699fc58fb5545194a1bc982 Author: Daniel Mustieles Date: Wed Jun 13 10:08:59 2012 +0200 Updated Spanish translation po/es.po | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) commit 4511182439fbb31ad47e6521ab071abbcb7be831 Author: Khaled Hosny Date: Tue Jun 12 23:35:38 2012 +0200 Updated Arabic translation po/ar.po | 1905 +++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 1155 insertions(+), 750 deletions(-) commit c619f0bb7949bea8c9e18a8089e0d2a6ff0b94f0 Author: Piotr Drąg Date: Tue Jun 12 21:33:24 2012 +0200 Updated POTFILES.in po/POTFILES.in | 1 + 1 file changed, 1 insertion(+) commit d382c42e5ce9b834456b8cda80bddea65b0639c1 Author: Jasper St. Pierre Date: Tue Jun 12 13:57:43 2012 -0400 shell: Remove reparenting hacks Now that CcNotebook is buildable, we don't need to do these ugly hacks. shell/cinnamon-control-center.c | 14 -------------- 1 file changed, 14 deletions(-) commit f8da96e4259ac331c69587aec26f8c777ed4111b Author: Jasper St. Pierre Date: Tue Jun 12 13:57:19 2012 -0400 shell: Make CcNotebook buildable shell/cc-notebook.c | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) commit 54d24f0574c1ada8eb3ec6d48cb2b9990cb12950 Author: Jasper St. Pierre Date: Tue Jun 12 13:43:45 2012 -0400 shell: Remove unnecessary tabs shell/shell.ui | 6 ------ 1 file changed, 6 deletions(-) commit 5d228b707a4ef559b9e739baf574955bb812a043 Author: Jasper St. Pierre Date: Tue Jun 12 18:27:02 2012 +0100 shell: Fix wrong function being used to get width get width better than get height... shell/cc-notebook.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 7d7fc2e12453f85f0a0f90a77b6f01d89fb4bf4c Author: Bastien Nocera Date: Tue Jun 12 18:16:36 2012 +0100 shell: Fix possible crashers when there are no pages Wouldn't happen in cinnamon-control-center. Spotted by Jasper St. Pierre shell/cc-notebook.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) commit 94033718af8d7458e50a10cf26c01c09b546deee Author: Daniel Mustieles Date: Tue Jun 12 18:31:29 2012 +0200 Updated Spanish translation po/es.po | 271 +++++++++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 175 insertions(+), 96 deletions(-) commit b9e356412fad645fc55f4790f2022ef192bd1a8a Author: Bastien Nocera Date: Tue Jun 12 14:03:25 2012 +0100 power: Fix reference to "Screen" settings This also fixes the use of a split string, as mentioned in bug #675929. https://bugzilla.gnome.org/show_bug.cgi?id=670567 panels/power/cc-power-panel.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) commit 4bb0739670e1b44eb53ad1b1568c17e78cf6c3ce Author: Stef Walter Date: Thu Jun 7 00:58:27 2012 +0200 user-accounts: Implement enterprise logins in add dialog * Use realmd for domain joining and lookup, runtime dependency * Validate join domain correctly * Add UmRealmManager for handling some stuff above the autogenerated realmd dbus code * Show a dialog if the user's credentials cannot be used to join the domain. Prompt for admin creds. * Register the user's login with the AccountsService * This depends on the CacheUser() method of AccountsService https://bugzilla.gnome.org/show_bug.cgi?id=677548 configure.ac | 17 + panels/user-accounts/Makefile.am | 19 +- panels/user-accounts/data/Makefile.am | 1 + panels/user-accounts/data/account-dialog.ui | 359 +++++++++- .../user-accounts/data/org.freedesktop.realmd.xml | 145 ++++ panels/user-accounts/um-account-dialog.c | 591 +++++++++++++++- panels/user-accounts/um-realm-manager.c | 765 +++++++++++++++++++++ panels/user-accounts/um-realm-manager.h | 91 +++ 8 files changed, 1968 insertions(+), 20 deletions(-) commit 06233ebba84913a8f3ace64b0b52c659648a638c Author: Stef Walter Date: Thu May 31 17:06:42 2012 +0200 user-accounts: Add um_user_manager_cache_user() This calls the AccountsService.CacheUser() method to register a user that's not in /etc/passwd Depends on: https://bugs.freedesktop.org/show_bug.cgi?id=50770 https://bugzilla.gnome.org/show_bug.cgi?id=677548 panels/user-accounts/um-user-manager.c | 68 +++++++++++++++++++++++++++++++--- panels/user-accounts/um-user-manager.h | 10 +++++ 2 files changed, 73 insertions(+), 5 deletions(-) commit 228347e713103d052c79c09cc9f76ef83fe6e97d Author: Stef Walter Date: Thu Jun 7 00:20:29 2012 +0200 user-accounts: Add way to change modes Add the buttons to switch between the local account and enterprise modes. The enterprise area just has a place holder widget for now. https://bugzilla.gnome.org/show_bug.cgi?id=677548 panels/user-accounts/data/account-dialog.ui | 82 ++++++++++++++++ panels/user-accounts/um-account-dialog.c | 147 +++++++++++++++++++++++++++- 2 files changed, 227 insertions(+), 2 deletions(-) commit 3a7ee1bff932edc420640fd0e2cdd3297c820ce9 Author: Stef Walter Date: Wed Jun 6 23:40:32 2012 +0200 user-accounts: Cleaner validation and validate on open Clean up the validation so we can plug in the enterprise login stuff. https://bugzilla.gnome.org/show_bug.cgi?id=677548 panels/user-accounts/um-account-dialog.c | 81 ++++++++++++++++---------------- 1 file changed, 41 insertions(+), 40 deletions(-) commit 67066255bae8f49755b3cabc5b40c7018a53f3c7 Author: Stef Walter Date: Wed Jun 6 23:32:31 2012 +0200 user-accounts: Separate local account stuff in accounts dialog Separate the local account stuff a bit so when the enterprise stuff comes in it's still readable. https://bugzilla.gnome.org/show_bug.cgi?id=677548 panels/user-accounts/data/account-dialog.ui | 14 ++-- panels/user-accounts/um-account-dialog.c | 102 ++++++++++++++++------------ 2 files changed, 66 insertions(+), 50 deletions(-) commit fd4f3cc9ce845fc23dbf1200d8ec18102464149a Author: Stef Walter Date: Wed Jun 6 23:20:42 2012 +0200 user-accounts: Port account dialog to GtkGrid Some spacing issues will be sorted in a later commit. https://bugzilla.gnome.org/show_bug.cgi?id=677548 panels/user-accounts/data/account-dialog.ui | 121 +++++++++------------------- 1 file changed, 37 insertions(+), 84 deletions(-) commit 2e0623e7d560120d8084536dbe6d5c6f7d691990 Author: Stef Walter Date: Wed Jun 6 23:10:53 2012 +0200 user-accounts: Title of accounts dialog becomes "Add Account" This title makes sense for both remote and local users. In the case of remote users we're not creating accounts, we're just adding them to the system. https://bugzilla.gnome.org/show_bug.cgi?id=677548 panels/user-accounts/data/account-dialog.ui | 2 +- panels/user-accounts/um-account-dialog.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) commit b09cd23d85a5c0467436580bd7877568d365af20 Author: Stef Walter Date: Wed Jun 6 23:08:22 2012 +0200 user-accounts: Add test tool frob-account-dialog A simple tool to show the add account dialog for quick iterations testing of the 'enterprise login' functionality. https://bugzilla.gnome.org/show_bug.cgi?id=677548 panels/user-accounts/Makefile.am | 20 ++++++++++ panels/user-accounts/frob-account-dialog.c | 61 ++++++++++++++++++++++++++++++ 2 files changed, 81 insertions(+) commit 2a545187dab163a40a9a5b6add1af72af34b371e Author: Stef Walter Date: Wed Jun 6 23:06:05 2012 +0200 user-accounts: Show a spinner during account dialog actions During actions which can run a long time show a spinner indicating that something is going on. https://bugzilla.gnome.org/show_bug.cgi?id=677548 panels/user-accounts/um-account-dialog.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) commit 2e228b99926a199489a664178e034714864770af Author: Stef Walter Date: Wed Jun 6 22:51:19 2012 +0200 user-accounts: Cleaner interaction with UmAccountDialog actions More clear scoping and interaction with running actions in UmAccountDialog. In later 'enterprise login' patches we have long running actions that's why this needs cleaning up. In particular: * Show errors as children of the dialog. * Errors don't make the account dialog go away, user can correct problems. * Use more standard GAsyncResult style callbacks: um_account_dialog_perform() um_account_dialog_finish() * Disable controls while the operation is happening. * Allow the user to cancel long actions in UmAccountDialog by pressing the cancel button. https://bugzilla.gnome.org/show_bug.cgi?id=677548 panels/user-accounts/um-account-dialog.c | 157 ++++++++++++++++++++++++------- panels/user-accounts/um-account-dialog.h | 8 +- panels/user-accounts/um-user-manager.c | 3 +- panels/user-accounts/um-user-manager.h | 1 + panels/user-accounts/um-user-panel.c | 14 ++- 5 files changed, 142 insertions(+), 41 deletions(-) commit 61eadc3fe372a27bd7d464d7ead55443fbff1d90 Author: Stef Walter Date: Tue Jun 12 10:56:09 2012 +0200 user-accounts: Fix memory leak in create_user_done() g_dbus_error_get_remote_error() returns an allocated string https://bugzilla.gnome.org/show_bug.cgi?id=677930 panels/user-accounts/um-user-manager.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) commit 5fbce5f8daddb72cf08341e6f729c0d51413d702 Author: Stef Walter Date: Tue Jun 12 10:35:45 2012 +0200 user-accounts: UmAccountDialog shouldn't be valid when shown The user needs to enter some data before the dialog's 'Create' button can be clicked. https://bugzilla.gnome.org/show_bug.cgi?id=677928 panels/user-accounts/um-account-dialog.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit 5b022773b35537c6ce5b2e8d7ab3ba00f33387e8 Author: Stef Walter Date: Wed Jun 6 23:28:05 2012 +0200 user-accounts: Fix memory leak of GtkBuilder in accounts dialog https://bugzilla.gnome.org/show_bug.cgi?id=677548 panels/user-accounts/um-account-dialog.c | 2 ++ 1 file changed, 2 insertions(+) commit 195e0137b2ac9b7d03dbe15396d60bd767d3d4ed Author: Stef Walter Date: Wed Jun 6 22:28:44 2012 +0200 user-accounts: Don't refer to UmAccountDialog as um It's confusing to read; it reads as 'user manager'. Since this is a GObject, just use self as customary. Most of these lines change in later commits anyway, so this won't really pollute the 'git blame' https://bugzilla.gnome.org/show_bug.cgi?id=677548 panels/user-accounts/um-account-dialog.c | 86 ++++++++++++++++---------------- panels/user-accounts/um-account-dialog.h | 2 +- 2 files changed, 44 insertions(+), 44 deletions(-) commit 6aff0f9a8600de1303a56484b774151ff6207fac Author: Stef Walter Date: Wed Jun 6 21:43:57 2012 +0200 user-accounts: Make UmAccountDialog a GtkDialog The dialog will get much more complex due to 'enterprise login' work and we want a proper object here. https://bugzilla.gnome.org/show_bug.cgi?id=677548 panels/user-accounts/data/account-dialog.ui | 69 +----------------- panels/user-accounts/um-account-dialog.c | 107 ++++++++++++++++++---------- panels/user-accounts/um-account-dialog.h | 7 +- panels/user-accounts/um-user-panel.c | 2 +- 4 files changed, 76 insertions(+), 109 deletions(-) commit a5dc2b80cc13c57a6a7eff181603c00e44d688ff Author: Stef Walter Date: Wed Jun 6 20:43:07 2012 +0200 user-accounts: Remove unused MAXNAMELEN definition https://bugzilla.gnome.org/show_bug.cgi?id=677548 panels/user-accounts/um-account-dialog.c | 2 -- 1 file changed, 2 deletions(-) commit 6004616bbc049bf4612a1342c3a0f10768c3ce44 Author: Kjartan Maraas Date: Mon Jun 11 22:08:55 2012 +0200 Updated Norwegian bokmĆ„l translation po/nb.po | 263 +++++++++++++++++++++++++++++---------------------------------- 1 file changed, 123 insertions(+), 140 deletions(-) commit 42c65b5c5fee5830b31fd30370c1b8209ba71eca Author: Bastien Nocera Date: Mon Jun 11 15:42:55 2012 +0100 shell: Use GtkSearchEntry And require GTK+ 3.3.5 for it. configure.ac | 2 +- shell/cinnamon-control-center.c | 19 ------------------- shell/shell.ui | 2 +- 3 files changed, 2 insertions(+), 21 deletions(-) commit 786a36db1f5ccc54b1675951a16e1d2b88400023 Author: Olivier Fourdan Date: Fri May 11 14:16:39 2012 +0200 wacom: Add keep aspect ratio option Adjust tablet area to match the aspect ratio of the output assigned to the tablet. https://bugzilla.gnome.org/show_bug.cgi?id=668907 panels/wacom/cc-wacom-mapping-panel.c | 53 ++++++++++++++++++++++++++++++----- 1 file changed, 46 insertions(+), 7 deletions(-) commit cde88dca907311164c317e394edea54c2c13fee1 Author: Cosimo Cecchi Date: Wed May 30 09:34:37 2012 -0400 network: fix packing order of children in the service dialog The heading should be packed at the top, before the combobox. https://bugzilla.gnome.org/show_bug.cgi?id=674498 panels/network/network.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 94a46524b5078c2723e4394634d7bb39dfe6679c Author: Bastien Nocera Date: Mon Jun 11 14:26:57 2012 +0100 shell: Don't animate between overview and search pages shell/cinnamon-control-center.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) commit 0fdecb67c3709df7e9fb626c707946c4874c049e Author: Bastien Nocera Date: Mon Jun 11 14:26:45 2012 +0100 shell: Update test-notebook for API change shell/test-notebook.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 56bd29ebf3f49b8e53d37817ba6ca99b82fb7e66 Author: Bastien Nocera Date: Mon Jun 11 14:26:20 2012 +0100 shell: Make it possible to not animate transitions In CcNotebook. shell/cc-notebook.c | 20 +++++++++++++------- shell/cc-notebook.h | 3 ++- 2 files changed, 15 insertions(+), 8 deletions(-) commit 761f5f0b8bc9c6794f5df51041bfa404abec6b4c Author: Cosimo Cecchi Date: Mon Jun 11 08:59:09 2012 -0400 background: always pass a cancellable down to I/O operations So they will be properly cancelled when the panel is disposed. Also, check early if the operation was cancelled, since it's not safe to assume the data of the callback is valid anymore before that point. https://bugzilla.gnome.org/show_bug.cgi?id=672572 panels/background/bg-pictures-source.c | 50 +++++++++++++++++++++------------- 1 file changed, 31 insertions(+), 19 deletions(-) commit 6c140396e6dafaa20fc33b0a79251495d86ebf5f Author: FrĆ©dĆ©ric PĆ©ters Date: Sun Jun 10 14:13:22 2012 +0200 configure: bump gnome-settings-daemon required version This is required to get the input-sources schema used by the Region panel https://bugzilla.gnome.org/show_bug.cgi?id=677807 configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 042b237f821d3447d69eaae6f5c7e8f4cd2bdd7b Author: Ihar Hrachyshka Date: Fri Jun 8 18:42:03 2012 +0300 Updated Belarusian translation. po/be.po | 1690 +++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 955 insertions(+), 735 deletions(-) commit 8631717b3d1cb85bf21b0e0d648b784e8e7c3f8f Author: Dan Williams Date: Fri Apr 20 11:48:17 2012 -0500 network: don't crash on hidden SSIDs APs that don't broadcast their SSID will return NULL from nm_access_point_get_ssid() (since that's easier to check in C using an if statement than returning a zero-length GByteArray). Thus the code shouldn't try to dereference the SSID byte array since it could be NULL. But in fact, the panel shouldn't be showing hidden APs anywhere in the UI, since the user needs to manually enter the SSID to connect to it anyway. So just ignore hidden APs like nm-applet does. Signed-off-by: Dan Williams Signed-off-by: Richard Hughes panels/network/cc-network-panel.c | 6 ++++++ 1 file changed, 6 insertions(+) commit c908531feb49f24e490d23c57955ed6473d7dbef Author: Daniel Mustieles Date: Thu Jun 7 12:27:48 2012 +0200 Updated Spanish translation po/es.po | 93 +++++++++++++++++++++++++++++----------------------------------- 1 file changed, 42 insertions(+), 51 deletions(-) commit f7245a39b795ddd1e6b819cdceb6ea9bdc5c1c9d Author: A S Alam Date: Thu Jun 7 07:29:30 2012 +0530 Update Punjabi Translation po/pa.po | 563 ++++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 307 insertions(+), 256 deletions(-) commit 469c8b3be8de563ec09a99c8ce8f6c04f58dbd7f Author: Piotr Drąg Date: Wed Jun 6 21:22:00 2012 +0200 Updated POTFILES.in po/POTFILES.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 1261d73821529d5b789956fb2d1b69a8003f49ce Author: Bastien Nocera Date: Wed Jun 6 17:44:57 2012 +0100 mouse: Use '&' instead of 'and' Using "&" not only keeps the names shorter but would also keeps the user focused on the other words which compose the name. https://bugzilla.gnome.org/show_bug.cgi?id=676562 panels/mouse/gnome-mouse-panel.desktop.in.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit d07be14ba05b6110c5b4f1470bfda58504b84d5b Author: Bastien Nocera Date: Wed Jun 6 17:44:49 2012 +0100 region: Use '&' instead of 'and' Using "&" not only keeps the names shorter but would also keeps the user focused on the other words which compose the name. https://bugzilla.gnome.org/show_bug.cgi?id=676562 panels/region/gnome-region-panel.desktop.in.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 8aca1c2090c2e02a376458f3321af7845ef97895 Author: Bastien Nocera Date: Wed Jun 6 17:44:38 2012 +0100 screen: Use '&' instead of 'and' Using "&" not only keeps the names shorter but would also keeps the user focused on the other words which compose the name. https://bugzilla.gnome.org/show_bug.cgi?id=676562 panels/screen/gnome-screen-panel.desktop.in.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit a4475970eeca23e7d6af965106dcf4b847f7d6bb Author: Bastien Nocera Date: Wed Jun 6 17:43:47 2012 +0100 datetime: Use '&' instead of 'and' Using "&" not only keeps the names shorter but would also keeps the user focused on the other words which compose the name. https://bugzilla.gnome.org/show_bug.cgi?id=676562 panels/datetime/gnome-datetime-panel.desktop.in.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit d079041b14db5dc3fb10f6ac4e9c6700df2e956b Author: Stef Walter Date: Mon Jun 4 10:39:34 2012 +0200 build: Only enable _FORTIFY_SOURCE if optimization enabled Otherwise we get a spew of warnings when building non-optimized https://bugzilla.gnome.org/show_bug.cgi?id=677373 configure.ac | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) commit f2a9d3a4787e69f1c27fa8e2b328ec82fb707302 Author: Bastien Nocera Date: Wed Jun 6 16:11:26 2012 +0100 shell: Fix crash when using keynav in overview get_item_views() was expecting all the children of the overview to be of type "CcShellCategoryView". It's not the case since 620e70113c30b0ae868577153dda60139f3c20b4 added GtkSeparators as children. We now just skip them non-views in get_item_views(). https://bugzilla.gnome.org/show_bug.cgi?id=677314 shell/cinnamon-control-center.c | 2 ++ 1 file changed, 2 insertions(+) commit f94490a5b51003d6f1f45a53f57f0200ea2f62b4 Author: Debarshi Ray Date: Mon Jun 4 20:44:07 2012 +0200 build: require GOA >= 3.5.1 GOA got ported from GtkTable to GtkGrid. Fixes: https://bugzilla.gnome.org/669625 configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit f86d8eb26cc922fabd6765f3ad2481b9f0218298 Author: Debarshi Ray Date: Wed Apr 4 17:28:54 2012 +0200 online-accounts: Remove horizontal scrolling from accounts list We have enough space. Therefore, instead of having horizontal scrollbars, widen the text renderer and then ellipsize, if required. Implemented design: https://live.gnome.org/Design/SystemSettings/OnlineAccounts Fixes: https://bugzilla.gnome.org/671980 panels/online-accounts/cc-online-accounts-panel.c | 5 +++++ panels/online-accounts/online-accounts.ui | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) commit 93051830a7fc70756334bab03e46011619755150 Author: Debarshi Ray Date: Mon Mar 12 14:35:24 2012 +0100 online-accounts: New "Add Account" dialog Implemented design: https://live.gnome.org/Design/SystemSettings/OnlineAccounts Fixes: https://bugzilla.gnome.org/671980 panels/online-accounts/Makefile.am | 2 + .../cc-online-accounts-add-account-dialog.c | 367 +++++++++++++++++++++ .../cc-online-accounts-add-account-dialog.h | 62 ++++ panels/online-accounts/cc-online-accounts-panel.c | 74 +---- po/POTFILES.in | 1 + 5 files changed, 440 insertions(+), 66 deletions(-) commit 3ab49ea66d3a7fd2a800359f1f5b6a7ce0da2790 Author: Matthias Clasen Date: Tue Jun 5 00:27:00 2012 -0400 Post-release version bump configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 29fc916be101ee7b259ab9a54949a2f2ed0010f5 Author: Matthias Clasen Date: Tue Jun 5 00:02:38 2012 -0400 3.5.2 NEWS | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ configure.ac | 2 +- 2 files changed, 68 insertions(+), 1 deletion(-) commit 8ba96c7daffcd218b6822296f487896b5ac2725a Author: Debarshi Ray Date: Tue May 1 03:11:15 2012 +0200 online-accounts: Don't hardcode the text color With hard coded colors, when an account is selected in the tree view, the text shows up as black on blue, instead of white on blue. Fixes: https://bugzilla.gnome.org/671980 panels/online-accounts/cc-online-accounts-model.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) commit ca36f361d97ea96bebc40575aacaf1144cc3dd6e Author: Daniel Mustieles Date: Sun Jun 3 17:56:40 2012 +0200 Updated Spanish translation po/es.po | 282 ++++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 163 insertions(+), 119 deletions(-) commit c6be102d1d3792567555670ca00e62d0abc84d95 Author: Fran DiĆ©guez Date: Sun Jun 3 02:35:33 2012 +0200 Updated Galician translations po/gl.po | 441 ++++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 252 insertions(+), 189 deletions(-) commit cf3c9f33d986d9d6baaf20d4ef403dc43b631e51 Author: Yuri Kozlov Date: Sat Jun 2 18:10:48 2012 +0400 Updated Russian translation po/ru.po | 2039 +++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 1212 insertions(+), 827 deletions(-) commit fde8a37bcf750494d35d0b210350579e594f4eb6 Author: Yaron Shahrabani Date: Sat Jun 2 12:52:34 2012 +0300 Updated Hebrew translation. po/he.po | 255 ++++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 145 insertions(+), 110 deletions(-) commit e307f303e70e9a42b098a909851ed0b9c9770dfa Author: Piotr Drąg Date: Fri Jun 1 20:08:48 2012 +0200 Updated POTFILES.in po/POTFILES.in | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) commit e880784fcb5ac584686d3d7b855bfbe2c0818309 Author: Bastien Nocera Date: Fri Jun 1 19:01:36 2012 +0100 region: Update the shortcuts labels on startup https://bugzilla.gnome.org/show_bug.cgi?id=662489 panels/region/gnome-region-panel-input.c | 61 ++++++++++++++++++++++++-------- 1 file changed, 46 insertions(+), 15 deletions(-) commit 5e4376cfdeaf970543d761dfbb6ddfe232a19c43 Author: Rui Matos Date: Thu Apr 19 05:43:38 2012 +0200 keyboard: Add key bindings to switch input sources https://bugzilla.gnome.org/show_bug.cgi?id=662489 panels/keyboard/01-input-sources.xml.in | 12 ++++++++++++ panels/keyboard/Makefile.am | 8 +++++++- 2 files changed, 19 insertions(+), 1 deletion(-) commit 0a78c3504e34927c9864d489fafd3e8025e21d5c Author: Rui Matos Date: Tue May 22 19:14:19 2012 +0200 region: Add XKB input sources We allow the user to choose from all XKB layouts installed and keep a user picked list in gsettings. https://bugzilla.gnome.org/show_bug.cgi?id=662489 configure.ac | 3 +- panels/region/gnome-region-panel-input-chooser.ui | 5 + panels/region/gnome-region-panel-input.c | 250 ++++++++++++++++++++-- 3 files changed, 238 insertions(+), 20 deletions(-) commit 375bf2363fcfdf0916acb0e3550bb5909de5eb12 Author: Rui Matos Date: Thu May 17 00:13:54 2012 +0200 region: Improved keynav on the input chooser This makes the dialog return when the user presses Enter on the filter entry and prevents the GtkTreeView search popup from being used since we already handle searching on that tree view. https://bugzilla.gnome.org/show_bug.cgi?id=662489 panels/region/gnome-region-panel-input.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) commit e38f9acf39f6e7a5fa079efb081586ec215a5bcc Author: Rui Matos Date: Wed Apr 18 17:11:08 2012 +0200 region: Improved selection handling on the input chooser This makes the input chooser list always have a selected row and be centered on it when the filter is applied. https://bugzilla.gnome.org/show_bug.cgi?id=662489 panels/region/gnome-region-panel-input.c | 45 +++++++++++++++++++++++--------- 1 file changed, 32 insertions(+), 13 deletions(-) commit 0fb0d6139b373dfd6ef934d86b92aa99edf8b23e Author: Rui Matos Date: Wed May 16 23:22:02 2012 +0200 region: Removal of the Layouts tab https://bugzilla.gnome.org/show_bug.cgi?id=662489 configure.ac | 5 +- panels/region/Makefile.am | 10 +- panels/region/cc-region-panel.c | 2 - panels/region/gnome-region-panel-layout-chooser.ui | 180 ------- panels/region/gnome-region-panel-options-dialog.ui | 79 ---- panels/region/gnome-region-panel-system.c | 103 +---- panels/region/gnome-region-panel-xkb.c | 190 -------- panels/region/gnome-region-panel-xkb.h | 96 ---- panels/region/gnome-region-panel-xkblt.c | 470 ------------------- panels/region/gnome-region-panel-xkbltadd.c | 495 -------------------- panels/region/gnome-region-panel-xkbot.c | 515 --------------------- panels/region/gnome-region-panel-xkbpv.c | 120 ----- panels/region/use_cases.txt | 42 -- 13 files changed, 7 insertions(+), 2300 deletions(-) commit bfaeb6a41ddd5ad0c65744397e026346a0acf89f Author: Rui Matos Date: Wed May 16 23:05:00 2012 +0200 region: Add an initial input sources tab This is just the scaffolding according to https://live.gnome.org/Design/SystemSettings/RegionAndLanguage No code behind it yet. Original code from Matthias Clasen. https://bugzilla.gnome.org/show_bug.cgi?id=662489 panels/region/Makefile.am | 3 + panels/region/cc-region-panel.c | 2 + panels/region/gnome-region-panel-input-chooser.ui | 152 +++++ panels/region/gnome-region-panel-input.c | 536 +++++++++++++++++ panels/region/gnome-region-panel-input.h | 36 ++ panels/region/gnome-region-panel.ui | 676 ++++++++++++---------- 6 files changed, 1091 insertions(+), 314 deletions(-) commit e59dc8dec45a3092cf6ef7d5f531617bccc3b0a1 Author: Matthias Clasen Date: Tue Nov 15 21:10:31 2011 -0500 keyboard: Make it possible to jump to shortcuts tab To make this work, we need to move the setting up of priv->builder to the instance init, so that it is available when construct properties are set; the other setup needs to remain in the constructor, since it relies on construct properties. https://bugzilla.gnome.org/show_bug.cgi?id=662489 panels/keyboard/cc-keyboard-panel.c | 112 +++++++++++++++++++++++++----------- 1 file changed, 80 insertions(+), 32 deletions(-) commit 6bc14ced7f1aca3c46b675787db0ffbad7facd2a Author: Marek Černocký Date: Fri Jun 1 17:47:46 2012 +0200 Updated Czech translation po/cs.po | 1729 ++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 994 insertions(+), 735 deletions(-) commit ec27900578642435ccffc2f59b7f1efe9263c1ee Author: Richard Hughes Date: Wed May 30 14:23:45 2012 +0100 network: Allow configuring wired network devices when not connected This prevents the chicken-and-egg problem as described in #653296 by launching nm-connection-editor for the inactive connection for the device. This only works when there is one possible connection for the device, which is helpfully typical for wired ethernet devices. Resolves: https://bugzilla.gnome.org/show_bug.cgi?id=653296 panels/network/cc-network-panel.c | 34 +++++++++++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) commit 04fdb2b456c4752a5b28883bb90873417c21989d Author: Richard Hughes Date: Wed May 30 12:46:55 2012 +0100 network: Don't resize the panel when switching network types Resolves: https://bugzilla.gnome.org/show_bug.cgi?id=671482 panels/network/network.ui | 1 - 1 file changed, 1 deletion(-) commit 0c4bbebf4e1e67760e69ea039e8bfdab420a079a Author: Kjartan Maraas Date: Wed May 30 14:01:25 2012 +0200 Updated Norwegian bokmĆ„l translation po/nb.po | 1070 +++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 641 insertions(+), 429 deletions(-) commit 160697df6ca870efc153c77d32f42ffb05359c1d Author: Richard Hughes Date: Wed May 30 12:39:48 2012 +0100 network: Do not print a critical warning when NetworkManager is restarted Resolves: https://bugzilla.gnome.org/show_bug.cgi?id=676369 panels/network/cc-network-panel.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 033a7acb122b89551c141f200a6d4c489cd7b1ad Author: Matej Urbančič Date: Tue May 29 09:07:29 2012 +0200 Updated Slovenian translation po/sl.po | 1341 ++++++++++++++++++++++++++++++++++++++------------------------ 1 file changed, 827 insertions(+), 514 deletions(-) commit 44c88a37a1fcd1a81107ad7c1e216c0e04e81cdb Author: Baurzhan Muftakhidinov Date: Mon May 28 08:44:06 2012 +0600 Updated Kazakh translation po/kk.po | 442 +++++++++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 286 insertions(+), 156 deletions(-) commit fbc4d703bdfca934cedbe22c9439327f45db3a7d Author: Yaron Shahrabani Date: Sat May 26 07:32:25 2012 +0300 Updated Hebrew Translation. po/he.po | 76 ++++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 38 insertions(+), 38 deletions(-) commit f4db8bb8b27d9560c73dac4a12cdc19eae7db2cb Author: Yaron Shahrabani Date: Fri May 25 19:00:24 2012 +0300 Updated Hebrew translation. po/he.po | 1149 +++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 696 insertions(+), 453 deletions(-) commit c11a6398bc3935ab04d00288a24b5c75cd674542 Author: Daniel Mustieles Date: Fri May 25 16:19:41 2012 +0200 Updated Spanish translation po/es.po | 181 ++++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 103 insertions(+), 78 deletions(-) commit 487c11c0d952ee9c70a43477d02be63b0af067dc Author: Bastien Nocera Date: Fri May 25 14:04:53 2012 +0100 wacom: Update from gnome-settings-daemon panels/wacom/gsd-input-helper.c | 15 ++++++++++----- panels/wacom/gsd-wacom-device.c | 30 ++++++++++++++++++++++++------ 2 files changed, 34 insertions(+), 11 deletions(-) commit 5c78387b592bd5f3eae1f8fb667bbd3db03ac6e4 Author: Bastien Nocera Date: Fri May 25 12:48:34 2012 +0100 wacom: Update from gnome-settings-daemon panels/wacom/gsd-wacom-device.c | 3 +++ 1 file changed, 3 insertions(+) commit 5a2b4112553f2b910c559a7624c16adfaa9d6d3d Author: Bastien Nocera Date: Fri May 25 12:14:27 2012 +0100 wacom: Fix crasher using link to display panel ->panel was never set within the page object. panels/wacom/cc-wacom-page.c | 2 ++ panels/wacom/cc-wacom-panel.c | 2 ++ 2 files changed, 4 insertions(+) commit aa161bacc9c11b9dfee2551ef03f294dd2d78aad Author: Bastien Nocera Date: Fri May 25 11:19:37 2012 +0100 wacom: Destroy button mapping dialogue on unplug https://bugzilla.gnome.org/show_bug.cgi?id=676790 panels/wacom/cc-wacom-page.c | 9 +++++++++ 1 file changed, 9 insertions(+) commit 0b782b5633249a1f8c15a24399a833ac2e41c6d5 Author: Antoine Jacoutot Date: Thu May 24 09:50:52 2012 +0200 disable wacom on s390/s390x and non Linux platforms Follow gnome-settings-daemon behavior and disable the wacom panel on s390/s390x (because this architecture does not provide development files from the wacom xorg driver) and on non Linux platforms (where udev is missing). https://bugzilla.gnome.org/show_bug.cgi?id=676714 configure.ac | 28 ++++++++++++++++++++++++---- panels/Makefile.am | 7 +++++-- 2 files changed, 29 insertions(+), 6 deletions(-) commit 8f289ff79921a5bbfab72944368d0b4790333687 Author: Bastien Nocera Date: Thu May 24 15:25:59 2012 +0100 user-accounts: Require libpwquality configure.ac | 1 + 1 file changed, 1 insertion(+) commit bd3405d9e19ffc9c52bd789b645d3859a726aea4 Author: Bastien Nocera Date: Tue Mar 13 17:38:34 2012 +0100 universal-access: Add context for haircross length https://bugzilla.gnome.org/show_bug.cgi?id=671989 panels/universal-access/zoom-options.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) commit c11e4a9c5398cd729786a216387edc4b1a3309eb Author: Piotr Drąg Date: Wed May 23 19:33:13 2012 +0200 Updated POTFILES.in po/POTFILES.in | 1 + 1 file changed, 1 insertion(+) commit 93bc61e0b46d5209f579ae85d00e4f8930c42356 Author: Bastien Nocera Date: Wed May 23 18:06:22 2012 +0100 shell: Fix --verbose not working anymore shell/cc-shell-log.c | 2 ++ 1 file changed, 2 insertions(+) commit a2d338b2d8ffbc39da26de192bdc1bbc01d86b84 Author: Bastien Nocera Date: Wed May 23 18:06:06 2012 +0100 shell: Add debug to CcNotebook scrolling shell/cc-notebook.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) commit 2c4d1b7b59c085988cfb9d314fdbdf09bd88cf2a Author: Daniel Mustieles Date: Wed May 23 18:09:44 2012 +0200 Updated Spanish translation po/es.po | 69 +++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 36 insertions(+), 33 deletions(-) commit 95d5e61100aa7667f7789a28eee1b04e6614f470 Author: Bastien Nocera Date: Wed May 23 17:07:29 2012 +0100 shell: Fix first selection not working We weren't saving the last_width early enough. shell/cc-notebook.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit f62d8016562c96dc701a6e6ad8cb2ce1aaba7b78 Author: Matthias Clasen Date: Sat May 19 17:45:04 2012 -0400 users: Pass more information to password checker Passing the username and the old password allows the password quality check find more bad passwords. Also, add a way to provide more information about why a password is not good enough. https://bugzilla.gnome.org/show_bug.cgi?id=676396 panels/user-accounts/pw-utils.c | 11 +++++++++-- panels/user-accounts/pw-utils.h | 5 ++++- panels/user-accounts/um-password-dialog.c | 10 +++++++++- 3 files changed, 22 insertions(+), 4 deletions(-) commit 810f29b6cee271cf784aef6478a1952a5ee60b8e Author: Matthias Clasen Date: Wed May 23 10:43:17 2012 -0400 users: Use libpwquality for password handling Using a library for password generation and quality checking has the obvious benefit that we can have centralized policy for password quality, and our homegrown code for this was not a beauty in the first place. This commit drops the use of /usr/bin/agp for generating random passwords. https://bugzilla.gnome.org/show_bug.cgi?id=676396 panels/user-accounts/Makefile.am | 2 + panels/user-accounts/pw-utils.c | 132 +++++++++++++-------------------------- 2 files changed, 44 insertions(+), 90 deletions(-) commit 8947cf84688d59d710716616866c68e699ab9972 Author: Matthias Clasen Date: Wed May 23 08:40:56 2012 -0400 users: Separate out password generation and strength calculation This is in preparation of using a library for this purpose, and is just generally cleaner. panels/user-accounts/Makefile.am | 2 + panels/user-accounts/pw-utils.c | 158 ++++++++++++++++++++++++++++++ panels/user-accounts/pw-utils.h | 27 +++++ panels/user-accounts/um-password-dialog.c | 124 ++--------------------- 4 files changed, 195 insertions(+), 116 deletions(-) commit 142070e8ea94cc693ca43ea3ea0d08abb1bc8295 Author: Debarshi Ray Date: Fri Apr 20 16:21:20 2012 +0200 user-accounts: Use instead of to indicate user role Fixes: https://bugzilla.gnome.org/674423 panels/user-accounts/um-user-panel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 86bd905920104af14fdd1e047bbe1ad1ccdad37a Author: Matthias Clasen Date: Sat May 19 17:09:39 2012 -0400 users: Make generated password visible A generated password is useless if you can't read it. https://bugzilla.gnome.org/show_bug.cgi?id=633601 panels/user-accounts/um-password-dialog.c | 2 ++ 1 file changed, 2 insertions(+) commit a7beb087db07f2d7d13e52794be7f15f90e3e156 Author: Matthias Clasen Date: Tue May 8 21:50:10 2012 -0400 user-accounts: Simplify generated password handling Move the 'generate password' icon into the entry to make the focus chain more straightforward. Also switch from generating a choice of 6 passwords in a menu, just put put the next choice directly into the entry. To keep the password generation keyboard accessible, add a 'Generate password' context menu item. https://bugzilla.gnome.org/show_bug.cgi?id=633601 https://bugzilla.gnome.org/show_bug.cgi?id=658522 panels/user-accounts/data/password-dialog.ui | 21 +--- panels/user-accounts/um-password-dialog.c | 164 +++++++++------------------ 2 files changed, 56 insertions(+), 129 deletions(-) commit 359f029419d0c7962ae2afc04c7fd1d569897c5f Author: Bastien Nocera Date: Tue May 22 18:19:39 2012 +0100 shell: Fix keyboard focus in animated notebook But just for panels, the main overview is still sub-par. shell/cc-notebook.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) commit b82141038e3a55d01cda805badd562130a9bd887 Author: Bastien Nocera Date: Tue May 22 17:48:11 2012 +0100 shell: CcNotebook can focus indeed shell/cc-notebook.c | 2 ++ 1 file changed, 2 insertions(+) commit e18742c90ea1738907b7e514c0b5eead9514907f Author: William Jon McCann Date: Mon May 21 23:01:50 2012 -0400 Implement a new search results design Search results aren't laid out evenly and they are packed together too tightly. Also, panel descriptions are truncated. There is plenty of space available, we might as well use it. https://bugzilla.gnome.org/show_bug.cgi?id=654977 shell/Makefile.am | 2 - shell/cc-shell-search-renderer.c | 366 --------------------------------------- shell/cc-shell-search-renderer.h | 74 -------- shell/cinnamon-control-center.c | 96 ++++++---- 4 files changed, 60 insertions(+), 478 deletions(-) commit d3841bb2c89b5ddf99bad61afbf2731864204496 Author: Cosimo Cecchi Date: Mon May 21 15:17:53 2012 -0400 build: require Clutter >= 1.11.3 We require clutter master for ClutterScrollActor now. https://bugzilla.gnome.org/show_bug.cgi?id=676517 configure.ac | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit fc7bc983b08d6ed224ba0e19d21d741ff88065a5 Author: A S Alam Date: Mon May 21 07:04:53 2012 +0530 Update Punjabi Translation po/pa.po | 1495 +++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 889 insertions(+), 606 deletions(-) commit 0b93e7c80f47b1ef2e6358917e073aa116e00a3e Author: Bastien Nocera Date: Mon May 21 19:16:55 2012 +0100 shell: Make all-settings button always square By wrapping it in an aspect frame. https://bugzilla.gnome.org/show_bug.cgi?id=670551 shell/shell.ui | 31 +++++++++++++++++++++---------- 1 file changed, 21 insertions(+), 10 deletions(-) commit 9e6ed56939b30591ecd93ea1720fb134fc90bbec Author: Bastien Nocera Date: Mon May 21 18:51:18 2012 +0100 shell: Fix possible warning on startup When started with a specific panel listed. shell/cc-shell.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) commit 85dbb1d8c55d505f4759a6239fa1348e5975b987 Author: Bastien Nocera Date: Mon May 21 16:08:52 2012 +0100 shell: Update scrolled window height on smallness change When the small mode changes, make sure to update the scrolled window's natural height. https://bugzilla.gnome.org/show_bug.cgi?id=673869#c47 shell/cinnamon-control-center.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) commit 8efba88f4c2a01e2fb13be01bde839f638c35de3 Author: Bastien Nocera Date: Mon May 21 16:01:28 2012 +0100 shell: Use enum for small screen Instead of 2 variables to track the unset status. shell/cinnamon-control-center.c | 37 +++++++++++++++++++++++-------------- 1 file changed, 23 insertions(+), 14 deletions(-) commit a112361267f6b13216937fce56c23303054b990e Author: Bastien Nocera Date: Mon May 21 14:23:00 2012 +0100 shell: Don't use workarea height Instead of monitor height to check for the available height, as the workarea height won't have been updated fast enough after a monitors-changed signal. https://bugzilla.gnome.org/show_bug.cgi?id=673869#c47 shell/cinnamon-control-center.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit a6f8a9a6134bd1d6c603d8516cb585baed186b0f Author: Daniel Mustieles Date: Mon May 21 13:57:27 2012 +0200 Updated Spanish translation po/es.po | 385 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 194 insertions(+), 191 deletions(-) commit 57f0bc4f0b03aa4d4f20a6919c76a04da2027256 Author: Fran DiĆ©guez Date: Sat May 19 15:46:16 2012 +0200 Updated Galician translations po/gl.po | 684 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 347 insertions(+), 337 deletions(-) commit 7e77b7b7da946ed90e68ecc21408c5b2db19c0da Author: Florian Müllner Date: Fri May 18 18:46:41 2012 +0200 shell: Fix ctrl-w keybinding shell/cinnamon-control-center.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit c626ba5cdfa037fc68c6db517084fe8a3a0de6c8 Author: Florian Müllner Date: Sun May 6 02:57:51 2012 +0200 shell: Add application menu Add a simple application menu containing just "Help" and "Quit". https://bugzilla.gnome.org/show_bug.cgi?id=675471 shell/control-center.c | 51 +++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 50 insertions(+), 1 deletion(-) commit ad4da161269a991153408227ae9c665956fec9e6 Author: Florian Müllner Date: Fri May 18 16:40:31 2012 +0200 shell: Make the main window a GtkApplicationWindow This is a prerequisite of using the new GMenu API. Also move the check for small screen sizes introduced in commit 22ed5a9fd5, as GtkApplicationWindows cannot be realized unless their application property has been set. https://bugzilla.gnome.org/show_bug.cgi?id=675471 shell/cinnamon-control-center.c | 20 ++++++++++++++++---- shell/shell.ui | 2 +- 2 files changed, 17 insertions(+), 5 deletions(-) commit a901cc1c18886c25a829111fd91f7b3c196e36e1 Author: Florian Müllner Date: Fri May 18 17:08:52 2012 +0200 user-accounts: Add get_help_uri() implementation https://bugzilla.gnome.org/show_bug.cgi?id=675471 panels/user-accounts/um-user-panel.c | 7 +++++++ 1 file changed, 7 insertions(+) commit fa4a95752980a9be494ad3dd042b37fd8068d590 Author: Florian Müllner Date: Fri May 18 17:08:15 2012 +0200 universal-access: Add get_help_uri() implementation https://bugzilla.gnome.org/show_bug.cgi?id=675471 panels/universal-access/cc-ua-panel.c | 9 +++++++++ 1 file changed, 9 insertions(+) commit 45b793848fb9fcfa9b659b355a8cb0567a27e75e Author: Florian Müllner Date: Fri May 18 17:07:48 2012 +0200 sound: Add get_help_uri() implementation https://bugzilla.gnome.org/show_bug.cgi?id=675471 panels/sound/cc-sound-panel.c | 9 +++++++++ 1 file changed, 9 insertions(+) commit dc381014c06322c724385feb108584a7b0a2d9ea Author: Florian Müllner Date: Fri May 18 17:07:24 2012 +0200 screen: Add get_help_uri() implementation https://bugzilla.gnome.org/show_bug.cgi?id=675471 panels/screen/cc-screen-panel.c | 9 +++++++++ 1 file changed, 9 insertions(+) commit 79b11894dd38bc14b0ed478ff0da326d87e0aad0 Author: Florian Müllner Date: Fri May 18 17:06:51 2012 +0200 region: Add get_help_uri() implementation https://bugzilla.gnome.org/show_bug.cgi?id=675471 panels/region/cc-region-panel.c | 9 +++++++++ 1 file changed, 9 insertions(+) commit 0c353fb4a89085c05263f12f1d41668bfd5811e7 Author: Florian Müllner Date: Fri May 18 17:06:07 2012 +0200 printers: Add get_help_uri() implementation https://bugzilla.gnome.org/show_bug.cgi?id=675471 panels/printers/cc-printers-panel.c | 7 +++++++ 1 file changed, 7 insertions(+) commit e38491ed0dc917c98f398b43a16cc017422263b2 Author: Florian Müllner Date: Fri May 18 17:05:46 2012 +0200 power: Add get_help_uri() implementation https://bugzilla.gnome.org/show_bug.cgi?id=675471 panels/power/cc-power-panel.c | 9 +++++++++ 1 file changed, 9 insertions(+) commit 4b72311259b474f481aac1af526f7c99caac0405 Author: Florian Müllner Date: Fri May 18 17:05:25 2012 +0200 online-accounts: Add get_help_uri() implementation https://bugzilla.gnome.org/show_bug.cgi?id=675471 panels/online-accounts/cc-online-accounts-panel.c | 9 +++++++++ 1 file changed, 9 insertions(+) commit 1bbe93cd0c0e81ad8b2044479c288de9f5f4f71c Author: Florian Müllner Date: Fri May 18 17:04:58 2012 +0200 network: Add get_help_uri() implementation https://bugzilla.gnome.org/show_bug.cgi?id=675471 panels/network/cc-network-panel.c | 9 +++++++++ 1 file changed, 9 insertions(+) commit 164d8b54a076ac4bca4928b2100e9da411a5c0a1 Author: Florian Müllner Date: Fri May 18 17:04:32 2012 +0200 mouse: Add get_help_uri() implementation https://bugzilla.gnome.org/show_bug.cgi?id=675471 panels/mouse/cc-mouse-panel.c | 9 +++++++++ 1 file changed, 9 insertions(+) commit 7adcd012616f7b1f2a71e9bbc452cb06e1c36cca Author: Florian Müllner Date: Fri May 18 17:04:03 2012 +0200 keyboard: Add get_help_uri() implementation https://bugzilla.gnome.org/show_bug.cgi?id=675471 panels/keyboard/cc-keyboard-panel.c | 9 +++++++++ 1 file changed, 9 insertions(+) commit 4e374a27f06ac19e618197d13ac3551566176774 Author: Florian Müllner Date: Fri May 18 17:03:34 2012 +0200 display: Add get_help_uri() implementation https://bugzilla.gnome.org/show_bug.cgi?id=675471 panels/display/cc-display-panel.c | 9 +++++++++ 1 file changed, 9 insertions(+) commit afe99e36fda6980c62015ac0981663abdc133d3b Author: Florian Müllner Date: Fri May 18 17:03:05 2012 +0200 datetime: Add get_help_uri() implementation https://bugzilla.gnome.org/show_bug.cgi?id=675471 panels/datetime/cc-datetime-panel.c | 7 +++++++ 1 file changed, 7 insertions(+) commit 186d615dee5b82eaf14d242f3872e01ba770024a Author: Florian Müllner Date: Fri May 18 17:00:13 2012 +0200 color: Add get_help_uri() implementation https://bugzilla.gnome.org/show_bug.cgi?id=675471 panels/color/cc-color-panel.c | 9 +++++++++ 1 file changed, 9 insertions(+) commit bc18595051b7561e7ccce77837dae70d0282b5eb Author: Florian Müllner Date: Fri May 18 16:59:27 2012 +0200 bluetooth: Add get_help_uri() implementation https://bugzilla.gnome.org/show_bug.cgi?id=675471 panels/bluetooth/cc-bluetooth-panel.c | 9 +++++++++ 1 file changed, 9 insertions(+) commit f8637475ba867a01369475c6b662de54de93b706 Author: Florian Müllner Date: Tue May 8 19:40:13 2012 +0200 background: Add get_help_uri() implementation https://bugzilla.gnome.org/show_bug.cgi?id=675471 panels/background/cc-background-panel.c | 9 +++++++++ 1 file changed, 9 insertions(+) commit 6827068ade00ec04e1895c772513667b6d6a1bdb Author: Florian Müllner Date: Tue May 8 18:47:13 2012 +0200 cc-panel: Add get_help_uri() vfunc We want to allow panels to point to a specific help page, so add a vfunc for that. https://bugzilla.gnome.org/show_bug.cgi?id=675471 shell/cc-panel.c | 11 +++++++++++ shell/cc-panel.h | 3 +++ 2 files changed, 14 insertions(+) commit 78717031db90c42221a7dce1f20762b9d8b8103c Author: Florian Müllner Date: Tue May 8 18:45:25 2012 +0200 shell: Make sure the "active-panel" property is updated The (currently unused) cc_shell_get_active_panel() method is useless unless "active-panel" is actually updated correctly. https://bugzilla.gnome.org/show_bug.cgi?id=675471 shell/cc-shell.c | 1 - shell/cinnamon-control-center.c | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) commit ce8e1208bc87f91785c6ab91deb7c5e50a2d2dc6 Author: Florian Müllner Date: Fri May 18 16:53:41 2012 +0200 shell: Pass the object to show_overview_page(), not its private We will need it to update the "active-panel" property properly. https://bugzilla.gnome.org/show_bug.cgi?id=675471 shell/cinnamon-control-center.c | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) commit 4a4f3c20a4ad5e2ea57ae9f4d241d27f0a13358a Author: Piotr Drąg Date: Fri May 18 18:44:58 2012 +0200 universal-access: remove tabulation from a translatable string panels/universal-access/uap.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 948867b6d39d644733acc7b82ca71ecf22fc4ca5 Author: Bastien Nocera Date: Fri May 18 17:33:08 2012 +0100 shell: Fix resetting page selection When the page selection happens when another page selection hasn't started yet, we need to cancel the previous animation, or only one of them might be effectively acted upon. This fixes the page from being selected if the search term is changed quickly (you'd end up at the overview page instead of staying on the search results page). Requires the clutter patch from: https://bugzilla.gnome.org/show_bug.cgi?id=676334 https://bugzilla.gnome.org/show_bug.cgi?id=676328 shell/cc-notebook.c | 3 +++ 1 file changed, 3 insertions(+) commit 5f124d600810b1a56484bb1957f441eb5f715b16 Author: Piotr Drąg Date: Fri May 18 18:39:31 2012 +0200 all: fix up tooltips Idea from commit d5088b2eb1bd5f1501e36ec878e60aa3f6e7241b. panels/bluetooth/bluetooth.ui | 6 +++--- panels/color/color.ui | 9 +++------ panels/region/gnome-region-panel.ui | 5 +---- panels/screen/screen.ui | 2 +- panels/universal-access/uap.ui | 4 ++-- panels/wacom/gnome-wacom-properties.ui | 4 ++-- 6 files changed, 12 insertions(+), 18 deletions(-) commit d5088b2eb1bd5f1501e36ec878e60aa3f6e7241b Author: Richard Hughes Date: Fri May 18 16:02:13 2012 +0100 color: Fix up a tooltip for the 'Set for all users' button panels/color/color.ui | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) commit 93184f16b924478be6c5f6e6719e46463cdf458e Author: Richard Hughes Date: Fri May 18 15:59:01 2012 +0100 color: Make the 'Set for all users' insensitive if the profile is already set Resolves: https://bugzilla.gnome.org/show_bug.cgi?id=676271 panels/color/cc-color-panel.c | 2 ++ 1 file changed, 2 insertions(+) commit 19f27721073955626171ebb42adf02ce73517016 Author: Bastien Nocera Date: Fri May 18 11:48:29 2012 +0100 shell: Rename search renderer And cc- prefix it, like the rest of our widgets. shell/Makefile.am | 4 +- shell/cc-shell-search-renderer.c | 366 +++++++++++++++++++++++++++++++++++++++ shell/cc-shell-search-renderer.h | 74 ++++++++ shell/cinnamon-control-center.c | 4 +- shell/shell-search-renderer.c | 365 -------------------------------------- shell/shell-search-renderer.h | 74 -------- 6 files changed, 444 insertions(+), 443 deletions(-) commit 17c2e2c2576cc7fd116c930210a1baeb539df1b6 Author: Peter Hutterer Date: Thu Apr 12 15:36:08 2012 +0200 wacom: Make "Calibrate" button insensitive if there is no screen match If no match is found for the screen tablet, calibration will fail anyway. https://bugzilla.gnome.org/show_bug.cgi?id=673892 panels/wacom/cc-wacom-page.c | 4 ++++ 1 file changed, 4 insertions(+) commit 928e921d8d95887fe7ff29f9ad36e0413164020c Author: Bastien Nocera Date: Fri May 18 10:34:20 2012 +0100 wacom: Update from gnome-settings-daemon panels/wacom/gsd-wacom-device.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) commit c6c239c94f9667451be0e251f702286e22235498 Author: Daniel Mustieles Date: Fri May 18 10:58:01 2012 +0200 Updated Spanish translation po/es.po | 362 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 177 insertions(+), 185 deletions(-) commit c0aa0b2d433b066b2bbcfcb0f4abb3a60ef988b8 Author: Bastien Nocera Date: Thu May 17 18:30:32 2012 +0100 wacom: Bump libwacom requirements For API change in 0.5. See https://bugzilla.gnome.org/show_bug.cgi?id=675872 configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit fb6051401c95d7bc9f8e67679f992d91b0c7eeb9 Author: Bastien Nocera Date: Thu May 17 18:30:14 2012 +0100 wacom: Update from gnome-settings-daemon panels/wacom/gsd-input-helper.c | 9 ++++++++- panels/wacom/gsd-wacom-device.c | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) commit 229390f1f5898c46119c51b8d5a4d31a0d733a12 Author: William Jon McCann Date: Tue May 8 20:08:33 2012 -0400 universal-access: Redesign for consistency and smallness https://bugzilla.gnome.org/show_bug.cgi?id=665588 panels/universal-access/cc-ua-panel.c | 328 +-- panels/universal-access/uap.ui | 3977 +++++++++++++++------------------ 2 files changed, 1945 insertions(+), 2360 deletions(-) commit 3d79e1174e7287f29ad630a4aea55cfa0a6d2b2a Author: Bastien Nocera Date: Thu May 17 18:12:13 2012 +0100 background: Only show the image types we support And add image/bmp to those types. https://bugzilla.gnome.org/show_bug.cgi?id=669960 panels/background/bg-pictures-source.c | 69 ++++++++++++++++++++------------- panels/background/bg-pictures-source.h | 2 + panels/background/cc-background-panel.c | 6 ++- 3 files changed, 50 insertions(+), 27 deletions(-) commit 0ed1bef14fa8c7d43c989c7d1c093d8dd37f942e Author: Fran DiĆ©guez Date: Thu May 17 12:19:09 2012 +0200 Updated Galician translations po/gl.po | 355 ++++++++++++++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 282 insertions(+), 73 deletions(-) commit 835a09e1f84315ffc49552462f88282ebadd645a Author: Bastien Nocera Date: Wed May 16 13:13:43 2012 +0100 shell: Destroy the page instead of removing it Because we don't actually need the child simply removed. Works-around run-time warnings with clutter-gtk. shell/cc-notebook.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) commit 75323fffb280eda7bd625436dbcf143f9c22de1d Author: Daniel Mustieles Date: Wed May 16 12:32:06 2012 +0200 Updated Spanish translation po/es.po | 380 +++++++++++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 299 insertions(+), 81 deletions(-) commit 1f24b178ac7fdcbe442f5634c0bb04fcb9b979b6 Author: Thomas Bechtold Date: Mon May 14 08:07:06 2012 +0200 network: show device state reasons (Closes:bgo#676117) Signed-off-by: Richard Hughes panels/network/cc-network-panel.c | 1 + panels/network/panel-common.c | 193 ++++++++++++++++++++++++++++++++++++++ panels/network/panel-common.h | 13 +-- 3 files changed, 201 insertions(+), 6 deletions(-) commit dbfd9ecb5983e7101dbddf389a480f78e6febe21 Author: Bastien Nocera Date: Fri May 11 12:21:37 2012 +0100 shell: Fix another memleak in CcNotebook shell/cc-notebook.c | 3 +++ 1 file changed, 3 insertions(+) commit 2ea396cee3b4ccb11290985fa4f18db5796206cd Author: Bastien Nocera Date: Fri May 11 12:18:34 2012 +0100 shell: Chain up CcNotebook's finalize function shell/cc-notebook.c | 2 ++ 1 file changed, 2 insertions(+) commit b96c440da95450de78022cad8fdd525ca26e60b1 Author: Bastien Nocera Date: Fri May 11 11:57:01 2012 +0100 shell: Remove left-over FIXME shell/cc-notebook.c | 2 -- 1 file changed, 2 deletions(-) commit bec2efb36abf5b232a1b54a00f15fa91ee5dc7d4 Author: Bastien Nocera Date: Thu May 10 19:20:58 2012 +0100 shell: Try to always use delayed removal shell/cc-notebook.c | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) commit 62d2bcf0b8e9187b77c7b79becb1b40f9793fd1e Author: Bastien Nocera Date: Thu May 10 18:21:39 2012 +0100 shell: Fix xrefs not working We were scrolling to parts of the stage where we wouldn't have a page anymore. Don't do that, and only remove pages when we're done with animations. shell/cc-notebook.c | 67 +++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 55 insertions(+), 12 deletions(-) commit b389c604b6c9d82b3505e3935d7730d87856f7c7 Author: Bruno Brouard Date: Thu May 10 15:16:23 2012 +0200 Updated French translation po/fr.po | 544 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 287 insertions(+), 257 deletions(-) commit 9225b11112b04f621163ce11602d8f141a8d4277 Author: Bastien Nocera Date: Thu May 10 11:13:52 2012 +0100 shell: Update animated notebook TODO shell/TODO | 3 +++ 1 file changed, 3 insertions(+) commit c573a07b06989034751abe2df54315f37d260345 Author: Colin Walters Date: Wed May 9 13:14:32 2012 -0400 git.mk: Update from upstream git.mk | 43 ++++++++++++++++++++++++++++++------------- 1 file changed, 30 insertions(+), 13 deletions(-) commit f8c0eceb80780a1e2d391a97e5f9ceca0c89b3ac Author: Bastien Nocera Date: Mon Apr 30 19:24:45 2012 +0100 shell: Use CcNotebook instead of GtkNotebook shell/cinnamon-control-center.c | 97 +++++++++++++++++++++----------------------- shell/shell.ui | 7 +--- 2 files changed, 48 insertions(+), 56 deletions(-) commit 74aa98b7c81b5a59577f2180352efdbce7235bcd Author: Bastien Nocera Date: Mon Apr 30 19:24:14 2012 +0100 shell: Add animated notebook Powered by gtk-clutter. configure.ac | 2 +- shell/Makefile.am | 7 + shell/TODO | 4 + shell/cc-notebook.c | 466 ++++++++++++++++++++++++++++++++++++++++++++++++++ shell/cc-notebook.h | 69 ++++++++ shell/test-notebook.c | 92 ++++++++++ 6 files changed, 639 insertions(+), 1 deletion(-) commit 8a01c7caf1a93ae7b973b2063fbdc5ce3dd57280 Author: Bastien Nocera Date: Mon Apr 30 18:04:33 2012 +0100 shell: Remove another use of page numbers shell/cinnamon-control-center.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) commit 43b53020cac5ca0c9ef2e1dfcf30ba9c6b49cdea Author: Bastien Nocera Date: Mon Apr 30 18:03:50 2012 +0100 shell: Move helper functions shell/cinnamon-control-center.c | 60 ++++++++++++++++++++++---------------------- 1 file changed, 30 insertions(+), 30 deletions(-) commit e01e33e76e777142db01fa220c789779fd569256 Author: Bastien Nocera Date: Mon Apr 30 17:07:36 2012 +0100 shell: Remove prior panel at the last minute Once we've already switch to a new panel. shell/cinnamon-control-center.c | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) commit cdbd37fa47a7244e9aaba1cd03936677a7541bc7 Author: Bastien Nocera Date: Mon Apr 30 17:05:15 2012 +0100 shell: Add return value to activate_panel() shell/cinnamon-control-center.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) commit d25563f5c475fcc86740539013640178faea8e3e Author: Bastien Nocera Date: Mon Apr 30 17:00:33 2012 +0100 shell: Flatten activate_panel() And exit as soon as we fail. shell/cinnamon-control-center.c | 88 ++++++++++++++++++++------------------------ 1 file changed, 40 insertions(+), 48 deletions(-) commit ec7f8c9b51d6fd490af1cafb101890e745ad0373 Author: Bastien Nocera Date: Mon Apr 30 16:29:07 2012 +0100 shell: Use widgets rather than page numbers To differentiate children of a GtkNotebook. shell/cinnamon-control-center.c | 69 ++++++++++++++++++++++++++++++++------------ 1 file changed, 50 insertions(+), 19 deletions(-) commit cd867b1158f5fca433e7920aa84eb4e6f7080d7b Author: William Jon McCann Date: Tue May 8 16:14:57 2012 -0400 Adapt to gnome-desktop API change for display labels GdkColor -> GdkRGBA configure.ac | 2 +- panels/display/cc-display-panel.c | 21 ++++++++------------- 2 files changed, 9 insertions(+), 14 deletions(-) commit 22ed5a9fd565872eb3acd404b798739ac45455a8 Author: Bastien Nocera Date: Tue May 8 19:15:19 2012 +0100 shell: Check for small screen before showing window Map the window before displaying it, so we can maximise it straight away and avoid visible resizing. shell/cinnamon-control-center.c | 4 ++++ 1 file changed, 4 insertions(+) commit ecda0ad5c0d94236b6bf188fa31512309522e101 Author: Bastien Nocera Date: Tue May 8 19:12:46 2012 +0100 shell: Lower the small screen fixed height As this is the minimum size of the content view, not the whole window. shell/cinnamon-control-center.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 3bd227a9055746238d24ce777ded471a569f0376 Author: Bastien Nocera Date: Tue May 8 18:54:28 2012 +0100 shell: Maximise window on monitor size change When the monitor changes size, and we have a small screen, reset small_screen_set so that we maximise the window. shell/cinnamon-control-center.c | 3 +++ 1 file changed, 3 insertions(+) commit c3fa222461df600a863fa5411566a98a7db6cb3b Author: Bastien Nocera Date: Tue May 8 18:53:04 2012 +0100 Revert "shell: Reset "small_screen_set" when we use a big screen" This reverts commit 3e5f488160ff2ba72d6871a8b9848fb1206da3c8. shell/cinnamon-control-center.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) commit 3bc75764c654d62a421fcb7c3f5734a01f077901 Author: William Jon McCann Date: Tue May 1 13:30:18 2012 -0400 Use menubar style class for toolbar https://bugzilla.gnome.org/show_bug.cgi?id=673869 shell/shell.ui | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit f264ebea0bea905113de1d1e35a3db8f11a49357 Author: Bastien Nocera Date: Tue May 8 18:48:06 2012 +0100 shell: Set the minimum content height Instead of using gtk_widget_size_request() on the parent scrolled window, to make sure that border are taken into account when sizing the icon views. shell/cinnamon-control-center.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) commit 3e5f488160ff2ba72d6871a8b9848fb1206da3c8 Author: Bastien Nocera Date: Tue May 8 18:46:22 2012 +0100 shell: Reset "small_screen_set" when we use a big screen Otherwise we wouldn't maximise the screen again. shell/cinnamon-control-center.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) commit 9c2e8c28f53025e3aa5d9596b36f1581897d0301 Author: Jon McCann Date: Thu Apr 12 16:02:36 2012 -0400 Hide window titlebar when maximized https://bugzilla.gnome.org/show_bug.cgi?id=673869 shell/cinnamon-control-center.c | 1 + 1 file changed, 1 insertion(+) commit 796d4ebafad432e9d9723781e831f3cf3f25c838 Author: Jon McCann Date: Tue Apr 10 18:04:38 2012 -0400 Fit three columns of search results And center labels vertically that have no search matching text. https://bugzilla.gnome.org/show_bug.cgi?id=673869 shell/cinnamon-control-center.c | 8 ++++++-- shell/shell-search-renderer.c | 15 +++++++++++++-- 2 files changed, 19 insertions(+), 4 deletions(-) commit 620e70113c30b0ae868577153dda60139f3c20b4 Author: Jon McCann Date: Tue Apr 10 16:55:26 2012 -0400 Add horizontal separators between sections Based on patch from Ubuntu https://bugzilla.gnome.org/show_bug.cgi?id=673869 shell/cinnamon-control-center.c | 10 ++++++++++ 1 file changed, 10 insertions(+) commit 599f19a595331db6a79d964f71168a3249cb9493 Author: Jon McCann Date: Tue Apr 10 16:42:09 2012 -0400 Increase icon size to 48px https://bugzilla.gnome.org/show_bug.cgi?id=673869 shell/cc-shell-model.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit ad0e02f100966c244aef9f4b1710c561bf9cb899 Author: Jon McCann Date: Tue May 8 16:56:20 2012 +0100 shell: Be smarter about smaller screen sizes Make the minimum window size smaller, and the window resizable when using small screens. Based on patch from Ubuntu https://bugzilla.gnome.org/show_bug.cgi?id=673869 shell/cinnamon-control-center.c | 106 +++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 102 insertions(+), 4 deletions(-) commit d955d484da02871e146f7bd1d4d9ef32f0000c14 Author: Jon McCann Date: Tue May 8 16:43:57 2012 +0100 shell: Increase default window size https://bugzilla.gnome.org/show_bug.cgi?id=673869 shell/cinnamon-control-center.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit b393ca6d022a1c4b71d1d6ed316cbcc4f4998a35 Author: Bastien Nocera Date: Tue May 8 16:37:51 2012 +0100 shell: Move all sizing hacks in one location And make sure that the overview has no scrollbars to start with. Add a FIXME to handle smaller sized screens later on. shell/cinnamon-control-center.c | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) commit 241e6186e0315ebbe02e2cf4bf8d89895314b21a Author: Reinout van Schouwen Date: Thu May 3 01:15:52 2012 +0200 Updated Dutch translation by Hannie Dumoleyn. Reviewed by Reinout van Schouwen po/nl.po | 6165 ++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 3426 insertions(+), 2739 deletions(-) commit d009a3fc352287306035230fa58d3e56a65ab80a Author: William Jon McCann Date: Tue May 1 14:55:43 2012 -0400 Revert "Increase icon size to 48px" This reverts commit c8c8720d726b78a66ff2f2c6a8061c377ccd76e3. shell/cc-shell-model.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 9d55273c147c2a2782168bcc8e0925cc4e9e27aa Author: William Jon McCann Date: Tue May 1 14:55:42 2012 -0400 Revert "Increase default window size" This reverts commit f36d42b9d109dc2636be7d4c8d104f608b3706fa. shell/cinnamon-control-center.c | 122 ++----------------------------------------- shell/shell.ui | 2 +- 2 files changed, 6 insertions(+), 118 deletions(-) commit 523a85f70474d93b44e7a1ec7578547400dcc024 Author: William Jon McCann Date: Tue May 1 14:55:41 2012 -0400 Revert "Add horizontal separators between sections" This reverts commit e924ea03fa6c3621bdcf17e629d6b1383156c3dd. shell/cinnamon-control-center.c | 10 ---------- 1 file changed, 10 deletions(-) commit 29792b41e5e06a8267586daa75a790383a195cc9 Author: William Jon McCann Date: Tue May 1 14:55:40 2012 -0400 Revert "Fit three columns of search results" This reverts commit 2d145a6fa4b21a5b558597ab9b6dde460a41a4f6. shell/shell-search-renderer.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) commit b796b4c3767e7dfb6f36a957b2a7c38fd7b8bd9a Author: William Jon McCann Date: Tue May 1 14:55:38 2012 -0400 Revert "Hide window titlebar when maximized" This reverts commit 700ea6a1aa23c1738b0cb444a032a607df66ae82. shell/cinnamon-control-center.c | 1 - 1 file changed, 1 deletion(-) commit d8e10a566cd950cf96a0010381ce8cab351ee61b Author: William Jon McCann Date: Tue May 1 14:55:28 2012 -0400 Revert "Use menubar style class for toolbar" This reverts commit b1431c00e04692d4be38fde769591c987516b2fc. shell/shell.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit b1431c00e04692d4be38fde769591c987516b2fc Author: William Jon McCann Date: Tue May 1 13:30:18 2012 -0400 Use menubar style class for toolbar shell/shell.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 700ea6a1aa23c1738b0cb444a032a607df66ae82 Author: Jon McCann Date: Thu Apr 12 16:02:36 2012 -0400 Hide window titlebar when maximized https://bugzilla.gnome.org/show_bug.cgi?id=673869 shell/cinnamon-control-center.c | 1 + 1 file changed, 1 insertion(+) commit 2d145a6fa4b21a5b558597ab9b6dde460a41a4f6 Author: Jon McCann Date: Tue Apr 10 18:04:38 2012 -0400 Fit three columns of search results And center labels vertically that have no search matching text. https://bugzilla.gnome.org/show_bug.cgi?id=673869 shell/shell-search-renderer.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) commit e924ea03fa6c3621bdcf17e629d6b1383156c3dd Author: Jon McCann Date: Tue Apr 10 16:55:26 2012 -0400 Add horizontal separators between sections Based on patch from Ubuntu https://bugzilla.gnome.org/show_bug.cgi?id=673869 shell/cinnamon-control-center.c | 10 ++++++++++ 1 file changed, 10 insertions(+) commit f36d42b9d109dc2636be7d4c8d104f608b3706fa Author: Jon McCann Date: Tue Apr 10 16:52:15 2012 -0400 Increase default window size And be smarter about small screen sizes. Based on patch from Ubuntu https://bugzilla.gnome.org/show_bug.cgi?id=673869 shell/cinnamon-control-center.c | 122 +++++++++++++++++++++++++++++++++++++++++-- shell/shell.ui | 2 +- 2 files changed, 118 insertions(+), 6 deletions(-) commit c8c8720d726b78a66ff2f2c6a8061c377ccd76e3 Author: Jon McCann Date: Tue Apr 10 16:42:09 2012 -0400 Increase icon size to 48px https://bugzilla.gnome.org/show_bug.cgi?id=673869 shell/cc-shell-model.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 8cc0b7207b811c6c7de879ff9592a38ec5473023 Author: Bastien Nocera Date: Mon Apr 30 16:28:09 2012 +0100 shell: Fix GtkBuilder file for complaining glade shell/shell.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit f620c524259a63e25179273b3794e3d7718aa929 Author: Luca Ferretti Date: Mon Apr 30 15:05:23 2012 +0200 l10n: Updated Italian translation po/it.po | 2592 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 1295 insertions(+), 1297 deletions(-) commit f232788c6ccab0524f38a196f279dabbb3e35076 Author: Bastien Nocera Date: Mon Apr 30 13:43:33 2012 +0100 shell: Fix missing sedding shell/cc-strength-bar.c | 4 ++-- shell/cc-strength-bar.h | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) commit 656862e697523f40f712f9bcf887f39b4e72b0a7 Author: Cosimo Cecchi Date: Tue Mar 27 17:42:40 2012 -0400 bluetooth: don't set a shadow type on the viewport https://bugzilla.gnome.org/show_bug.cgi?id=672956 panels/bluetooth/bluetooth.ui | 2 ++ 1 file changed, 2 insertions(+) commit 5edec8138b127d0e783918c6860aca35345e7d8e Author: Cosimo Cecchi Date: Tue Mar 27 17:42:25 2012 -0400 shell: don't set a shadow type on the GtkViewport https://bugzilla.gnome.org/show_bug.cgi?id=672956 shell/shell.ui | 1 + 1 file changed, 1 insertion(+) commit 84084b28d4d34355fb141644c26333853d5b0be1 Author: Kjartan Maraas Date: Mon Apr 30 11:10:11 2012 +0200 Updated Norwegian bokmĆ„l translation po/nb.po | 207 +++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 115 insertions(+), 92 deletions(-) commit 0bb2e2142a801178c44c23ccebb975e3987221bd Author: Jon McCann Date: Wed Mar 28 15:01:53 2012 -0400 background: Sort Pictures folder by name https://bugzilla.gnome.org/show_bug.cgi?id=672925 panels/background/bg-pictures-source.c | 42 ++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) commit a3055b3202ca4446f15fa7941c25811a7b4e2f7c Author: Bastien Nocera Date: Thu Apr 26 11:07:08 2012 +0100 background: Ignore screenshots Don't list screenshots coming from gnome-screenshot in our Pictures source. https://bugzilla.gnome.org/show_bug.cgi?id=672925 panels/background/bg-pictures-source.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) commit f102ca7363651cb2b815198018b3d389257e7610 Author: Bastien Nocera Date: Wed Apr 25 20:01:14 2012 +0100 mouse: Update from gnome-settings-daemon panels/mouse/gsd-input-helper.c | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) commit a760238a67d26b3e4ae8fab4662ac9f49fdd1bcf Author: Bastien Nocera Date: Wed Apr 25 20:00:44 2012 +0100 wacom: Update from gnome-settings-daemon panels/wacom/gsd-input-helper.c | 16 +++++++++------- panels/wacom/gsd-wacom-device.c | 16 ++++++++++++++-- 2 files changed, 23 insertions(+), 9 deletions(-) commit bbdcabcaafc0b27ff8d06e77cf0e0307eb051a2d Author: Daniel Mustieles Date: Mon Apr 23 11:41:15 2012 +0200 Updated Spanish translation po/es.po | 191 ++++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 110 insertions(+), 81 deletions(-) commit 87beb8b31aea8b399a8c94f4740476a8c13d37e9 Author: Yaron Shahrabani Date: Sun Apr 22 17:23:34 2012 +0300 Updated Hebrew translation. po/he.po | 86 +++++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 53 insertions(+), 33 deletions(-) commit 9eeeeba8f8c99f6e95cc75888ccd4ff2f0100181 Author: Fran DiĆ©guez Date: Sun Apr 22 15:52:13 2012 +0200 Updated Galician translations po/gl.po | 87 ++++++++++++++++++++++++++++++++++++++++------------------------ 1 file changed, 55 insertions(+), 32 deletions(-) commit 42aa44c68eab4d9e91c4dc1e61132efab9077e91 Author: Bastien Nocera Date: Mon Mar 26 17:01:33 2012 +0200 power: Add context for the battery levels https://bugzilla.gnome.org/show_bug.cgi?id=672738 panels/power/cc-power-panel.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) commit 0e49b5b88d3903f0caa90cc771aef211f68248c6 Author: Bastien Nocera Date: Mon Mar 26 17:00:35 2012 +0200 mouse: Add context for Low/High https://bugzilla.gnome.org/show_bug.cgi?id=672738 panels/mouse/gnome-mouse-properties.ui | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) commit 816b3f4dd0ea7c15fef02857ce917c340bc8006d Author: Yaron Shahrabani Date: Sun Apr 22 11:09:52 2012 +0300 Updated Hebrew translation. po/he.po | 2615 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 1312 insertions(+), 1303 deletions(-) commit 648ef0f5dab517d9b1da80a168d4285dcac3b0db Author: YunQiang Su Date: Fri Apr 20 20:28:54 2012 +0800 Fix zh_CN translation problem po/zh_CN.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 214146426e01a1a58421eecfa7a0a8f0c5f31c14 Author: Fran DiĆ©guez Date: Thu Apr 19 19:46:59 2012 +0200 Updated Galician translations po/gl.po | 611 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 310 insertions(+), 301 deletions(-) commit 57078e0de914c17aef4fd5c3b689bf16cf08e918 Author: Fran DiĆ©guez Date: Fri Mar 16 23:17:59 2012 +0100 Little fix in Galician translations Signed-off-by: Fran DiĆ©guez po/gl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 3ae795ea6ec09c8a1d49533510904dec9425f617 Author: Debarshi Ray Date: Sat Apr 14 23:10:37 2012 +0200 online-accounts: goa_provider_show_account now expects GtkGrids, not GtkTable Fixes: https://bugzilla.gnome.org/669625 panels/online-accounts/cc-online-accounts-panel.c | 30 ++++++++++++++++------- 1 file changed, 21 insertions(+), 9 deletions(-) commit d6092763436100b22dcba7dbd9d90b8f4680b405 Author: Debarshi Ray Date: Mon Mar 12 20:28:11 2012 +0100 online-accounts: Fix spacing and alignment when showing accounts Implemented design: http://ur1.ca/8m05c https://live.gnome.org/Design/SystemSettings/OnlineAccounts Fixes: https://bugzilla.gnome.org/671980 panels/online-accounts/cc-online-accounts-panel.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) commit 07866aa933408219016195ae4fda50b94b638dd8 Author: Bastien Nocera Date: Thu Apr 19 14:26:11 2012 +0100 info: Ignore removable mounts That used to be in /media and are now in /run/media/$USERNAME/ panels/info/cc-info-panel.c | 1 + 1 file changed, 1 insertion(+) commit 3d063ebaf7c8b8c5123191425a03585a100a05cd Author: Bastien Nocera Date: Thu Apr 19 14:25:55 2012 +0100 info: Update from gnome-settings-daemon panels/info/gsd-disk-space-helper.c | 19 +++++++++++++++++++ panels/info/gsd-disk-space-helper.h | 1 + 2 files changed, 20 insertions(+) commit 9c56a95358fd2fa2d7692a040ce6bca2db81007c Author: Bastien Nocera Date: Thu Apr 19 12:00:04 2012 +0100 info: Ignore NFS mounts when calculating disk size https://bugzilla.gnome.org/show_bug.cgi?id=674356 panels/info/Makefile.am | 4 +++- panels/info/cc-info-panel.c | 6 ++++-- 2 files changed, 7 insertions(+), 3 deletions(-) commit 18524ddb9db17a97b4a1c05b8ff2aef8fb7670b1 Author: Bastien Nocera Date: Thu Apr 19 11:59:41 2012 +0100 info: Add code to update disk space helper panels/info/Makefile.am | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) commit 27d917458d7b54580fd7417915ff23a9f5831dbf Author: Bastien Nocera Date: Thu Apr 19 11:58:29 2012 +0100 info: Update from gnome-settings-daemon panels/info/gsd-disk-space-helper.c | 105 ++++++++++++++++++++++++++++++++++++ panels/info/gsd-disk-space-helper.h | 38 +++++++++++++ 2 files changed, 143 insertions(+) commit 5a472dc515e784e645ae9bd4e82396d87c6817c3 Author: Bastien Nocera Date: Thu Apr 19 11:56:56 2012 +0100 mouse: Use update-from-gsd.sh to update input helper panels/mouse/Makefile.am | 6 ++++++ 1 file changed, 6 insertions(+) commit be45283bb43e3734de6cc6773bc589b51d120c0f Author: Bastien Nocera Date: Thu Apr 19 11:56:21 2012 +0100 mouse: Update from gnome-settings-daemon panels/mouse/gsd-input-helper.c | 343 ++++++++++++++++++++++++++++++++++++++-- panels/mouse/gsd-input-helper.h | 48 +++++- 2 files changed, 374 insertions(+), 17 deletions(-) commit 69b5afd9fed2c8f6b24e9c9706307df836d7a009 Author: Bastien Nocera Date: Thu Apr 19 11:50:58 2012 +0100 wacom: Move update-from-gsd.sh to root panels/wacom/Makefile.am | 4 ++-- panels/wacom/update-from-gsd.sh | 26 -------------------------- update-from-gsd.sh | 26 ++++++++++++++++++++++++++ 3 files changed, 28 insertions(+), 28 deletions(-) commit eeed45ff81e6ae9be0f4b0a51136da200afc3156 Author: Kjartan Maraas Date: Wed Apr 18 20:29:42 2012 +0200 Updated Norwegian bokmĆ„l translation po/nb.po | 388 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 197 insertions(+), 191 deletions(-) commit 6b49166b70846d501287653c2349bb7123884b32 Author: Matej Urbančič Date: Mon Apr 16 22:31:06 2012 +0200 Updated Slovenian translation po/sl.po | 509 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 259 insertions(+), 250 deletions(-) commit 1798742050b3df00c7d68a10c66029f301172339 Author: Daniel Mustieles Date: Mon Apr 16 16:31:55 2012 +0200 Updated Spanish translation po/es.po | 577 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 293 insertions(+), 284 deletions(-) commit c642ca41d011ac3ac9b3ddeb7bfa84f97ccf69cc Author: Reşat SABIQ Date: Mon Apr 16 04:45:20 2012 -0500 Updated Crimean Tatar (Crimean Turkish) translation po/crh.po | 10251 ++++++++++++++++++++++++++++++++++++++++++------------------ 1 file changed, 7294 insertions(+), 2957 deletions(-) commit 8fe181c7ae6cdc25872d74284fcbaca40953d787 Author: Piotr Drąg Date: Mon Apr 16 01:19:29 2012 +0200 Updated POTFILES.in po/POTFILES.in | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) commit 8c123db9cab2042870a45575ed16ef9576c7aebe Author: Khaled Hosny Date: Sat Apr 14 23:26:11 2012 +0200 Updated Arabic translation po/ar.po | 174 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 87 insertions(+), 87 deletions(-) commit 6000ef1d63a80172cf778701d77cdd948294fe1a Author: Piotr Drąg Date: Sat Apr 14 18:49:22 2012 +0200 Updated Polish translation po/pl.po | 2665 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 1332 insertions(+), 1333 deletions(-) commit dc6dd8f9ecb7578233e0bcceea56c9b5d8f0e0f1 Author: Jiro Matsuzawa Date: Sat Apr 14 12:17:35 2012 +0900 [l10n] Update Japanese translation po/ja.po | 124 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 62 insertions(+), 62 deletions(-) commit 82aa5d01306e8435aff4ccc2ab7832d9ca422915 Author: Bastien Nocera Date: Fri Mar 30 11:34:47 2012 +0200 printers: Fix small memory leak https://bugzilla.gnome.org/show_bug.cgi?id=673151 panels/printers/pp-new-printer-dialog.c | 2 ++ 1 file changed, 2 insertions(+) commit f87e38441d080969dd3bd5b3e44efff8b2112488 Author: Marek Kasik Date: Fri Apr 13 13:16:08 2012 +0200 printers: A little correction of previous commit Correcting a little typo. panels/printers/pp-utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 5272bcc06d892c4066751afba8e17bc1df233220 Author: Marek Kasik Date: Fri Apr 13 13:09:38 2012 +0200 printers: Use PrinterAddOption method to set media size Use new cups-pk-helper's method PrinterAddOption for setting default media size for new printers. This fixes problem with setting default media size (#672694). panels/printers/pp-new-printer-dialog.c | 130 ++++++-------------------------- panels/printers/pp-utils.c | 67 ++++++++++++++++ panels/printers/pp-utils.h | 2 + 3 files changed, 90 insertions(+), 109 deletions(-) commit fa3c8585028ad61352a908f18b744a9991486de4 Author: Cosimo Cecchi Date: Mon Mar 26 15:40:52 2012 -0400 wacom: fix "Map to Monitor..." button alignment It should use the same align of the button next to it, i.e. 'center', or it will look bigger. https://bugzilla.gnome.org/show_bug.cgi?id=672873 panels/wacom/gnome-wacom-properties.ui | 1 + 1 file changed, 1 insertion(+) commit 89a5e737b092aa3c093b2ecb5866857b72660dd8 Author: Yaron Shahrabani Date: Thu Apr 12 18:02:53 2012 +0300 Updated Hebrew translation. po/he.po | 146 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 73 insertions(+), 73 deletions(-) commit ff31b771bbff300de4da4b4860d4ebdcd09acb6b Author: Peter Hutterer Date: Thu Apr 12 15:29:36 2012 +0200 wacom: update the UI if a new tool comes in The device_added_cb is called once for each tool added. The wacom driver hotplugs tools in the order stylus, eraser, cursor, pad. update_current_page will add a new page once a tablet has stylus and eraser, before cursor and pad exist. priv->pad is thus always NULL, causing, cc_wacom_page's update_tablet_ui to remove the "Map Buttons..." button for any device. Change the code to update the tool list for every new tool we get, merely triggering the visibility of the button instead of destroying it completely. https://bugzilla.gnome.org/show_bug.cgi?id=672691 panels/wacom/cc-wacom-page.c | 83 +++++++++++++++++++++++++++++++------------ panels/wacom/cc-wacom-page.h | 5 +++ panels/wacom/cc-wacom-panel.c | 11 +++--- 3 files changed, 71 insertions(+), 28 deletions(-) commit 0463ba862220ceb14433dbf1ab90043357bfeac7 Author: Bastien Nocera Date: Thu Apr 12 11:05:26 2012 +0100 wacom: Rename to "Wacom Tablet" The name of the panel is currently Wacom Graphics Tablet. This is really long and redundant. The name is also currently wrapped onto three lines. https://bugzilla.gnome.org/show_bug.cgi?id=673864 panels/wacom/gnome-wacom-panel.desktop.in.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 5a2daec0a364cee4addab3a93228c9a8469060f7 Author: Sebastien Bacher Date: Tue Apr 10 19:31:44 2012 +0200 wacom: Mark extra strings as translatable https://bugzilla.gnome.org/show_bug.cgi?id=673854 panels/wacom/cc-wacom-mapping-panel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 8f7b92e89972c1fb80917384e26d05ffb3e7fc27 Author: Carles Ferrando Date: Wed Apr 11 00:11:02 2012 +0200 [l10n]Updated Catalan (Valencian) translation po/ca@valencia.po | 139 +++++++++++++++++++++++++++--------------------------- 1 file changed, 70 insertions(+), 69 deletions(-) commit 867787678d3c12af333a0e9c76f168ba76794b6c Author: Jordi Serratosa Date: Wed Apr 11 00:10:30 2012 +0200 [l10n] Fixes on Catalan translation po/ca.po | 103 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 52 insertions(+), 51 deletions(-) commit 04eca6d9515ea1eb6827f334d6c57c26b0e58718 Author: Michael Terry Date: Tue Apr 10 09:19:03 2012 -0400 user-accounts: Make controls insensitive when a user is not selected https://bugzilla.gnome.org/show_bug.cgi?id=671484l panels/user-accounts/data/user-accounts-dialog.ui | 1 + panels/user-accounts/um-user-panel.c | 3 +++ 2 files changed, 4 insertions(+) commit 80fdb0bee20af5c3f718bd09dccb2b34dad0aeba Author: Gabor Kelemen Date: Mon Apr 9 09:20:31 2012 +0300 display: Translate the rotation drop-down again The rotation combo box items on the Displays panel do not appear translated. This is because the items got translation context support in 5a5a037d09787da48f3c8b60ca5ce6dcb5ebcbf3, but to get the localized strings, one needs to use g_dpgettext2()[1], not gettext(). https://bugzilla.gnome.org/show_bug.cgi?id=673766 panels/display/cc-display-panel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit a47bdcfdb478554598faf416790ed2ca708e25d2 Author: Milo Casagrande Date: Sat Apr 7 17:51:58 2012 +0200 [l10n] Updated Italian translation po/it.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit 5605ba8336d19a0b30b8dd856811ff1d4c6ab275 Author: Milo Casagrande Date: Fri Apr 6 17:15:27 2012 +0200 [l10n] Updated Italian translation po/it.po | 2884 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 1448 insertions(+), 1436 deletions(-) commit 463090e67c69f2464c8a9dedc875113dd0249b7b Author: Neliton Pereira Jr Date: Wed Apr 4 16:03:04 2012 -0300 Fixed some strings in Brazilian Portuguese translation po/pt_BR.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 9eb047baff69f78273e0be20c42c06cde7a2e27f Author: Richard Hughes Date: Mon Mar 26 17:48:23 2012 +0100 Always round up the CcStrengthBar rather than down It's a measure of completeness, not of progress. shell/cc-strength-bar.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) commit 13b534adb86ad601e7f637d6543e636b3b76092b Author: ManojKumar Giri Date: Tue Apr 3 20:40:37 2012 +0530 Updated Odia Translation po/or.po | 1550 ++++++++++++++++++++------------------------------------------ 1 file changed, 504 insertions(+), 1046 deletions(-) commit 4f090a1accca2a31b0f475ddc60eb9fcb9bb248b Author: ManojKumar Giri Date: Mon Apr 2 21:47:26 2012 +0530 Updated Odia Translation po/or.po | 747 ++++++++++++++++++++++++++------------------------------------- 1 file changed, 313 insertions(+), 434 deletions(-) commit 4ea22e9921de151614384a61159e20f6fd85049e Author: Bruno Brouard Date: Sun Apr 1 13:14:45 2012 +0200 Updated French translation po/fr.po | 162 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 81 insertions(+), 81 deletions(-) commit 3da4a4a5bf916fb134e4f59e2ccd9ce59cc32cd2 Author: Arash Mousavi Date: Sun Apr 1 01:02:00 2012 +0430 Updated Persian Translations po/fa.po | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) commit 064d02216dcd36c67a5e83e5c47c51a3e2bf8633 Author: Andrej ŽnidarÅ”ič Date: Fri Mar 30 15:40:34 2012 +0200 Updated Slovenian translation po/sl.po | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) commit f518abebe8e553ad1a44b67397fc2a4f73de7253 Author: Andrej ŽnidarÅ”ič Date: Thu Mar 29 20:21:07 2012 +0200 Updated Slovenian translation po/sl.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit ce7afa847139d5057599db5e82196501bc6d2b5b Author: Andrej ŽnidarÅ”ič Date: Wed Mar 28 15:16:46 2012 +0200 Updated Slovenian translation po/sl.po | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) commit f1dfd2968df725a0b506cc6061f9b2110e3631b8 Author: Shankar Prasad Date: Wed Mar 28 14:10:55 2012 +0530 Updated Kannada Translation po/kn.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit dac1f38f0f19e56744ca0acb40f8c81ae1320729 Author: Daniel Nylander Date: Wed Mar 28 08:06:05 2012 +0200 Updated Swedish translation po/sv.po | 297 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 150 insertions(+), 147 deletions(-) commit 0008d8fd8dd45e2d50cb8fdd252e5b1b896672e0 Author: Shankar Prasad Date: Tue Mar 27 19:15:02 2012 +0530 Updated Kannada Translation po/kn.po | 1147 +++++++++++++++++++++++++------------------------------------- 1 file changed, 466 insertions(+), 681 deletions(-) commit 2d0203bfad3d77d77a078c72f064cb07b582a2e5 Author: Matthias Clasen Date: Mon Mar 19 07:21:40 2012 -0400 common: Make insertion of new languages quicker See https://bugzilla.gnome.org/show_bug.cgi?id=672293#c6 panels/common/cc-common-language.c | 46 +++++++++++++++++++++++--------------- 1 file changed, 28 insertions(+), 18 deletions(-) commit ee3f0720f2a22c9e829ba114713bfaf5b97cc8e2 Author: Bastien Nocera Date: Tue Mar 27 13:44:44 2012 +0200 common: Fix crash when filtering language list And it's still being populated. If the list gets filtered while it's being populated, we would end up with a row with NULL data, causing us to crash. Make sure to hold the GDK threads lock when reading from the list, to avoid racing with the insert code. http://bugzilla.gnome.org/show_bug.cgi?id=672293 panels/common/cc-language-chooser.c | 6 ++++++ 1 file changed, 6 insertions(+) commit 49ec6af014326efd0001dd1531d5b09cf22d2121 Author: Shankar Prasad Date: Tue Mar 27 10:51:20 2012 +0530 Updated Kannada Translation po/kn.po | 7188 ++++++++++++++++++++++++++++++++++++++------------------------ 1 file changed, 4388 insertions(+), 2800 deletions(-) commit a7aa5f0c77277b9317cd77fbb832152920a9403e Author: Richard Hughes Date: Mon Mar 26 18:47:55 2012 +0100 trivial: Post branch version bump configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit bff2c80f0e3aa462f98d66df7be2da3d5738001e Author: Richard Hughes Date: Mon Mar 26 18:03:29 2012 +0100 3.4.0 NEWS | 27 +++++++++++++++++++++++++++ configure.ac | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) commit 2806e68657fe453a1db4e3232bc75a83fd318c61 Author: Richard Hughes Date: Mon Mar 26 11:16:01 2012 +0100 Fix a crash in the network panel by disconnecting idle sources If you open and close the network panel again and again at speed, you can trigger a crash. panels/network/cc-network-panel.c | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) commit cf01ab57dc812157aff83a5c91218c636a4dda16 Author: ManojKumar Giri Date: Mon Mar 26 13:21:29 2012 +0530 Updated Odia Translation po/or.po | 235 ++++++++++++++++++++++++++++----------------------------------- 1 file changed, 104 insertions(+), 131 deletions(-) commit 344a1c909bc64658ec9de990bf8e3055f36d4bff Author: Marek Černocký Date: Sun Mar 25 11:20:51 2012 +0200 Updated Czech translation po/cs.po | 3805 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 1911 insertions(+), 1894 deletions(-) commit 9ae5305a303980d56f23f916451458799a8c1b1a Author: Sasi Bhushan Date: Sun Mar 25 13:30:13 2012 +0530 Updated Telugu translation po/te.po | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) commit 34f0b87d5af317e492698192467d5276a5bcce8b Author: Christian Kirbach Date: Sat Mar 24 20:14:45 2012 +0100 [l10n] Updated German translation po/de.po | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) commit 2021bbc433e3b50488e01f1e0ed1b86ca7c633c3 Author: Takayuki KUSANO Date: Sun Mar 25 02:48:03 2012 +0900 Updated Japanese translation. po/ja.po | 403 ++++++++++++++++++++++++++------------------------------------- 1 file changed, 167 insertions(+), 236 deletions(-) commit 6298fe50dc2534cbef0e62bf99c5cab4bd7cdabd Author: Yaron Shahrabani Date: Sat Mar 24 19:13:57 2012 +0200 Updated Hebrew translation. po/he.po | 231 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 117 insertions(+), 114 deletions(-) commit 16c0d49a3b3a07467f42b9e2766eb6e5aa68b972 Author: Sasi Bhushan Boddepalli Date: Sat Mar 24 17:02:42 2012 +0530 Updated Telugu Translation po/te.po | 143 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 72 insertions(+), 71 deletions(-) commit 30a9c7c7a719650f5ee95966f4cdca8b5ec18c90 Author: Marek Kasik Date: Fri Mar 23 14:30:24 2012 +0100 printers: Fix crash in actualize_printers_list() This fixes a typo in handling of printers options in actualize_printers_list() which caused a crash when number of printers exceeded number of options (#672689). panels/printers/cc-printers-panel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 4cb845983d112be99448d390c56a4b3660a5b285 Author: Kjartan Maraas Date: Fri Mar 23 13:24:59 2012 +0100 Updated Norwegian bokmĆ„l translation po/nb.po | 72 ++++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) commit 79c8f3f3bbaa41ed018cb06399f55b719df0d1b4 Author: Praveen Illa Date: Fri Mar 23 15:05:48 2012 +0530 Updated Telugu Translation po/te.po | 374 ++++++++++++++++++++++++++------------------------------------- 1 file changed, 152 insertions(+), 222 deletions(-) commit afbf8eef408b60a62fbffb75821546d6e689d55c Author: Nguyį»…n ThĆ”i Ngį»c Duy Date: Thu Mar 22 10:25:05 2012 +0700 Updated Vietnamese translation po/vi.po | 51 +++++++++++++++++++++++++-------------------------- 1 file changed, 25 insertions(+), 26 deletions(-) commit 8b2c01c75b5826cbb63e2a0d717548e77d557011 Author: Nguyį»…n ThĆ”i Ngį»c Duy Date: Thu Mar 22 10:03:39 2012 +0700 po/vi: import from Damned Lies po/vi.po | 302 ++++++++++++++++++--------------------------------------------- 1 file changed, 83 insertions(+), 219 deletions(-) commit bb5e8cafaeee9f4de25ab65de97497513ae67ccb Author: Duarte Loreto Date: Wed Mar 21 23:55:49 2012 +0000 Updated Portuguese translation po/pt.po | 6033 ++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 3340 insertions(+), 2693 deletions(-) commit 473cec42ebc87d9e28204c8b8458c8105e773956 Author: Aurimas Černius Date: Thu Mar 22 00:01:07 2012 +0200 Updated Lithuanian translation po/lt.po | 3359 ++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 1864 insertions(+), 1495 deletions(-) commit e6061221713a885f0096603d5cc0977d0be163a0 Author: Timo Jyrinki Date: Wed Mar 21 18:14:12 2012 +0200 Updated Finnish translation by Jiri Grƶnroos. po/fi.po | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) commit fb84f3dcd3ff7e5bedc6ba76844d33afed259e25 Author: Khaled Hosny Date: Wed Mar 21 17:12:30 2012 +0200 Updated Arabic translation po/ar.po | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) commit de0f8fd5e7531ecded0d9976d5e84aa24524a3e3 Author: Khaled Hosny Date: Wed Mar 21 17:08:38 2012 +0200 Typo po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit cddee53cf292052c2ab2e502f9e807a008bf824d Author: Automatic Mirroring Date: Wed Mar 21 13:15:05 2012 +0000 Update Simplified Chinese translation. po/zh_CN.po | 466 +++++++++++++++++++++++++++++++----------------------------- 1 file changed, 244 insertions(+), 222 deletions(-) commit a581b35e7f12a3ef45481f762a60350020ef779d Author: Nilamdyuti Goswami Date: Wed Mar 21 17:49:07 2012 +0530 Assamese translation updated po/as.po | 1135 +++++++++++++++++++++++++++++--------------------------------- 1 file changed, 522 insertions(+), 613 deletions(-) commit 5c999a17f14c0311eb766f4515fbf0a560b94365 Author: Nilamdyuti Goswami Date: Wed Mar 21 13:23:29 2012 +0530 Assamese translation updated po/as.po | 359 +++++++++++++++++++++++++-------------------------------------- 1 file changed, 143 insertions(+), 216 deletions(-) commit 9a11f006924d2d91bd7fa86e15769e04c35abdf8 Author: Timo Jyrinki Date: Tue Mar 20 18:55:22 2012 +0200 Updated Finnish translation po/fi.po | 482 ++++++++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 309 insertions(+), 173 deletions(-) commit c5d8731fb4cff70d6df938227957abad99217fb8 Author: Nilamdyuti Goswami Date: Tue Mar 20 20:59:02 2012 +0530 Assamese translation updated po/as.po | 601 ++++++++++++++++++++++++++------------------------------------- 1 file changed, 250 insertions(+), 351 deletions(-) commit b5ced40020b1298666eb6c1cddd5c4060612ac18 Author: ManojKumar Giri Date: Tue Mar 20 13:56:02 2012 +0530 Updated Odia Translation po/or.po | 9060 ++++++++++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 6159 insertions(+), 2901 deletions(-) commit 14aba24c26e7c87dc8c910e542e96ab4170b81de Author: Rajesh Ranjan Date: Tue Mar 20 13:23:00 2012 +0530 hindi translation by Chandan Kumar po/hi.po | 6239 +++++++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 3949 insertions(+), 2290 deletions(-) commit 38bc6a745337a6b3604b1cfe7e261078b418122b Author: Nilamdyuti Goswami Date: Mon Mar 19 20:58:50 2012 +0530 Assamese translation updated po/as.po | 489 ++++++++++++++++++++++++++------------------------------------- 1 file changed, 205 insertions(+), 284 deletions(-) commit d1cdbd2fd3bb8d10dffda270493b5edb19d11dfe Author: Nilamdyuti Goswami Date: Mon Mar 19 18:23:14 2012 +0530 Assamese translation updated po/as.po | 9309 ++++++++++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 6340 insertions(+), 2969 deletions(-) commit 5f614d6361147916365e75cd8c44a2fdb7cb7c1b Author: Richard Hughes Date: Mon Mar 19 09:49:32 2012 +0000 3.3.92 NEWS | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ configure.ac | 2 +- 2 files changed, 62 insertions(+), 1 deletion(-) commit ed4f55db3c6b3af191bc65cc7a4bbcfd5d3a3dae Author: Kenneth Nielsen Date: Mon Mar 19 10:04:33 2012 +0100 Updated Danish translation po/da.po | 321 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 166 insertions(+), 155 deletions(-) commit ea3993c40ed906b832d02876e1f719d4b58d16b4 Author: Carles Ferrando Date: Mon Mar 19 01:16:58 2012 +0100 [l10n]Updated Catalan (Valencian) translation po/ca@valencia.po | 6057 +++++++++++++++++++++++++++++------------------------ 1 file changed, 3303 insertions(+), 2754 deletions(-) commit 536faec936c04b1368e1afdbedb438ca183ab70e Author: Joan Duran Date: Mon Mar 19 01:16:48 2012 +0100 [l10n] Updated Catalan translation po/ca.po | 6209 ++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 3450 insertions(+), 2759 deletions(-) commit 967d9ae1b80d5f212461eb32dd65778127fbc81f Author: Daniel Korostil Date: Sun Mar 18 17:26:18 2012 +0200 Uploaded Ukranian po/uk.po | 126 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 63 insertions(+), 63 deletions(-) commit 3359d0e5abc782cdbd629fd74552f797687a9dce Author: Mario BlƤttermann Date: Sun Mar 18 02:14:30 2012 +0100 [l10n] Updated German translation po/de.po | 3442 ++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 1889 insertions(+), 1553 deletions(-) commit 1cd12c0f3bb68a9f4957817ec16681092a9f819f Author: Abderrahim Kitouni Date: Sat Mar 17 17:54:51 2012 +0100 Fix a small error in Arabic translation po/ar.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 83c3cf20b70923d4c9dbd2fb43713cc860d8aa70 Author: Pin-hsien Li Date: Sat Mar 17 14:16:34 2012 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) po/zh_HK.po | 357 +++++++++++++++++++++++++++++++----------------------------- po/zh_TW.po | 357 +++++++++++++++++++++++++++++++----------------------------- 2 files changed, 368 insertions(+), 346 deletions(-) commit c31f2eed794ed2be4c17ca7c1c85eb41eebe930d Author: Richard Hughes Date: Fri Mar 16 12:45:13 2012 +0000 color: Prevent a crash when hotplugging monitors when the color panel is open panels/color/cc-color-panel.c | 8 ++++++++ 1 file changed, 8 insertions(+) commit 2b1fa69453859c36b9352aa49dd873f3742d535a Author: Praveen Arimbrathodiyil Date: Fri Mar 16 18:06:29 2012 +0530 Malayalam translation updated by Sadiq and me po/ml.po | 8636 ++++++++++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 5848 insertions(+), 2788 deletions(-) commit ac8ca99e6515b272a964109db210164c4a8d0f47 Author: Arash Mousavi Date: Thu Mar 15 20:23:57 2012 +0330 Updated Persian Translations po/fa.po | 6139 +++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 3448 insertions(+), 2691 deletions(-) commit 0727c1e9301e151c2ce368952c1e32757f4186a2 Author: Khaled Hosny Date: Thu Mar 15 18:10:27 2012 +0200 Updated Arabic translation po/ar.po | 2483 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 1235 insertions(+), 1248 deletions(-) commit df164193bbdad03ab99839097b208b20f315bf7f Author: Richard Hughes Date: Thu Mar 15 11:59:04 2012 +0000 color: Don't allow the user to add existing profiles to devices The existing code prevents the user from adding the existing default device profile to the device again, but to prevent a warning message we need to prevent the user from selecting *any* of the profiles already assigned to the device. panels/color/cc-color-panel.c | 36 +++++++++++++++++++++++++++--------- 1 file changed, 27 insertions(+), 9 deletions(-) commit eb42930f97271cb611fde7a73b47cf71ddfc9684 Author: Yuri Myasoedov Date: Thu Mar 15 14:27:34 2012 +0400 Fixed Russian translation po/ru.po | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) commit 5d4510504331f1a22311c6979fd98f60f7d14891 Author: Sweta Kothari Date: Thu Mar 15 13:05:10 2012 +0530 Updated Gujarati Translations po/gu.po | 6384 ++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 3553 insertions(+), 2831 deletions(-) commit e07394eee15b645c1140b9694a02e6fed7aebd3f Author: A S Alam Date: Thu Mar 15 06:48:20 2012 +0530 update Punjabi Translation po/pa.po | 414 +++++++++++++++++++++------------------------------------------ 1 file changed, 139 insertions(+), 275 deletions(-) commit b1741edc0876fbada7a1a961f476ed80f58856d2 Author: Enrico Nicoletto Date: Wed Mar 14 17:45:31 2012 -0300 Updated Brazilian Portuguese translation po/pt_BR.po | 6336 ++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 3457 insertions(+), 2879 deletions(-) commit 4db95ec07f3f43e72c40358de04d0b5a8abe8eef Author: Gabor Kelemen Date: Wed Mar 14 02:22:27 2012 +0100 Updated Hungarian translation po/hu.po | 5827 +++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 3268 insertions(+), 2559 deletions(-) commit f7d409964dcee95171c93c36dec5b2223cf06966 Author: Rudolfs Mazurs Date: Tue Mar 13 23:20:31 2012 +0200 Updated Latvian translation. po/lv.po | 6681 ++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 3860 insertions(+), 2821 deletions(-) commit 3964582635d229662a88ebf7c2aa6e31d6dc7534 Author: Peter Hutterer Date: Tue Mar 13 19:08:38 2012 +0100 mouse: Don't enable two-finger scrolling based on width Reverts part of 109b36919921d757b93b91e8082620078608967e Good idea in principle, albeit the hardware gets in our way. In synaptics 1.4 two-finger emulation was enabled by default on devices that reported finger width but had to since revert this. The hardware doesn't really separate width and pressure, so a hard tap off a finger gives a high width, a wide finger gives a high pressure on light touches. We got spurious right-click presses when two-finger emulation was enabled. Now we have the control-center providing a checkbox for two-finger emulation but it doesn't enable emulation, which to the users appears as if two-finger scrolling is broken (https://bugzilla.redhat.com/show_bug.cgi?id=738123). We now disable the checkbox again for hardware that doesn't do two-fingers. it's not reliable and we're likely to see further bugs when the spurious right clicks take effect https://bugzilla.gnome.org/show_bug.cgi?id=661963 panels/mouse/gnome-mouse-properties.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 75ea35d9393bef35575b56aa70785d5cc54310f3 Author: Kjartan Maraas Date: Mon Mar 12 18:50:00 2012 +0100 Updated Norwegian bokmĆ„l translation po/nb.po | 265 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 137 insertions(+), 128 deletions(-) commit bd41bd788be0f999e95ddb9a7b1ea8f507733646 Author: Bastien Nocera Date: Mon Mar 12 16:37:53 2012 +0100 datetime: Fix broken time setting on 32-bit machines time_t might be a 32-bit integer, which wouldn't be big enough to contain the number of microseconds since Epoch (since it can only fit the number of seconds from Epoch until 2038). https://bugzilla.redhat.com/show_bug.cgi?id=795792 panels/datetime/cc-datetime-panel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit a0d0da46b2e218848c154f3af99d9376c734ed80 Author: Timo Jyrinki Date: Mon Mar 12 11:03:00 2012 +0200 Finnish translation update from http://l10n.laxstrom.name/wiki/Gnome_3.4 translation sprint po/fi.po | 3745 ++++++++++++++------------------------------------------------ 1 file changed, 824 insertions(+), 2921 deletions(-) commit b0071c9a63eb5e066461ef10459d32a7e2a89a25 Author: ŠœŠøŃ€Š¾ŃŠ»Š°Š² ŠŠøŠŗŠ¾Š»ŠøŃ› Date: Sat Mar 10 23:05:07 2012 +0100 Updated Serbian translation po/sr.po | 231 +++++++++++++++++++++++++++++---------------------------- po/sr@latin.po | 231 +++++++++++++++++++++++++++++---------------------------- 2 files changed, 234 insertions(+), 228 deletions(-) commit 769aef9a5d0f2c953eda5bc2733350d487e38764 Author: Ibrahim Saed Date: Sat Mar 10 19:56:15 2012 +0100 Updated Arabic translation po/ar.po | 5740 ++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 3129 insertions(+), 2611 deletions(-) commit 7c3943a093523151707200044ef6fd37e778ce03 Author: Seong-ho, Cho Date: Sat Mar 10 22:17:54 2012 +0900 Updated Korean translation po/ko.po | 6554 ++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 3619 insertions(+), 2935 deletions(-) commit 5e78f3185c6bc701970ea7d5a951ec969ce27601 Author: Richard Hughes Date: Sat Mar 10 09:03:26 2012 +0000 color: Do not select the device in the treeview if it changes This prevents the treeview 'flickering' when going from selected device1->profile1 to device2->profile1. panels/color/cc-color-panel.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) commit 57fa4dcc186d6fcd718f9c1bb08e657133378646 Author: Bruno Brouard Date: Fri Mar 9 22:49:20 2012 +0100 Updated French translation po/fr.po | 5912 ++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 3063 insertions(+), 2849 deletions(-) commit c8d4af99b72fb8537f2da50357ab58d7844c76d1 Author: Daniel Korostil Date: Fri Mar 9 15:43:21 2012 +0200 Uploaded Ukranian po/uk.po | 5972 ++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 3448 insertions(+), 2524 deletions(-) commit 2b19f30b42fb3f33a069f8fc1ba59a2d736d3a59 Author: Nguyį»…n ThĆ”i Ngį»c Duy Date: Fri Mar 9 11:33:17 2012 +0700 Updated Vietnamese translation po/vi.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) commit cbdcc60a8531c0a03e8ca19927b3a264cd48cd64 Author: Praveen Illa Date: Fri Mar 9 01:51:07 2012 +0530 Updated Telugu Translation po/te.po | 6200 ++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 3372 insertions(+), 2828 deletions(-) commit 96b404c53772a00f9a2efc5a5c074a448599a513 Author: Bastien Nocera Date: Thu Mar 8 17:13:50 2012 +0100 user-accounts: Minimum of 200 width for the users list https://bugzilla.gnome.org/show_bug.cgi?id=671480 panels/user-accounts/um-user-panel.c | 3 +++ 1 file changed, 3 insertions(+) commit 48389f283a61f0890f1f89f7f265417bb9bc89eb Author: Colin Walters Date: Thu Mar 8 10:26:21 2012 -0500 build: Add missing git.mk to panels/color/icons panels/color/icons/16x16/Makefile.am | 2 ++ panels/color/icons/22x22/Makefile.am | 2 ++ panels/color/icons/24x24/Makefile.am | 2 ++ panels/color/icons/256x256/Makefile.am | 2 ++ panels/color/icons/32x32/Makefile.am | 2 ++ panels/color/icons/48x48/Makefile.am | 2 ++ panels/color/icons/64x64/Makefile.am | 2 ++ panels/color/icons/Makefile.am | 2 ++ panels/color/icons/scalable/Makefile.am | 1 + 9 files changed, 17 insertions(+) commit c48536c10262c39f9a3cb710a64b09f793cd523d Author: Bastien Nocera Date: Thu Mar 8 16:16:54 2012 +0100 universal-access: Hide zoom options when not in shell https://bugzilla.gnome.org/show_bug.cgi?id=671386 panels/universal-access/cc-ua-panel.c | 35 +++++++++++++++++++++++++++++++++++ panels/universal-access/uap.ui | 2 +- 2 files changed, 36 insertions(+), 1 deletion(-) commit d378dbae4880cc9cc9f47fa94a6b4fcb90036d44 Author: Colin Walters Date: Thu Mar 8 10:07:56 2012 -0500 build: Add missing include of git.mk in user-accounts/data/icons panels/user-accounts/data/icons/Makefile.am | 1 + 1 file changed, 1 insertion(+) commit 94555eadc83c0dc75aa2af6f3b2ad1055b8a71b7 Author: Bastien Nocera Date: Thu Mar 8 13:53:20 2012 +0100 common: Look harder for some languages It's fairly common to have de rather than de_DE translations, ditto for French and Spanish that share most of the vocabulary. panels/common/cc-common-language.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) commit 048a9bc85e594eeeac85dd6dc21815eae0c1be99 Author: Bastien Nocera Date: Wed Mar 7 17:13:55 2012 +0100 display: Sort resolutions by width first https://bugzilla.gnome.org/show_bug.cgi?id=671465 panels/display/cc-display-panel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 57bba2631110359b8eb5c7eb558da6f18599a84e Author: Bastien Nocera Date: Wed Mar 7 18:27:25 2012 +0100 region: Fix possible crasher with empty layout panels/region/gnome-region-panel-system.c | 3 +++ 1 file changed, 3 insertions(+) commit 22ac9fa06bc6c4e797e80030dff4a93ff242d473 Author: Bastien Nocera Date: Wed Mar 7 18:12:12 2012 +0100 region: Don't make the dialogue overly wide https://bugzilla.gnome.org/show_bug.cgi?id=670667 panels/region/gnome-region-panel.ui | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) commit f75c06b9794daec6716ae7a83b5b91f52d098570 Author: Bastien Nocera Date: Wed Mar 7 17:07:31 2012 +0100 display: Use symbolic name panels/display/cc-display-panel.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) commit 6b6e17788ea96604ae22ccb59eb9f2b5f02fe63f Author: Bastien Nocera Date: Tue Mar 6 14:59:46 2012 +0100 display: Simplify add_key() calls and function panels/display/cc-display-panel.c | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) commit dd7c5fe67ac3bd0343674d8fe55821aeaa3995a1 Author: Bruce Cowan Date: Wed Mar 7 16:01:20 2012 +0000 Updated British English translation po/en_GB.po | 5951 +++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 3294 insertions(+), 2657 deletions(-) commit 08cf361129d46f3cf881ee7c1594c781178a2a49 Author: Yuri Myasoedov Date: Wed Mar 7 13:58:10 2012 +0400 Updated Russian translation po/ru.po | 349 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 169 insertions(+), 180 deletions(-) commit fb25a7857baa292f7610fe6c874a181d2b515dfa Author: Alexander Shopov Date: Wed Mar 7 06:47:21 2012 +0200 Updated Bulgarian translation po/bg.po | 230 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 115 insertions(+), 115 deletions(-) commit 09472ead247a691838621cc696a9a766f33bc47d Author: Nguyį»…n ThĆ”i Ngį»c Duy Date: Wed Mar 7 11:32:18 2012 +0700 po/vi.po: fix Bluetooth "visibility" translations po/vi.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) commit ecabd158711b2cac43a489855a0c471a7f7bd12c Author: Jiro Matsuzawa Date: Wed Mar 7 10:47:22 2012 +0900 [l10n] Update Japanese translation po/ja.po | 3245 ++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 1763 insertions(+), 1482 deletions(-) commit 97451c84e9516489102fd55d2736fd78b8e19644 Author: Matej Urbančič Date: Tue Mar 6 15:39:31 2012 +0100 Updated Slovenian translation po/sl.po | 3066 +++++++++++++++++++++++++++++++++----------------------------- 1 file changed, 1644 insertions(+), 1422 deletions(-) commit daa86f15bce4277def58eb653b91496785b2d474 Author: Bastien Nocera Date: Mon Mar 5 19:30:35 2012 +0000 3.3.91 NEWS | 41 +++++++++++++++++++++++++++++++++++++++++ configure.ac | 2 +- 2 files changed, 42 insertions(+), 1 deletion(-) commit b328274e0eb56e2e5a056a5d8a7de81281178ce6 Author: Bastien Nocera Date: Mon Mar 5 19:05:08 2012 +0000 build: Require newest gnome-settings-daemon configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 460d2574831a1fff186cc677c0417b794fb232e2 Author: Richard Hughes Date: Mon Mar 5 18:59:48 2012 +0000 info: Fix the updates state machine Resolves: https://bugzilla.gnome.org/show_bug.cgi?id=671393 panels/info/cc-info-panel.c | 7 +++++++ 1 file changed, 7 insertions(+) commit 13717dce8dd2ba4f546acd8d23348cbce2eeabc6 Author: Bastien Nocera Date: Mon Mar 5 18:32:52 2012 +0000 wacom: Update from gnome-settings-daemon panels/wacom/gsd-wacom-device.c | 38 ++++++++++++++++++++++---------------- panels/wacom/gsd-wacom-device.h | 1 + 2 files changed, 23 insertions(+), 16 deletions(-) commit bdb09755c8de06ed98050d57ee3ffc0aeca04d98 Author: Bastien Nocera Date: Mon Mar 5 18:27:18 2012 +0000 info: Remove unused icons In GNOME 3.2, the icons were hidden. Some changes in GTK+ mean that the icons are now visible. As we don't use them, remove them altogether. https://bugzilla.gnome.org/show_bug.cgi?id=671376 panels/info/cc-info-panel.c | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) commit 0c464812bbc7f379ebd40af13b12c0701fadce7e Author: Mattias PƵldaru Date: Mon Mar 5 18:20:17 2012 +0200 [l10n] Updated Estonian translation po/et.po | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) commit 7e5c60a81822a448087cf3d61f50ae4ca2b63a80 Author: Bastien Nocera Date: Mon Mar 5 14:15:16 2012 +0000 info: Avoid empty entries in "Other types" dialogue https://bugzilla.gnome.org/show_bug.cgi?id=671358 panels/info/cc-info-panel.c | 5 +++++ 1 file changed, 5 insertions(+) commit c5157bb545eb9e650b28bc3c1353c94970c6ffec Author: Matthias Clasen Date: Mon Mar 5 14:01:44 2012 +0000 info: handle dialog closing consistently The 'Other media' dialog is just hidden when the close button is clicked (so that it can be shown again), but when closing it with the Escape key, it gets destroyed and an attempt to bring it up again just shows a sad empty little square. https://bugzilla.gnome.org/show_bug.cgi?id=659948 panels/info/cc-info-panel.c | 4 ++++ 1 file changed, 4 insertions(+) commit d5afe63f898c54e13a5802038db62029d700c482 Author: Bastien Nocera Date: Thu Mar 1 18:02:00 2012 +0000 common: Add more debug to list-languages So we can print the name of the locales listed on the command-line. panels/common/list-languages.c | 11 +++++++++++ 1 file changed, 11 insertions(+) commit e3c3380feaf11e84b4a7f4629afbfec120ca1aa2 Author: Bastien Nocera Date: Thu Mar 1 17:54:13 2012 +0000 common: Fix crashes for incomplete locales By ignoring locales without language codes, or territory. https://bugzilla.gnome.org/show_bug.cgi?id=658551 panels/common/gdm-languages.c | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) commit 242bb936103b567210d7f67117e3f5003746e861 Author: Piotr Drąg Date: Sun Mar 4 22:42:14 2012 +0100 Updated Polish translation po/pl.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) commit ccf5376ec0ed668b4daab394cfc2f5c523c07875 Author: Fran DiĆ©guez Date: Sun Mar 4 20:15:58 2012 +0100 Updated Galician translations po/gl.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) commit 4a5cac0bfcfbd779e2d6503fff728b61cfa68083 Author: Fran DiĆ©guez Date: Sun Mar 4 19:58:48 2012 +0100 Updated Galician translations po/gl.po | 267 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 140 insertions(+), 127 deletions(-) commit 9a830b30964c0b3fe06a2c12210b1f1ac2ab10d5 Author: Daniel Mustieles Date: Sun Mar 4 19:28:32 2012 +0100 Updated Spanish translation po/es.po | 164 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 84 insertions(+), 80 deletions(-) commit 6c3a11207af22f884f9ddbd608dc6d5ff7b43035 Author: Inaki Larranaga Murgoitio Date: Sun Mar 4 17:08:10 2012 +0100 Updated Basque language po/eu.po | 6005 ++++++++++++++++++++++++++++++++++++++------------------------ 1 file changed, 3735 insertions(+), 2270 deletions(-) commit ce9bdda6510ca7ae995b11b9d7af7b234b11fb50 Author: Ihar Hrachyshka Date: Sun Mar 4 14:33:36 2012 +0300 Updated Belarusian translation. po/be.po | 152 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 76 insertions(+), 76 deletions(-) commit 1091c88e8a4442f29de41e02728a8df3043f2a7f Author: Javier Jardón Date: Thu Mar 1 14:34:10 2012 +0000 power: reference to "Brightness and Lock" panel, not "Screen" The "Screen" panel has been renamed to "Brightness and Lock" Fixes https://bugzilla.gnome.org/show_bug.cgi?id=670567 Signed-off-by: Richard Hughes panels/power/cc-power-panel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit cd9bae5967f4ff3e1e479e13440a91e8e7c1b73a Author: Piotr Drąg Date: Sat Mar 3 22:35:46 2012 +0100 Updated Polish translation po/pl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit f451ef818cb0860d14c11941116c46b259a7cc68 Author: Piotr Drąg Date: Sat Mar 3 22:25:44 2012 +0100 Updated Polish translation po/pl.po | 6063 ++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 3291 insertions(+), 2772 deletions(-) commit af6c80ec15c52f1b01279c0e24365b86a2904c5c Author: Nguyį»…n ThĆ”i Ngį»c Duy Date: Sat Mar 3 21:04:38 2012 +0700 Updated Vietnamese translation po/vi.po | 530 +++++++++++++++++++++++++-------------------------------------- 1 file changed, 208 insertions(+), 322 deletions(-) commit 8c6a1f974d95514957133bf50ec8c19d80ced8f9 Author: Nguyį»…n ThĆ”i Ngį»c Duy Date: Sat Mar 3 11:19:07 2012 +0700 po/vi.po: import from Damned Lies po/vi.po | 6393 +++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 3637 insertions(+), 2756 deletions(-) commit 74730321f936f0d05f814746008dd6ab5a9f9603 Author: Yaron Shahrabani Date: Fri Mar 2 14:08:37 2012 +0200 Updated Hebrew translation. po/he.po | 254 +++++++++++++++++++++++++++++++++------------------------------ 1 file changed, 134 insertions(+), 120 deletions(-) commit 74450e3acdf65d728ecbba9f82085e406040f2d0 Author: Bastien Nocera Date: Thu Mar 1 17:11:14 2012 +0000 user-accounts: Fix sizing problems in user list About half-way through the user list, vertically, the user's name would get cut off. Showing the treeview headers showed that the "automatic login" pixbuf was added in a separate column. To make sizing easier, and avoid the user's name being cut off half-way through, add the "automatic-login" icon in the first column. https://bugzilla.gnome.org/show_bug.cgi?id=659998 panels/user-accounts/um-user-panel.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) commit 72e1e7aa49fb927b21a8f82c23d8f6f88d46593f Author: Mattias PƵldaru Date: Thu Mar 1 18:04:38 2012 +0200 [l10n] Updated Estonian translation po/et.po | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) commit 49f9de6182ff19dbfc13187dcca2fa5252c81a9f Author: Michael Terry Date: Thu Mar 1 16:00:09 2012 +0000 display: Fix crash when the screen setup changes after the Display panel has been closed. https://bugzilla.gnome.org/show_bug.cgi?id=670570 panels/display/cc-display-panel.c | 2 ++ 1 file changed, 2 insertions(+) commit 3844923a4bf42fe66bc5fed623152a5c4e4d3519 Author: Bastien Nocera Date: Thu Mar 1 10:25:34 2012 +0000 wacom: Fix crasher when XRandR isn't available Spotted by Olivier Fourdan panels/wacom/cc-wacom-mapping-panel.c | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) commit b97782616ee418b220c61ef41b9b62c4eb39b9ce Author: Cosimo Cecchi Date: Wed Feb 29 18:31:01 2012 -0500 network: fix huge inline toolbar icons Apparently GtkBuilder doesn't like too much True True 5 5 10 5 True True 1 0 True horizontal False True 0 True True False 0 True True False True True never automatic in True queue none True vertical True True automatic automatic in 1 True False view-grid-symbolic True 16 cinnamon-control-center-6.2.0/shell/cc-shell-category-view.h0000664000175000017500000000446614632072346022757 0ustar fabiofabio/* * Copyright (c) 2010 Intel, Inc. * * The Control Center is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * The Control Center is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. * * You should have received a copy of the GNU General Public License along * with the Control Center; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * * Author: Thomas Wood */ #ifndef _CC_SHELL_CATEGORY_VIEW_H #define _CC_SHELL_CATEGORY_VIEW_H #include #include "cc-shell-item-view.h" G_BEGIN_DECLS #define CC_TYPE_SHELL_CATEGORY_VIEW cc_shell_category_view_get_type() #define CC_SHELL_CATEGORY_VIEW(obj) \ (G_TYPE_CHECK_INSTANCE_CAST ((obj), \ CC_TYPE_SHELL_CATEGORY_VIEW, CcShellCategoryView)) #define CC_SHELL_CATEGORY_VIEW_CLASS(klass) \ (G_TYPE_CHECK_CLASS_CAST ((klass), \ CC_TYPE_SHELL_CATEGORY_VIEW, CcShellCategoryViewClass)) #define CC_IS_SHELL_CATEGORY_VIEW(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \ CC_TYPE_SHELL_CATEGORY_VIEW)) #define CC_IS_SHELL_CATEGORY_VIEW_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE ((klass), \ CC_TYPE_SHELL_CATEGORY_VIEW)) #define CC_SHELL_CATEGORY_VIEW_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), \ CC_TYPE_SHELL_CATEGORY_VIEW, CcShellCategoryViewClass)) typedef struct _CcShellCategoryView CcShellCategoryView; typedef struct _CcShellCategoryViewClass CcShellCategoryViewClass; typedef struct _CcShellCategoryViewPrivate CcShellCategoryViewPrivate; struct _CcShellCategoryView { GtkFrame parent; CcShellCategoryViewPrivate *priv; }; struct _CcShellCategoryViewClass { GtkFrameClass parent_class; }; GType cc_shell_category_view_get_type (void) G_GNUC_CONST; GtkWidget *cc_shell_category_view_new (const gchar *name, GtkTreeModel *model); CcShellItemView* cc_shell_category_view_get_item_view (CcShellCategoryView *self); G_END_DECLS #endif /* _CC_SHELL_CATEGORY_VIEW_H */ cinnamon-control-center-6.2.0/shell/cc-shell-category-view.c0000664000175000017500000001503214632072346022741 0ustar fabiofabio/* * Copyright (c) 2010 Intel, Inc. * * The Control Center is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * The Control Center is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. * * You should have received a copy of the GNU General Public License along * with the Control Center; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * * Author: Thomas Wood */ #include "cc-shell-category-view.h" #include "cc-shell-item-view.h" #include "cc-shell.h" #include "cc-shell-model.h" G_DEFINE_TYPE (CcShellCategoryView, cc_shell_category_view, GTK_TYPE_FRAME) #define SHELL_CATEGORY_VIEW_PRIVATE(o) \ (G_TYPE_INSTANCE_GET_PRIVATE ((o), CC_TYPE_SHELL_CATEGORY_VIEW, CcShellCategoryViewPrivate)) enum { PROP_NAME = 1, PROP_MODEL }; struct _CcShellCategoryViewPrivate { gchar *name; GtkTreeModel *model; GtkWidget *iconview; }; static void cc_shell_category_view_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) { CcShellCategoryViewPrivate *priv = CC_SHELL_CATEGORY_VIEW (object)->priv; switch (property_id) { case PROP_NAME: g_value_set_string (value, priv->name); break; case PROP_MODEL: g_value_set_object (value, priv->model); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } } static void cc_shell_category_view_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) { CcShellCategoryViewPrivate *priv = CC_SHELL_CATEGORY_VIEW (object)->priv; switch (property_id) { case PROP_NAME: priv->name = g_value_dup_string (value); break; case PROP_MODEL: priv->model = g_value_dup_object (value); break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } } static void cc_shell_category_view_dispose (GObject *object) { CcShellCategoryViewPrivate *priv = CC_SHELL_CATEGORY_VIEW (object)->priv; if (priv->model) { g_object_unref (priv->model); priv->model = NULL; } G_OBJECT_CLASS (cc_shell_category_view_parent_class)->dispose (object); } static void cc_shell_category_view_finalize (GObject *object) { CcShellCategoryViewPrivate *priv = CC_SHELL_CATEGORY_VIEW (object)->priv; if (priv->name) { g_free (priv->name); priv->name = NULL; } G_OBJECT_CLASS (cc_shell_category_view_parent_class)->finalize (object); } static void cc_shell_category_view_constructed (GObject *object) { CcShellCategoryViewPrivate *priv = CC_SHELL_CATEGORY_VIEW (object)->priv; GtkWidget *iconview, *vbox; GtkCellRenderer *renderer; iconview = cc_shell_item_view_new (); gtk_icon_view_set_model (GTK_ICON_VIEW (iconview), priv->model); vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); renderer = gtk_cell_renderer_pixbuf_new (); g_object_set (renderer, "follow-state", TRUE, NULL); gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (iconview), renderer, FALSE); gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT (iconview), renderer, "pixbuf", COL_PIXBUF); gtk_icon_view_set_text_column (GTK_ICON_VIEW (iconview), COL_NAME); gtk_icon_view_set_item_width (GTK_ICON_VIEW (iconview), 100); cc_shell_item_view_update_cells (CC_SHELL_ITEM_VIEW (iconview)); /* create the header if required */ if (priv->name) { GtkWidget *label; PangoAttrList *attrs; label = gtk_label_new (priv->name); attrs = pango_attr_list_new (); pango_attr_list_insert (attrs, pango_attr_weight_new (PANGO_WEIGHT_BOLD)); gtk_label_set_attributes (GTK_LABEL (label), attrs); pango_attr_list_unref (attrs); gtk_frame_set_label_widget (GTK_FRAME (object), label); gtk_widget_show (label); } /* add the iconview to the vbox */ gtk_box_pack_start (GTK_BOX (vbox), iconview, FALSE, TRUE, 0); /* add the main vbox to the view */ gtk_container_add (GTK_CONTAINER (object), vbox); gtk_widget_show_all (vbox); priv->iconview = iconview; } static void cc_shell_category_view_class_init (CcShellCategoryViewClass *klass) { GParamSpec *pspec; GObjectClass *object_class = G_OBJECT_CLASS (klass); g_type_class_add_private (klass, sizeof (CcShellCategoryViewPrivate)); object_class->get_property = cc_shell_category_view_get_property; object_class->set_property = cc_shell_category_view_set_property; object_class->dispose = cc_shell_category_view_dispose; object_class->finalize = cc_shell_category_view_finalize; object_class->constructed = cc_shell_category_view_constructed; pspec = g_param_spec_string ("name", "Name", "Name of the category", NULL, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS); g_object_class_install_property (object_class, PROP_NAME, pspec); pspec = g_param_spec_object ("model", "Model", "Model of the category", GTK_TYPE_TREE_MODEL, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS); g_object_class_install_property (object_class, PROP_MODEL, pspec); } static void cc_shell_category_view_init (CcShellCategoryView *self) { self->priv = SHELL_CATEGORY_VIEW_PRIVATE (self); gtk_frame_set_shadow_type (GTK_FRAME (self), GTK_SHADOW_NONE); } GtkWidget * cc_shell_category_view_new (const gchar *name, GtkTreeModel *model) { return g_object_new (CC_TYPE_SHELL_CATEGORY_VIEW, "name", name, "model", model, NULL); } CcShellItemView* cc_shell_category_view_get_item_view (CcShellCategoryView *self) { return (CcShellItemView*) self->priv->iconview; } cinnamon-control-center-6.2.0/shell/cc-shell-nav-bar.h0000664000175000017500000000415114632072346021507 0ustar fabiofabio/* * Copyright 2012 Canonical * * The Control Center is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * The Control Center is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. * * You should have received a copy of the GNU General Public License along * with the Control Center; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * * Author: AurĆ©lien GĆ¢teau */ #ifndef _CC_SHELL_NAV_BAR_H #define _CC_SHELL_NAV_BAR_H #include G_BEGIN_DECLS #define CC_TYPE_SHELL_NAV_BAR cc_shell_nav_bar_get_type() #define CC_SHELL_NAV_BAR(obj) \ (G_TYPE_CHECK_INSTANCE_CAST ((obj), \ CC_TYPE_SHELL_NAV_BAR, CcShellNavBar)) #define CC_SHELL_NAV_BAR_CLASS(klass) \ (G_TYPE_CHECK_CLASS_CAST ((klass), \ CC_TYPE_SHELL_NAV_BAR, CcShellNavBarClass)) #define CC_IS_SHELL_NAV_BAR(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \ CC_TYPE_SHELL_NAV_BAR)) #define CC_IS_SHELL_NAV_BAR_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE ((klass), \ CC_TYPE_SHELL_NAV_BAR)) #define CC_SHELL_NAV_BAR_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), \ CC_TYPE_SHELL_NAV_BAR, CcShellNavBarClass)) typedef struct _CcShellNavBar CcShellNavBar; typedef struct _CcShellNavBarClass CcShellNavBarClass; typedef struct _CcShellNavBarPrivate CcShellNavBarPrivate; struct _CcShellNavBar { GtkBox parent; CcShellNavBarPrivate *priv; }; struct _CcShellNavBarClass { GtkBoxClass parent_class; }; GType cc_shell_nav_bar_get_type (void) G_GNUC_CONST; GtkWidget *cc_shell_nav_bar_new (void); void cc_shell_nav_bar_show_detail_button (CcShellNavBar *bar, const gchar *label); void cc_shell_nav_bar_hide_detail_button (CcShellNavBar *bar); G_END_DECLS #endif /* _CC_SHELL_NAV_BAR_H */ cinnamon-control-center-6.2.0/shell/libcinnamon-control-center.pc.in0000664000175000017500000000060414632072346024475 0ustar fabiofabioprefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ extensiondir=@libdir@/cinnamon-control-center-1/panels Name: libcinnamon-control-center Description: A library to create Cinnamon Control Center extensions Version: @VERSION@ Requires: glib-2.0 gio-2.0 gtk+-3.0 Libs: -L${libdir} -lcinnamon-control-center Cflags: -I${includedir}/cinnamon-control-center-1 cinnamon-control-center-6.2.0/shell/cc-shell.h0000664000175000017500000000665714632072346020200 0ustar fabiofabio/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- * * Copyright (c) 2010 Intel, Inc. * * The Control Center is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * The Control Center is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. * * You should have received a copy of the GNU General Public License along * with the Control Center; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * * Author: Thomas Wood */ #ifndef _CC_SHELL_H #define _CC_SHELL_H #include G_BEGIN_DECLS #define CC_TYPE_SHELL cc_shell_get_type() #define CC_SHELL(obj) \ (G_TYPE_CHECK_INSTANCE_CAST ((obj), \ CC_TYPE_SHELL, CcShell)) #define CC_SHELL_CLASS(klass) \ (G_TYPE_CHECK_CLASS_CAST ((klass), \ CC_TYPE_SHELL, CcShellClass)) #define CC_IS_SHELL(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \ CC_TYPE_SHELL)) #define CC_IS_SHELL_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE ((klass), \ CC_TYPE_SHELL)) #define CC_SHELL_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), \ CC_TYPE_SHELL, CcShellClass)) #define CC_SHELL_PANEL_EXTENSION_POINT "cinnamon-control-center-1" typedef struct _CcShell CcShell; typedef struct _CcShellClass CcShellClass; typedef struct _CcShellPrivate CcShellPrivate; /* cc-panel.h requires CcShell, so make sure they are defined first */ #include "cc-panel.h" /** * CcShell: * * The contents of this struct are private should not be accessed directly. */ struct _CcShell { /*< private >*/ GObject parent; CcShellPrivate *priv; }; /** * CcShellClass: * @set_active_panel_from_id: virtual function to set the active panel from an * id string * */ struct _CcShellClass { /*< private >*/ GObjectClass parent_class; /*< public >*/ /* vfuncs */ gboolean (*set_active_panel_from_id) (CcShell *shell, const gchar *id, GVariant *parameters, GError **error); GtkWidget * (*get_toplevel) (CcShell *shell); void (*embed_widget_in_header) (CcShell *shell, GtkWidget *widget); }; GType cc_shell_get_type (void) G_GNUC_CONST; CcPanel* cc_shell_get_active_panel (CcShell *shell); void cc_shell_set_active_panel (CcShell *shell, CcPanel *panel); gboolean cc_shell_set_active_panel_from_id (CcShell *shell, const gchar *id, GVariant *parameters, GError **error); GtkWidget * cc_shell_get_toplevel (CcShell *shell); void cc_shell_embed_widget_in_header (CcShell *shell, GtkWidget *widget); G_END_DECLS #endif /* _CC_SHELL_H */ cinnamon-control-center-6.2.0/shell/list-box-helper.h0000664000175000017500000000202714632072346021507 0ustar fabiofabio/* * Copyright (C) 2014 Red Hat, Inc * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * */ #include void cc_list_box_update_header_func (GtkListBoxRow *row, GtkListBoxRow *before, gpointer user_data); void cc_list_box_adjust_scrolling (GtkListBox *listbox); void cc_list_box_setup_scrolling (GtkListBox *listbox, guint num_rows); cinnamon-control-center-6.2.0/shell/cinnamon-control-center.c0000664000175000017500000011733314632072346023231 0ustar fabiofabio/* * Copyright (c) 2009, 2010 Intel, Inc. * Copyright (c) 2010 Red Hat, Inc. * * The Control Center is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * The Control Center is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. * * You should have received a copy of the GNU General Public License along * with the Control Center; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * * Author: Thomas Wood */ #include "config.h" #include "cinnamon-control-center.h" #include #include #include #include #include #include #define GMENU_I_KNOW_THIS_IS_UNSTABLE #include #include "cc-panel.h" #include "cc-shell.h" #include "cc-shell-category-view.h" #include "cc-shell-model.h" #include "cc-shell-nav-bar.h" G_DEFINE_TYPE (CinnamonControlCenter, cinnamon_control_center, CC_TYPE_SHELL) #define CONTROL_CENTER_PRIVATE(o) \ (G_TYPE_INSTANCE_GET_PRIVATE ((o), CINNAMON_TYPE_CONTROL_CENTER, CinnamonControlCenterPrivate)) #define W(b,x) GTK_WIDGET (gtk_builder_get_object (b, x)) /* Use a fixed width for the shell, since resizing horizontally is more awkward * for the user than resizing vertically * Both sizes are defined in https://live.gnome.org/Design/SystemSettings/ */ #define FIXED_WIDTH 740 #define UNITY_FIXED_WIDTH 850 #define FIXED_HEIGHT 650 #define SMALL_SCREEN_FIXED_HEIGHT 400 #define MIN_ICON_VIEW_HEIGHT 300 typedef enum { SMALL_SCREEN_UNSET, SMALL_SCREEN_TRUE, SMALL_SCREEN_FALSE } CcSmallScreen; struct _CinnamonControlCenterPrivate { GtkBuilder *builder; GtkWidget *notebook; GtkWidget *main_vbox; GtkWidget *scrolled_window; GtkWidget *search_scrolled; GtkWidget *current_panel_box; GtkWidget *current_panel; char *current_panel_id; GtkWidget *window; GtkWidget *search_entry; GtkWidget *lock_button; GPtrArray *custom_widgets; GtkWidget *nav_bar; GMenuTree *menu_tree; GtkListStore *store; GHashTable *category_views; GtkTreeModel *search_filter; GtkWidget *search_view; gchar *filter_string; guint32 last_time; GIOExtensionPoint *extension_point; gchar *default_window_title; gchar *default_window_icon; int monitor_num; CcSmallScreen small_screen; }; /* Notebook helpers */ static GtkWidget * notebook_get_selected_page (GtkWidget *notebook) { int curr; curr = gtk_notebook_get_current_page (GTK_NOTEBOOK (notebook)); if (curr == -1) return NULL; return gtk_notebook_get_nth_page (GTK_NOTEBOOK (notebook), curr); } static void notebook_select_page (GtkWidget *notebook, GtkWidget *page) { int i, num; num = gtk_notebook_get_n_pages (GTK_NOTEBOOK (notebook)); for (i = 0; i < num; i++) { if (gtk_notebook_get_nth_page (GTK_NOTEBOOK (notebook), i) == page) { gtk_notebook_set_current_page (GTK_NOTEBOOK (notebook), i); return; } } g_warning ("Couldn't select GtkNotebook page %p", page); } static void notebook_remove_page (GtkWidget *notebook, GtkWidget *page) { int i, num; num = gtk_notebook_get_n_pages (GTK_NOTEBOOK (notebook)); for (i = 0; i < num; i++) { if (gtk_notebook_get_nth_page (GTK_NOTEBOOK (notebook), i) == page) { gtk_notebook_remove_page (GTK_NOTEBOOK (notebook), i); return; } } g_warning ("Couldn't find GtkNotebook page to remove %p", page); } static void notebook_add_page (GtkWidget *notebook, GtkWidget *page) { gtk_notebook_append_page (GTK_NOTEBOOK (notebook), page, NULL); } static const gchar * get_icon_name_from_g_icon (GIcon *gicon) { const gchar * const *names; GtkIconTheme *icon_theme; int i; if (!G_IS_THEMED_ICON (gicon)) return NULL; names = g_themed_icon_get_names (G_THEMED_ICON (gicon)); icon_theme = gtk_icon_theme_get_default (); for (i = 0; names[i] != NULL; i++) { if (gtk_icon_theme_has_icon (icon_theme, names[i])) return names[i]; } return NULL; } static gboolean activate_panel (CinnamonControlCenter *shell, const gchar *id, GVariant *parameters, const gchar *desktop_file, const gchar *name, GIcon *gicon) { CinnamonControlCenterPrivate *priv = shell->priv; GType panel_type = G_TYPE_INVALID; GList *panels, *l; GtkWidget *box; const gchar *icon_name; /* check if there is an plugin that implements this panel */ panels = g_io_extension_point_get_extensions (priv->extension_point); if (!desktop_file) return FALSE; if (!id) return FALSE; for (l = panels; l != NULL; l = l->next) { GIOExtension *extension; const gchar *name; extension = l->data; name = g_io_extension_get_name (extension); if (!g_strcmp0 (name, id)) { panel_type = g_io_extension_get_type (extension); break; } } if (panel_type == G_TYPE_INVALID) { GKeyFile *key_file; /* It might be an external panel */ key_file = g_key_file_new (); if (g_key_file_load_from_file (key_file, desktop_file, G_KEY_FILE_NONE, NULL)) { gchar *command; command = g_key_file_get_string (key_file, G_KEY_FILE_DESKTOP_GROUP, G_KEY_FILE_DESKTOP_KEY_EXEC, NULL); if (command && command[0]) { g_spawn_command_line_async (command, NULL); g_free (command); } } g_key_file_free (key_file); return FALSE; } /* create the panel plugin */ priv->current_panel = g_object_new (panel_type, "shell", shell, "parameters", parameters, NULL); cc_shell_set_active_panel (CC_SHELL (shell), CC_PANEL (priv->current_panel)); gtk_widget_show (priv->current_panel); gtk_lock_button_set_permission (GTK_LOCK_BUTTON (priv->lock_button), cc_panel_get_permission (CC_PANEL (priv->current_panel))); box = gtk_alignment_new (0, 0, 1, 1); gtk_alignment_set_padding (GTK_ALIGNMENT (box), 6, 6, 6, 6); gtk_container_add (GTK_CONTAINER (box), priv->current_panel); gtk_widget_set_name (box, id); notebook_add_page (priv->notebook, box); /* switch to the new panel */ gtk_widget_show (box); notebook_select_page (priv->notebook, box); cc_shell_nav_bar_show_detail_button (CC_SHELL_NAV_BAR(shell->priv->nav_bar), name); /* set the title of the window */ icon_name = get_icon_name_from_g_icon (gicon); gtk_window_set_role (GTK_WINDOW (priv->window), id); gtk_window_set_title (GTK_WINDOW (priv->window), name); gtk_window_set_default_icon_name (icon_name); gtk_window_set_icon_name (GTK_WINDOW (priv->window), icon_name); priv->current_panel_box = box; return TRUE; } static void _shell_remove_all_custom_widgets (CinnamonControlCenterPrivate *priv) { GtkBox *box; GtkWidget *widget; guint i; /* remove from the header */ box = GTK_BOX (W (priv->builder, "topright")); for (i = 0; i < priv->custom_widgets->len; i++) { widget = g_ptr_array_index (priv->custom_widgets, i); gtk_container_remove (GTK_CONTAINER (box), widget); } g_ptr_array_set_size (priv->custom_widgets, 0); } static void shell_show_overview_page (CinnamonControlCenter *center) { CinnamonControlCenterPrivate *priv = center->priv; notebook_select_page (priv->notebook, priv->scrolled_window); if (priv->current_panel_box) notebook_remove_page (priv->notebook, priv->current_panel_box); priv->current_panel = NULL; priv->current_panel_box = NULL; if (priv->current_panel_id) { g_free (priv->current_panel_id); priv->current_panel_id = NULL; } /* clear the search text */ g_free (priv->filter_string); priv->filter_string = g_strdup (""); gtk_lock_button_set_permission (GTK_LOCK_BUTTON (priv->lock_button), NULL); /* reset window title and icon */ gtk_window_set_role (GTK_WINDOW (priv->window), NULL); gtk_window_set_title (GTK_WINDOW (priv->window), priv->default_window_title); gtk_window_set_default_icon_name (priv->default_window_icon); gtk_window_set_icon_name (GTK_WINDOW (priv->window), priv->default_window_icon); cc_shell_set_active_panel (CC_SHELL (center), NULL); /* clear any custom widgets */ _shell_remove_all_custom_widgets (priv); cc_shell_nav_bar_hide_detail_button (CC_SHELL_NAV_BAR (priv->nav_bar)); } void cinnamon_control_center_set_overview_page (CinnamonControlCenter *center) { shell_show_overview_page (center); } static void item_activated_cb (CcShellCategoryView *view, gchar *name, gchar *id, gchar *desktop_file, CinnamonControlCenter *shell) { GError *err = NULL; if (!cc_shell_set_active_panel_from_id (CC_SHELL (shell), id, NULL, &err)) { /* TODO: show message to user */ if (err) { g_warning ("Could not active panel \"%s\": %s", id, err->message); g_error_free (err); } } } static gboolean category_focus_out (GtkWidget *view, GdkEventFocus *event, CinnamonControlCenter *shell) { gtk_icon_view_unselect_all (GTK_ICON_VIEW (view)); return FALSE; } static gboolean category_focus_in (GtkWidget *view, GdkEventFocus *event, CinnamonControlCenter *shell) { GtkTreePath *path; if (!gtk_icon_view_get_cursor (GTK_ICON_VIEW (view), &path, NULL)) { path = gtk_tree_path_new_from_indices (0, -1); gtk_icon_view_set_cursor (GTK_ICON_VIEW (view), path, NULL, FALSE); } gtk_icon_view_select_path (GTK_ICON_VIEW (view), path); gtk_tree_path_free (path); return FALSE; } static GList * get_item_views (CinnamonControlCenter *shell) { GList *list, *l; GList *res; list = gtk_container_get_children (GTK_CONTAINER (shell->priv->main_vbox)); res = NULL; for (l = list; l; l = l->next) { if (!CC_IS_SHELL_CATEGORY_VIEW (l->data)) continue; res = g_list_append (res, cc_shell_category_view_get_item_view (CC_SHELL_CATEGORY_VIEW (l->data))); } g_list_free (list); return res; } static gboolean keynav_failed (GtkIconView *current_view, GtkDirectionType direction, CinnamonControlCenter *shell) { GList *views, *v; GtkIconView *new_view; GtkTreePath *path; GtkTreeModel *model; GtkTreeIter iter; gint col, c, dist, d; GtkTreePath *sel; gboolean res; res = FALSE; views = get_item_views (shell); for (v = views; v; v = v->next) { if (v->data == current_view) break; } if (direction == GTK_DIR_DOWN && v != NULL && v->next != NULL) { new_view = v->next->data; if (gtk_icon_view_get_cursor (current_view, &path, NULL)) { col = gtk_icon_view_get_item_column (current_view, path); gtk_tree_path_free (path); sel = NULL; dist = 1000; model = gtk_icon_view_get_model (new_view); gtk_tree_model_get_iter_first (model, &iter); do { path = gtk_tree_model_get_path (model, &iter); c = gtk_icon_view_get_item_column (new_view, path); d = ABS (c - col); if (d < dist) { if (sel) gtk_tree_path_free (sel); sel = path; dist = d; } else gtk_tree_path_free (path); } while (gtk_tree_model_iter_next (model, &iter)); gtk_icon_view_set_cursor (new_view, sel, NULL, FALSE); gtk_tree_path_free (sel); } gtk_widget_grab_focus (GTK_WIDGET (new_view)); res = TRUE; } if (direction == GTK_DIR_UP && v != NULL && v->prev != NULL) { new_view = v->prev->data; if (gtk_icon_view_get_cursor (current_view, &path, NULL)) { col = gtk_icon_view_get_item_column (current_view, path); gtk_tree_path_free (path); sel = NULL; dist = 1000; model = gtk_icon_view_get_model (new_view); gtk_tree_model_get_iter_first (model, &iter); do { path = gtk_tree_model_get_path (model, &iter); c = gtk_icon_view_get_item_column (new_view, path); d = ABS (c - col); if (d <= dist) { if (sel) gtk_tree_path_free (sel); sel = path; dist = d; } else gtk_tree_path_free (path); } while (gtk_tree_model_iter_next (model, &iter)); gtk_icon_view_set_cursor (new_view, sel, NULL, FALSE); gtk_tree_path_free (sel); } gtk_widget_grab_focus (GTK_WIDGET (new_view)); res = TRUE; } g_list_free (views); return res; } static gboolean model_filter_func (GtkTreeModel *model, GtkTreeIter *iter, CinnamonControlCenterPrivate *priv) { gchar *name, *description; gchar *needle, *haystack; gboolean result; gchar **keywords; gtk_tree_model_get (model, iter, COL_NAME, &name, COL_DESCRIPTION, &description, COL_KEYWORDS, &keywords, -1); if (!priv->filter_string || !name) { g_free (name); g_free (description); g_strfreev (keywords); return FALSE; } needle = g_utf8_casefold (priv->filter_string, -1); haystack = g_utf8_casefold (name, -1); result = (strstr (haystack, needle) != NULL); if (!result && description) { gchar *folded; folded = g_utf8_casefold (description, -1); result = (strstr (folded, needle) != NULL); g_free (folded); } if (!result && keywords) { gint i; gchar *keyword; for (i = 0; !result && keywords[i]; i++) { keyword = g_utf8_casefold (keywords[i], -1); result = strstr (keyword, needle) == keyword; g_free (keyword); } } g_free (name); g_free (haystack); g_free (needle); g_strfreev (keywords); return result; } static gboolean category_filter_func (GtkTreeModel *model, GtkTreeIter *iter, gchar *filter) { gchar *category; gboolean result; gtk_tree_model_get (model, iter, COL_CATEGORY, &category, -1); result = (g_strcmp0 (category, filter) == 0); g_free (category); return result; } static void search_entry_changed_cb (GtkEntry *entry, CinnamonControlCenter *center) { CinnamonControlCenterPrivate *priv = center->priv; char *str; /* if the entry text was set manually (not by the user) */ if (!g_strcmp0 (priv->filter_string, gtk_entry_get_text (entry))) return; /* Don't re-filter for added trailing or leading spaces */ str = g_strdup (gtk_entry_get_text (entry)); g_strstrip (str); if (!g_strcmp0 (str, priv->filter_string)) { g_free (str); return; } g_free (priv->filter_string); priv->filter_string = str; if (!g_strcmp0 (priv->filter_string, "")) { shell_show_overview_page (center); } else { gtk_tree_model_filter_refilter (GTK_TREE_MODEL_FILTER (priv->search_filter)); notebook_select_page (priv->notebook, priv->search_scrolled); } } static gboolean search_entry_key_press_event_cb (GtkEntry *entry, GdkEventKey *event, CinnamonControlCenterPrivate *priv) { if (event->keyval == GDK_KEY_Return) { GtkTreePath *path; path = gtk_tree_path_new_first (); priv->last_time = event->time; gtk_icon_view_item_activated (GTK_ICON_VIEW (priv->search_view), path); gtk_tree_path_free (path); return TRUE; } if (event->keyval == GDK_KEY_Escape) { gtk_entry_set_text (entry, ""); return TRUE; } return FALSE; } static void on_search_selection_changed (GtkTreeSelection *selection, CinnamonControlCenter *shell) { GtkTreeModel *model; GtkTreeIter iter; char *id = NULL; if (!gtk_tree_selection_get_selected (selection, &model, &iter)) return; gtk_tree_model_get (model, &iter, COL_ID, &id, -1); if (id) cc_shell_set_active_panel_from_id (CC_SHELL (shell), id, NULL, NULL); gtk_tree_selection_unselect_all (selection); g_free (id); } static void setup_search (CinnamonControlCenter *shell) { GtkWidget *search_view, *widget; GtkCellRenderer *renderer; GtkTreeViewColumn *column; CinnamonControlCenterPrivate *priv = shell->priv; g_return_if_fail (priv->store != NULL); /* create the search filter */ priv->search_filter = gtk_tree_model_filter_new (GTK_TREE_MODEL (priv->store), NULL); gtk_tree_model_filter_set_visible_func (GTK_TREE_MODEL_FILTER (priv->search_filter), (GtkTreeModelFilterVisibleFunc) model_filter_func, priv, NULL); /* set up the search view */ priv->search_view = search_view = gtk_tree_view_new (); gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (search_view), FALSE); gtk_tree_view_set_model (GTK_TREE_VIEW (search_view), GTK_TREE_MODEL (priv->search_filter)); renderer = gtk_cell_renderer_pixbuf_new (); g_object_set (renderer, "follow-state", TRUE, "xpad", 15, "ypad", 10, "stock-size", GTK_ICON_SIZE_DIALOG, NULL); column = gtk_tree_view_column_new_with_attributes ("Icon", renderer, "gicon", COL_GICON, NULL); gtk_tree_view_column_set_expand (column, FALSE); gtk_tree_view_append_column (GTK_TREE_VIEW (priv->search_view), column); renderer = gtk_cell_renderer_text_new (); g_object_set (renderer, "xpad", 0, NULL); column = gtk_tree_view_column_new_with_attributes ("Name", renderer, "text", COL_NAME, NULL); gtk_tree_view_column_set_expand (column, FALSE); gtk_tree_view_append_column (GTK_TREE_VIEW (priv->search_view), column); renderer = gtk_cell_renderer_text_new (); g_object_set (renderer, "xpad", 15, NULL); column = gtk_tree_view_column_new_with_attributes ("Description", renderer, "text", COL_DESCRIPTION, NULL); gtk_tree_view_column_set_expand (column, TRUE); gtk_tree_view_append_column (GTK_TREE_VIEW (priv->search_view), column); priv->search_scrolled = W (priv->builder, "search-scrolled-window"); gtk_container_add (GTK_CONTAINER (priv->search_scrolled), search_view); g_signal_connect (gtk_tree_view_get_selection (GTK_TREE_VIEW (priv->search_view)), "changed", G_CALLBACK (on_search_selection_changed), shell); } static void setup_lock (CinnamonControlCenter *shell) { CinnamonControlCenterPrivate *priv = shell->priv; priv->lock_button = W (priv->builder, "lock-button"); } static void maybe_add_category_view (CinnamonControlCenter *shell, const char *name) { GtkTreeModel *filter; GtkWidget *categoryview; if (g_hash_table_lookup (shell->priv->category_views, name) != NULL) return; if (g_hash_table_size (shell->priv->category_views) > 0) { GtkWidget *separator; separator = gtk_separator_new (GTK_ORIENTATION_HORIZONTAL); gtk_widget_set_margin_top (separator, 11); gtk_widget_set_margin_bottom (separator, 10); gtk_box_pack_start (GTK_BOX (shell->priv->main_vbox), separator, FALSE, FALSE, 0); gtk_widget_show (separator); } /* create new category view for this category */ filter = gtk_tree_model_filter_new (GTK_TREE_MODEL (shell->priv->store), NULL); gtk_tree_model_filter_set_visible_func (GTK_TREE_MODEL_FILTER (filter), (GtkTreeModelFilterVisibleFunc) category_filter_func, g_strdup (name), g_free); categoryview = cc_shell_category_view_new (name, filter); gtk_box_pack_start (GTK_BOX (shell->priv->main_vbox), categoryview, FALSE, TRUE, 0); g_signal_connect (cc_shell_category_view_get_item_view (CC_SHELL_CATEGORY_VIEW (categoryview)), "desktop-item-activated", G_CALLBACK (item_activated_cb), shell); gtk_widget_show (categoryview); g_signal_connect (cc_shell_category_view_get_item_view (CC_SHELL_CATEGORY_VIEW (categoryview)), "focus-in-event", G_CALLBACK (category_focus_in), shell); g_signal_connect (cc_shell_category_view_get_item_view (CC_SHELL_CATEGORY_VIEW (categoryview)), "focus-out-event", G_CALLBACK (category_focus_out), shell); g_signal_connect (cc_shell_category_view_get_item_view (CC_SHELL_CATEGORY_VIEW (categoryview)), "keynav-failed", G_CALLBACK (keynav_failed), shell); g_hash_table_insert (shell->priv->category_views, g_strdup (name), categoryview); } static void reload_menu (CinnamonControlCenter *shell) { GError *error; GDir *dir; const gchar *name; error = NULL; maybe_add_category_view (shell, "C Modules"); dir = g_dir_open (PANEL_DEF_DIR, 0, &error); if (error != NULL) { g_critical ("Could not read PANEL_DEF_DIR: %s", PANEL_DEF_DIR); g_error_free (error); return; } do { gchar *full_path; name = g_dir_read_name (dir); if (name == NULL) { break; } full_path = g_build_filename (PANEL_DEF_DIR, name, NULL); cc_shell_model_add_item (CC_SHELL_MODEL (shell->priv->store), full_path); g_free (full_path); } while (name != NULL); g_dir_close (dir); } static void on_menu_changed (GMenuTree *monitor, CinnamonControlCenter *shell) { gtk_list_store_clear (shell->priv->store); reload_menu (shell); } static void setup_model (CinnamonControlCenter *shell) { CinnamonControlCenterPrivate *priv = shell->priv; gtk_widget_set_margin_top (shell->priv->main_vbox, 8); gtk_widget_set_margin_bottom (shell->priv->main_vbox, 8); gtk_widget_set_margin_left (shell->priv->main_vbox, 12); gtk_widget_set_margin_right (shell->priv->main_vbox, 12); gtk_container_set_focus_vadjustment (GTK_CONTAINER (shell->priv->main_vbox), gtk_scrolled_window_get_vadjustment (GTK_SCROLLED_WINDOW (shell->priv->scrolled_window))); priv->store = (GtkListStore *) cc_shell_model_new (); priv->category_views = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL); priv->menu_tree = gmenu_tree_new_for_path (MENUDIR "/cinnamoncc.menu", 0); reload_menu (shell); g_signal_connect (priv->menu_tree, "changed", G_CALLBACK (on_menu_changed), shell); } static void load_panel_plugins (CinnamonControlCenter *shell) { GList *modules; /* only allow this function to be run once to prevent modules being loaded * twice */ if (shell->priv->extension_point) return; /* make sure the base type is registered */ g_type_from_name ("CcPanel"); shell->priv->extension_point = g_io_extension_point_register (CC_SHELL_PANEL_EXTENSION_POINT); /* load all the plugins in the panels directory */ modules = g_io_modules_load_all_in_directory (PANELS_DIR); g_list_free (modules); } static void home_button_clicked_cb (GtkButton *button, CinnamonControlCenter *shell) { shell_show_overview_page (shell); } static void notebook_page_notify_cb (GtkNotebook *notebook, GParamSpec *spec, CinnamonControlCenterPrivate *priv) { int nat_height; GtkWidget *child; child = notebook_get_selected_page (GTK_WIDGET (notebook)); if (child == priv->scrolled_window || child == priv->search_scrolled) { gtk_widget_hide (W (priv->builder, "lock-button")); if (!g_strcmp0(g_getenv("XDG_CURRENT_DESKTOP"), "Unity")) gtk_widget_get_preferred_height_for_width (GTK_WIDGET (priv->main_vbox), UNITY_FIXED_WIDTH, NULL, &nat_height); else gtk_widget_get_preferred_height_for_width (GTK_WIDGET (priv->main_vbox), FIXED_WIDTH, NULL, &nat_height); gtk_scrolled_window_set_min_content_height (GTK_SCROLLED_WINDOW (priv->scrolled_window), priv->small_screen == SMALL_SCREEN_TRUE ? SMALL_SCREEN_FIXED_HEIGHT : nat_height); } else { /* set the scrolled window small so that it doesn't force the window to be larger than this panel */ if (!g_strcmp0(g_getenv("XDG_CURRENT_DESKTOP"), "Unity")) { gtk_widget_get_preferred_height_for_width (GTK_WIDGET (priv->window), UNITY_FIXED_WIDTH, NULL, &nat_height); gtk_scrolled_window_set_min_content_height (GTK_SCROLLED_WINDOW (priv->scrolled_window), MIN_ICON_VIEW_HEIGHT); gtk_window_resize (GTK_WINDOW (priv->window), UNITY_FIXED_WIDTH, nat_height); } else { gtk_widget_get_preferred_height_for_width (GTK_WIDGET (priv->window), FIXED_WIDTH, NULL, &nat_height); gtk_scrolled_window_set_min_content_height (GTK_SCROLLED_WINDOW (priv->scrolled_window), MIN_ICON_VIEW_HEIGHT); gtk_window_resize (GTK_WINDOW (priv->window), FIXED_WIDTH, nat_height); } } } /* CcShell implementation */ static void _shell_embed_widget_in_header (CcShell *shell, GtkWidget *widget) { CinnamonControlCenterPrivate *priv = CINNAMON_CONTROL_CENTER (shell)->priv; GtkBox *box; /* add to header */ box = GTK_BOX (W (priv->builder, "topright")); gtk_box_pack_end (box, widget, FALSE, FALSE, 0); g_ptr_array_add (priv->custom_widgets, g_object_ref (widget)); } /* CcShell implementation */ static gboolean _shell_set_active_panel_from_id (CcShell *shell, const gchar *start_id, GVariant *parameters, GError **err) { GtkTreeIter iter; gboolean iter_valid; gchar *name = NULL; gchar *desktop = NULL; GIcon *gicon = NULL; CinnamonControlCenterPrivate *priv = CINNAMON_CONTROL_CENTER (shell)->priv; GtkWidget *old_panel; /* When loading the same panel again, just set its parameters */ if (g_strcmp0 (priv->current_panel_id, start_id) == 0) { g_object_set (G_OBJECT (priv->current_panel), "parameters", parameters, NULL); return TRUE; } if (priv->current_panel_id) { g_free (priv->current_panel_id); priv->current_panel_id = NULL; } /* clear any custom widgets */ _shell_remove_all_custom_widgets (priv); iter_valid = gtk_tree_model_get_iter_first (GTK_TREE_MODEL (priv->store), &iter); /* find the details for this item */ while (iter_valid) { gchar *id; gtk_tree_model_get (GTK_TREE_MODEL (priv->store), &iter, COL_NAME, &name, COL_DESKTOP_FILE, &desktop, COL_GICON, &gicon, COL_ID, &id, -1); if (id && !strcmp (id, start_id)) { g_free (id); break; } else { g_free (id); g_free (name); g_free (desktop); if (gicon) g_object_unref (gicon); name = NULL; id = NULL; desktop = NULL; gicon = NULL; } iter_valid = gtk_tree_model_iter_next (GTK_TREE_MODEL (priv->store), &iter); } if (!name) { g_warning ("Could not find settings panel \"%s\"", start_id); } else if (activate_panel (CINNAMON_CONTROL_CENTER (shell), start_id, parameters, desktop, name, gicon) == FALSE) { /* Failed to activate the panel for some reason */ old_panel = priv->current_panel_box; priv->current_panel_box = NULL; notebook_select_page (priv->notebook, priv->scrolled_window); if (old_panel) notebook_remove_page (priv->notebook, old_panel); } else { priv->current_panel_id = g_strdup (start_id); } g_free (name); g_free (desktop); if (gicon) g_object_unref (gicon); return TRUE; } static GtkWidget * _shell_get_toplevel (CcShell *shell) { return CINNAMON_CONTROL_CENTER (shell)->priv->window; } /* GObject Implementation */ static void cinnamon_control_center_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) { switch (property_id) { default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } } static void cinnamon_control_center_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) { switch (property_id) { default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } } static void cinnamon_control_center_dispose (GObject *object) { CinnamonControlCenterPrivate *priv = CINNAMON_CONTROL_CENTER (object)->priv; g_free (priv->current_panel_id); if (priv->custom_widgets) { g_ptr_array_unref (priv->custom_widgets); priv->custom_widgets = NULL; } if (priv->window) { gtk_widget_destroy (priv->window); priv->window = NULL; /* destroying the window will destroy its children */ priv->notebook = NULL; priv->search_entry = NULL; priv->search_view = NULL; } if (priv->builder) { g_object_unref (priv->builder); priv->builder = NULL; } if (priv->store) { g_object_unref (priv->store); priv->store = NULL; } if (priv->search_filter) { g_object_unref (priv->search_filter); priv->search_filter = NULL; } G_OBJECT_CLASS (cinnamon_control_center_parent_class)->dispose (object); } static void cinnamon_control_center_finalize (GObject *object) { CinnamonControlCenterPrivate *priv = CINNAMON_CONTROL_CENTER (object)->priv; if (priv->filter_string) { g_free (priv->filter_string); priv->filter_string = NULL; } if (priv->default_window_title) { g_free (priv->default_window_title); priv->default_window_title = NULL; } if (priv->default_window_icon) { g_free (priv->default_window_icon); priv->default_window_icon = NULL; } if (priv->menu_tree) { g_signal_handlers_disconnect_by_func (priv->menu_tree, G_CALLBACK (on_menu_changed), object); g_object_unref (priv->menu_tree); } if (priv->category_views) { g_hash_table_destroy (priv->category_views); } G_OBJECT_CLASS (cinnamon_control_center_parent_class)->finalize (object); } static void cinnamon_control_center_class_init (CinnamonControlCenterClass *klass) { GObjectClass *object_class = G_OBJECT_CLASS (klass); CcShellClass *shell_class = CC_SHELL_CLASS (klass); g_type_class_add_private (klass, sizeof (CinnamonControlCenterPrivate)); object_class->get_property = cinnamon_control_center_get_property; object_class->set_property = cinnamon_control_center_set_property; object_class->dispose = cinnamon_control_center_dispose; object_class->finalize = cinnamon_control_center_finalize; shell_class->set_active_panel_from_id = _shell_set_active_panel_from_id; shell_class->embed_widget_in_header = _shell_embed_widget_in_header; shell_class->get_toplevel = _shell_get_toplevel; } static gboolean window_key_press_event (GtkWidget *win, GdkEventKey *event, CinnamonControlCenter *self) { GdkKeymap *keymap; gboolean retval; GdkModifierType state; if (event->state == 0) return FALSE; retval = FALSE; state = event->state; keymap = gdk_keymap_get_default (); gdk_keymap_add_virtual_modifiers (keymap, &state); state = state & gtk_accelerator_get_default_mod_mask (); if (state == GDK_CONTROL_MASK) { switch (event->keyval) { case GDK_KEY_s: case GDK_KEY_S: case GDK_KEY_f: case GDK_KEY_F: retval = TRUE; break; case GDK_KEY_Q: case GDK_KEY_q: g_object_unref (self); retval = TRUE; break; case GDK_KEY_W: case GDK_KEY_w: if (notebook_get_selected_page (self->priv->notebook) != self->priv->scrolled_window) shell_show_overview_page (self); retval = TRUE; break; } } return retval; } static gint get_monitor_height (CinnamonControlCenter *self) { GdkScreen *screen; GdkRectangle rect; /* We cannot use workarea here, as this wouldn't * be updated when we read it after a monitors-changed signal */ screen = gtk_widget_get_screen (self->priv->window); gdk_screen_get_monitor_geometry (screen, self->priv->monitor_num, &rect); return rect.height; } static gboolean update_monitor_number (CinnamonControlCenter *self) { gboolean changed = FALSE; GtkWidget *widget; GdkScreen *screen; GdkWindow *window; int monitor; widget = self->priv->window; window = gtk_widget_get_window (widget); screen = gtk_widget_get_screen (widget); monitor = gdk_screen_get_monitor_at_window (screen, window); if (self->priv->monitor_num != monitor) { self->priv->monitor_num = monitor; changed = TRUE; } return changed; } static CcSmallScreen is_small (CinnamonControlCenter *self) { if (get_monitor_height (self) <= FIXED_HEIGHT) return SMALL_SCREEN_TRUE; return SMALL_SCREEN_FALSE; } static void update_small_screen_settings (CinnamonControlCenter *self) { CcSmallScreen small; update_monitor_number (self); small = is_small (self); if (small == SMALL_SCREEN_TRUE) { gtk_window_set_resizable (GTK_WINDOW (self->priv->window), TRUE); if (self->priv->small_screen != small) gtk_window_maximize (GTK_WINDOW (self->priv->window)); } else { if (self->priv->small_screen != small) gtk_window_unmaximize (GTK_WINDOW (self->priv->window)); gtk_window_set_resizable (GTK_WINDOW (self->priv->window), FALSE); } self->priv->small_screen = small; /* And update the minimum sizes */ notebook_page_notify_cb (GTK_NOTEBOOK (self->priv->notebook), NULL, self->priv); } static gboolean main_window_configure_cb (GtkWidget *widget, GdkEvent *event, CinnamonControlCenter *self) { update_small_screen_settings (self); return FALSE; } static void application_set_cb (GObject *object, GParamSpec *pspec, CinnamonControlCenter *self) { /* update small screen settings now - to avoid visible resizing, we want * to do it before showing the window, and GtkApplicationWindow cannot be * realized unless its application property has been set */ if (gtk_window_get_application (GTK_WINDOW (self->priv->window))) { gtk_widget_realize (self->priv->window); update_small_screen_settings (self); } } static void monitors_changed_cb (GdkScreen *screen, CinnamonControlCenter *self) { /* We reset small_screen_set to make sure that the * window gets maximised if need be, in update_small_screen_settings() */ self->priv->small_screen = SMALL_SCREEN_UNSET; update_small_screen_settings (self); } static void cinnamon_control_center_init (CinnamonControlCenter *self) { GError *err = NULL; CinnamonControlCenterPrivate *priv; GdkScreen *screen; GtkWidget *widget; priv = self->priv = CONTROL_CENTER_PRIVATE (self); priv->monitor_num = -1; self->priv->small_screen = SMALL_SCREEN_UNSET; /* load the user interface */ priv->builder = gtk_builder_new (); if (!gtk_builder_add_from_file (priv->builder, UIDIR "/shell.ui", &err)) { g_critical ("Could not build interface: %s", err->message); g_error_free (err); return; } /* connect various signals */ priv->window = W (priv->builder, "main-window"); gtk_window_set_hide_titlebar_when_maximized (GTK_WINDOW (priv->window), TRUE); screen = gtk_widget_get_screen (priv->window); g_signal_connect (screen, "monitors-changed", G_CALLBACK (monitors_changed_cb), self); g_signal_connect (priv->window, "configure-event", G_CALLBACK (main_window_configure_cb), self); g_signal_connect (priv->window, "notify::application", G_CALLBACK (application_set_cb), self); g_signal_connect_swapped (priv->window, "delete-event", G_CALLBACK (g_object_unref), self); g_signal_connect_after (priv->window, "key_press_event", G_CALLBACK (window_key_press_event), self); priv->notebook = W (priv->builder, "notebook"); /* Main scrolled window */ priv->scrolled_window = W (priv->builder, "scrolledwindow1"); if (!g_strcmp0(g_getenv("XDG_CURRENT_DESKTOP"), "Unity")) gtk_widget_set_size_request (priv->scrolled_window, UNITY_FIXED_WIDTH, -1); else gtk_widget_set_size_request (priv->scrolled_window, FIXED_WIDTH, -1); priv->main_vbox = W (priv->builder, "main-vbox"); g_signal_connect (priv->notebook, "notify::page", G_CALLBACK (notebook_page_notify_cb), priv); priv->nav_bar = cc_shell_nav_bar_new (); widget = W (priv->builder, "hbox1"); gtk_box_pack_start (GTK_BOX (widget), priv->nav_bar, FALSE, FALSE, 0); gtk_box_reorder_child (GTK_BOX (widget), priv->nav_bar, 0); gtk_widget_show (priv->nav_bar); g_signal_connect (priv->nav_bar, "home-clicked", G_CALLBACK (home_button_clicked_cb), self); /* keep a list of custom widgets to unload on panel change */ priv->custom_widgets = g_ptr_array_new_with_free_func ((GDestroyNotify) g_object_unref); /* load the available settings panels */ setup_model (self); /* load the panels that are implemented as plugins */ load_panel_plugins (self); /* setup search functionality */ setup_search (self); setup_lock (self); /* store default window title and name */ priv->default_window_title = g_strdup (gtk_window_get_title (GTK_WINDOW (priv->window))); priv->default_window_icon = g_strdup (gtk_window_get_icon_name (GTK_WINDOW (priv->window))); notebook_page_notify_cb (GTK_NOTEBOOK (priv->notebook), NULL, priv); } CinnamonControlCenter * cinnamon_control_center_new (void) { return g_object_new (CINNAMON_TYPE_CONTROL_CENTER, NULL); } void cinnamon_control_center_present (CinnamonControlCenter *center) { gtk_window_present (GTK_WINDOW (center->priv->window)); } void cinnamon_control_center_show (CinnamonControlCenter *center, GtkApplication *app) { gtk_window_set_application (GTK_WINDOW (center->priv->window), app); gtk_widget_show (gtk_bin_get_child (GTK_BIN (center->priv->window))); } cinnamon-control-center-6.2.0/shell/cc-shell-item-view.h0000664000175000017500000000411114632072346022063 0ustar fabiofabio/* * Copyright (c) 2010 Intel, Inc. * * The Control Center is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * The Control Center is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. * * You should have received a copy of the GNU General Public License along * with the Control Center; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * * Author: Thomas Wood */ #ifndef _CC_SHELL_ITEM_VIEW_H #define _CC_SHELL_ITEM_VIEW_H #include G_BEGIN_DECLS #define CC_TYPE_SHELL_ITEM_VIEW cc_shell_item_view_get_type() #define CC_SHELL_ITEM_VIEW(obj) \ (G_TYPE_CHECK_INSTANCE_CAST ((obj), \ CC_TYPE_SHELL_ITEM_VIEW, CcShellItemView)) #define CC_SHELL_ITEM_VIEW_CLASS(klass) \ (G_TYPE_CHECK_CLASS_CAST ((klass), \ CC_TYPE_SHELL_ITEM_VIEW, CcShellItemViewClass)) #define CC_IS_SHELL_ITEM_VIEW(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \ CC_TYPE_SHELL_ITEM_VIEW)) #define CC_IS_SHELL_ITEM_VIEW_CLASS(klass) \ (G_TYPE_CHECK_CLASS_TYPE ((klass), \ CC_TYPE_SHELL_ITEM_VIEW)) #define CC_SHELL_ITEM_VIEW_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), \ CC_TYPE_SHELL_ITEM_VIEW, CcShellItemViewClass)) typedef struct _CcShellItemView CcShellItemView; typedef struct _CcShellItemViewClass CcShellItemViewClass; typedef struct _CcShellItemViewPrivate CcShellItemViewPrivate; struct _CcShellItemView { GtkIconView parent; CcShellItemViewPrivate *priv; }; struct _CcShellItemViewClass { GtkIconViewClass parent_class; }; GType cc_shell_item_view_get_type (void) G_GNUC_CONST; GtkWidget *cc_shell_item_view_new (void); void cc_shell_item_view_update_cells (CcShellItemView *view); G_END_DECLS #endif /* _CC_SHELL_ITEM_VIEW_H */ cinnamon-control-center-6.2.0/shell/list-box-helper.c0000664000175000017500000000663514632072346021513 0ustar fabiofabio/* * Copyright (C) 2014 Red Hat, Inc * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . * */ #include "list-box-helper.h" #define MAX_ROWS_VISIBLE 5 void cc_list_box_update_header_func (GtkListBoxRow *row, GtkListBoxRow *before, gpointer user_data) { GtkWidget *current; if (before == NULL) { gtk_list_box_row_set_header (row, NULL); return; } current = gtk_list_box_row_get_header (row); if (current == NULL) { current = gtk_separator_new (GTK_ORIENTATION_HORIZONTAL); gtk_widget_show (current); gtk_list_box_row_set_header (row, current); } } void cc_list_box_adjust_scrolling (GtkListBox *listbox) { GtkWidget *scrolled_window; GList *children; guint n_rows, num_max_rows; scrolled_window = g_object_get_data (G_OBJECT (listbox), "cc-scrolling-scrolled-window"); if (!scrolled_window) return; children = gtk_container_get_children (GTK_CONTAINER (listbox)); n_rows = g_list_length (children); num_max_rows = GPOINTER_TO_UINT (g_object_get_data (G_OBJECT (listbox), "cc-max-rows-visible")); if (n_rows >= num_max_rows) { gint total_row_height = 0; GList *l; guint i; for (l = children, i = 0; l != NULL && i < num_max_rows; l = l->next, i++) { gint row_height; gtk_widget_get_preferred_height (GTK_WIDGET (l->data), &row_height, NULL); total_row_height += row_height; } gtk_scrolled_window_set_min_content_height (GTK_SCROLLED_WINDOW (scrolled_window), total_row_height); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); } else { gtk_scrolled_window_set_min_content_height (GTK_SCROLLED_WINDOW (scrolled_window), -1); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window), GTK_POLICY_NEVER, GTK_POLICY_NEVER); } g_list_free (children); } void cc_list_box_setup_scrolling (GtkListBox *listbox, guint num_max_rows) { GtkWidget *parent; GtkWidget *scrolled_window; parent = gtk_widget_get_parent (GTK_WIDGET (listbox)); scrolled_window = gtk_scrolled_window_new (NULL, NULL); gtk_widget_show (scrolled_window); g_object_ref (listbox); gtk_container_remove (GTK_CONTAINER (parent), GTK_WIDGET (listbox)); gtk_container_add (GTK_CONTAINER (scrolled_window), GTK_WIDGET (listbox)); g_object_unref (listbox); gtk_container_add (GTK_CONTAINER (parent), scrolled_window); if (num_max_rows == 0) num_max_rows = MAX_ROWS_VISIBLE; g_object_set_data (G_OBJECT (listbox), "cc-scrolling-scrolled-window", scrolled_window); g_object_set_data (G_OBJECT (listbox), "cc-max-rows-visible", GUINT_TO_POINTER (num_max_rows)); } cinnamon-control-center-6.2.0/shell/cc-shell-log.h0000664000175000017500000000203514632072346020741 0ustar fabiofabio/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- * * Copyright (C) 2009 Red Hat, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Suite 500, Boston, MA 02110-1335, USA. * */ #ifndef __CC_SHELL_LOG_H #define __CC_SHELL_LOG_H #include G_BEGIN_DECLS void cc_shell_log_init (void); void cc_shell_log_set_debug (gboolean debug); G_END_DECLS #endif /* __CC_SHELL_LOG_H */ cinnamon-control-center-6.2.0/shell/control-center.c0000664000175000017500000002054414632072346021426 0ustar fabiofabio/* * Copyright (c) 2009, 2010 Intel, Inc. * Copyright (c) 2010 Red Hat, Inc. * * The Control Center is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * The Control Center is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. * * You should have received a copy of the GNU General Public License along * with the Control Center; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * * Author: Thomas Wood */ #include "config.h" #include #include #include "cinnamon-control-center.h" #include #include #include #ifdef GDK_WINDOWING_X11 #include #endif #include "cc-shell-log.h" G_GNUC_NORETURN static gboolean option_version_cb (const gchar *option_name, const gchar *value, gpointer data, GError **error) { g_print ("%s %s\n", PACKAGE, VERSION); exit (0); } static char **start_panels = NULL; static gboolean show_overview = FALSE; static gboolean verbose = FALSE; static gboolean show_help = FALSE; static gboolean show_help_gtk = FALSE; static gboolean show_help_all = FALSE; const GOptionEntry all_options[] = { { "version", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, option_version_cb, NULL, NULL }, { "verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose, N_("Enable verbose mode"), NULL }, { "overview", 'o', 0, G_OPTION_ARG_NONE, &show_overview, N_("Show the overview"), NULL }, { "help", 'h', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, &show_help, N_("Show help options"), NULL }, { "help-all", 0, G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, &show_help_all, N_("Show help options"), NULL }, { "help-gtk", 0, G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, &show_help_gtk, N_("Show help options"), NULL }, { G_OPTION_REMAINING, '\0', 0, G_OPTION_ARG_FILENAME_ARRAY, &start_panels, N_("Panel to display"), NULL }, { NULL, 0, 0, 0, NULL, NULL, NULL } /* end the list */ }; static int application_command_line_cb (GApplication *application, GApplicationCommandLine *command_line, CinnamonControlCenter *shell) { int argc; char **argv; int retval = 0; GOptionContext *context; GError *error = NULL; verbose = FALSE; show_overview = FALSE; show_help = FALSE; start_panels = NULL; argv = g_application_command_line_get_arguments (command_line, &argc); context = g_option_context_new (N_("- System Settings")); g_option_context_add_main_entries (context, all_options, GETTEXT_PACKAGE); g_option_context_set_translation_domain(context, GETTEXT_PACKAGE); g_option_context_add_group (context, gtk_get_option_group (TRUE)); g_option_context_set_help_enabled (context, FALSE); if (g_option_context_parse (context, &argc, &argv, &error) == FALSE) { g_print (_("%s\nRun '%s --help' to see a full list of available command line options.\n"), error->message, argv[0]); g_error_free (error); g_option_context_free (context); return 1; } if (show_help || show_help_all || show_help_gtk) { gchar *help; GOptionGroup *group; if (show_help || show_help_all) group = NULL; else group = gtk_get_option_group (FALSE); help = g_option_context_get_help (context, FALSE, group); g_print ("%s", help); g_free (help); g_option_context_free (context); return 0; } g_option_context_free (context); cc_shell_log_set_debug (verbose); cinnamon_control_center_show (shell, GTK_APPLICATION (application)); if (show_overview) { cinnamon_control_center_set_overview_page (shell); } else if (start_panels != NULL && start_panels[0] != NULL) { const char *start_id; GError *err = NULL; GVariant *parameters; GVariantBuilder *builder; int i; start_id = start_panels[0]; if (start_panels[1]) g_debug ("Extra argument: %s", start_panels[1]); else g_debug ("No extra argument"); builder = g_variant_builder_new (G_VARIANT_TYPE ("av")); for (i = 1; start_panels[i] != NULL; i++) g_variant_builder_add (builder, "v", g_variant_new_string (start_panels[i])); parameters = g_variant_builder_end (builder); if (!cc_shell_set_active_panel_from_id (CC_SHELL (shell), start_id, parameters, &err)) { g_warning ("Could not load setting panel \"%s\": %s", start_id, (err) ? err->message : "Unknown error"); retval = 1; if (err) { g_error_free (err); err = NULL; } } } cinnamon_control_center_present (shell); gdk_notify_startup_complete (); g_strfreev (argv); if (start_panels != NULL) { g_strfreev (start_panels); start_panels = NULL; } show_overview = FALSE; return retval; } static void help_activated (GSimpleAction *action, GVariant *parameter, gpointer user_data) { CinnamonControlCenter *shell = user_data; CcPanel *panel = cc_shell_get_active_panel (CC_SHELL (shell)); GtkWidget *window = cc_shell_get_toplevel (CC_SHELL (shell)); const char *uri = NULL; if (panel) uri = cc_panel_get_help_uri (panel); if (!g_strcmp0(g_getenv("XDG_CURRENT_DESKTOP"), "Unity")) gtk_show_uri (gtk_widget_get_screen (window), uri ? uri : "help:ubuntu-help/prefs", GDK_CURRENT_TIME, NULL); else gtk_show_uri (gtk_widget_get_screen (window), uri ? uri : "help:gnome-help/prefs", GDK_CURRENT_TIME, NULL); } static void quit_activated (GSimpleAction *action, GVariant *parameter, gpointer user_data) { CinnamonControlCenter *shell = user_data; g_object_unref (shell); } static void application_startup_cb (GApplication *application, CinnamonControlCenter *shell) { GMenu *menu, *section; GAction *action; action = G_ACTION (g_simple_action_new ("help", NULL)); g_action_map_add_action (G_ACTION_MAP (application), action); g_signal_connect (action, "activate", G_CALLBACK (help_activated), shell); action = G_ACTION (g_simple_action_new ("quit", NULL)); g_action_map_add_action (G_ACTION_MAP (application), action); g_signal_connect (action, "activate", G_CALLBACK (quit_activated), shell); menu = g_menu_new (); section = g_menu_new (); g_menu_append (section, _("Help"), "app.help"); g_menu_append (section, _("Quit"), "app.quit"); g_menu_append_section (menu, NULL, G_MENU_MODEL (section)); gtk_application_set_app_menu (GTK_APPLICATION (application), G_MENU_MODEL (menu)); gtk_application_add_accelerator (GTK_APPLICATION (application), "F1", "app.help", NULL); /* nothing else to do here, we don't want to show a window before * we've looked at the commandline */ } int main (int argc, char **argv) { CinnamonControlCenter *shell; GtkApplication *application; int status; bindtextdomain (GETTEXT_PACKAGE, LOCALE_DIR); bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); textdomain (GETTEXT_PACKAGE); #ifdef GDK_WINDOWING_X11 XInitThreads (); #endif gtk_init (&argc, &argv); cc_shell_log_init (); /* register a symbolic icon size for use in sidebar lists */ gtk_icon_size_register ("cc-sidebar-list", 24, 24); notify_init ("cinnamon-control-center"); shell = cinnamon_control_center_new (); /* enforce single instance of this application */ application = gtk_application_new ("org.cinnamon.ControlCenter", G_APPLICATION_HANDLES_COMMAND_LINE); g_signal_connect (application, "startup", G_CALLBACK (application_startup_cb), shell); g_signal_connect (application, "command-line", G_CALLBACK (application_command_line_cb), shell); status = g_application_run (G_APPLICATION (application), argc, argv); g_object_unref (application); return status; }